Merge branch 'vim'
[MacVim.git] / src / ex_docmd.c
blobc964887ed7f9d428d6ed6b63328d9c5ce39ead23
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
11 * ex_docmd.c: functions for executing an Ex command line.
14 #include "vim.h"
16 static int quitmore = 0;
17 static int ex_pressedreturn = FALSE;
18 #ifndef FEAT_PRINTER
19 # define ex_hardcopy ex_ni
20 #endif
22 #ifdef FEAT_USR_CMDS
23 typedef struct ucmd
25 char_u *uc_name; /* The command name */
26 long_u uc_argt; /* The argument type */
27 char_u *uc_rep; /* The command's replacement string */
28 long uc_def; /* The default value for a range/count */
29 int uc_compl; /* completion type */
30 # ifdef FEAT_EVAL
31 scid_T uc_scriptID; /* SID where the command was defined */
32 # ifdef FEAT_CMDL_COMPL
33 char_u *uc_compl_arg; /* completion argument if any */
34 # endif
35 # endif
36 } ucmd_T;
38 #define UC_BUFFER 1 /* -buffer: local to current buffer */
40 static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
42 #define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
43 #define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
45 static void do_ucmd __ARGS((exarg_T *eap));
46 static void ex_command __ARGS((exarg_T *eap));
47 static void ex_delcommand __ARGS((exarg_T *eap));
48 # ifdef FEAT_CMDL_COMPL
49 static char_u *get_user_command_name __ARGS((int idx));
50 # endif
52 #else
53 # define ex_command ex_ni
54 # define ex_comclear ex_ni
55 # define ex_delcommand ex_ni
56 #endif
58 #ifdef FEAT_EVAL
59 static char_u *do_one_cmd __ARGS((char_u **, int, struct condstack *, char_u *(*fgetline)(int, void *, int), void *cookie));
60 #else
61 static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
62 static int if_level = 0; /* depth in :if */
63 #endif
64 static char_u *find_command __ARGS((exarg_T *eap, int *full));
66 static void ex_abbreviate __ARGS((exarg_T *eap));
67 static void ex_map __ARGS((exarg_T *eap));
68 static void ex_unmap __ARGS((exarg_T *eap));
69 static void ex_mapclear __ARGS((exarg_T *eap));
70 static void ex_abclear __ARGS((exarg_T *eap));
71 #ifndef FEAT_MENU
72 # define ex_emenu ex_ni
73 # define ex_menu ex_ni
74 # define ex_menutranslate ex_ni
75 #endif
76 #ifdef FEAT_AUTOCMD
77 static void ex_autocmd __ARGS((exarg_T *eap));
78 static void ex_doautocmd __ARGS((exarg_T *eap));
79 #else
80 # define ex_autocmd ex_ni
81 # define ex_doautocmd ex_ni
82 # define ex_doautoall ex_ni
83 #endif
84 #ifdef FEAT_LISTCMDS
85 static void ex_bunload __ARGS((exarg_T *eap));
86 static void ex_buffer __ARGS((exarg_T *eap));
87 static void ex_bmodified __ARGS((exarg_T *eap));
88 static void ex_bnext __ARGS((exarg_T *eap));
89 static void ex_bprevious __ARGS((exarg_T *eap));
90 static void ex_brewind __ARGS((exarg_T *eap));
91 static void ex_blast __ARGS((exarg_T *eap));
92 #else
93 # define ex_bunload ex_ni
94 # define ex_buffer ex_ni
95 # define ex_bmodified ex_ni
96 # define ex_bnext ex_ni
97 # define ex_bprevious ex_ni
98 # define ex_brewind ex_ni
99 # define ex_blast ex_ni
100 # define buflist_list ex_ni
101 # define ex_checktime ex_ni
102 #endif
103 #if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
104 # define ex_buffer_all ex_ni
105 #endif
106 static char_u *getargcmd __ARGS((char_u **));
107 static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
108 static int getargopt __ARGS((exarg_T *eap));
109 #ifndef FEAT_QUICKFIX
110 # define ex_make ex_ni
111 # define ex_cbuffer ex_ni
112 # define ex_cc ex_ni
113 # define ex_cnext ex_ni
114 # define ex_cfile ex_ni
115 # define qf_list ex_ni
116 # define qf_age ex_ni
117 # define ex_helpgrep ex_ni
118 # define ex_vimgrep ex_ni
119 #endif
120 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
121 # define ex_cclose ex_ni
122 # define ex_copen ex_ni
123 # define ex_cwindow ex_ni
124 #endif
125 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
126 # define ex_cexpr ex_ni
127 #endif
129 static int check_more __ARGS((int, int));
130 static linenr_T get_address __ARGS((char_u **, int skip, int to_other_file));
131 static void get_flags __ARGS((exarg_T *eap));
132 #if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
133 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
134 # define HAVE_EX_SCRIPT_NI
135 static void ex_script_ni __ARGS((exarg_T *eap));
136 #endif
137 static char_u *invalid_range __ARGS((exarg_T *eap));
138 static void correct_range __ARGS((exarg_T *eap));
139 #ifdef FEAT_QUICKFIX
140 static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
141 #endif
142 static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
143 static void ex_highlight __ARGS((exarg_T *eap));
144 static void ex_colorscheme __ARGS((exarg_T *eap));
145 static void ex_quit __ARGS((exarg_T *eap));
146 static void ex_cquit __ARGS((exarg_T *eap));
147 static void ex_quit_all __ARGS((exarg_T *eap));
148 #ifdef FEAT_WINDOWS
149 static void ex_close __ARGS((exarg_T *eap));
150 static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
151 static void ex_only __ARGS((exarg_T *eap));
152 static void ex_resize __ARGS((exarg_T *eap));
153 static void ex_stag __ARGS((exarg_T *eap));
154 static void ex_tabclose __ARGS((exarg_T *eap));
155 static void ex_tabonly __ARGS((exarg_T *eap));
156 static void ex_tabnext __ARGS((exarg_T *eap));
157 static void ex_tabmove __ARGS((exarg_T *eap));
158 static void ex_tabs __ARGS((exarg_T *eap));
159 #else
160 # define ex_close ex_ni
161 # define ex_only ex_ni
162 # define ex_all ex_ni
163 # define ex_resize ex_ni
164 # define ex_splitview ex_ni
165 # define ex_stag ex_ni
166 # define ex_tabnext ex_ni
167 # define ex_tabmove ex_ni
168 # define ex_tabs ex_ni
169 # define ex_tabclose ex_ni
170 # define ex_tabonly ex_ni
171 #endif
172 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
173 static void ex_pclose __ARGS((exarg_T *eap));
174 static void ex_ptag __ARGS((exarg_T *eap));
175 static void ex_pedit __ARGS((exarg_T *eap));
176 #else
177 # define ex_pclose ex_ni
178 # define ex_ptag ex_ni
179 # define ex_pedit ex_ni
180 #endif
181 static void ex_hide __ARGS((exarg_T *eap));
182 static void ex_stop __ARGS((exarg_T *eap));
183 static void ex_exit __ARGS((exarg_T *eap));
184 static void ex_print __ARGS((exarg_T *eap));
185 #ifdef FEAT_BYTEOFF
186 static void ex_goto __ARGS((exarg_T *eap));
187 #else
188 # define ex_goto ex_ni
189 #endif
190 static void ex_shell __ARGS((exarg_T *eap));
191 static void ex_preserve __ARGS((exarg_T *eap));
192 static void ex_recover __ARGS((exarg_T *eap));
193 #ifndef FEAT_LISTCMDS
194 # define ex_argedit ex_ni
195 # define ex_argadd ex_ni
196 # define ex_argdelete ex_ni
197 # define ex_listdo ex_ni
198 #endif
199 static void ex_mode __ARGS((exarg_T *eap));
200 static void ex_wrongmodifier __ARGS((exarg_T *eap));
201 static void ex_find __ARGS((exarg_T *eap));
202 static void ex_open __ARGS((exarg_T *eap));
203 static void ex_edit __ARGS((exarg_T *eap));
204 #if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
205 # define ex_drop ex_ni
206 #endif
207 #ifndef FEAT_GUI
208 # define ex_gui ex_nogui
209 static void ex_nogui __ARGS((exarg_T *eap));
210 #endif
211 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
212 static void ex_tearoff __ARGS((exarg_T *eap));
213 #else
214 # define ex_tearoff ex_ni
215 #endif
216 #if defined(FEAT_MENU) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
217 || defined(FEAT_GUI_MACVIM))
218 static 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
225 #if !(defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) || \
226 defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MACVIM))
227 # define gui_mch_find_dialog ex_ni
228 # define gui_mch_replace_dialog ex_ni
229 #endif
230 #if !defined(FEAT_GUI_GTK)
231 # define ex_helpfind ex_ni
232 #endif
233 #ifndef FEAT_CSCOPE
234 # define do_cscope ex_ni
235 # define do_scscope ex_ni
236 # define do_cstag ex_ni
237 #endif
238 #ifndef FEAT_SYN_HL
239 # define ex_syntax ex_ni
240 #endif
241 #ifndef FEAT_SPELL
242 # define ex_spell ex_ni
243 # define ex_mkspell ex_ni
244 # define ex_spelldump ex_ni
245 # define ex_spellinfo ex_ni
246 # define ex_spellrepall ex_ni
247 #endif
248 #ifndef FEAT_MZSCHEME
249 # define ex_mzscheme ex_script_ni
250 # define ex_mzfile ex_ni
251 #endif
252 #ifndef FEAT_PERL
253 # define ex_perl ex_script_ni
254 # define ex_perldo ex_ni
255 #endif
256 #ifndef FEAT_PYTHON
257 # define ex_python ex_script_ni
258 # define ex_pyfile ex_ni
259 #endif
260 #ifndef FEAT_TCL
261 # define ex_tcl ex_script_ni
262 # define ex_tcldo ex_ni
263 # define ex_tclfile ex_ni
264 #endif
265 #ifndef FEAT_RUBY
266 # define ex_ruby ex_script_ni
267 # define ex_rubydo ex_ni
268 # define ex_rubyfile ex_ni
269 #endif
270 #ifndef FEAT_SNIFF
271 # define ex_sniff ex_ni
272 #endif
273 #ifndef FEAT_KEYMAP
274 # define ex_loadkeymap ex_ni
275 #endif
276 static void ex_swapname __ARGS((exarg_T *eap));
277 static void ex_syncbind __ARGS((exarg_T *eap));
278 static void ex_read __ARGS((exarg_T *eap));
279 static void ex_pwd __ARGS((exarg_T *eap));
280 static void ex_equal __ARGS((exarg_T *eap));
281 static void ex_sleep __ARGS((exarg_T *eap));
282 static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
283 static void ex_winsize __ARGS((exarg_T *eap));
284 #ifdef FEAT_WINDOWS
285 static void ex_wincmd __ARGS((exarg_T *eap));
286 #else
287 # define ex_wincmd ex_ni
288 #endif
289 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
290 static void ex_winpos __ARGS((exarg_T *eap));
291 #else
292 # define ex_winpos ex_ni
293 #endif
294 static void ex_operators __ARGS((exarg_T *eap));
295 static void ex_put __ARGS((exarg_T *eap));
296 static void ex_copymove __ARGS((exarg_T *eap));
297 static void ex_may_print __ARGS((exarg_T *eap));
298 static void ex_submagic __ARGS((exarg_T *eap));
299 static void ex_join __ARGS((exarg_T *eap));
300 static void ex_at __ARGS((exarg_T *eap));
301 static void ex_bang __ARGS((exarg_T *eap));
302 static void ex_undo __ARGS((exarg_T *eap));
303 static void ex_redo __ARGS((exarg_T *eap));
304 static void ex_later __ARGS((exarg_T *eap));
305 static void ex_redir __ARGS((exarg_T *eap));
306 static void ex_redraw __ARGS((exarg_T *eap));
307 static void ex_redrawstatus __ARGS((exarg_T *eap));
308 static void close_redir __ARGS((void));
309 static void ex_mkrc __ARGS((exarg_T *eap));
310 static void ex_mark __ARGS((exarg_T *eap));
311 #ifdef FEAT_USR_CMDS
312 static char_u *uc_fun_cmd __ARGS((void));
313 static char_u *find_ucmd __ARGS((exarg_T *eap, char_u *p, int *full, expand_T *xp, int *compl));
314 #endif
315 #ifdef FEAT_EX_EXTRA
316 static void ex_normal __ARGS((exarg_T *eap));
317 static void ex_startinsert __ARGS((exarg_T *eap));
318 static 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
326 # define ex_sort ex_ni
327 #endif
328 #ifdef FEAT_FIND_ID
329 static void ex_checkpath __ARGS((exarg_T *eap));
330 static 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)
336 static void ex_psearch __ARGS((exarg_T *eap));
337 #else
338 # define ex_psearch ex_ni
339 #endif
340 static void ex_tag __ARGS((exarg_T *eap));
341 static 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
353 # define ex_for ex_ni
354 # define ex_continue ex_ni
355 # define ex_break ex_ni
356 # define ex_endwhile ex_ni
357 # define ex_endfor ex_ni
358 # 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
366 # define ex_lockvar ex_ni
367 # define ex_unlockvar ex_ni
368 # define ex_function ex_ni
369 # define ex_delfunction ex_ni
370 # define ex_return ex_ni
371 # define ex_oldfiles ex_ni
372 #endif
373 static char_u *arg_all __ARGS((void));
374 #ifdef FEAT_SESSION
375 static int makeopens __ARGS((FILE *fd, char_u *dirnow));
376 static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp, int current_arg_idx));
377 static void ex_loadview __ARGS((exarg_T *eap));
378 static char_u *get_view_file __ARGS((int c));
379 static int did_lcd; /* whether ":lcd" was produced for a session */
380 #else
381 # define ex_loadview ex_ni
382 #endif
383 #ifndef FEAT_EVAL
384 # define ex_compiler ex_ni
385 #endif
386 #ifdef FEAT_VIMINFO
387 static void ex_viminfo __ARGS((exarg_T *eap));
388 #else
389 # define ex_viminfo ex_ni
390 #endif
391 static void ex_behave __ARGS((exarg_T *eap));
392 #ifdef FEAT_AUTOCMD
393 static void ex_filetype __ARGS((exarg_T *eap));
394 static void ex_setfiletype __ARGS((exarg_T *eap));
395 #else
396 # define ex_filetype ex_ni
397 # define ex_setfiletype ex_ni
398 #endif
399 #ifndef FEAT_DIFF
400 # define ex_diffoff ex_ni
401 # define ex_diffpatch ex_ni
402 # define ex_diffgetput ex_ni
403 # define ex_diffsplit ex_ni
404 # define ex_diffthis ex_ni
405 # define ex_diffupdate ex_ni
406 #endif
407 static void ex_digraphs __ARGS((exarg_T *eap));
408 static void ex_set __ARGS((exarg_T *eap));
409 #if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
410 # define ex_options ex_ni
411 #endif
412 #ifdef FEAT_SEARCH_EXTRA
413 static void ex_nohlsearch __ARGS((exarg_T *eap));
414 static void ex_match __ARGS((exarg_T *eap));
415 #else
416 # define ex_nohlsearch ex_ni
417 # define ex_match ex_ni
418 #endif
419 #ifdef FEAT_CRYPT
420 static void ex_X __ARGS((exarg_T *eap));
421 #else
422 # define ex_X ex_ni
423 #endif
424 #ifdef FEAT_FOLDING
425 static void ex_fold __ARGS((exarg_T *eap));
426 static void ex_foldopen __ARGS((exarg_T *eap));
427 static void ex_folddo __ARGS((exarg_T *eap));
428 #else
429 # define ex_fold ex_ni
430 # define ex_foldopen ex_ni
431 # define ex_folddo ex_ni
432 #endif
433 #if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
434 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
435 # define ex_language ex_ni
436 #endif
437 #ifndef FEAT_SIGNS
438 # define ex_sign ex_ni
439 #endif
440 #ifndef FEAT_SUN_WORKSHOP
441 # define ex_wsverb ex_ni
442 #endif
443 #ifndef FEAT_NETBEANS_INTG
444 # define ex_nbkey ex_ni
445 #endif
447 #ifndef FEAT_EVAL
448 # define ex_debug ex_ni
449 # define ex_breakadd ex_ni
450 # define ex_debuggreedy ex_ni
451 # define ex_breakdel ex_ni
452 # define ex_breaklist ex_ni
453 #endif
455 #ifndef FEAT_CMDHIST
456 # define ex_history ex_ni
457 #endif
458 #ifndef FEAT_JUMPLIST
459 # define ex_jumps ex_ni
460 # define ex_changes ex_ni
461 #endif
463 #ifndef FEAT_PROFILE
464 # define ex_profile ex_ni
465 #endif
467 #ifndef FEAT_GUI_MACVIM
468 # define ex_macaction ex_ni
469 # define ex_macmenu ex_ni
470 #endif
473 * Declare cmdnames[].
475 #define DO_DECLARE_EXCMD
476 #include "ex_cmds.h"
479 * Table used to quickly search for a command, based on its first character.
481 static cmdidx_T cmdidxs[27] =
483 CMD_append,
484 CMD_buffer,
485 CMD_change,
486 CMD_delete,
487 CMD_edit,
488 CMD_file,
489 CMD_global,
490 CMD_help,
491 CMD_insert,
492 CMD_join,
493 CMD_k,
494 CMD_list,
495 CMD_move,
496 CMD_next,
497 CMD_open,
498 CMD_print,
499 CMD_quit,
500 CMD_read,
501 CMD_substitute,
502 CMD_t,
503 CMD_undo,
504 CMD_vglobal,
505 CMD_write,
506 CMD_xit,
507 CMD_yank,
508 CMD_z,
509 CMD_bang
512 static char_u dollar_command[2] = {'$', 0};
515 #ifdef FEAT_EVAL
516 /* Struct for storing a line inside a while/for loop */
517 typedef struct
519 char_u *line; /* command line */
520 linenr_T lnum; /* sourcing_lnum of the line */
521 } wcmd_T;
524 * Structure used to store info for line position in a while or for loop.
525 * This is required, because do_one_cmd() may invoke ex_function(), which
526 * reads more lines that may come from the while/for loop.
528 struct loop_cookie
530 garray_T *lines_gap; /* growarray with line info */
531 int current_line; /* last read line from growarray */
532 int repeating; /* TRUE when looping a second time */
533 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
534 char_u *(*getline) __ARGS((int, void *, int));
535 void *cookie;
538 static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
539 static int store_loop_line __ARGS((garray_T *gap, char_u *line));
540 static void free_cmdlines __ARGS((garray_T *gap));
542 /* Struct to save a few things while debugging. Used in do_cmdline() only. */
543 struct dbg_stuff
545 int trylevel;
546 int force_abort;
547 except_T *caught_stack;
548 char_u *vv_exception;
549 char_u *vv_throwpoint;
550 int did_emsg;
551 int got_int;
552 int did_throw;
553 int need_rethrow;
554 int check_cstack;
555 except_T *current_exception;
558 static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
559 static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
561 static void
562 save_dbg_stuff(dsp)
563 struct dbg_stuff *dsp;
565 dsp->trylevel = trylevel; trylevel = 0;
566 dsp->force_abort = force_abort; force_abort = FALSE;
567 dsp->caught_stack = caught_stack; caught_stack = NULL;
568 dsp->vv_exception = v_exception(NULL);
569 dsp->vv_throwpoint = v_throwpoint(NULL);
571 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
572 dsp->did_emsg = did_emsg; did_emsg = FALSE;
573 dsp->got_int = got_int; got_int = FALSE;
574 dsp->did_throw = did_throw; did_throw = FALSE;
575 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
576 dsp->check_cstack = check_cstack; check_cstack = FALSE;
577 dsp->current_exception = current_exception; current_exception = NULL;
580 static void
581 restore_dbg_stuff(dsp)
582 struct dbg_stuff *dsp;
584 suppress_errthrow = FALSE;
585 trylevel = dsp->trylevel;
586 force_abort = dsp->force_abort;
587 caught_stack = dsp->caught_stack;
588 (void)v_exception(dsp->vv_exception);
589 (void)v_throwpoint(dsp->vv_throwpoint);
590 did_emsg = dsp->did_emsg;
591 got_int = dsp->got_int;
592 did_throw = dsp->did_throw;
593 need_rethrow = dsp->need_rethrow;
594 check_cstack = dsp->check_cstack;
595 current_exception = dsp->current_exception;
597 #endif
601 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
602 * command is given.
604 void
605 do_exmode(improved)
606 int improved; /* TRUE for "improved Ex" mode */
608 int save_msg_scroll;
609 int prev_msg_row;
610 linenr_T prev_line;
611 int changedtick;
613 if (improved)
614 exmode_active = EXMODE_VIM;
615 else
616 exmode_active = EXMODE_NORMAL;
617 State = NORMAL;
619 /* When using ":global /pat/ visual" and then "Q" we return to continue
620 * the :global command. */
621 if (global_busy)
622 return;
624 save_msg_scroll = msg_scroll;
625 ++RedrawingDisabled; /* don't redisplay the window */
626 ++no_wait_return; /* don't wait for return */
627 #ifdef FEAT_GUI
628 /* Ignore scrollbar and mouse events in Ex mode */
629 ++hold_gui_events;
630 #endif
631 #ifdef FEAT_SNIFF
632 want_sniff_request = 0; /* No K_SNIFF wanted */
633 #endif
635 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
636 while (exmode_active)
638 #ifdef FEAT_EX_EXTRA
639 /* Check for a ":normal" command and no more characters left. */
640 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
642 exmode_active = FALSE;
643 break;
645 #endif
646 msg_scroll = TRUE;
647 need_wait_return = FALSE;
648 ex_pressedreturn = FALSE;
649 ex_no_reprint = FALSE;
650 changedtick = curbuf->b_changedtick;
651 prev_msg_row = msg_row;
652 prev_line = curwin->w_cursor.lnum;
653 #ifdef FEAT_SNIFF
654 ProcessSniffRequests();
655 #endif
656 if (improved)
658 cmdline_row = msg_row;
659 do_cmdline(NULL, getexline, NULL, 0);
661 else
662 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
663 lines_left = Rows - 1;
665 if ((prev_line != curwin->w_cursor.lnum
666 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
668 if (curbuf->b_ml.ml_flags & ML_EMPTY)
669 EMSG(_(e_emptybuf));
670 else
672 if (ex_pressedreturn)
674 /* go up one line, to overwrite the ":<CR>" line, so the
675 * output doesn't contain empty lines. */
676 msg_row = prev_msg_row;
677 if (prev_msg_row == Rows - 1)
678 msg_row--;
680 msg_col = 0;
681 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
682 msg_clr_eos();
685 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
687 if (curbuf->b_ml.ml_flags & ML_EMPTY)
688 EMSG(_(e_emptybuf));
689 else
690 EMSG(_("E501: At end-of-file"));
694 #ifdef FEAT_GUI
695 --hold_gui_events;
696 #endif
697 --RedrawingDisabled;
698 --no_wait_return;
699 update_screen(CLEAR);
700 need_wait_return = FALSE;
701 msg_scroll = save_msg_scroll;
705 * Execute a simple command line. Used for translated commands like "*".
708 do_cmdline_cmd(cmd)
709 char_u *cmd;
711 return do_cmdline(cmd, NULL, NULL,
712 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
716 * do_cmdline(): execute one Ex command line
718 * 1. Execute "cmdline" when it is not NULL.
719 * If "cmdline" is NULL, or more lines are needed, getline() is used.
720 * 2. Split up in parts separated with '|'.
722 * This function can be called recursively!
724 * flags:
725 * DOCMD_VERBOSE - The command will be included in the error message.
726 * DOCMD_NOWAIT - Don't call wait_return() and friends.
727 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
728 * DOCMD_KEYTYPED - Don't reset KeyTyped.
729 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
730 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
732 * return FAIL if cmdline could not be executed, OK otherwise
735 do_cmdline(cmdline, getline, cookie, flags)
736 char_u *cmdline;
737 char_u *(*getline) __ARGS((int, void *, int));
738 void *cookie; /* argument for getline() */
739 int flags;
741 char_u *next_cmdline; /* next cmd to execute */
742 char_u *cmdline_copy = NULL; /* copy of cmd line */
743 int used_getline = FALSE; /* used "getline" to obtain command */
744 static int recursive = 0; /* recursive depth */
745 int msg_didout_before_start = 0;
746 int count = 0; /* line number count */
747 int did_inc = FALSE; /* incremented RedrawingDisabled */
748 int retval = OK;
749 #ifdef FEAT_EVAL
750 struct condstack cstack; /* conditional stack */
751 garray_T lines_ga; /* keep lines for ":while"/":for" */
752 int current_line = 0; /* active line in lines_ga */
753 char_u *fname = NULL; /* function or script name */
754 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
755 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
756 struct dbg_stuff debug_saved; /* saved things for debug mode */
757 int initial_trylevel;
758 struct msglist **saved_msg_list = NULL;
759 struct msglist *private_msg_list;
761 /* "getline" and "cookie" passed to do_one_cmd() */
762 char_u *(*cmd_getline) __ARGS((int, void *, int));
763 void *cmd_cookie;
764 struct loop_cookie cmd_loop_cookie;
765 void *real_cookie;
766 int getline_is_func;
767 #else
768 # define cmd_getline getline
769 # define cmd_cookie cookie
770 #endif
771 static int call_depth = 0; /* recursiveness */
773 #ifdef FEAT_EVAL
774 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
775 * location for storing error messages to be converted to an exception.
776 * This ensures that the do_errthrow() call in do_one_cmd() does not
777 * combine the messages stored by an earlier invocation of do_one_cmd()
778 * with the command name of the later one. This would happen when
779 * BufWritePost autocommands are executed after a write error. */
780 saved_msg_list = msg_list;
781 msg_list = &private_msg_list;
782 private_msg_list = NULL;
783 #endif
785 /* It's possible to create an endless loop with ":execute", catch that
786 * here. The value of 200 allows nested function calls, ":source", etc. */
787 if (call_depth == 200)
789 EMSG(_("E169: Command too recursive"));
790 #ifdef FEAT_EVAL
791 /* When converting to an exception, we do not include the command name
792 * since this is not an error of the specific command. */
793 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
794 msg_list = saved_msg_list;
795 #endif
796 return FAIL;
798 ++call_depth;
800 #ifdef FEAT_EVAL
801 cstack.cs_idx = -1;
802 cstack.cs_looplevel = 0;
803 cstack.cs_trylevel = 0;
804 cstack.cs_emsg_silent_list = NULL;
805 cstack.cs_lflags = 0;
806 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
808 real_cookie = getline_cookie(getline, cookie);
810 /* Inside a function use a higher nesting level. */
811 getline_is_func = getline_equal(getline, cookie, get_func_line);
812 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
813 ++ex_nesting_level;
815 /* Get the function or script name and the address where the next breakpoint
816 * line and the debug tick for a function or script are stored. */
817 if (getline_is_func)
819 fname = func_name(real_cookie);
820 breakpoint = func_breakpoint(real_cookie);
821 dbg_tick = func_dbg_tick(real_cookie);
823 else if (getline_equal(getline, cookie, getsourceline))
825 fname = sourcing_name;
826 breakpoint = source_breakpoint(real_cookie);
827 dbg_tick = source_dbg_tick(real_cookie);
831 * Initialize "force_abort" and "suppress_errthrow" at the top level.
833 if (!recursive)
835 force_abort = FALSE;
836 suppress_errthrow = FALSE;
840 * If requested, store and reset the global values controlling the
841 * exception handling (used when debugging). Otherwise clear it to avoid
842 * a bogus compiler warning when the optimizer uses inline functions...
844 if (flags & DOCMD_EXCRESET)
845 save_dbg_stuff(&debug_saved);
846 else
847 memset(&debug_saved, 0, 1);
849 initial_trylevel = trylevel;
852 * "did_throw" will be set to TRUE when an exception is being thrown.
854 did_throw = FALSE;
855 #endif
857 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
858 * cancel the whole command line, and any if/endif or loop.
859 * If force_abort is set, we cancel everything.
861 did_emsg = FALSE;
864 * KeyTyped is only set when calling vgetc(). Reset it here when not
865 * calling vgetc() (sourced command lines).
867 if (!(flags & DOCMD_KEYTYPED) && !getline_equal(getline, cookie, getexline))
868 KeyTyped = FALSE;
871 * Continue executing command lines:
872 * - when inside an ":if", ":while" or ":for"
873 * - for multiple commands on one line, separated with '|'
874 * - when repeating until there are no more lines (for ":source")
876 next_cmdline = cmdline;
879 #ifdef FEAT_EVAL
880 getline_is_func = getline_equal(getline, cookie, get_func_line);
881 #endif
883 /* stop skipping cmds for an error msg after all endif/while/for */
884 if (next_cmdline == NULL
885 #ifdef FEAT_EVAL
886 && !force_abort
887 && cstack.cs_idx < 0
888 && !(getline_is_func && func_has_abort(real_cookie))
889 #endif
891 did_emsg = FALSE;
894 * 1. If repeating a line in a loop, get a line from lines_ga.
895 * 2. If no line given: Get an allocated line with getline().
896 * 3. If a line is given: Make a copy, so we can mess with it.
899 #ifdef FEAT_EVAL
900 /* 1. If repeating, get a previous line from lines_ga. */
901 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
903 /* Each '|' separated command is stored separately in lines_ga, to
904 * be able to jump to it. Don't use next_cmdline now. */
905 vim_free(cmdline_copy);
906 cmdline_copy = NULL;
908 /* Check if a function has returned or, unless it has an unclosed
909 * try conditional, aborted. */
910 if (getline_is_func)
912 # ifdef FEAT_PROFILE
913 if (do_profiling == PROF_YES)
914 func_line_end(real_cookie);
915 # endif
916 if (func_has_ended(real_cookie))
918 retval = FAIL;
919 break;
922 #ifdef FEAT_PROFILE
923 else if (do_profiling == PROF_YES
924 && getline_equal(getline, cookie, getsourceline))
925 script_line_end();
926 #endif
928 /* Check if a sourced file hit a ":finish" command. */
929 if (source_finished(getline, cookie))
931 retval = FAIL;
932 break;
935 /* If breakpoints have been added/deleted need to check for it. */
936 if (breakpoint != NULL && dbg_tick != NULL
937 && *dbg_tick != debug_tick)
939 *breakpoint = dbg_find_breakpoint(
940 getline_equal(getline, cookie, getsourceline),
941 fname, sourcing_lnum);
942 *dbg_tick = debug_tick;
945 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
946 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
948 /* Did we encounter a breakpoint? */
949 if (breakpoint != NULL && *breakpoint != 0
950 && *breakpoint <= sourcing_lnum)
952 dbg_breakpoint(fname, sourcing_lnum);
953 /* Find next breakpoint. */
954 *breakpoint = dbg_find_breakpoint(
955 getline_equal(getline, cookie, getsourceline),
956 fname, sourcing_lnum);
957 *dbg_tick = debug_tick;
959 # ifdef FEAT_PROFILE
960 if (do_profiling == PROF_YES)
962 if (getline_is_func)
963 func_line_start(real_cookie);
964 else if (getline_equal(getline, cookie, getsourceline))
965 script_line_start();
967 # endif
970 if (cstack.cs_looplevel > 0)
972 /* Inside a while/for loop we need to store the lines and use them
973 * again. Pass a different "getline" function to do_one_cmd()
974 * below, so that it stores lines in or reads them from
975 * "lines_ga". Makes it possible to define a function inside a
976 * while/for loop. */
977 cmd_getline = get_loop_line;
978 cmd_cookie = (void *)&cmd_loop_cookie;
979 cmd_loop_cookie.lines_gap = &lines_ga;
980 cmd_loop_cookie.current_line = current_line;
981 cmd_loop_cookie.getline = getline;
982 cmd_loop_cookie.cookie = cookie;
983 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
985 else
987 cmd_getline = getline;
988 cmd_cookie = cookie;
990 #endif
992 /* 2. If no line given, get an allocated line with getline(). */
993 if (next_cmdline == NULL)
996 * Need to set msg_didout for the first line after an ":if",
997 * otherwise the ":if" will be overwritten.
999 if (count == 1 && getline_equal(getline, cookie, getexline))
1000 msg_didout = TRUE;
1001 if (getline == NULL || (next_cmdline = getline(':', cookie,
1002 #ifdef FEAT_EVAL
1003 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
1004 #else
1006 #endif
1007 )) == NULL)
1009 /* Don't call wait_return for aborted command line. The NULL
1010 * returned for the end of a sourced file or executed function
1011 * doesn't do this. */
1012 if (KeyTyped && !(flags & DOCMD_REPEAT))
1013 need_wait_return = FALSE;
1014 retval = FAIL;
1015 break;
1017 used_getline = TRUE;
1020 * Keep the first typed line. Clear it when more lines are typed.
1022 if (flags & DOCMD_KEEPLINE)
1024 vim_free(repeat_cmdline);
1025 if (count == 0)
1026 repeat_cmdline = vim_strsave(next_cmdline);
1027 else
1028 repeat_cmdline = NULL;
1032 /* 3. Make a copy of the command so we can mess with it. */
1033 else if (cmdline_copy == NULL)
1035 next_cmdline = vim_strsave(next_cmdline);
1036 if (next_cmdline == NULL)
1038 EMSG(_(e_outofmem));
1039 retval = FAIL;
1040 break;
1043 cmdline_copy = next_cmdline;
1045 #ifdef FEAT_EVAL
1047 * Save the current line when inside a ":while" or ":for", and when
1048 * the command looks like a ":while" or ":for", because we may need it
1049 * later. When there is a '|' and another command, it is stored
1050 * separately, because we need to be able to jump back to it from an
1051 * :endwhile/:endfor.
1053 if (current_line == lines_ga.ga_len
1054 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
1056 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
1058 retval = FAIL;
1059 break;
1062 did_endif = FALSE;
1063 #endif
1065 if (count++ == 0)
1068 * All output from the commands is put below each other, without
1069 * waiting for a return. Don't do this when executing commands
1070 * from a script or when being called recursive (e.g. for ":e
1071 * +command file").
1073 if (!(flags & DOCMD_NOWAIT) && !recursive)
1075 msg_didout_before_start = msg_didout;
1076 msg_didany = FALSE; /* no output yet */
1077 msg_start();
1078 msg_scroll = TRUE; /* put messages below each other */
1079 ++no_wait_return; /* dont wait for return until finished */
1080 ++RedrawingDisabled;
1081 did_inc = TRUE;
1085 if (p_verbose >= 15 && sourcing_name != NULL)
1087 ++no_wait_return;
1088 verbose_enter_scroll();
1090 smsg((char_u *)_("line %ld: %s"),
1091 (long)sourcing_lnum, cmdline_copy);
1092 if (msg_silent == 0)
1093 msg_puts((char_u *)"\n"); /* don't overwrite this */
1095 verbose_leave_scroll();
1096 --no_wait_return;
1100 * 2. Execute one '|' separated command.
1101 * do_one_cmd() will return NULL if there is no trailing '|'.
1102 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1104 ++recursive;
1105 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1106 #ifdef FEAT_EVAL
1107 &cstack,
1108 #endif
1109 cmd_getline, cmd_cookie);
1110 --recursive;
1112 #ifdef FEAT_EVAL
1113 if (cmd_cookie == (void *)&cmd_loop_cookie)
1114 /* Use "current_line" from "cmd_loop_cookie", it may have been
1115 * incremented when defining a function. */
1116 current_line = cmd_loop_cookie.current_line;
1117 #endif
1119 if (next_cmdline == NULL)
1121 vim_free(cmdline_copy);
1122 cmdline_copy = NULL;
1123 #ifdef FEAT_CMDHIST
1125 * If the command was typed, remember it for the ':' register.
1126 * Do this AFTER executing the command to make :@: work.
1128 if (getline_equal(getline, cookie, getexline)
1129 && new_last_cmdline != NULL)
1131 vim_free(last_cmdline);
1132 last_cmdline = new_last_cmdline;
1133 new_last_cmdline = NULL;
1135 #endif
1137 else
1139 /* need to copy the command after the '|' to cmdline_copy, for the
1140 * next do_one_cmd() */
1141 STRMOVE(cmdline_copy, next_cmdline);
1142 next_cmdline = cmdline_copy;
1146 #ifdef FEAT_EVAL
1147 /* reset did_emsg for a function that is not aborted by an error */
1148 if (did_emsg && !force_abort
1149 && getline_equal(getline, cookie, get_func_line)
1150 && !func_has_abort(real_cookie))
1151 did_emsg = FALSE;
1153 if (cstack.cs_looplevel > 0)
1155 ++current_line;
1158 * An ":endwhile", ":endfor" and ":continue" is handled here.
1159 * If we were executing commands, jump back to the ":while" or
1160 * ":for".
1161 * If we were not executing commands, decrement cs_looplevel.
1163 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
1165 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
1167 /* Jump back to the matching ":while" or ":for". Be careful
1168 * not to use a cs_line[] from an entry that isn't a ":while"
1169 * or ":for": It would make "current_line" invalid and can
1170 * cause a crash. */
1171 if (!did_emsg && !got_int && !did_throw
1172 && cstack.cs_idx >= 0
1173 && (cstack.cs_flags[cstack.cs_idx]
1174 & (CSF_WHILE | CSF_FOR))
1175 && cstack.cs_line[cstack.cs_idx] >= 0
1176 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1178 current_line = cstack.cs_line[cstack.cs_idx];
1179 /* remember we jumped there */
1180 cstack.cs_lflags |= CSL_HAD_LOOP;
1181 line_breakcheck(); /* check if CTRL-C typed */
1183 /* Check for the next breakpoint at or after the ":while"
1184 * or ":for". */
1185 if (breakpoint != NULL)
1187 *breakpoint = dbg_find_breakpoint(
1188 getline_equal(getline, cookie, getsourceline),
1189 fname,
1190 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1191 *dbg_tick = debug_tick;
1194 else
1196 /* can only get here with ":endwhile" or ":endfor" */
1197 if (cstack.cs_idx >= 0)
1198 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1199 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
1204 * For a ":while" or ":for" we need to remember the line number.
1206 else if (cstack.cs_lflags & CSL_HAD_LOOP)
1208 cstack.cs_lflags &= ~CSL_HAD_LOOP;
1209 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1214 * When not inside any ":while" loop, clear remembered lines.
1216 if (cstack.cs_looplevel == 0)
1218 if (lines_ga.ga_len > 0)
1220 sourcing_lnum =
1221 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1222 free_cmdlines(&lines_ga);
1224 current_line = 0;
1228 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1229 * being restored at the ":endtry". Reset them here and set the
1230 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1231 * This includes the case where a missing ":endif", ":endwhile" or
1232 * ":endfor" was detected by the ":finally" itself.
1234 if (cstack.cs_lflags & CSL_HAD_FINA)
1236 cstack.cs_lflags &= ~CSL_HAD_FINA;
1237 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1238 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
1239 did_throw ? (void *)current_exception : NULL);
1240 did_emsg = got_int = did_throw = FALSE;
1241 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1244 /* Update global "trylevel" for recursive calls to do_cmdline() from
1245 * within this loop. */
1246 trylevel = initial_trylevel + cstack.cs_trylevel;
1249 * If the outermost try conditional (across function calls and sourced
1250 * files) is aborted because of an error, an interrupt, or an uncaught
1251 * exception, cancel everything. If it is left normally, reset
1252 * force_abort to get the non-EH compatible abortion behavior for
1253 * the rest of the script.
1255 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1256 force_abort = FALSE;
1258 /* Convert an interrupt to an exception if appropriate. */
1259 (void)do_intthrow(&cstack);
1260 #endif /* FEAT_EVAL */
1264 * Continue executing command lines when:
1265 * - no CTRL-C typed, no aborting error, no exception thrown or try
1266 * conditionals need to be checked for executing finally clauses or
1267 * catching an interrupt exception
1268 * - didn't get an error message or lines are not typed
1269 * - there is a command after '|', inside a :if, :while, :for or :try, or
1270 * looping for ":source" command or function call.
1272 while (!((got_int
1273 #ifdef FEAT_EVAL
1274 || (did_emsg && force_abort) || did_throw
1275 #endif
1277 #ifdef FEAT_EVAL
1278 && cstack.cs_trylevel == 0
1279 #endif
1281 && !(did_emsg && used_getline
1282 && (getline_equal(getline, cookie, getexmodeline)
1283 || getline_equal(getline, cookie, getexline)))
1284 && (next_cmdline != NULL
1285 #ifdef FEAT_EVAL
1286 || cstack.cs_idx >= 0
1287 #endif
1288 || (flags & DOCMD_REPEAT)));
1290 vim_free(cmdline_copy);
1291 #ifdef FEAT_EVAL
1292 free_cmdlines(&lines_ga);
1293 ga_clear(&lines_ga);
1295 if (cstack.cs_idx >= 0)
1298 * If a sourced file or executed function ran to its end, report the
1299 * unclosed conditional.
1301 if (!got_int && !did_throw
1302 && ((getline_equal(getline, cookie, getsourceline)
1303 && !source_finished(getline, cookie))
1304 || (getline_equal(getline, cookie, get_func_line)
1305 && !func_has_ended(real_cookie))))
1307 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1308 EMSG(_(e_endtry));
1309 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1310 EMSG(_(e_endwhile));
1311 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1312 EMSG(_(e_endfor));
1313 else
1314 EMSG(_(e_endif));
1318 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1319 * ":endtry" in a sourced file or executed function. If the try
1320 * conditional is in its finally clause, ignore anything pending.
1321 * If it is in a catch clause, finish the caught exception.
1322 * Also cleanup any "cs_forinfo" structures.
1326 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1328 if (idx >= 0)
1329 --idx; /* remove try block not in its finally clause */
1330 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1331 &cstack.cs_looplevel);
1333 while (cstack.cs_idx >= 0);
1334 trylevel = initial_trylevel;
1337 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1338 * lack was reported above and the error message is to be converted to an
1339 * exception, do this now after rewinding the cstack. */
1340 do_errthrow(&cstack, getline_equal(getline, cookie, get_func_line)
1341 ? (char_u *)"endfunction" : (char_u *)NULL);
1343 if (trylevel == 0)
1346 * When an exception is being thrown out of the outermost try
1347 * conditional, discard the uncaught exception, disable the conversion
1348 * of interrupts or errors to exceptions, and ensure that no more
1349 * commands are executed.
1351 if (did_throw)
1353 void *p = NULL;
1354 char_u *saved_sourcing_name;
1355 int saved_sourcing_lnum;
1356 struct msglist *messages = NULL, *next;
1359 * If the uncaught exception is a user exception, report it as an
1360 * error. If it is an error exception, display the saved error
1361 * message now. For an interrupt exception, do nothing; the
1362 * interrupt message is given elsewhere.
1364 switch (current_exception->type)
1366 case ET_USER:
1367 vim_snprintf((char *)IObuff, IOSIZE,
1368 _("E605: Exception not caught: %s"),
1369 current_exception->value);
1370 p = vim_strsave(IObuff);
1371 break;
1372 case ET_ERROR:
1373 messages = current_exception->messages;
1374 current_exception->messages = NULL;
1375 break;
1376 case ET_INTERRUPT:
1377 break;
1378 default:
1379 p = vim_strsave((char_u *)_(e_internal));
1382 saved_sourcing_name = sourcing_name;
1383 saved_sourcing_lnum = sourcing_lnum;
1384 sourcing_name = current_exception->throw_name;
1385 sourcing_lnum = current_exception->throw_lnum;
1386 current_exception->throw_name = NULL;
1388 discard_current_exception(); /* uses IObuff if 'verbose' */
1389 suppress_errthrow = TRUE;
1390 force_abort = TRUE;
1392 if (messages != NULL)
1396 next = messages->next;
1397 emsg(messages->msg);
1398 vim_free(messages->msg);
1399 vim_free(messages);
1400 messages = next;
1402 while (messages != NULL);
1404 else if (p != NULL)
1406 emsg(p);
1407 vim_free(p);
1409 vim_free(sourcing_name);
1410 sourcing_name = saved_sourcing_name;
1411 sourcing_lnum = saved_sourcing_lnum;
1415 * On an interrupt or an aborting error not converted to an exception,
1416 * disable the conversion of errors to exceptions. (Interrupts are not
1417 * converted any more, here.) This enables also the interrupt message
1418 * when force_abort is set and did_emsg unset in case of an interrupt
1419 * from a finally clause after an error.
1421 else if (got_int || (did_emsg && force_abort))
1422 suppress_errthrow = TRUE;
1426 * The current cstack will be freed when do_cmdline() returns. An uncaught
1427 * exception will have to be rethrown in the previous cstack. If a function
1428 * has just returned or a script file was just finished and the previous
1429 * cstack belongs to the same function or, respectively, script file, it
1430 * will have to be checked for finally clauses to be executed due to the
1431 * ":return" or ":finish". This is done in do_one_cmd().
1433 if (did_throw)
1434 need_rethrow = TRUE;
1435 if ((getline_equal(getline, cookie, getsourceline)
1436 && ex_nesting_level > source_level(real_cookie))
1437 || (getline_equal(getline, cookie, get_func_line)
1438 && ex_nesting_level > func_level(real_cookie) + 1))
1440 if (!did_throw)
1441 check_cstack = TRUE;
1443 else
1445 /* When leaving a function, reduce nesting level. */
1446 if (getline_equal(getline, cookie, get_func_line))
1447 --ex_nesting_level;
1449 * Go to debug mode when returning from a function in which we are
1450 * single-stepping.
1452 if ((getline_equal(getline, cookie, getsourceline)
1453 || getline_equal(getline, cookie, get_func_line))
1454 && ex_nesting_level + 1 <= debug_break_level)
1455 do_debug(getline_equal(getline, cookie, getsourceline)
1456 ? (char_u *)_("End of sourced file")
1457 : (char_u *)_("End of function"));
1461 * Restore the exception environment (done after returning from the
1462 * debugger).
1464 if (flags & DOCMD_EXCRESET)
1465 restore_dbg_stuff(&debug_saved);
1467 msg_list = saved_msg_list;
1468 #endif /* FEAT_EVAL */
1471 * If there was too much output to fit on the command line, ask the user to
1472 * hit return before redrawing the screen. With the ":global" command we do
1473 * this only once after the command is finished.
1475 if (did_inc)
1477 --RedrawingDisabled;
1478 --no_wait_return;
1479 msg_scroll = FALSE;
1482 * When just finished an ":if"-":else" which was typed, no need to
1483 * wait for hit-return. Also for an error situation.
1485 if (retval == FAIL
1486 #ifdef FEAT_EVAL
1487 || (did_endif && KeyTyped && !did_emsg)
1488 #endif
1491 need_wait_return = FALSE;
1492 msg_didany = FALSE; /* don't wait when restarting edit */
1494 else if (need_wait_return)
1497 * The msg_start() above clears msg_didout. The wait_return we do
1498 * here should not overwrite the command that may be shown before
1499 * doing that.
1501 msg_didout |= msg_didout_before_start;
1502 wait_return(FALSE);
1506 #ifndef FEAT_EVAL
1508 * Reset if_level, in case a sourced script file contains more ":if" than
1509 * ":endif" (could be ":if x | foo | endif").
1511 if_level = 0;
1512 #endif
1514 --call_depth;
1515 return retval;
1518 #ifdef FEAT_EVAL
1520 * Obtain a line when inside a ":while" or ":for" loop.
1522 static char_u *
1523 get_loop_line(c, cookie, indent)
1524 int c;
1525 void *cookie;
1526 int indent;
1528 struct loop_cookie *cp = (struct loop_cookie *)cookie;
1529 wcmd_T *wp;
1530 char_u *line;
1532 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1534 if (cp->repeating)
1535 return NULL; /* trying to read past ":endwhile"/":endfor" */
1537 /* First time inside the ":while"/":for": get line normally. */
1538 if (cp->getline == NULL)
1539 line = getcmdline(c, 0L, indent);
1540 else
1541 line = cp->getline(c, cp->cookie, indent);
1542 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
1543 ++cp->current_line;
1545 return line;
1548 KeyTyped = FALSE;
1549 ++cp->current_line;
1550 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1551 sourcing_lnum = wp->lnum;
1552 return vim_strsave(wp->line);
1556 * Store a line in "gap" so that a ":while" loop can execute it again.
1558 static int
1559 store_loop_line(gap, line)
1560 garray_T *gap;
1561 char_u *line;
1563 if (ga_grow(gap, 1) == FAIL)
1564 return FAIL;
1565 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1566 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1567 ++gap->ga_len;
1568 return OK;
1572 * Free the lines stored for a ":while" or ":for" loop.
1574 static void
1575 free_cmdlines(gap)
1576 garray_T *gap;
1578 while (gap->ga_len > 0)
1580 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1581 --gap->ga_len;
1584 #endif
1587 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1588 * "func". * Otherwise return TRUE when "fgetline" equals "func".
1591 getline_equal(fgetline, cookie, func)
1592 char_u *(*fgetline) __ARGS((int, void *, int));
1593 void *cookie UNUSED; /* argument for fgetline() */
1594 char_u *(*func) __ARGS((int, void *, int));
1596 #ifdef FEAT_EVAL
1597 char_u *(*gp) __ARGS((int, void *, int));
1598 struct loop_cookie *cp;
1600 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1601 * function that's originally used to obtain the lines. This may be
1602 * nested several levels. */
1603 gp = fgetline;
1604 cp = (struct loop_cookie *)cookie;
1605 while (gp == get_loop_line)
1607 gp = cp->getline;
1608 cp = cp->cookie;
1610 return gp == func;
1611 #else
1612 return fgetline == func;
1613 #endif
1616 #if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1618 * If "fgetline" is get_loop_line(), return the cookie used by the original
1619 * getline function. Otherwise return "cookie".
1621 void *
1622 getline_cookie(fgetline, cookie)
1623 char_u *(*fgetline) __ARGS((int, void *, int)) UNUSED;
1624 void *cookie; /* argument for fgetline() */
1626 # ifdef FEAT_EVAL
1627 char_u *(*gp) __ARGS((int, void *, int));
1628 struct loop_cookie *cp;
1630 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1631 * cookie that's originally used to obtain the lines. This may be nested
1632 * several levels. */
1633 gp = fgetline;
1634 cp = (struct loop_cookie *)cookie;
1635 while (gp == get_loop_line)
1637 gp = cp->getline;
1638 cp = cp->cookie;
1640 return cp;
1641 # else
1642 return cookie;
1643 # endif
1645 #endif
1648 * Execute one Ex command.
1650 * If 'sourcing' is TRUE, the command will be included in the error message.
1652 * 1. skip comment lines and leading space
1653 * 2. handle command modifiers
1654 * 3. parse range
1655 * 4. parse command
1656 * 5. parse arguments
1657 * 6. switch on command name
1659 * Note: "fgetline" can be NULL.
1661 * This function may be called recursively!
1663 #if (_MSC_VER == 1200)
1665 * Avoid optimisation bug in VC++ version 6.0
1667 #pragma optimize( "g", off )
1668 #endif
1669 static char_u *
1670 do_one_cmd(cmdlinep, sourcing,
1671 #ifdef FEAT_EVAL
1672 cstack,
1673 #endif
1674 fgetline, cookie)
1675 char_u **cmdlinep;
1676 int sourcing;
1677 #ifdef FEAT_EVAL
1678 struct condstack *cstack;
1679 #endif
1680 char_u *(*fgetline) __ARGS((int, void *, int));
1681 void *cookie; /* argument for fgetline() */
1683 char_u *p;
1684 linenr_T lnum;
1685 long n;
1686 char_u *errormsg = NULL; /* error message */
1687 exarg_T ea; /* Ex command arguments */
1688 long verbose_save = -1;
1689 int save_msg_scroll = msg_scroll;
1690 int save_msg_silent = -1;
1691 int did_esilent = 0;
1692 #ifdef HAVE_SANDBOX
1693 int did_sandbox = FALSE;
1694 #endif
1695 cmdmod_T save_cmdmod;
1696 int ni; /* set when Not Implemented */
1698 vim_memset(&ea, 0, sizeof(ea));
1699 ea.line1 = 1;
1700 ea.line2 = 1;
1701 #ifdef FEAT_EVAL
1702 ++ex_nesting_level;
1703 #endif
1705 /* when not editing the last file :q has to be typed twice */
1706 if (quitmore
1707 #ifdef FEAT_EVAL
1708 /* avoid that a function call in 'statusline' does this */
1709 && !getline_equal(fgetline, cookie, get_func_line)
1710 #endif
1712 --quitmore;
1715 * Reset browse, confirm, etc.. They are restored when returning, for
1716 * recursive calls.
1718 save_cmdmod = cmdmod;
1719 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1721 /* "#!anything" is handled like a comment. */
1722 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1723 goto doend;
1726 * Repeat until no more command modifiers are found.
1728 ea.cmd = *cmdlinep;
1729 for (;;)
1732 * 1. skip comment lines and leading white space and colons
1734 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1735 ++ea.cmd;
1737 /* in ex mode, an empty line works like :+ */
1738 if (*ea.cmd == NUL && exmode_active
1739 && (getline_equal(fgetline, cookie, getexmodeline)
1740 || getline_equal(fgetline, cookie, getexline))
1741 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
1743 ea.cmd = (char_u *)"+";
1744 ex_pressedreturn = TRUE;
1747 /* ignore comment and empty lines */
1748 if (*ea.cmd == '"')
1749 goto doend;
1750 if (*ea.cmd == NUL)
1752 ex_pressedreturn = TRUE;
1753 goto doend;
1757 * 2. handle command modifiers.
1759 p = ea.cmd;
1760 if (VIM_ISDIGIT(*ea.cmd))
1761 p = skipwhite(skipdigits(ea.cmd));
1762 switch (*p)
1764 /* When adding an entry, also modify cmd_exists(). */
1765 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1766 break;
1767 #ifdef FEAT_WINDOWS
1768 cmdmod.split |= WSP_ABOVE;
1769 #endif
1770 continue;
1772 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1774 #ifdef FEAT_WINDOWS
1775 cmdmod.split |= WSP_BELOW;
1776 #endif
1777 continue;
1779 if (checkforcmd(&ea.cmd, "browse", 3))
1781 #ifdef FEAT_BROWSE_CMD
1782 cmdmod.browse = TRUE;
1783 #endif
1784 continue;
1786 if (!checkforcmd(&ea.cmd, "botright", 2))
1787 break;
1788 #ifdef FEAT_WINDOWS
1789 cmdmod.split |= WSP_BOT;
1790 #endif
1791 continue;
1793 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1794 break;
1795 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1796 cmdmod.confirm = TRUE;
1797 #endif
1798 continue;
1800 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1802 cmdmod.keepmarks = TRUE;
1803 continue;
1805 if (checkforcmd(&ea.cmd, "keepalt", 5))
1807 cmdmod.keepalt = TRUE;
1808 continue;
1810 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1811 break;
1812 cmdmod.keepjumps = TRUE;
1813 continue;
1815 /* ":hide" and ":hide | cmd" are not modifiers */
1816 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1817 || *p == NUL || ends_excmd(*p))
1818 break;
1819 ea.cmd = p;
1820 cmdmod.hide = TRUE;
1821 continue;
1823 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1825 cmdmod.lockmarks = TRUE;
1826 continue;
1829 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1830 break;
1831 #ifdef FEAT_WINDOWS
1832 cmdmod.split |= WSP_ABOVE;
1833 #endif
1834 continue;
1836 case 'n': if (!checkforcmd(&ea.cmd, "noautocmd", 3))
1837 break;
1838 #ifdef FEAT_AUTOCMD
1839 if (cmdmod.save_ei == NULL)
1841 /* Set 'eventignore' to "all". Restore the
1842 * existing option value later. */
1843 cmdmod.save_ei = vim_strsave(p_ei);
1844 set_string_option_direct((char_u *)"ei", -1,
1845 (char_u *)"all", OPT_FREE, SID_NONE);
1847 #endif
1848 continue;
1850 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
1851 break;
1852 #ifdef FEAT_WINDOWS
1853 cmdmod.split |= WSP_BELOW;
1854 #endif
1855 continue;
1857 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
1859 #ifdef HAVE_SANDBOX
1860 if (!did_sandbox)
1861 ++sandbox;
1862 did_sandbox = TRUE;
1863 #endif
1864 continue;
1866 if (!checkforcmd(&ea.cmd, "silent", 3))
1867 break;
1868 if (save_msg_silent == -1)
1869 save_msg_silent = msg_silent;
1870 ++msg_silent;
1871 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
1873 /* ":silent!", but not "silent !cmd" */
1874 ea.cmd = skipwhite(ea.cmd + 1);
1875 ++emsg_silent;
1876 ++did_esilent;
1878 continue;
1880 case 't': if (checkforcmd(&p, "tab", 3))
1882 #ifdef FEAT_WINDOWS
1883 if (vim_isdigit(*ea.cmd))
1884 cmdmod.tab = atoi((char *)ea.cmd) + 1;
1885 else
1886 cmdmod.tab = tabpage_index(curtab) + 1;
1887 ea.cmd = p;
1888 #endif
1889 continue;
1891 if (!checkforcmd(&ea.cmd, "topleft", 2))
1892 break;
1893 #ifdef FEAT_WINDOWS
1894 cmdmod.split |= WSP_TOP;
1895 #endif
1896 continue;
1898 case 'u': if (!checkforcmd(&ea.cmd, "unsilent", 3))
1899 break;
1900 if (save_msg_silent == -1)
1901 save_msg_silent = msg_silent;
1902 msg_silent = 0;
1903 continue;
1905 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
1907 #ifdef FEAT_VERTSPLIT
1908 cmdmod.split |= WSP_VERT;
1909 #endif
1910 continue;
1912 if (!checkforcmd(&p, "verbose", 4))
1913 break;
1914 if (verbose_save < 0)
1915 verbose_save = p_verbose;
1916 if (vim_isdigit(*ea.cmd))
1917 p_verbose = atoi((char *)ea.cmd);
1918 else
1919 p_verbose = 1;
1920 ea.cmd = p;
1921 continue;
1923 break;
1926 #ifdef FEAT_EVAL
1927 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1928 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1929 #else
1930 ea.skip = (if_level > 0);
1931 #endif
1933 #ifdef FEAT_EVAL
1934 # ifdef FEAT_PROFILE
1935 /* Count this line for profiling if ea.skip is FALSE. */
1936 if (do_profiling == PROF_YES && !ea.skip)
1938 if (getline_equal(fgetline, cookie, get_func_line))
1939 func_line_exec(getline_cookie(fgetline, cookie));
1940 else if (getline_equal(fgetline, cookie, getsourceline))
1941 script_line_exec();
1943 #endif
1945 /* May go to debug mode. If this happens and the ">quit" debug command is
1946 * used, throw an interrupt exception and skip the next command. */
1947 dbg_check_breakpoint(&ea);
1948 if (!ea.skip && got_int)
1950 ea.skip = TRUE;
1951 (void)do_intthrow(cstack);
1953 #endif
1956 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1958 * where 'addr' is:
1960 * % (entire file)
1961 * $ [+-NUM]
1962 * 'x [+-NUM] (where x denotes a currently defined mark)
1963 * . [+-NUM]
1964 * [+-NUM]..
1965 * NUM
1967 * The ea.cmd pointer is updated to point to the first character following the
1968 * range spec. If an initial address is found, but no second, the upper bound
1969 * is equal to the lower.
1972 /* repeat for all ',' or ';' separated addresses */
1973 for (;;)
1975 ea.line1 = ea.line2;
1976 ea.line2 = curwin->w_cursor.lnum; /* default is current line number */
1977 ea.cmd = skipwhite(ea.cmd);
1978 lnum = get_address(&ea.cmd, ea.skip, ea.addr_count == 0);
1979 if (ea.cmd == NULL) /* error detected */
1980 goto doend;
1981 if (lnum == MAXLNUM)
1983 if (*ea.cmd == '%') /* '%' - all lines */
1985 ++ea.cmd;
1986 ea.line1 = 1;
1987 ea.line2 = curbuf->b_ml.ml_line_count;
1988 ++ea.addr_count;
1990 /* '*' - visual area */
1991 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1993 pos_T *fp;
1995 ++ea.cmd;
1996 if (!ea.skip)
1998 fp = getmark('<', FALSE);
1999 if (check_mark(fp) == FAIL)
2000 goto doend;
2001 ea.line1 = fp->lnum;
2002 fp = getmark('>', FALSE);
2003 if (check_mark(fp) == FAIL)
2004 goto doend;
2005 ea.line2 = fp->lnum;
2006 ++ea.addr_count;
2010 else
2011 ea.line2 = lnum;
2012 ea.addr_count++;
2014 if (*ea.cmd == ';')
2016 if (!ea.skip)
2017 curwin->w_cursor.lnum = ea.line2;
2019 else if (*ea.cmd != ',')
2020 break;
2021 ++ea.cmd;
2024 /* One address given: set start and end lines */
2025 if (ea.addr_count == 1)
2027 ea.line1 = ea.line2;
2028 /* ... but only implicit: really no address given */
2029 if (lnum == MAXLNUM)
2030 ea.addr_count = 0;
2033 /* Don't leave the cursor on an illegal line (caused by ';') */
2034 check_cursor_lnum();
2037 * 4. parse command
2041 * Skip ':' and any white space
2043 ea.cmd = skipwhite(ea.cmd);
2044 while (*ea.cmd == ':')
2045 ea.cmd = skipwhite(ea.cmd + 1);
2048 * If we got a line, but no command, then go to the line.
2049 * If we find a '|' or '\n' we set ea.nextcmd.
2051 if (*ea.cmd == NUL || *ea.cmd == '"' ||
2052 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2055 * strange vi behaviour:
2056 * ":3" jumps to line 3
2057 * ":3|..." prints line 3
2058 * ":|" prints current line
2060 if (ea.skip) /* skip this if inside :if */
2061 goto doend;
2062 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
2064 ea.cmdidx = CMD_print;
2065 ea.argt = RANGE+COUNT+TRLBAR;
2066 if ((errormsg = invalid_range(&ea)) == NULL)
2068 correct_range(&ea);
2069 ex_print(&ea);
2072 else if (ea.addr_count != 0)
2074 if (ea.line2 > curbuf->b_ml.ml_line_count)
2076 /* With '-' in 'cpoptions' a line number past the file is an
2077 * error, otherwise put it at the end of the file. */
2078 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2079 ea.line2 = -1;
2080 else
2081 ea.line2 = curbuf->b_ml.ml_line_count;
2084 if (ea.line2 < 0)
2085 errormsg = (char_u *)_(e_invrange);
2086 else
2088 if (ea.line2 == 0)
2089 curwin->w_cursor.lnum = 1;
2090 else
2091 curwin->w_cursor.lnum = ea.line2;
2092 beginline(BL_SOL | BL_FIX);
2095 goto doend;
2098 /* Find the command and let "p" point to after it. */
2099 p = find_command(&ea, NULL);
2101 #ifdef FEAT_USR_CMDS
2102 if (p == NULL)
2104 if (!ea.skip)
2105 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2106 goto doend;
2108 /* Check for wrong commands. */
2109 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2111 errormsg = uc_fun_cmd();
2112 goto doend;
2114 #endif
2115 if (ea.cmdidx == CMD_SIZE)
2117 if (!ea.skip)
2119 STRCPY(IObuff, _("E492: Not an editor command"));
2120 if (!sourcing)
2122 STRCAT(IObuff, ": ");
2123 STRNCAT(IObuff, *cmdlinep, 40);
2125 errormsg = IObuff;
2127 goto doend;
2130 ni = (
2131 #ifdef FEAT_USR_CMDS
2132 !USER_CMDIDX(ea.cmdidx) &&
2133 #endif
2134 (cmdnames[ea.cmdidx].cmd_func == ex_ni
2135 #ifdef HAVE_EX_SCRIPT_NI
2136 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2137 #endif
2140 #ifndef FEAT_EVAL
2142 * When the expression evaluation is disabled, recognize the ":if" and
2143 * ":endif" commands and ignore everything in between it.
2145 if (ea.cmdidx == CMD_if)
2146 ++if_level;
2147 if (if_level)
2149 if (ea.cmdidx == CMD_endif)
2150 --if_level;
2151 goto doend;
2154 #endif
2156 /* forced commands */
2157 if (*p == '!' && ea.cmdidx != CMD_substitute
2158 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
2160 ++p;
2161 ea.forceit = TRUE;
2163 else
2164 ea.forceit = FALSE;
2167 * 5. parse arguments
2169 #ifdef FEAT_USR_CMDS
2170 if (!USER_CMDIDX(ea.cmdidx))
2171 #endif
2172 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
2174 if (!ea.skip)
2176 #ifdef HAVE_SANDBOX
2177 if (sandbox != 0 && !(ea.argt & SBOXOK))
2179 /* Command not allowed in sandbox. */
2180 errormsg = (char_u *)_(e_sandbox);
2181 goto doend;
2183 #endif
2184 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2186 /* Command not allowed in non-'modifiable' buffer */
2187 errormsg = (char_u *)_(e_modifiable);
2188 goto doend;
2191 if (text_locked() && !(ea.argt & CMDWIN)
2192 # ifdef FEAT_USR_CMDS
2193 && !USER_CMDIDX(ea.cmdidx)
2194 # endif
2197 /* Command not allowed when editing the command line. */
2198 #ifdef FEAT_CMDWIN
2199 if (cmdwin_type != 0)
2200 errormsg = (char_u *)_(e_cmdwin);
2201 else
2202 #endif
2203 errormsg = (char_u *)_(e_secure);
2204 goto doend;
2206 #ifdef FEAT_AUTOCMD
2207 /* Disallow editing another buffer when "curbuf_lock" is set.
2208 * Do allow ":edit" (check for argument later).
2209 * Do allow ":checktime" (it's postponed). */
2210 if (!(ea.argt & CMDWIN)
2211 && ea.cmdidx != CMD_edit
2212 && ea.cmdidx != CMD_checktime
2213 # ifdef FEAT_USR_CMDS
2214 && !USER_CMDIDX(ea.cmdidx)
2215 # endif
2216 && curbuf_locked())
2217 goto doend;
2218 #endif
2220 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2222 /* no range allowed */
2223 errormsg = (char_u *)_(e_norange);
2224 goto doend;
2228 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2230 errormsg = (char_u *)_(e_nobang);
2231 goto doend;
2235 * Don't complain about the range if it is not used
2236 * (could happen if line_count is accidentally set to 0).
2238 if (!ea.skip && !ni)
2241 * If the range is backwards, ask for confirmation and, if given, swap
2242 * ea.line1 & ea.line2 so it's forwards again.
2243 * When global command is busy, don't ask, will fail below.
2245 if (!global_busy && ea.line1 > ea.line2)
2247 if (msg_silent == 0)
2249 if (sourcing || exmode_active)
2251 errormsg = (char_u *)_("E493: Backwards range given");
2252 goto doend;
2254 if (ask_yesno((char_u *)
2255 _("Backwards range given, OK to swap"), FALSE) != 'y')
2256 goto doend;
2258 lnum = ea.line1;
2259 ea.line1 = ea.line2;
2260 ea.line2 = lnum;
2262 if ((errormsg = invalid_range(&ea)) != NULL)
2263 goto doend;
2266 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2267 ea.line2 = 1;
2269 correct_range(&ea);
2271 #ifdef FEAT_FOLDING
2272 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2274 /* Put the first line at the start of a closed fold, put the last line
2275 * at the end of a closed fold. */
2276 (void)hasFolding(ea.line1, &ea.line1, NULL);
2277 (void)hasFolding(ea.line2, NULL, &ea.line2);
2279 #endif
2281 #ifdef FEAT_QUICKFIX
2283 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
2284 * option here, so things like % get expanded.
2286 p = replace_makeprg(&ea, p, cmdlinep);
2287 if (p == NULL)
2288 goto doend;
2289 #endif
2292 * Skip to start of argument.
2293 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2295 if (ea.cmdidx == CMD_bang)
2296 ea.arg = p;
2297 else
2298 ea.arg = skipwhite(p);
2301 * Check for "++opt=val" argument.
2302 * Must be first, allow ":w ++enc=utf8 !cmd"
2304 if (ea.argt & ARGOPT)
2305 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2306 if (getargopt(&ea) == FAIL && !ni)
2308 errormsg = (char_u *)_(e_invarg);
2309 goto doend;
2312 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2314 if (*ea.arg == '>') /* append */
2316 if (*++ea.arg != '>') /* typed wrong */
2318 errormsg = (char_u *)_("E494: Use w or w>>");
2319 goto doend;
2321 ea.arg = skipwhite(ea.arg + 1);
2322 ea.append = TRUE;
2324 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2326 ++ea.arg;
2327 ea.usefilter = TRUE;
2331 if (ea.cmdidx == CMD_read)
2333 if (ea.forceit)
2335 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2336 ea.forceit = FALSE;
2338 else if (*ea.arg == '!') /* :r !filter */
2340 ++ea.arg;
2341 ea.usefilter = TRUE;
2345 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2347 ea.amount = 1;
2348 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2350 ++ea.arg;
2351 ++ea.amount;
2353 ea.arg = skipwhite(ea.arg);
2357 * Check for "+command" argument, before checking for next command.
2358 * Don't do this for ":read !cmd" and ":write !cmd".
2360 if ((ea.argt & EDITCMD) && !ea.usefilter)
2361 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2364 * Check for '|' to separate commands and '"' to start comments.
2365 * Don't do this for ":read !cmd" and ":write !cmd".
2367 if ((ea.argt & TRLBAR) && !ea.usefilter)
2368 separate_nextcmd(&ea);
2371 * Check for <newline> to end a shell command.
2372 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2373 * Any others?
2375 else if (ea.cmdidx == CMD_bang
2376 || ea.cmdidx == CMD_global
2377 || ea.cmdidx == CMD_vglobal
2378 || ea.usefilter)
2380 for (p = ea.arg; *p; ++p)
2382 /* Remove one backslash before a newline, so that it's possible to
2383 * pass a newline to the shell and also a newline that is preceded
2384 * with a backslash. This makes it impossible to end a shell
2385 * command in a backslash, but that doesn't appear useful.
2386 * Halving the number of backslashes is incompatible with previous
2387 * versions. */
2388 if (*p == '\\' && p[1] == '\n')
2389 STRMOVE(p, p + 1);
2390 else if (*p == '\n')
2392 ea.nextcmd = p + 1;
2393 *p = NUL;
2394 break;
2399 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2401 ea.line1 = 1;
2402 ea.line2 = curbuf->b_ml.ml_line_count;
2405 /* accept numbered register only when no count allowed (:put) */
2406 if ( (ea.argt & REGSTR)
2407 && *ea.arg != NUL
2408 #ifdef FEAT_USR_CMDS
2409 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2410 && USER_CMDIDX(ea.cmdidx)))
2411 /* Do not allow register = for user commands */
2412 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2413 #else
2414 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2415 #endif
2416 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2418 ea.regname = *ea.arg++;
2419 #ifdef FEAT_EVAL
2420 /* for '=' register: accept the rest of the line as an expression */
2421 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2423 set_expr_line(vim_strsave(ea.arg));
2424 ea.arg += STRLEN(ea.arg);
2426 #endif
2427 ea.arg = skipwhite(ea.arg);
2431 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2432 * count, it's a buffer name.
2434 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2435 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2436 || vim_iswhite(*p)))
2438 n = getdigits(&ea.arg);
2439 ea.arg = skipwhite(ea.arg);
2440 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
2442 errormsg = (char_u *)_(e_zerocount);
2443 goto doend;
2445 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2447 ea.line2 = n;
2448 if (ea.addr_count == 0)
2449 ea.addr_count = 1;
2451 else
2453 ea.line1 = ea.line2;
2454 ea.line2 += n - 1;
2455 ++ea.addr_count;
2457 * Be vi compatible: no error message for out of range.
2459 if (ea.line2 > curbuf->b_ml.ml_line_count)
2460 ea.line2 = curbuf->b_ml.ml_line_count;
2465 * Check for flags: 'l', 'p' and '#'.
2467 if (ea.argt & EXFLAGS)
2468 get_flags(&ea);
2469 /* no arguments allowed */
2470 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
2471 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
2473 errormsg = (char_u *)_(e_trailing);
2474 goto doend;
2477 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2479 errormsg = (char_u *)_(e_argreq);
2480 goto doend;
2483 #ifdef FEAT_EVAL
2485 * Skip the command when it's not going to be executed.
2486 * The commands like :if, :endif, etc. always need to be executed.
2487 * Also make an exception for commands that handle a trailing command
2488 * themselves.
2490 if (ea.skip)
2492 switch (ea.cmdidx)
2494 /* commands that need evaluation */
2495 case CMD_while:
2496 case CMD_endwhile:
2497 case CMD_for:
2498 case CMD_endfor:
2499 case CMD_if:
2500 case CMD_elseif:
2501 case CMD_else:
2502 case CMD_endif:
2503 case CMD_try:
2504 case CMD_catch:
2505 case CMD_finally:
2506 case CMD_endtry:
2507 case CMD_function:
2508 break;
2510 /* Commands that handle '|' themselves. Check: A command should
2511 * either have the TRLBAR flag, appear in this list or appear in
2512 * the list at ":help :bar". */
2513 case CMD_aboveleft:
2514 case CMD_and:
2515 case CMD_belowright:
2516 case CMD_botright:
2517 case CMD_browse:
2518 case CMD_call:
2519 case CMD_confirm:
2520 case CMD_delfunction:
2521 case CMD_djump:
2522 case CMD_dlist:
2523 case CMD_dsearch:
2524 case CMD_dsplit:
2525 case CMD_echo:
2526 case CMD_echoerr:
2527 case CMD_echomsg:
2528 case CMD_echon:
2529 case CMD_execute:
2530 case CMD_help:
2531 case CMD_hide:
2532 case CMD_ijump:
2533 case CMD_ilist:
2534 case CMD_isearch:
2535 case CMD_isplit:
2536 case CMD_keepalt:
2537 case CMD_keepjumps:
2538 case CMD_keepmarks:
2539 case CMD_leftabove:
2540 case CMD_let:
2541 case CMD_lockmarks:
2542 case CMD_match:
2543 case CMD_mzscheme:
2544 case CMD_perl:
2545 case CMD_psearch:
2546 case CMD_python:
2547 case CMD_return:
2548 case CMD_rightbelow:
2549 case CMD_ruby:
2550 case CMD_silent:
2551 case CMD_smagic:
2552 case CMD_snomagic:
2553 case CMD_substitute:
2554 case CMD_syntax:
2555 case CMD_tab:
2556 case CMD_tcl:
2557 case CMD_throw:
2558 case CMD_tilde:
2559 case CMD_topleft:
2560 case CMD_unlet:
2561 case CMD_verbose:
2562 case CMD_vertical:
2563 break;
2565 default: goto doend;
2568 #endif
2570 if (ea.argt & XFILE)
2572 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2573 goto doend;
2576 #ifdef FEAT_LISTCMDS
2578 * Accept buffer name. Cannot be used at the same time with a buffer
2579 * number. Don't do this for a user command.
2581 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2582 # ifdef FEAT_USR_CMDS
2583 && !USER_CMDIDX(ea.cmdidx)
2584 # endif
2588 * :bdelete, :bwipeout and :bunload take several arguments, separated
2589 * by spaces: find next space (skipping over escaped characters).
2590 * The others take one argument: ignore trailing spaces.
2592 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2593 || ea.cmdidx == CMD_bunload)
2594 p = skiptowhite_esc(ea.arg);
2595 else
2597 p = ea.arg + STRLEN(ea.arg);
2598 while (p > ea.arg && vim_iswhite(p[-1]))
2599 --p;
2601 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2602 if (ea.line2 < 0) /* failed */
2603 goto doend;
2604 ea.addr_count = 1;
2605 ea.arg = skipwhite(p);
2607 #endif
2610 * 6. switch on command name
2612 * The "ea" structure holds the arguments that can be used.
2614 ea.cmdlinep = cmdlinep;
2615 ea.getline = fgetline;
2616 ea.cookie = cookie;
2617 #ifdef FEAT_EVAL
2618 ea.cstack = cstack;
2619 #endif
2621 #ifdef FEAT_USR_CMDS
2622 if (USER_CMDIDX(ea.cmdidx))
2625 * Execute a user-defined command.
2627 do_ucmd(&ea);
2629 else
2630 #endif
2633 * Call the function to execute the command.
2635 ea.errmsg = NULL;
2636 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2637 if (ea.errmsg != NULL)
2638 errormsg = (char_u *)_(ea.errmsg);
2641 #ifdef FEAT_EVAL
2643 * If the command just executed called do_cmdline(), any throw or ":return"
2644 * or ":finish" encountered there must also check the cstack of the still
2645 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2646 * exception, or reanimate a returned function or finished script file and
2647 * return or finish it again.
2649 if (need_rethrow)
2650 do_throw(cstack);
2651 else if (check_cstack)
2653 if (source_finished(fgetline, cookie))
2654 do_finish(&ea, TRUE);
2655 else if (getline_equal(fgetline, cookie, get_func_line)
2656 && current_func_returned())
2657 do_return(&ea, TRUE, FALSE, NULL);
2659 need_rethrow = check_cstack = FALSE;
2660 #endif
2662 doend:
2663 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2664 curwin->w_cursor.lnum = 1;
2666 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2668 if (sourcing)
2670 if (errormsg != IObuff)
2672 STRCPY(IObuff, errormsg);
2673 errormsg = IObuff;
2675 STRCAT(errormsg, ": ");
2676 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff) - 1);
2678 emsg(errormsg);
2680 #ifdef FEAT_EVAL
2681 do_errthrow(cstack,
2682 (ea.cmdidx != CMD_SIZE
2683 # ifdef FEAT_USR_CMDS
2684 && !USER_CMDIDX(ea.cmdidx)
2685 # endif
2686 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2687 #endif
2689 if (verbose_save >= 0)
2690 p_verbose = verbose_save;
2691 #ifdef FEAT_AUTOCMD
2692 if (cmdmod.save_ei != NULL)
2694 /* Restore 'eventignore' to the value before ":noautocmd". */
2695 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2696 OPT_FREE, SID_NONE);
2697 free_string_option(cmdmod.save_ei);
2699 #endif
2701 cmdmod = save_cmdmod;
2703 if (save_msg_silent != -1)
2705 /* messages could be enabled for a serious error, need to check if the
2706 * counters don't become negative */
2707 if (!did_emsg || msg_silent > save_msg_silent)
2708 msg_silent = save_msg_silent;
2709 emsg_silent -= did_esilent;
2710 if (emsg_silent < 0)
2711 emsg_silent = 0;
2712 /* Restore msg_scroll, it's set by file I/O commands, even when no
2713 * message is actually displayed. */
2714 msg_scroll = save_msg_scroll;
2716 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
2717 * somewhere in the line. Put it back in the first column. */
2718 if (redirecting())
2719 msg_col = 0;
2722 #ifdef HAVE_SANDBOX
2723 if (did_sandbox)
2724 --sandbox;
2725 #endif
2727 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2728 ea.nextcmd = NULL;
2730 #ifdef FEAT_EVAL
2731 --ex_nesting_level;
2732 #endif
2734 return ea.nextcmd;
2736 #if (_MSC_VER == 1200)
2737 #pragma optimize( "", on )
2738 #endif
2741 * Check for an Ex command with optional tail.
2742 * If there is a match advance "pp" to the argument and return TRUE.
2745 checkforcmd(pp, cmd, len)
2746 char_u **pp; /* start of command */
2747 char *cmd; /* name of command */
2748 int len; /* required length */
2750 int i;
2752 for (i = 0; cmd[i] != NUL; ++i)
2753 if (((char_u *)cmd)[i] != (*pp)[i])
2754 break;
2755 if (i >= len && !isalpha((*pp)[i]))
2757 *pp = skipwhite(*pp + i);
2758 return TRUE;
2760 return FALSE;
2764 * Find an Ex command by its name, either built-in or user.
2765 * Start of the name can be found at eap->cmd.
2766 * Returns pointer to char after the command name.
2767 * "full" is set to TRUE if the whole command name matched.
2768 * Returns NULL for an ambiguous user command.
2770 static char_u *
2771 find_command(eap, full)
2772 exarg_T *eap;
2773 int *full UNUSED;
2775 int len;
2776 char_u *p;
2777 int i;
2780 * Isolate the command and search for it in the command table.
2781 * Exceptions:
2782 * - the 'k' command can directly be followed by any character.
2783 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2784 * but :sre[wind] is another command, as are :scrip[tnames],
2785 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
2786 * - the "d" command can directly be followed by 'l' or 'p' flag.
2788 p = eap->cmd;
2789 if (*p == 'k')
2791 eap->cmdidx = CMD_k;
2792 ++p;
2794 else if (p[0] == 's'
2795 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2796 && p[3] != 'i' && p[4] != 'p')
2797 || p[1] == 'g'
2798 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2799 || p[1] == 'I'
2800 || (p[1] == 'r' && p[2] != 'e')))
2802 eap->cmdidx = CMD_substitute;
2803 ++p;
2805 else
2807 while (ASCII_ISALPHA(*p))
2808 ++p;
2809 /* check for non-alpha command */
2810 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2811 ++p;
2812 len = (int)(p - eap->cmd);
2813 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2815 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2816 * :delete with the 'l' flag. Same for 'p'. */
2817 for (i = 0; i < len; ++i)
2818 if (eap->cmd[i] != ((char_u *)"delete")[i])
2819 break;
2820 if (i == len - 1)
2822 --len;
2823 if (p[-1] == 'l')
2824 eap->flags |= EXFLAG_LIST;
2825 else
2826 eap->flags |= EXFLAG_PRINT;
2830 if (ASCII_ISLOWER(*eap->cmd))
2831 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2832 else
2833 eap->cmdidx = cmdidxs[26];
2835 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2836 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2837 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2838 (size_t)len) == 0)
2840 #ifdef FEAT_EVAL
2841 if (full != NULL
2842 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2843 *full = TRUE;
2844 #endif
2845 break;
2848 #ifdef FEAT_USR_CMDS
2849 /* Look for a user defined command as a last resort */
2850 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2852 /* User defined commands may contain digits. */
2853 while (ASCII_ISALNUM(*p))
2854 ++p;
2855 p = find_ucmd(eap, p, full, NULL, NULL);
2857 #endif
2858 if (p == eap->cmd)
2859 eap->cmdidx = CMD_SIZE;
2862 return p;
2865 #ifdef FEAT_USR_CMDS
2867 * Search for a user command that matches "eap->cmd".
2868 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2869 * Return a pointer to just after the command.
2870 * Return NULL if there is no matching command.
2872 static char_u *
2873 find_ucmd(eap, p, full, xp, compl)
2874 exarg_T *eap;
2875 char_u *p; /* end of the command (possibly including count) */
2876 int *full; /* set to TRUE for a full match */
2877 expand_T *xp; /* used for completion, NULL otherwise */
2878 int *compl; /* completion flags or NULL */
2880 int len = (int)(p - eap->cmd);
2881 int j, k, matchlen = 0;
2882 ucmd_T *uc;
2883 int found = FALSE;
2884 int possible = FALSE;
2885 char_u *cp, *np; /* Point into typed cmd and test name */
2886 garray_T *gap;
2887 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2888 only full match global is accepted. */
2891 * Look for buffer-local user commands first, then global ones.
2893 gap = &curbuf->b_ucmds;
2894 for (;;)
2896 for (j = 0; j < gap->ga_len; ++j)
2898 uc = USER_CMD_GA(gap, j);
2899 cp = eap->cmd;
2900 np = uc->uc_name;
2901 k = 0;
2902 while (k < len && *np != NUL && *cp++ == *np++)
2903 k++;
2904 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2906 /* If finding a second match, the command is ambiguous. But
2907 * not if a buffer-local command wasn't a full match and a
2908 * global command is a full match. */
2909 if (k == len && found && *np != NUL)
2911 if (gap == &ucmds)
2912 return NULL;
2913 amb_local = TRUE;
2916 if (!found || (k == len && *np == NUL))
2918 /* If we matched up to a digit, then there could
2919 * be another command including the digit that we
2920 * should use instead.
2922 if (k == len)
2923 found = TRUE;
2924 else
2925 possible = TRUE;
2927 if (gap == &ucmds)
2928 eap->cmdidx = CMD_USER;
2929 else
2930 eap->cmdidx = CMD_USER_BUF;
2931 eap->argt = (long)uc->uc_argt;
2932 eap->useridx = j;
2934 # ifdef FEAT_CMDL_COMPL
2935 if (compl != NULL)
2936 *compl = uc->uc_compl;
2937 # ifdef FEAT_EVAL
2938 if (xp != NULL)
2940 xp->xp_arg = uc->uc_compl_arg;
2941 xp->xp_scriptID = uc->uc_scriptID;
2943 # endif
2944 # endif
2945 /* Do not search for further abbreviations
2946 * if this is an exact match. */
2947 matchlen = k;
2948 if (k == len && *np == NUL)
2950 if (full != NULL)
2951 *full = TRUE;
2952 amb_local = FALSE;
2953 break;
2959 /* Stop if we found a full match or searched all. */
2960 if (j < gap->ga_len || gap == &ucmds)
2961 break;
2962 gap = &ucmds;
2965 /* Only found ambiguous matches. */
2966 if (amb_local)
2968 if (xp != NULL)
2969 xp->xp_context = EXPAND_UNSUCCESSFUL;
2970 return NULL;
2973 /* The match we found may be followed immediately by a number. Move "p"
2974 * back to point to it. */
2975 if (found || possible)
2976 return p + (matchlen - len);
2977 return p;
2979 #endif
2981 #if defined(FEAT_EVAL) || defined(PROTO)
2982 static struct cmdmod
2984 char *name;
2985 int minlen;
2986 int has_count; /* :123verbose :3tab */
2987 } cmdmods[] = {
2988 {"aboveleft", 3, FALSE},
2989 {"belowright", 3, FALSE},
2990 {"botright", 2, FALSE},
2991 {"browse", 3, FALSE},
2992 {"confirm", 4, FALSE},
2993 {"hide", 3, FALSE},
2994 {"keepalt", 5, FALSE},
2995 {"keepjumps", 5, FALSE},
2996 {"keepmarks", 3, FALSE},
2997 {"leftabove", 5, FALSE},
2998 {"lockmarks", 3, FALSE},
2999 {"noautocmd", 3, FALSE},
3000 {"rightbelow", 6, FALSE},
3001 {"sandbox", 3, FALSE},
3002 {"silent", 3, FALSE},
3003 {"tab", 3, TRUE},
3004 {"topleft", 2, FALSE},
3005 {"unsilent", 3, FALSE},
3006 {"verbose", 4, TRUE},
3007 {"vertical", 4, FALSE},
3011 * Return length of a command modifier (including optional count).
3012 * Return zero when it's not a modifier.
3015 modifier_len(cmd)
3016 char_u *cmd;
3018 int i, j;
3019 char_u *p = cmd;
3021 if (VIM_ISDIGIT(*cmd))
3022 p = skipwhite(skipdigits(cmd));
3023 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
3025 for (j = 0; p[j] != NUL; ++j)
3026 if (p[j] != cmdmods[i].name[j])
3027 break;
3028 if (!isalpha(p[j]) && j >= cmdmods[i].minlen
3029 && (p == cmd || cmdmods[i].has_count))
3030 return j + (int)(p - cmd);
3032 return 0;
3036 * Return > 0 if an Ex command "name" exists.
3037 * Return 2 if there is an exact match.
3038 * Return 3 if there is an ambiguous match.
3041 cmd_exists(name)
3042 char_u *name;
3044 exarg_T ea;
3045 int full = FALSE;
3046 int i;
3047 int j;
3048 char_u *p;
3050 /* Check command modifiers. */
3051 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
3053 for (j = 0; name[j] != NUL; ++j)
3054 if (name[j] != cmdmods[i].name[j])
3055 break;
3056 if (name[j] == NUL && j >= cmdmods[i].minlen)
3057 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3060 /* Check built-in commands and user defined commands.
3061 * For ":2match" and ":3match" we need to skip the number. */
3062 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
3063 ea.cmdidx = (cmdidx_T)0;
3064 p = find_command(&ea, &full);
3065 if (p == NULL)
3066 return 3;
3067 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3068 return 0;
3069 if (*skipwhite(p) != NUL)
3070 return 0; /* trailing garbage */
3071 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3073 #endif
3076 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3077 * we don't need/want deleted. Maybe this could be done better if we didn't
3078 * repeat all this stuff. The only problem is that they may not stay
3079 * perfectly compatible with each other, but then the command line syntax
3080 * probably won't change that much -- webb.
3082 char_u *
3083 set_one_cmd_context(xp, buff)
3084 expand_T *xp;
3085 char_u *buff; /* buffer for command string */
3087 char_u *p;
3088 char_u *cmd, *arg;
3089 int len = 0;
3090 exarg_T ea;
3091 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3092 int compl = EXPAND_NOTHING;
3093 #endif
3094 #ifdef FEAT_CMDL_COMPL
3095 int delim;
3096 #endif
3097 int forceit = FALSE;
3098 int usefilter = FALSE; /* filter instead of file name */
3100 ExpandInit(xp);
3101 xp->xp_pattern = buff;
3102 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
3103 ea.argt = 0;
3106 * 2. skip comment lines and leading space, colons or bars
3108 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3110 xp->xp_pattern = cmd;
3112 if (*cmd == NUL)
3113 return NULL;
3114 if (*cmd == '"') /* ignore comment lines */
3116 xp->xp_context = EXPAND_NOTHING;
3117 return NULL;
3121 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3123 cmd = skip_range(cmd, &xp->xp_context);
3126 * 4. parse command
3128 xp->xp_pattern = cmd;
3129 if (*cmd == NUL)
3130 return NULL;
3131 if (*cmd == '"')
3133 xp->xp_context = EXPAND_NOTHING;
3134 return NULL;
3137 if (*cmd == '|' || *cmd == '\n')
3138 return cmd + 1; /* There's another command */
3141 * Isolate the command and search for it in the command table.
3142 * Exceptions:
3143 * - the 'k' command can directly be followed by any character, but
3144 * do accept "keepmarks", "keepalt" and "keepjumps".
3145 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3147 if (*cmd == 'k' && cmd[1] != 'e')
3149 ea.cmdidx = CMD_k;
3150 p = cmd + 1;
3152 else
3154 p = cmd;
3155 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3156 ++p;
3157 /* check for non-alpha command */
3158 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3159 ++p;
3160 len = (int)(p - cmd);
3162 if (len == 0)
3164 xp->xp_context = EXPAND_UNSUCCESSFUL;
3165 return NULL;
3167 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3168 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3169 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd,
3170 (size_t)len) == 0)
3171 break;
3173 #ifdef FEAT_USR_CMDS
3174 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3175 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3176 ++p;
3177 #endif
3181 * If the cursor is touching the command, and it ends in an alpha-numeric
3182 * character, complete the command name.
3184 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3185 return NULL;
3187 if (ea.cmdidx == CMD_SIZE)
3189 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3191 ea.cmdidx = CMD_substitute;
3192 p = cmd + 1;
3194 #ifdef FEAT_USR_CMDS
3195 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3197 ea.cmd = cmd;
3198 p = find_ucmd(&ea, p, NULL, xp,
3199 # if defined(FEAT_CMDL_COMPL)
3200 &compl
3201 # else
3202 NULL
3203 # endif
3205 if (p == NULL)
3206 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
3208 #endif
3210 if (ea.cmdidx == CMD_SIZE)
3212 /* Not still touching the command and it was an illegal one */
3213 xp->xp_context = EXPAND_UNSUCCESSFUL;
3214 return NULL;
3217 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3219 if (*p == '!') /* forced commands */
3221 forceit = TRUE;
3222 ++p;
3226 * 5. parse arguments
3228 #ifdef FEAT_USR_CMDS
3229 if (!USER_CMDIDX(ea.cmdidx))
3230 #endif
3231 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
3233 arg = skipwhite(p);
3235 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
3237 if (*arg == '>') /* append */
3239 if (*++arg == '>')
3240 ++arg;
3241 arg = skipwhite(arg);
3243 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
3245 ++arg;
3246 usefilter = TRUE;
3250 if (ea.cmdidx == CMD_read)
3252 usefilter = forceit; /* :r! filter if forced */
3253 if (*arg == '!') /* :r !filter */
3255 ++arg;
3256 usefilter = TRUE;
3260 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
3262 while (*arg == *cmd) /* allow any number of '>' or '<' */
3263 ++arg;
3264 arg = skipwhite(arg);
3267 /* Does command allow "+command"? */
3268 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
3270 /* Check if we're in the +command */
3271 p = arg + 1;
3272 arg = skip_cmd_arg(arg, FALSE);
3274 /* Still touching the command after '+'? */
3275 if (*arg == NUL)
3276 return p;
3278 /* Skip space(s) after +command to get to the real argument */
3279 arg = skipwhite(arg);
3283 * Check for '|' to separate commands and '"' to start comments.
3284 * Don't do this for ":read !cmd" and ":write !cmd".
3286 if ((ea.argt & TRLBAR) && !usefilter)
3288 p = arg;
3289 /* ":redir @" is not the start of a comment */
3290 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
3291 p += 2;
3292 while (*p)
3294 if (*p == Ctrl_V)
3296 if (p[1] != NUL)
3297 ++p;
3299 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
3300 || *p == '|' || *p == '\n')
3302 if (*(p - 1) != '\\')
3304 if (*p == '|' || *p == '\n')
3305 return p + 1;
3306 return NULL; /* It's a comment */
3309 mb_ptr_adv(p);
3313 /* no arguments allowed */
3314 if (!(ea.argt & EXTRA) && *arg != NUL &&
3315 vim_strchr((char_u *)"|\"", *arg) == NULL)
3316 return NULL;
3318 /* Find start of last argument (argument just before cursor): */
3319 p = buff + STRLEN(buff);
3320 while (p != arg && *p != ' ' && *p != TAB)
3321 p--;
3322 if (*p == ' ' || *p == TAB)
3323 p++;
3324 xp->xp_pattern = p;
3326 if (ea.argt & XFILE)
3328 int c;
3329 int in_quote = FALSE;
3330 char_u *bow = NULL; /* Beginning of word */
3333 * Allow spaces within back-quotes to count as part of the argument
3334 * being expanded.
3336 xp->xp_pattern = skipwhite(arg);
3337 p = xp->xp_pattern;
3338 while (*p != NUL)
3340 #ifdef FEAT_MBYTE
3341 if (has_mbyte)
3342 c = mb_ptr2char(p);
3343 else
3344 #endif
3345 c = *p;
3346 if (c == '\\' && p[1] != NUL)
3347 ++p;
3348 else if (c == '`')
3350 if (!in_quote)
3352 xp->xp_pattern = p;
3353 bow = p + 1;
3355 in_quote = !in_quote;
3357 /* An argument can contain just about everything, except
3358 * characters that end the command and white space. */
3359 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
3360 #ifdef SPACE_IN_FILENAME
3361 && (!(ea.argt & NOSPC) || usefilter)
3362 #endif
3365 len = 0; /* avoid getting stuck when space is in 'isfname' */
3366 while (*p != NUL)
3368 #ifdef FEAT_MBYTE
3369 if (has_mbyte)
3370 c = mb_ptr2char(p);
3371 else
3372 #endif
3373 c = *p;
3374 if (c == '`' || vim_isfilec_or_wc(c))
3375 break;
3376 #ifdef FEAT_MBYTE
3377 if (has_mbyte)
3378 len = (*mb_ptr2len)(p);
3379 else
3380 #endif
3381 len = 1;
3382 mb_ptr_adv(p);
3384 if (in_quote)
3385 bow = p;
3386 else
3387 xp->xp_pattern = p;
3388 p -= len;
3390 mb_ptr_adv(p);
3394 * If we are still inside the quotes, and we passed a space, just
3395 * expand from there.
3397 if (bow != NULL && in_quote)
3398 xp->xp_pattern = bow;
3399 xp->xp_context = EXPAND_FILES;
3401 #ifndef BACKSLASH_IN_FILENAME
3402 /* For a shell command more chars need to be escaped. */
3403 if (usefilter || ea.cmdidx == CMD_bang)
3405 xp->xp_shell = TRUE;
3407 /* When still after the command name expand executables. */
3408 if (xp->xp_pattern == skipwhite(arg))
3409 xp->xp_context = EXPAND_SHELLCMD;
3411 #endif
3413 /* Check for environment variable */
3414 if (*xp->xp_pattern == '$'
3415 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3416 || *xp->xp_pattern == '%'
3417 #endif
3420 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3421 if (!vim_isIDc(*p))
3422 break;
3423 if (*p == NUL)
3425 xp->xp_context = EXPAND_ENV_VARS;
3426 ++xp->xp_pattern;
3427 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3428 /* Avoid that the assignment uses EXPAND_FILES again. */
3429 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
3430 compl = EXPAND_ENV_VARS;
3431 #endif
3437 * 6. switch on command name
3439 switch (ea.cmdidx)
3441 case CMD_cd:
3442 case CMD_chdir:
3443 case CMD_lcd:
3444 case CMD_lchdir:
3445 if (xp->xp_context == EXPAND_FILES)
3446 xp->xp_context = EXPAND_DIRECTORIES;
3447 break;
3448 case CMD_help:
3449 xp->xp_context = EXPAND_HELP;
3450 xp->xp_pattern = arg;
3451 break;
3453 /* Command modifiers: return the argument.
3454 * Also for commands with an argument that is a command. */
3455 case CMD_aboveleft:
3456 case CMD_argdo:
3457 case CMD_belowright:
3458 case CMD_botright:
3459 case CMD_browse:
3460 case CMD_bufdo:
3461 case CMD_confirm:
3462 case CMD_debug:
3463 case CMD_folddoclosed:
3464 case CMD_folddoopen:
3465 case CMD_hide:
3466 case CMD_keepalt:
3467 case CMD_keepjumps:
3468 case CMD_keepmarks:
3469 case CMD_leftabove:
3470 case CMD_lockmarks:
3471 case CMD_rightbelow:
3472 case CMD_sandbox:
3473 case CMD_silent:
3474 case CMD_tab:
3475 case CMD_topleft:
3476 case CMD_verbose:
3477 case CMD_vertical:
3478 case CMD_windo:
3479 return arg;
3481 #ifdef FEAT_CMDL_COMPL
3482 # ifdef FEAT_SEARCH_EXTRA
3483 case CMD_match:
3484 if (*arg == NUL || !ends_excmd(*arg))
3486 /* also complete "None" */
3487 set_context_in_echohl_cmd(xp, arg);
3488 arg = skipwhite(skiptowhite(arg));
3489 if (*arg != NUL)
3491 xp->xp_context = EXPAND_NOTHING;
3492 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3495 return find_nextcmd(arg);
3496 # endif
3499 * All completion for the +cmdline_compl feature goes here.
3502 # ifdef FEAT_USR_CMDS
3503 case CMD_command:
3504 /* Check for attributes */
3505 while (*arg == '-')
3507 arg++; /* Skip "-" */
3508 p = skiptowhite(arg);
3509 if (*p == NUL)
3511 /* Cursor is still in the attribute */
3512 p = vim_strchr(arg, '=');
3513 if (p == NULL)
3515 /* No "=", so complete attribute names */
3516 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3517 xp->xp_pattern = arg;
3518 return NULL;
3521 /* For the -complete and -nargs attributes, we complete
3522 * their arguments as well.
3524 if (STRNICMP(arg, "complete", p - arg) == 0)
3526 xp->xp_context = EXPAND_USER_COMPLETE;
3527 xp->xp_pattern = p + 1;
3528 return NULL;
3530 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3532 xp->xp_context = EXPAND_USER_NARGS;
3533 xp->xp_pattern = p + 1;
3534 return NULL;
3536 return NULL;
3538 arg = skipwhite(p);
3541 /* After the attributes comes the new command name */
3542 p = skiptowhite(arg);
3543 if (*p == NUL)
3545 xp->xp_context = EXPAND_USER_COMMANDS;
3546 xp->xp_pattern = arg;
3547 break;
3550 /* And finally comes a normal command */
3551 return skipwhite(p);
3553 case CMD_delcommand:
3554 xp->xp_context = EXPAND_USER_COMMANDS;
3555 xp->xp_pattern = arg;
3556 break;
3557 # endif
3559 case CMD_global:
3560 case CMD_vglobal:
3561 delim = *arg; /* get the delimiter */
3562 if (delim)
3563 ++arg; /* skip delimiter if there is one */
3565 while (arg[0] != NUL && arg[0] != delim)
3567 if (arg[0] == '\\' && arg[1] != NUL)
3568 ++arg;
3569 ++arg;
3571 if (arg[0] != NUL)
3572 return arg + 1;
3573 break;
3574 case CMD_and:
3575 case CMD_substitute:
3576 delim = *arg;
3577 if (delim)
3579 /* skip "from" part */
3580 ++arg;
3581 arg = skip_regexp(arg, delim, p_magic, NULL);
3583 /* skip "to" part */
3584 while (arg[0] != NUL && arg[0] != delim)
3586 if (arg[0] == '\\' && arg[1] != NUL)
3587 ++arg;
3588 ++arg;
3590 if (arg[0] != NUL) /* skip delimiter */
3591 ++arg;
3592 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3593 ++arg;
3594 if (arg[0] != NUL)
3595 return arg;
3596 break;
3597 case CMD_isearch:
3598 case CMD_dsearch:
3599 case CMD_ilist:
3600 case CMD_dlist:
3601 case CMD_ijump:
3602 case CMD_psearch:
3603 case CMD_djump:
3604 case CMD_isplit:
3605 case CMD_dsplit:
3606 arg = skipwhite(skipdigits(arg)); /* skip count */
3607 if (*arg == '/') /* Match regexp, not just whole words */
3609 for (++arg; *arg && *arg != '/'; arg++)
3610 if (*arg == '\\' && arg[1] != NUL)
3611 arg++;
3612 if (*arg)
3614 arg = skipwhite(arg + 1);
3616 /* Check for trailing illegal characters */
3617 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3618 xp->xp_context = EXPAND_NOTHING;
3619 else
3620 return arg;
3623 break;
3624 #ifdef FEAT_AUTOCMD
3625 case CMD_autocmd:
3626 return set_context_in_autocmd(xp, arg, FALSE);
3628 case CMD_doautocmd:
3629 case CMD_doautoall:
3630 return set_context_in_autocmd(xp, arg, TRUE);
3631 #endif
3632 case CMD_set:
3633 set_context_in_set_cmd(xp, arg, 0);
3634 break;
3635 case CMD_setglobal:
3636 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3637 break;
3638 case CMD_setlocal:
3639 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3640 break;
3641 case CMD_tag:
3642 case CMD_stag:
3643 case CMD_ptag:
3644 case CMD_ltag:
3645 case CMD_tselect:
3646 case CMD_stselect:
3647 case CMD_ptselect:
3648 case CMD_tjump:
3649 case CMD_stjump:
3650 case CMD_ptjump:
3651 if (*p_wop != NUL)
3652 xp->xp_context = EXPAND_TAGS_LISTFILES;
3653 else
3654 xp->xp_context = EXPAND_TAGS;
3655 xp->xp_pattern = arg;
3656 break;
3657 case CMD_augroup:
3658 xp->xp_context = EXPAND_AUGROUP;
3659 xp->xp_pattern = arg;
3660 break;
3661 #ifdef FEAT_SYN_HL
3662 case CMD_syntax:
3663 set_context_in_syntax_cmd(xp, arg);
3664 break;
3665 #endif
3666 #ifdef FEAT_EVAL
3667 case CMD_let:
3668 case CMD_if:
3669 case CMD_elseif:
3670 case CMD_while:
3671 case CMD_for:
3672 case CMD_echo:
3673 case CMD_echon:
3674 case CMD_execute:
3675 case CMD_echomsg:
3676 case CMD_echoerr:
3677 case CMD_call:
3678 case CMD_return:
3679 set_context_for_expression(xp, arg, ea.cmdidx);
3680 break;
3682 case CMD_unlet:
3683 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3684 arg = xp->xp_pattern + 1;
3685 xp->xp_context = EXPAND_USER_VARS;
3686 xp->xp_pattern = arg;
3687 break;
3689 case CMD_function:
3690 case CMD_delfunction:
3691 xp->xp_context = EXPAND_USER_FUNC;
3692 xp->xp_pattern = arg;
3693 break;
3695 case CMD_echohl:
3696 set_context_in_echohl_cmd(xp, arg);
3697 break;
3698 #endif
3699 case CMD_highlight:
3700 set_context_in_highlight_cmd(xp, arg);
3701 break;
3702 #ifdef FEAT_CSCOPE
3703 case CMD_cscope:
3704 case CMD_lcscope:
3705 case CMD_scscope:
3706 set_context_in_cscope_cmd(xp, arg, ea.cmdidx);
3707 break;
3708 #endif
3709 #ifdef FEAT_SIGNS
3710 case CMD_sign:
3711 set_context_in_sign_cmd(xp, arg);
3712 break;
3713 #endif
3714 #ifdef FEAT_LISTCMDS
3715 case CMD_bdelete:
3716 case CMD_bwipeout:
3717 case CMD_bunload:
3718 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3719 arg = xp->xp_pattern + 1;
3720 /*FALLTHROUGH*/
3721 case CMD_buffer:
3722 case CMD_sbuffer:
3723 case CMD_checktime:
3724 xp->xp_context = EXPAND_BUFFERS;
3725 xp->xp_pattern = arg;
3726 break;
3727 #endif
3728 #ifdef FEAT_USR_CMDS
3729 case CMD_USER:
3730 case CMD_USER_BUF:
3731 if (compl != EXPAND_NOTHING)
3733 /* XFILE: file names are handled above */
3734 if (!(ea.argt & XFILE))
3736 # ifdef FEAT_MENU
3737 if (compl == EXPAND_MENUS)
3738 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3739 # endif
3740 if (compl == EXPAND_COMMANDS)
3741 return arg;
3742 if (compl == EXPAND_MAPPINGS)
3743 return set_context_in_map_cmd(xp, (char_u *)"map",
3744 arg, forceit, FALSE, FALSE, CMD_map);
3745 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3746 arg = xp->xp_pattern + 1;
3747 xp->xp_pattern = arg;
3749 xp->xp_context = compl;
3751 break;
3752 #endif
3753 case CMD_map: case CMD_noremap:
3754 case CMD_nmap: case CMD_nnoremap:
3755 case CMD_vmap: case CMD_vnoremap:
3756 case CMD_omap: case CMD_onoremap:
3757 case CMD_imap: case CMD_inoremap:
3758 case CMD_cmap: case CMD_cnoremap:
3759 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3760 FALSE, FALSE, ea.cmdidx);
3761 case CMD_unmap:
3762 case CMD_nunmap:
3763 case CMD_vunmap:
3764 case CMD_ounmap:
3765 case CMD_iunmap:
3766 case CMD_cunmap:
3767 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3768 FALSE, TRUE, ea.cmdidx);
3769 case CMD_abbreviate: case CMD_noreabbrev:
3770 case CMD_cabbrev: case CMD_cnoreabbrev:
3771 case CMD_iabbrev: case CMD_inoreabbrev:
3772 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3773 TRUE, FALSE, ea.cmdidx);
3774 case CMD_unabbreviate:
3775 case CMD_cunabbrev:
3776 case CMD_iunabbrev:
3777 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3778 TRUE, TRUE, ea.cmdidx);
3779 #ifdef FEAT_MENU
3780 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3781 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3782 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3783 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3784 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3785 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3786 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3787 case CMD_tmenu: case CMD_tunmenu:
3788 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3789 #ifdef FEAT_GUI_MACVIM
3790 case CMD_macmenu:
3791 #endif
3792 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3793 #endif
3795 case CMD_colorscheme:
3796 xp->xp_context = EXPAND_COLORS;
3797 xp->xp_pattern = arg;
3798 break;
3800 case CMD_compiler:
3801 xp->xp_context = EXPAND_COMPILER;
3802 xp->xp_pattern = arg;
3803 break;
3805 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3806 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3807 case CMD_language:
3808 if (*skiptowhite(arg) == NUL)
3810 xp->xp_context = EXPAND_LANGUAGE;
3811 xp->xp_pattern = arg;
3813 else
3814 xp->xp_context = EXPAND_NOTHING;
3815 break;
3816 #endif
3817 #if defined(FEAT_PROFILE)
3818 case CMD_profile:
3819 set_context_in_profile_cmd(xp, arg);
3820 break;
3821 #endif
3822 case CMD_behave:
3823 xp->xp_context = EXPAND_BEHAVE;
3824 break;
3826 #ifdef FEAT_GUI_MACVIM
3827 case CMD_macaction:
3828 xp->xp_context = EXPAND_MACACTION;
3829 xp->xp_pattern = arg;
3830 break;
3831 #endif
3834 #endif /* FEAT_CMDL_COMPL */
3836 default:
3837 break;
3839 return NULL;
3843 * skip a range specifier of the form: addr [,addr] [;addr] ..
3845 * Backslashed delimiters after / or ? will be skipped, and commands will
3846 * not be expanded between /'s and ?'s or after "'".
3848 * Also skip white space and ":" characters.
3849 * Returns the "cmd" pointer advanced to beyond the range.
3851 char_u *
3852 skip_range(cmd, ctx)
3853 char_u *cmd;
3854 int *ctx; /* pointer to xp_context or NULL */
3856 unsigned delim;
3858 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
3860 if (*cmd == '\'')
3862 if (*++cmd == NUL && ctx != NULL)
3863 *ctx = EXPAND_NOTHING;
3865 else if (*cmd == '/' || *cmd == '?')
3867 delim = *cmd++;
3868 while (*cmd != NUL && *cmd != delim)
3869 if (*cmd++ == '\\' && *cmd != NUL)
3870 ++cmd;
3871 if (*cmd == NUL && ctx != NULL)
3872 *ctx = EXPAND_NOTHING;
3874 if (*cmd != NUL)
3875 ++cmd;
3878 /* Skip ":" and white space. */
3879 while (*cmd == ':')
3880 cmd = skipwhite(cmd + 1);
3882 return cmd;
3886 * get a single EX address
3888 * Set ptr to the next character after the part that was interpreted.
3889 * Set ptr to NULL when an error is encountered.
3891 * Return MAXLNUM when no Ex address was found.
3893 static linenr_T
3894 get_address(ptr, skip, to_other_file)
3895 char_u **ptr;
3896 int skip; /* only skip the address, don't use it */
3897 int to_other_file; /* flag: may jump to other file */
3899 int c;
3900 int i;
3901 long n;
3902 char_u *cmd;
3903 pos_T pos;
3904 pos_T *fp;
3905 linenr_T lnum;
3907 cmd = skipwhite(*ptr);
3908 lnum = MAXLNUM;
3911 switch (*cmd)
3913 case '.': /* '.' - Cursor position */
3914 ++cmd;
3915 lnum = curwin->w_cursor.lnum;
3916 break;
3918 case '$': /* '$' - last line */
3919 ++cmd;
3920 lnum = curbuf->b_ml.ml_line_count;
3921 break;
3923 case '\'': /* ''' - mark */
3924 if (*++cmd == NUL)
3926 cmd = NULL;
3927 goto error;
3929 if (skip)
3930 ++cmd;
3931 else
3933 /* Only accept a mark in another file when it is
3934 * used by itself: ":'M". */
3935 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3936 ++cmd;
3937 if (fp == (pos_T *)-1)
3938 /* Jumped to another file. */
3939 lnum = curwin->w_cursor.lnum;
3940 else
3942 if (check_mark(fp) == FAIL)
3944 cmd = NULL;
3945 goto error;
3947 lnum = fp->lnum;
3950 break;
3952 case '/':
3953 case '?': /* '/' or '?' - search */
3954 c = *cmd++;
3955 if (skip) /* skip "/pat/" */
3957 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3958 if (*cmd == c)
3959 ++cmd;
3961 else
3963 pos = curwin->w_cursor; /* save curwin->w_cursor */
3965 * When '/' or '?' follows another address, start
3966 * from there.
3968 if (lnum != MAXLNUM)
3969 curwin->w_cursor.lnum = lnum;
3971 * Start a forward search at the end of the line.
3972 * Start a backward search at the start of the line.
3973 * This makes sure we never match in the current
3974 * line, and can match anywhere in the
3975 * next/previous line.
3977 if (c == '/')
3978 curwin->w_cursor.col = MAXCOL;
3979 else
3980 curwin->w_cursor.col = 0;
3981 searchcmdlen = 0;
3982 if (!do_search(NULL, c, cmd, 1L,
3983 SEARCH_HIS | SEARCH_MSG, NULL))
3985 curwin->w_cursor = pos;
3986 cmd = NULL;
3987 goto error;
3989 lnum = curwin->w_cursor.lnum;
3990 curwin->w_cursor = pos;
3991 /* adjust command string pointer */
3992 cmd += searchcmdlen;
3994 break;
3996 case '\\': /* "\?", "\/" or "\&", repeat search */
3997 ++cmd;
3998 if (*cmd == '&')
3999 i = RE_SUBST;
4000 else if (*cmd == '?' || *cmd == '/')
4001 i = RE_SEARCH;
4002 else
4004 EMSG(_(e_backslash));
4005 cmd = NULL;
4006 goto error;
4009 if (!skip)
4012 * When search follows another address, start from
4013 * there.
4015 if (lnum != MAXLNUM)
4016 pos.lnum = lnum;
4017 else
4018 pos.lnum = curwin->w_cursor.lnum;
4021 * Start the search just like for the above
4022 * do_search().
4024 if (*cmd != '?')
4025 pos.col = MAXCOL;
4026 else
4027 pos.col = 0;
4028 if (searchit(curwin, curbuf, &pos,
4029 *cmd == '?' ? BACKWARD : FORWARD,
4030 (char_u *)"", 1L, SEARCH_MSG,
4031 i, (linenr_T)0, NULL) != FAIL)
4032 lnum = pos.lnum;
4033 else
4035 cmd = NULL;
4036 goto error;
4039 ++cmd;
4040 break;
4042 default:
4043 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
4044 lnum = getdigits(&cmd);
4047 for (;;)
4049 cmd = skipwhite(cmd);
4050 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4051 break;
4053 if (lnum == MAXLNUM)
4054 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
4055 if (VIM_ISDIGIT(*cmd))
4056 i = '+'; /* "number" is same as "+number" */
4057 else
4058 i = *cmd++;
4059 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4060 n = 1;
4061 else
4062 n = getdigits(&cmd);
4063 if (i == '-')
4064 lnum -= n;
4065 else
4066 lnum += n;
4068 } while (*cmd == '/' || *cmd == '?');
4070 error:
4071 *ptr = cmd;
4072 return lnum;
4076 * Get flags from an Ex command argument.
4078 static void
4079 get_flags(eap)
4080 exarg_T *eap;
4082 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4084 if (*eap->arg == 'l')
4085 eap->flags |= EXFLAG_LIST;
4086 else if (*eap->arg == 'p')
4087 eap->flags |= EXFLAG_PRINT;
4088 else
4089 eap->flags |= EXFLAG_NR;
4090 eap->arg = skipwhite(eap->arg + 1);
4095 * Function called for command which is Not Implemented. NI!
4097 void
4098 ex_ni(eap)
4099 exarg_T *eap;
4101 if (!eap->skip)
4102 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4105 #ifdef HAVE_EX_SCRIPT_NI
4107 * Function called for script command which is Not Implemented. NI!
4108 * Skips over ":perl <<EOF" constructs.
4110 static void
4111 ex_script_ni(eap)
4112 exarg_T *eap;
4114 if (!eap->skip)
4115 ex_ni(eap);
4116 else
4117 vim_free(script_get(eap, eap->arg));
4119 #endif
4122 * Check range in Ex command for validity.
4123 * Return NULL when valid, error message when invalid.
4125 static char_u *
4126 invalid_range(eap)
4127 exarg_T *eap;
4129 if ( eap->line1 < 0
4130 || eap->line2 < 0
4131 || eap->line1 > eap->line2
4132 || ((eap->argt & RANGE)
4133 && !(eap->argt & NOTADR)
4134 && eap->line2 > curbuf->b_ml.ml_line_count
4135 #ifdef FEAT_DIFF
4136 + (eap->cmdidx == CMD_diffget)
4137 #endif
4139 return (char_u *)_(e_invrange);
4140 return NULL;
4144 * Correct the range for zero line number, if required.
4146 static void
4147 correct_range(eap)
4148 exarg_T *eap;
4150 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4152 if (eap->line1 == 0)
4153 eap->line1 = 1;
4154 if (eap->line2 == 0)
4155 eap->line2 = 1;
4159 #ifdef FEAT_QUICKFIX
4160 static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4163 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4164 * pattern. Otherwise return eap->arg.
4166 static char_u *
4167 skip_grep_pat(eap)
4168 exarg_T *eap;
4170 char_u *p = eap->arg;
4172 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4173 || eap->cmdidx == CMD_vimgrepadd
4174 || eap->cmdidx == CMD_lvimgrepadd
4175 || grep_internal(eap->cmdidx)))
4177 p = skip_vimgrep_pat(p, NULL, NULL);
4178 if (p == NULL)
4179 p = eap->arg;
4181 return p;
4185 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4186 * in the command line, so that things like % get expanded.
4188 static char_u *
4189 replace_makeprg(eap, p, cmdlinep)
4190 exarg_T *eap;
4191 char_u *p;
4192 char_u **cmdlinep;
4194 char_u *new_cmdline;
4195 char_u *program;
4196 char_u *pos;
4197 char_u *ptr;
4198 int len;
4199 int i;
4202 * Don't do it when ":vimgrep" is used for ":grep".
4204 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4205 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4206 || eap->cmdidx == CMD_grepadd
4207 || eap->cmdidx == CMD_lgrepadd)
4208 && !grep_internal(eap->cmdidx))
4210 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4211 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
4213 if (*curbuf->b_p_gp == NUL)
4214 program = p_gp;
4215 else
4216 program = curbuf->b_p_gp;
4218 else
4220 if (*curbuf->b_p_mp == NUL)
4221 program = p_mp;
4222 else
4223 program = curbuf->b_p_mp;
4226 p = skipwhite(p);
4228 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4230 /* replace $* by given arguments */
4231 i = 1;
4232 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4233 ++i;
4234 len = (int)STRLEN(p);
4235 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4236 if (new_cmdline == NULL)
4237 return NULL; /* out of memory */
4238 ptr = new_cmdline;
4239 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4241 i = (int)(pos - program);
4242 STRNCPY(ptr, program, i);
4243 STRCPY(ptr += i, p);
4244 ptr += len;
4245 program = pos + 2;
4247 STRCPY(ptr, program);
4249 else
4251 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4252 if (new_cmdline == NULL)
4253 return NULL; /* out of memory */
4254 STRCPY(new_cmdline, program);
4255 STRCAT(new_cmdline, " ");
4256 STRCAT(new_cmdline, p);
4258 msg_make(p);
4260 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4261 vim_free(*cmdlinep);
4262 *cmdlinep = new_cmdline;
4263 p = new_cmdline;
4265 return p;
4267 #endif
4270 * Expand file name in Ex command argument.
4271 * Return FAIL for failure, OK otherwise.
4274 expand_filename(eap, cmdlinep, errormsgp)
4275 exarg_T *eap;
4276 char_u **cmdlinep;
4277 char_u **errormsgp;
4279 int has_wildcards; /* need to expand wildcards */
4280 char_u *repl;
4281 int srclen;
4282 char_u *p;
4283 int n;
4284 int escaped;
4286 #ifdef FEAT_QUICKFIX
4287 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4288 p = skip_grep_pat(eap);
4289 #else
4290 p = eap->arg;
4291 #endif
4294 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4295 * the file name contains a wildcard it should not cause expanding.
4296 * (it will be expanded anyway if there is a wildcard before replacing).
4298 has_wildcards = mch_has_wildcard(p);
4299 while (*p != NUL)
4301 #ifdef FEAT_EVAL
4302 /* Skip over `=expr`, wildcards in it are not expanded. */
4303 if (p[0] == '`' && p[1] == '=')
4305 p += 2;
4306 (void)skip_expr(&p);
4307 if (*p == '`')
4308 ++p;
4309 continue;
4311 #endif
4313 * Quick check if this cannot be the start of a special string.
4314 * Also removes backslash before '%', '#' and '<'.
4316 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4318 ++p;
4319 continue;
4323 * Try to find a match at this position.
4325 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4326 errormsgp, &escaped);
4327 if (*errormsgp != NULL) /* error detected */
4328 return FAIL;
4329 if (repl == NULL) /* no match found */
4331 p += srclen;
4332 continue;
4335 /* Wildcards won't be expanded below, the replacement is taken
4336 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4337 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4339 char_u *l = repl;
4341 repl = expand_env_save(repl);
4342 vim_free(l);
4345 /* Need to escape white space et al. with a backslash.
4346 * Don't do this for:
4347 * - replacement that already has been escaped: "##"
4348 * - shell commands (may have to use quotes instead).
4349 * - non-unix systems when there is a single argument (spaces don't
4350 * separate arguments then).
4352 if (!eap->usefilter
4353 && !escaped
4354 && eap->cmdidx != CMD_bang
4355 && eap->cmdidx != CMD_make
4356 && eap->cmdidx != CMD_lmake
4357 && eap->cmdidx != CMD_grep
4358 && eap->cmdidx != CMD_lgrep
4359 && eap->cmdidx != CMD_grepadd
4360 && eap->cmdidx != CMD_lgrepadd
4361 #ifndef UNIX
4362 && !(eap->argt & NOSPC)
4363 #endif
4366 char_u *l;
4367 #ifdef BACKSLASH_IN_FILENAME
4368 /* Don't escape a backslash here, because rem_backslash() doesn't
4369 * remove it later. */
4370 static char_u *nobslash = (char_u *)" \t\"|";
4371 # define ESCAPE_CHARS nobslash
4372 #else
4373 # define ESCAPE_CHARS escape_chars
4374 #endif
4376 for (l = repl; *l; ++l)
4377 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4379 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4380 if (l != NULL)
4382 vim_free(repl);
4383 repl = l;
4385 break;
4389 /* For a shell command a '!' must be escaped. */
4390 if ((eap->usefilter || eap->cmdidx == CMD_bang)
4391 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
4393 char_u *l;
4395 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
4396 if (l != NULL)
4398 vim_free(repl);
4399 repl = l;
4400 /* For a sh-like shell escape "!" another time. */
4401 if (strstr((char *)p_sh, "sh") != NULL)
4403 l = vim_strsave_escaped(repl, (char_u *)"!");
4404 if (l != NULL)
4406 vim_free(repl);
4407 repl = l;
4413 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4414 vim_free(repl);
4415 if (p == NULL)
4416 return FAIL;
4420 * One file argument: Expand wildcards.
4421 * Don't do this with ":r !command" or ":w !command".
4423 if ((eap->argt & NOSPC) && !eap->usefilter)
4426 * May do this twice:
4427 * 1. Replace environment variables.
4428 * 2. Replace any other wildcards, remove backslashes.
4430 for (n = 1; n <= 2; ++n)
4432 if (n == 2)
4434 #ifdef UNIX
4436 * Only for Unix we check for more than one file name.
4437 * For other systems spaces are considered to be part
4438 * of the file name.
4439 * Only check here if there is no wildcard, otherwise
4440 * ExpandOne() will check for errors. This allows
4441 * ":e `ls ve*.c`" on Unix.
4443 if (!has_wildcards)
4444 for (p = eap->arg; *p; ++p)
4446 /* skip escaped characters */
4447 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4448 ++p;
4449 else if (vim_iswhite(*p))
4451 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4452 return FAIL;
4455 #endif
4458 * Halve the number of backslashes (this is Vi compatible).
4459 * For Unix and OS/2, when wildcards are expanded, this is
4460 * done by ExpandOne() below.
4462 #if defined(UNIX) || defined(OS2)
4463 if (!has_wildcards)
4464 #endif
4465 backslash_halve(eap->arg);
4468 if (has_wildcards)
4470 if (n == 1)
4473 * First loop: May expand environment variables. This
4474 * can be done much faster with expand_env() than with
4475 * something else (e.g., calling a shell).
4476 * After expanding environment variables, check again
4477 * if there are still wildcards present.
4479 if (vim_strchr(eap->arg, '$') != NULL
4480 || vim_strchr(eap->arg, '~') != NULL)
4482 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
4483 TRUE, TRUE, NULL);
4484 has_wildcards = mch_has_wildcard(NameBuff);
4485 p = NameBuff;
4487 else
4488 p = NULL;
4490 else /* n == 2 */
4492 expand_T xpc;
4494 ExpandInit(&xpc);
4495 xpc.xp_context = EXPAND_FILES;
4496 p = ExpandOne(&xpc, eap->arg, NULL,
4497 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4498 WILD_EXPAND_FREE);
4499 if (p == NULL)
4500 return FAIL;
4502 if (p != NULL)
4504 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4505 p, cmdlinep);
4506 if (n == 2) /* p came from ExpandOne() */
4507 vim_free(p);
4512 return OK;
4516 * Replace part of the command line, keeping eap->cmd, eap->arg and
4517 * eap->nextcmd correct.
4518 * "src" points to the part that is to be replaced, of length "srclen".
4519 * "repl" is the replacement string.
4520 * Returns a pointer to the character after the replaced string.
4521 * Returns NULL for failure.
4523 static char_u *
4524 repl_cmdline(eap, src, srclen, repl, cmdlinep)
4525 exarg_T *eap;
4526 char_u *src;
4527 int srclen;
4528 char_u *repl;
4529 char_u **cmdlinep;
4531 int len;
4532 int i;
4533 char_u *new_cmdline;
4536 * The new command line is build in new_cmdline[].
4537 * First allocate it.
4538 * Careful: a "+cmd" argument may have been NUL terminated.
4540 len = (int)STRLEN(repl);
4541 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
4542 if (eap->nextcmd != NULL)
4543 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4544 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4545 return NULL; /* out of memory! */
4548 * Copy the stuff before the expanded part.
4549 * Copy the expanded stuff.
4550 * Copy what came after the expanded part.
4551 * Copy the next commands, if there are any.
4553 i = (int)(src - *cmdlinep); /* length of part before match */
4554 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
4556 mch_memmove(new_cmdline + i, repl, (size_t)len);
4557 i += len; /* remember the end of the string */
4558 STRCPY(new_cmdline + i, src + srclen);
4559 src = new_cmdline + i; /* remember where to continue */
4561 if (eap->nextcmd != NULL) /* append next command */
4563 i = (int)STRLEN(new_cmdline) + 1;
4564 STRCPY(new_cmdline + i, eap->nextcmd);
4565 eap->nextcmd = new_cmdline + i;
4567 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4568 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4569 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4570 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4571 vim_free(*cmdlinep);
4572 *cmdlinep = new_cmdline;
4574 return src;
4578 * Check for '|' to separate commands and '"' to start comments.
4580 void
4581 separate_nextcmd(eap)
4582 exarg_T *eap;
4584 char_u *p;
4586 #ifdef FEAT_QUICKFIX
4587 p = skip_grep_pat(eap);
4588 #else
4589 p = eap->arg;
4590 #endif
4592 for ( ; *p; mb_ptr_adv(p))
4594 if (*p == Ctrl_V)
4596 if (eap->argt & (USECTRLV | XFILE))
4597 ++p; /* skip CTRL-V and next char */
4598 else
4599 /* remove CTRL-V and skip next char */
4600 STRMOVE(p, p + 1);
4601 if (*p == NUL) /* stop at NUL after CTRL-V */
4602 break;
4605 #ifdef FEAT_EVAL
4606 /* Skip over `=expr` when wildcards are expanded. */
4607 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
4609 p += 2;
4610 (void)skip_expr(&p);
4612 #endif
4614 /* Check for '"': start of comment or '|': next command */
4615 /* :@" and :*" do not start a comment!
4616 * :redir @" doesn't either. */
4617 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4618 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4619 || p != eap->arg)
4620 && (eap->cmdidx != CMD_redir
4621 || p != eap->arg + 1 || p[-1] != '@'))
4622 || *p == '|' || *p == '\n')
4625 * We remove the '\' before the '|', unless USECTRLV is used
4626 * AND 'b' is present in 'cpoptions'.
4628 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4629 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4631 STRMOVE(p - 1, p); /* remove the '\' */
4632 --p;
4634 else
4636 eap->nextcmd = check_nextcmd(p);
4637 *p = NUL;
4638 break;
4643 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4644 del_trailing_spaces(eap->arg);
4648 * get + command from ex argument
4650 static char_u *
4651 getargcmd(argp)
4652 char_u **argp;
4654 char_u *arg = *argp;
4655 char_u *command = NULL;
4657 if (*arg == '+') /* +[command] */
4659 ++arg;
4660 if (vim_isspace(*arg))
4661 command = dollar_command;
4662 else
4664 command = arg;
4665 arg = skip_cmd_arg(command, TRUE);
4666 if (*arg != NUL)
4667 *arg++ = NUL; /* terminate command with NUL */
4670 arg = skipwhite(arg); /* skip over spaces */
4671 *argp = arg;
4673 return command;
4677 * Find end of "+command" argument. Skip over "\ " and "\\".
4679 static char_u *
4680 skip_cmd_arg(p, rembs)
4681 char_u *p;
4682 int rembs; /* TRUE to halve the number of backslashes */
4684 while (*p && !vim_isspace(*p))
4686 if (*p == '\\' && p[1] != NUL)
4688 if (rembs)
4689 STRMOVE(p, p + 1);
4690 else
4691 ++p;
4693 mb_ptr_adv(p);
4695 return p;
4699 * Get "++opt=arg" argument.
4700 * Return FAIL or OK.
4702 static int
4703 getargopt(eap)
4704 exarg_T *eap;
4706 char_u *arg = eap->arg + 2;
4707 int *pp = NULL;
4708 #ifdef FEAT_MBYTE
4709 char_u *p;
4710 #endif
4712 /* ":edit ++[no]bin[ary] file" */
4713 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4715 if (*arg == 'n')
4717 arg += 2;
4718 eap->force_bin = FORCE_NOBIN;
4720 else
4721 eap->force_bin = FORCE_BIN;
4722 if (!checkforcmd(&arg, "binary", 3))
4723 return FAIL;
4724 eap->arg = skipwhite(arg);
4725 return OK;
4728 /* ":read ++edit file" */
4729 if (STRNCMP(arg, "edit", 4) == 0)
4731 eap->read_edit = TRUE;
4732 eap->arg = skipwhite(arg + 4);
4733 return OK;
4736 if (STRNCMP(arg, "ff", 2) == 0)
4738 arg += 2;
4739 pp = &eap->force_ff;
4741 else if (STRNCMP(arg, "fileformat", 10) == 0)
4743 arg += 10;
4744 pp = &eap->force_ff;
4746 #ifdef FEAT_MBYTE
4747 else if (STRNCMP(arg, "enc", 3) == 0)
4749 arg += 3;
4750 pp = &eap->force_enc;
4752 else if (STRNCMP(arg, "encoding", 8) == 0)
4754 arg += 8;
4755 pp = &eap->force_enc;
4757 else if (STRNCMP(arg, "bad", 3) == 0)
4759 arg += 3;
4760 pp = &eap->bad_char;
4762 #endif
4764 if (pp == NULL || *arg != '=')
4765 return FAIL;
4767 ++arg;
4768 *pp = (int)(arg - eap->cmd);
4769 arg = skip_cmd_arg(arg, FALSE);
4770 eap->arg = skipwhite(arg);
4771 *arg = NUL;
4773 #ifdef FEAT_MBYTE
4774 if (pp == &eap->force_ff)
4776 #endif
4777 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4778 return FAIL;
4779 #ifdef FEAT_MBYTE
4781 else if (pp == &eap->force_enc)
4783 /* Make 'fileencoding' lower case. */
4784 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4785 *p = TOLOWER_ASC(*p);
4787 else
4789 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4790 * "drop". */
4791 p = eap->cmd + eap->bad_char;
4792 if (STRICMP(p, "keep") == 0)
4793 eap->bad_char = BAD_KEEP;
4794 else if (STRICMP(p, "drop") == 0)
4795 eap->bad_char = BAD_DROP;
4796 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4797 eap->bad_char = *p;
4798 else
4799 return FAIL;
4801 #endif
4803 return OK;
4807 * ":abbreviate" and friends.
4809 static void
4810 ex_abbreviate(eap)
4811 exarg_T *eap;
4813 do_exmap(eap, TRUE); /* almost the same as mapping */
4817 * ":map" and friends.
4819 static void
4820 ex_map(eap)
4821 exarg_T *eap;
4824 * If we are sourcing .exrc or .vimrc in current directory we
4825 * print the mappings for security reasons.
4827 if (secure)
4829 secure = 2;
4830 msg_outtrans(eap->cmd);
4831 msg_putchar('\n');
4833 do_exmap(eap, FALSE);
4837 * ":unmap" and friends.
4839 static void
4840 ex_unmap(eap)
4841 exarg_T *eap;
4843 do_exmap(eap, FALSE);
4847 * ":mapclear" and friends.
4849 static void
4850 ex_mapclear(eap)
4851 exarg_T *eap;
4853 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4857 * ":abclear" and friends.
4859 static void
4860 ex_abclear(eap)
4861 exarg_T *eap;
4863 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4866 #ifdef FEAT_AUTOCMD
4867 static void
4868 ex_autocmd(eap)
4869 exarg_T *eap;
4872 * Disallow auto commands from .exrc and .vimrc in current
4873 * directory for security reasons.
4875 if (secure)
4877 secure = 2;
4878 eap->errmsg = e_curdir;
4880 else if (eap->cmdidx == CMD_autocmd)
4881 do_autocmd(eap->arg, eap->forceit);
4882 else
4883 do_augroup(eap->arg, eap->forceit);
4887 * ":doautocmd": Apply the automatic commands to the current buffer.
4889 static void
4890 ex_doautocmd(eap)
4891 exarg_T *eap;
4893 (void)do_doautocmd(eap->arg, TRUE);
4894 do_modelines(0);
4896 #endif
4898 #ifdef FEAT_LISTCMDS
4900 * :[N]bunload[!] [N] [bufname] unload buffer
4901 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4902 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4904 static void
4905 ex_bunload(eap)
4906 exarg_T *eap;
4908 eap->errmsg = do_bufdel(
4909 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4910 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4911 : DOBUF_UNLOAD, eap->arg,
4912 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4916 * :[N]buffer [N] to buffer N
4917 * :[N]sbuffer [N] to buffer N
4919 static void
4920 ex_buffer(eap)
4921 exarg_T *eap;
4923 if (*eap->arg)
4924 eap->errmsg = e_trailing;
4925 else
4927 if (eap->addr_count == 0) /* default is current buffer */
4928 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4929 else
4930 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4935 * :[N]bmodified [N] to next mod. buffer
4936 * :[N]sbmodified [N] to next mod. buffer
4938 static void
4939 ex_bmodified(eap)
4940 exarg_T *eap;
4942 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4946 * :[N]bnext [N] to next buffer
4947 * :[N]sbnext [N] split and to next buffer
4949 static void
4950 ex_bnext(eap)
4951 exarg_T *eap;
4953 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4957 * :[N]bNext [N] to previous buffer
4958 * :[N]bprevious [N] to previous buffer
4959 * :[N]sbNext [N] split and to previous buffer
4960 * :[N]sbprevious [N] split and to previous buffer
4962 static void
4963 ex_bprevious(eap)
4964 exarg_T *eap;
4966 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4970 * :brewind to first buffer
4971 * :bfirst to first buffer
4972 * :sbrewind split and to first buffer
4973 * :sbfirst split and to first buffer
4975 static void
4976 ex_brewind(eap)
4977 exarg_T *eap;
4979 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4983 * :blast to last buffer
4984 * :sblast split and to last buffer
4986 static void
4987 ex_blast(eap)
4988 exarg_T *eap;
4990 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4992 #endif
4995 ends_excmd(c)
4996 int c;
4998 return (c == NUL || c == '|' || c == '"' || c == '\n');
5001 #if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
5002 || defined(PROTO)
5004 * Return the next command, after the first '|' or '\n'.
5005 * Return NULL if not found.
5007 char_u *
5008 find_nextcmd(p)
5009 char_u *p;
5011 while (*p != '|' && *p != '\n')
5013 if (*p == NUL)
5014 return NULL;
5015 ++p;
5017 return (p + 1);
5019 #endif
5022 * Check if *p is a separator between Ex commands.
5023 * Return NULL if it isn't, (p + 1) if it is.
5025 char_u *
5026 check_nextcmd(p)
5027 char_u *p;
5029 p = skipwhite(p);
5030 if (*p == '|' || *p == '\n')
5031 return (p + 1);
5032 else
5033 return NULL;
5037 * - if there are more files to edit
5038 * - and this is the last window
5039 * - and forceit not used
5040 * - and not repeated twice on a row
5041 * return FAIL and give error message if 'message' TRUE
5042 * return OK otherwise
5044 static int
5045 check_more(message, forceit)
5046 int message; /* when FALSE check only, no messages */
5047 int forceit;
5049 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5051 if (!forceit && only_one_window()
5052 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
5054 if (message)
5056 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5057 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5059 char_u buff[IOSIZE];
5061 if (n == 1)
5062 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
5063 else
5064 vim_snprintf((char *)buff, IOSIZE,
5065 _("%d more files to edit. Quit anyway?"), n);
5066 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5067 return OK;
5068 return FAIL;
5070 #endif
5071 if (n == 1)
5072 EMSG(_("E173: 1 more file to edit"));
5073 else
5074 EMSGN(_("E173: %ld more files to edit"), n);
5075 quitmore = 2; /* next try to quit is allowed */
5077 return FAIL;
5079 return OK;
5082 #ifdef FEAT_CMDL_COMPL
5084 * Function given to ExpandGeneric() to obtain the list of command names.
5086 char_u *
5087 get_command_name(xp, idx)
5088 expand_T *xp UNUSED;
5089 int idx;
5091 if (idx >= (int)CMD_SIZE)
5092 # ifdef FEAT_USR_CMDS
5093 return get_user_command_name(idx);
5094 # else
5095 return NULL;
5096 # endif
5097 return cmdnames[idx].cmd_name;
5099 #endif
5101 #if defined(FEAT_USR_CMDS) || defined(PROTO)
5102 static 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));
5103 static void uc_list __ARGS((char_u *name, size_t name_len));
5104 static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5105 static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5106 static 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));
5108 static int
5109 uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5110 char_u *name;
5111 size_t name_len;
5112 char_u *rep;
5113 long argt;
5114 long def;
5115 int flags;
5116 int compl;
5117 char_u *compl_arg;
5118 int force;
5120 ucmd_T *cmd = NULL;
5121 char_u *p;
5122 int i;
5123 int cmp = 1;
5124 char_u *rep_buf = NULL;
5125 garray_T *gap;
5127 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
5128 if (rep_buf == NULL)
5130 /* Can't replace termcodes - try using the string as is */
5131 rep_buf = vim_strsave(rep);
5133 /* Give up if out of memory */
5134 if (rep_buf == NULL)
5135 return FAIL;
5138 /* get address of growarray: global or in curbuf */
5139 if (flags & UC_BUFFER)
5141 gap = &curbuf->b_ucmds;
5142 if (gap->ga_itemsize == 0)
5143 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5145 else
5146 gap = &ucmds;
5148 /* Search for the command in the already defined commands. */
5149 for (i = 0; i < gap->ga_len; ++i)
5151 size_t len;
5153 cmd = USER_CMD_GA(gap, i);
5154 len = STRLEN(cmd->uc_name);
5155 cmp = STRNCMP(name, cmd->uc_name, name_len);
5156 if (cmp == 0)
5158 if (name_len < len)
5159 cmp = -1;
5160 else if (name_len > len)
5161 cmp = 1;
5164 if (cmp == 0)
5166 if (!force)
5168 EMSG(_("E174: Command already exists: add ! to replace it"));
5169 goto fail;
5172 vim_free(cmd->uc_rep);
5173 cmd->uc_rep = NULL;
5174 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5175 vim_free(cmd->uc_compl_arg);
5176 cmd->uc_compl_arg = NULL;
5177 #endif
5178 break;
5181 /* Stop as soon as we pass the name to add */
5182 if (cmp < 0)
5183 break;
5186 /* Extend the array unless we're replacing an existing command */
5187 if (cmp != 0)
5189 if (ga_grow(gap, 1) != OK)
5190 goto fail;
5191 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5192 goto fail;
5194 cmd = USER_CMD_GA(gap, i);
5195 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5197 ++gap->ga_len;
5199 cmd->uc_name = p;
5202 cmd->uc_rep = rep_buf;
5203 cmd->uc_argt = argt;
5204 cmd->uc_def = def;
5205 cmd->uc_compl = compl;
5206 #ifdef FEAT_EVAL
5207 cmd->uc_scriptID = current_SID;
5208 # ifdef FEAT_CMDL_COMPL
5209 cmd->uc_compl_arg = compl_arg;
5210 # endif
5211 #endif
5213 return OK;
5215 fail:
5216 vim_free(rep_buf);
5217 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5218 vim_free(compl_arg);
5219 #endif
5220 return FAIL;
5224 * List of names for completion for ":command" with the EXPAND_ flag.
5225 * Must be alphabetical for completion.
5227 static struct
5229 int expand;
5230 char *name;
5231 } command_complete[] =
5233 {EXPAND_AUGROUP, "augroup"},
5234 {EXPAND_BUFFERS, "buffer"},
5235 {EXPAND_COMMANDS, "command"},
5236 #if defined(FEAT_CSCOPE)
5237 {EXPAND_CSCOPE, "cscope"},
5238 #endif
5239 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5240 {EXPAND_USER_DEFINED, "custom"},
5241 {EXPAND_USER_LIST, "customlist"},
5242 #endif
5243 {EXPAND_DIRECTORIES, "dir"},
5244 {EXPAND_ENV_VARS, "environment"},
5245 {EXPAND_EVENTS, "event"},
5246 {EXPAND_EXPRESSION, "expression"},
5247 {EXPAND_FILES, "file"},
5248 {EXPAND_FUNCTIONS, "function"},
5249 {EXPAND_HELP, "help"},
5250 {EXPAND_HIGHLIGHT, "highlight"},
5251 {EXPAND_MAPPINGS, "mapping"},
5252 {EXPAND_MENUS, "menu"},
5253 {EXPAND_SETTINGS, "option"},
5254 {EXPAND_SHELLCMD, "shellcmd"},
5255 #if defined(FEAT_SIGNS)
5256 {EXPAND_SIGN, "sign"},
5257 #endif
5258 {EXPAND_TAGS, "tag"},
5259 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5260 {EXPAND_USER_VARS, "var"},
5261 {0, NULL}
5264 static void
5265 uc_list(name, name_len)
5266 char_u *name;
5267 size_t name_len;
5269 int i, j;
5270 int found = FALSE;
5271 ucmd_T *cmd;
5272 int len;
5273 long a;
5274 garray_T *gap;
5276 gap = &curbuf->b_ucmds;
5277 for (;;)
5279 for (i = 0; i < gap->ga_len; ++i)
5281 cmd = USER_CMD_GA(gap, i);
5282 a = (long)cmd->uc_argt;
5284 /* Skip commands which don't match the requested prefix */
5285 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5286 continue;
5288 /* Put out the title first time */
5289 if (!found)
5290 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5291 found = TRUE;
5292 msg_putchar('\n');
5293 if (got_int)
5294 break;
5296 /* Special cases */
5297 msg_putchar(a & BANG ? '!' : ' ');
5298 msg_putchar(a & REGSTR ? '"' : ' ');
5299 msg_putchar(gap != &ucmds ? 'b' : ' ');
5300 msg_putchar(' ');
5302 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5303 len = (int)STRLEN(cmd->uc_name) + 4;
5305 do {
5306 msg_putchar(' ');
5307 ++len;
5308 } while (len < 16);
5310 len = 0;
5312 /* Arguments */
5313 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5315 case 0: IObuff[len++] = '0'; break;
5316 case (EXTRA): IObuff[len++] = '*'; break;
5317 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5318 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5319 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5322 do {
5323 IObuff[len++] = ' ';
5324 } while (len < 5);
5326 /* Range */
5327 if (a & (RANGE|COUNT))
5329 if (a & COUNT)
5331 /* -count=N */
5332 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5333 len += (int)STRLEN(IObuff + len);
5335 else if (a & DFLALL)
5336 IObuff[len++] = '%';
5337 else if (cmd->uc_def >= 0)
5339 /* -range=N */
5340 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5341 len += (int)STRLEN(IObuff + len);
5343 else
5344 IObuff[len++] = '.';
5347 do {
5348 IObuff[len++] = ' ';
5349 } while (len < 11);
5351 /* Completion */
5352 for (j = 0; command_complete[j].expand != 0; ++j)
5353 if (command_complete[j].expand == cmd->uc_compl)
5355 STRCPY(IObuff + len, command_complete[j].name);
5356 len += (int)STRLEN(IObuff + len);
5357 break;
5360 do {
5361 IObuff[len++] = ' ';
5362 } while (len < 21);
5364 IObuff[len] = '\0';
5365 msg_outtrans(IObuff);
5367 msg_outtrans_special(cmd->uc_rep, FALSE);
5368 #ifdef FEAT_EVAL
5369 if (p_verbose > 0)
5370 last_set_msg(cmd->uc_scriptID);
5371 #endif
5372 out_flush();
5373 ui_breakcheck();
5374 if (got_int)
5375 break;
5377 if (gap == &ucmds || i < gap->ga_len)
5378 break;
5379 gap = &ucmds;
5382 if (!found)
5383 MSG(_("No user-defined commands found"));
5386 static char_u *
5387 uc_fun_cmd()
5389 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5390 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5391 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5392 0xb9, 0x7f, 0};
5393 int i;
5395 for (i = 0; fcmd[i]; ++i)
5396 IObuff[i] = fcmd[i] - 0x40;
5397 IObuff[i] = 0;
5398 return IObuff;
5401 static int
5402 uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5403 char_u *attr;
5404 size_t len;
5405 long *argt;
5406 long *def;
5407 int *flags;
5408 int *compl;
5409 char_u **compl_arg;
5411 char_u *p;
5413 if (len == 0)
5415 EMSG(_("E175: No attribute specified"));
5416 return FAIL;
5419 /* First, try the simple attributes (no arguments) */
5420 if (STRNICMP(attr, "bang", len) == 0)
5421 *argt |= BANG;
5422 else if (STRNICMP(attr, "buffer", len) == 0)
5423 *flags |= UC_BUFFER;
5424 else if (STRNICMP(attr, "register", len) == 0)
5425 *argt |= REGSTR;
5426 else if (STRNICMP(attr, "bar", len) == 0)
5427 *argt |= TRLBAR;
5428 else
5430 int i;
5431 char_u *val = NULL;
5432 size_t vallen = 0;
5433 size_t attrlen = len;
5435 /* Look for the attribute name - which is the part before any '=' */
5436 for (i = 0; i < (int)len; ++i)
5438 if (attr[i] == '=')
5440 val = &attr[i + 1];
5441 vallen = len - i - 1;
5442 attrlen = i;
5443 break;
5447 if (STRNICMP(attr, "nargs", attrlen) == 0)
5449 if (vallen == 1)
5451 if (*val == '0')
5452 /* Do nothing - this is the default */;
5453 else if (*val == '1')
5454 *argt |= (EXTRA | NOSPC | NEEDARG);
5455 else if (*val == '*')
5456 *argt |= EXTRA;
5457 else if (*val == '?')
5458 *argt |= (EXTRA | NOSPC);
5459 else if (*val == '+')
5460 *argt |= (EXTRA | NEEDARG);
5461 else
5462 goto wrong_nargs;
5464 else
5466 wrong_nargs:
5467 EMSG(_("E176: Invalid number of arguments"));
5468 return FAIL;
5471 else if (STRNICMP(attr, "range", attrlen) == 0)
5473 *argt |= RANGE;
5474 if (vallen == 1 && *val == '%')
5475 *argt |= DFLALL;
5476 else if (val != NULL)
5478 p = val;
5479 if (*def >= 0)
5481 two_count:
5482 EMSG(_("E177: Count cannot be specified twice"));
5483 return FAIL;
5486 *def = getdigits(&p);
5487 *argt |= (ZEROR | NOTADR);
5489 if (p != val + vallen || vallen == 0)
5491 invalid_count:
5492 EMSG(_("E178: Invalid default value for count"));
5493 return FAIL;
5497 else if (STRNICMP(attr, "count", attrlen) == 0)
5499 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
5501 if (val != NULL)
5503 p = val;
5504 if (*def >= 0)
5505 goto two_count;
5507 *def = getdigits(&p);
5509 if (p != val + vallen)
5510 goto invalid_count;
5513 if (*def < 0)
5514 *def = 0;
5516 else if (STRNICMP(attr, "complete", attrlen) == 0)
5518 if (val == NULL)
5520 EMSG(_("E179: argument required for -complete"));
5521 return FAIL;
5524 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5525 == FAIL)
5526 return FAIL;
5528 else
5530 char_u ch = attr[len];
5531 attr[len] = '\0';
5532 EMSG2(_("E181: Invalid attribute: %s"), attr);
5533 attr[len] = ch;
5534 return FAIL;
5538 return OK;
5542 * ":command ..."
5544 static void
5545 ex_command(eap)
5546 exarg_T *eap;
5548 char_u *name;
5549 char_u *end;
5550 char_u *p;
5551 long argt = 0;
5552 long def = -1;
5553 int flags = 0;
5554 int compl = EXPAND_NOTHING;
5555 char_u *compl_arg = NULL;
5556 int has_attr = (eap->arg[0] == '-');
5558 p = eap->arg;
5560 /* Check for attributes */
5561 while (*p == '-')
5563 ++p;
5564 end = skiptowhite(p);
5565 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5566 == FAIL)
5567 return;
5568 p = skipwhite(end);
5571 /* Get the name (if any) and skip to the following argument */
5572 name = p;
5573 if (ASCII_ISALPHA(*p))
5574 while (ASCII_ISALNUM(*p))
5575 ++p;
5576 if (!ends_excmd(*p) && !vim_iswhite(*p))
5578 EMSG(_("E182: Invalid command name"));
5579 return;
5581 end = p;
5583 /* If there is nothing after the name, and no attributes were specified,
5584 * we are listing commands
5586 p = skipwhite(end);
5587 if (!has_attr && ends_excmd(*p))
5589 uc_list(name, end - name);
5591 else if (!ASCII_ISUPPER(*name))
5593 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5594 return;
5596 else
5597 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5598 eap->forceit);
5602 * ":comclear"
5603 * Clear all user commands, global and for current buffer.
5605 void
5606 ex_comclear(eap)
5607 exarg_T *eap UNUSED;
5609 uc_clear(&ucmds);
5610 uc_clear(&curbuf->b_ucmds);
5614 * Clear all user commands for "gap".
5616 void
5617 uc_clear(gap)
5618 garray_T *gap;
5620 int i;
5621 ucmd_T *cmd;
5623 for (i = 0; i < gap->ga_len; ++i)
5625 cmd = USER_CMD_GA(gap, i);
5626 vim_free(cmd->uc_name);
5627 vim_free(cmd->uc_rep);
5628 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5629 vim_free(cmd->uc_compl_arg);
5630 # endif
5632 ga_clear(gap);
5635 static void
5636 ex_delcommand(eap)
5637 exarg_T *eap;
5639 int i = 0;
5640 ucmd_T *cmd = NULL;
5641 int cmp = -1;
5642 garray_T *gap;
5644 gap = &curbuf->b_ucmds;
5645 for (;;)
5647 for (i = 0; i < gap->ga_len; ++i)
5649 cmd = USER_CMD_GA(gap, i);
5650 cmp = STRCMP(eap->arg, cmd->uc_name);
5651 if (cmp <= 0)
5652 break;
5654 if (gap == &ucmds || cmp == 0)
5655 break;
5656 gap = &ucmds;
5659 if (cmp != 0)
5661 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5662 return;
5665 vim_free(cmd->uc_name);
5666 vim_free(cmd->uc_rep);
5667 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5668 vim_free(cmd->uc_compl_arg);
5669 # endif
5671 --gap->ga_len;
5673 if (i < gap->ga_len)
5674 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5678 * split and quote args for <f-args>
5680 static char_u *
5681 uc_split_args(arg, lenp)
5682 char_u *arg;
5683 size_t *lenp;
5685 char_u *buf;
5686 char_u *p;
5687 char_u *q;
5688 int len;
5690 /* Precalculate length */
5691 p = arg;
5692 len = 2; /* Initial and final quotes */
5694 while (*p)
5696 if (p[0] == '\\' && p[1] == '\\')
5698 len += 2;
5699 p += 2;
5701 else if (p[0] == '\\' && vim_iswhite(p[1]))
5703 len += 1;
5704 p += 2;
5706 else if (*p == '\\' || *p == '"')
5708 len += 2;
5709 p += 1;
5711 else if (vim_iswhite(*p))
5713 p = skipwhite(p);
5714 if (*p == NUL)
5715 break;
5716 len += 3; /* "," */
5718 else
5720 ++len;
5721 ++p;
5725 buf = alloc(len + 1);
5726 if (buf == NULL)
5728 *lenp = 0;
5729 return buf;
5732 p = arg;
5733 q = buf;
5734 *q++ = '"';
5735 while (*p)
5737 if (p[0] == '\\' && p[1] == '\\')
5739 *q++ = '\\';
5740 *q++ = '\\';
5741 p += 2;
5743 else if (p[0] == '\\' && vim_iswhite(p[1]))
5745 *q++ = p[1];
5746 p += 2;
5748 else if (*p == '\\' || *p == '"')
5750 *q++ = '\\';
5751 *q++ = *p++;
5753 else if (vim_iswhite(*p))
5755 p = skipwhite(p);
5756 if (*p == NUL)
5757 break;
5758 *q++ = '"';
5759 *q++ = ',';
5760 *q++ = '"';
5762 else
5764 *q++ = *p++;
5767 *q++ = '"';
5768 *q = 0;
5770 *lenp = len;
5771 return buf;
5775 * Check for a <> code in a user command.
5776 * "code" points to the '<'. "len" the length of the <> (inclusive).
5777 * "buf" is where the result is to be added.
5778 * "split_buf" points to a buffer used for splitting, caller should free it.
5779 * "split_len" is the length of what "split_buf" contains.
5780 * Returns the length of the replacement, which has been added to "buf".
5781 * Returns -1 if there was no match, and only the "<" has been copied.
5783 static size_t
5784 uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5785 char_u *code;
5786 size_t len;
5787 char_u *buf;
5788 ucmd_T *cmd; /* the user command we're expanding */
5789 exarg_T *eap; /* ex arguments */
5790 char_u **split_buf;
5791 size_t *split_len;
5793 size_t result = 0;
5794 char_u *p = code + 1;
5795 size_t l = len - 2;
5796 int quote = 0;
5797 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5798 ct_LT, ct_NONE } type = ct_NONE;
5800 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5802 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5803 p += 2;
5804 l -= 2;
5807 ++l;
5808 if (l <= 1)
5809 type = ct_NONE;
5810 else if (STRNICMP(p, "args>", l) == 0)
5811 type = ct_ARGS;
5812 else if (STRNICMP(p, "bang>", l) == 0)
5813 type = ct_BANG;
5814 else if (STRNICMP(p, "count>", l) == 0)
5815 type = ct_COUNT;
5816 else if (STRNICMP(p, "line1>", l) == 0)
5817 type = ct_LINE1;
5818 else if (STRNICMP(p, "line2>", l) == 0)
5819 type = ct_LINE2;
5820 else if (STRNICMP(p, "lt>", l) == 0)
5821 type = ct_LT;
5822 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
5823 type = ct_REGISTER;
5825 switch (type)
5827 case ct_ARGS:
5828 /* Simple case first */
5829 if (*eap->arg == NUL)
5831 if (quote == 1)
5833 result = 2;
5834 if (buf != NULL)
5835 STRCPY(buf, "''");
5837 else
5838 result = 0;
5839 break;
5842 /* When specified there is a single argument don't split it.
5843 * Works for ":Cmd %" when % is "a b c". */
5844 if ((eap->argt & NOSPC) && quote == 2)
5845 quote = 1;
5847 switch (quote)
5849 case 0: /* No quoting, no splitting */
5850 result = STRLEN(eap->arg);
5851 if (buf != NULL)
5852 STRCPY(buf, eap->arg);
5853 break;
5854 case 1: /* Quote, but don't split */
5855 result = STRLEN(eap->arg) + 2;
5856 for (p = eap->arg; *p; ++p)
5858 if (*p == '\\' || *p == '"')
5859 ++result;
5862 if (buf != NULL)
5864 *buf++ = '"';
5865 for (p = eap->arg; *p; ++p)
5867 if (*p == '\\' || *p == '"')
5868 *buf++ = '\\';
5869 *buf++ = *p;
5871 *buf = '"';
5874 break;
5875 case 2: /* Quote and split (<f-args>) */
5876 /* This is hard, so only do it once, and cache the result */
5877 if (*split_buf == NULL)
5878 *split_buf = uc_split_args(eap->arg, split_len);
5880 result = *split_len;
5881 if (buf != NULL && result != 0)
5882 STRCPY(buf, *split_buf);
5884 break;
5886 break;
5888 case ct_BANG:
5889 result = eap->forceit ? 1 : 0;
5890 if (quote)
5891 result += 2;
5892 if (buf != NULL)
5894 if (quote)
5895 *buf++ = '"';
5896 if (eap->forceit)
5897 *buf++ = '!';
5898 if (quote)
5899 *buf = '"';
5901 break;
5903 case ct_LINE1:
5904 case ct_LINE2:
5905 case ct_COUNT:
5907 char num_buf[20];
5908 long num = (type == ct_LINE1) ? eap->line1 :
5909 (type == ct_LINE2) ? eap->line2 :
5910 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5911 size_t num_len;
5913 sprintf(num_buf, "%ld", num);
5914 num_len = STRLEN(num_buf);
5915 result = num_len;
5917 if (quote)
5918 result += 2;
5920 if (buf != NULL)
5922 if (quote)
5923 *buf++ = '"';
5924 STRCPY(buf, num_buf);
5925 buf += num_len;
5926 if (quote)
5927 *buf = '"';
5930 break;
5933 case ct_REGISTER:
5934 result = eap->regname ? 1 : 0;
5935 if (quote)
5936 result += 2;
5937 if (buf != NULL)
5939 if (quote)
5940 *buf++ = '\'';
5941 if (eap->regname)
5942 *buf++ = eap->regname;
5943 if (quote)
5944 *buf = '\'';
5946 break;
5948 case ct_LT:
5949 result = 1;
5950 if (buf != NULL)
5951 *buf = '<';
5952 break;
5954 default:
5955 /* Not recognized: just copy the '<' and return -1. */
5956 result = (size_t)-1;
5957 if (buf != NULL)
5958 *buf = '<';
5959 break;
5962 return result;
5965 static void
5966 do_ucmd(eap)
5967 exarg_T *eap;
5969 char_u *buf;
5970 char_u *p;
5971 char_u *q;
5973 char_u *start;
5974 char_u *end = NULL;
5975 char_u *ksp;
5976 size_t len, totlen;
5978 size_t split_len = 0;
5979 char_u *split_buf = NULL;
5980 ucmd_T *cmd;
5981 #ifdef FEAT_EVAL
5982 scid_T save_current_SID = current_SID;
5983 #endif
5985 if (eap->cmdidx == CMD_USER)
5986 cmd = USER_CMD(eap->useridx);
5987 else
5988 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5991 * Replace <> in the command by the arguments.
5992 * First round: "buf" is NULL, compute length, allocate "buf".
5993 * Second round: copy result into "buf".
5995 buf = NULL;
5996 for (;;)
5998 p = cmd->uc_rep; /* source */
5999 q = buf; /* destination */
6000 totlen = 0;
6002 for (;;)
6004 start = vim_strchr(p, '<');
6005 if (start != NULL)
6006 end = vim_strchr(start + 1, '>');
6007 if (buf != NULL)
6009 ksp = vim_strchr(p, K_SPECIAL);
6010 if (ksp != NULL && (start == NULL || ksp < start || end == NULL)
6011 && ((ksp[1] == KS_SPECIAL && ksp[2] == KE_FILLER)
6012 # ifdef FEAT_GUI
6013 || (ksp[1] == KS_EXTRA && ksp[2] == (int)KE_CSI)
6014 # endif
6017 /* K_SPECIAL han been put in the buffer as K_SPECIAL
6018 * KS_SPECIAL KE_FILLER, like for mappings, but
6019 * do_cmdline() doesn't handle that, so convert it back.
6020 * Also change K_SPECIAL KS_EXTRA KE_CSI into CSI. */
6021 len = ksp - p;
6022 if (len > 0)
6024 mch_memmove(q, p, len);
6025 q += len;
6027 *q++ = ksp[1] == KS_SPECIAL ? K_SPECIAL : CSI;
6028 p = ksp + 3;
6029 continue;
6033 /* break if there no <item> is found */
6034 if (start == NULL || end == NULL)
6035 break;
6037 /* Include the '>' */
6038 ++end;
6040 /* Take everything up to the '<' */
6041 len = start - p;
6042 if (buf == NULL)
6043 totlen += len;
6044 else
6046 mch_memmove(q, p, len);
6047 q += len;
6050 len = uc_check_code(start, end - start, q, cmd, eap,
6051 &split_buf, &split_len);
6052 if (len == (size_t)-1)
6054 /* no match, continue after '<' */
6055 p = start + 1;
6056 len = 1;
6058 else
6059 p = end;
6060 if (buf == NULL)
6061 totlen += len;
6062 else
6063 q += len;
6065 if (buf != NULL) /* second time here, finished */
6067 STRCPY(q, p);
6068 break;
6071 totlen += STRLEN(p); /* Add on the trailing characters */
6072 buf = alloc((unsigned)(totlen + 1));
6073 if (buf == NULL)
6075 vim_free(split_buf);
6076 return;
6080 #ifdef FEAT_EVAL
6081 current_SID = cmd->uc_scriptID;
6082 #endif
6083 (void)do_cmdline(buf, eap->getline, eap->cookie,
6084 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
6085 #ifdef FEAT_EVAL
6086 current_SID = save_current_SID;
6087 #endif
6088 vim_free(buf);
6089 vim_free(split_buf);
6092 # if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6093 static char_u *
6094 get_user_command_name(idx)
6095 int idx;
6097 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6101 * Function given to ExpandGeneric() to obtain the list of user command names.
6103 char_u *
6104 get_user_commands(xp, idx)
6105 expand_T *xp UNUSED;
6106 int idx;
6108 if (idx < curbuf->b_ucmds.ga_len)
6109 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6110 idx -= curbuf->b_ucmds.ga_len;
6111 if (idx < ucmds.ga_len)
6112 return USER_CMD(idx)->uc_name;
6113 return NULL;
6117 * Function given to ExpandGeneric() to obtain the list of user command
6118 * attributes.
6120 char_u *
6121 get_user_cmd_flags(xp, idx)
6122 expand_T *xp UNUSED;
6123 int idx;
6125 static char *user_cmd_flags[] =
6126 {"bang", "bar", "buffer", "complete", "count",
6127 "nargs", "range", "register"};
6129 if (idx >= (int)(sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0])))
6130 return NULL;
6131 return (char_u *)user_cmd_flags[idx];
6135 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6137 char_u *
6138 get_user_cmd_nargs(xp, idx)
6139 expand_T *xp UNUSED;
6140 int idx;
6142 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6144 if (idx >= (int)(sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0])))
6145 return NULL;
6146 return (char_u *)user_cmd_nargs[idx];
6150 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6152 char_u *
6153 get_user_cmd_complete(xp, idx)
6154 expand_T *xp UNUSED;
6155 int idx;
6157 return (char_u *)command_complete[idx].name;
6159 # endif /* FEAT_CMDL_COMPL */
6161 #endif /* FEAT_USR_CMDS */
6163 #if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6165 * Parse a completion argument "value[vallen]".
6166 * The detected completion goes in "*complp", argument type in "*argt".
6167 * When there is an argument, for function and user defined completion, it's
6168 * copied to allocated memory and stored in "*compl_arg".
6169 * Returns FAIL if something is wrong.
6172 parse_compl_arg(value, vallen, complp, argt, compl_arg)
6173 char_u *value;
6174 int vallen;
6175 int *complp;
6176 long *argt;
6177 char_u **compl_arg;
6179 char_u *arg = NULL;
6180 size_t arglen = 0;
6181 int i;
6182 int valend = vallen;
6184 /* Look for any argument part - which is the part after any ',' */
6185 for (i = 0; i < vallen; ++i)
6187 if (value[i] == ',')
6189 arg = &value[i + 1];
6190 arglen = vallen - i - 1;
6191 valend = i;
6192 break;
6196 for (i = 0; command_complete[i].expand != 0; ++i)
6198 if ((int)STRLEN(command_complete[i].name) == valend
6199 && STRNCMP(value, command_complete[i].name, valend) == 0)
6201 *complp = command_complete[i].expand;
6202 if (command_complete[i].expand == EXPAND_BUFFERS)
6203 *argt |= BUFNAME;
6204 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6205 || command_complete[i].expand == EXPAND_FILES)
6206 *argt |= XFILE;
6207 break;
6211 if (command_complete[i].expand == 0)
6213 EMSG2(_("E180: Invalid complete value: %s"), value);
6214 return FAIL;
6217 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6218 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6219 && arg != NULL)
6220 # else
6221 if (arg != NULL)
6222 # endif
6224 EMSG(_("E468: Completion argument only allowed for custom completion"));
6225 return FAIL;
6228 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6229 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6230 && arg == NULL)
6232 EMSG(_("E467: Custom completion requires a function argument"));
6233 return FAIL;
6236 if (arg != NULL)
6237 *compl_arg = vim_strnsave(arg, (int)arglen);
6238 # endif
6239 return OK;
6241 #endif
6243 static void
6244 ex_colorscheme(eap)
6245 exarg_T *eap;
6247 if (load_colors(eap->arg) == FAIL)
6248 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6251 static void
6252 ex_highlight(eap)
6253 exarg_T *eap;
6255 if (*eap->arg == NUL && eap->cmd[2] == '!')
6256 MSG(_("Greetings, Vim user!"));
6257 do_highlight(eap->arg, eap->forceit, FALSE);
6262 * Call this function if we thought we were going to exit, but we won't
6263 * (because of an error). May need to restore the terminal mode.
6265 void
6266 not_exiting()
6268 exiting = FALSE;
6269 settmode(TMODE_RAW);
6273 * ":quit": quit current window, quit Vim if closed the last window.
6275 static void
6276 ex_quit(eap)
6277 exarg_T *eap;
6279 #ifdef FEAT_CMDWIN
6280 if (cmdwin_type != 0)
6282 cmdwin_result = Ctrl_C;
6283 return;
6285 #endif
6286 /* Don't quit while editing the command line. */
6287 if (text_locked())
6289 text_locked_msg();
6290 return;
6292 #ifdef FEAT_AUTOCMD
6293 if (curbuf_locked())
6294 return;
6295 #endif
6297 #ifdef FEAT_NETBEANS_INTG
6298 netbeansForcedQuit = eap->forceit;
6299 #endif
6302 * If there are more files or windows we won't exit.
6304 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6305 exiting = TRUE;
6306 if ((!P_HID(curbuf)
6307 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6308 || check_more(TRUE, eap->forceit) == FAIL
6309 || (only_one_window() && check_changed_any(eap->forceit)))
6311 not_exiting();
6313 else
6315 #ifdef FEAT_WINDOWS
6316 if (only_one_window()) /* quit last window */
6317 #endif
6318 getout(0);
6319 #ifdef FEAT_WINDOWS
6320 # ifdef FEAT_GUI
6321 need_mouse_correct = TRUE;
6322 # endif
6323 /* close window; may free buffer */
6324 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6325 #endif
6330 * ":cquit".
6332 static void
6333 ex_cquit(eap)
6334 exarg_T *eap UNUSED;
6336 getout(1); /* this does not always pass on the exit code to the Manx
6337 compiler. why? */
6341 * ":qall": try to quit all windows
6343 static void
6344 ex_quit_all(eap)
6345 exarg_T *eap;
6347 # ifdef FEAT_CMDWIN
6348 if (cmdwin_type != 0)
6350 if (eap->forceit)
6351 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6352 else
6353 cmdwin_result = K_XF2;
6354 return;
6356 # endif
6358 /* Don't quit while editing the command line. */
6359 if (text_locked())
6361 text_locked_msg();
6362 return;
6364 #ifdef FEAT_AUTOCMD
6365 if (curbuf_locked())
6366 return;
6367 #endif
6369 exiting = TRUE;
6370 if (eap->forceit || !check_changed_any(FALSE))
6371 getout(0);
6372 not_exiting();
6375 #if defined(FEAT_WINDOWS) || defined(PROTO)
6377 * ":close": close current window, unless it is the last one
6379 static void
6380 ex_close(eap)
6381 exarg_T *eap;
6383 # ifdef FEAT_CMDWIN
6384 if (cmdwin_type != 0)
6385 cmdwin_result = K_IGNORE;
6386 else
6387 # endif
6388 if (!text_locked()
6389 #ifdef FEAT_AUTOCMD
6390 && !curbuf_locked()
6391 #endif
6393 ex_win_close(eap->forceit, curwin, NULL);
6396 # ifdef FEAT_QUICKFIX
6398 * ":pclose": Close any preview window.
6400 static void
6401 ex_pclose(eap)
6402 exarg_T *eap;
6404 win_T *win;
6406 for (win = firstwin; win != NULL; win = win->w_next)
6407 if (win->w_p_pvw)
6409 ex_win_close(eap->forceit, win, NULL);
6410 break;
6413 # endif
6416 * Close window "win" and take care of handling closing the last window for a
6417 * modified buffer.
6419 static void
6420 ex_win_close(forceit, win, tp)
6421 int forceit;
6422 win_T *win;
6423 tabpage_T *tp; /* NULL or the tab page "win" is in */
6425 int need_hide;
6426 buf_T *buf = win->w_buffer;
6428 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
6429 if (need_hide && !P_HID(buf) && !forceit)
6431 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
6432 if ((p_confirm || cmdmod.confirm) && p_write)
6434 dialog_changed(buf, FALSE);
6435 if (buf_valid(buf) && bufIsChanged(buf))
6436 return;
6437 need_hide = FALSE;
6439 else
6440 # endif
6442 EMSG(_(e_nowrtmsg));
6443 return;
6447 # ifdef FEAT_GUI
6448 need_mouse_correct = TRUE;
6449 # endif
6451 /* free buffer when not hiding it or when it's a scratch buffer */
6452 if (tp == NULL)
6453 win_close(win, !need_hide && !P_HID(buf));
6454 else
6455 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
6459 * ":tabclose": close current tab page, unless it is the last one.
6460 * ":tabclose N": close tab page N.
6462 static void
6463 ex_tabclose(eap)
6464 exarg_T *eap;
6466 tabpage_T *tp;
6468 # ifdef FEAT_CMDWIN
6469 if (cmdwin_type != 0)
6470 cmdwin_result = K_IGNORE;
6471 else
6472 # endif
6473 if (first_tabpage->tp_next == NULL)
6474 EMSG(_("E784: Cannot close last tab page"));
6475 else
6477 if (eap->addr_count > 0)
6479 tp = find_tabpage((int)eap->line2);
6480 if (tp == NULL)
6482 beep_flush();
6483 return;
6485 if (tp != curtab)
6487 tabpage_close_other(tp, eap->forceit);
6488 return;
6491 if (!text_locked()
6492 #ifdef FEAT_AUTOCMD
6493 && !curbuf_locked()
6494 #endif
6496 tabpage_close(eap->forceit);
6501 * ":tabonly": close all tab pages except the current one
6503 static void
6504 ex_tabonly(eap)
6505 exarg_T *eap;
6507 tabpage_T *tp;
6508 int done;
6510 # ifdef FEAT_CMDWIN
6511 if (cmdwin_type != 0)
6512 cmdwin_result = K_IGNORE;
6513 else
6514 # endif
6515 if (first_tabpage->tp_next == NULL)
6516 MSG(_("Already only one tab page"));
6517 else
6519 /* Repeat this up to a 1000 times, because autocommands may mess
6520 * up the lists. */
6521 for (done = 0; done < 1000; ++done)
6523 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6524 if (tp->tp_topframe != topframe)
6526 tabpage_close_other(tp, eap->forceit);
6527 /* if we failed to close it quit */
6528 if (valid_tabpage(tp))
6529 done = 1000;
6530 /* start over, "tp" is now invalid */
6531 break;
6533 if (first_tabpage->tp_next == NULL)
6534 break;
6540 * Close the current tab page.
6542 void
6543 tabpage_close(forceit)
6544 int forceit;
6546 /* First close all the windows but the current one. If that worked then
6547 * close the last window in this tab, that will close it. */
6548 if (lastwin != firstwin)
6549 close_others(TRUE, forceit);
6550 if (lastwin == firstwin)
6551 ex_win_close(forceit, curwin, NULL);
6552 # ifdef FEAT_GUI
6553 need_mouse_correct = TRUE;
6554 # endif
6558 * Close tab page "tp", which is not the current tab page.
6559 * Note that autocommands may make "tp" invalid.
6560 * Also takes care of the tab pages line disappearing when closing the
6561 * last-but-one tab page.
6563 void
6564 tabpage_close_other(tp, forceit)
6565 tabpage_T *tp;
6566 int forceit;
6568 int done = 0;
6569 win_T *wp;
6570 int h = tabline_height();
6572 /* Limit to 1000 windows, autocommands may add a window while we close
6573 * one. OK, so I'm paranoid... */
6574 while (++done < 1000)
6576 wp = tp->tp_firstwin;
6577 ex_win_close(forceit, wp, tp);
6579 /* Autocommands may delete the tab page under our fingers and we may
6580 * fail to close a window with a modified buffer. */
6581 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
6582 break;
6585 redraw_tabline = TRUE;
6586 if (h != tabline_height())
6587 shell_new_rows();
6591 * ":only".
6593 static void
6594 ex_only(eap)
6595 exarg_T *eap;
6597 # ifdef FEAT_GUI
6598 need_mouse_correct = TRUE;
6599 # endif
6600 close_others(TRUE, eap->forceit);
6604 * ":all" and ":sall".
6605 * Also used for ":tab drop file ..." after setting the argument list.
6607 void
6608 ex_all(eap)
6609 exarg_T *eap;
6611 if (eap->addr_count == 0)
6612 eap->line2 = 9999;
6613 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
6615 #endif /* FEAT_WINDOWS */
6617 static void
6618 ex_hide(eap)
6619 exarg_T *eap;
6621 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6622 eap->errmsg = e_invarg;
6623 else
6625 /* ":hide" or ":hide | cmd": hide current window */
6626 eap->nextcmd = check_nextcmd(eap->arg);
6627 #ifdef FEAT_WINDOWS
6628 if (!eap->skip)
6630 # ifdef FEAT_GUI
6631 need_mouse_correct = TRUE;
6632 # endif
6633 win_close(curwin, FALSE); /* don't free buffer */
6635 #endif
6640 * ":stop" and ":suspend": Suspend Vim.
6642 static void
6643 ex_stop(eap)
6644 exarg_T *eap;
6647 * Disallow suspending for "rvim".
6649 if (!check_restricted()
6650 #ifdef WIN3264
6652 * Check if external commands are allowed now.
6654 && can_end_termcap_mode(TRUE)
6655 #endif
6658 if (!eap->forceit)
6659 autowrite_all();
6660 windgoto((int)Rows - 1, 0);
6661 out_char('\n');
6662 out_flush();
6663 stoptermcap();
6664 out_flush(); /* needed for SUN to restore xterm buffer */
6665 #ifdef FEAT_TITLE
6666 mch_restore_title(3); /* restore window titles */
6667 #endif
6668 ui_suspend(); /* call machine specific function */
6669 #ifdef FEAT_TITLE
6670 maketitle();
6671 resettitle(); /* force updating the title */
6672 #endif
6673 starttermcap();
6674 scroll_start(); /* scroll screen before redrawing */
6675 redraw_later_clear();
6676 shell_resized(); /* may have resized window */
6681 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6683 static void
6684 ex_exit(eap)
6685 exarg_T *eap;
6687 #ifdef FEAT_CMDWIN
6688 if (cmdwin_type != 0)
6690 cmdwin_result = Ctrl_C;
6691 return;
6693 #endif
6694 /* Don't quit while editing the command line. */
6695 if (text_locked())
6697 text_locked_msg();
6698 return;
6700 #ifdef FEAT_AUTOCMD
6701 if (curbuf_locked())
6702 return;
6703 #endif
6706 * if more files or windows we won't exit
6708 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6709 exiting = TRUE;
6710 if ( ((eap->cmdidx == CMD_wq
6711 || curbufIsChanged())
6712 && do_write(eap) == FAIL)
6713 || check_more(TRUE, eap->forceit) == FAIL
6714 || (only_one_window() && check_changed_any(eap->forceit)))
6716 not_exiting();
6718 else
6720 #ifdef FEAT_WINDOWS
6721 if (only_one_window()) /* quit last window, exit Vim */
6722 #endif
6723 getout(0);
6724 #ifdef FEAT_WINDOWS
6725 # ifdef FEAT_GUI
6726 need_mouse_correct = TRUE;
6727 # endif
6728 /* quit current window, may free buffer */
6729 win_close(curwin, !P_HID(curwin->w_buffer));
6730 #endif
6735 * ":print", ":list", ":number".
6737 static void
6738 ex_print(eap)
6739 exarg_T *eap;
6741 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6742 EMSG(_(e_emptybuf));
6743 else
6745 for ( ;!got_int; ui_breakcheck())
6747 print_line(eap->line1,
6748 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6749 || (eap->flags & EXFLAG_NR)),
6750 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6751 if (++eap->line1 > eap->line2)
6752 break;
6753 out_flush(); /* show one line at a time */
6755 setpcmark();
6756 /* put cursor at last line */
6757 curwin->w_cursor.lnum = eap->line2;
6758 beginline(BL_SOL | BL_FIX);
6761 ex_no_reprint = TRUE;
6764 #ifdef FEAT_BYTEOFF
6765 static void
6766 ex_goto(eap)
6767 exarg_T *eap;
6769 goto_byte(eap->line2);
6771 #endif
6774 * ":shell".
6776 static void
6777 ex_shell(eap)
6778 exarg_T *eap UNUSED;
6780 do_shell(NULL, 0);
6783 #if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6784 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
6785 || defined(FEAT_GUI_MSWIN) \
6786 || defined(FEAT_GUI_MAC) \
6787 || defined(PROTO) \
6788 || defined(FEAT_GUI_MACVIM)
6791 * Handle a file drop. The code is here because a drop is *nearly* like an
6792 * :args command, but not quite (we have a list of exact filenames, so we
6793 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6794 * code is very similar to :args and hence needs access to a lot of the static
6795 * functions in this file.
6797 * The list should be allocated using alloc(), as should each item in the
6798 * list. This function takes over responsibility for freeing the list.
6800 * XXX The list is made into the argument list. This is freed using
6801 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6802 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6803 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6804 * file functionality is (currently) not in EMX this is not presently a
6805 * problem.
6807 void
6808 handle_drop(filec, filev, split)
6809 int filec; /* the number of files dropped */
6810 char_u **filev; /* the list of files dropped */
6811 int split; /* force splitting the window */
6813 exarg_T ea;
6814 int save_msg_scroll = msg_scroll;
6816 /* Postpone this while editing the command line. */
6817 if (text_locked())
6818 return;
6819 #ifdef FEAT_AUTOCMD
6820 if (curbuf_locked())
6821 return;
6822 #endif
6823 /* When the screen is being updated we should not change buffers and
6824 * windows structures, it may cause freed memory to be used. */
6825 if (updating_screen)
6826 return;
6828 /* Check whether the current buffer is changed. If so, we will need
6829 * to split the current window or data could be lost.
6830 * We don't need to check if the 'hidden' option is set, as in this
6831 * case the buffer won't be lost.
6833 if (!P_HID(curbuf) && !split)
6835 ++emsg_off;
6836 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6837 --emsg_off;
6839 if (split)
6841 # ifdef FEAT_WINDOWS
6842 if (win_split(0, 0) == FAIL)
6843 return;
6844 # ifdef FEAT_SCROLLBIND
6845 curwin->w_p_scb = FALSE;
6846 # endif
6848 /* When splitting the window, create a new alist. Otherwise the
6849 * existing one is overwritten. */
6850 alist_unlink(curwin->w_alist);
6851 alist_new();
6852 # else
6853 return; /* can't split, always fail */
6854 # endif
6858 * Set up the new argument list.
6860 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
6863 * Move to the first file.
6865 /* Fake up a minimal "next" command for do_argfile() */
6866 vim_memset(&ea, 0, sizeof(ea));
6867 ea.cmd = (char_u *)"next";
6868 do_argfile(&ea, 0);
6870 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6871 * mode that is not needed here. */
6872 need_start_insertmode = FALSE;
6874 /* Restore msg_scroll, otherwise a following command may cause scrolling
6875 * unexpectedly. The screen will be redrawn by the caller, thus
6876 * msg_scroll being set by displaying a message is irrelevant. */
6877 msg_scroll = save_msg_scroll;
6879 #endif
6882 * Clear an argument list: free all file names and reset it to zero entries.
6884 void
6885 alist_clear(al)
6886 alist_T *al;
6888 while (--al->al_ga.ga_len >= 0)
6889 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6890 ga_clear(&al->al_ga);
6894 * Init an argument list.
6896 void
6897 alist_init(al)
6898 alist_T *al;
6900 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6903 #if defined(FEAT_WINDOWS) || defined(PROTO)
6906 * Remove a reference from an argument list.
6907 * Ignored when the argument list is the global one.
6908 * If the argument list is no longer used by any window, free it.
6910 void
6911 alist_unlink(al)
6912 alist_T *al;
6914 if (al != &global_alist && --al->al_refcount <= 0)
6916 alist_clear(al);
6917 vim_free(al);
6921 # if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6923 * Create a new argument list and use it for the current window.
6925 void
6926 alist_new()
6928 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6929 if (curwin->w_alist == NULL)
6931 curwin->w_alist = &global_alist;
6932 ++global_alist.al_refcount;
6934 else
6936 curwin->w_alist->al_refcount = 1;
6937 alist_init(curwin->w_alist);
6940 # endif
6941 #endif
6943 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6945 * Expand the file names in the global argument list.
6946 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6947 * numbers to be re-used.
6949 void
6950 alist_expand(fnum_list, fnum_len)
6951 int *fnum_list;
6952 int fnum_len;
6954 char_u **old_arg_files;
6955 int old_arg_count;
6956 char_u **new_arg_files;
6957 int new_arg_file_count;
6958 char_u *save_p_su = p_su;
6959 int i;
6961 /* Don't use 'suffixes' here. This should work like the shell did the
6962 * expansion. Also, the vimrc file isn't read yet, thus the user
6963 * can't set the options. */
6964 p_su = empty_option;
6965 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6966 if (old_arg_files != NULL)
6968 for (i = 0; i < GARGCOUNT; ++i)
6969 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6970 old_arg_count = GARGCOUNT;
6971 if (expand_wildcards(old_arg_count, old_arg_files,
6972 &new_arg_file_count, &new_arg_files,
6973 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6974 && new_arg_file_count > 0)
6976 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6977 TRUE, fnum_list, fnum_len);
6978 FreeWild(old_arg_count, old_arg_files);
6981 p_su = save_p_su;
6983 #endif
6986 * Set the argument list for the current window.
6987 * Takes over the allocated files[] and the allocated fnames in it.
6989 void
6990 alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
6991 alist_T *al;
6992 int count;
6993 char_u **files;
6994 int use_curbuf;
6995 int *fnum_list;
6996 int fnum_len;
6998 int i;
7000 alist_clear(al);
7001 if (ga_grow(&al->al_ga, count) == OK)
7003 for (i = 0; i < count; ++i)
7005 if (got_int)
7007 /* When adding many buffers this can take a long time. Allow
7008 * interrupting here. */
7009 while (i < count)
7010 vim_free(files[i++]);
7011 break;
7014 /* May set buffer name of a buffer previously used for the
7015 * argument list, so that it's re-used by alist_add. */
7016 if (fnum_list != NULL && i < fnum_len)
7017 buf_set_name(fnum_list[i], files[i]);
7019 alist_add(al, files[i], use_curbuf ? 2 : 1);
7020 ui_breakcheck();
7022 vim_free(files);
7024 else
7025 FreeWild(count, files);
7026 #ifdef FEAT_WINDOWS
7027 if (al == &global_alist)
7028 #endif
7029 arg_had_last = FALSE;
7033 * Add file "fname" to argument list "al".
7034 * "fname" must have been allocated and "al" must have been checked for room.
7036 void
7037 alist_add(al, fname, set_fnum)
7038 alist_T *al;
7039 char_u *fname;
7040 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
7042 if (fname == NULL) /* don't add NULL file names */
7043 return;
7044 #ifdef BACKSLASH_IN_FILENAME
7045 slash_adjust(fname);
7046 #endif
7047 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
7048 if (set_fnum > 0)
7049 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
7050 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
7051 ++al->al_ga.ga_len;
7054 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7056 * Adjust slashes in file names. Called after 'shellslash' was set.
7058 void
7059 alist_slash_adjust()
7061 int i;
7062 # ifdef FEAT_WINDOWS
7063 win_T *wp;
7064 tabpage_T *tp;
7065 # endif
7067 for (i = 0; i < GARGCOUNT; ++i)
7068 if (GARGLIST[i].ae_fname != NULL)
7069 slash_adjust(GARGLIST[i].ae_fname);
7070 # ifdef FEAT_WINDOWS
7071 FOR_ALL_TAB_WINDOWS(tp, wp)
7072 if (wp->w_alist != &global_alist)
7073 for (i = 0; i < WARGCOUNT(wp); ++i)
7074 if (WARGLIST(wp)[i].ae_fname != NULL)
7075 slash_adjust(WARGLIST(wp)[i].ae_fname);
7076 # endif
7078 #endif
7081 * ":preserve".
7083 static void
7084 ex_preserve(eap)
7085 exarg_T *eap UNUSED;
7087 curbuf->b_flags |= BF_PRESERVED;
7088 ml_preserve(curbuf, TRUE);
7092 * ":recover".
7094 static void
7095 ex_recover(eap)
7096 exarg_T *eap;
7098 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7099 recoverymode = TRUE;
7100 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
7101 && (*eap->arg == NUL
7102 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7103 ml_recover();
7104 recoverymode = FALSE;
7108 * Command modifier used in a wrong way.
7110 static void
7111 ex_wrongmodifier(eap)
7112 exarg_T *eap;
7114 eap->errmsg = e_invcmd;
7117 #ifdef FEAT_WINDOWS
7119 * :sview [+command] file split window with new file, read-only
7120 * :split [[+command] file] split window with current or new file
7121 * :vsplit [[+command] file] split window vertically with current or new file
7122 * :new [[+command] file] split window with no or new file
7123 * :vnew [[+command] file] split vertically window with no or new file
7124 * :sfind [+command] file split window with file in 'path'
7126 * :tabedit open new Tab page with empty window
7127 * :tabedit [+command] file open new Tab page and edit "file"
7128 * :tabnew [[+command] file] just like :tabedit
7129 * :tabfind [+command] file open new Tab page and find "file"
7131 void
7132 ex_splitview(eap)
7133 exarg_T *eap;
7135 win_T *old_curwin = curwin;
7136 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7137 char_u *fname = NULL;
7138 # endif
7139 # ifdef FEAT_BROWSE
7140 int browse_flag = cmdmod.browse;
7141 # endif
7143 # ifndef FEAT_VERTSPLIT
7144 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7146 ex_ni(eap);
7147 return;
7149 # endif
7151 # ifdef FEAT_GUI
7152 need_mouse_correct = TRUE;
7153 # endif
7155 # ifdef FEAT_QUICKFIX
7156 /* A ":split" in the quickfix window works like ":new". Don't want two
7157 * quickfix windows. But it's OK when doing ":tab split". */
7158 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
7160 if (eap->cmdidx == CMD_split)
7161 eap->cmdidx = CMD_new;
7162 # ifdef FEAT_VERTSPLIT
7163 if (eap->cmdidx == CMD_vsplit)
7164 eap->cmdidx = CMD_vnew;
7165 # endif
7167 # endif
7169 # ifdef FEAT_SEARCHPATH
7170 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
7172 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7173 FNAME_MESS, TRUE, curbuf->b_ffname);
7174 if (fname == NULL)
7175 goto theend;
7176 eap->arg = fname;
7178 # ifdef FEAT_BROWSE
7179 else
7180 # endif
7181 # endif
7182 # ifdef FEAT_BROWSE
7183 if (cmdmod.browse
7184 # ifdef FEAT_VERTSPLIT
7185 && eap->cmdidx != CMD_vnew
7186 # endif
7187 && eap->cmdidx != CMD_new)
7189 # ifdef FEAT_AUTOCMD
7190 if (
7191 # ifdef FEAT_GUI
7192 !gui.in_use &&
7193 # endif
7194 au_has_group((char_u *)"FileExplorer"))
7196 /* No browsing supported but we do have the file explorer:
7197 * Edit the directory. */
7198 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7199 eap->arg = (char_u *)".";
7201 else
7202 # endif
7204 fname = do_browse(0, (char_u *)_("Edit File in new window"),
7205 eap->arg, NULL, NULL, NULL, curbuf);
7206 if (fname == NULL)
7207 goto theend;
7208 eap->arg = fname;
7211 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
7212 # endif
7215 * Either open new tab page or split the window.
7217 if (eap->cmdidx == CMD_tabedit
7218 || eap->cmdidx == CMD_tabfind
7219 || eap->cmdidx == CMD_tabnew)
7221 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7222 : eap->addr_count == 0 ? 0
7223 : (int)eap->line2 + 1) != FAIL)
7225 do_exedit(eap, old_curwin);
7227 /* set the alternate buffer for the window we came from */
7228 if (curwin != old_curwin
7229 && win_valid(old_curwin)
7230 && old_curwin->w_buffer != curbuf
7231 && !cmdmod.keepalt)
7232 old_curwin->w_alt_fnum = curbuf->b_fnum;
7235 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
7236 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7238 # ifdef FEAT_SCROLLBIND
7239 /* Reset 'scrollbind' when editing another file, but keep it when
7240 * doing ":split" without arguments. */
7241 if (*eap->arg != NUL
7242 # ifdef FEAT_BROWSE
7243 || cmdmod.browse
7244 # endif
7246 curwin->w_p_scb = FALSE;
7247 else
7248 do_check_scrollbind(FALSE);
7249 # endif
7250 do_exedit(eap, old_curwin);
7253 # ifdef FEAT_BROWSE
7254 cmdmod.browse = browse_flag;
7255 # endif
7257 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7258 theend:
7259 vim_free(fname);
7260 # endif
7264 * Open a new tab page.
7266 void
7267 tabpage_new()
7269 exarg_T ea;
7271 vim_memset(&ea, 0, sizeof(ea));
7272 ea.cmdidx = CMD_tabnew;
7273 ea.cmd = (char_u *)"tabn";
7274 ea.arg = (char_u *)"";
7275 ex_splitview(&ea);
7279 * :tabnext command
7281 static void
7282 ex_tabnext(eap)
7283 exarg_T *eap;
7285 switch (eap->cmdidx)
7287 case CMD_tabfirst:
7288 case CMD_tabrewind:
7289 goto_tabpage(1);
7290 break;
7291 case CMD_tablast:
7292 goto_tabpage(9999);
7293 break;
7294 case CMD_tabprevious:
7295 case CMD_tabNext:
7296 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7297 break;
7298 default: /* CMD_tabnext */
7299 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7300 break;
7305 * :tabmove command
7307 static void
7308 ex_tabmove(eap)
7309 exarg_T *eap;
7311 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
7315 * :tabs command: List tabs and their contents.
7317 static void
7318 ex_tabs(eap)
7319 exarg_T *eap UNUSED;
7321 tabpage_T *tp;
7322 win_T *wp;
7323 int tabcount = 1;
7325 msg_start();
7326 msg_scroll = TRUE;
7327 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7329 msg_putchar('\n');
7330 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7331 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7332 out_flush(); /* output one line at a time */
7333 ui_breakcheck();
7335 if (tp == curtab)
7336 wp = firstwin;
7337 else
7338 wp = tp->tp_firstwin;
7339 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7341 msg_putchar('\n');
7342 msg_putchar(wp == curwin ? '>' : ' ');
7343 msg_putchar(' ');
7344 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7345 msg_putchar(' ');
7346 if (buf_spname(wp->w_buffer) != NULL)
7347 STRCPY(IObuff, buf_spname(wp->w_buffer));
7348 else
7349 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7350 IObuff, IOSIZE, TRUE);
7351 msg_outtrans(IObuff);
7352 out_flush(); /* output one line at a time */
7353 ui_breakcheck();
7358 #endif /* FEAT_WINDOWS */
7361 * ":mode": Set screen mode.
7362 * If no argument given, just get the screen size and redraw.
7364 static void
7365 ex_mode(eap)
7366 exarg_T *eap;
7368 if (*eap->arg == NUL)
7369 shell_resized();
7370 else
7371 mch_screenmode(eap->arg);
7374 #ifdef FEAT_WINDOWS
7376 * ":resize".
7377 * set, increment or decrement current window height
7379 static void
7380 ex_resize(eap)
7381 exarg_T *eap;
7383 int n;
7384 win_T *wp = curwin;
7386 if (eap->addr_count > 0)
7388 n = eap->line2;
7389 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7393 #ifdef FEAT_GUI
7394 need_mouse_correct = TRUE;
7395 #endif
7396 n = atol((char *)eap->arg);
7397 #ifdef FEAT_VERTSPLIT
7398 if (cmdmod.split & WSP_VERT)
7400 if (*eap->arg == '-' || *eap->arg == '+')
7401 n += W_WIDTH(curwin);
7402 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7403 n = 9999;
7404 win_setwidth_win((int)n, wp);
7406 else
7407 #endif
7409 if (*eap->arg == '-' || *eap->arg == '+')
7410 n += curwin->w_height;
7411 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7412 n = 9999;
7413 win_setheight_win((int)n, wp);
7416 #endif
7419 * ":find [+command] <file>" command.
7421 static void
7422 ex_find(eap)
7423 exarg_T *eap;
7425 #ifdef FEAT_SEARCHPATH
7426 char_u *fname;
7427 int count;
7429 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7430 TRUE, curbuf->b_ffname);
7431 if (eap->addr_count > 0)
7433 /* Repeat finding the file "count" times. This matters when it
7434 * appears several times in the path. */
7435 count = eap->line2;
7436 while (fname != NULL && --count > 0)
7438 vim_free(fname);
7439 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7440 FALSE, curbuf->b_ffname);
7444 if (fname != NULL)
7446 eap->arg = fname;
7447 #endif
7448 do_exedit(eap, NULL);
7449 #ifdef FEAT_SEARCHPATH
7450 vim_free(fname);
7452 #endif
7456 * ":open" simulation: for now just work like ":visual".
7458 static void
7459 ex_open(eap)
7460 exarg_T *eap;
7462 regmatch_T regmatch;
7463 char_u *p;
7465 curwin->w_cursor.lnum = eap->line2;
7466 beginline(BL_SOL | BL_FIX);
7467 if (*eap->arg == '/')
7469 /* ":open /pattern/": put cursor in column found with pattern */
7470 ++eap->arg;
7471 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7472 *p = NUL;
7473 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7474 if (regmatch.regprog != NULL)
7476 regmatch.rm_ic = p_ic;
7477 p = ml_get_curline();
7478 if (vim_regexec(&regmatch, p, (colnr_T)0))
7479 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
7480 else
7481 EMSG(_(e_nomatch));
7482 vim_free(regmatch.regprog);
7484 /* Move to the NUL, ignore any other arguments. */
7485 eap->arg += STRLEN(eap->arg);
7487 check_cursor();
7489 eap->cmdidx = CMD_visual;
7490 do_exedit(eap, NULL);
7494 * ":edit", ":badd", ":visual".
7496 static void
7497 ex_edit(eap)
7498 exarg_T *eap;
7500 do_exedit(eap, NULL);
7504 * ":edit <file>" command and alikes.
7506 void
7507 do_exedit(eap, old_curwin)
7508 exarg_T *eap;
7509 win_T *old_curwin; /* curwin before doing a split or NULL */
7511 int n;
7512 #ifdef FEAT_WINDOWS
7513 int need_hide;
7514 #endif
7515 int exmode_was = exmode_active;
7518 * ":vi" command ends Ex mode.
7520 if (exmode_active && (eap->cmdidx == CMD_visual
7521 || eap->cmdidx == CMD_view))
7523 exmode_active = FALSE;
7524 if (*eap->arg == NUL)
7526 /* Special case: ":global/pat/visual\NLvi-commands" */
7527 if (global_busy)
7529 int rd = RedrawingDisabled;
7530 int nwr = no_wait_return;
7531 int ms = msg_scroll;
7532 #ifdef FEAT_GUI
7533 int he = hold_gui_events;
7534 #endif
7536 if (eap->nextcmd != NULL)
7538 stuffReadbuff(eap->nextcmd);
7539 eap->nextcmd = NULL;
7542 if (exmode_was != EXMODE_VIM)
7543 settmode(TMODE_RAW);
7544 RedrawingDisabled = 0;
7545 no_wait_return = 0;
7546 need_wait_return = FALSE;
7547 msg_scroll = 0;
7548 #ifdef FEAT_GUI
7549 hold_gui_events = 0;
7550 #endif
7551 must_redraw = CLEAR;
7553 main_loop(FALSE, TRUE);
7555 RedrawingDisabled = rd;
7556 no_wait_return = nwr;
7557 msg_scroll = ms;
7558 #ifdef FEAT_GUI
7559 hold_gui_events = he;
7560 #endif
7562 return;
7566 if ((eap->cmdidx == CMD_new
7567 || eap->cmdidx == CMD_tabnew
7568 || eap->cmdidx == CMD_tabedit
7569 #ifdef FEAT_VERTSPLIT
7570 || eap->cmdidx == CMD_vnew
7571 #endif
7572 ) && *eap->arg == NUL)
7574 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
7575 setpcmark();
7576 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7577 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
7578 old_curwin == NULL ? curwin : NULL);
7580 else if ((eap->cmdidx != CMD_split
7581 #ifdef FEAT_VERTSPLIT
7582 && eap->cmdidx != CMD_vsplit
7583 #endif
7585 || *eap->arg != NUL
7586 #ifdef FEAT_BROWSE
7587 || cmdmod.browse
7588 #endif
7591 #ifdef FEAT_AUTOCMD
7592 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7593 * can bring us here, others are stopped earlier. */
7594 if (*eap->arg != NUL && curbuf_locked())
7595 return;
7596 #endif
7597 n = readonlymode;
7598 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7599 readonlymode = TRUE;
7600 else if (eap->cmdidx == CMD_enew)
7601 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7602 empty buffer */
7603 setpcmark();
7604 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7605 NULL, eap,
7606 /* ":edit" goes to first line if Vi compatible */
7607 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7608 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7609 ? ECMD_ONE : eap->do_ecmd_lnum,
7610 (P_HID(curbuf) ? ECMD_HIDE : 0)
7611 + (eap->forceit ? ECMD_FORCEIT : 0)
7612 #ifdef FEAT_LISTCMDS
7613 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7614 #endif
7615 , old_curwin == NULL ? curwin : NULL) == FAIL)
7617 /* Editing the file failed. If the window was split, close it. */
7618 #ifdef FEAT_WINDOWS
7619 if (old_curwin != NULL)
7621 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7622 if (!need_hide || P_HID(curbuf))
7624 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7625 cleanup_T cs;
7627 /* Reset the error/interrupt/exception state here so that
7628 * aborting() returns FALSE when closing a window. */
7629 enter_cleanup(&cs);
7630 # endif
7631 # ifdef FEAT_GUI
7632 need_mouse_correct = TRUE;
7633 # endif
7634 win_close(curwin, !need_hide && !P_HID(curbuf));
7636 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7637 /* Restore the error/interrupt/exception state if not
7638 * discarded by a new aborting error, interrupt, or
7639 * uncaught exception. */
7640 leave_cleanup(&cs);
7641 # endif
7644 #endif
7646 else if (readonlymode && curbuf->b_nwindows == 1)
7648 /* When editing an already visited buffer, 'readonly' won't be set
7649 * but the previous value is kept. With ":view" and ":sview" we
7650 * want the file to be readonly, except when another window is
7651 * editing the same buffer. */
7652 curbuf->b_p_ro = TRUE;
7654 readonlymode = n;
7656 else
7658 if (eap->do_ecmd_cmd != NULL)
7659 do_cmdline_cmd(eap->do_ecmd_cmd);
7660 #ifdef FEAT_TITLE
7661 n = curwin->w_arg_idx_invalid;
7662 #endif
7663 check_arg_idx(curwin);
7664 #ifdef FEAT_TITLE
7665 if (n != curwin->w_arg_idx_invalid)
7666 maketitle();
7667 #endif
7670 #ifdef FEAT_WINDOWS
7672 * if ":split file" worked, set alternate file name in old window to new
7673 * file
7675 if (old_curwin != NULL
7676 && *eap->arg != NUL
7677 && curwin != old_curwin
7678 && win_valid(old_curwin)
7679 && old_curwin->w_buffer != curbuf
7680 && !cmdmod.keepalt)
7681 old_curwin->w_alt_fnum = curbuf->b_fnum;
7682 #endif
7684 ex_no_reprint = TRUE;
7687 #ifndef FEAT_GUI
7689 * ":gui" and ":gvim" when there is no GUI.
7691 static void
7692 ex_nogui(eap)
7693 exarg_T *eap;
7695 eap->errmsg = e_nogvim;
7697 #endif
7699 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7700 static void
7701 ex_tearoff(eap)
7702 exarg_T *eap;
7704 gui_make_tearoff(eap->arg);
7706 #endif
7708 #if defined(FEAT_MENU) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
7709 || defined(FEAT_GUI_MACVIM))
7710 static void
7711 ex_popup(eap)
7712 exarg_T *eap;
7714 gui_make_popup(eap->arg, eap->forceit);
7716 #endif
7718 static void
7719 ex_swapname(eap)
7720 exarg_T *eap UNUSED;
7722 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7723 MSG(_("No swap file"));
7724 else
7725 msg(curbuf->b_ml.ml_mfp->mf_fname);
7729 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7730 * offset.
7731 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7733 static void
7734 ex_syncbind(eap)
7735 exarg_T *eap UNUSED;
7737 #ifdef FEAT_SCROLLBIND
7738 win_T *wp;
7739 long topline;
7740 long y;
7741 linenr_T old_linenr = curwin->w_cursor.lnum;
7743 setpcmark();
7746 * determine max topline
7748 if (curwin->w_p_scb)
7750 topline = curwin->w_topline;
7751 for (wp = firstwin; wp; wp = wp->w_next)
7753 if (wp->w_p_scb && wp->w_buffer)
7755 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7756 if (topline > y)
7757 topline = y;
7760 if (topline < 1)
7761 topline = 1;
7763 else
7765 topline = 1;
7770 * set all scrollbind windows to the same topline
7772 wp = curwin;
7773 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7775 if (curwin->w_p_scb)
7777 y = topline - curwin->w_topline;
7778 if (y > 0)
7779 scrollup(y, TRUE);
7780 else
7781 scrolldown(-y, TRUE);
7782 curwin->w_scbind_pos = topline;
7783 redraw_later(VALID);
7784 cursor_correct();
7785 #ifdef FEAT_WINDOWS
7786 curwin->w_redr_status = TRUE;
7787 #endif
7790 curwin = wp;
7791 if (curwin->w_p_scb)
7793 did_syncbind = TRUE;
7794 checkpcmark();
7795 if (old_linenr != curwin->w_cursor.lnum)
7797 char_u ctrl_o[2];
7799 ctrl_o[0] = Ctrl_O;
7800 ctrl_o[1] = 0;
7801 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7804 #endif
7808 static void
7809 ex_read(eap)
7810 exarg_T *eap;
7812 int i;
7813 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7814 linenr_T lnum;
7816 if (eap->usefilter) /* :r!cmd */
7817 do_bang(1, eap, FALSE, FALSE, TRUE);
7818 else
7820 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7821 return;
7823 #ifdef FEAT_BROWSE
7824 if (cmdmod.browse)
7826 char_u *browseFile;
7828 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
7829 NULL, NULL, NULL, curbuf);
7830 if (browseFile != NULL)
7832 i = readfile(browseFile, NULL,
7833 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7834 vim_free(browseFile);
7836 else
7837 i = OK;
7839 else
7840 #endif
7841 if (*eap->arg == NUL)
7843 if (check_fname() == FAIL) /* check for no file name */
7844 return;
7845 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7846 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7848 else
7850 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7851 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7852 i = readfile(eap->arg, NULL,
7853 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7856 if (i == FAIL)
7858 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7859 if (!aborting())
7860 #endif
7861 EMSG2(_(e_notopen), eap->arg);
7863 else
7865 if (empty && exmode_active)
7867 /* Delete the empty line that remains. Historically ex does
7868 * this but vi doesn't. */
7869 if (eap->line2 == 0)
7870 lnum = curbuf->b_ml.ml_line_count;
7871 else
7872 lnum = 1;
7873 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
7875 ml_delete(lnum, FALSE);
7876 if (curwin->w_cursor.lnum > 1
7877 && curwin->w_cursor.lnum >= lnum)
7878 --curwin->w_cursor.lnum;
7879 deleted_lines_mark(lnum, 1L);
7882 redraw_curbuf_later(VALID);
7887 static char_u *prev_dir = NULL;
7889 #if defined(EXITFREE) || defined(PROTO)
7890 void
7891 free_cd_dir()
7893 vim_free(prev_dir);
7894 prev_dir = NULL;
7896 vim_free(globaldir);
7897 globaldir = NULL;
7899 #endif
7903 * ":cd", ":lcd", ":chdir" and ":lchdir".
7905 void
7906 ex_cd(eap)
7907 exarg_T *eap;
7909 char_u *new_dir;
7910 char_u *tofree;
7912 new_dir = eap->arg;
7913 #if !defined(UNIX) && !defined(VMS)
7914 /* for non-UNIX ":cd" means: print current directory */
7915 if (*new_dir == NUL)
7916 ex_pwd(NULL);
7917 else
7918 #endif
7920 #ifdef FEAT_AUTOCMD
7921 if (allbuf_locked())
7922 return;
7923 #endif
7924 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7925 && !eap->forceit)
7927 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
7928 return;
7931 /* ":cd -": Change to previous directory */
7932 if (STRCMP(new_dir, "-") == 0)
7934 if (prev_dir == NULL)
7936 EMSG(_("E186: No previous directory"));
7937 return;
7939 new_dir = prev_dir;
7942 /* Save current directory for next ":cd -" */
7943 tofree = prev_dir;
7944 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7945 prev_dir = vim_strsave(NameBuff);
7946 else
7947 prev_dir = NULL;
7949 #if defined(UNIX) || defined(VMS)
7950 /* for UNIX ":cd" means: go to home directory */
7951 if (*new_dir == NUL)
7953 /* use NameBuff for home directory name */
7954 # ifdef VMS
7955 char_u *p;
7957 p = mch_getenv((char_u *)"SYS$LOGIN");
7958 if (p == NULL || *p == NUL) /* empty is the same as not set */
7959 NameBuff[0] = NUL;
7960 else
7961 vim_strncpy(NameBuff, p, MAXPATHL - 1);
7962 # else
7963 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7964 # endif
7965 new_dir = NameBuff;
7967 #endif
7968 if (new_dir == NULL || vim_chdir(new_dir))
7969 EMSG(_(e_failed));
7970 else
7972 vim_free(curwin->w_localdir);
7973 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7975 /* If still in global directory, need to remember current
7976 * directory as global directory. */
7977 if (globaldir == NULL && prev_dir != NULL)
7978 globaldir = vim_strsave(prev_dir);
7979 /* Remember this local directory for the window. */
7980 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7981 curwin->w_localdir = vim_strsave(NameBuff);
7983 else
7985 /* We are now in the global directory, no need to remember its
7986 * name. */
7987 vim_free(globaldir);
7988 globaldir = NULL;
7989 curwin->w_localdir = NULL;
7992 shorten_fnames(TRUE);
7994 /* Echo the new current directory if the command was typed. */
7995 if (KeyTyped || p_verbose >= 5)
7996 ex_pwd(eap);
7998 vim_free(tofree);
8003 * ":pwd".
8005 static void
8006 ex_pwd(eap)
8007 exarg_T *eap UNUSED;
8009 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8011 #ifdef BACKSLASH_IN_FILENAME
8012 slash_adjust(NameBuff);
8013 #endif
8014 msg(NameBuff);
8016 else
8017 EMSG(_("E187: Unknown"));
8021 * ":=".
8023 static void
8024 ex_equal(eap)
8025 exarg_T *eap;
8027 smsg((char_u *)"%ld", (long)eap->line2);
8028 ex_may_print(eap);
8031 static void
8032 ex_sleep(eap)
8033 exarg_T *eap;
8035 int n;
8036 long len;
8038 if (cursor_valid())
8040 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
8041 if (n >= 0)
8042 windgoto((int)n, curwin->w_wcol);
8045 len = eap->line2;
8046 switch (*eap->arg)
8048 case 'm': break;
8049 case NUL: len *= 1000L; break;
8050 default: EMSG2(_(e_invarg2), eap->arg); return;
8052 do_sleep(len);
8056 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
8058 void
8059 do_sleep(msec)
8060 long msec;
8062 long done;
8064 cursor_on();
8065 out_flush();
8066 for (done = 0; !got_int && done < msec; done += 1000L)
8068 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
8069 ui_breakcheck();
8073 static void
8074 do_exmap(eap, isabbrev)
8075 exarg_T *eap;
8076 int isabbrev;
8078 int mode;
8079 char_u *cmdp;
8081 cmdp = eap->cmd;
8082 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
8084 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
8085 eap->arg, mode, isabbrev))
8087 case 1: EMSG(_(e_invarg));
8088 break;
8089 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
8090 break;
8095 * ":winsize" command (obsolete).
8097 static void
8098 ex_winsize(eap)
8099 exarg_T *eap;
8101 int w, h;
8102 char_u *arg = eap->arg;
8103 char_u *p;
8105 w = getdigits(&arg);
8106 arg = skipwhite(arg);
8107 p = arg;
8108 h = getdigits(&arg);
8109 if (*p != NUL && *arg == NUL)
8110 set_shellsize(w, h, TRUE);
8111 else
8112 EMSG(_("E465: :winsize requires two number arguments"));
8115 #ifdef FEAT_WINDOWS
8116 static void
8117 ex_wincmd(eap)
8118 exarg_T *eap;
8120 int xchar = NUL;
8121 char_u *p;
8123 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8125 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8126 if (eap->arg[1] == NUL)
8128 EMSG(_(e_invarg));
8129 return;
8131 xchar = eap->arg[1];
8132 p = eap->arg + 2;
8134 else
8135 p = eap->arg + 1;
8137 eap->nextcmd = check_nextcmd(p);
8138 p = skipwhite(p);
8139 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8140 EMSG(_(e_invarg));
8141 else
8143 /* Pass flags on for ":vertical wincmd ]". */
8144 postponed_split_flags = cmdmod.split;
8145 postponed_split_tab = cmdmod.tab;
8146 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8147 postponed_split_flags = 0;
8148 postponed_split_tab = 0;
8151 #endif
8153 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
8155 * ":winpos".
8157 static void
8158 ex_winpos(eap)
8159 exarg_T *eap;
8161 int x, y;
8162 char_u *arg = eap->arg;
8163 char_u *p;
8165 if (*arg == NUL)
8167 # if defined(FEAT_GUI) || defined(MSWIN)
8168 # ifdef FEAT_GUI
8169 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
8170 # else
8171 if (mch_get_winpos(&x, &y) != FAIL)
8172 # endif
8174 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8175 msg(IObuff);
8177 else
8178 # endif
8179 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8181 else
8183 x = getdigits(&arg);
8184 arg = skipwhite(arg);
8185 p = arg;
8186 y = getdigits(&arg);
8187 if (*p == NUL || *arg != NUL)
8189 EMSG(_("E466: :winpos requires two number arguments"));
8190 return;
8192 # ifdef FEAT_GUI
8193 if (gui.in_use)
8194 gui_mch_set_winpos(x, y);
8195 else if (gui.starting)
8197 /* Remember the coordinates for when the window is opened. */
8198 gui_win_x = x;
8199 gui_win_y = y;
8201 # ifdef HAVE_TGETENT
8202 else
8203 # endif
8204 # else
8205 # ifdef MSWIN
8206 mch_set_winpos(x, y);
8207 # endif
8208 # endif
8209 # ifdef HAVE_TGETENT
8210 if (*T_CWP)
8211 term_set_winpos(x, y);
8212 # endif
8215 #endif
8218 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8220 static void
8221 ex_operators(eap)
8222 exarg_T *eap;
8224 oparg_T oa;
8226 clear_oparg(&oa);
8227 oa.regname = eap->regname;
8228 oa.start.lnum = eap->line1;
8229 oa.end.lnum = eap->line2;
8230 oa.line_count = eap->line2 - eap->line1 + 1;
8231 oa.motion_type = MLINE;
8232 #ifdef FEAT_VIRTUALEDIT
8233 virtual_op = FALSE;
8234 #endif
8235 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8237 setpcmark();
8238 curwin->w_cursor.lnum = eap->line1;
8239 beginline(BL_SOL | BL_FIX);
8242 switch (eap->cmdidx)
8244 case CMD_delete:
8245 oa.op_type = OP_DELETE;
8246 op_delete(&oa);
8247 break;
8249 case CMD_yank:
8250 oa.op_type = OP_YANK;
8251 (void)op_yank(&oa, FALSE, TRUE);
8252 break;
8254 default: /* CMD_rshift or CMD_lshift */
8255 if ((eap->cmdidx == CMD_rshift)
8256 #ifdef FEAT_RIGHTLEFT
8257 ^ curwin->w_p_rl
8258 #endif
8260 oa.op_type = OP_RSHIFT;
8261 else
8262 oa.op_type = OP_LSHIFT;
8263 op_shift(&oa, FALSE, eap->amount);
8264 break;
8266 #ifdef FEAT_VIRTUALEDIT
8267 virtual_op = MAYBE;
8268 #endif
8269 ex_may_print(eap);
8273 * ":put".
8275 static void
8276 ex_put(eap)
8277 exarg_T *eap;
8279 /* ":0put" works like ":1put!". */
8280 if (eap->line2 == 0)
8282 eap->line2 = 1;
8283 eap->forceit = TRUE;
8285 curwin->w_cursor.lnum = eap->line2;
8286 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8287 PUT_LINE|PUT_CURSLINE);
8291 * Handle ":copy" and ":move".
8293 static void
8294 ex_copymove(eap)
8295 exarg_T *eap;
8297 long n;
8299 n = get_address(&eap->arg, FALSE, FALSE);
8300 if (eap->arg == NULL) /* error detected */
8302 eap->nextcmd = NULL;
8303 return;
8305 get_flags(eap);
8308 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8310 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8312 EMSG(_(e_invaddr));
8313 return;
8316 if (eap->cmdidx == CMD_move)
8318 if (do_move(eap->line1, eap->line2, n) == FAIL)
8319 return;
8321 else
8322 ex_copy(eap->line1, eap->line2, n);
8323 u_clearline();
8324 beginline(BL_SOL | BL_FIX);
8325 ex_may_print(eap);
8329 * Print the current line if flags were given to the Ex command.
8331 static void
8332 ex_may_print(eap)
8333 exarg_T *eap;
8335 if (eap->flags != 0)
8337 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8338 (eap->flags & EXFLAG_LIST));
8339 ex_no_reprint = TRUE;
8344 * ":smagic" and ":snomagic".
8346 static void
8347 ex_submagic(eap)
8348 exarg_T *eap;
8350 int magic_save = p_magic;
8352 p_magic = (eap->cmdidx == CMD_smagic);
8353 do_sub(eap);
8354 p_magic = magic_save;
8358 * ":join".
8360 static void
8361 ex_join(eap)
8362 exarg_T *eap;
8364 curwin->w_cursor.lnum = eap->line1;
8365 if (eap->line1 == eap->line2)
8367 if (eap->addr_count >= 2) /* :2,2join does nothing */
8368 return;
8369 if (eap->line2 == curbuf->b_ml.ml_line_count)
8371 beep_flush();
8372 return;
8374 ++eap->line2;
8376 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8377 beginline(BL_WHITE | BL_FIX);
8378 ex_may_print(eap);
8382 * ":[addr]@r" or ":[addr]*r": execute register
8384 static void
8385 ex_at(eap)
8386 exarg_T *eap;
8388 int c;
8389 int prev_len = typebuf.tb_len;
8391 curwin->w_cursor.lnum = eap->line2;
8393 #ifdef USE_ON_FLY_SCROLL
8394 dont_scroll = TRUE; /* disallow scrolling here */
8395 #endif
8397 /* get the register name. No name means to use the previous one */
8398 c = *eap->arg;
8399 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8400 c = '@';
8401 /* Put the register in the typeahead buffer with the "silent" flag. */
8402 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8403 == FAIL)
8405 beep_flush();
8407 else
8409 int save_efr = exec_from_reg;
8411 exec_from_reg = TRUE;
8414 * Execute from the typeahead buffer.
8415 * Continue until the stuff buffer is empty and all added characters
8416 * have been consumed.
8418 while (!stuff_empty() || typebuf.tb_len > prev_len)
8419 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8421 exec_from_reg = save_efr;
8426 * ":!".
8428 static void
8429 ex_bang(eap)
8430 exarg_T *eap;
8432 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8436 * ":undo".
8438 static void
8439 ex_undo(eap)
8440 exarg_T *eap UNUSED;
8442 if (eap->addr_count == 1) /* :undo 123 */
8443 undo_time(eap->line2, FALSE, TRUE);
8444 else
8445 u_undo(1);
8449 * ":redo".
8451 static void
8452 ex_redo(eap)
8453 exarg_T *eap UNUSED;
8455 u_redo(1);
8459 * ":earlier" and ":later".
8461 static void
8462 ex_later(eap)
8463 exarg_T *eap;
8465 long count = 0;
8466 int sec = FALSE;
8467 char_u *p = eap->arg;
8469 if (*p == NUL)
8470 count = 1;
8471 else if (isdigit(*p))
8473 count = getdigits(&p);
8474 switch (*p)
8476 case 's': ++p; sec = TRUE; break;
8477 case 'm': ++p; sec = TRUE; count *= 60; break;
8478 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8482 if (*p != NUL)
8483 EMSG2(_(e_invarg2), eap->arg);
8484 else
8485 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
8489 * ":redir": start/stop redirection.
8491 static void
8492 ex_redir(eap)
8493 exarg_T *eap;
8495 char *mode;
8496 char_u *fname;
8497 char_u *arg = eap->arg;
8499 if (STRICMP(eap->arg, "END") == 0)
8500 close_redir();
8501 else
8503 if (*arg == '>')
8505 ++arg;
8506 if (*arg == '>')
8508 ++arg;
8509 mode = "a";
8511 else
8512 mode = "w";
8513 arg = skipwhite(arg);
8515 close_redir();
8517 /* Expand environment variables and "~/". */
8518 fname = expand_env_save(arg);
8519 if (fname == NULL)
8520 return;
8521 #ifdef FEAT_BROWSE
8522 if (cmdmod.browse)
8524 char_u *browseFile;
8526 browseFile = do_browse(BROWSE_SAVE,
8527 (char_u *)_("Save Redirection"),
8528 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
8529 if (browseFile == NULL)
8530 return; /* operation cancelled */
8531 vim_free(fname);
8532 fname = browseFile;
8533 eap->forceit = TRUE; /* since dialog already asked */
8535 #endif
8537 redir_fd = open_exfile(fname, eap->forceit, mode);
8538 vim_free(fname);
8540 #ifdef FEAT_EVAL
8541 else if (*arg == '@')
8543 /* redirect to a register a-z (resp. A-Z for appending) */
8544 close_redir();
8545 ++arg;
8546 if (ASCII_ISALPHA(*arg)
8547 # ifdef FEAT_CLIPBOARD
8548 || *arg == '*'
8549 || *arg == '+'
8550 # endif
8551 || *arg == '"')
8553 redir_reg = *arg++;
8554 if (*arg == '>' && arg[1] == '>') /* append */
8555 arg += 2;
8556 else
8558 /* Can use both "@a" and "@a>". */
8559 if (*arg == '>')
8560 arg++;
8561 /* Make register empty when not using @A-@Z and the
8562 * command is valid. */
8563 if (*arg == NUL && !isupper(redir_reg))
8564 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
8567 if (*arg != NUL)
8569 redir_reg = 0;
8570 EMSG2(_(e_invarg2), eap->arg);
8573 else if (*arg == '=' && arg[1] == '>')
8575 int append;
8577 /* redirect to a variable */
8578 close_redir();
8579 arg += 2;
8581 if (*arg == '>')
8583 ++arg;
8584 append = TRUE;
8586 else
8587 append = FALSE;
8589 if (var_redir_start(skipwhite(arg), append) == OK)
8590 redir_vname = 1;
8592 #endif
8594 /* TODO: redirect to a buffer */
8596 else
8597 EMSG2(_(e_invarg2), eap->arg);
8600 /* Make sure redirection is not off. Can happen for cmdline completion
8601 * that indirectly invokes a command to catch its output. */
8602 if (redir_fd != NULL
8603 #ifdef FEAT_EVAL
8604 || redir_reg || redir_vname
8605 #endif
8607 redir_off = FALSE;
8611 * ":redraw": force redraw
8613 static void
8614 ex_redraw(eap)
8615 exarg_T *eap;
8617 int r = RedrawingDisabled;
8618 int p = p_lz;
8620 RedrawingDisabled = 0;
8621 p_lz = FALSE;
8622 update_topline();
8623 update_screen(eap->forceit ? CLEAR :
8624 #ifdef FEAT_VISUAL
8625 VIsual_active ? INVERTED :
8626 #endif
8628 #ifdef FEAT_TITLE
8629 if (need_maketitle)
8630 maketitle();
8631 #endif
8632 RedrawingDisabled = r;
8633 p_lz = p;
8635 /* Reset msg_didout, so that a message that's there is overwritten. */
8636 msg_didout = FALSE;
8637 msg_col = 0;
8639 out_flush();
8643 * ":redrawstatus": force redraw of status line(s)
8645 static void
8646 ex_redrawstatus(eap)
8647 exarg_T *eap UNUSED;
8649 #if defined(FEAT_WINDOWS)
8650 int r = RedrawingDisabled;
8651 int p = p_lz;
8653 RedrawingDisabled = 0;
8654 p_lz = FALSE;
8655 if (eap->forceit)
8656 status_redraw_all();
8657 else
8658 status_redraw_curbuf();
8659 update_screen(
8660 # ifdef FEAT_VISUAL
8661 VIsual_active ? INVERTED :
8662 # endif
8664 RedrawingDisabled = r;
8665 p_lz = p;
8666 out_flush();
8667 #endif
8670 static void
8671 close_redir()
8673 if (redir_fd != NULL)
8675 fclose(redir_fd);
8676 redir_fd = NULL;
8678 #ifdef FEAT_EVAL
8679 redir_reg = 0;
8680 if (redir_vname)
8682 var_redir_stop();
8683 redir_vname = 0;
8685 #endif
8688 #if defined(FEAT_SESSION) && defined(USE_CRNL)
8689 # define MKSESSION_NL
8690 static int mksession_nl = FALSE; /* use NL only in put_eol() */
8691 #endif
8694 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8696 static void
8697 ex_mkrc(eap)
8698 exarg_T *eap;
8700 FILE *fd;
8701 int failed = FALSE;
8702 char_u *fname;
8703 #ifdef FEAT_BROWSE
8704 char_u *browseFile = NULL;
8705 #endif
8706 #ifdef FEAT_SESSION
8707 int view_session = FALSE;
8708 int using_vdir = FALSE; /* using 'viewdir'? */
8709 char_u *viewFile = NULL;
8710 unsigned *flagp;
8711 #endif
8713 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8715 #ifdef FEAT_SESSION
8716 view_session = TRUE;
8717 #else
8718 ex_ni(eap);
8719 return;
8720 #endif
8723 #ifdef FEAT_SESSION
8724 /* Use the short file name until ":lcd" is used. We also don't use the
8725 * short file name when 'acd' is set, that is checked later. */
8726 did_lcd = FALSE;
8728 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8729 if (eap->cmdidx == CMD_mkview
8730 && (*eap->arg == NUL
8731 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8733 eap->forceit = TRUE;
8734 fname = get_view_file(*eap->arg);
8735 if (fname == NULL)
8736 return;
8737 viewFile = fname;
8738 using_vdir = TRUE;
8740 else
8741 #endif
8742 if (*eap->arg != NUL)
8743 fname = eap->arg;
8744 else if (eap->cmdidx == CMD_mkvimrc)
8745 fname = (char_u *)VIMRC_FILE;
8746 #ifdef FEAT_SESSION
8747 else if (eap->cmdidx == CMD_mksession)
8748 fname = (char_u *)SESSION_FILE;
8749 #endif
8750 else
8751 fname = (char_u *)EXRC_FILE;
8753 #ifdef FEAT_BROWSE
8754 if (cmdmod.browse)
8756 browseFile = do_browse(BROWSE_SAVE,
8757 # ifdef FEAT_SESSION
8758 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8759 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8760 # endif
8761 (char_u *)_("Save Setup"),
8762 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8763 if (browseFile == NULL)
8764 goto theend;
8765 fname = browseFile;
8766 eap->forceit = TRUE; /* since dialog already asked */
8768 #endif
8770 #if defined(FEAT_SESSION) && defined(vim_mkdir)
8771 /* When using 'viewdir' may have to create the directory. */
8772 if (using_vdir && !mch_isdir(p_vdir))
8773 vim_mkdir_emsg(p_vdir, 0755);
8774 #endif
8776 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8777 if (fd != NULL)
8779 #ifdef FEAT_SESSION
8780 if (eap->cmdidx == CMD_mkview)
8781 flagp = &vop_flags;
8782 else
8783 flagp = &ssop_flags;
8784 #endif
8786 #ifdef MKSESSION_NL
8787 /* "unix" in 'sessionoptions': use NL line separator */
8788 if (view_session && (*flagp & SSOP_UNIX))
8789 mksession_nl = TRUE;
8790 #endif
8792 /* Write the version command for :mkvimrc */
8793 if (eap->cmdidx == CMD_mkvimrc)
8794 (void)put_line(fd, "version 6.0");
8796 #ifdef FEAT_SESSION
8797 if (eap->cmdidx == CMD_mksession)
8799 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8800 failed = TRUE;
8803 if (eap->cmdidx != CMD_mkview)
8804 #endif
8806 /* Write setting 'compatible' first, because it has side effects.
8807 * For that same reason only do it when needed. */
8808 if (p_cp)
8809 (void)put_line(fd, "if !&cp | set cp | endif");
8810 else
8811 (void)put_line(fd, "if &cp | set nocp | endif");
8814 #ifdef FEAT_SESSION
8815 if (!view_session
8816 || (eap->cmdidx == CMD_mksession
8817 && (*flagp & SSOP_OPTIONS)))
8818 #endif
8819 failed |= (makemap(fd, NULL) == FAIL
8820 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8822 #ifdef FEAT_SESSION
8823 if (!failed && view_session)
8825 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8826 failed = TRUE;
8827 if (eap->cmdidx == CMD_mksession)
8829 char_u dirnow[MAXPATHL]; /* current directory */
8832 * Change to session file's dir.
8834 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8835 || mch_chdir((char *)dirnow) != 0)
8836 *dirnow = NUL;
8837 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8839 if (vim_chdirfile(fname) == OK)
8840 shorten_fnames(TRUE);
8842 else if (*dirnow != NUL
8843 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8845 if (mch_chdir((char *)globaldir) == 0)
8846 shorten_fnames(TRUE);
8849 failed |= (makeopens(fd, dirnow) == FAIL);
8851 /* restore original dir */
8852 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8853 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8855 if (mch_chdir((char *)dirnow) != 0)
8856 EMSG(_(e_prev_dir));
8857 shorten_fnames(TRUE);
8860 else
8862 failed |= (put_view(fd, curwin, !using_vdir, flagp,
8863 -1) == FAIL);
8865 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8866 == FAIL)
8867 failed = TRUE;
8868 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8869 failed = TRUE;
8870 if (eap->cmdidx == CMD_mksession)
8872 if (put_line(fd, "unlet SessionLoad") == FAIL)
8873 failed = TRUE;
8876 #endif
8877 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8878 failed = TRUE;
8880 failed |= fclose(fd);
8882 if (failed)
8883 EMSG(_(e_write));
8884 #if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8885 else if (eap->cmdidx == CMD_mksession)
8887 /* successful session write - set this_session var */
8888 char_u tbuf[MAXPATHL];
8890 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8891 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8893 #endif
8894 #ifdef MKSESSION_NL
8895 mksession_nl = FALSE;
8896 #endif
8899 #ifdef FEAT_BROWSE
8900 theend:
8901 vim_free(browseFile);
8902 #endif
8903 #ifdef FEAT_SESSION
8904 vim_free(viewFile);
8905 #endif
8908 #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8909 || defined(PROTO)
8911 vim_mkdir_emsg(name, prot)
8912 char_u *name;
8913 int prot UNUSED;
8915 if (vim_mkdir(name, prot) != 0)
8917 EMSG2(_("E739: Cannot create directory: %s"), name);
8918 return FAIL;
8920 return OK;
8922 #endif
8925 * Open a file for writing for an Ex command, with some checks.
8926 * Return file descriptor, or NULL on failure.
8928 FILE *
8929 open_exfile(fname, forceit, mode)
8930 char_u *fname;
8931 int forceit;
8932 char *mode; /* "w" for create new file or "a" for append */
8934 FILE *fd;
8936 #ifdef UNIX
8937 /* with Unix it is possible to open a directory */
8938 if (mch_isdir(fname))
8940 EMSG2(_(e_isadir2), fname);
8941 return NULL;
8943 #endif
8944 if (!forceit && *mode != 'a' && vim_fexists(fname))
8946 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8947 return NULL;
8950 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8951 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8953 return fd;
8957 * ":mark" and ":k".
8959 static void
8960 ex_mark(eap)
8961 exarg_T *eap;
8963 pos_T pos;
8965 if (*eap->arg == NUL) /* No argument? */
8966 EMSG(_(e_argreq));
8967 else if (eap->arg[1] != NUL) /* more than one character? */
8968 EMSG(_(e_trailing));
8969 else
8971 pos = curwin->w_cursor; /* save curwin->w_cursor */
8972 curwin->w_cursor.lnum = eap->line2;
8973 beginline(BL_WHITE | BL_FIX);
8974 if (setmark(*eap->arg) == FAIL) /* set mark */
8975 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8976 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8981 * Update w_topline, w_leftcol and the cursor position.
8983 void
8984 update_topline_cursor()
8986 check_cursor(); /* put cursor on valid line */
8987 update_topline();
8988 if (!curwin->w_p_wrap)
8989 validate_cursor();
8990 update_curswant();
8993 #ifdef FEAT_EX_EXTRA
8995 * ":normal[!] {commands}": Execute normal mode commands.
8997 static void
8998 ex_normal(eap)
8999 exarg_T *eap;
9001 int save_msg_scroll = msg_scroll;
9002 int save_restart_edit = restart_edit;
9003 int save_msg_didout = msg_didout;
9004 int save_State = State;
9005 tasave_T tabuf;
9006 int save_insertmode = p_im;
9007 int save_finish_op = finish_op;
9008 int save_opcount = opcount;
9009 #ifdef FEAT_MBYTE
9010 char_u *arg = NULL;
9011 int l;
9012 char_u *p;
9013 #endif
9015 if (ex_normal_lock > 0)
9017 EMSG(_(e_secure));
9018 return;
9020 if (ex_normal_busy >= p_mmd)
9022 EMSG(_("E192: Recursive use of :normal too deep"));
9023 return;
9025 ++ex_normal_busy;
9027 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
9028 restart_edit = 0; /* don't go to Insert mode */
9029 p_im = FALSE; /* don't use 'insertmode' */
9031 #ifdef FEAT_MBYTE
9033 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
9034 * this for the K_SPECIAL leading byte, otherwise special keys will not
9035 * work.
9037 if (has_mbyte)
9039 int len = 0;
9041 /* Count the number of characters to be escaped. */
9042 for (p = eap->arg; *p != NUL; ++p)
9044 # ifdef FEAT_GUI
9045 if (*p == CSI) /* leadbyte CSI */
9046 len += 2;
9047 # endif
9048 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
9049 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
9050 # ifdef FEAT_GUI
9051 || *p == CSI
9052 # endif
9054 len += 2;
9056 if (len > 0)
9058 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
9059 if (arg != NULL)
9061 len = 0;
9062 for (p = eap->arg; *p != NUL; ++p)
9064 arg[len++] = *p;
9065 # ifdef FEAT_GUI
9066 if (*p == CSI)
9068 arg[len++] = KS_EXTRA;
9069 arg[len++] = (int)KE_CSI;
9071 # endif
9072 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
9074 arg[len++] = *++p;
9075 if (*p == K_SPECIAL)
9077 arg[len++] = KS_SPECIAL;
9078 arg[len++] = KE_FILLER;
9080 # ifdef FEAT_GUI
9081 else if (*p == CSI)
9083 arg[len++] = KS_EXTRA;
9084 arg[len++] = (int)KE_CSI;
9086 # endif
9088 arg[len] = NUL;
9093 #endif
9096 * Save the current typeahead. This is required to allow using ":normal"
9097 * from an event handler and makes sure we don't hang when the argument
9098 * ends with half a command.
9100 save_typeahead(&tabuf);
9101 if (tabuf.typebuf_valid)
9104 * Repeat the :normal command for each line in the range. When no
9105 * range given, execute it just once, without positioning the cursor
9106 * first.
9110 if (eap->addr_count != 0)
9112 curwin->w_cursor.lnum = eap->line1++;
9113 curwin->w_cursor.col = 0;
9116 exec_normal_cmd(
9117 #ifdef FEAT_MBYTE
9118 arg != NULL ? arg :
9119 #endif
9120 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
9122 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9125 /* Might not return to the main loop when in an event handler. */
9126 update_topline_cursor();
9128 /* Restore the previous typeahead. */
9129 restore_typeahead(&tabuf);
9131 --ex_normal_busy;
9132 msg_scroll = save_msg_scroll;
9133 restart_edit = save_restart_edit;
9134 p_im = save_insertmode;
9135 finish_op = save_finish_op;
9136 opcount = save_opcount;
9137 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9139 /* Restore the state (needed when called from a function executed for
9140 * 'indentexpr'). */
9141 State = save_State;
9142 #ifdef FEAT_MBYTE
9143 vim_free(arg);
9144 #endif
9148 * ":startinsert", ":startreplace" and ":startgreplace"
9150 static void
9151 ex_startinsert(eap)
9152 exarg_T *eap;
9154 if (eap->forceit)
9156 coladvance((colnr_T)MAXCOL);
9157 curwin->w_curswant = MAXCOL;
9158 curwin->w_set_curswant = FALSE;
9161 /* Ignore the command when already in Insert mode. Inserting an
9162 * expression register that invokes a function can do this. */
9163 if (State & INSERT)
9164 return;
9166 if (eap->cmdidx == CMD_startinsert)
9167 restart_edit = 'a';
9168 else if (eap->cmdidx == CMD_startreplace)
9169 restart_edit = 'R';
9170 else
9171 restart_edit = 'V';
9173 if (!eap->forceit)
9175 if (eap->cmdidx == CMD_startinsert)
9176 restart_edit = 'i';
9177 curwin->w_curswant = 0; /* avoid MAXCOL */
9182 * ":stopinsert"
9184 static void
9185 ex_stopinsert(eap)
9186 exarg_T *eap UNUSED;
9188 restart_edit = 0;
9189 stop_insert_mode = TRUE;
9191 #endif
9193 #if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9195 * Execute normal mode command "cmd".
9196 * "remap" can be REMAP_NONE or REMAP_YES.
9198 void
9199 exec_normal_cmd(cmd, remap, silent)
9200 char_u *cmd;
9201 int remap;
9202 int silent;
9204 oparg_T oa;
9207 * Stuff the argument into the typeahead buffer.
9208 * Execute normal_cmd() until there is no typeahead left.
9210 clear_oparg(&oa);
9211 finish_op = FALSE;
9212 ins_typebuf(cmd, remap, 0, TRUE, silent);
9213 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9214 && !got_int)
9216 update_topline_cursor();
9217 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9220 #endif
9222 #ifdef FEAT_FIND_ID
9223 static void
9224 ex_checkpath(eap)
9225 exarg_T *eap;
9227 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9228 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9229 (linenr_T)1, (linenr_T)MAXLNUM);
9232 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9234 * ":psearch"
9236 static void
9237 ex_psearch(eap)
9238 exarg_T *eap;
9240 g_do_tagpreview = p_pvh;
9241 ex_findpat(eap);
9242 g_do_tagpreview = 0;
9244 #endif
9246 static void
9247 ex_findpat(eap)
9248 exarg_T *eap;
9250 int whole = TRUE;
9251 long n;
9252 char_u *p;
9253 int action;
9255 switch (cmdnames[eap->cmdidx].cmd_name[2])
9257 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9258 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9259 action = ACTION_GOTO;
9260 else
9261 action = ACTION_SHOW;
9262 break;
9263 case 'i': /* ":ilist" and ":dlist" */
9264 action = ACTION_SHOW_ALL;
9265 break;
9266 case 'u': /* ":ijump" and ":djump" */
9267 action = ACTION_GOTO;
9268 break;
9269 default: /* ":isplit" and ":dsplit" */
9270 action = ACTION_SPLIT;
9271 break;
9274 n = 1;
9275 if (vim_isdigit(*eap->arg)) /* get count */
9277 n = getdigits(&eap->arg);
9278 eap->arg = skipwhite(eap->arg);
9280 if (*eap->arg == '/') /* Match regexp, not just whole words */
9282 whole = FALSE;
9283 ++eap->arg;
9284 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9285 if (*p)
9287 *p++ = NUL;
9288 p = skipwhite(p);
9290 /* Check for trailing illegal characters */
9291 if (!ends_excmd(*p))
9292 eap->errmsg = e_trailing;
9293 else
9294 eap->nextcmd = check_nextcmd(p);
9297 if (!eap->skip)
9298 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9299 whole, !eap->forceit,
9300 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9301 n, action, eap->line1, eap->line2);
9303 #endif
9305 #ifdef FEAT_WINDOWS
9307 # ifdef FEAT_QUICKFIX
9309 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9311 static void
9312 ex_ptag(eap)
9313 exarg_T *eap;
9315 g_do_tagpreview = p_pvh;
9316 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9320 * ":pedit"
9322 static void
9323 ex_pedit(eap)
9324 exarg_T *eap;
9326 win_T *curwin_save = curwin;
9328 g_do_tagpreview = p_pvh;
9329 prepare_tagpreview(TRUE);
9330 keep_help_flag = curwin_save->w_buffer->b_help;
9331 do_exedit(eap, NULL);
9332 keep_help_flag = FALSE;
9333 if (curwin != curwin_save && win_valid(curwin_save))
9335 /* Return cursor to where we were */
9336 validate_cursor();
9337 redraw_later(VALID);
9338 win_enter(curwin_save, TRUE);
9340 g_do_tagpreview = 0;
9342 # endif
9345 * ":stag", ":stselect" and ":stjump".
9347 static void
9348 ex_stag(eap)
9349 exarg_T *eap;
9351 postponed_split = -1;
9352 postponed_split_flags = cmdmod.split;
9353 postponed_split_tab = cmdmod.tab;
9354 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9355 postponed_split_flags = 0;
9356 postponed_split_tab = 0;
9358 #endif
9361 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9363 static void
9364 ex_tag(eap)
9365 exarg_T *eap;
9367 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9370 static void
9371 ex_tag_cmd(eap, name)
9372 exarg_T *eap;
9373 char_u *name;
9375 int cmd;
9377 switch (name[1])
9379 case 'j': cmd = DT_JUMP; /* ":tjump" */
9380 break;
9381 case 's': cmd = DT_SELECT; /* ":tselect" */
9382 break;
9383 case 'p': cmd = DT_PREV; /* ":tprevious" */
9384 break;
9385 case 'N': cmd = DT_PREV; /* ":tNext" */
9386 break;
9387 case 'n': cmd = DT_NEXT; /* ":tnext" */
9388 break;
9389 case 'o': cmd = DT_POP; /* ":pop" */
9390 break;
9391 case 'f': /* ":tfirst" */
9392 case 'r': cmd = DT_FIRST; /* ":trewind" */
9393 break;
9394 case 'l': cmd = DT_LAST; /* ":tlast" */
9395 break;
9396 default: /* ":tag" */
9397 #ifdef FEAT_CSCOPE
9398 if (p_cst && *eap->arg != NUL)
9400 do_cstag(eap);
9401 return;
9403 #endif
9404 cmd = DT_TAG;
9405 break;
9408 if (name[0] == 'l')
9410 #ifndef FEAT_QUICKFIX
9411 ex_ni(eap);
9412 return;
9413 #else
9414 cmd = DT_LTAG;
9415 #endif
9418 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9419 eap->forceit, TRUE);
9423 * Check "str" for starting with a special cmdline variable.
9424 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9425 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9428 find_cmdline_var(src, usedlen)
9429 char_u *src;
9430 int *usedlen;
9432 int len;
9433 int i;
9434 static char *(spec_str[]) = {
9435 "%",
9436 #define SPEC_PERC 0
9437 "#",
9438 #define SPEC_HASH 1
9439 "<cword>", /* cursor word */
9440 #define SPEC_CWORD 2
9441 "<cWORD>", /* cursor WORD */
9442 #define SPEC_CCWORD 3
9443 "<cfile>", /* cursor path name */
9444 #define SPEC_CFILE 4
9445 "<sfile>", /* ":so" file name */
9446 #define SPEC_SFILE 5
9447 #ifdef FEAT_AUTOCMD
9448 "<afile>", /* autocommand file name */
9449 # define SPEC_AFILE 6
9450 "<abuf>", /* autocommand buffer number */
9451 # define SPEC_ABUF 7
9452 "<amatch>", /* autocommand match name */
9453 # define SPEC_AMATCH 8
9454 #endif
9455 #ifdef FEAT_CLIENTSERVER
9456 "<client>"
9457 # define SPEC_CLIENT 9
9458 #endif
9461 for (i = 0; i < (int)(sizeof(spec_str) / sizeof(char *)); ++i)
9463 len = (int)STRLEN(spec_str[i]);
9464 if (STRNCMP(src, spec_str[i], len) == 0)
9466 *usedlen = len;
9467 return i;
9470 return -1;
9474 * Evaluate cmdline variables.
9476 * change '%' to curbuf->b_ffname
9477 * '#' to curwin->w_altfile
9478 * '<cword>' to word under the cursor
9479 * '<cWORD>' to WORD under the cursor
9480 * '<cfile>' to path name under the cursor
9481 * '<sfile>' to sourced file name
9482 * '<afile>' to file name for autocommand
9483 * '<abuf>' to buffer number for autocommand
9484 * '<amatch>' to matching name for autocommand
9486 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9487 * "" for error without a message) and NULL is returned.
9488 * Returns an allocated string if a valid match was found.
9489 * Returns NULL if no match was found. "usedlen" then still contains the
9490 * number of characters to skip.
9492 char_u *
9493 eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
9494 char_u *src; /* pointer into commandline */
9495 char_u *srcstart; /* beginning of valid memory for src */
9496 int *usedlen; /* characters after src that are used */
9497 linenr_T *lnump; /* line number for :e command, or NULL */
9498 char_u **errormsg; /* pointer to error message */
9499 int *escaped; /* return value has escaped white space (can
9500 * be NULL) */
9502 int i;
9503 char_u *s;
9504 char_u *result;
9505 char_u *resultbuf = NULL;
9506 int resultlen;
9507 buf_T *buf;
9508 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9509 int spec_idx;
9510 #ifdef FEAT_MODIFY_FNAME
9511 int skip_mod = FALSE;
9512 #endif
9514 #if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9515 char_u strbuf[30];
9516 #endif
9518 *errormsg = NULL;
9519 if (escaped != NULL)
9520 *escaped = FALSE;
9523 * Check if there is something to do.
9525 spec_idx = find_cmdline_var(src, usedlen);
9526 if (spec_idx < 0) /* no match */
9528 *usedlen = 1;
9529 return NULL;
9533 * Skip when preceded with a backslash "\%" and "\#".
9534 * Note: In "\\%" the % is also not recognized!
9536 if (src > srcstart && src[-1] == '\\')
9538 *usedlen = 0;
9539 STRMOVE(src - 1, src); /* remove backslash */
9540 return NULL;
9544 * word or WORD under cursor
9546 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9548 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9549 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9550 if (resultlen == 0)
9552 *errormsg = (char_u *)"";
9553 return NULL;
9558 * '#': Alternate file name
9559 * '%': Current file name
9560 * File name under the cursor
9561 * File name for autocommand
9562 * and following modifiers
9564 else
9566 switch (spec_idx)
9568 case SPEC_PERC: /* '%': current file */
9569 if (curbuf->b_fname == NULL)
9571 result = (char_u *)"";
9572 valid = 0; /* Must have ":p:h" to be valid */
9574 else
9575 #ifdef RISCOS
9576 /* Always use the full path for RISC OS if possible. */
9577 result = curbuf->b_ffname;
9578 if (result == NULL)
9579 result = curbuf->b_fname;
9580 #else
9581 result = curbuf->b_fname;
9582 #endif
9583 break;
9585 case SPEC_HASH: /* '#' or "#99": alternate file */
9586 if (src[1] == '#') /* "##": the argument list */
9588 result = arg_all();
9589 resultbuf = result;
9590 *usedlen = 2;
9591 if (escaped != NULL)
9592 *escaped = TRUE;
9593 #ifdef FEAT_MODIFY_FNAME
9594 skip_mod = TRUE;
9595 #endif
9596 break;
9598 s = src + 1;
9599 if (*s == '<') /* "#<99" uses v:oldfiles */
9600 ++s;
9601 i = (int)getdigits(&s);
9602 *usedlen = (int)(s - src); /* length of what we expand */
9604 if (src[1] == '<')
9606 if (*usedlen < 2)
9608 /* Should we give an error message for #<text? */
9609 *usedlen = 1;
9610 return NULL;
9612 #ifdef FEAT_EVAL
9613 result = list_find_str(get_vim_var_list(VV_OLDFILES),
9614 (long)i);
9615 if (result == NULL)
9617 *errormsg = (char_u *)"";
9618 return NULL;
9620 #else
9621 *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
9622 return NULL;
9623 #endif
9625 else
9627 buf = buflist_findnr(i);
9628 if (buf == NULL)
9630 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9631 return NULL;
9633 if (lnump != NULL)
9634 *lnump = ECMD_LAST;
9635 if (buf->b_fname == NULL)
9637 result = (char_u *)"";
9638 valid = 0; /* Must have ":p:h" to be valid */
9640 else
9641 result = buf->b_fname;
9643 break;
9645 #ifdef FEAT_SEARCHPATH
9646 case SPEC_CFILE: /* file name under cursor */
9647 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
9648 if (result == NULL)
9650 *errormsg = (char_u *)"";
9651 return NULL;
9653 resultbuf = result; /* remember allocated string */
9654 break;
9655 #endif
9657 #ifdef FEAT_AUTOCMD
9658 case SPEC_AFILE: /* file name for autocommand */
9659 result = autocmd_fname;
9660 if (result != NULL && !autocmd_fname_full)
9662 /* Still need to turn the fname into a full path. It is
9663 * postponed to avoid a delay when <afile> is not used. */
9664 autocmd_fname_full = TRUE;
9665 result = FullName_save(autocmd_fname, FALSE);
9666 vim_free(autocmd_fname);
9667 autocmd_fname = result;
9669 if (result == NULL)
9671 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9672 return NULL;
9674 result = shorten_fname1(result);
9675 break;
9677 case SPEC_ABUF: /* buffer number for autocommand */
9678 if (autocmd_bufnr <= 0)
9680 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9681 return NULL;
9683 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9684 result = strbuf;
9685 break;
9687 case SPEC_AMATCH: /* match name for autocommand */
9688 result = autocmd_match;
9689 if (result == NULL)
9691 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9692 return NULL;
9694 break;
9696 #endif
9697 case SPEC_SFILE: /* file name for ":so" command */
9698 result = sourcing_name;
9699 if (result == NULL)
9701 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9702 return NULL;
9704 break;
9705 #if defined(FEAT_CLIENTSERVER)
9706 case SPEC_CLIENT: /* Source of last submitted input */
9707 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9708 (long_u)clientWindow);
9709 result = strbuf;
9710 break;
9711 #endif
9714 resultlen = (int)STRLEN(result); /* length of new string */
9715 if (src[*usedlen] == '<') /* remove the file name extension */
9717 ++*usedlen;
9718 #ifdef RISCOS
9719 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9720 #else
9721 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9722 #endif
9723 resultlen = (int)(s - result);
9725 #ifdef FEAT_MODIFY_FNAME
9726 else if (!skip_mod)
9728 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9729 &resultlen);
9730 if (result == NULL)
9732 *errormsg = (char_u *)"";
9733 return NULL;
9736 #endif
9739 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9741 if (valid != VALID_HEAD + VALID_PATH)
9742 /* xgettext:no-c-format */
9743 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9744 else
9745 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9746 result = NULL;
9748 else
9749 result = vim_strnsave(result, resultlen);
9750 vim_free(resultbuf);
9751 return result;
9755 * Concatenate all files in the argument list, separated by spaces, and return
9756 * it in one allocated string.
9757 * Spaces and backslashes in the file names are escaped with a backslash.
9758 * Returns NULL when out of memory.
9760 static char_u *
9761 arg_all()
9763 int len;
9764 int idx;
9765 char_u *retval = NULL;
9766 char_u *p;
9769 * Do this loop two times:
9770 * first time: compute the total length
9771 * second time: concatenate the names
9773 for (;;)
9775 len = 0;
9776 for (idx = 0; idx < ARGCOUNT; ++idx)
9778 p = alist_name(&ARGLIST[idx]);
9779 if (p != NULL)
9781 if (len > 0)
9783 /* insert a space in between names */
9784 if (retval != NULL)
9785 retval[len] = ' ';
9786 ++len;
9788 for ( ; *p != NUL; ++p)
9790 if (*p == ' ' || *p == '\\')
9792 /* insert a backslash */
9793 if (retval != NULL)
9794 retval[len] = '\\';
9795 ++len;
9797 if (retval != NULL)
9798 retval[len] = *p;
9799 ++len;
9804 /* second time: break here */
9805 if (retval != NULL)
9807 retval[len] = NUL;
9808 break;
9811 /* allocate memory */
9812 retval = alloc((unsigned)len + 1);
9813 if (retval == NULL)
9814 break;
9817 return retval;
9820 #if defined(FEAT_AUTOCMD) || defined(PROTO)
9822 * Expand the <sfile> string in "arg".
9824 * Returns an allocated string, or NULL for any error.
9826 char_u *
9827 expand_sfile(arg)
9828 char_u *arg;
9830 char_u *errormsg;
9831 int len;
9832 char_u *result;
9833 char_u *newres;
9834 char_u *repl;
9835 int srclen;
9836 char_u *p;
9838 result = vim_strsave(arg);
9839 if (result == NULL)
9840 return NULL;
9842 for (p = result; *p; )
9844 if (STRNCMP(p, "<sfile>", 7) != 0)
9845 ++p;
9846 else
9848 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
9849 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
9850 if (errormsg != NULL)
9852 if (*errormsg)
9853 emsg(errormsg);
9854 vim_free(result);
9855 return NULL;
9857 if (repl == NULL) /* no match (cannot happen) */
9859 p += srclen;
9860 continue;
9862 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9863 newres = alloc(len);
9864 if (newres == NULL)
9866 vim_free(repl);
9867 vim_free(result);
9868 return NULL;
9870 mch_memmove(newres, result, (size_t)(p - result));
9871 STRCPY(newres + (p - result), repl);
9872 len = (int)STRLEN(newres);
9873 STRCAT(newres, p + srclen);
9874 vim_free(repl);
9875 vim_free(result);
9876 result = newres;
9877 p = newres + len; /* continue after the match */
9881 return result;
9883 #endif
9885 #ifdef FEAT_SESSION
9886 static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9887 win_T *tab_firstwin));
9888 static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9889 static frame_T *ses_skipframe __ARGS((frame_T *fr));
9890 static int ses_do_frame __ARGS((frame_T *fr));
9891 static int ses_do_win __ARGS((win_T *wp));
9892 static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9893 static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9894 static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9897 * Write openfile commands for the current buffers to an .exrc file.
9898 * Return FAIL on error, OK otherwise.
9900 static int
9901 makeopens(fd, dirnow)
9902 FILE *fd;
9903 char_u *dirnow; /* Current directory name */
9905 buf_T *buf;
9906 int only_save_windows = TRUE;
9907 int nr;
9908 int cnr = 1;
9909 int restore_size = TRUE;
9910 win_T *wp;
9911 char_u *sname;
9912 win_T *edited_win = NULL;
9913 int tabnr;
9914 win_T *tab_firstwin;
9915 frame_T *tab_topframe;
9916 int cur_arg_idx = 0;
9917 int next_arg_idx = 0;
9919 if (ssop_flags & SSOP_BUFFERS)
9920 only_save_windows = FALSE; /* Save ALL buffers */
9923 * Begin by setting the this_session variable, and then other
9924 * sessionable variables.
9926 #ifdef FEAT_EVAL
9927 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9928 return FAIL;
9929 if (ssop_flags & SSOP_GLOBALS)
9930 if (store_session_globals(fd) == FAIL)
9931 return FAIL;
9932 #endif
9935 * Close all windows but one.
9937 if (put_line(fd, "silent only") == FAIL)
9938 return FAIL;
9941 * Now a :cd command to the session directory or the current directory
9943 if (ssop_flags & SSOP_SESDIR)
9945 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9946 == FAIL)
9947 return FAIL;
9949 else if (ssop_flags & SSOP_CURDIR)
9951 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9952 if (sname == NULL
9953 || fputs("cd ", fd) < 0
9954 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9955 || put_eol(fd) == FAIL)
9957 vim_free(sname);
9958 return FAIL;
9960 vim_free(sname);
9964 * If there is an empty, unnamed buffer we will wipe it out later.
9965 * Remember the buffer number.
9967 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9968 return FAIL;
9969 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9970 return FAIL;
9971 if (put_line(fd, "endif") == FAIL)
9972 return FAIL;
9975 * Now save the current files, current buffer first.
9977 if (put_line(fd, "set shortmess=aoO") == FAIL)
9978 return FAIL;
9980 /* Now put the other buffers into the buffer list */
9981 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9983 if (!(only_save_windows && buf->b_nwindows == 0)
9984 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9985 && buf->b_fname != NULL
9986 && buf->b_p_bl)
9988 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9989 : buf->b_wininfo->wi_fpos.lnum) < 0
9990 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9991 return FAIL;
9995 /* the global argument list */
9996 if (ses_arglist(fd, "args", &global_alist.al_ga,
9997 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9998 return FAIL;
10000 if (ssop_flags & SSOP_RESIZE)
10002 /* Note: after the restore we still check it worked!*/
10003 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
10004 || put_eol(fd) == FAIL)
10005 return FAIL;
10006 #ifdef FEAT_FULLSCREEN
10007 /* fullscreen needs to be set after lines and columns */
10008 if (p_fullscreen)
10010 if (fprintf(fd, "set fullscreen") < 0 || put_eol(fd) == FAIL)
10011 return FAIL;
10013 #endif
10016 #ifdef FEAT_GUI
10017 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
10019 int x, y;
10021 if (gui_mch_get_winpos(&x, &y) == OK)
10023 /* Note: after the restore we still check it worked!*/
10024 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
10025 return FAIL;
10028 #endif
10031 * May repeat putting Windows for each tab, when "tabpages" is in
10032 * 'sessionoptions'.
10033 * Don't use goto_tabpage(), it may change directory and trigger
10034 * autocommands.
10036 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
10037 tab_topframe = topframe;
10038 for (tabnr = 1; ; ++tabnr)
10040 int need_tabnew = FALSE;
10042 if ((ssop_flags & SSOP_TABPAGES))
10044 tabpage_T *tp = find_tabpage(tabnr);
10046 if (tp == NULL)
10047 break; /* done all tab pages */
10048 if (tp == curtab)
10050 tab_firstwin = firstwin;
10051 tab_topframe = topframe;
10053 else
10055 tab_firstwin = tp->tp_firstwin;
10056 tab_topframe = tp->tp_topframe;
10058 if (tabnr > 1)
10059 need_tabnew = TRUE;
10063 * Before creating the window layout, try loading one file. If this
10064 * is aborted we don't end up with a number of useless windows.
10065 * This may have side effects! (e.g., compressed or network file).
10067 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10069 if (ses_do_win(wp)
10070 && wp->w_buffer->b_ffname != NULL
10071 && !wp->w_buffer->b_help
10072 #ifdef FEAT_QUICKFIX
10073 && !bt_nofile(wp->w_buffer)
10074 #endif
10077 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
10078 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
10079 return FAIL;
10080 need_tabnew = FALSE;
10081 if (!wp->w_arg_idx_invalid)
10082 edited_win = wp;
10083 break;
10087 /* If no file got edited create an empty tab page. */
10088 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
10089 return FAIL;
10092 * Save current window layout.
10094 if (put_line(fd, "set splitbelow splitright") == FAIL)
10095 return FAIL;
10096 if (ses_win_rec(fd, tab_topframe) == FAIL)
10097 return FAIL;
10098 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
10099 return FAIL;
10100 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
10101 return FAIL;
10104 * Check if window sizes can be restored (no windows omitted).
10105 * Remember the window number of the current window after restoring.
10107 nr = 0;
10108 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
10110 if (ses_do_win(wp))
10111 ++nr;
10112 else
10113 restore_size = FALSE;
10114 if (curwin == wp)
10115 cnr = nr;
10118 /* Go to the first window. */
10119 if (put_line(fd, "wincmd t") == FAIL)
10120 return FAIL;
10123 * If more than one window, see if sizes can be restored.
10124 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
10125 * resized when moving between windows.
10126 * Do this before restoring the view, so that the topline and the
10127 * cursor can be set. This is done again below.
10129 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
10130 return FAIL;
10131 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
10132 return FAIL;
10135 * Restore the view of the window (options, file, cursor, etc.).
10137 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10139 if (!ses_do_win(wp))
10140 continue;
10141 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
10142 cur_arg_idx) == FAIL)
10143 return FAIL;
10144 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
10145 return FAIL;
10146 next_arg_idx = wp->w_arg_idx;
10149 /* The argument index in the first tab page is zero, need to set it in
10150 * each window. For further tab pages it's the window where we do
10151 * "tabedit". */
10152 cur_arg_idx = next_arg_idx;
10155 * Restore cursor to the current window if it's not the first one.
10157 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
10158 || put_eol(fd) == FAIL))
10159 return FAIL;
10162 * Restore window sizes again after jumping around in windows, because
10163 * the current window has a minimum size while others may not.
10165 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
10166 return FAIL;
10168 /* Don't continue in another tab page when doing only the current one
10169 * or when at the last tab page. */
10170 if (!(ssop_flags & SSOP_TABPAGES))
10171 break;
10174 if (ssop_flags & SSOP_TABPAGES)
10176 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
10177 || put_eol(fd) == FAIL)
10178 return FAIL;
10182 * Wipe out an empty unnamed buffer we started in.
10184 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
10185 return FAIL;
10186 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
10187 return FAIL;
10188 if (put_line(fd, "endif") == FAIL)
10189 return FAIL;
10190 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
10191 return FAIL;
10193 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10194 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10195 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10196 return FAIL;
10199 * Lastly, execute the x.vim file if it exists.
10201 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10202 || put_line(fd, "if file_readable(s:sx)") == FAIL
10203 || put_line(fd, " exe \"source \" . fnameescape(s:sx)") == FAIL
10204 || put_line(fd, "endif") == FAIL)
10205 return FAIL;
10207 return OK;
10210 static int
10211 ses_winsizes(fd, restore_size, tab_firstwin)
10212 FILE *fd;
10213 int restore_size;
10214 win_T *tab_firstwin;
10216 int n = 0;
10217 win_T *wp;
10219 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10221 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10223 if (!ses_do_win(wp))
10224 continue;
10225 ++n;
10227 /* restore height when not full height */
10228 if (wp->w_height + wp->w_status_height < topframe->fr_height
10229 && (fprintf(fd,
10230 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10231 n, (long)wp->w_height, Rows / 2, Rows) < 0
10232 || put_eol(fd) == FAIL))
10233 return FAIL;
10235 /* restore width when not full width */
10236 if (wp->w_width < Columns && (fprintf(fd,
10237 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10238 n, (long)wp->w_width, Columns / 2, Columns) < 0
10239 || put_eol(fd) == FAIL))
10240 return FAIL;
10243 else
10245 /* Just equalise window sizes */
10246 if (put_line(fd, "wincmd =") == FAIL)
10247 return FAIL;
10249 return OK;
10253 * Write commands to "fd" to recursively create windows for frame "fr",
10254 * horizontally and vertically split.
10255 * After the commands the last window in the frame is the current window.
10256 * Returns FAIL when writing the commands to "fd" fails.
10258 static int
10259 ses_win_rec(fd, fr)
10260 FILE *fd;
10261 frame_T *fr;
10263 frame_T *frc;
10264 int count = 0;
10266 if (fr->fr_layout != FR_LEAF)
10268 /* Find first frame that's not skipped and then create a window for
10269 * each following one (first frame is already there). */
10270 frc = ses_skipframe(fr->fr_child);
10271 if (frc != NULL)
10272 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10274 /* Make window as big as possible so that we have lots of room
10275 * to split. */
10276 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10277 || put_line(fd, fr->fr_layout == FR_COL
10278 ? "split" : "vsplit") == FAIL)
10279 return FAIL;
10280 ++count;
10283 /* Go back to the first window. */
10284 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10285 ? "%dwincmd k" : "%dwincmd h", count) < 0
10286 || put_eol(fd) == FAIL))
10287 return FAIL;
10289 /* Recursively create frames/windows in each window of this column or
10290 * row. */
10291 frc = ses_skipframe(fr->fr_child);
10292 while (frc != NULL)
10294 ses_win_rec(fd, frc);
10295 frc = ses_skipframe(frc->fr_next);
10296 /* Go to next window. */
10297 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10298 return FAIL;
10301 return OK;
10305 * Skip frames that don't contain windows we want to save in the Session.
10306 * Returns NULL when there none.
10308 static frame_T *
10309 ses_skipframe(fr)
10310 frame_T *fr;
10312 frame_T *frc;
10314 for (frc = fr; frc != NULL; frc = frc->fr_next)
10315 if (ses_do_frame(frc))
10316 break;
10317 return frc;
10321 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10322 * the Session.
10324 static int
10325 ses_do_frame(fr)
10326 frame_T *fr;
10328 frame_T *frc;
10330 if (fr->fr_layout == FR_LEAF)
10331 return ses_do_win(fr->fr_win);
10332 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10333 if (ses_do_frame(frc))
10334 return TRUE;
10335 return FALSE;
10339 * Return non-zero if window "wp" is to be stored in the Session.
10341 static int
10342 ses_do_win(wp)
10343 win_T *wp;
10345 if (wp->w_buffer->b_fname == NULL
10346 #ifdef FEAT_QUICKFIX
10347 /* When 'buftype' is "nofile" can't restore the window contents. */
10348 || bt_nofile(wp->w_buffer)
10349 #endif
10351 return (ssop_flags & SSOP_BLANK);
10352 if (wp->w_buffer->b_help)
10353 return (ssop_flags & SSOP_HELP);
10354 return TRUE;
10358 * Write commands to "fd" to restore the view of a window.
10359 * Caller must make sure 'scrolloff' is zero.
10361 static int
10362 put_view(fd, wp, add_edit, flagp, current_arg_idx)
10363 FILE *fd;
10364 win_T *wp;
10365 int add_edit; /* add ":edit" command to view */
10366 unsigned *flagp; /* vop_flags or ssop_flags */
10367 int current_arg_idx; /* current argument index of the window, use
10368 * -1 if unknown */
10370 win_T *save_curwin;
10371 int f;
10372 int do_cursor;
10373 int did_next = FALSE;
10375 /* Always restore cursor position for ":mksession". For ":mkview" only
10376 * when 'viewoptions' contains "cursor". */
10377 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10380 * Local argument list.
10382 if (wp->w_alist == &global_alist)
10384 if (put_line(fd, "argglobal") == FAIL)
10385 return FAIL;
10387 else
10389 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10390 flagp == &vop_flags
10391 || !(*flagp & SSOP_CURDIR)
10392 || wp->w_localdir != NULL, flagp) == FAIL)
10393 return FAIL;
10396 /* Only when part of a session: restore the argument index. Some
10397 * arguments may have been deleted, check if the index is valid. */
10398 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx <= WARGCOUNT(wp)
10399 && flagp == &ssop_flags)
10401 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
10402 || put_eol(fd) == FAIL)
10403 return FAIL;
10404 did_next = TRUE;
10407 /* Edit the file. Skip this when ":next" already did it. */
10408 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
10411 * Load the file.
10413 if (wp->w_buffer->b_ffname != NULL
10414 #ifdef FEAT_QUICKFIX
10415 && !bt_nofile(wp->w_buffer)
10416 #endif
10420 * Editing a file in this buffer: use ":edit file".
10421 * This may have side effects! (e.g., compressed or network file).
10423 if (fputs("edit ", fd) < 0
10424 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10425 return FAIL;
10427 else
10429 /* No file in this buffer, just make it empty. */
10430 if (put_line(fd, "enew") == FAIL)
10431 return FAIL;
10432 #ifdef FEAT_QUICKFIX
10433 if (wp->w_buffer->b_ffname != NULL)
10435 /* The buffer does have a name, but it's not a file name. */
10436 if (fputs("file ", fd) < 0
10437 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10438 return FAIL;
10440 #endif
10441 do_cursor = FALSE;
10446 * Local mappings and abbreviations.
10448 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10449 && makemap(fd, wp->w_buffer) == FAIL)
10450 return FAIL;
10453 * Local options. Need to go to the window temporarily.
10454 * Store only local values when using ":mkview" and when ":mksession" is
10455 * used and 'sessionoptions' doesn't include "options".
10456 * Some folding options are always stored when "folds" is included,
10457 * otherwise the folds would not be restored correctly.
10459 save_curwin = curwin;
10460 curwin = wp;
10461 curbuf = curwin->w_buffer;
10462 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10463 f = makeset(fd, OPT_LOCAL,
10464 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10465 #ifdef FEAT_FOLDING
10466 else if (*flagp & SSOP_FOLDS)
10467 f = makefoldset(fd);
10468 #endif
10469 else
10470 f = OK;
10471 curwin = save_curwin;
10472 curbuf = curwin->w_buffer;
10473 if (f == FAIL)
10474 return FAIL;
10476 #ifdef FEAT_FOLDING
10478 * Save Folds when 'buftype' is empty and for help files.
10480 if ((*flagp & SSOP_FOLDS)
10481 && wp->w_buffer->b_ffname != NULL
10482 # ifdef FEAT_QUICKFIX
10483 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10484 # endif
10487 if (put_folds(fd, wp) == FAIL)
10488 return FAIL;
10490 #endif
10493 * Set the cursor after creating folds, since that moves the cursor.
10495 if (do_cursor)
10498 /* Restore the cursor line in the file and relatively in the
10499 * window. Don't use "G", it changes the jumplist. */
10500 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10501 (long)wp->w_cursor.lnum,
10502 (long)(wp->w_cursor.lnum - wp->w_topline),
10503 (long)wp->w_height / 2, (long)wp->w_height) < 0
10504 || put_eol(fd) == FAIL
10505 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10506 || put_line(fd, "exe s:l") == FAIL
10507 || put_line(fd, "normal! zt") == FAIL
10508 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10509 || put_eol(fd) == FAIL)
10510 return FAIL;
10511 /* Restore the cursor column and left offset when not wrapping. */
10512 if (wp->w_cursor.col == 0)
10514 if (put_line(fd, "normal! 0") == FAIL)
10515 return FAIL;
10517 else
10519 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10521 if (fprintf(fd,
10522 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10523 (long)wp->w_cursor.col,
10524 (long)(wp->w_cursor.col - wp->w_leftcol),
10525 (long)wp->w_width / 2, (long)wp->w_width) < 0
10526 || put_eol(fd) == FAIL
10527 || put_line(fd, "if s:c > 0") == FAIL
10528 || fprintf(fd,
10529 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10530 (long)wp->w_cursor.col) < 0
10531 || put_eol(fd) == FAIL
10532 || put_line(fd, "else") == FAIL
10533 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10534 || put_eol(fd) == FAIL
10535 || put_line(fd, "endif") == FAIL)
10536 return FAIL;
10538 else
10540 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10541 || put_eol(fd) == FAIL)
10542 return FAIL;
10548 * Local directory.
10550 if (wp->w_localdir != NULL)
10552 if (fputs("lcd ", fd) < 0
10553 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10554 || put_eol(fd) == FAIL)
10555 return FAIL;
10556 did_lcd = TRUE;
10559 return OK;
10563 * Write an argument list to the session file.
10564 * Returns FAIL if writing fails.
10566 static int
10567 ses_arglist(fd, cmd, gap, fullname, flagp)
10568 FILE *fd;
10569 char *cmd;
10570 garray_T *gap;
10571 int fullname; /* TRUE: use full path name */
10572 unsigned *flagp;
10574 int i;
10575 char_u buf[MAXPATHL];
10576 char_u *s;
10578 if (gap->ga_len == 0)
10579 return put_line(fd, "silent! argdel *");
10580 if (fputs(cmd, fd) < 0)
10581 return FAIL;
10582 for (i = 0; i < gap->ga_len; ++i)
10584 /* NULL file names are skipped (only happens when out of memory). */
10585 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10586 if (s != NULL)
10588 if (fullname)
10590 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10591 s = buf;
10593 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10594 return FAIL;
10597 return put_eol(fd);
10601 * Write a buffer name to the session file.
10602 * Also ends the line.
10603 * Returns FAIL if writing fails.
10605 static int
10606 ses_fname(fd, buf, flagp)
10607 FILE *fd;
10608 buf_T *buf;
10609 unsigned *flagp;
10611 char_u *name;
10613 /* Use the short file name if the current directory is known at the time
10614 * the session file will be sourced.
10615 * Don't do this for ":mkview", we don't know the current directory.
10616 * Don't do this after ":lcd", we don't keep track of what the current
10617 * directory is. */
10618 if (buf->b_sfname != NULL
10619 && flagp == &ssop_flags
10620 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10621 #ifdef FEAT_AUTOCHDIR
10622 && !p_acd
10623 #endif
10624 && !did_lcd)
10625 name = buf->b_sfname;
10626 else
10627 name = buf->b_ffname;
10628 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10629 return FAIL;
10630 return OK;
10634 * Write a file name to the session file.
10635 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10636 * characters.
10637 * Returns FAIL if writing fails.
10639 static int
10640 ses_put_fname(fd, name, flagp)
10641 FILE *fd;
10642 char_u *name;
10643 unsigned *flagp;
10645 char_u *sname;
10646 int retval = OK;
10647 int c;
10649 sname = home_replace_save(NULL, name);
10650 if (sname != NULL)
10651 name = sname;
10652 while (*name != NUL)
10654 #ifdef FEAT_MBYTE
10656 int l;
10658 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
10660 /* copy a multibyte char */
10661 while (--l >= 0)
10663 if (putc(*name, fd) != *name)
10664 retval = FAIL;
10665 ++name;
10667 continue;
10670 #endif
10671 c = *name++;
10672 if (c == '\\' && (*flagp & SSOP_SLASH))
10673 /* change a backslash to a forward slash */
10674 c = '/';
10675 else if ((vim_strchr(escape_chars, c) != NULL
10676 #ifdef BACKSLASH_IN_FILENAME
10677 && c != '\\'
10678 #endif
10679 ) || c == '#' || c == '%')
10681 /* escape a special character with a backslash */
10682 if (putc('\\', fd) != '\\')
10683 retval = FAIL;
10685 if (putc(c, fd) != c)
10686 retval = FAIL;
10688 vim_free(sname);
10689 return retval;
10693 * ":loadview [nr]"
10695 static void
10696 ex_loadview(eap)
10697 exarg_T *eap;
10699 char_u *fname;
10701 fname = get_view_file(*eap->arg);
10702 if (fname != NULL)
10704 do_source(fname, FALSE, DOSO_NONE);
10705 vim_free(fname);
10710 * Get the name of the view file for the current buffer.
10712 static char_u *
10713 get_view_file(c)
10714 int c;
10716 int len = 0;
10717 char_u *p, *s;
10718 char_u *retval;
10719 char_u *sname;
10721 if (curbuf->b_ffname == NULL)
10723 EMSG(_(e_noname));
10724 return NULL;
10726 sname = home_replace_save(NULL, curbuf->b_ffname);
10727 if (sname == NULL)
10728 return NULL;
10731 * We want a file name without separators, because we're not going to make
10732 * a directory.
10733 * "normal" path separator -> "=+"
10734 * "=" -> "=="
10735 * ":" path separator -> "=-"
10737 for (p = sname; *p; ++p)
10738 if (*p == '=' || vim_ispathsep(*p))
10739 ++len;
10740 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10741 if (retval != NULL)
10743 STRCPY(retval, p_vdir);
10744 add_pathsep(retval);
10745 s = retval + STRLEN(retval);
10746 for (p = sname; *p; ++p)
10748 if (*p == '=')
10750 *s++ = '=';
10751 *s++ = '=';
10753 else if (vim_ispathsep(*p))
10755 *s++ = '=';
10756 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
10757 || defined(VMS)
10758 if (*p == ':')
10759 *s++ = '-';
10760 else
10761 #endif
10762 *s++ = '+';
10764 else
10765 *s++ = *p;
10767 *s++ = '=';
10768 *s++ = c;
10769 STRCPY(s, ".vim");
10772 vim_free(sname);
10773 return retval;
10776 #endif /* FEAT_SESSION */
10779 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10780 * Return FAIL for a write error.
10783 put_eol(fd)
10784 FILE *fd;
10786 if (
10787 #ifdef USE_CRNL
10789 # ifdef MKSESSION_NL
10790 !mksession_nl &&
10791 # endif
10792 (putc('\r', fd) < 0)) ||
10793 #endif
10794 (putc('\n', fd) < 0))
10795 return FAIL;
10796 return OK;
10800 * Write a line to "fd".
10801 * Return FAIL for a write error.
10804 put_line(fd, s)
10805 FILE *fd;
10806 char *s;
10808 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10809 return FAIL;
10810 return OK;
10813 #ifdef FEAT_VIMINFO
10815 * ":rviminfo" and ":wviminfo".
10817 static void
10818 ex_viminfo(eap)
10819 exarg_T *eap;
10821 char_u *save_viminfo;
10823 save_viminfo = p_viminfo;
10824 if (*p_viminfo == NUL)
10825 p_viminfo = (char_u *)"'100";
10826 if (eap->cmdidx == CMD_rviminfo)
10828 if (read_viminfo(eap->arg, VIF_WANT_INFO | VIF_WANT_MARKS
10829 | (eap->forceit ? VIF_FORCEIT : 0)) == FAIL)
10830 EMSG(_("E195: Cannot open viminfo file for reading"));
10832 else
10833 write_viminfo(eap->arg, eap->forceit);
10834 p_viminfo = save_viminfo;
10836 #endif
10838 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
10840 * Make a dialog message in "buff[IOSIZE]".
10841 * "format" must contain "%s".
10843 void
10844 dialog_msg(buff, format, fname)
10845 char_u *buff;
10846 char *format;
10847 char_u *fname;
10849 if (fname == NULL)
10850 fname = (char_u *)_("Untitled");
10851 vim_snprintf((char *)buff, IOSIZE, format, fname);
10853 #endif
10856 * ":behave {mswin,xterm}"
10858 static void
10859 ex_behave(eap)
10860 exarg_T *eap;
10862 if (STRCMP(eap->arg, "mswin") == 0)
10864 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10865 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10866 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10867 set_option_value((char_u *)"keymodel", 0L,
10868 (char_u *)"startsel,stopsel", 0);
10870 else if (STRCMP(eap->arg, "xterm") == 0)
10872 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10873 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10874 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10875 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10877 else
10878 EMSG2(_(e_invarg2), eap->arg);
10881 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
10883 * Function given to ExpandGeneric() to obtain the possible arguments of the
10884 * ":behave {mswin,xterm}" command.
10886 char_u *
10887 get_behave_arg(xp, idx)
10888 expand_T *xp UNUSED;
10889 int idx;
10891 if (idx == 0)
10892 return (char_u *)"mswin";
10893 if (idx == 1)
10894 return (char_u *)"xterm";
10895 return NULL;
10897 #endif
10899 #ifdef FEAT_AUTOCMD
10900 static int filetype_detect = FALSE;
10901 static int filetype_plugin = FALSE;
10902 static int filetype_indent = FALSE;
10905 * ":filetype [plugin] [indent] {on,off,detect}"
10906 * on: Load the filetype.vim file to install autocommands for file types.
10907 * off: Load the ftoff.vim file to remove all autocommands for file types.
10908 * plugin on: load filetype.vim and ftplugin.vim
10909 * plugin off: load ftplugof.vim
10910 * indent on: load filetype.vim and indent.vim
10911 * indent off: load indoff.vim
10913 static void
10914 ex_filetype(eap)
10915 exarg_T *eap;
10917 char_u *arg = eap->arg;
10918 int plugin = FALSE;
10919 int indent = FALSE;
10921 if (*eap->arg == NUL)
10923 /* Print current status. */
10924 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10925 filetype_detect ? "ON" : "OFF",
10926 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10927 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10928 return;
10931 /* Accept "plugin" and "indent" in any order. */
10932 for (;;)
10934 if (STRNCMP(arg, "plugin", 6) == 0)
10936 plugin = TRUE;
10937 arg = skipwhite(arg + 6);
10938 continue;
10940 if (STRNCMP(arg, "indent", 6) == 0)
10942 indent = TRUE;
10943 arg = skipwhite(arg + 6);
10944 continue;
10946 break;
10948 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10950 if (*arg == 'o' || !filetype_detect)
10952 source_runtime((char_u *)FILETYPE_FILE, TRUE);
10953 filetype_detect = TRUE;
10954 if (plugin)
10956 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
10957 filetype_plugin = TRUE;
10959 if (indent)
10961 source_runtime((char_u *)INDENT_FILE, TRUE);
10962 filetype_indent = TRUE;
10965 if (*arg == 'd')
10967 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
10968 do_modelines(0);
10971 else if (STRCMP(arg, "off") == 0)
10973 if (plugin || indent)
10975 if (plugin)
10977 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
10978 filetype_plugin = FALSE;
10980 if (indent)
10982 source_runtime((char_u *)INDOFF_FILE, TRUE);
10983 filetype_indent = FALSE;
10986 else
10988 source_runtime((char_u *)FTOFF_FILE, TRUE);
10989 filetype_detect = FALSE;
10992 else
10993 EMSG2(_(e_invarg2), arg);
10997 * ":setfiletype {name}"
10999 static void
11000 ex_setfiletype(eap)
11001 exarg_T *eap;
11003 if (!did_filetype)
11004 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
11006 #endif
11008 static void
11009 ex_digraphs(eap)
11010 exarg_T *eap UNUSED;
11012 #ifdef FEAT_DIGRAPHS
11013 if (*eap->arg != NUL)
11014 putdigraph(eap->arg);
11015 else
11016 listdigraphs();
11017 #else
11018 EMSG(_("E196: No digraphs in this version"));
11019 #endif
11022 static void
11023 ex_set(eap)
11024 exarg_T *eap;
11026 int flags = 0;
11028 if (eap->cmdidx == CMD_setlocal)
11029 flags = OPT_LOCAL;
11030 else if (eap->cmdidx == CMD_setglobal)
11031 flags = OPT_GLOBAL;
11032 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
11033 if (cmdmod.browse && flags == 0)
11034 ex_options(eap);
11035 else
11036 #endif
11037 (void)do_set(eap->arg, flags);
11040 #ifdef FEAT_SEARCH_EXTRA
11042 * ":nohlsearch"
11044 static void
11045 ex_nohlsearch(eap)
11046 exarg_T *eap UNUSED;
11048 no_hlsearch = TRUE;
11049 redraw_all_later(SOME_VALID);
11053 * ":[N]match {group} {pattern}"
11054 * Sets nextcmd to the start of the next command, if any. Also called when
11055 * skipping commands to find the next command.
11057 static void
11058 ex_match(eap)
11059 exarg_T *eap;
11061 char_u *p;
11062 char_u *g = NULL;
11063 char_u *end;
11064 int c;
11065 int id;
11067 if (eap->line2 <= 3)
11068 id = eap->line2;
11069 else
11071 EMSG(e_invcmd);
11072 return;
11075 /* First clear any old pattern. */
11076 if (!eap->skip)
11077 match_delete(curwin, id, FALSE);
11079 if (ends_excmd(*eap->arg))
11080 end = eap->arg;
11081 else if ((STRNICMP(eap->arg, "none", 4) == 0
11082 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
11083 end = eap->arg + 4;
11084 else
11086 p = skiptowhite(eap->arg);
11087 if (!eap->skip)
11088 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
11089 p = skipwhite(p);
11090 if (*p == NUL)
11092 /* There must be two arguments. */
11093 EMSG2(_(e_invarg2), eap->arg);
11094 return;
11096 end = skip_regexp(p + 1, *p, TRUE, NULL);
11097 if (!eap->skip)
11099 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
11101 eap->errmsg = e_trailing;
11102 return;
11104 if (*end != *p)
11106 EMSG2(_(e_invarg2), p);
11107 return;
11110 c = *end;
11111 *end = NUL;
11112 match_add(curwin, g, p + 1, 10, id);
11113 vim_free(g);
11114 *end = c;
11117 eap->nextcmd = find_nextcmd(end);
11119 #endif
11121 #ifdef FEAT_CRYPT
11123 * ":X": Get crypt key
11125 static void
11126 ex_X(eap)
11127 exarg_T *eap UNUSED;
11129 (void)get_crypt_key(TRUE, TRUE);
11131 #endif
11133 #ifdef FEAT_FOLDING
11134 static void
11135 ex_fold(eap)
11136 exarg_T *eap;
11138 if (foldManualAllowed(TRUE))
11139 foldCreate(eap->line1, eap->line2);
11142 static void
11143 ex_foldopen(eap)
11144 exarg_T *eap;
11146 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
11147 eap->forceit, FALSE);
11150 static void
11151 ex_folddo(eap)
11152 exarg_T *eap;
11154 linenr_T lnum;
11156 /* First set the marks for all lines closed/open. */
11157 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
11158 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
11159 ml_setmarked(lnum);
11161 /* Execute the command on the marked lines. */
11162 global_exe(eap->arg);
11163 ml_clearmarked(); /* clear rest of the marks */
11165 #endif