Merge branch 'vim'
[MacVim.git] / src / ex_docmd.c
blobc1d5fc23f03f6e5138ffe03934236ab2011973b8
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 scid_T uc_scriptID; /* SID where the command was defined */
30 int uc_compl; /* completion type */
31 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
32 char_u *uc_compl_arg; /* completion argument if any */
33 # endif
34 } ucmd_T;
36 #define UC_BUFFER 1 /* -buffer: local to current buffer */
38 static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
40 #define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
41 #define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
43 static void do_ucmd __ARGS((exarg_T *eap));
44 static void ex_command __ARGS((exarg_T *eap));
45 static void ex_delcommand __ARGS((exarg_T *eap));
46 # ifdef FEAT_CMDL_COMPL
47 static char_u *get_user_command_name __ARGS((int idx));
48 # endif
50 #else
51 # define ex_command ex_ni
52 # define ex_comclear ex_ni
53 # define ex_delcommand ex_ni
54 #endif
56 #ifdef FEAT_EVAL
57 static char_u *do_one_cmd __ARGS((char_u **, int, struct condstack *, char_u *(*fgetline)(int, void *, int), void *cookie));
58 #else
59 static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
60 static int if_level = 0; /* depth in :if */
61 #endif
62 static char_u *find_command __ARGS((exarg_T *eap, int *full));
64 static void ex_abbreviate __ARGS((exarg_T *eap));
65 static void ex_map __ARGS((exarg_T *eap));
66 static void ex_unmap __ARGS((exarg_T *eap));
67 static void ex_mapclear __ARGS((exarg_T *eap));
68 static void ex_abclear __ARGS((exarg_T *eap));
69 #ifndef FEAT_MENU
70 # define ex_emenu ex_ni
71 # define ex_menu ex_ni
72 # define ex_menutranslate ex_ni
73 #endif
74 #ifdef FEAT_AUTOCMD
75 static void ex_autocmd __ARGS((exarg_T *eap));
76 static void ex_doautocmd __ARGS((exarg_T *eap));
77 #else
78 # define ex_autocmd ex_ni
79 # define ex_doautocmd ex_ni
80 # define ex_doautoall ex_ni
81 #endif
82 #ifdef FEAT_LISTCMDS
83 static void ex_bunload __ARGS((exarg_T *eap));
84 static void ex_buffer __ARGS((exarg_T *eap));
85 static void ex_bmodified __ARGS((exarg_T *eap));
86 static void ex_bnext __ARGS((exarg_T *eap));
87 static void ex_bprevious __ARGS((exarg_T *eap));
88 static void ex_brewind __ARGS((exarg_T *eap));
89 static void ex_blast __ARGS((exarg_T *eap));
90 #else
91 # define ex_bunload ex_ni
92 # define ex_buffer ex_ni
93 # define ex_bmodified ex_ni
94 # define ex_bnext ex_ni
95 # define ex_bprevious ex_ni
96 # define ex_brewind ex_ni
97 # define ex_blast ex_ni
98 # define buflist_list ex_ni
99 # define ex_checktime ex_ni
100 #endif
101 #if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
102 # define ex_buffer_all ex_ni
103 #endif
104 static char_u *getargcmd __ARGS((char_u **));
105 static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
106 static int getargopt __ARGS((exarg_T *eap));
107 #ifndef FEAT_QUICKFIX
108 # define ex_make ex_ni
109 # define ex_cbuffer ex_ni
110 # define ex_cc ex_ni
111 # define ex_cnext ex_ni
112 # define ex_cfile ex_ni
113 # define qf_list ex_ni
114 # define qf_age ex_ni
115 # define ex_helpgrep ex_ni
116 # define ex_vimgrep ex_ni
117 #endif
118 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
119 # define ex_cclose ex_ni
120 # define ex_copen ex_ni
121 # define ex_cwindow ex_ni
122 #endif
123 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
124 # define ex_cexpr ex_ni
125 #endif
127 static int check_more __ARGS((int, int));
128 static linenr_T get_address __ARGS((char_u **, int skip, int to_other_file));
129 static void get_flags __ARGS((exarg_T *eap));
130 #if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
131 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
132 # define HAVE_EX_SCRIPT_NI
133 static void ex_script_ni __ARGS((exarg_T *eap));
134 #endif
135 static char_u *invalid_range __ARGS((exarg_T *eap));
136 static void correct_range __ARGS((exarg_T *eap));
137 #ifdef FEAT_QUICKFIX
138 static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
139 #endif
140 static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
141 static void ex_highlight __ARGS((exarg_T *eap));
142 static void ex_colorscheme __ARGS((exarg_T *eap));
143 static void ex_quit __ARGS((exarg_T *eap));
144 static void ex_cquit __ARGS((exarg_T *eap));
145 static void ex_quit_all __ARGS((exarg_T *eap));
146 #ifdef FEAT_WINDOWS
147 static void ex_close __ARGS((exarg_T *eap));
148 static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
149 static void ex_only __ARGS((exarg_T *eap));
150 static void ex_resize __ARGS((exarg_T *eap));
151 static void ex_stag __ARGS((exarg_T *eap));
152 static void ex_tabclose __ARGS((exarg_T *eap));
153 static void ex_tabonly __ARGS((exarg_T *eap));
154 static void ex_tabnext __ARGS((exarg_T *eap));
155 static void ex_tabmove __ARGS((exarg_T *eap));
156 static void ex_tabs __ARGS((exarg_T *eap));
157 #else
158 # define ex_close ex_ni
159 # define ex_only ex_ni
160 # define ex_all ex_ni
161 # define ex_resize ex_ni
162 # define ex_splitview ex_ni
163 # define ex_stag ex_ni
164 # define ex_tabnext ex_ni
165 # define ex_tabmove ex_ni
166 # define ex_tabs ex_ni
167 # define ex_tabclose ex_ni
168 # define ex_tabonly ex_ni
169 #endif
170 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
171 static void ex_pclose __ARGS((exarg_T *eap));
172 static void ex_ptag __ARGS((exarg_T *eap));
173 static void ex_pedit __ARGS((exarg_T *eap));
174 #else
175 # define ex_pclose ex_ni
176 # define ex_ptag ex_ni
177 # define ex_pedit ex_ni
178 #endif
179 static void ex_hide __ARGS((exarg_T *eap));
180 static void ex_stop __ARGS((exarg_T *eap));
181 static void ex_exit __ARGS((exarg_T *eap));
182 static void ex_print __ARGS((exarg_T *eap));
183 #ifdef FEAT_BYTEOFF
184 static void ex_goto __ARGS((exarg_T *eap));
185 #else
186 # define ex_goto ex_ni
187 #endif
188 static void ex_shell __ARGS((exarg_T *eap));
189 static void ex_preserve __ARGS((exarg_T *eap));
190 static void ex_recover __ARGS((exarg_T *eap));
191 #ifndef FEAT_LISTCMDS
192 # define ex_argedit ex_ni
193 # define ex_argadd ex_ni
194 # define ex_argdelete ex_ni
195 # define ex_listdo ex_ni
196 #endif
197 static void ex_mode __ARGS((exarg_T *eap));
198 static void ex_wrongmodifier __ARGS((exarg_T *eap));
199 static void ex_find __ARGS((exarg_T *eap));
200 static void ex_open __ARGS((exarg_T *eap));
201 static void ex_edit __ARGS((exarg_T *eap));
202 #if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
203 # define ex_drop ex_ni
204 #endif
205 #ifndef FEAT_GUI
206 # define ex_gui ex_nogui
207 static void ex_nogui __ARGS((exarg_T *eap));
208 #endif
209 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
210 static void ex_tearoff __ARGS((exarg_T *eap));
211 #else
212 # define ex_tearoff ex_ni
213 #endif
214 #if defined(FEAT_MENU) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
215 || defined(FEAT_GUI_MACVIM))
216 static void ex_popup __ARGS((exarg_T *eap));
217 #else
218 # define ex_popup ex_ni
219 #endif
220 #ifndef FEAT_GUI_MSWIN
221 # define ex_simalt ex_ni
222 #endif
223 #if !(defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) || \
224 defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MACVIM))
225 # define gui_mch_find_dialog ex_ni
226 # define gui_mch_replace_dialog ex_ni
227 #endif
228 #if !defined(FEAT_GUI_GTK)
229 # define ex_helpfind ex_ni
230 #endif
231 #ifndef FEAT_CSCOPE
232 # define do_cscope ex_ni
233 # define do_scscope ex_ni
234 # define do_cstag ex_ni
235 #endif
236 #ifndef FEAT_SYN_HL
237 # define ex_syntax ex_ni
238 #endif
239 #ifndef FEAT_SPELL
240 # define ex_spell ex_ni
241 # define ex_mkspell ex_ni
242 # define ex_spelldump ex_ni
243 # define ex_spellinfo ex_ni
244 # define ex_spellrepall ex_ni
245 #endif
246 #ifndef FEAT_MZSCHEME
247 # define ex_mzscheme ex_script_ni
248 # define ex_mzfile ex_ni
249 #endif
250 #ifndef FEAT_PERL
251 # define ex_perl ex_script_ni
252 # define ex_perldo ex_ni
253 #endif
254 #ifndef FEAT_PYTHON
255 # define ex_python ex_script_ni
256 # define ex_pyfile ex_ni
257 #endif
258 #ifndef FEAT_TCL
259 # define ex_tcl ex_script_ni
260 # define ex_tcldo ex_ni
261 # define ex_tclfile ex_ni
262 #endif
263 #ifndef FEAT_RUBY
264 # define ex_ruby ex_script_ni
265 # define ex_rubydo ex_ni
266 # define ex_rubyfile ex_ni
267 #endif
268 #ifndef FEAT_SNIFF
269 # define ex_sniff ex_ni
270 #endif
271 #ifndef FEAT_KEYMAP
272 # define ex_loadkeymap ex_ni
273 #endif
274 static void ex_swapname __ARGS((exarg_T *eap));
275 static void ex_syncbind __ARGS((exarg_T *eap));
276 static void ex_read __ARGS((exarg_T *eap));
277 static void ex_pwd __ARGS((exarg_T *eap));
278 static void ex_equal __ARGS((exarg_T *eap));
279 static void ex_sleep __ARGS((exarg_T *eap));
280 static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
281 static void ex_winsize __ARGS((exarg_T *eap));
282 #ifdef FEAT_WINDOWS
283 static void ex_wincmd __ARGS((exarg_T *eap));
284 #else
285 # define ex_wincmd ex_ni
286 #endif
287 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
288 static void ex_winpos __ARGS((exarg_T *eap));
289 #else
290 # define ex_winpos ex_ni
291 #endif
292 static void ex_operators __ARGS((exarg_T *eap));
293 static void ex_put __ARGS((exarg_T *eap));
294 static void ex_copymove __ARGS((exarg_T *eap));
295 static void ex_may_print __ARGS((exarg_T *eap));
296 static void ex_submagic __ARGS((exarg_T *eap));
297 static void ex_join __ARGS((exarg_T *eap));
298 static void ex_at __ARGS((exarg_T *eap));
299 static void ex_bang __ARGS((exarg_T *eap));
300 static void ex_undo __ARGS((exarg_T *eap));
301 static void ex_redo __ARGS((exarg_T *eap));
302 static void ex_later __ARGS((exarg_T *eap));
303 static void ex_redir __ARGS((exarg_T *eap));
304 static void ex_redraw __ARGS((exarg_T *eap));
305 static void ex_redrawstatus __ARGS((exarg_T *eap));
306 static void close_redir __ARGS((void));
307 static void ex_mkrc __ARGS((exarg_T *eap));
308 static void ex_mark __ARGS((exarg_T *eap));
309 #ifdef FEAT_USR_CMDS
310 static char_u *uc_fun_cmd __ARGS((void));
311 static char_u *find_ucmd __ARGS((exarg_T *eap, char_u *p, int *full, expand_T *xp, int *compl));
312 #endif
313 #ifdef FEAT_EX_EXTRA
314 static void ex_normal __ARGS((exarg_T *eap));
315 static void ex_startinsert __ARGS((exarg_T *eap));
316 static void ex_stopinsert __ARGS((exarg_T *eap));
317 #else
318 # define ex_normal ex_ni
319 # define ex_align ex_ni
320 # define ex_retab ex_ni
321 # define ex_startinsert ex_ni
322 # define ex_stopinsert ex_ni
323 # define ex_helptags ex_ni
324 # define ex_sort ex_ni
325 #endif
326 #ifdef FEAT_FIND_ID
327 static void ex_checkpath __ARGS((exarg_T *eap));
328 static void ex_findpat __ARGS((exarg_T *eap));
329 #else
330 # define ex_findpat ex_ni
331 # define ex_checkpath ex_ni
332 #endif
333 #if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
334 static void ex_psearch __ARGS((exarg_T *eap));
335 #else
336 # define ex_psearch ex_ni
337 #endif
338 static void ex_tag __ARGS((exarg_T *eap));
339 static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
340 #ifndef FEAT_EVAL
341 # define ex_scriptnames ex_ni
342 # define ex_finish ex_ni
343 # define ex_echo ex_ni
344 # define ex_echohl ex_ni
345 # define ex_execute ex_ni
346 # define ex_call ex_ni
347 # define ex_if ex_ni
348 # define ex_endif ex_ni
349 # define ex_else ex_ni
350 # define ex_while ex_ni
351 # define ex_for ex_ni
352 # define ex_continue ex_ni
353 # define ex_break ex_ni
354 # define ex_endwhile ex_ni
355 # define ex_endfor ex_ni
356 # define ex_throw ex_ni
357 # define ex_try ex_ni
358 # define ex_catch ex_ni
359 # define ex_finally ex_ni
360 # define ex_endtry ex_ni
361 # define ex_endfunction ex_ni
362 # define ex_let ex_ni
363 # define ex_unlet ex_ni
364 # define ex_lockvar ex_ni
365 # define ex_unlockvar ex_ni
366 # define ex_function ex_ni
367 # define ex_delfunction ex_ni
368 # define ex_return ex_ni
369 # define ex_oldfiles ex_ni
370 #endif
371 static char_u *arg_all __ARGS((void));
372 #ifdef FEAT_SESSION
373 static int makeopens __ARGS((FILE *fd, char_u *dirnow));
374 static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp, int current_arg_idx));
375 static void ex_loadview __ARGS((exarg_T *eap));
376 static char_u *get_view_file __ARGS((int c));
377 static int did_lcd; /* whether ":lcd" was produced for a session */
378 #else
379 # define ex_loadview ex_ni
380 #endif
381 #ifndef FEAT_EVAL
382 # define ex_compiler ex_ni
383 #endif
384 #ifdef FEAT_VIMINFO
385 static void ex_viminfo __ARGS((exarg_T *eap));
386 #else
387 # define ex_viminfo ex_ni
388 #endif
389 static void ex_behave __ARGS((exarg_T *eap));
390 #ifdef FEAT_AUTOCMD
391 static void ex_filetype __ARGS((exarg_T *eap));
392 static void ex_setfiletype __ARGS((exarg_T *eap));
393 #else
394 # define ex_filetype ex_ni
395 # define ex_setfiletype ex_ni
396 #endif
397 #ifndef FEAT_DIFF
398 # define ex_diffoff ex_ni
399 # define ex_diffpatch ex_ni
400 # define ex_diffgetput ex_ni
401 # define ex_diffsplit ex_ni
402 # define ex_diffthis ex_ni
403 # define ex_diffupdate ex_ni
404 #endif
405 static void ex_digraphs __ARGS((exarg_T *eap));
406 static void ex_set __ARGS((exarg_T *eap));
407 #if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
408 # define ex_options ex_ni
409 #endif
410 #ifdef FEAT_SEARCH_EXTRA
411 static void ex_nohlsearch __ARGS((exarg_T *eap));
412 static void ex_match __ARGS((exarg_T *eap));
413 #else
414 # define ex_nohlsearch ex_ni
415 # define ex_match ex_ni
416 #endif
417 #ifdef FEAT_CRYPT
418 static void ex_X __ARGS((exarg_T *eap));
419 #else
420 # define ex_X ex_ni
421 #endif
422 #ifdef FEAT_FOLDING
423 static void ex_fold __ARGS((exarg_T *eap));
424 static void ex_foldopen __ARGS((exarg_T *eap));
425 static void ex_folddo __ARGS((exarg_T *eap));
426 #else
427 # define ex_fold ex_ni
428 # define ex_foldopen ex_ni
429 # define ex_folddo ex_ni
430 #endif
431 #if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
432 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
433 # define ex_language ex_ni
434 #endif
435 #ifndef FEAT_SIGNS
436 # define ex_sign ex_ni
437 #endif
438 #ifndef FEAT_SUN_WORKSHOP
439 # define ex_wsverb ex_ni
440 #endif
441 #ifndef FEAT_NETBEANS_INTG
442 # define ex_nbkey ex_ni
443 #endif
445 #ifndef FEAT_EVAL
446 # define ex_debug ex_ni
447 # define ex_breakadd ex_ni
448 # define ex_debuggreedy ex_ni
449 # define ex_breakdel ex_ni
450 # define ex_breaklist ex_ni
451 #endif
453 #ifndef FEAT_CMDHIST
454 # define ex_history ex_ni
455 #endif
456 #ifndef FEAT_JUMPLIST
457 # define ex_jumps ex_ni
458 # define ex_changes ex_ni
459 #endif
461 #ifndef FEAT_PROFILE
462 # define ex_profile ex_ni
463 #endif
465 #ifndef FEAT_GUI_MACVIM
466 # define ex_macaction ex_ni
467 # define ex_macmenu ex_ni
468 #endif
471 * Declare cmdnames[].
473 #define DO_DECLARE_EXCMD
474 #include "ex_cmds.h"
477 * Table used to quickly search for a command, based on its first character.
479 static cmdidx_T cmdidxs[27] =
481 CMD_append,
482 CMD_buffer,
483 CMD_change,
484 CMD_delete,
485 CMD_edit,
486 CMD_file,
487 CMD_global,
488 CMD_help,
489 CMD_insert,
490 CMD_join,
491 CMD_k,
492 CMD_list,
493 CMD_move,
494 CMD_next,
495 CMD_open,
496 CMD_print,
497 CMD_quit,
498 CMD_read,
499 CMD_substitute,
500 CMD_t,
501 CMD_undo,
502 CMD_vglobal,
503 CMD_write,
504 CMD_xit,
505 CMD_yank,
506 CMD_z,
507 CMD_bang
510 static char_u dollar_command[2] = {'$', 0};
513 #ifdef FEAT_EVAL
514 /* Struct for storing a line inside a while/for loop */
515 typedef struct
517 char_u *line; /* command line */
518 linenr_T lnum; /* sourcing_lnum of the line */
519 } wcmd_T;
522 * Structure used to store info for line position in a while or for loop.
523 * This is required, because do_one_cmd() may invoke ex_function(), which
524 * reads more lines that may come from the while/for loop.
526 struct loop_cookie
528 garray_T *lines_gap; /* growarray with line info */
529 int current_line; /* last read line from growarray */
530 int repeating; /* TRUE when looping a second time */
531 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
532 char_u *(*getline) __ARGS((int, void *, int));
533 void *cookie;
536 static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
537 static int store_loop_line __ARGS((garray_T *gap, char_u *line));
538 static void free_cmdlines __ARGS((garray_T *gap));
540 /* Struct to save a few things while debugging. Used in do_cmdline() only. */
541 struct dbg_stuff
543 int trylevel;
544 int force_abort;
545 except_T *caught_stack;
546 char_u *vv_exception;
547 char_u *vv_throwpoint;
548 int did_emsg;
549 int got_int;
550 int did_throw;
551 int need_rethrow;
552 int check_cstack;
553 except_T *current_exception;
556 static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
557 static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
559 static void
560 save_dbg_stuff(dsp)
561 struct dbg_stuff *dsp;
563 dsp->trylevel = trylevel; trylevel = 0;
564 dsp->force_abort = force_abort; force_abort = FALSE;
565 dsp->caught_stack = caught_stack; caught_stack = NULL;
566 dsp->vv_exception = v_exception(NULL);
567 dsp->vv_throwpoint = v_throwpoint(NULL);
569 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
570 dsp->did_emsg = did_emsg; did_emsg = FALSE;
571 dsp->got_int = got_int; got_int = FALSE;
572 dsp->did_throw = did_throw; did_throw = FALSE;
573 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
574 dsp->check_cstack = check_cstack; check_cstack = FALSE;
575 dsp->current_exception = current_exception; current_exception = NULL;
578 static void
579 restore_dbg_stuff(dsp)
580 struct dbg_stuff *dsp;
582 suppress_errthrow = FALSE;
583 trylevel = dsp->trylevel;
584 force_abort = dsp->force_abort;
585 caught_stack = dsp->caught_stack;
586 (void)v_exception(dsp->vv_exception);
587 (void)v_throwpoint(dsp->vv_throwpoint);
588 did_emsg = dsp->did_emsg;
589 got_int = dsp->got_int;
590 did_throw = dsp->did_throw;
591 need_rethrow = dsp->need_rethrow;
592 check_cstack = dsp->check_cstack;
593 current_exception = dsp->current_exception;
595 #endif
599 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
600 * command is given.
602 void
603 do_exmode(improved)
604 int improved; /* TRUE for "improved Ex" mode */
606 int save_msg_scroll;
607 int prev_msg_row;
608 linenr_T prev_line;
609 int changedtick;
611 if (improved)
612 exmode_active = EXMODE_VIM;
613 else
614 exmode_active = EXMODE_NORMAL;
615 State = NORMAL;
617 /* When using ":global /pat/ visual" and then "Q" we return to continue
618 * the :global command. */
619 if (global_busy)
620 return;
622 save_msg_scroll = msg_scroll;
623 ++RedrawingDisabled; /* don't redisplay the window */
624 ++no_wait_return; /* don't wait for return */
625 #ifdef FEAT_GUI
626 /* Ignore scrollbar and mouse events in Ex mode */
627 ++hold_gui_events;
628 #endif
629 #ifdef FEAT_SNIFF
630 want_sniff_request = 0; /* No K_SNIFF wanted */
631 #endif
633 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
634 while (exmode_active)
636 #ifdef FEAT_EX_EXTRA
637 /* Check for a ":normal" command and no more characters left. */
638 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
640 exmode_active = FALSE;
641 break;
643 #endif
644 msg_scroll = TRUE;
645 need_wait_return = FALSE;
646 ex_pressedreturn = FALSE;
647 ex_no_reprint = FALSE;
648 changedtick = curbuf->b_changedtick;
649 prev_msg_row = msg_row;
650 prev_line = curwin->w_cursor.lnum;
651 #ifdef FEAT_SNIFF
652 ProcessSniffRequests();
653 #endif
654 if (improved)
656 cmdline_row = msg_row;
657 do_cmdline(NULL, getexline, NULL, 0);
659 else
660 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
661 lines_left = Rows - 1;
663 if ((prev_line != curwin->w_cursor.lnum
664 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
666 if (curbuf->b_ml.ml_flags & ML_EMPTY)
667 EMSG(_(e_emptybuf));
668 else
670 if (ex_pressedreturn)
672 /* go up one line, to overwrite the ":<CR>" line, so the
673 * output doesn't contain empty lines. */
674 msg_row = prev_msg_row;
675 if (prev_msg_row == Rows - 1)
676 msg_row--;
678 msg_col = 0;
679 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
680 msg_clr_eos();
683 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
685 if (curbuf->b_ml.ml_flags & ML_EMPTY)
686 EMSG(_(e_emptybuf));
687 else
688 EMSG(_("E501: At end-of-file"));
692 #ifdef FEAT_GUI
693 --hold_gui_events;
694 #endif
695 --RedrawingDisabled;
696 --no_wait_return;
697 update_screen(CLEAR);
698 need_wait_return = FALSE;
699 msg_scroll = save_msg_scroll;
703 * Execute a simple command line. Used for translated commands like "*".
706 do_cmdline_cmd(cmd)
707 char_u *cmd;
709 return do_cmdline(cmd, NULL, NULL,
710 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
714 * do_cmdline(): execute one Ex command line
716 * 1. Execute "cmdline" when it is not NULL.
717 * If "cmdline" is NULL, or more lines are needed, getline() is used.
718 * 2. Split up in parts separated with '|'.
720 * This function can be called recursively!
722 * flags:
723 * DOCMD_VERBOSE - The command will be included in the error message.
724 * DOCMD_NOWAIT - Don't call wait_return() and friends.
725 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
726 * DOCMD_KEYTYPED - Don't reset KeyTyped.
727 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
728 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
730 * return FAIL if cmdline could not be executed, OK otherwise
733 do_cmdline(cmdline, getline, cookie, flags)
734 char_u *cmdline;
735 char_u *(*getline) __ARGS((int, void *, int));
736 void *cookie; /* argument for getline() */
737 int flags;
739 char_u *next_cmdline; /* next cmd to execute */
740 char_u *cmdline_copy = NULL; /* copy of cmd line */
741 int used_getline = FALSE; /* used "getline" to obtain command */
742 static int recursive = 0; /* recursive depth */
743 int msg_didout_before_start = 0;
744 int count = 0; /* line number count */
745 int did_inc = FALSE; /* incremented RedrawingDisabled */
746 int retval = OK;
747 #ifdef FEAT_EVAL
748 struct condstack cstack; /* conditional stack */
749 garray_T lines_ga; /* keep lines for ":while"/":for" */
750 int current_line = 0; /* active line in lines_ga */
751 char_u *fname = NULL; /* function or script name */
752 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
753 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
754 struct dbg_stuff debug_saved; /* saved things for debug mode */
755 int initial_trylevel;
756 struct msglist **saved_msg_list = NULL;
757 struct msglist *private_msg_list;
759 /* "getline" and "cookie" passed to do_one_cmd() */
760 char_u *(*cmd_getline) __ARGS((int, void *, int));
761 void *cmd_cookie;
762 struct loop_cookie cmd_loop_cookie;
763 void *real_cookie;
764 int getline_is_func;
765 #else
766 # define cmd_getline getline
767 # define cmd_cookie cookie
768 #endif
769 static int call_depth = 0; /* recursiveness */
771 #ifdef FEAT_EVAL
772 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
773 * location for storing error messages to be converted to an exception.
774 * This ensures that the do_errthrow() call in do_one_cmd() does not
775 * combine the messages stored by an earlier invocation of do_one_cmd()
776 * with the command name of the later one. This would happen when
777 * BufWritePost autocommands are executed after a write error. */
778 saved_msg_list = msg_list;
779 msg_list = &private_msg_list;
780 private_msg_list = NULL;
781 #endif
783 /* It's possible to create an endless loop with ":execute", catch that
784 * here. The value of 200 allows nested function calls, ":source", etc. */
785 if (call_depth == 200)
787 EMSG(_("E169: Command too recursive"));
788 #ifdef FEAT_EVAL
789 /* When converting to an exception, we do not include the command name
790 * since this is not an error of the specific command. */
791 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
792 msg_list = saved_msg_list;
793 #endif
794 return FAIL;
796 ++call_depth;
798 #ifdef FEAT_EVAL
799 cstack.cs_idx = -1;
800 cstack.cs_looplevel = 0;
801 cstack.cs_trylevel = 0;
802 cstack.cs_emsg_silent_list = NULL;
803 cstack.cs_lflags = 0;
804 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
806 real_cookie = getline_cookie(getline, cookie);
808 /* Inside a function use a higher nesting level. */
809 getline_is_func = getline_equal(getline, cookie, get_func_line);
810 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
811 ++ex_nesting_level;
813 /* Get the function or script name and the address where the next breakpoint
814 * line and the debug tick for a function or script are stored. */
815 if (getline_is_func)
817 fname = func_name(real_cookie);
818 breakpoint = func_breakpoint(real_cookie);
819 dbg_tick = func_dbg_tick(real_cookie);
821 else if (getline_equal(getline, cookie, getsourceline))
823 fname = sourcing_name;
824 breakpoint = source_breakpoint(real_cookie);
825 dbg_tick = source_dbg_tick(real_cookie);
829 * Initialize "force_abort" and "suppress_errthrow" at the top level.
831 if (!recursive)
833 force_abort = FALSE;
834 suppress_errthrow = FALSE;
838 * If requested, store and reset the global values controlling the
839 * exception handling (used when debugging). Otherwise clear it to avoid
840 * a bogus compiler warning when the optimizer uses inline functions...
842 if (flags & DOCMD_EXCRESET)
843 save_dbg_stuff(&debug_saved);
844 else
845 memset(&debug_saved, 0, 1);
847 initial_trylevel = trylevel;
850 * "did_throw" will be set to TRUE when an exception is being thrown.
852 did_throw = FALSE;
853 #endif
855 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
856 * cancel the whole command line, and any if/endif or loop.
857 * If force_abort is set, we cancel everything.
859 did_emsg = FALSE;
862 * KeyTyped is only set when calling vgetc(). Reset it here when not
863 * calling vgetc() (sourced command lines).
865 if (!(flags & DOCMD_KEYTYPED) && !getline_equal(getline, cookie, getexline))
866 KeyTyped = FALSE;
869 * Continue executing command lines:
870 * - when inside an ":if", ":while" or ":for"
871 * - for multiple commands on one line, separated with '|'
872 * - when repeating until there are no more lines (for ":source")
874 next_cmdline = cmdline;
877 #ifdef FEAT_EVAL
878 getline_is_func = getline_equal(getline, cookie, get_func_line);
879 #endif
881 /* stop skipping cmds for an error msg after all endif/while/for */
882 if (next_cmdline == NULL
883 #ifdef FEAT_EVAL
884 && !force_abort
885 && cstack.cs_idx < 0
886 && !(getline_is_func && func_has_abort(real_cookie))
887 #endif
889 did_emsg = FALSE;
892 * 1. If repeating a line in a loop, get a line from lines_ga.
893 * 2. If no line given: Get an allocated line with getline().
894 * 3. If a line is given: Make a copy, so we can mess with it.
897 #ifdef FEAT_EVAL
898 /* 1. If repeating, get a previous line from lines_ga. */
899 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
901 /* Each '|' separated command is stored separately in lines_ga, to
902 * be able to jump to it. Don't use next_cmdline now. */
903 vim_free(cmdline_copy);
904 cmdline_copy = NULL;
906 /* Check if a function has returned or, unless it has an unclosed
907 * try conditional, aborted. */
908 if (getline_is_func)
910 # ifdef FEAT_PROFILE
911 if (do_profiling == PROF_YES)
912 func_line_end(real_cookie);
913 # endif
914 if (func_has_ended(real_cookie))
916 retval = FAIL;
917 break;
920 #ifdef FEAT_PROFILE
921 else if (do_profiling == PROF_YES
922 && getline_equal(getline, cookie, getsourceline))
923 script_line_end();
924 #endif
926 /* Check if a sourced file hit a ":finish" command. */
927 if (source_finished(getline, cookie))
929 retval = FAIL;
930 break;
933 /* If breakpoints have been added/deleted need to check for it. */
934 if (breakpoint != NULL && dbg_tick != NULL
935 && *dbg_tick != debug_tick)
937 *breakpoint = dbg_find_breakpoint(
938 getline_equal(getline, cookie, getsourceline),
939 fname, sourcing_lnum);
940 *dbg_tick = debug_tick;
943 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
944 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
946 /* Did we encounter a breakpoint? */
947 if (breakpoint != NULL && *breakpoint != 0
948 && *breakpoint <= sourcing_lnum)
950 dbg_breakpoint(fname, sourcing_lnum);
951 /* Find next breakpoint. */
952 *breakpoint = dbg_find_breakpoint(
953 getline_equal(getline, cookie, getsourceline),
954 fname, sourcing_lnum);
955 *dbg_tick = debug_tick;
957 # ifdef FEAT_PROFILE
958 if (do_profiling == PROF_YES)
960 if (getline_is_func)
961 func_line_start(real_cookie);
962 else if (getline_equal(getline, cookie, getsourceline))
963 script_line_start();
965 # endif
968 if (cstack.cs_looplevel > 0)
970 /* Inside a while/for loop we need to store the lines and use them
971 * again. Pass a different "getline" function to do_one_cmd()
972 * below, so that it stores lines in or reads them from
973 * "lines_ga". Makes it possible to define a function inside a
974 * while/for loop. */
975 cmd_getline = get_loop_line;
976 cmd_cookie = (void *)&cmd_loop_cookie;
977 cmd_loop_cookie.lines_gap = &lines_ga;
978 cmd_loop_cookie.current_line = current_line;
979 cmd_loop_cookie.getline = getline;
980 cmd_loop_cookie.cookie = cookie;
981 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
983 else
985 cmd_getline = getline;
986 cmd_cookie = cookie;
988 #endif
990 /* 2. If no line given, get an allocated line with getline(). */
991 if (next_cmdline == NULL)
994 * Need to set msg_didout for the first line after an ":if",
995 * otherwise the ":if" will be overwritten.
997 if (count == 1 && getline_equal(getline, cookie, getexline))
998 msg_didout = TRUE;
999 if (getline == NULL || (next_cmdline = getline(':', cookie,
1000 #ifdef FEAT_EVAL
1001 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
1002 #else
1004 #endif
1005 )) == NULL)
1007 /* Don't call wait_return for aborted command line. The NULL
1008 * returned for the end of a sourced file or executed function
1009 * doesn't do this. */
1010 if (KeyTyped && !(flags & DOCMD_REPEAT))
1011 need_wait_return = FALSE;
1012 retval = FAIL;
1013 break;
1015 used_getline = TRUE;
1018 * Keep the first typed line. Clear it when more lines are typed.
1020 if (flags & DOCMD_KEEPLINE)
1022 vim_free(repeat_cmdline);
1023 if (count == 0)
1024 repeat_cmdline = vim_strsave(next_cmdline);
1025 else
1026 repeat_cmdline = NULL;
1030 /* 3. Make a copy of the command so we can mess with it. */
1031 else if (cmdline_copy == NULL)
1033 next_cmdline = vim_strsave(next_cmdline);
1034 if (next_cmdline == NULL)
1036 EMSG(_(e_outofmem));
1037 retval = FAIL;
1038 break;
1041 cmdline_copy = next_cmdline;
1043 #ifdef FEAT_EVAL
1045 * Save the current line when inside a ":while" or ":for", and when
1046 * the command looks like a ":while" or ":for", because we may need it
1047 * later. When there is a '|' and another command, it is stored
1048 * separately, because we need to be able to jump back to it from an
1049 * :endwhile/:endfor.
1051 if (current_line == lines_ga.ga_len
1052 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
1054 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
1056 retval = FAIL;
1057 break;
1060 did_endif = FALSE;
1061 #endif
1063 if (count++ == 0)
1066 * All output from the commands is put below each other, without
1067 * waiting for a return. Don't do this when executing commands
1068 * from a script or when being called recursive (e.g. for ":e
1069 * +command file").
1071 if (!(flags & DOCMD_NOWAIT) && !recursive)
1073 msg_didout_before_start = msg_didout;
1074 msg_didany = FALSE; /* no output yet */
1075 msg_start();
1076 msg_scroll = TRUE; /* put messages below each other */
1077 ++no_wait_return; /* dont wait for return until finished */
1078 ++RedrawingDisabled;
1079 did_inc = TRUE;
1083 if (p_verbose >= 15 && sourcing_name != NULL)
1085 ++no_wait_return;
1086 verbose_enter_scroll();
1088 smsg((char_u *)_("line %ld: %s"),
1089 (long)sourcing_lnum, cmdline_copy);
1090 if (msg_silent == 0)
1091 msg_puts((char_u *)"\n"); /* don't overwrite this */
1093 verbose_leave_scroll();
1094 --no_wait_return;
1098 * 2. Execute one '|' separated command.
1099 * do_one_cmd() will return NULL if there is no trailing '|'.
1100 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1102 ++recursive;
1103 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1104 #ifdef FEAT_EVAL
1105 &cstack,
1106 #endif
1107 cmd_getline, cmd_cookie);
1108 --recursive;
1110 #ifdef FEAT_EVAL
1111 if (cmd_cookie == (void *)&cmd_loop_cookie)
1112 /* Use "current_line" from "cmd_loop_cookie", it may have been
1113 * incremented when defining a function. */
1114 current_line = cmd_loop_cookie.current_line;
1115 #endif
1117 if (next_cmdline == NULL)
1119 vim_free(cmdline_copy);
1120 cmdline_copy = NULL;
1121 #ifdef FEAT_CMDHIST
1123 * If the command was typed, remember it for the ':' register.
1124 * Do this AFTER executing the command to make :@: work.
1126 if (getline_equal(getline, cookie, getexline)
1127 && new_last_cmdline != NULL)
1129 vim_free(last_cmdline);
1130 last_cmdline = new_last_cmdline;
1131 new_last_cmdline = NULL;
1133 #endif
1135 else
1137 /* need to copy the command after the '|' to cmdline_copy, for the
1138 * next do_one_cmd() */
1139 STRMOVE(cmdline_copy, next_cmdline);
1140 next_cmdline = cmdline_copy;
1144 #ifdef FEAT_EVAL
1145 /* reset did_emsg for a function that is not aborted by an error */
1146 if (did_emsg && !force_abort
1147 && getline_equal(getline, cookie, get_func_line)
1148 && !func_has_abort(real_cookie))
1149 did_emsg = FALSE;
1151 if (cstack.cs_looplevel > 0)
1153 ++current_line;
1156 * An ":endwhile", ":endfor" and ":continue" is handled here.
1157 * If we were executing commands, jump back to the ":while" or
1158 * ":for".
1159 * If we were not executing commands, decrement cs_looplevel.
1161 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
1163 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
1165 /* Jump back to the matching ":while" or ":for". Be careful
1166 * not to use a cs_line[] from an entry that isn't a ":while"
1167 * or ":for": It would make "current_line" invalid and can
1168 * cause a crash. */
1169 if (!did_emsg && !got_int && !did_throw
1170 && cstack.cs_idx >= 0
1171 && (cstack.cs_flags[cstack.cs_idx]
1172 & (CSF_WHILE | CSF_FOR))
1173 && cstack.cs_line[cstack.cs_idx] >= 0
1174 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1176 current_line = cstack.cs_line[cstack.cs_idx];
1177 /* remember we jumped there */
1178 cstack.cs_lflags |= CSL_HAD_LOOP;
1179 line_breakcheck(); /* check if CTRL-C typed */
1181 /* Check for the next breakpoint at or after the ":while"
1182 * or ":for". */
1183 if (breakpoint != NULL)
1185 *breakpoint = dbg_find_breakpoint(
1186 getline_equal(getline, cookie, getsourceline),
1187 fname,
1188 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1189 *dbg_tick = debug_tick;
1192 else
1194 /* can only get here with ":endwhile" or ":endfor" */
1195 if (cstack.cs_idx >= 0)
1196 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1197 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
1202 * For a ":while" or ":for" we need to remember the line number.
1204 else if (cstack.cs_lflags & CSL_HAD_LOOP)
1206 cstack.cs_lflags &= ~CSL_HAD_LOOP;
1207 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1212 * When not inside any ":while" loop, clear remembered lines.
1214 if (cstack.cs_looplevel == 0)
1216 if (lines_ga.ga_len > 0)
1218 sourcing_lnum =
1219 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1220 free_cmdlines(&lines_ga);
1222 current_line = 0;
1226 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1227 * being restored at the ":endtry". Reset them here and set the
1228 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1229 * This includes the case where a missing ":endif", ":endwhile" or
1230 * ":endfor" was detected by the ":finally" itself.
1232 if (cstack.cs_lflags & CSL_HAD_FINA)
1234 cstack.cs_lflags &= ~CSL_HAD_FINA;
1235 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1236 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
1237 did_throw ? (void *)current_exception : NULL);
1238 did_emsg = got_int = did_throw = FALSE;
1239 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1242 /* Update global "trylevel" for recursive calls to do_cmdline() from
1243 * within this loop. */
1244 trylevel = initial_trylevel + cstack.cs_trylevel;
1247 * If the outermost try conditional (across function calls and sourced
1248 * files) is aborted because of an error, an interrupt, or an uncaught
1249 * exception, cancel everything. If it is left normally, reset
1250 * force_abort to get the non-EH compatible abortion behavior for
1251 * the rest of the script.
1253 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1254 force_abort = FALSE;
1256 /* Convert an interrupt to an exception if appropriate. */
1257 (void)do_intthrow(&cstack);
1258 #endif /* FEAT_EVAL */
1262 * Continue executing command lines when:
1263 * - no CTRL-C typed, no aborting error, no exception thrown or try
1264 * conditionals need to be checked for executing finally clauses or
1265 * catching an interrupt exception
1266 * - didn't get an error message or lines are not typed
1267 * - there is a command after '|', inside a :if, :while, :for or :try, or
1268 * looping for ":source" command or function call.
1270 while (!((got_int
1271 #ifdef FEAT_EVAL
1272 || (did_emsg && force_abort) || did_throw
1273 #endif
1275 #ifdef FEAT_EVAL
1276 && cstack.cs_trylevel == 0
1277 #endif
1279 && !(did_emsg && used_getline
1280 && (getline_equal(getline, cookie, getexmodeline)
1281 || getline_equal(getline, cookie, getexline)))
1282 && (next_cmdline != NULL
1283 #ifdef FEAT_EVAL
1284 || cstack.cs_idx >= 0
1285 #endif
1286 || (flags & DOCMD_REPEAT)));
1288 vim_free(cmdline_copy);
1289 #ifdef FEAT_EVAL
1290 free_cmdlines(&lines_ga);
1291 ga_clear(&lines_ga);
1293 if (cstack.cs_idx >= 0)
1296 * If a sourced file or executed function ran to its end, report the
1297 * unclosed conditional.
1299 if (!got_int && !did_throw
1300 && ((getline_equal(getline, cookie, getsourceline)
1301 && !source_finished(getline, cookie))
1302 || (getline_equal(getline, cookie, get_func_line)
1303 && !func_has_ended(real_cookie))))
1305 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1306 EMSG(_(e_endtry));
1307 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1308 EMSG(_(e_endwhile));
1309 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1310 EMSG(_(e_endfor));
1311 else
1312 EMSG(_(e_endif));
1316 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1317 * ":endtry" in a sourced file or executed function. If the try
1318 * conditional is in its finally clause, ignore anything pending.
1319 * If it is in a catch clause, finish the caught exception.
1320 * Also cleanup any "cs_forinfo" structures.
1324 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1326 if (idx >= 0)
1327 --idx; /* remove try block not in its finally clause */
1328 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1329 &cstack.cs_looplevel);
1331 while (cstack.cs_idx >= 0);
1332 trylevel = initial_trylevel;
1335 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1336 * lack was reported above and the error message is to be converted to an
1337 * exception, do this now after rewinding the cstack. */
1338 do_errthrow(&cstack, getline_equal(getline, cookie, get_func_line)
1339 ? (char_u *)"endfunction" : (char_u *)NULL);
1341 if (trylevel == 0)
1344 * When an exception is being thrown out of the outermost try
1345 * conditional, discard the uncaught exception, disable the conversion
1346 * of interrupts or errors to exceptions, and ensure that no more
1347 * commands are executed.
1349 if (did_throw)
1351 void *p = NULL;
1352 char_u *saved_sourcing_name;
1353 int saved_sourcing_lnum;
1354 struct msglist *messages = NULL, *next;
1357 * If the uncaught exception is a user exception, report it as an
1358 * error. If it is an error exception, display the saved error
1359 * message now. For an interrupt exception, do nothing; the
1360 * interrupt message is given elsewhere.
1362 switch (current_exception->type)
1364 case ET_USER:
1365 vim_snprintf((char *)IObuff, IOSIZE,
1366 _("E605: Exception not caught: %s"),
1367 current_exception->value);
1368 p = vim_strsave(IObuff);
1369 break;
1370 case ET_ERROR:
1371 messages = current_exception->messages;
1372 current_exception->messages = NULL;
1373 break;
1374 case ET_INTERRUPT:
1375 break;
1376 default:
1377 p = vim_strsave((char_u *)_(e_internal));
1380 saved_sourcing_name = sourcing_name;
1381 saved_sourcing_lnum = sourcing_lnum;
1382 sourcing_name = current_exception->throw_name;
1383 sourcing_lnum = current_exception->throw_lnum;
1384 current_exception->throw_name = NULL;
1386 discard_current_exception(); /* uses IObuff if 'verbose' */
1387 suppress_errthrow = TRUE;
1388 force_abort = TRUE;
1390 if (messages != NULL)
1394 next = messages->next;
1395 emsg(messages->msg);
1396 vim_free(messages->msg);
1397 vim_free(messages);
1398 messages = next;
1400 while (messages != NULL);
1402 else if (p != NULL)
1404 emsg(p);
1405 vim_free(p);
1407 vim_free(sourcing_name);
1408 sourcing_name = saved_sourcing_name;
1409 sourcing_lnum = saved_sourcing_lnum;
1413 * On an interrupt or an aborting error not converted to an exception,
1414 * disable the conversion of errors to exceptions. (Interrupts are not
1415 * converted any more, here.) This enables also the interrupt message
1416 * when force_abort is set and did_emsg unset in case of an interrupt
1417 * from a finally clause after an error.
1419 else if (got_int || (did_emsg && force_abort))
1420 suppress_errthrow = TRUE;
1424 * The current cstack will be freed when do_cmdline() returns. An uncaught
1425 * exception will have to be rethrown in the previous cstack. If a function
1426 * has just returned or a script file was just finished and the previous
1427 * cstack belongs to the same function or, respectively, script file, it
1428 * will have to be checked for finally clauses to be executed due to the
1429 * ":return" or ":finish". This is done in do_one_cmd().
1431 if (did_throw)
1432 need_rethrow = TRUE;
1433 if ((getline_equal(getline, cookie, getsourceline)
1434 && ex_nesting_level > source_level(real_cookie))
1435 || (getline_equal(getline, cookie, get_func_line)
1436 && ex_nesting_level > func_level(real_cookie) + 1))
1438 if (!did_throw)
1439 check_cstack = TRUE;
1441 else
1443 /* When leaving a function, reduce nesting level. */
1444 if (getline_equal(getline, cookie, get_func_line))
1445 --ex_nesting_level;
1447 * Go to debug mode when returning from a function in which we are
1448 * single-stepping.
1450 if ((getline_equal(getline, cookie, getsourceline)
1451 || getline_equal(getline, cookie, get_func_line))
1452 && ex_nesting_level + 1 <= debug_break_level)
1453 do_debug(getline_equal(getline, cookie, getsourceline)
1454 ? (char_u *)_("End of sourced file")
1455 : (char_u *)_("End of function"));
1459 * Restore the exception environment (done after returning from the
1460 * debugger).
1462 if (flags & DOCMD_EXCRESET)
1463 restore_dbg_stuff(&debug_saved);
1465 msg_list = saved_msg_list;
1466 #endif /* FEAT_EVAL */
1469 * If there was too much output to fit on the command line, ask the user to
1470 * hit return before redrawing the screen. With the ":global" command we do
1471 * this only once after the command is finished.
1473 if (did_inc)
1475 --RedrawingDisabled;
1476 --no_wait_return;
1477 msg_scroll = FALSE;
1480 * When just finished an ":if"-":else" which was typed, no need to
1481 * wait for hit-return. Also for an error situation.
1483 if (retval == FAIL
1484 #ifdef FEAT_EVAL
1485 || (did_endif && KeyTyped && !did_emsg)
1486 #endif
1489 need_wait_return = FALSE;
1490 msg_didany = FALSE; /* don't wait when restarting edit */
1492 else if (need_wait_return)
1495 * The msg_start() above clears msg_didout. The wait_return we do
1496 * here should not overwrite the command that may be shown before
1497 * doing that.
1499 msg_didout |= msg_didout_before_start;
1500 wait_return(FALSE);
1504 #ifndef FEAT_EVAL
1506 * Reset if_level, in case a sourced script file contains more ":if" than
1507 * ":endif" (could be ":if x | foo | endif").
1509 if_level = 0;
1510 #endif
1512 --call_depth;
1513 return retval;
1516 #ifdef FEAT_EVAL
1518 * Obtain a line when inside a ":while" or ":for" loop.
1520 static char_u *
1521 get_loop_line(c, cookie, indent)
1522 int c;
1523 void *cookie;
1524 int indent;
1526 struct loop_cookie *cp = (struct loop_cookie *)cookie;
1527 wcmd_T *wp;
1528 char_u *line;
1530 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1532 if (cp->repeating)
1533 return NULL; /* trying to read past ":endwhile"/":endfor" */
1535 /* First time inside the ":while"/":for": get line normally. */
1536 if (cp->getline == NULL)
1537 line = getcmdline(c, 0L, indent);
1538 else
1539 line = cp->getline(c, cp->cookie, indent);
1540 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
1541 ++cp->current_line;
1543 return line;
1546 KeyTyped = FALSE;
1547 ++cp->current_line;
1548 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1549 sourcing_lnum = wp->lnum;
1550 return vim_strsave(wp->line);
1554 * Store a line in "gap" so that a ":while" loop can execute it again.
1556 static int
1557 store_loop_line(gap, line)
1558 garray_T *gap;
1559 char_u *line;
1561 if (ga_grow(gap, 1) == FAIL)
1562 return FAIL;
1563 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1564 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1565 ++gap->ga_len;
1566 return OK;
1570 * Free the lines stored for a ":while" or ":for" loop.
1572 static void
1573 free_cmdlines(gap)
1574 garray_T *gap;
1576 while (gap->ga_len > 0)
1578 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1579 --gap->ga_len;
1582 #endif
1585 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1586 * "func". * Otherwise return TRUE when "fgetline" equals "func".
1589 getline_equal(fgetline, cookie, func)
1590 char_u *(*fgetline) __ARGS((int, void *, int));
1591 void *cookie UNUSED; /* argument for fgetline() */
1592 char_u *(*func) __ARGS((int, void *, int));
1594 #ifdef FEAT_EVAL
1595 char_u *(*gp) __ARGS((int, void *, int));
1596 struct loop_cookie *cp;
1598 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1599 * function that's originally used to obtain the lines. This may be
1600 * nested several levels. */
1601 gp = fgetline;
1602 cp = (struct loop_cookie *)cookie;
1603 while (gp == get_loop_line)
1605 gp = cp->getline;
1606 cp = cp->cookie;
1608 return gp == func;
1609 #else
1610 return fgetline == func;
1611 #endif
1614 #if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1616 * If "fgetline" is get_loop_line(), return the cookie used by the original
1617 * getline function. Otherwise return "cookie".
1619 void *
1620 getline_cookie(fgetline, cookie)
1621 char_u *(*fgetline) __ARGS((int, void *, int)) UNUSED;
1622 void *cookie; /* argument for fgetline() */
1624 # ifdef FEAT_EVAL
1625 char_u *(*gp) __ARGS((int, void *, int));
1626 struct loop_cookie *cp;
1628 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1629 * cookie that's originally used to obtain the lines. This may be nested
1630 * several levels. */
1631 gp = fgetline;
1632 cp = (struct loop_cookie *)cookie;
1633 while (gp == get_loop_line)
1635 gp = cp->getline;
1636 cp = cp->cookie;
1638 return cp;
1639 # else
1640 return cookie;
1641 # endif
1643 #endif
1646 * Execute one Ex command.
1648 * If 'sourcing' is TRUE, the command will be included in the error message.
1650 * 1. skip comment lines and leading space
1651 * 2. handle command modifiers
1652 * 3. parse range
1653 * 4. parse command
1654 * 5. parse arguments
1655 * 6. switch on command name
1657 * Note: "fgetline" can be NULL.
1659 * This function may be called recursively!
1661 #if (_MSC_VER == 1200)
1663 * Avoid optimisation bug in VC++ version 6.0
1665 #pragma optimize( "g", off )
1666 #endif
1667 static char_u *
1668 do_one_cmd(cmdlinep, sourcing,
1669 #ifdef FEAT_EVAL
1670 cstack,
1671 #endif
1672 fgetline, cookie)
1673 char_u **cmdlinep;
1674 int sourcing;
1675 #ifdef FEAT_EVAL
1676 struct condstack *cstack;
1677 #endif
1678 char_u *(*fgetline) __ARGS((int, void *, int));
1679 void *cookie; /* argument for fgetline() */
1681 char_u *p;
1682 linenr_T lnum;
1683 long n;
1684 char_u *errormsg = NULL; /* error message */
1685 exarg_T ea; /* Ex command arguments */
1686 long verbose_save = -1;
1687 int save_msg_scroll = msg_scroll;
1688 int save_msg_silent = -1;
1689 int did_esilent = 0;
1690 #ifdef HAVE_SANDBOX
1691 int did_sandbox = FALSE;
1692 #endif
1693 cmdmod_T save_cmdmod;
1694 int ni; /* set when Not Implemented */
1696 vim_memset(&ea, 0, sizeof(ea));
1697 ea.line1 = 1;
1698 ea.line2 = 1;
1699 #ifdef FEAT_EVAL
1700 ++ex_nesting_level;
1701 #endif
1703 /* when not editing the last file :q has to be typed twice */
1704 if (quitmore
1705 #ifdef FEAT_EVAL
1706 /* avoid that a function call in 'statusline' does this */
1707 && !getline_equal(fgetline, cookie, get_func_line)
1708 #endif
1710 --quitmore;
1713 * Reset browse, confirm, etc.. They are restored when returning, for
1714 * recursive calls.
1716 save_cmdmod = cmdmod;
1717 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1719 /* "#!anything" is handled like a comment. */
1720 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1721 goto doend;
1724 * Repeat until no more command modifiers are found.
1726 ea.cmd = *cmdlinep;
1727 for (;;)
1730 * 1. skip comment lines and leading white space and colons
1732 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1733 ++ea.cmd;
1735 /* in ex mode, an empty line works like :+ */
1736 if (*ea.cmd == NUL && exmode_active
1737 && (getline_equal(fgetline, cookie, getexmodeline)
1738 || getline_equal(fgetline, cookie, getexline))
1739 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
1741 ea.cmd = (char_u *)"+";
1742 ex_pressedreturn = TRUE;
1745 /* ignore comment and empty lines */
1746 if (*ea.cmd == '"')
1747 goto doend;
1748 if (*ea.cmd == NUL)
1750 ex_pressedreturn = TRUE;
1751 goto doend;
1755 * 2. handle command modifiers.
1757 p = ea.cmd;
1758 if (VIM_ISDIGIT(*ea.cmd))
1759 p = skipwhite(skipdigits(ea.cmd));
1760 switch (*p)
1762 /* When adding an entry, also modify cmd_exists(). */
1763 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1764 break;
1765 #ifdef FEAT_WINDOWS
1766 cmdmod.split |= WSP_ABOVE;
1767 #endif
1768 continue;
1770 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1772 #ifdef FEAT_WINDOWS
1773 cmdmod.split |= WSP_BELOW;
1774 #endif
1775 continue;
1777 if (checkforcmd(&ea.cmd, "browse", 3))
1779 #ifdef FEAT_BROWSE_CMD
1780 cmdmod.browse = TRUE;
1781 #endif
1782 continue;
1784 if (!checkforcmd(&ea.cmd, "botright", 2))
1785 break;
1786 #ifdef FEAT_WINDOWS
1787 cmdmod.split |= WSP_BOT;
1788 #endif
1789 continue;
1791 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1792 break;
1793 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1794 cmdmod.confirm = TRUE;
1795 #endif
1796 continue;
1798 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1800 cmdmod.keepmarks = TRUE;
1801 continue;
1803 if (checkforcmd(&ea.cmd, "keepalt", 5))
1805 cmdmod.keepalt = TRUE;
1806 continue;
1808 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1809 break;
1810 cmdmod.keepjumps = TRUE;
1811 continue;
1813 /* ":hide" and ":hide | cmd" are not modifiers */
1814 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1815 || *p == NUL || ends_excmd(*p))
1816 break;
1817 ea.cmd = p;
1818 cmdmod.hide = TRUE;
1819 continue;
1821 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1823 cmdmod.lockmarks = TRUE;
1824 continue;
1827 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1828 break;
1829 #ifdef FEAT_WINDOWS
1830 cmdmod.split |= WSP_ABOVE;
1831 #endif
1832 continue;
1834 case 'n': if (!checkforcmd(&ea.cmd, "noautocmd", 3))
1835 break;
1836 #ifdef FEAT_AUTOCMD
1837 if (cmdmod.save_ei == NULL)
1839 /* Set 'eventignore' to "all". Restore the
1840 * existing option value later. */
1841 cmdmod.save_ei = vim_strsave(p_ei);
1842 set_string_option_direct((char_u *)"ei", -1,
1843 (char_u *)"all", OPT_FREE, SID_NONE);
1845 #endif
1846 continue;
1848 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
1849 break;
1850 #ifdef FEAT_WINDOWS
1851 cmdmod.split |= WSP_BELOW;
1852 #endif
1853 continue;
1855 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
1857 #ifdef HAVE_SANDBOX
1858 if (!did_sandbox)
1859 ++sandbox;
1860 did_sandbox = TRUE;
1861 #endif
1862 continue;
1864 if (!checkforcmd(&ea.cmd, "silent", 3))
1865 break;
1866 if (save_msg_silent == -1)
1867 save_msg_silent = msg_silent;
1868 ++msg_silent;
1869 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
1871 /* ":silent!", but not "silent !cmd" */
1872 ea.cmd = skipwhite(ea.cmd + 1);
1873 ++emsg_silent;
1874 ++did_esilent;
1876 continue;
1878 case 't': if (checkforcmd(&p, "tab", 3))
1880 #ifdef FEAT_WINDOWS
1881 if (vim_isdigit(*ea.cmd))
1882 cmdmod.tab = atoi((char *)ea.cmd) + 1;
1883 else
1884 cmdmod.tab = tabpage_index(curtab) + 1;
1885 ea.cmd = p;
1886 #endif
1887 continue;
1889 if (!checkforcmd(&ea.cmd, "topleft", 2))
1890 break;
1891 #ifdef FEAT_WINDOWS
1892 cmdmod.split |= WSP_TOP;
1893 #endif
1894 continue;
1896 case 'u': if (!checkforcmd(&ea.cmd, "unsilent", 3))
1897 break;
1898 if (save_msg_silent == -1)
1899 save_msg_silent = msg_silent;
1900 msg_silent = 0;
1901 continue;
1903 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
1905 #ifdef FEAT_VERTSPLIT
1906 cmdmod.split |= WSP_VERT;
1907 #endif
1908 continue;
1910 if (!checkforcmd(&p, "verbose", 4))
1911 break;
1912 if (verbose_save < 0)
1913 verbose_save = p_verbose;
1914 if (vim_isdigit(*ea.cmd))
1915 p_verbose = atoi((char *)ea.cmd);
1916 else
1917 p_verbose = 1;
1918 ea.cmd = p;
1919 continue;
1921 break;
1924 #ifdef FEAT_EVAL
1925 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1926 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1927 #else
1928 ea.skip = (if_level > 0);
1929 #endif
1931 #ifdef FEAT_EVAL
1932 # ifdef FEAT_PROFILE
1933 /* Count this line for profiling if ea.skip is FALSE. */
1934 if (do_profiling == PROF_YES && !ea.skip)
1936 if (getline_equal(fgetline, cookie, get_func_line))
1937 func_line_exec(getline_cookie(fgetline, cookie));
1938 else if (getline_equal(fgetline, cookie, getsourceline))
1939 script_line_exec();
1941 #endif
1943 /* May go to debug mode. If this happens and the ">quit" debug command is
1944 * used, throw an interrupt exception and skip the next command. */
1945 dbg_check_breakpoint(&ea);
1946 if (!ea.skip && got_int)
1948 ea.skip = TRUE;
1949 (void)do_intthrow(cstack);
1951 #endif
1954 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1956 * where 'addr' is:
1958 * % (entire file)
1959 * $ [+-NUM]
1960 * 'x [+-NUM] (where x denotes a currently defined mark)
1961 * . [+-NUM]
1962 * [+-NUM]..
1963 * NUM
1965 * The ea.cmd pointer is updated to point to the first character following the
1966 * range spec. If an initial address is found, but no second, the upper bound
1967 * is equal to the lower.
1970 /* repeat for all ',' or ';' separated addresses */
1971 for (;;)
1973 ea.line1 = ea.line2;
1974 ea.line2 = curwin->w_cursor.lnum; /* default is current line number */
1975 ea.cmd = skipwhite(ea.cmd);
1976 lnum = get_address(&ea.cmd, ea.skip, ea.addr_count == 0);
1977 if (ea.cmd == NULL) /* error detected */
1978 goto doend;
1979 if (lnum == MAXLNUM)
1981 if (*ea.cmd == '%') /* '%' - all lines */
1983 ++ea.cmd;
1984 ea.line1 = 1;
1985 ea.line2 = curbuf->b_ml.ml_line_count;
1986 ++ea.addr_count;
1988 /* '*' - visual area */
1989 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1991 pos_T *fp;
1993 ++ea.cmd;
1994 if (!ea.skip)
1996 fp = getmark('<', FALSE);
1997 if (check_mark(fp) == FAIL)
1998 goto doend;
1999 ea.line1 = fp->lnum;
2000 fp = getmark('>', FALSE);
2001 if (check_mark(fp) == FAIL)
2002 goto doend;
2003 ea.line2 = fp->lnum;
2004 ++ea.addr_count;
2008 else
2009 ea.line2 = lnum;
2010 ea.addr_count++;
2012 if (*ea.cmd == ';')
2014 if (!ea.skip)
2015 curwin->w_cursor.lnum = ea.line2;
2017 else if (*ea.cmd != ',')
2018 break;
2019 ++ea.cmd;
2022 /* One address given: set start and end lines */
2023 if (ea.addr_count == 1)
2025 ea.line1 = ea.line2;
2026 /* ... but only implicit: really no address given */
2027 if (lnum == MAXLNUM)
2028 ea.addr_count = 0;
2031 /* Don't leave the cursor on an illegal line (caused by ';') */
2032 check_cursor_lnum();
2035 * 4. parse command
2039 * Skip ':' and any white space
2041 ea.cmd = skipwhite(ea.cmd);
2042 while (*ea.cmd == ':')
2043 ea.cmd = skipwhite(ea.cmd + 1);
2046 * If we got a line, but no command, then go to the line.
2047 * If we find a '|' or '\n' we set ea.nextcmd.
2049 if (*ea.cmd == NUL || *ea.cmd == '"' ||
2050 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2053 * strange vi behaviour:
2054 * ":3" jumps to line 3
2055 * ":3|..." prints line 3
2056 * ":|" prints current line
2058 if (ea.skip) /* skip this if inside :if */
2059 goto doend;
2060 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
2062 ea.cmdidx = CMD_print;
2063 ea.argt = RANGE+COUNT+TRLBAR;
2064 if ((errormsg = invalid_range(&ea)) == NULL)
2066 correct_range(&ea);
2067 ex_print(&ea);
2070 else if (ea.addr_count != 0)
2072 if (ea.line2 > curbuf->b_ml.ml_line_count)
2074 /* With '-' in 'cpoptions' a line number past the file is an
2075 * error, otherwise put it at the end of the file. */
2076 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2077 ea.line2 = -1;
2078 else
2079 ea.line2 = curbuf->b_ml.ml_line_count;
2082 if (ea.line2 < 0)
2083 errormsg = (char_u *)_(e_invrange);
2084 else
2086 if (ea.line2 == 0)
2087 curwin->w_cursor.lnum = 1;
2088 else
2089 curwin->w_cursor.lnum = ea.line2;
2090 beginline(BL_SOL | BL_FIX);
2093 goto doend;
2096 /* Find the command and let "p" point to after it. */
2097 p = find_command(&ea, NULL);
2099 #ifdef FEAT_USR_CMDS
2100 if (p == NULL)
2102 if (!ea.skip)
2103 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2104 goto doend;
2106 /* Check for wrong commands. */
2107 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2109 errormsg = uc_fun_cmd();
2110 goto doend;
2112 #endif
2113 if (ea.cmdidx == CMD_SIZE)
2115 if (!ea.skip)
2117 STRCPY(IObuff, _("E492: Not an editor command"));
2118 if (!sourcing)
2120 STRCAT(IObuff, ": ");
2121 STRNCAT(IObuff, *cmdlinep, 40);
2123 errormsg = IObuff;
2125 goto doend;
2128 ni = (
2129 #ifdef FEAT_USR_CMDS
2130 !USER_CMDIDX(ea.cmdidx) &&
2131 #endif
2132 (cmdnames[ea.cmdidx].cmd_func == ex_ni
2133 #ifdef HAVE_EX_SCRIPT_NI
2134 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2135 #endif
2138 #ifndef FEAT_EVAL
2140 * When the expression evaluation is disabled, recognize the ":if" and
2141 * ":endif" commands and ignore everything in between it.
2143 if (ea.cmdidx == CMD_if)
2144 ++if_level;
2145 if (if_level)
2147 if (ea.cmdidx == CMD_endif)
2148 --if_level;
2149 goto doend;
2152 #endif
2154 /* forced commands */
2155 if (*p == '!' && ea.cmdidx != CMD_substitute
2156 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
2158 ++p;
2159 ea.forceit = TRUE;
2161 else
2162 ea.forceit = FALSE;
2165 * 5. parse arguments
2167 #ifdef FEAT_USR_CMDS
2168 if (!USER_CMDIDX(ea.cmdidx))
2169 #endif
2170 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
2172 if (!ea.skip)
2174 #ifdef HAVE_SANDBOX
2175 if (sandbox != 0 && !(ea.argt & SBOXOK))
2177 /* Command not allowed in sandbox. */
2178 errormsg = (char_u *)_(e_sandbox);
2179 goto doend;
2181 #endif
2182 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2184 /* Command not allowed in non-'modifiable' buffer */
2185 errormsg = (char_u *)_(e_modifiable);
2186 goto doend;
2189 if (text_locked() && !(ea.argt & CMDWIN)
2190 # ifdef FEAT_USR_CMDS
2191 && !USER_CMDIDX(ea.cmdidx)
2192 # endif
2195 /* Command not allowed when editing the command line. */
2196 #ifdef FEAT_CMDWIN
2197 if (cmdwin_type != 0)
2198 errormsg = (char_u *)_(e_cmdwin);
2199 else
2200 #endif
2201 errormsg = (char_u *)_(e_secure);
2202 goto doend;
2204 #ifdef FEAT_AUTOCMD
2205 /* Disallow editing another buffer when "curbuf_lock" is set.
2206 * Do allow ":edit" (check for argument later).
2207 * Do allow ":checktime" (it's postponed). */
2208 if (!(ea.argt & CMDWIN)
2209 && ea.cmdidx != CMD_edit
2210 && ea.cmdidx != CMD_checktime
2211 # ifdef FEAT_USR_CMDS
2212 && !USER_CMDIDX(ea.cmdidx)
2213 # endif
2214 && curbuf_locked())
2215 goto doend;
2216 #endif
2218 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2220 /* no range allowed */
2221 errormsg = (char_u *)_(e_norange);
2222 goto doend;
2226 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2228 errormsg = (char_u *)_(e_nobang);
2229 goto doend;
2233 * Don't complain about the range if it is not used
2234 * (could happen if line_count is accidentally set to 0).
2236 if (!ea.skip && !ni)
2239 * If the range is backwards, ask for confirmation and, if given, swap
2240 * ea.line1 & ea.line2 so it's forwards again.
2241 * When global command is busy, don't ask, will fail below.
2243 if (!global_busy && ea.line1 > ea.line2)
2245 if (msg_silent == 0)
2247 if (sourcing || exmode_active)
2249 errormsg = (char_u *)_("E493: Backwards range given");
2250 goto doend;
2252 if (ask_yesno((char_u *)
2253 _("Backwards range given, OK to swap"), FALSE) != 'y')
2254 goto doend;
2256 lnum = ea.line1;
2257 ea.line1 = ea.line2;
2258 ea.line2 = lnum;
2260 if ((errormsg = invalid_range(&ea)) != NULL)
2261 goto doend;
2264 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2265 ea.line2 = 1;
2267 correct_range(&ea);
2269 #ifdef FEAT_FOLDING
2270 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2272 /* Put the first line at the start of a closed fold, put the last line
2273 * at the end of a closed fold. */
2274 (void)hasFolding(ea.line1, &ea.line1, NULL);
2275 (void)hasFolding(ea.line2, NULL, &ea.line2);
2277 #endif
2279 #ifdef FEAT_QUICKFIX
2281 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
2282 * option here, so things like % get expanded.
2284 p = replace_makeprg(&ea, p, cmdlinep);
2285 if (p == NULL)
2286 goto doend;
2287 #endif
2290 * Skip to start of argument.
2291 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2293 if (ea.cmdidx == CMD_bang)
2294 ea.arg = p;
2295 else
2296 ea.arg = skipwhite(p);
2299 * Check for "++opt=val" argument.
2300 * Must be first, allow ":w ++enc=utf8 !cmd"
2302 if (ea.argt & ARGOPT)
2303 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2304 if (getargopt(&ea) == FAIL && !ni)
2306 errormsg = (char_u *)_(e_invarg);
2307 goto doend;
2310 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2312 if (*ea.arg == '>') /* append */
2314 if (*++ea.arg != '>') /* typed wrong */
2316 errormsg = (char_u *)_("E494: Use w or w>>");
2317 goto doend;
2319 ea.arg = skipwhite(ea.arg + 1);
2320 ea.append = TRUE;
2322 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2324 ++ea.arg;
2325 ea.usefilter = TRUE;
2329 if (ea.cmdidx == CMD_read)
2331 if (ea.forceit)
2333 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2334 ea.forceit = FALSE;
2336 else if (*ea.arg == '!') /* :r !filter */
2338 ++ea.arg;
2339 ea.usefilter = TRUE;
2343 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2345 ea.amount = 1;
2346 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2348 ++ea.arg;
2349 ++ea.amount;
2351 ea.arg = skipwhite(ea.arg);
2355 * Check for "+command" argument, before checking for next command.
2356 * Don't do this for ":read !cmd" and ":write !cmd".
2358 if ((ea.argt & EDITCMD) && !ea.usefilter)
2359 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2362 * Check for '|' to separate commands and '"' to start comments.
2363 * Don't do this for ":read !cmd" and ":write !cmd".
2365 if ((ea.argt & TRLBAR) && !ea.usefilter)
2366 separate_nextcmd(&ea);
2369 * Check for <newline> to end a shell command.
2370 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2371 * Any others?
2373 else if (ea.cmdidx == CMD_bang
2374 || ea.cmdidx == CMD_global
2375 || ea.cmdidx == CMD_vglobal
2376 || ea.usefilter)
2378 for (p = ea.arg; *p; ++p)
2380 /* Remove one backslash before a newline, so that it's possible to
2381 * pass a newline to the shell and also a newline that is preceded
2382 * with a backslash. This makes it impossible to end a shell
2383 * command in a backslash, but that doesn't appear useful.
2384 * Halving the number of backslashes is incompatible with previous
2385 * versions. */
2386 if (*p == '\\' && p[1] == '\n')
2387 STRMOVE(p, p + 1);
2388 else if (*p == '\n')
2390 ea.nextcmd = p + 1;
2391 *p = NUL;
2392 break;
2397 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2399 ea.line1 = 1;
2400 ea.line2 = curbuf->b_ml.ml_line_count;
2403 /* accept numbered register only when no count allowed (:put) */
2404 if ( (ea.argt & REGSTR)
2405 && *ea.arg != NUL
2406 #ifdef FEAT_USR_CMDS
2407 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2408 && USER_CMDIDX(ea.cmdidx)))
2409 /* Do not allow register = for user commands */
2410 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2411 #else
2412 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2413 #endif
2414 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2416 ea.regname = *ea.arg++;
2417 #ifdef FEAT_EVAL
2418 /* for '=' register: accept the rest of the line as an expression */
2419 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2421 set_expr_line(vim_strsave(ea.arg));
2422 ea.arg += STRLEN(ea.arg);
2424 #endif
2425 ea.arg = skipwhite(ea.arg);
2429 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2430 * count, it's a buffer name.
2432 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2433 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2434 || vim_iswhite(*p)))
2436 n = getdigits(&ea.arg);
2437 ea.arg = skipwhite(ea.arg);
2438 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
2440 errormsg = (char_u *)_(e_zerocount);
2441 goto doend;
2443 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2445 ea.line2 = n;
2446 if (ea.addr_count == 0)
2447 ea.addr_count = 1;
2449 else
2451 ea.line1 = ea.line2;
2452 ea.line2 += n - 1;
2453 ++ea.addr_count;
2455 * Be vi compatible: no error message for out of range.
2457 if (ea.line2 > curbuf->b_ml.ml_line_count)
2458 ea.line2 = curbuf->b_ml.ml_line_count;
2463 * Check for flags: 'l', 'p' and '#'.
2465 if (ea.argt & EXFLAGS)
2466 get_flags(&ea);
2467 /* no arguments allowed */
2468 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
2469 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
2471 errormsg = (char_u *)_(e_trailing);
2472 goto doend;
2475 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2477 errormsg = (char_u *)_(e_argreq);
2478 goto doend;
2481 #ifdef FEAT_EVAL
2483 * Skip the command when it's not going to be executed.
2484 * The commands like :if, :endif, etc. always need to be executed.
2485 * Also make an exception for commands that handle a trailing command
2486 * themselves.
2488 if (ea.skip)
2490 switch (ea.cmdidx)
2492 /* commands that need evaluation */
2493 case CMD_while:
2494 case CMD_endwhile:
2495 case CMD_for:
2496 case CMD_endfor:
2497 case CMD_if:
2498 case CMD_elseif:
2499 case CMD_else:
2500 case CMD_endif:
2501 case CMD_try:
2502 case CMD_catch:
2503 case CMD_finally:
2504 case CMD_endtry:
2505 case CMD_function:
2506 break;
2508 /* Commands that handle '|' themselves. Check: A command should
2509 * either have the TRLBAR flag, appear in this list or appear in
2510 * the list at ":help :bar". */
2511 case CMD_aboveleft:
2512 case CMD_and:
2513 case CMD_belowright:
2514 case CMD_botright:
2515 case CMD_browse:
2516 case CMD_call:
2517 case CMD_confirm:
2518 case CMD_delfunction:
2519 case CMD_djump:
2520 case CMD_dlist:
2521 case CMD_dsearch:
2522 case CMD_dsplit:
2523 case CMD_echo:
2524 case CMD_echoerr:
2525 case CMD_echomsg:
2526 case CMD_echon:
2527 case CMD_execute:
2528 case CMD_help:
2529 case CMD_hide:
2530 case CMD_ijump:
2531 case CMD_ilist:
2532 case CMD_isearch:
2533 case CMD_isplit:
2534 case CMD_keepalt:
2535 case CMD_keepjumps:
2536 case CMD_keepmarks:
2537 case CMD_leftabove:
2538 case CMD_let:
2539 case CMD_lockmarks:
2540 case CMD_match:
2541 case CMD_mzscheme:
2542 case CMD_perl:
2543 case CMD_psearch:
2544 case CMD_python:
2545 case CMD_return:
2546 case CMD_rightbelow:
2547 case CMD_ruby:
2548 case CMD_silent:
2549 case CMD_smagic:
2550 case CMD_snomagic:
2551 case CMD_substitute:
2552 case CMD_syntax:
2553 case CMD_tab:
2554 case CMD_tcl:
2555 case CMD_throw:
2556 case CMD_tilde:
2557 case CMD_topleft:
2558 case CMD_unlet:
2559 case CMD_verbose:
2560 case CMD_vertical:
2561 break;
2563 default: goto doend;
2566 #endif
2568 if (ea.argt & XFILE)
2570 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2571 goto doend;
2574 #ifdef FEAT_LISTCMDS
2576 * Accept buffer name. Cannot be used at the same time with a buffer
2577 * number. Don't do this for a user command.
2579 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2580 # ifdef FEAT_USR_CMDS
2581 && !USER_CMDIDX(ea.cmdidx)
2582 # endif
2586 * :bdelete, :bwipeout and :bunload take several arguments, separated
2587 * by spaces: find next space (skipping over escaped characters).
2588 * The others take one argument: ignore trailing spaces.
2590 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2591 || ea.cmdidx == CMD_bunload)
2592 p = skiptowhite_esc(ea.arg);
2593 else
2595 p = ea.arg + STRLEN(ea.arg);
2596 while (p > ea.arg && vim_iswhite(p[-1]))
2597 --p;
2599 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2600 if (ea.line2 < 0) /* failed */
2601 goto doend;
2602 ea.addr_count = 1;
2603 ea.arg = skipwhite(p);
2605 #endif
2608 * 6. switch on command name
2610 * The "ea" structure holds the arguments that can be used.
2612 ea.cmdlinep = cmdlinep;
2613 ea.getline = fgetline;
2614 ea.cookie = cookie;
2615 #ifdef FEAT_EVAL
2616 ea.cstack = cstack;
2617 #endif
2619 #ifdef FEAT_USR_CMDS
2620 if (USER_CMDIDX(ea.cmdidx))
2623 * Execute a user-defined command.
2625 do_ucmd(&ea);
2627 else
2628 #endif
2631 * Call the function to execute the command.
2633 ea.errmsg = NULL;
2634 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2635 if (ea.errmsg != NULL)
2636 errormsg = (char_u *)_(ea.errmsg);
2639 #ifdef FEAT_EVAL
2641 * If the command just executed called do_cmdline(), any throw or ":return"
2642 * or ":finish" encountered there must also check the cstack of the still
2643 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2644 * exception, or reanimate a returned function or finished script file and
2645 * return or finish it again.
2647 if (need_rethrow)
2648 do_throw(cstack);
2649 else if (check_cstack)
2651 if (source_finished(fgetline, cookie))
2652 do_finish(&ea, TRUE);
2653 else if (getline_equal(fgetline, cookie, get_func_line)
2654 && current_func_returned())
2655 do_return(&ea, TRUE, FALSE, NULL);
2657 need_rethrow = check_cstack = FALSE;
2658 #endif
2660 doend:
2661 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2662 curwin->w_cursor.lnum = 1;
2664 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2666 if (sourcing)
2668 if (errormsg != IObuff)
2670 STRCPY(IObuff, errormsg);
2671 errormsg = IObuff;
2673 STRCAT(errormsg, ": ");
2674 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff) - 1);
2676 emsg(errormsg);
2678 #ifdef FEAT_EVAL
2679 do_errthrow(cstack,
2680 (ea.cmdidx != CMD_SIZE
2681 # ifdef FEAT_USR_CMDS
2682 && !USER_CMDIDX(ea.cmdidx)
2683 # endif
2684 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2685 #endif
2687 if (verbose_save >= 0)
2688 p_verbose = verbose_save;
2689 #ifdef FEAT_AUTOCMD
2690 if (cmdmod.save_ei != NULL)
2692 /* Restore 'eventignore' to the value before ":noautocmd". */
2693 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2694 OPT_FREE, SID_NONE);
2695 free_string_option(cmdmod.save_ei);
2697 #endif
2699 cmdmod = save_cmdmod;
2701 if (save_msg_silent != -1)
2703 /* messages could be enabled for a serious error, need to check if the
2704 * counters don't become negative */
2705 if (!did_emsg || msg_silent > save_msg_silent)
2706 msg_silent = save_msg_silent;
2707 emsg_silent -= did_esilent;
2708 if (emsg_silent < 0)
2709 emsg_silent = 0;
2710 /* Restore msg_scroll, it's set by file I/O commands, even when no
2711 * message is actually displayed. */
2712 msg_scroll = save_msg_scroll;
2714 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
2715 * somewhere in the line. Put it back in the first column. */
2716 if (redirecting())
2717 msg_col = 0;
2720 #ifdef HAVE_SANDBOX
2721 if (did_sandbox)
2722 --sandbox;
2723 #endif
2725 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2726 ea.nextcmd = NULL;
2728 #ifdef FEAT_EVAL
2729 --ex_nesting_level;
2730 #endif
2732 return ea.nextcmd;
2734 #if (_MSC_VER == 1200)
2735 #pragma optimize( "", on )
2736 #endif
2739 * Check for an Ex command with optional tail.
2740 * If there is a match advance "pp" to the argument and return TRUE.
2743 checkforcmd(pp, cmd, len)
2744 char_u **pp; /* start of command */
2745 char *cmd; /* name of command */
2746 int len; /* required length */
2748 int i;
2750 for (i = 0; cmd[i] != NUL; ++i)
2751 if (((char_u *)cmd)[i] != (*pp)[i])
2752 break;
2753 if (i >= len && !isalpha((*pp)[i]))
2755 *pp = skipwhite(*pp + i);
2756 return TRUE;
2758 return FALSE;
2762 * Find an Ex command by its name, either built-in or user.
2763 * Start of the name can be found at eap->cmd.
2764 * Returns pointer to char after the command name.
2765 * "full" is set to TRUE if the whole command name matched.
2766 * Returns NULL for an ambiguous user command.
2768 static char_u *
2769 find_command(eap, full)
2770 exarg_T *eap;
2771 int *full UNUSED;
2773 int len;
2774 char_u *p;
2775 int i;
2778 * Isolate the command and search for it in the command table.
2779 * Exceptions:
2780 * - the 'k' command can directly be followed by any character.
2781 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2782 * but :sre[wind] is another command, as are :scrip[tnames],
2783 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
2784 * - the "d" command can directly be followed by 'l' or 'p' flag.
2786 p = eap->cmd;
2787 if (*p == 'k')
2789 eap->cmdidx = CMD_k;
2790 ++p;
2792 else if (p[0] == 's'
2793 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2794 && p[3] != 'i' && p[4] != 'p')
2795 || p[1] == 'g'
2796 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2797 || p[1] == 'I'
2798 || (p[1] == 'r' && p[2] != 'e')))
2800 eap->cmdidx = CMD_substitute;
2801 ++p;
2803 else
2805 while (ASCII_ISALPHA(*p))
2806 ++p;
2807 /* check for non-alpha command */
2808 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2809 ++p;
2810 len = (int)(p - eap->cmd);
2811 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2813 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2814 * :delete with the 'l' flag. Same for 'p'. */
2815 for (i = 0; i < len; ++i)
2816 if (eap->cmd[i] != ((char_u *)"delete")[i])
2817 break;
2818 if (i == len - 1)
2820 --len;
2821 if (p[-1] == 'l')
2822 eap->flags |= EXFLAG_LIST;
2823 else
2824 eap->flags |= EXFLAG_PRINT;
2828 if (ASCII_ISLOWER(*eap->cmd))
2829 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2830 else
2831 eap->cmdidx = cmdidxs[26];
2833 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2834 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2835 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2836 (size_t)len) == 0)
2838 #ifdef FEAT_EVAL
2839 if (full != NULL
2840 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2841 *full = TRUE;
2842 #endif
2843 break;
2846 #ifdef FEAT_USR_CMDS
2847 /* Look for a user defined command as a last resort */
2848 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2850 /* User defined commands may contain digits. */
2851 while (ASCII_ISALNUM(*p))
2852 ++p;
2853 p = find_ucmd(eap, p, full, NULL, NULL);
2855 #endif
2856 if (p == eap->cmd)
2857 eap->cmdidx = CMD_SIZE;
2860 return p;
2863 #ifdef FEAT_USR_CMDS
2865 * Search for a user command that matches "eap->cmd".
2866 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2867 * Return a pointer to just after the command.
2868 * Return NULL if there is no matching command.
2870 static char_u *
2871 find_ucmd(eap, p, full, xp, compl)
2872 exarg_T *eap;
2873 char_u *p; /* end of the command (possibly including count) */
2874 int *full; /* set to TRUE for a full match */
2875 expand_T *xp; /* used for completion, NULL otherwise */
2876 int *compl; /* completion flags or NULL */
2878 int len = (int)(p - eap->cmd);
2879 int j, k, matchlen = 0;
2880 ucmd_T *uc;
2881 int found = FALSE;
2882 int possible = FALSE;
2883 char_u *cp, *np; /* Point into typed cmd and test name */
2884 garray_T *gap;
2885 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2886 only full match global is accepted. */
2889 * Look for buffer-local user commands first, then global ones.
2891 gap = &curbuf->b_ucmds;
2892 for (;;)
2894 for (j = 0; j < gap->ga_len; ++j)
2896 uc = USER_CMD_GA(gap, j);
2897 cp = eap->cmd;
2898 np = uc->uc_name;
2899 k = 0;
2900 while (k < len && *np != NUL && *cp++ == *np++)
2901 k++;
2902 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2904 /* If finding a second match, the command is ambiguous. But
2905 * not if a buffer-local command wasn't a full match and a
2906 * global command is a full match. */
2907 if (k == len && found && *np != NUL)
2909 if (gap == &ucmds)
2910 return NULL;
2911 amb_local = TRUE;
2914 if (!found || (k == len && *np == NUL))
2916 /* If we matched up to a digit, then there could
2917 * be another command including the digit that we
2918 * should use instead.
2920 if (k == len)
2921 found = TRUE;
2922 else
2923 possible = TRUE;
2925 if (gap == &ucmds)
2926 eap->cmdidx = CMD_USER;
2927 else
2928 eap->cmdidx = CMD_USER_BUF;
2929 eap->argt = (long)uc->uc_argt;
2930 eap->useridx = j;
2932 # ifdef FEAT_CMDL_COMPL
2933 if (compl != NULL)
2934 *compl = uc->uc_compl;
2935 # ifdef FEAT_EVAL
2936 if (xp != NULL)
2938 xp->xp_arg = uc->uc_compl_arg;
2939 xp->xp_scriptID = uc->uc_scriptID;
2941 # endif
2942 # endif
2943 /* Do not search for further abbreviations
2944 * if this is an exact match. */
2945 matchlen = k;
2946 if (k == len && *np == NUL)
2948 if (full != NULL)
2949 *full = TRUE;
2950 amb_local = FALSE;
2951 break;
2957 /* Stop if we found a full match or searched all. */
2958 if (j < gap->ga_len || gap == &ucmds)
2959 break;
2960 gap = &ucmds;
2963 /* Only found ambiguous matches. */
2964 if (amb_local)
2966 if (xp != NULL)
2967 xp->xp_context = EXPAND_UNSUCCESSFUL;
2968 return NULL;
2971 /* The match we found may be followed immediately by a number. Move "p"
2972 * back to point to it. */
2973 if (found || possible)
2974 return p + (matchlen - len);
2975 return p;
2977 #endif
2979 #if defined(FEAT_EVAL) || defined(PROTO)
2980 static struct cmdmod
2982 char *name;
2983 int minlen;
2984 int has_count; /* :123verbose :3tab */
2985 } cmdmods[] = {
2986 {"aboveleft", 3, FALSE},
2987 {"belowright", 3, FALSE},
2988 {"botright", 2, FALSE},
2989 {"browse", 3, FALSE},
2990 {"confirm", 4, FALSE},
2991 {"hide", 3, FALSE},
2992 {"keepalt", 5, FALSE},
2993 {"keepjumps", 5, FALSE},
2994 {"keepmarks", 3, FALSE},
2995 {"leftabove", 5, FALSE},
2996 {"lockmarks", 3, FALSE},
2997 {"noautocmd", 3, FALSE},
2998 {"rightbelow", 6, FALSE},
2999 {"sandbox", 3, FALSE},
3000 {"silent", 3, FALSE},
3001 {"tab", 3, TRUE},
3002 {"topleft", 2, FALSE},
3003 {"unsilent", 3, FALSE},
3004 {"verbose", 4, TRUE},
3005 {"vertical", 4, FALSE},
3009 * Return length of a command modifier (including optional count).
3010 * Return zero when it's not a modifier.
3013 modifier_len(cmd)
3014 char_u *cmd;
3016 int i, j;
3017 char_u *p = cmd;
3019 if (VIM_ISDIGIT(*cmd))
3020 p = skipwhite(skipdigits(cmd));
3021 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
3023 for (j = 0; p[j] != NUL; ++j)
3024 if (p[j] != cmdmods[i].name[j])
3025 break;
3026 if (!isalpha(p[j]) && j >= cmdmods[i].minlen
3027 && (p == cmd || cmdmods[i].has_count))
3028 return j + (int)(p - cmd);
3030 return 0;
3034 * Return > 0 if an Ex command "name" exists.
3035 * Return 2 if there is an exact match.
3036 * Return 3 if there is an ambiguous match.
3039 cmd_exists(name)
3040 char_u *name;
3042 exarg_T ea;
3043 int full = FALSE;
3044 int i;
3045 int j;
3046 char_u *p;
3048 /* Check command modifiers. */
3049 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
3051 for (j = 0; name[j] != NUL; ++j)
3052 if (name[j] != cmdmods[i].name[j])
3053 break;
3054 if (name[j] == NUL && j >= cmdmods[i].minlen)
3055 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3058 /* Check built-in commands and user defined commands.
3059 * For ":2match" and ":3match" we need to skip the number. */
3060 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
3061 ea.cmdidx = (cmdidx_T)0;
3062 p = find_command(&ea, &full);
3063 if (p == NULL)
3064 return 3;
3065 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3066 return 0;
3067 if (*skipwhite(p) != NUL)
3068 return 0; /* trailing garbage */
3069 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3071 #endif
3074 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3075 * we don't need/want deleted. Maybe this could be done better if we didn't
3076 * repeat all this stuff. The only problem is that they may not stay
3077 * perfectly compatible with each other, but then the command line syntax
3078 * probably won't change that much -- webb.
3080 char_u *
3081 set_one_cmd_context(xp, buff)
3082 expand_T *xp;
3083 char_u *buff; /* buffer for command string */
3085 char_u *p;
3086 char_u *cmd, *arg;
3087 int len = 0;
3088 exarg_T ea;
3089 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3090 int compl = EXPAND_NOTHING;
3091 #endif
3092 #ifdef FEAT_CMDL_COMPL
3093 int delim;
3094 #endif
3095 int forceit = FALSE;
3096 int usefilter = FALSE; /* filter instead of file name */
3098 ExpandInit(xp);
3099 xp->xp_pattern = buff;
3100 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
3101 ea.argt = 0;
3104 * 2. skip comment lines and leading space, colons or bars
3106 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3108 xp->xp_pattern = cmd;
3110 if (*cmd == NUL)
3111 return NULL;
3112 if (*cmd == '"') /* ignore comment lines */
3114 xp->xp_context = EXPAND_NOTHING;
3115 return NULL;
3119 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3121 cmd = skip_range(cmd, &xp->xp_context);
3124 * 4. parse command
3126 xp->xp_pattern = cmd;
3127 if (*cmd == NUL)
3128 return NULL;
3129 if (*cmd == '"')
3131 xp->xp_context = EXPAND_NOTHING;
3132 return NULL;
3135 if (*cmd == '|' || *cmd == '\n')
3136 return cmd + 1; /* There's another command */
3139 * Isolate the command and search for it in the command table.
3140 * Exceptions:
3141 * - the 'k' command can directly be followed by any character, but
3142 * do accept "keepmarks", "keepalt" and "keepjumps".
3143 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3145 if (*cmd == 'k' && cmd[1] != 'e')
3147 ea.cmdidx = CMD_k;
3148 p = cmd + 1;
3150 else
3152 p = cmd;
3153 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3154 ++p;
3155 /* check for non-alpha command */
3156 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3157 ++p;
3158 len = (int)(p - cmd);
3160 if (len == 0)
3162 xp->xp_context = EXPAND_UNSUCCESSFUL;
3163 return NULL;
3165 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3166 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3167 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
3168 break;
3170 #ifdef FEAT_USR_CMDS
3171 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3173 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3174 ++p;
3175 len = (int)(p - cmd);
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
3823 #ifdef FEAT_GUI_MACVIM
3824 case CMD_macaction:
3825 xp->xp_context = EXPAND_MACACTION;
3826 xp->xp_pattern = arg;
3827 break;
3828 #endif
3831 #endif /* FEAT_CMDL_COMPL */
3833 default:
3834 break;
3836 return NULL;
3840 * skip a range specifier of the form: addr [,addr] [;addr] ..
3842 * Backslashed delimiters after / or ? will be skipped, and commands will
3843 * not be expanded between /'s and ?'s or after "'".
3845 * Also skip white space and ":" characters.
3846 * Returns the "cmd" pointer advanced to beyond the range.
3848 char_u *
3849 skip_range(cmd, ctx)
3850 char_u *cmd;
3851 int *ctx; /* pointer to xp_context or NULL */
3853 unsigned delim;
3855 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
3857 if (*cmd == '\'')
3859 if (*++cmd == NUL && ctx != NULL)
3860 *ctx = EXPAND_NOTHING;
3862 else if (*cmd == '/' || *cmd == '?')
3864 delim = *cmd++;
3865 while (*cmd != NUL && *cmd != delim)
3866 if (*cmd++ == '\\' && *cmd != NUL)
3867 ++cmd;
3868 if (*cmd == NUL && ctx != NULL)
3869 *ctx = EXPAND_NOTHING;
3871 if (*cmd != NUL)
3872 ++cmd;
3875 /* Skip ":" and white space. */
3876 while (*cmd == ':')
3877 cmd = skipwhite(cmd + 1);
3879 return cmd;
3883 * get a single EX address
3885 * Set ptr to the next character after the part that was interpreted.
3886 * Set ptr to NULL when an error is encountered.
3888 * Return MAXLNUM when no Ex address was found.
3890 static linenr_T
3891 get_address(ptr, skip, to_other_file)
3892 char_u **ptr;
3893 int skip; /* only skip the address, don't use it */
3894 int to_other_file; /* flag: may jump to other file */
3896 int c;
3897 int i;
3898 long n;
3899 char_u *cmd;
3900 pos_T pos;
3901 pos_T *fp;
3902 linenr_T lnum;
3904 cmd = skipwhite(*ptr);
3905 lnum = MAXLNUM;
3908 switch (*cmd)
3910 case '.': /* '.' - Cursor position */
3911 ++cmd;
3912 lnum = curwin->w_cursor.lnum;
3913 break;
3915 case '$': /* '$' - last line */
3916 ++cmd;
3917 lnum = curbuf->b_ml.ml_line_count;
3918 break;
3920 case '\'': /* ''' - mark */
3921 if (*++cmd == NUL)
3923 cmd = NULL;
3924 goto error;
3926 if (skip)
3927 ++cmd;
3928 else
3930 /* Only accept a mark in another file when it is
3931 * used by itself: ":'M". */
3932 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3933 ++cmd;
3934 if (fp == (pos_T *)-1)
3935 /* Jumped to another file. */
3936 lnum = curwin->w_cursor.lnum;
3937 else
3939 if (check_mark(fp) == FAIL)
3941 cmd = NULL;
3942 goto error;
3944 lnum = fp->lnum;
3947 break;
3949 case '/':
3950 case '?': /* '/' or '?' - search */
3951 c = *cmd++;
3952 if (skip) /* skip "/pat/" */
3954 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3955 if (*cmd == c)
3956 ++cmd;
3958 else
3960 pos = curwin->w_cursor; /* save curwin->w_cursor */
3962 * When '/' or '?' follows another address, start
3963 * from there.
3965 if (lnum != MAXLNUM)
3966 curwin->w_cursor.lnum = lnum;
3968 * Start a forward search at the end of the line.
3969 * Start a backward search at the start of the line.
3970 * This makes sure we never match in the current
3971 * line, and can match anywhere in the
3972 * next/previous line.
3974 if (c == '/')
3975 curwin->w_cursor.col = MAXCOL;
3976 else
3977 curwin->w_cursor.col = 0;
3978 searchcmdlen = 0;
3979 if (!do_search(NULL, c, cmd, 1L,
3980 SEARCH_HIS | SEARCH_MSG, NULL))
3982 curwin->w_cursor = pos;
3983 cmd = NULL;
3984 goto error;
3986 lnum = curwin->w_cursor.lnum;
3987 curwin->w_cursor = pos;
3988 /* adjust command string pointer */
3989 cmd += searchcmdlen;
3991 break;
3993 case '\\': /* "\?", "\/" or "\&", repeat search */
3994 ++cmd;
3995 if (*cmd == '&')
3996 i = RE_SUBST;
3997 else if (*cmd == '?' || *cmd == '/')
3998 i = RE_SEARCH;
3999 else
4001 EMSG(_(e_backslash));
4002 cmd = NULL;
4003 goto error;
4006 if (!skip)
4009 * When search follows another address, start from
4010 * there.
4012 if (lnum != MAXLNUM)
4013 pos.lnum = lnum;
4014 else
4015 pos.lnum = curwin->w_cursor.lnum;
4018 * Start the search just like for the above
4019 * do_search().
4021 if (*cmd != '?')
4022 pos.col = MAXCOL;
4023 else
4024 pos.col = 0;
4025 if (searchit(curwin, curbuf, &pos,
4026 *cmd == '?' ? BACKWARD : FORWARD,
4027 (char_u *)"", 1L, SEARCH_MSG,
4028 i, (linenr_T)0, NULL) != FAIL)
4029 lnum = pos.lnum;
4030 else
4032 cmd = NULL;
4033 goto error;
4036 ++cmd;
4037 break;
4039 default:
4040 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
4041 lnum = getdigits(&cmd);
4044 for (;;)
4046 cmd = skipwhite(cmd);
4047 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4048 break;
4050 if (lnum == MAXLNUM)
4051 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
4052 if (VIM_ISDIGIT(*cmd))
4053 i = '+'; /* "number" is same as "+number" */
4054 else
4055 i = *cmd++;
4056 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4057 n = 1;
4058 else
4059 n = getdigits(&cmd);
4060 if (i == '-')
4061 lnum -= n;
4062 else
4063 lnum += n;
4065 } while (*cmd == '/' || *cmd == '?');
4067 error:
4068 *ptr = cmd;
4069 return lnum;
4073 * Get flags from an Ex command argument.
4075 static void
4076 get_flags(eap)
4077 exarg_T *eap;
4079 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4081 if (*eap->arg == 'l')
4082 eap->flags |= EXFLAG_LIST;
4083 else if (*eap->arg == 'p')
4084 eap->flags |= EXFLAG_PRINT;
4085 else
4086 eap->flags |= EXFLAG_NR;
4087 eap->arg = skipwhite(eap->arg + 1);
4092 * Function called for command which is Not Implemented. NI!
4094 void
4095 ex_ni(eap)
4096 exarg_T *eap;
4098 if (!eap->skip)
4099 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4102 #ifdef HAVE_EX_SCRIPT_NI
4104 * Function called for script command which is Not Implemented. NI!
4105 * Skips over ":perl <<EOF" constructs.
4107 static void
4108 ex_script_ni(eap)
4109 exarg_T *eap;
4111 if (!eap->skip)
4112 ex_ni(eap);
4113 else
4114 vim_free(script_get(eap, eap->arg));
4116 #endif
4119 * Check range in Ex command for validity.
4120 * Return NULL when valid, error message when invalid.
4122 static char_u *
4123 invalid_range(eap)
4124 exarg_T *eap;
4126 if ( eap->line1 < 0
4127 || eap->line2 < 0
4128 || eap->line1 > eap->line2
4129 || ((eap->argt & RANGE)
4130 && !(eap->argt & NOTADR)
4131 && eap->line2 > curbuf->b_ml.ml_line_count
4132 #ifdef FEAT_DIFF
4133 + (eap->cmdidx == CMD_diffget)
4134 #endif
4136 return (char_u *)_(e_invrange);
4137 return NULL;
4141 * Correct the range for zero line number, if required.
4143 static void
4144 correct_range(eap)
4145 exarg_T *eap;
4147 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4149 if (eap->line1 == 0)
4150 eap->line1 = 1;
4151 if (eap->line2 == 0)
4152 eap->line2 = 1;
4156 #ifdef FEAT_QUICKFIX
4157 static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4160 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4161 * pattern. Otherwise return eap->arg.
4163 static char_u *
4164 skip_grep_pat(eap)
4165 exarg_T *eap;
4167 char_u *p = eap->arg;
4169 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4170 || eap->cmdidx == CMD_vimgrepadd
4171 || eap->cmdidx == CMD_lvimgrepadd
4172 || grep_internal(eap->cmdidx)))
4174 p = skip_vimgrep_pat(p, NULL, NULL);
4175 if (p == NULL)
4176 p = eap->arg;
4178 return p;
4182 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4183 * in the command line, so that things like % get expanded.
4185 static char_u *
4186 replace_makeprg(eap, p, cmdlinep)
4187 exarg_T *eap;
4188 char_u *p;
4189 char_u **cmdlinep;
4191 char_u *new_cmdline;
4192 char_u *program;
4193 char_u *pos;
4194 char_u *ptr;
4195 int len;
4196 int i;
4199 * Don't do it when ":vimgrep" is used for ":grep".
4201 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4202 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4203 || eap->cmdidx == CMD_grepadd
4204 || eap->cmdidx == CMD_lgrepadd)
4205 && !grep_internal(eap->cmdidx))
4207 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4208 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
4210 if (*curbuf->b_p_gp == NUL)
4211 program = p_gp;
4212 else
4213 program = curbuf->b_p_gp;
4215 else
4217 if (*curbuf->b_p_mp == NUL)
4218 program = p_mp;
4219 else
4220 program = curbuf->b_p_mp;
4223 p = skipwhite(p);
4225 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4227 /* replace $* by given arguments */
4228 i = 1;
4229 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4230 ++i;
4231 len = (int)STRLEN(p);
4232 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4233 if (new_cmdline == NULL)
4234 return NULL; /* out of memory */
4235 ptr = new_cmdline;
4236 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4238 i = (int)(pos - program);
4239 STRNCPY(ptr, program, i);
4240 STRCPY(ptr += i, p);
4241 ptr += len;
4242 program = pos + 2;
4244 STRCPY(ptr, program);
4246 else
4248 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4249 if (new_cmdline == NULL)
4250 return NULL; /* out of memory */
4251 STRCPY(new_cmdline, program);
4252 STRCAT(new_cmdline, " ");
4253 STRCAT(new_cmdline, p);
4255 msg_make(p);
4257 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4258 vim_free(*cmdlinep);
4259 *cmdlinep = new_cmdline;
4260 p = new_cmdline;
4262 return p;
4264 #endif
4267 * Expand file name in Ex command argument.
4268 * Return FAIL for failure, OK otherwise.
4271 expand_filename(eap, cmdlinep, errormsgp)
4272 exarg_T *eap;
4273 char_u **cmdlinep;
4274 char_u **errormsgp;
4276 int has_wildcards; /* need to expand wildcards */
4277 char_u *repl;
4278 int srclen;
4279 char_u *p;
4280 int n;
4281 int escaped;
4283 #ifdef FEAT_QUICKFIX
4284 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4285 p = skip_grep_pat(eap);
4286 #else
4287 p = eap->arg;
4288 #endif
4291 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4292 * the file name contains a wildcard it should not cause expanding.
4293 * (it will be expanded anyway if there is a wildcard before replacing).
4295 has_wildcards = mch_has_wildcard(p);
4296 while (*p != NUL)
4298 #ifdef FEAT_EVAL
4299 /* Skip over `=expr`, wildcards in it are not expanded. */
4300 if (p[0] == '`' && p[1] == '=')
4302 p += 2;
4303 (void)skip_expr(&p);
4304 if (*p == '`')
4305 ++p;
4306 continue;
4308 #endif
4310 * Quick check if this cannot be the start of a special string.
4311 * Also removes backslash before '%', '#' and '<'.
4313 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4315 ++p;
4316 continue;
4320 * Try to find a match at this position.
4322 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4323 errormsgp, &escaped);
4324 if (*errormsgp != NULL) /* error detected */
4325 return FAIL;
4326 if (repl == NULL) /* no match found */
4328 p += srclen;
4329 continue;
4332 /* Wildcards won't be expanded below, the replacement is taken
4333 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4334 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4336 char_u *l = repl;
4338 repl = expand_env_save(repl);
4339 vim_free(l);
4342 /* Need to escape white space et al. with a backslash.
4343 * Don't do this for:
4344 * - replacement that already has been escaped: "##"
4345 * - shell commands (may have to use quotes instead).
4346 * - non-unix systems when there is a single argument (spaces don't
4347 * separate arguments then).
4349 if (!eap->usefilter
4350 && !escaped
4351 && eap->cmdidx != CMD_bang
4352 && eap->cmdidx != CMD_make
4353 && eap->cmdidx != CMD_lmake
4354 && eap->cmdidx != CMD_grep
4355 && eap->cmdidx != CMD_lgrep
4356 && eap->cmdidx != CMD_grepadd
4357 && eap->cmdidx != CMD_lgrepadd
4358 #ifndef UNIX
4359 && !(eap->argt & NOSPC)
4360 #endif
4363 char_u *l;
4364 #ifdef BACKSLASH_IN_FILENAME
4365 /* Don't escape a backslash here, because rem_backslash() doesn't
4366 * remove it later. */
4367 static char_u *nobslash = (char_u *)" \t\"|";
4368 # define ESCAPE_CHARS nobslash
4369 #else
4370 # define ESCAPE_CHARS escape_chars
4371 #endif
4373 for (l = repl; *l; ++l)
4374 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4376 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4377 if (l != NULL)
4379 vim_free(repl);
4380 repl = l;
4382 break;
4386 /* For a shell command a '!' must be escaped. */
4387 if ((eap->usefilter || eap->cmdidx == CMD_bang)
4388 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
4390 char_u *l;
4392 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
4393 if (l != NULL)
4395 vim_free(repl);
4396 repl = l;
4397 /* For a sh-like shell escape "!" another time. */
4398 if (strstr((char *)p_sh, "sh") != NULL)
4400 l = vim_strsave_escaped(repl, (char_u *)"!");
4401 if (l != NULL)
4403 vim_free(repl);
4404 repl = l;
4410 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4411 vim_free(repl);
4412 if (p == NULL)
4413 return FAIL;
4417 * One file argument: Expand wildcards.
4418 * Don't do this with ":r !command" or ":w !command".
4420 if ((eap->argt & NOSPC) && !eap->usefilter)
4423 * May do this twice:
4424 * 1. Replace environment variables.
4425 * 2. Replace any other wildcards, remove backslashes.
4427 for (n = 1; n <= 2; ++n)
4429 if (n == 2)
4431 #ifdef UNIX
4433 * Only for Unix we check for more than one file name.
4434 * For other systems spaces are considered to be part
4435 * of the file name.
4436 * Only check here if there is no wildcard, otherwise
4437 * ExpandOne() will check for errors. This allows
4438 * ":e `ls ve*.c`" on Unix.
4440 if (!has_wildcards)
4441 for (p = eap->arg; *p; ++p)
4443 /* skip escaped characters */
4444 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4445 ++p;
4446 else if (vim_iswhite(*p))
4448 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4449 return FAIL;
4452 #endif
4455 * Halve the number of backslashes (this is Vi compatible).
4456 * For Unix and OS/2, when wildcards are expanded, this is
4457 * done by ExpandOne() below.
4459 #if defined(UNIX) || defined(OS2)
4460 if (!has_wildcards)
4461 #endif
4462 backslash_halve(eap->arg);
4465 if (has_wildcards)
4467 if (n == 1)
4470 * First loop: May expand environment variables. This
4471 * can be done much faster with expand_env() than with
4472 * something else (e.g., calling a shell).
4473 * After expanding environment variables, check again
4474 * if there are still wildcards present.
4476 if (vim_strchr(eap->arg, '$') != NULL
4477 || vim_strchr(eap->arg, '~') != NULL)
4479 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
4480 TRUE, TRUE, NULL);
4481 has_wildcards = mch_has_wildcard(NameBuff);
4482 p = NameBuff;
4484 else
4485 p = NULL;
4487 else /* n == 2 */
4489 expand_T xpc;
4491 ExpandInit(&xpc);
4492 xpc.xp_context = EXPAND_FILES;
4493 p = ExpandOne(&xpc, eap->arg, NULL,
4494 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4495 WILD_EXPAND_FREE);
4496 if (p == NULL)
4497 return FAIL;
4499 if (p != NULL)
4501 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4502 p, cmdlinep);
4503 if (n == 2) /* p came from ExpandOne() */
4504 vim_free(p);
4509 return OK;
4513 * Replace part of the command line, keeping eap->cmd, eap->arg and
4514 * eap->nextcmd correct.
4515 * "src" points to the part that is to be replaced, of length "srclen".
4516 * "repl" is the replacement string.
4517 * Returns a pointer to the character after the replaced string.
4518 * Returns NULL for failure.
4520 static char_u *
4521 repl_cmdline(eap, src, srclen, repl, cmdlinep)
4522 exarg_T *eap;
4523 char_u *src;
4524 int srclen;
4525 char_u *repl;
4526 char_u **cmdlinep;
4528 int len;
4529 int i;
4530 char_u *new_cmdline;
4533 * The new command line is build in new_cmdline[].
4534 * First allocate it.
4535 * Careful: a "+cmd" argument may have been NUL terminated.
4537 len = (int)STRLEN(repl);
4538 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
4539 if (eap->nextcmd != NULL)
4540 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4541 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4542 return NULL; /* out of memory! */
4545 * Copy the stuff before the expanded part.
4546 * Copy the expanded stuff.
4547 * Copy what came after the expanded part.
4548 * Copy the next commands, if there are any.
4550 i = (int)(src - *cmdlinep); /* length of part before match */
4551 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
4553 mch_memmove(new_cmdline + i, repl, (size_t)len);
4554 i += len; /* remember the end of the string */
4555 STRCPY(new_cmdline + i, src + srclen);
4556 src = new_cmdline + i; /* remember where to continue */
4558 if (eap->nextcmd != NULL) /* append next command */
4560 i = (int)STRLEN(new_cmdline) + 1;
4561 STRCPY(new_cmdline + i, eap->nextcmd);
4562 eap->nextcmd = new_cmdline + i;
4564 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4565 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4566 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4567 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4568 vim_free(*cmdlinep);
4569 *cmdlinep = new_cmdline;
4571 return src;
4575 * Check for '|' to separate commands and '"' to start comments.
4577 void
4578 separate_nextcmd(eap)
4579 exarg_T *eap;
4581 char_u *p;
4583 #ifdef FEAT_QUICKFIX
4584 p = skip_grep_pat(eap);
4585 #else
4586 p = eap->arg;
4587 #endif
4589 for ( ; *p; mb_ptr_adv(p))
4591 if (*p == Ctrl_V)
4593 if (eap->argt & (USECTRLV | XFILE))
4594 ++p; /* skip CTRL-V and next char */
4595 else
4596 /* remove CTRL-V and skip next char */
4597 STRMOVE(p, p + 1);
4598 if (*p == NUL) /* stop at NUL after CTRL-V */
4599 break;
4602 #ifdef FEAT_EVAL
4603 /* Skip over `=expr` when wildcards are expanded. */
4604 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
4606 p += 2;
4607 (void)skip_expr(&p);
4609 #endif
4611 /* Check for '"': start of comment or '|': next command */
4612 /* :@" and :*" do not start a comment!
4613 * :redir @" doesn't either. */
4614 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4615 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4616 || p != eap->arg)
4617 && (eap->cmdidx != CMD_redir
4618 || p != eap->arg + 1 || p[-1] != '@'))
4619 || *p == '|' || *p == '\n')
4622 * We remove the '\' before the '|', unless USECTRLV is used
4623 * AND 'b' is present in 'cpoptions'.
4625 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4626 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4628 STRMOVE(p - 1, p); /* remove the '\' */
4629 --p;
4631 else
4633 eap->nextcmd = check_nextcmd(p);
4634 *p = NUL;
4635 break;
4640 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4641 del_trailing_spaces(eap->arg);
4645 * get + command from ex argument
4647 static char_u *
4648 getargcmd(argp)
4649 char_u **argp;
4651 char_u *arg = *argp;
4652 char_u *command = NULL;
4654 if (*arg == '+') /* +[command] */
4656 ++arg;
4657 if (vim_isspace(*arg))
4658 command = dollar_command;
4659 else
4661 command = arg;
4662 arg = skip_cmd_arg(command, TRUE);
4663 if (*arg != NUL)
4664 *arg++ = NUL; /* terminate command with NUL */
4667 arg = skipwhite(arg); /* skip over spaces */
4668 *argp = arg;
4670 return command;
4674 * Find end of "+command" argument. Skip over "\ " and "\\".
4676 static char_u *
4677 skip_cmd_arg(p, rembs)
4678 char_u *p;
4679 int rembs; /* TRUE to halve the number of backslashes */
4681 while (*p && !vim_isspace(*p))
4683 if (*p == '\\' && p[1] != NUL)
4685 if (rembs)
4686 STRMOVE(p, p + 1);
4687 else
4688 ++p;
4690 mb_ptr_adv(p);
4692 return p;
4696 * Get "++opt=arg" argument.
4697 * Return FAIL or OK.
4699 static int
4700 getargopt(eap)
4701 exarg_T *eap;
4703 char_u *arg = eap->arg + 2;
4704 int *pp = NULL;
4705 #ifdef FEAT_MBYTE
4706 char_u *p;
4707 #endif
4709 /* ":edit ++[no]bin[ary] file" */
4710 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4712 if (*arg == 'n')
4714 arg += 2;
4715 eap->force_bin = FORCE_NOBIN;
4717 else
4718 eap->force_bin = FORCE_BIN;
4719 if (!checkforcmd(&arg, "binary", 3))
4720 return FAIL;
4721 eap->arg = skipwhite(arg);
4722 return OK;
4725 /* ":read ++edit file" */
4726 if (STRNCMP(arg, "edit", 4) == 0)
4728 eap->read_edit = TRUE;
4729 eap->arg = skipwhite(arg + 4);
4730 return OK;
4733 if (STRNCMP(arg, "ff", 2) == 0)
4735 arg += 2;
4736 pp = &eap->force_ff;
4738 else if (STRNCMP(arg, "fileformat", 10) == 0)
4740 arg += 10;
4741 pp = &eap->force_ff;
4743 #ifdef FEAT_MBYTE
4744 else if (STRNCMP(arg, "enc", 3) == 0)
4746 arg += 3;
4747 pp = &eap->force_enc;
4749 else if (STRNCMP(arg, "encoding", 8) == 0)
4751 arg += 8;
4752 pp = &eap->force_enc;
4754 else if (STRNCMP(arg, "bad", 3) == 0)
4756 arg += 3;
4757 pp = &eap->bad_char;
4759 #endif
4761 if (pp == NULL || *arg != '=')
4762 return FAIL;
4764 ++arg;
4765 *pp = (int)(arg - eap->cmd);
4766 arg = skip_cmd_arg(arg, FALSE);
4767 eap->arg = skipwhite(arg);
4768 *arg = NUL;
4770 #ifdef FEAT_MBYTE
4771 if (pp == &eap->force_ff)
4773 #endif
4774 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4775 return FAIL;
4776 #ifdef FEAT_MBYTE
4778 else if (pp == &eap->force_enc)
4780 /* Make 'fileencoding' lower case. */
4781 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4782 *p = TOLOWER_ASC(*p);
4784 else
4786 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4787 * "drop". */
4788 p = eap->cmd + eap->bad_char;
4789 if (STRICMP(p, "keep") == 0)
4790 eap->bad_char = BAD_KEEP;
4791 else if (STRICMP(p, "drop") == 0)
4792 eap->bad_char = BAD_DROP;
4793 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4794 eap->bad_char = *p;
4795 else
4796 return FAIL;
4798 #endif
4800 return OK;
4804 * ":abbreviate" and friends.
4806 static void
4807 ex_abbreviate(eap)
4808 exarg_T *eap;
4810 do_exmap(eap, TRUE); /* almost the same as mapping */
4814 * ":map" and friends.
4816 static void
4817 ex_map(eap)
4818 exarg_T *eap;
4821 * If we are sourcing .exrc or .vimrc in current directory we
4822 * print the mappings for security reasons.
4824 if (secure)
4826 secure = 2;
4827 msg_outtrans(eap->cmd);
4828 msg_putchar('\n');
4830 do_exmap(eap, FALSE);
4834 * ":unmap" and friends.
4836 static void
4837 ex_unmap(eap)
4838 exarg_T *eap;
4840 do_exmap(eap, FALSE);
4844 * ":mapclear" and friends.
4846 static void
4847 ex_mapclear(eap)
4848 exarg_T *eap;
4850 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4854 * ":abclear" and friends.
4856 static void
4857 ex_abclear(eap)
4858 exarg_T *eap;
4860 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4863 #ifdef FEAT_AUTOCMD
4864 static void
4865 ex_autocmd(eap)
4866 exarg_T *eap;
4869 * Disallow auto commands from .exrc and .vimrc in current
4870 * directory for security reasons.
4872 if (secure)
4874 secure = 2;
4875 eap->errmsg = e_curdir;
4877 else if (eap->cmdidx == CMD_autocmd)
4878 do_autocmd(eap->arg, eap->forceit);
4879 else
4880 do_augroup(eap->arg, eap->forceit);
4884 * ":doautocmd": Apply the automatic commands to the current buffer.
4886 static void
4887 ex_doautocmd(eap)
4888 exarg_T *eap;
4890 (void)do_doautocmd(eap->arg, TRUE);
4891 do_modelines(0);
4893 #endif
4895 #ifdef FEAT_LISTCMDS
4897 * :[N]bunload[!] [N] [bufname] unload buffer
4898 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4899 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4901 static void
4902 ex_bunload(eap)
4903 exarg_T *eap;
4905 eap->errmsg = do_bufdel(
4906 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4907 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4908 : DOBUF_UNLOAD, eap->arg,
4909 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4913 * :[N]buffer [N] to buffer N
4914 * :[N]sbuffer [N] to buffer N
4916 static void
4917 ex_buffer(eap)
4918 exarg_T *eap;
4920 if (*eap->arg)
4921 eap->errmsg = e_trailing;
4922 else
4924 if (eap->addr_count == 0) /* default is current buffer */
4925 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4926 else
4927 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4932 * :[N]bmodified [N] to next mod. buffer
4933 * :[N]sbmodified [N] to next mod. buffer
4935 static void
4936 ex_bmodified(eap)
4937 exarg_T *eap;
4939 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4943 * :[N]bnext [N] to next buffer
4944 * :[N]sbnext [N] split and to next buffer
4946 static void
4947 ex_bnext(eap)
4948 exarg_T *eap;
4950 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4954 * :[N]bNext [N] to previous buffer
4955 * :[N]bprevious [N] to previous buffer
4956 * :[N]sbNext [N] split and to previous buffer
4957 * :[N]sbprevious [N] split and to previous buffer
4959 static void
4960 ex_bprevious(eap)
4961 exarg_T *eap;
4963 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4967 * :brewind to first buffer
4968 * :bfirst to first buffer
4969 * :sbrewind split and to first buffer
4970 * :sbfirst split and to first buffer
4972 static void
4973 ex_brewind(eap)
4974 exarg_T *eap;
4976 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4980 * :blast to last buffer
4981 * :sblast split and to last buffer
4983 static void
4984 ex_blast(eap)
4985 exarg_T *eap;
4987 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4989 #endif
4992 ends_excmd(c)
4993 int c;
4995 return (c == NUL || c == '|' || c == '"' || c == '\n');
4998 #if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4999 || defined(PROTO)
5001 * Return the next command, after the first '|' or '\n'.
5002 * Return NULL if not found.
5004 char_u *
5005 find_nextcmd(p)
5006 char_u *p;
5008 while (*p != '|' && *p != '\n')
5010 if (*p == NUL)
5011 return NULL;
5012 ++p;
5014 return (p + 1);
5016 #endif
5019 * Check if *p is a separator between Ex commands.
5020 * Return NULL if it isn't, (p + 1) if it is.
5022 char_u *
5023 check_nextcmd(p)
5024 char_u *p;
5026 p = skipwhite(p);
5027 if (*p == '|' || *p == '\n')
5028 return (p + 1);
5029 else
5030 return NULL;
5034 * - if there are more files to edit
5035 * - and this is the last window
5036 * - and forceit not used
5037 * - and not repeated twice on a row
5038 * return FAIL and give error message if 'message' TRUE
5039 * return OK otherwise
5041 static int
5042 check_more(message, forceit)
5043 int message; /* when FALSE check only, no messages */
5044 int forceit;
5046 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5048 if (!forceit && only_one_window()
5049 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
5051 if (message)
5053 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5054 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5056 char_u buff[IOSIZE];
5058 if (n == 1)
5059 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
5060 else
5061 vim_snprintf((char *)buff, IOSIZE,
5062 _("%d more files to edit. Quit anyway?"), n);
5063 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5064 return OK;
5065 return FAIL;
5067 #endif
5068 if (n == 1)
5069 EMSG(_("E173: 1 more file to edit"));
5070 else
5071 EMSGN(_("E173: %ld more files to edit"), n);
5072 quitmore = 2; /* next try to quit is allowed */
5074 return FAIL;
5076 return OK;
5079 #ifdef FEAT_CMDL_COMPL
5081 * Function given to ExpandGeneric() to obtain the list of command names.
5083 char_u *
5084 get_command_name(xp, idx)
5085 expand_T *xp UNUSED;
5086 int idx;
5088 if (idx >= (int)CMD_SIZE)
5089 # ifdef FEAT_USR_CMDS
5090 return get_user_command_name(idx);
5091 # else
5092 return NULL;
5093 # endif
5094 return cmdnames[idx].cmd_name;
5096 #endif
5098 #if defined(FEAT_USR_CMDS) || defined(PROTO)
5099 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));
5100 static void uc_list __ARGS((char_u *name, size_t name_len));
5101 static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5102 static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5103 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));
5105 static int
5106 uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5107 char_u *name;
5108 size_t name_len;
5109 char_u *rep;
5110 long argt;
5111 long def;
5112 int flags;
5113 int compl;
5114 char_u *compl_arg;
5115 int force;
5117 ucmd_T *cmd = NULL;
5118 char_u *p;
5119 int i;
5120 int cmp = 1;
5121 char_u *rep_buf = NULL;
5122 garray_T *gap;
5124 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
5125 if (rep_buf == NULL)
5127 /* Can't replace termcodes - try using the string as is */
5128 rep_buf = vim_strsave(rep);
5130 /* Give up if out of memory */
5131 if (rep_buf == NULL)
5132 return FAIL;
5135 /* get address of growarray: global or in curbuf */
5136 if (flags & UC_BUFFER)
5138 gap = &curbuf->b_ucmds;
5139 if (gap->ga_itemsize == 0)
5140 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5142 else
5143 gap = &ucmds;
5145 /* Search for the command in the already defined commands. */
5146 for (i = 0; i < gap->ga_len; ++i)
5148 size_t len;
5150 cmd = USER_CMD_GA(gap, i);
5151 len = STRLEN(cmd->uc_name);
5152 cmp = STRNCMP(name, cmd->uc_name, name_len);
5153 if (cmp == 0)
5155 if (name_len < len)
5156 cmp = -1;
5157 else if (name_len > len)
5158 cmp = 1;
5161 if (cmp == 0)
5163 if (!force)
5165 EMSG(_("E174: Command already exists: add ! to replace it"));
5166 goto fail;
5169 vim_free(cmd->uc_rep);
5170 cmd->uc_rep = NULL;
5171 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5172 vim_free(cmd->uc_compl_arg);
5173 cmd->uc_compl_arg = NULL;
5174 #endif
5175 break;
5178 /* Stop as soon as we pass the name to add */
5179 if (cmp < 0)
5180 break;
5183 /* Extend the array unless we're replacing an existing command */
5184 if (cmp != 0)
5186 if (ga_grow(gap, 1) != OK)
5187 goto fail;
5188 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5189 goto fail;
5191 cmd = USER_CMD_GA(gap, i);
5192 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5194 ++gap->ga_len;
5196 cmd->uc_name = p;
5199 cmd->uc_rep = rep_buf;
5200 cmd->uc_argt = argt;
5201 cmd->uc_def = def;
5202 cmd->uc_compl = compl;
5203 #ifdef FEAT_EVAL
5204 cmd->uc_scriptID = current_SID;
5205 # ifdef FEAT_CMDL_COMPL
5206 cmd->uc_compl_arg = compl_arg;
5207 # endif
5208 #endif
5210 return OK;
5212 fail:
5213 vim_free(rep_buf);
5214 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5215 vim_free(compl_arg);
5216 #endif
5217 return FAIL;
5221 * List of names for completion for ":command" with the EXPAND_ flag.
5222 * Must be alphabetical for completion.
5224 static struct
5226 int expand;
5227 char *name;
5228 } command_complete[] =
5230 {EXPAND_AUGROUP, "augroup"},
5231 {EXPAND_BUFFERS, "buffer"},
5232 {EXPAND_COMMANDS, "command"},
5233 #if defined(FEAT_CSCOPE)
5234 {EXPAND_CSCOPE, "cscope"},
5235 #endif
5236 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5237 {EXPAND_USER_DEFINED, "custom"},
5238 {EXPAND_USER_LIST, "customlist"},
5239 #endif
5240 {EXPAND_DIRECTORIES, "dir"},
5241 {EXPAND_ENV_VARS, "environment"},
5242 {EXPAND_EVENTS, "event"},
5243 {EXPAND_EXPRESSION, "expression"},
5244 {EXPAND_FILES, "file"},
5245 {EXPAND_FUNCTIONS, "function"},
5246 {EXPAND_HELP, "help"},
5247 {EXPAND_HIGHLIGHT, "highlight"},
5248 {EXPAND_MAPPINGS, "mapping"},
5249 {EXPAND_MENUS, "menu"},
5250 {EXPAND_SETTINGS, "option"},
5251 {EXPAND_SHELLCMD, "shellcmd"},
5252 #if defined(FEAT_SIGNS)
5253 {EXPAND_SIGN, "sign"},
5254 #endif
5255 {EXPAND_TAGS, "tag"},
5256 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5257 {EXPAND_USER_VARS, "var"},
5258 {0, NULL}
5261 static void
5262 uc_list(name, name_len)
5263 char_u *name;
5264 size_t name_len;
5266 int i, j;
5267 int found = FALSE;
5268 ucmd_T *cmd;
5269 int len;
5270 long a;
5271 garray_T *gap;
5273 gap = &curbuf->b_ucmds;
5274 for (;;)
5276 for (i = 0; i < gap->ga_len; ++i)
5278 cmd = USER_CMD_GA(gap, i);
5279 a = (long)cmd->uc_argt;
5281 /* Skip commands which don't match the requested prefix */
5282 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5283 continue;
5285 /* Put out the title first time */
5286 if (!found)
5287 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5288 found = TRUE;
5289 msg_putchar('\n');
5290 if (got_int)
5291 break;
5293 /* Special cases */
5294 msg_putchar(a & BANG ? '!' : ' ');
5295 msg_putchar(a & REGSTR ? '"' : ' ');
5296 msg_putchar(gap != &ucmds ? 'b' : ' ');
5297 msg_putchar(' ');
5299 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5300 len = (int)STRLEN(cmd->uc_name) + 4;
5302 do {
5303 msg_putchar(' ');
5304 ++len;
5305 } while (len < 16);
5307 len = 0;
5309 /* Arguments */
5310 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5312 case 0: IObuff[len++] = '0'; break;
5313 case (EXTRA): IObuff[len++] = '*'; break;
5314 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5315 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5316 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5319 do {
5320 IObuff[len++] = ' ';
5321 } while (len < 5);
5323 /* Range */
5324 if (a & (RANGE|COUNT))
5326 if (a & COUNT)
5328 /* -count=N */
5329 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5330 len += (int)STRLEN(IObuff + len);
5332 else if (a & DFLALL)
5333 IObuff[len++] = '%';
5334 else if (cmd->uc_def >= 0)
5336 /* -range=N */
5337 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5338 len += (int)STRLEN(IObuff + len);
5340 else
5341 IObuff[len++] = '.';
5344 do {
5345 IObuff[len++] = ' ';
5346 } while (len < 11);
5348 /* Completion */
5349 for (j = 0; command_complete[j].expand != 0; ++j)
5350 if (command_complete[j].expand == cmd->uc_compl)
5352 STRCPY(IObuff + len, command_complete[j].name);
5353 len += (int)STRLEN(IObuff + len);
5354 break;
5357 do {
5358 IObuff[len++] = ' ';
5359 } while (len < 21);
5361 IObuff[len] = '\0';
5362 msg_outtrans(IObuff);
5364 msg_outtrans_special(cmd->uc_rep, FALSE);
5365 #ifdef FEAT_EVAL
5366 if (p_verbose > 0)
5367 last_set_msg(cmd->uc_scriptID);
5368 #endif
5369 out_flush();
5370 ui_breakcheck();
5371 if (got_int)
5372 break;
5374 if (gap == &ucmds || i < gap->ga_len)
5375 break;
5376 gap = &ucmds;
5379 if (!found)
5380 MSG(_("No user-defined commands found"));
5383 static char_u *
5384 uc_fun_cmd()
5386 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5387 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5388 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5389 0xb9, 0x7f, 0};
5390 int i;
5392 for (i = 0; fcmd[i]; ++i)
5393 IObuff[i] = fcmd[i] - 0x40;
5394 IObuff[i] = 0;
5395 return IObuff;
5398 static int
5399 uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5400 char_u *attr;
5401 size_t len;
5402 long *argt;
5403 long *def;
5404 int *flags;
5405 int *compl;
5406 char_u **compl_arg;
5408 char_u *p;
5410 if (len == 0)
5412 EMSG(_("E175: No attribute specified"));
5413 return FAIL;
5416 /* First, try the simple attributes (no arguments) */
5417 if (STRNICMP(attr, "bang", len) == 0)
5418 *argt |= BANG;
5419 else if (STRNICMP(attr, "buffer", len) == 0)
5420 *flags |= UC_BUFFER;
5421 else if (STRNICMP(attr, "register", len) == 0)
5422 *argt |= REGSTR;
5423 else if (STRNICMP(attr, "bar", len) == 0)
5424 *argt |= TRLBAR;
5425 else
5427 int i;
5428 char_u *val = NULL;
5429 size_t vallen = 0;
5430 size_t attrlen = len;
5432 /* Look for the attribute name - which is the part before any '=' */
5433 for (i = 0; i < (int)len; ++i)
5435 if (attr[i] == '=')
5437 val = &attr[i + 1];
5438 vallen = len - i - 1;
5439 attrlen = i;
5440 break;
5444 if (STRNICMP(attr, "nargs", attrlen) == 0)
5446 if (vallen == 1)
5448 if (*val == '0')
5449 /* Do nothing - this is the default */;
5450 else if (*val == '1')
5451 *argt |= (EXTRA | NOSPC | NEEDARG);
5452 else if (*val == '*')
5453 *argt |= EXTRA;
5454 else if (*val == '?')
5455 *argt |= (EXTRA | NOSPC);
5456 else if (*val == '+')
5457 *argt |= (EXTRA | NEEDARG);
5458 else
5459 goto wrong_nargs;
5461 else
5463 wrong_nargs:
5464 EMSG(_("E176: Invalid number of arguments"));
5465 return FAIL;
5468 else if (STRNICMP(attr, "range", attrlen) == 0)
5470 *argt |= RANGE;
5471 if (vallen == 1 && *val == '%')
5472 *argt |= DFLALL;
5473 else if (val != NULL)
5475 p = val;
5476 if (*def >= 0)
5478 two_count:
5479 EMSG(_("E177: Count cannot be specified twice"));
5480 return FAIL;
5483 *def = getdigits(&p);
5484 *argt |= (ZEROR | NOTADR);
5486 if (p != val + vallen || vallen == 0)
5488 invalid_count:
5489 EMSG(_("E178: Invalid default value for count"));
5490 return FAIL;
5494 else if (STRNICMP(attr, "count", attrlen) == 0)
5496 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
5498 if (val != NULL)
5500 p = val;
5501 if (*def >= 0)
5502 goto two_count;
5504 *def = getdigits(&p);
5506 if (p != val + vallen)
5507 goto invalid_count;
5510 if (*def < 0)
5511 *def = 0;
5513 else if (STRNICMP(attr, "complete", attrlen) == 0)
5515 if (val == NULL)
5517 EMSG(_("E179: argument required for -complete"));
5518 return FAIL;
5521 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5522 == FAIL)
5523 return FAIL;
5525 else
5527 char_u ch = attr[len];
5528 attr[len] = '\0';
5529 EMSG2(_("E181: Invalid attribute: %s"), attr);
5530 attr[len] = ch;
5531 return FAIL;
5535 return OK;
5539 * ":command ..."
5541 static void
5542 ex_command(eap)
5543 exarg_T *eap;
5545 char_u *name;
5546 char_u *end;
5547 char_u *p;
5548 long argt = 0;
5549 long def = -1;
5550 int flags = 0;
5551 int compl = EXPAND_NOTHING;
5552 char_u *compl_arg = NULL;
5553 int has_attr = (eap->arg[0] == '-');
5555 p = eap->arg;
5557 /* Check for attributes */
5558 while (*p == '-')
5560 ++p;
5561 end = skiptowhite(p);
5562 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5563 == FAIL)
5564 return;
5565 p = skipwhite(end);
5568 /* Get the name (if any) and skip to the following argument */
5569 name = p;
5570 if (ASCII_ISALPHA(*p))
5571 while (ASCII_ISALNUM(*p))
5572 ++p;
5573 if (!ends_excmd(*p) && !vim_iswhite(*p))
5575 EMSG(_("E182: Invalid command name"));
5576 return;
5578 end = p;
5580 /* If there is nothing after the name, and no attributes were specified,
5581 * we are listing commands
5583 p = skipwhite(end);
5584 if (!has_attr && ends_excmd(*p))
5586 uc_list(name, end - name);
5588 else if (!ASCII_ISUPPER(*name))
5590 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5591 return;
5593 else
5594 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5595 eap->forceit);
5599 * ":comclear"
5600 * Clear all user commands, global and for current buffer.
5602 void
5603 ex_comclear(eap)
5604 exarg_T *eap UNUSED;
5606 uc_clear(&ucmds);
5607 uc_clear(&curbuf->b_ucmds);
5611 * Clear all user commands for "gap".
5613 void
5614 uc_clear(gap)
5615 garray_T *gap;
5617 int i;
5618 ucmd_T *cmd;
5620 for (i = 0; i < gap->ga_len; ++i)
5622 cmd = USER_CMD_GA(gap, i);
5623 vim_free(cmd->uc_name);
5624 vim_free(cmd->uc_rep);
5625 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5626 vim_free(cmd->uc_compl_arg);
5627 # endif
5629 ga_clear(gap);
5632 static void
5633 ex_delcommand(eap)
5634 exarg_T *eap;
5636 int i = 0;
5637 ucmd_T *cmd = NULL;
5638 int cmp = -1;
5639 garray_T *gap;
5641 gap = &curbuf->b_ucmds;
5642 for (;;)
5644 for (i = 0; i < gap->ga_len; ++i)
5646 cmd = USER_CMD_GA(gap, i);
5647 cmp = STRCMP(eap->arg, cmd->uc_name);
5648 if (cmp <= 0)
5649 break;
5651 if (gap == &ucmds || cmp == 0)
5652 break;
5653 gap = &ucmds;
5656 if (cmp != 0)
5658 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5659 return;
5662 vim_free(cmd->uc_name);
5663 vim_free(cmd->uc_rep);
5664 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5665 vim_free(cmd->uc_compl_arg);
5666 # endif
5668 --gap->ga_len;
5670 if (i < gap->ga_len)
5671 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5675 * split and quote args for <f-args>
5677 static char_u *
5678 uc_split_args(arg, lenp)
5679 char_u *arg;
5680 size_t *lenp;
5682 char_u *buf;
5683 char_u *p;
5684 char_u *q;
5685 int len;
5687 /* Precalculate length */
5688 p = arg;
5689 len = 2; /* Initial and final quotes */
5691 while (*p)
5693 if (p[0] == '\\' && p[1] == '\\')
5695 len += 2;
5696 p += 2;
5698 else if (p[0] == '\\' && vim_iswhite(p[1]))
5700 len += 1;
5701 p += 2;
5703 else if (*p == '\\' || *p == '"')
5705 len += 2;
5706 p += 1;
5708 else if (vim_iswhite(*p))
5710 p = skipwhite(p);
5711 if (*p == NUL)
5712 break;
5713 len += 3; /* "," */
5715 else
5717 ++len;
5718 ++p;
5722 buf = alloc(len + 1);
5723 if (buf == NULL)
5725 *lenp = 0;
5726 return buf;
5729 p = arg;
5730 q = buf;
5731 *q++ = '"';
5732 while (*p)
5734 if (p[0] == '\\' && p[1] == '\\')
5736 *q++ = '\\';
5737 *q++ = '\\';
5738 p += 2;
5740 else if (p[0] == '\\' && vim_iswhite(p[1]))
5742 *q++ = p[1];
5743 p += 2;
5745 else if (*p == '\\' || *p == '"')
5747 *q++ = '\\';
5748 *q++ = *p++;
5750 else if (vim_iswhite(*p))
5752 p = skipwhite(p);
5753 if (*p == NUL)
5754 break;
5755 *q++ = '"';
5756 *q++ = ',';
5757 *q++ = '"';
5759 else
5761 *q++ = *p++;
5764 *q++ = '"';
5765 *q = 0;
5767 *lenp = len;
5768 return buf;
5772 * Check for a <> code in a user command.
5773 * "code" points to the '<'. "len" the length of the <> (inclusive).
5774 * "buf" is where the result is to be added.
5775 * "split_buf" points to a buffer used for splitting, caller should free it.
5776 * "split_len" is the length of what "split_buf" contains.
5777 * Returns the length of the replacement, which has been added to "buf".
5778 * Returns -1 if there was no match, and only the "<" has been copied.
5780 static size_t
5781 uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5782 char_u *code;
5783 size_t len;
5784 char_u *buf;
5785 ucmd_T *cmd; /* the user command we're expanding */
5786 exarg_T *eap; /* ex arguments */
5787 char_u **split_buf;
5788 size_t *split_len;
5790 size_t result = 0;
5791 char_u *p = code + 1;
5792 size_t l = len - 2;
5793 int quote = 0;
5794 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5795 ct_LT, ct_NONE } type = ct_NONE;
5797 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5799 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5800 p += 2;
5801 l -= 2;
5804 ++l;
5805 if (l <= 1)
5806 type = ct_NONE;
5807 else if (STRNICMP(p, "args>", l) == 0)
5808 type = ct_ARGS;
5809 else if (STRNICMP(p, "bang>", l) == 0)
5810 type = ct_BANG;
5811 else if (STRNICMP(p, "count>", l) == 0)
5812 type = ct_COUNT;
5813 else if (STRNICMP(p, "line1>", l) == 0)
5814 type = ct_LINE1;
5815 else if (STRNICMP(p, "line2>", l) == 0)
5816 type = ct_LINE2;
5817 else if (STRNICMP(p, "lt>", l) == 0)
5818 type = ct_LT;
5819 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
5820 type = ct_REGISTER;
5822 switch (type)
5824 case ct_ARGS:
5825 /* Simple case first */
5826 if (*eap->arg == NUL)
5828 if (quote == 1)
5830 result = 2;
5831 if (buf != NULL)
5832 STRCPY(buf, "''");
5834 else
5835 result = 0;
5836 break;
5839 /* When specified there is a single argument don't split it.
5840 * Works for ":Cmd %" when % is "a b c". */
5841 if ((eap->argt & NOSPC) && quote == 2)
5842 quote = 1;
5844 switch (quote)
5846 case 0: /* No quoting, no splitting */
5847 result = STRLEN(eap->arg);
5848 if (buf != NULL)
5849 STRCPY(buf, eap->arg);
5850 break;
5851 case 1: /* Quote, but don't split */
5852 result = STRLEN(eap->arg) + 2;
5853 for (p = eap->arg; *p; ++p)
5855 if (*p == '\\' || *p == '"')
5856 ++result;
5859 if (buf != NULL)
5861 *buf++ = '"';
5862 for (p = eap->arg; *p; ++p)
5864 if (*p == '\\' || *p == '"')
5865 *buf++ = '\\';
5866 *buf++ = *p;
5868 *buf = '"';
5871 break;
5872 case 2: /* Quote and split (<f-args>) */
5873 /* This is hard, so only do it once, and cache the result */
5874 if (*split_buf == NULL)
5875 *split_buf = uc_split_args(eap->arg, split_len);
5877 result = *split_len;
5878 if (buf != NULL && result != 0)
5879 STRCPY(buf, *split_buf);
5881 break;
5883 break;
5885 case ct_BANG:
5886 result = eap->forceit ? 1 : 0;
5887 if (quote)
5888 result += 2;
5889 if (buf != NULL)
5891 if (quote)
5892 *buf++ = '"';
5893 if (eap->forceit)
5894 *buf++ = '!';
5895 if (quote)
5896 *buf = '"';
5898 break;
5900 case ct_LINE1:
5901 case ct_LINE2:
5902 case ct_COUNT:
5904 char num_buf[20];
5905 long num = (type == ct_LINE1) ? eap->line1 :
5906 (type == ct_LINE2) ? eap->line2 :
5907 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5908 size_t num_len;
5910 sprintf(num_buf, "%ld", num);
5911 num_len = STRLEN(num_buf);
5912 result = num_len;
5914 if (quote)
5915 result += 2;
5917 if (buf != NULL)
5919 if (quote)
5920 *buf++ = '"';
5921 STRCPY(buf, num_buf);
5922 buf += num_len;
5923 if (quote)
5924 *buf = '"';
5927 break;
5930 case ct_REGISTER:
5931 result = eap->regname ? 1 : 0;
5932 if (quote)
5933 result += 2;
5934 if (buf != NULL)
5936 if (quote)
5937 *buf++ = '\'';
5938 if (eap->regname)
5939 *buf++ = eap->regname;
5940 if (quote)
5941 *buf = '\'';
5943 break;
5945 case ct_LT:
5946 result = 1;
5947 if (buf != NULL)
5948 *buf = '<';
5949 break;
5951 default:
5952 /* Not recognized: just copy the '<' and return -1. */
5953 result = (size_t)-1;
5954 if (buf != NULL)
5955 *buf = '<';
5956 break;
5959 return result;
5962 static void
5963 do_ucmd(eap)
5964 exarg_T *eap;
5966 char_u *buf;
5967 char_u *p;
5968 char_u *q;
5970 char_u *start;
5971 char_u *end = NULL;
5972 char_u *ksp;
5973 size_t len, totlen;
5975 size_t split_len = 0;
5976 char_u *split_buf = NULL;
5977 ucmd_T *cmd;
5978 #ifdef FEAT_EVAL
5979 scid_T save_current_SID = current_SID;
5980 #endif
5982 if (eap->cmdidx == CMD_USER)
5983 cmd = USER_CMD(eap->useridx);
5984 else
5985 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5988 * Replace <> in the command by the arguments.
5989 * First round: "buf" is NULL, compute length, allocate "buf".
5990 * Second round: copy result into "buf".
5992 buf = NULL;
5993 for (;;)
5995 p = cmd->uc_rep; /* source */
5996 q = buf; /* destination */
5997 totlen = 0;
5999 for (;;)
6001 start = vim_strchr(p, '<');
6002 if (start != NULL)
6003 end = vim_strchr(start + 1, '>');
6004 if (buf != NULL)
6006 ksp = vim_strchr(p, K_SPECIAL);
6007 if (ksp != NULL && (start == NULL || ksp < start || end == NULL)
6008 && ((ksp[1] == KS_SPECIAL && ksp[2] == KE_FILLER)
6009 # ifdef FEAT_GUI
6010 || (ksp[1] == KS_EXTRA && ksp[2] == (int)KE_CSI)
6011 # endif
6014 /* K_SPECIAL han been put in the buffer as K_SPECIAL
6015 * KS_SPECIAL KE_FILLER, like for mappings, but
6016 * do_cmdline() doesn't handle that, so convert it back.
6017 * Also change K_SPECIAL KS_EXTRA KE_CSI into CSI. */
6018 len = ksp - p;
6019 if (len > 0)
6021 mch_memmove(q, p, len);
6022 q += len;
6024 *q++ = ksp[1] == KS_SPECIAL ? K_SPECIAL : CSI;
6025 p = ksp + 3;
6026 continue;
6030 /* break if there no <item> is found */
6031 if (start == NULL || end == NULL)
6032 break;
6034 /* Include the '>' */
6035 ++end;
6037 /* Take everything up to the '<' */
6038 len = start - p;
6039 if (buf == NULL)
6040 totlen += len;
6041 else
6043 mch_memmove(q, p, len);
6044 q += len;
6047 len = uc_check_code(start, end - start, q, cmd, eap,
6048 &split_buf, &split_len);
6049 if (len == (size_t)-1)
6051 /* no match, continue after '<' */
6052 p = start + 1;
6053 len = 1;
6055 else
6056 p = end;
6057 if (buf == NULL)
6058 totlen += len;
6059 else
6060 q += len;
6062 if (buf != NULL) /* second time here, finished */
6064 STRCPY(q, p);
6065 break;
6068 totlen += STRLEN(p); /* Add on the trailing characters */
6069 buf = alloc((unsigned)(totlen + 1));
6070 if (buf == NULL)
6072 vim_free(split_buf);
6073 return;
6077 #ifdef FEAT_EVAL
6078 current_SID = cmd->uc_scriptID;
6079 #endif
6080 (void)do_cmdline(buf, eap->getline, eap->cookie,
6081 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
6082 #ifdef FEAT_EVAL
6083 current_SID = save_current_SID;
6084 #endif
6085 vim_free(buf);
6086 vim_free(split_buf);
6089 # if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6090 static char_u *
6091 get_user_command_name(idx)
6092 int idx;
6094 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6098 * Function given to ExpandGeneric() to obtain the list of user command names.
6100 char_u *
6101 get_user_commands(xp, idx)
6102 expand_T *xp UNUSED;
6103 int idx;
6105 if (idx < curbuf->b_ucmds.ga_len)
6106 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6107 idx -= curbuf->b_ucmds.ga_len;
6108 if (idx < ucmds.ga_len)
6109 return USER_CMD(idx)->uc_name;
6110 return NULL;
6114 * Function given to ExpandGeneric() to obtain the list of user command
6115 * attributes.
6117 char_u *
6118 get_user_cmd_flags(xp, idx)
6119 expand_T *xp UNUSED;
6120 int idx;
6122 static char *user_cmd_flags[] =
6123 {"bang", "bar", "buffer", "complete", "count",
6124 "nargs", "range", "register"};
6126 if (idx >= (int)(sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0])))
6127 return NULL;
6128 return (char_u *)user_cmd_flags[idx];
6132 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6134 char_u *
6135 get_user_cmd_nargs(xp, idx)
6136 expand_T *xp UNUSED;
6137 int idx;
6139 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6141 if (idx >= (int)(sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0])))
6142 return NULL;
6143 return (char_u *)user_cmd_nargs[idx];
6147 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6149 char_u *
6150 get_user_cmd_complete(xp, idx)
6151 expand_T *xp UNUSED;
6152 int idx;
6154 return (char_u *)command_complete[idx].name;
6156 # endif /* FEAT_CMDL_COMPL */
6158 #endif /* FEAT_USR_CMDS */
6160 #if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6162 * Parse a completion argument "value[vallen]".
6163 * The detected completion goes in "*complp", argument type in "*argt".
6164 * When there is an argument, for function and user defined completion, it's
6165 * copied to allocated memory and stored in "*compl_arg".
6166 * Returns FAIL if something is wrong.
6169 parse_compl_arg(value, vallen, complp, argt, compl_arg)
6170 char_u *value;
6171 int vallen;
6172 int *complp;
6173 long *argt;
6174 char_u **compl_arg;
6176 char_u *arg = NULL;
6177 size_t arglen = 0;
6178 int i;
6179 int valend = vallen;
6181 /* Look for any argument part - which is the part after any ',' */
6182 for (i = 0; i < vallen; ++i)
6184 if (value[i] == ',')
6186 arg = &value[i + 1];
6187 arglen = vallen - i - 1;
6188 valend = i;
6189 break;
6193 for (i = 0; command_complete[i].expand != 0; ++i)
6195 if ((int)STRLEN(command_complete[i].name) == valend
6196 && STRNCMP(value, command_complete[i].name, valend) == 0)
6198 *complp = command_complete[i].expand;
6199 if (command_complete[i].expand == EXPAND_BUFFERS)
6200 *argt |= BUFNAME;
6201 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6202 || command_complete[i].expand == EXPAND_FILES)
6203 *argt |= XFILE;
6204 break;
6208 if (command_complete[i].expand == 0)
6210 EMSG2(_("E180: Invalid complete value: %s"), value);
6211 return FAIL;
6214 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6215 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6216 && arg != NULL)
6217 # else
6218 if (arg != NULL)
6219 # endif
6221 EMSG(_("E468: Completion argument only allowed for custom completion"));
6222 return FAIL;
6225 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6226 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6227 && arg == NULL)
6229 EMSG(_("E467: Custom completion requires a function argument"));
6230 return FAIL;
6233 if (arg != NULL)
6234 *compl_arg = vim_strnsave(arg, (int)arglen);
6235 # endif
6236 return OK;
6238 #endif
6240 static void
6241 ex_colorscheme(eap)
6242 exarg_T *eap;
6244 if (load_colors(eap->arg) == FAIL)
6245 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6248 static void
6249 ex_highlight(eap)
6250 exarg_T *eap;
6252 if (*eap->arg == NUL && eap->cmd[2] == '!')
6253 MSG(_("Greetings, Vim user!"));
6254 do_highlight(eap->arg, eap->forceit, FALSE);
6259 * Call this function if we thought we were going to exit, but we won't
6260 * (because of an error). May need to restore the terminal mode.
6262 void
6263 not_exiting()
6265 exiting = FALSE;
6266 settmode(TMODE_RAW);
6270 * ":quit": quit current window, quit Vim if closed the last window.
6272 static void
6273 ex_quit(eap)
6274 exarg_T *eap;
6276 #ifdef FEAT_CMDWIN
6277 if (cmdwin_type != 0)
6279 cmdwin_result = Ctrl_C;
6280 return;
6282 #endif
6283 /* Don't quit while editing the command line. */
6284 if (text_locked())
6286 text_locked_msg();
6287 return;
6289 #ifdef FEAT_AUTOCMD
6290 if (curbuf_locked())
6291 return;
6292 #endif
6294 #ifdef FEAT_NETBEANS_INTG
6295 netbeansForcedQuit = eap->forceit;
6296 #endif
6299 * If there are more files or windows we won't exit.
6301 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6302 exiting = TRUE;
6303 if ((!P_HID(curbuf)
6304 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6305 || check_more(TRUE, eap->forceit) == FAIL
6306 || (only_one_window() && check_changed_any(eap->forceit)))
6308 not_exiting();
6310 else
6312 #ifdef FEAT_WINDOWS
6313 if (only_one_window()) /* quit last window */
6314 #endif
6315 getout(0);
6316 #ifdef FEAT_WINDOWS
6317 # ifdef FEAT_GUI
6318 need_mouse_correct = TRUE;
6319 # endif
6320 /* close window; may free buffer */
6321 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6322 #endif
6327 * ":cquit".
6329 static void
6330 ex_cquit(eap)
6331 exarg_T *eap UNUSED;
6333 getout(1); /* this does not always pass on the exit code to the Manx
6334 compiler. why? */
6338 * ":qall": try to quit all windows
6340 static void
6341 ex_quit_all(eap)
6342 exarg_T *eap;
6344 # ifdef FEAT_CMDWIN
6345 if (cmdwin_type != 0)
6347 if (eap->forceit)
6348 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6349 else
6350 cmdwin_result = K_XF2;
6351 return;
6353 # endif
6355 /* Don't quit while editing the command line. */
6356 if (text_locked())
6358 text_locked_msg();
6359 return;
6361 #ifdef FEAT_AUTOCMD
6362 if (curbuf_locked())
6363 return;
6364 #endif
6366 exiting = TRUE;
6367 if (eap->forceit || !check_changed_any(FALSE))
6368 getout(0);
6369 not_exiting();
6372 #if defined(FEAT_WINDOWS) || defined(PROTO)
6374 * ":close": close current window, unless it is the last one
6376 static void
6377 ex_close(eap)
6378 exarg_T *eap;
6380 # ifdef FEAT_CMDWIN
6381 if (cmdwin_type != 0)
6382 cmdwin_result = K_IGNORE;
6383 else
6384 # endif
6385 if (!text_locked()
6386 #ifdef FEAT_AUTOCMD
6387 && !curbuf_locked()
6388 #endif
6390 ex_win_close(eap->forceit, curwin, NULL);
6393 # ifdef FEAT_QUICKFIX
6395 * ":pclose": Close any preview window.
6397 static void
6398 ex_pclose(eap)
6399 exarg_T *eap;
6401 win_T *win;
6403 for (win = firstwin; win != NULL; win = win->w_next)
6404 if (win->w_p_pvw)
6406 ex_win_close(eap->forceit, win, NULL);
6407 break;
6410 # endif
6413 * Close window "win" and take care of handling closing the last window for a
6414 * modified buffer.
6416 static void
6417 ex_win_close(forceit, win, tp)
6418 int forceit;
6419 win_T *win;
6420 tabpage_T *tp; /* NULL or the tab page "win" is in */
6422 int need_hide;
6423 buf_T *buf = win->w_buffer;
6425 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
6426 if (need_hide && !P_HID(buf) && !forceit)
6428 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
6429 if ((p_confirm || cmdmod.confirm) && p_write)
6431 dialog_changed(buf, FALSE);
6432 if (buf_valid(buf) && bufIsChanged(buf))
6433 return;
6434 need_hide = FALSE;
6436 else
6437 # endif
6439 EMSG(_(e_nowrtmsg));
6440 return;
6444 # ifdef FEAT_GUI
6445 need_mouse_correct = TRUE;
6446 # endif
6448 /* free buffer when not hiding it or when it's a scratch buffer */
6449 if (tp == NULL)
6450 win_close(win, !need_hide && !P_HID(buf));
6451 else
6452 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
6456 * ":tabclose": close current tab page, unless it is the last one.
6457 * ":tabclose N": close tab page N.
6459 static void
6460 ex_tabclose(eap)
6461 exarg_T *eap;
6463 tabpage_T *tp;
6465 # ifdef FEAT_CMDWIN
6466 if (cmdwin_type != 0)
6467 cmdwin_result = K_IGNORE;
6468 else
6469 # endif
6470 if (first_tabpage->tp_next == NULL)
6471 EMSG(_("E784: Cannot close last tab page"));
6472 else
6474 if (eap->addr_count > 0)
6476 tp = find_tabpage((int)eap->line2);
6477 if (tp == NULL)
6479 beep_flush();
6480 return;
6482 if (tp != curtab)
6484 tabpage_close_other(tp, eap->forceit);
6485 return;
6488 if (!text_locked()
6489 #ifdef FEAT_AUTOCMD
6490 && !curbuf_locked()
6491 #endif
6493 tabpage_close(eap->forceit);
6498 * ":tabonly": close all tab pages except the current one
6500 static void
6501 ex_tabonly(eap)
6502 exarg_T *eap;
6504 tabpage_T *tp;
6505 int done;
6507 # ifdef FEAT_CMDWIN
6508 if (cmdwin_type != 0)
6509 cmdwin_result = K_IGNORE;
6510 else
6511 # endif
6512 if (first_tabpage->tp_next == NULL)
6513 MSG(_("Already only one tab page"));
6514 else
6516 /* Repeat this up to a 1000 times, because autocommands may mess
6517 * up the lists. */
6518 for (done = 0; done < 1000; ++done)
6520 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6521 if (tp->tp_topframe != topframe)
6523 tabpage_close_other(tp, eap->forceit);
6524 /* if we failed to close it quit */
6525 if (valid_tabpage(tp))
6526 done = 1000;
6527 /* start over, "tp" is now invalid */
6528 break;
6530 if (first_tabpage->tp_next == NULL)
6531 break;
6537 * Close the current tab page.
6539 void
6540 tabpage_close(forceit)
6541 int forceit;
6543 /* First close all the windows but the current one. If that worked then
6544 * close the last window in this tab, that will close it. */
6545 if (lastwin != firstwin)
6546 close_others(TRUE, forceit);
6547 if (lastwin == firstwin)
6548 ex_win_close(forceit, curwin, NULL);
6549 # ifdef FEAT_GUI
6550 need_mouse_correct = TRUE;
6551 # endif
6555 * Close tab page "tp", which is not the current tab page.
6556 * Note that autocommands may make "tp" invalid.
6557 * Also takes care of the tab pages line disappearing when closing the
6558 * last-but-one tab page.
6560 void
6561 tabpage_close_other(tp, forceit)
6562 tabpage_T *tp;
6563 int forceit;
6565 int done = 0;
6566 win_T *wp;
6567 int h = tabline_height();
6569 /* Limit to 1000 windows, autocommands may add a window while we close
6570 * one. OK, so I'm paranoid... */
6571 while (++done < 1000)
6573 wp = tp->tp_firstwin;
6574 ex_win_close(forceit, wp, tp);
6576 /* Autocommands may delete the tab page under our fingers and we may
6577 * fail to close a window with a modified buffer. */
6578 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
6579 break;
6582 redraw_tabline = TRUE;
6583 if (h != tabline_height())
6584 shell_new_rows();
6588 * ":only".
6590 static void
6591 ex_only(eap)
6592 exarg_T *eap;
6594 # ifdef FEAT_GUI
6595 need_mouse_correct = TRUE;
6596 # endif
6597 close_others(TRUE, eap->forceit);
6601 * ":all" and ":sall".
6602 * Also used for ":tab drop file ..." after setting the argument list.
6604 void
6605 ex_all(eap)
6606 exarg_T *eap;
6608 if (eap->addr_count == 0)
6609 eap->line2 = 9999;
6610 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
6612 #endif /* FEAT_WINDOWS */
6614 static void
6615 ex_hide(eap)
6616 exarg_T *eap;
6618 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6619 eap->errmsg = e_invarg;
6620 else
6622 /* ":hide" or ":hide | cmd": hide current window */
6623 eap->nextcmd = check_nextcmd(eap->arg);
6624 #ifdef FEAT_WINDOWS
6625 if (!eap->skip)
6627 # ifdef FEAT_GUI
6628 need_mouse_correct = TRUE;
6629 # endif
6630 win_close(curwin, FALSE); /* don't free buffer */
6632 #endif
6637 * ":stop" and ":suspend": Suspend Vim.
6639 static void
6640 ex_stop(eap)
6641 exarg_T *eap;
6644 * Disallow suspending for "rvim".
6646 if (!check_restricted()
6647 #ifdef WIN3264
6649 * Check if external commands are allowed now.
6651 && can_end_termcap_mode(TRUE)
6652 #endif
6655 if (!eap->forceit)
6656 autowrite_all();
6657 windgoto((int)Rows - 1, 0);
6658 out_char('\n');
6659 out_flush();
6660 stoptermcap();
6661 out_flush(); /* needed for SUN to restore xterm buffer */
6662 #ifdef FEAT_TITLE
6663 mch_restore_title(3); /* restore window titles */
6664 #endif
6665 ui_suspend(); /* call machine specific function */
6666 #ifdef FEAT_TITLE
6667 maketitle();
6668 resettitle(); /* force updating the title */
6669 #endif
6670 starttermcap();
6671 scroll_start(); /* scroll screen before redrawing */
6672 redraw_later_clear();
6673 shell_resized(); /* may have resized window */
6678 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6680 static void
6681 ex_exit(eap)
6682 exarg_T *eap;
6684 #ifdef FEAT_CMDWIN
6685 if (cmdwin_type != 0)
6687 cmdwin_result = Ctrl_C;
6688 return;
6690 #endif
6691 /* Don't quit while editing the command line. */
6692 if (text_locked())
6694 text_locked_msg();
6695 return;
6697 #ifdef FEAT_AUTOCMD
6698 if (curbuf_locked())
6699 return;
6700 #endif
6703 * if more files or windows we won't exit
6705 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6706 exiting = TRUE;
6707 if ( ((eap->cmdidx == CMD_wq
6708 || curbufIsChanged())
6709 && do_write(eap) == FAIL)
6710 || check_more(TRUE, eap->forceit) == FAIL
6711 || (only_one_window() && check_changed_any(eap->forceit)))
6713 not_exiting();
6715 else
6717 #ifdef FEAT_WINDOWS
6718 if (only_one_window()) /* quit last window, exit Vim */
6719 #endif
6720 getout(0);
6721 #ifdef FEAT_WINDOWS
6722 # ifdef FEAT_GUI
6723 need_mouse_correct = TRUE;
6724 # endif
6725 /* quit current window, may free buffer */
6726 win_close(curwin, !P_HID(curwin->w_buffer));
6727 #endif
6732 * ":print", ":list", ":number".
6734 static void
6735 ex_print(eap)
6736 exarg_T *eap;
6738 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6739 EMSG(_(e_emptybuf));
6740 else
6742 for ( ;!got_int; ui_breakcheck())
6744 print_line(eap->line1,
6745 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6746 || (eap->flags & EXFLAG_NR)),
6747 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6748 if (++eap->line1 > eap->line2)
6749 break;
6750 out_flush(); /* show one line at a time */
6752 setpcmark();
6753 /* put cursor at last line */
6754 curwin->w_cursor.lnum = eap->line2;
6755 beginline(BL_SOL | BL_FIX);
6758 ex_no_reprint = TRUE;
6761 #ifdef FEAT_BYTEOFF
6762 static void
6763 ex_goto(eap)
6764 exarg_T *eap;
6766 goto_byte(eap->line2);
6768 #endif
6771 * ":shell".
6773 static void
6774 ex_shell(eap)
6775 exarg_T *eap UNUSED;
6777 do_shell(NULL, 0);
6780 #if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6781 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
6782 || defined(FEAT_GUI_MSWIN) \
6783 || defined(FEAT_GUI_MAC) \
6784 || defined(PROTO) \
6785 || defined(FEAT_GUI_MACVIM)
6788 * Handle a file drop. The code is here because a drop is *nearly* like an
6789 * :args command, but not quite (we have a list of exact filenames, so we
6790 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6791 * code is very similar to :args and hence needs access to a lot of the static
6792 * functions in this file.
6794 * The list should be allocated using alloc(), as should each item in the
6795 * list. This function takes over responsibility for freeing the list.
6797 * XXX The list is made into the argument list. This is freed using
6798 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6799 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6800 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6801 * file functionality is (currently) not in EMX this is not presently a
6802 * problem.
6804 void
6805 handle_drop(filec, filev, split)
6806 int filec; /* the number of files dropped */
6807 char_u **filev; /* the list of files dropped */
6808 int split; /* force splitting the window */
6810 exarg_T ea;
6811 int save_msg_scroll = msg_scroll;
6813 /* Postpone this while editing the command line. */
6814 if (text_locked())
6815 return;
6816 #ifdef FEAT_AUTOCMD
6817 if (curbuf_locked())
6818 return;
6819 #endif
6820 /* When the screen is being updated we should not change buffers and
6821 * windows structures, it may cause freed memory to be used. */
6822 if (updating_screen)
6823 return;
6825 /* Check whether the current buffer is changed. If so, we will need
6826 * to split the current window or data could be lost.
6827 * We don't need to check if the 'hidden' option is set, as in this
6828 * case the buffer won't be lost.
6830 if (!P_HID(curbuf) && !split)
6832 ++emsg_off;
6833 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6834 --emsg_off;
6836 if (split)
6838 # ifdef FEAT_WINDOWS
6839 if (win_split(0, 0) == FAIL)
6840 return;
6841 # ifdef FEAT_SCROLLBIND
6842 curwin->w_p_scb = FALSE;
6843 # endif
6845 /* When splitting the window, create a new alist. Otherwise the
6846 * existing one is overwritten. */
6847 alist_unlink(curwin->w_alist);
6848 alist_new();
6849 # else
6850 return; /* can't split, always fail */
6851 # endif
6855 * Set up the new argument list.
6857 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
6860 * Move to the first file.
6862 /* Fake up a minimal "next" command for do_argfile() */
6863 vim_memset(&ea, 0, sizeof(ea));
6864 ea.cmd = (char_u *)"next";
6865 do_argfile(&ea, 0);
6867 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6868 * mode that is not needed here. */
6869 need_start_insertmode = FALSE;
6871 /* Restore msg_scroll, otherwise a following command may cause scrolling
6872 * unexpectedly. The screen will be redrawn by the caller, thus
6873 * msg_scroll being set by displaying a message is irrelevant. */
6874 msg_scroll = save_msg_scroll;
6876 #endif
6879 * Clear an argument list: free all file names and reset it to zero entries.
6881 void
6882 alist_clear(al)
6883 alist_T *al;
6885 while (--al->al_ga.ga_len >= 0)
6886 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6887 ga_clear(&al->al_ga);
6891 * Init an argument list.
6893 void
6894 alist_init(al)
6895 alist_T *al;
6897 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6900 #if defined(FEAT_WINDOWS) || defined(PROTO)
6903 * Remove a reference from an argument list.
6904 * Ignored when the argument list is the global one.
6905 * If the argument list is no longer used by any window, free it.
6907 void
6908 alist_unlink(al)
6909 alist_T *al;
6911 if (al != &global_alist && --al->al_refcount <= 0)
6913 alist_clear(al);
6914 vim_free(al);
6918 # if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6920 * Create a new argument list and use it for the current window.
6922 void
6923 alist_new()
6925 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6926 if (curwin->w_alist == NULL)
6928 curwin->w_alist = &global_alist;
6929 ++global_alist.al_refcount;
6931 else
6933 curwin->w_alist->al_refcount = 1;
6934 alist_init(curwin->w_alist);
6937 # endif
6938 #endif
6940 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6942 * Expand the file names in the global argument list.
6943 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6944 * numbers to be re-used.
6946 void
6947 alist_expand(fnum_list, fnum_len)
6948 int *fnum_list;
6949 int fnum_len;
6951 char_u **old_arg_files;
6952 int old_arg_count;
6953 char_u **new_arg_files;
6954 int new_arg_file_count;
6955 char_u *save_p_su = p_su;
6956 int i;
6958 /* Don't use 'suffixes' here. This should work like the shell did the
6959 * expansion. Also, the vimrc file isn't read yet, thus the user
6960 * can't set the options. */
6961 p_su = empty_option;
6962 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6963 if (old_arg_files != NULL)
6965 for (i = 0; i < GARGCOUNT; ++i)
6966 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6967 old_arg_count = GARGCOUNT;
6968 if (expand_wildcards(old_arg_count, old_arg_files,
6969 &new_arg_file_count, &new_arg_files,
6970 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6971 && new_arg_file_count > 0)
6973 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6974 TRUE, fnum_list, fnum_len);
6975 FreeWild(old_arg_count, old_arg_files);
6978 p_su = save_p_su;
6980 #endif
6983 * Set the argument list for the current window.
6984 * Takes over the allocated files[] and the allocated fnames in it.
6986 void
6987 alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
6988 alist_T *al;
6989 int count;
6990 char_u **files;
6991 int use_curbuf;
6992 int *fnum_list;
6993 int fnum_len;
6995 int i;
6997 alist_clear(al);
6998 if (ga_grow(&al->al_ga, count) == OK)
7000 for (i = 0; i < count; ++i)
7002 if (got_int)
7004 /* When adding many buffers this can take a long time. Allow
7005 * interrupting here. */
7006 while (i < count)
7007 vim_free(files[i++]);
7008 break;
7011 /* May set buffer name of a buffer previously used for the
7012 * argument list, so that it's re-used by alist_add. */
7013 if (fnum_list != NULL && i < fnum_len)
7014 buf_set_name(fnum_list[i], files[i]);
7016 alist_add(al, files[i], use_curbuf ? 2 : 1);
7017 ui_breakcheck();
7019 vim_free(files);
7021 else
7022 FreeWild(count, files);
7023 #ifdef FEAT_WINDOWS
7024 if (al == &global_alist)
7025 #endif
7026 arg_had_last = FALSE;
7030 * Add file "fname" to argument list "al".
7031 * "fname" must have been allocated and "al" must have been checked for room.
7033 void
7034 alist_add(al, fname, set_fnum)
7035 alist_T *al;
7036 char_u *fname;
7037 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
7039 if (fname == NULL) /* don't add NULL file names */
7040 return;
7041 #ifdef BACKSLASH_IN_FILENAME
7042 slash_adjust(fname);
7043 #endif
7044 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
7045 if (set_fnum > 0)
7046 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
7047 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
7048 ++al->al_ga.ga_len;
7051 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7053 * Adjust slashes in file names. Called after 'shellslash' was set.
7055 void
7056 alist_slash_adjust()
7058 int i;
7059 # ifdef FEAT_WINDOWS
7060 win_T *wp;
7061 tabpage_T *tp;
7062 # endif
7064 for (i = 0; i < GARGCOUNT; ++i)
7065 if (GARGLIST[i].ae_fname != NULL)
7066 slash_adjust(GARGLIST[i].ae_fname);
7067 # ifdef FEAT_WINDOWS
7068 FOR_ALL_TAB_WINDOWS(tp, wp)
7069 if (wp->w_alist != &global_alist)
7070 for (i = 0; i < WARGCOUNT(wp); ++i)
7071 if (WARGLIST(wp)[i].ae_fname != NULL)
7072 slash_adjust(WARGLIST(wp)[i].ae_fname);
7073 # endif
7075 #endif
7078 * ":preserve".
7080 static void
7081 ex_preserve(eap)
7082 exarg_T *eap UNUSED;
7084 curbuf->b_flags |= BF_PRESERVED;
7085 ml_preserve(curbuf, TRUE);
7089 * ":recover".
7091 static void
7092 ex_recover(eap)
7093 exarg_T *eap;
7095 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7096 recoverymode = TRUE;
7097 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
7098 && (*eap->arg == NUL
7099 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7100 ml_recover();
7101 recoverymode = FALSE;
7105 * Command modifier used in a wrong way.
7107 static void
7108 ex_wrongmodifier(eap)
7109 exarg_T *eap;
7111 eap->errmsg = e_invcmd;
7114 #ifdef FEAT_WINDOWS
7116 * :sview [+command] file split window with new file, read-only
7117 * :split [[+command] file] split window with current or new file
7118 * :vsplit [[+command] file] split window vertically with current or new file
7119 * :new [[+command] file] split window with no or new file
7120 * :vnew [[+command] file] split vertically window with no or new file
7121 * :sfind [+command] file split window with file in 'path'
7123 * :tabedit open new Tab page with empty window
7124 * :tabedit [+command] file open new Tab page and edit "file"
7125 * :tabnew [[+command] file] just like :tabedit
7126 * :tabfind [+command] file open new Tab page and find "file"
7128 void
7129 ex_splitview(eap)
7130 exarg_T *eap;
7132 win_T *old_curwin = curwin;
7133 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7134 char_u *fname = NULL;
7135 # endif
7136 # ifdef FEAT_BROWSE
7137 int browse_flag = cmdmod.browse;
7138 # endif
7140 # ifndef FEAT_VERTSPLIT
7141 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7143 ex_ni(eap);
7144 return;
7146 # endif
7148 # ifdef FEAT_GUI
7149 need_mouse_correct = TRUE;
7150 # endif
7152 # ifdef FEAT_QUICKFIX
7153 /* A ":split" in the quickfix window works like ":new". Don't want two
7154 * quickfix windows. But it's OK when doing ":tab split". */
7155 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
7157 if (eap->cmdidx == CMD_split)
7158 eap->cmdidx = CMD_new;
7159 # ifdef FEAT_VERTSPLIT
7160 if (eap->cmdidx == CMD_vsplit)
7161 eap->cmdidx = CMD_vnew;
7162 # endif
7164 # endif
7166 # ifdef FEAT_SEARCHPATH
7167 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
7169 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7170 FNAME_MESS, TRUE, curbuf->b_ffname);
7171 if (fname == NULL)
7172 goto theend;
7173 eap->arg = fname;
7175 # ifdef FEAT_BROWSE
7176 else
7177 # endif
7178 # endif
7179 # ifdef FEAT_BROWSE
7180 if (cmdmod.browse
7181 # ifdef FEAT_VERTSPLIT
7182 && eap->cmdidx != CMD_vnew
7183 # endif
7184 && eap->cmdidx != CMD_new)
7186 # ifdef FEAT_AUTOCMD
7187 if (
7188 # ifdef FEAT_GUI
7189 !gui.in_use &&
7190 # endif
7191 au_has_group((char_u *)"FileExplorer"))
7193 /* No browsing supported but we do have the file explorer:
7194 * Edit the directory. */
7195 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7196 eap->arg = (char_u *)".";
7198 else
7199 # endif
7201 fname = do_browse(0, (char_u *)_("Edit File in new window"),
7202 eap->arg, NULL, NULL, NULL, curbuf);
7203 if (fname == NULL)
7204 goto theend;
7205 eap->arg = fname;
7208 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
7209 # endif
7212 * Either open new tab page or split the window.
7214 if (eap->cmdidx == CMD_tabedit
7215 || eap->cmdidx == CMD_tabfind
7216 || eap->cmdidx == CMD_tabnew)
7218 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7219 : eap->addr_count == 0 ? 0
7220 : (int)eap->line2 + 1) != FAIL)
7222 do_exedit(eap, old_curwin);
7224 /* set the alternate buffer for the window we came from */
7225 if (curwin != old_curwin
7226 && win_valid(old_curwin)
7227 && old_curwin->w_buffer != curbuf
7228 && !cmdmod.keepalt)
7229 old_curwin->w_alt_fnum = curbuf->b_fnum;
7232 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
7233 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7235 # ifdef FEAT_SCROLLBIND
7236 /* Reset 'scrollbind' when editing another file, but keep it when
7237 * doing ":split" without arguments. */
7238 if (*eap->arg != NUL
7239 # ifdef FEAT_BROWSE
7240 || cmdmod.browse
7241 # endif
7243 curwin->w_p_scb = FALSE;
7244 else
7245 do_check_scrollbind(FALSE);
7246 # endif
7247 do_exedit(eap, old_curwin);
7250 # ifdef FEAT_BROWSE
7251 cmdmod.browse = browse_flag;
7252 # endif
7254 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7255 theend:
7256 vim_free(fname);
7257 # endif
7261 * Open a new tab page.
7263 void
7264 tabpage_new()
7266 exarg_T ea;
7268 vim_memset(&ea, 0, sizeof(ea));
7269 ea.cmdidx = CMD_tabnew;
7270 ea.cmd = (char_u *)"tabn";
7271 ea.arg = (char_u *)"";
7272 ex_splitview(&ea);
7276 * :tabnext command
7278 static void
7279 ex_tabnext(eap)
7280 exarg_T *eap;
7282 switch (eap->cmdidx)
7284 case CMD_tabfirst:
7285 case CMD_tabrewind:
7286 goto_tabpage(1);
7287 break;
7288 case CMD_tablast:
7289 goto_tabpage(9999);
7290 break;
7291 case CMD_tabprevious:
7292 case CMD_tabNext:
7293 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7294 break;
7295 default: /* CMD_tabnext */
7296 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7297 break;
7302 * :tabmove command
7304 static void
7305 ex_tabmove(eap)
7306 exarg_T *eap;
7308 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
7312 * :tabs command: List tabs and their contents.
7314 static void
7315 ex_tabs(eap)
7316 exarg_T *eap UNUSED;
7318 tabpage_T *tp;
7319 win_T *wp;
7320 int tabcount = 1;
7322 msg_start();
7323 msg_scroll = TRUE;
7324 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7326 msg_putchar('\n');
7327 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7328 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7329 out_flush(); /* output one line at a time */
7330 ui_breakcheck();
7332 if (tp == curtab)
7333 wp = firstwin;
7334 else
7335 wp = tp->tp_firstwin;
7336 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7338 msg_putchar('\n');
7339 msg_putchar(wp == curwin ? '>' : ' ');
7340 msg_putchar(' ');
7341 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7342 msg_putchar(' ');
7343 if (buf_spname(wp->w_buffer) != NULL)
7344 STRCPY(IObuff, buf_spname(wp->w_buffer));
7345 else
7346 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7347 IObuff, IOSIZE, TRUE);
7348 msg_outtrans(IObuff);
7349 out_flush(); /* output one line at a time */
7350 ui_breakcheck();
7355 #endif /* FEAT_WINDOWS */
7358 * ":mode": Set screen mode.
7359 * If no argument given, just get the screen size and redraw.
7361 static void
7362 ex_mode(eap)
7363 exarg_T *eap;
7365 if (*eap->arg == NUL)
7366 shell_resized();
7367 else
7368 mch_screenmode(eap->arg);
7371 #ifdef FEAT_WINDOWS
7373 * ":resize".
7374 * set, increment or decrement current window height
7376 static void
7377 ex_resize(eap)
7378 exarg_T *eap;
7380 int n;
7381 win_T *wp = curwin;
7383 if (eap->addr_count > 0)
7385 n = eap->line2;
7386 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7390 #ifdef FEAT_GUI
7391 need_mouse_correct = TRUE;
7392 #endif
7393 n = atol((char *)eap->arg);
7394 #ifdef FEAT_VERTSPLIT
7395 if (cmdmod.split & WSP_VERT)
7397 if (*eap->arg == '-' || *eap->arg == '+')
7398 n += W_WIDTH(curwin);
7399 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7400 n = 9999;
7401 win_setwidth_win((int)n, wp);
7403 else
7404 #endif
7406 if (*eap->arg == '-' || *eap->arg == '+')
7407 n += curwin->w_height;
7408 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7409 n = 9999;
7410 win_setheight_win((int)n, wp);
7413 #endif
7416 * ":find [+command] <file>" command.
7418 static void
7419 ex_find(eap)
7420 exarg_T *eap;
7422 #ifdef FEAT_SEARCHPATH
7423 char_u *fname;
7424 int count;
7426 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7427 TRUE, curbuf->b_ffname);
7428 if (eap->addr_count > 0)
7430 /* Repeat finding the file "count" times. This matters when it
7431 * appears several times in the path. */
7432 count = eap->line2;
7433 while (fname != NULL && --count > 0)
7435 vim_free(fname);
7436 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7437 FALSE, curbuf->b_ffname);
7441 if (fname != NULL)
7443 eap->arg = fname;
7444 #endif
7445 do_exedit(eap, NULL);
7446 #ifdef FEAT_SEARCHPATH
7447 vim_free(fname);
7449 #endif
7453 * ":open" simulation: for now just work like ":visual".
7455 static void
7456 ex_open(eap)
7457 exarg_T *eap;
7459 regmatch_T regmatch;
7460 char_u *p;
7462 curwin->w_cursor.lnum = eap->line2;
7463 beginline(BL_SOL | BL_FIX);
7464 if (*eap->arg == '/')
7466 /* ":open /pattern/": put cursor in column found with pattern */
7467 ++eap->arg;
7468 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7469 *p = NUL;
7470 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7471 if (regmatch.regprog != NULL)
7473 regmatch.rm_ic = p_ic;
7474 p = ml_get_curline();
7475 if (vim_regexec(&regmatch, p, (colnr_T)0))
7476 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
7477 else
7478 EMSG(_(e_nomatch));
7479 vim_free(regmatch.regprog);
7481 /* Move to the NUL, ignore any other arguments. */
7482 eap->arg += STRLEN(eap->arg);
7484 check_cursor();
7486 eap->cmdidx = CMD_visual;
7487 do_exedit(eap, NULL);
7491 * ":edit", ":badd", ":visual".
7493 static void
7494 ex_edit(eap)
7495 exarg_T *eap;
7497 do_exedit(eap, NULL);
7501 * ":edit <file>" command and alikes.
7503 void
7504 do_exedit(eap, old_curwin)
7505 exarg_T *eap;
7506 win_T *old_curwin; /* curwin before doing a split or NULL */
7508 int n;
7509 #ifdef FEAT_WINDOWS
7510 int need_hide;
7511 #endif
7512 int exmode_was = exmode_active;
7515 * ":vi" command ends Ex mode.
7517 if (exmode_active && (eap->cmdidx == CMD_visual
7518 || eap->cmdidx == CMD_view))
7520 exmode_active = FALSE;
7521 if (*eap->arg == NUL)
7523 /* Special case: ":global/pat/visual\NLvi-commands" */
7524 if (global_busy)
7526 int rd = RedrawingDisabled;
7527 int nwr = no_wait_return;
7528 int ms = msg_scroll;
7529 #ifdef FEAT_GUI
7530 int he = hold_gui_events;
7531 #endif
7533 if (eap->nextcmd != NULL)
7535 stuffReadbuff(eap->nextcmd);
7536 eap->nextcmd = NULL;
7539 if (exmode_was != EXMODE_VIM)
7540 settmode(TMODE_RAW);
7541 RedrawingDisabled = 0;
7542 no_wait_return = 0;
7543 need_wait_return = FALSE;
7544 msg_scroll = 0;
7545 #ifdef FEAT_GUI
7546 hold_gui_events = 0;
7547 #endif
7548 must_redraw = CLEAR;
7550 main_loop(FALSE, TRUE);
7552 RedrawingDisabled = rd;
7553 no_wait_return = nwr;
7554 msg_scroll = ms;
7555 #ifdef FEAT_GUI
7556 hold_gui_events = he;
7557 #endif
7559 return;
7563 if ((eap->cmdidx == CMD_new
7564 || eap->cmdidx == CMD_tabnew
7565 || eap->cmdidx == CMD_tabedit
7566 #ifdef FEAT_VERTSPLIT
7567 || eap->cmdidx == CMD_vnew
7568 #endif
7569 ) && *eap->arg == NUL)
7571 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
7572 setpcmark();
7573 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7574 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
7575 old_curwin == NULL ? curwin : NULL);
7577 else if ((eap->cmdidx != CMD_split
7578 #ifdef FEAT_VERTSPLIT
7579 && eap->cmdidx != CMD_vsplit
7580 #endif
7582 || *eap->arg != NUL
7583 #ifdef FEAT_BROWSE
7584 || cmdmod.browse
7585 #endif
7588 #ifdef FEAT_AUTOCMD
7589 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7590 * can bring us here, others are stopped earlier. */
7591 if (*eap->arg != NUL && curbuf_locked())
7592 return;
7593 #endif
7594 n = readonlymode;
7595 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7596 readonlymode = TRUE;
7597 else if (eap->cmdidx == CMD_enew)
7598 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7599 empty buffer */
7600 setpcmark();
7601 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7602 NULL, eap,
7603 /* ":edit" goes to first line if Vi compatible */
7604 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7605 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7606 ? ECMD_ONE : eap->do_ecmd_lnum,
7607 (P_HID(curbuf) ? ECMD_HIDE : 0)
7608 + (eap->forceit ? ECMD_FORCEIT : 0)
7609 #ifdef FEAT_LISTCMDS
7610 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7611 #endif
7612 , old_curwin == NULL ? curwin : NULL) == FAIL)
7614 /* Editing the file failed. If the window was split, close it. */
7615 #ifdef FEAT_WINDOWS
7616 if (old_curwin != NULL)
7618 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7619 if (!need_hide || P_HID(curbuf))
7621 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7622 cleanup_T cs;
7624 /* Reset the error/interrupt/exception state here so that
7625 * aborting() returns FALSE when closing a window. */
7626 enter_cleanup(&cs);
7627 # endif
7628 # ifdef FEAT_GUI
7629 need_mouse_correct = TRUE;
7630 # endif
7631 win_close(curwin, !need_hide && !P_HID(curbuf));
7633 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7634 /* Restore the error/interrupt/exception state if not
7635 * discarded by a new aborting error, interrupt, or
7636 * uncaught exception. */
7637 leave_cleanup(&cs);
7638 # endif
7641 #endif
7643 else if (readonlymode && curbuf->b_nwindows == 1)
7645 /* When editing an already visited buffer, 'readonly' won't be set
7646 * but the previous value is kept. With ":view" and ":sview" we
7647 * want the file to be readonly, except when another window is
7648 * editing the same buffer. */
7649 curbuf->b_p_ro = TRUE;
7651 readonlymode = n;
7653 else
7655 if (eap->do_ecmd_cmd != NULL)
7656 do_cmdline_cmd(eap->do_ecmd_cmd);
7657 #ifdef FEAT_TITLE
7658 n = curwin->w_arg_idx_invalid;
7659 #endif
7660 check_arg_idx(curwin);
7661 #ifdef FEAT_TITLE
7662 if (n != curwin->w_arg_idx_invalid)
7663 maketitle();
7664 #endif
7667 #ifdef FEAT_WINDOWS
7669 * if ":split file" worked, set alternate file name in old window to new
7670 * file
7672 if (old_curwin != NULL
7673 && *eap->arg != NUL
7674 && curwin != old_curwin
7675 && win_valid(old_curwin)
7676 && old_curwin->w_buffer != curbuf
7677 && !cmdmod.keepalt)
7678 old_curwin->w_alt_fnum = curbuf->b_fnum;
7679 #endif
7681 ex_no_reprint = TRUE;
7684 #ifndef FEAT_GUI
7686 * ":gui" and ":gvim" when there is no GUI.
7688 static void
7689 ex_nogui(eap)
7690 exarg_T *eap;
7692 eap->errmsg = e_nogvim;
7694 #endif
7696 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7697 static void
7698 ex_tearoff(eap)
7699 exarg_T *eap;
7701 gui_make_tearoff(eap->arg);
7703 #endif
7705 #if defined(FEAT_MENU) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
7706 || defined(FEAT_GUI_MACVIM))
7707 static void
7708 ex_popup(eap)
7709 exarg_T *eap;
7711 gui_make_popup(eap->arg, eap->forceit);
7713 #endif
7715 static void
7716 ex_swapname(eap)
7717 exarg_T *eap UNUSED;
7719 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7720 MSG(_("No swap file"));
7721 else
7722 msg(curbuf->b_ml.ml_mfp->mf_fname);
7726 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7727 * offset.
7728 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7730 static void
7731 ex_syncbind(eap)
7732 exarg_T *eap UNUSED;
7734 #ifdef FEAT_SCROLLBIND
7735 win_T *wp;
7736 long topline;
7737 long y;
7738 linenr_T old_linenr = curwin->w_cursor.lnum;
7740 setpcmark();
7743 * determine max topline
7745 if (curwin->w_p_scb)
7747 topline = curwin->w_topline;
7748 for (wp = firstwin; wp; wp = wp->w_next)
7750 if (wp->w_p_scb && wp->w_buffer)
7752 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7753 if (topline > y)
7754 topline = y;
7757 if (topline < 1)
7758 topline = 1;
7760 else
7762 topline = 1;
7767 * set all scrollbind windows to the same topline
7769 wp = curwin;
7770 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7772 if (curwin->w_p_scb)
7774 y = topline - curwin->w_topline;
7775 if (y > 0)
7776 scrollup(y, TRUE);
7777 else
7778 scrolldown(-y, TRUE);
7779 curwin->w_scbind_pos = topline;
7780 redraw_later(VALID);
7781 cursor_correct();
7782 #ifdef FEAT_WINDOWS
7783 curwin->w_redr_status = TRUE;
7784 #endif
7787 curwin = wp;
7788 if (curwin->w_p_scb)
7790 did_syncbind = TRUE;
7791 checkpcmark();
7792 if (old_linenr != curwin->w_cursor.lnum)
7794 char_u ctrl_o[2];
7796 ctrl_o[0] = Ctrl_O;
7797 ctrl_o[1] = 0;
7798 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7801 #endif
7805 static void
7806 ex_read(eap)
7807 exarg_T *eap;
7809 int i;
7810 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7811 linenr_T lnum;
7813 if (eap->usefilter) /* :r!cmd */
7814 do_bang(1, eap, FALSE, FALSE, TRUE);
7815 else
7817 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7818 return;
7820 #ifdef FEAT_BROWSE
7821 if (cmdmod.browse)
7823 char_u *browseFile;
7825 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
7826 NULL, NULL, NULL, curbuf);
7827 if (browseFile != NULL)
7829 i = readfile(browseFile, NULL,
7830 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7831 vim_free(browseFile);
7833 else
7834 i = OK;
7836 else
7837 #endif
7838 if (*eap->arg == NUL)
7840 if (check_fname() == FAIL) /* check for no file name */
7841 return;
7842 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7843 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7845 else
7847 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7848 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7849 i = readfile(eap->arg, NULL,
7850 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7853 if (i == FAIL)
7855 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7856 if (!aborting())
7857 #endif
7858 EMSG2(_(e_notopen), eap->arg);
7860 else
7862 if (empty && exmode_active)
7864 /* Delete the empty line that remains. Historically ex does
7865 * this but vi doesn't. */
7866 if (eap->line2 == 0)
7867 lnum = curbuf->b_ml.ml_line_count;
7868 else
7869 lnum = 1;
7870 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
7872 ml_delete(lnum, FALSE);
7873 if (curwin->w_cursor.lnum > 1
7874 && curwin->w_cursor.lnum >= lnum)
7875 --curwin->w_cursor.lnum;
7876 deleted_lines_mark(lnum, 1L);
7879 redraw_curbuf_later(VALID);
7884 static char_u *prev_dir = NULL;
7886 #if defined(EXITFREE) || defined(PROTO)
7887 void
7888 free_cd_dir()
7890 vim_free(prev_dir);
7891 prev_dir = NULL;
7893 vim_free(globaldir);
7894 globaldir = NULL;
7896 #endif
7900 * ":cd", ":lcd", ":chdir" and ":lchdir".
7902 void
7903 ex_cd(eap)
7904 exarg_T *eap;
7906 char_u *new_dir;
7907 char_u *tofree;
7909 new_dir = eap->arg;
7910 #if !defined(UNIX) && !defined(VMS)
7911 /* for non-UNIX ":cd" means: print current directory */
7912 if (*new_dir == NUL)
7913 ex_pwd(NULL);
7914 else
7915 #endif
7917 #ifdef FEAT_AUTOCMD
7918 if (allbuf_locked())
7919 return;
7920 #endif
7921 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7922 && !eap->forceit)
7924 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
7925 return;
7928 /* ":cd -": Change to previous directory */
7929 if (STRCMP(new_dir, "-") == 0)
7931 if (prev_dir == NULL)
7933 EMSG(_("E186: No previous directory"));
7934 return;
7936 new_dir = prev_dir;
7939 /* Save current directory for next ":cd -" */
7940 tofree = prev_dir;
7941 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7942 prev_dir = vim_strsave(NameBuff);
7943 else
7944 prev_dir = NULL;
7946 #if defined(UNIX) || defined(VMS)
7947 /* for UNIX ":cd" means: go to home directory */
7948 if (*new_dir == NUL)
7950 /* use NameBuff for home directory name */
7951 # ifdef VMS
7952 char_u *p;
7954 p = mch_getenv((char_u *)"SYS$LOGIN");
7955 if (p == NULL || *p == NUL) /* empty is the same as not set */
7956 NameBuff[0] = NUL;
7957 else
7958 vim_strncpy(NameBuff, p, MAXPATHL - 1);
7959 # else
7960 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7961 # endif
7962 new_dir = NameBuff;
7964 #endif
7965 if (new_dir == NULL || vim_chdir(new_dir))
7966 EMSG(_(e_failed));
7967 else
7969 vim_free(curwin->w_localdir);
7970 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7972 /* If still in global directory, need to remember current
7973 * directory as global directory. */
7974 if (globaldir == NULL && prev_dir != NULL)
7975 globaldir = vim_strsave(prev_dir);
7976 /* Remember this local directory for the window. */
7977 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7978 curwin->w_localdir = vim_strsave(NameBuff);
7980 else
7982 /* We are now in the global directory, no need to remember its
7983 * name. */
7984 vim_free(globaldir);
7985 globaldir = NULL;
7986 curwin->w_localdir = NULL;
7989 shorten_fnames(TRUE);
7991 /* Echo the new current directory if the command was typed. */
7992 if (KeyTyped || p_verbose >= 5)
7993 ex_pwd(eap);
7995 vim_free(tofree);
8000 * ":pwd".
8002 static void
8003 ex_pwd(eap)
8004 exarg_T *eap UNUSED;
8006 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8008 #ifdef BACKSLASH_IN_FILENAME
8009 slash_adjust(NameBuff);
8010 #endif
8011 msg(NameBuff);
8013 else
8014 EMSG(_("E187: Unknown"));
8018 * ":=".
8020 static void
8021 ex_equal(eap)
8022 exarg_T *eap;
8024 smsg((char_u *)"%ld", (long)eap->line2);
8025 ex_may_print(eap);
8028 static void
8029 ex_sleep(eap)
8030 exarg_T *eap;
8032 int n;
8033 long len;
8035 if (cursor_valid())
8037 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
8038 if (n >= 0)
8039 windgoto((int)n, curwin->w_wcol);
8042 len = eap->line2;
8043 switch (*eap->arg)
8045 case 'm': break;
8046 case NUL: len *= 1000L; break;
8047 default: EMSG2(_(e_invarg2), eap->arg); return;
8049 do_sleep(len);
8053 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
8055 void
8056 do_sleep(msec)
8057 long msec;
8059 long done;
8061 cursor_on();
8062 out_flush();
8063 for (done = 0; !got_int && done < msec; done += 1000L)
8065 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
8066 ui_breakcheck();
8070 static void
8071 do_exmap(eap, isabbrev)
8072 exarg_T *eap;
8073 int isabbrev;
8075 int mode;
8076 char_u *cmdp;
8078 cmdp = eap->cmd;
8079 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
8081 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
8082 eap->arg, mode, isabbrev))
8084 case 1: EMSG(_(e_invarg));
8085 break;
8086 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
8087 break;
8092 * ":winsize" command (obsolete).
8094 static void
8095 ex_winsize(eap)
8096 exarg_T *eap;
8098 int w, h;
8099 char_u *arg = eap->arg;
8100 char_u *p;
8102 w = getdigits(&arg);
8103 arg = skipwhite(arg);
8104 p = arg;
8105 h = getdigits(&arg);
8106 if (*p != NUL && *arg == NUL)
8107 set_shellsize(w, h, TRUE);
8108 else
8109 EMSG(_("E465: :winsize requires two number arguments"));
8112 #ifdef FEAT_WINDOWS
8113 static void
8114 ex_wincmd(eap)
8115 exarg_T *eap;
8117 int xchar = NUL;
8118 char_u *p;
8120 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8122 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8123 if (eap->arg[1] == NUL)
8125 EMSG(_(e_invarg));
8126 return;
8128 xchar = eap->arg[1];
8129 p = eap->arg + 2;
8131 else
8132 p = eap->arg + 1;
8134 eap->nextcmd = check_nextcmd(p);
8135 p = skipwhite(p);
8136 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8137 EMSG(_(e_invarg));
8138 else
8140 /* Pass flags on for ":vertical wincmd ]". */
8141 postponed_split_flags = cmdmod.split;
8142 postponed_split_tab = cmdmod.tab;
8143 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8144 postponed_split_flags = 0;
8145 postponed_split_tab = 0;
8148 #endif
8150 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
8152 * ":winpos".
8154 static void
8155 ex_winpos(eap)
8156 exarg_T *eap;
8158 int x, y;
8159 char_u *arg = eap->arg;
8160 char_u *p;
8162 if (*arg == NUL)
8164 # if defined(FEAT_GUI) || defined(MSWIN)
8165 # ifdef FEAT_GUI
8166 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
8167 # else
8168 if (mch_get_winpos(&x, &y) != FAIL)
8169 # endif
8171 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8172 msg(IObuff);
8174 else
8175 # endif
8176 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8178 else
8180 x = getdigits(&arg);
8181 arg = skipwhite(arg);
8182 p = arg;
8183 y = getdigits(&arg);
8184 if (*p == NUL || *arg != NUL)
8186 EMSG(_("E466: :winpos requires two number arguments"));
8187 return;
8189 # ifdef FEAT_GUI
8190 if (gui.in_use)
8191 gui_mch_set_winpos(x, y);
8192 else if (gui.starting)
8194 /* Remember the coordinates for when the window is opened. */
8195 gui_win_x = x;
8196 gui_win_y = y;
8198 # ifdef HAVE_TGETENT
8199 else
8200 # endif
8201 # else
8202 # ifdef MSWIN
8203 mch_set_winpos(x, y);
8204 # endif
8205 # endif
8206 # ifdef HAVE_TGETENT
8207 if (*T_CWP)
8208 term_set_winpos(x, y);
8209 # endif
8212 #endif
8215 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8217 static void
8218 ex_operators(eap)
8219 exarg_T *eap;
8221 oparg_T oa;
8223 clear_oparg(&oa);
8224 oa.regname = eap->regname;
8225 oa.start.lnum = eap->line1;
8226 oa.end.lnum = eap->line2;
8227 oa.line_count = eap->line2 - eap->line1 + 1;
8228 oa.motion_type = MLINE;
8229 #ifdef FEAT_VIRTUALEDIT
8230 virtual_op = FALSE;
8231 #endif
8232 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8234 setpcmark();
8235 curwin->w_cursor.lnum = eap->line1;
8236 beginline(BL_SOL | BL_FIX);
8239 switch (eap->cmdidx)
8241 case CMD_delete:
8242 oa.op_type = OP_DELETE;
8243 op_delete(&oa);
8244 break;
8246 case CMD_yank:
8247 oa.op_type = OP_YANK;
8248 (void)op_yank(&oa, FALSE, TRUE);
8249 break;
8251 default: /* CMD_rshift or CMD_lshift */
8252 if ((eap->cmdidx == CMD_rshift)
8253 #ifdef FEAT_RIGHTLEFT
8254 ^ curwin->w_p_rl
8255 #endif
8257 oa.op_type = OP_RSHIFT;
8258 else
8259 oa.op_type = OP_LSHIFT;
8260 op_shift(&oa, FALSE, eap->amount);
8261 break;
8263 #ifdef FEAT_VIRTUALEDIT
8264 virtual_op = MAYBE;
8265 #endif
8266 ex_may_print(eap);
8270 * ":put".
8272 static void
8273 ex_put(eap)
8274 exarg_T *eap;
8276 /* ":0put" works like ":1put!". */
8277 if (eap->line2 == 0)
8279 eap->line2 = 1;
8280 eap->forceit = TRUE;
8282 curwin->w_cursor.lnum = eap->line2;
8283 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8284 PUT_LINE|PUT_CURSLINE);
8288 * Handle ":copy" and ":move".
8290 static void
8291 ex_copymove(eap)
8292 exarg_T *eap;
8294 long n;
8296 n = get_address(&eap->arg, FALSE, FALSE);
8297 if (eap->arg == NULL) /* error detected */
8299 eap->nextcmd = NULL;
8300 return;
8302 get_flags(eap);
8305 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8307 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8309 EMSG(_(e_invaddr));
8310 return;
8313 if (eap->cmdidx == CMD_move)
8315 if (do_move(eap->line1, eap->line2, n) == FAIL)
8316 return;
8318 else
8319 ex_copy(eap->line1, eap->line2, n);
8320 u_clearline();
8321 beginline(BL_SOL | BL_FIX);
8322 ex_may_print(eap);
8326 * Print the current line if flags were given to the Ex command.
8328 static void
8329 ex_may_print(eap)
8330 exarg_T *eap;
8332 if (eap->flags != 0)
8334 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8335 (eap->flags & EXFLAG_LIST));
8336 ex_no_reprint = TRUE;
8341 * ":smagic" and ":snomagic".
8343 static void
8344 ex_submagic(eap)
8345 exarg_T *eap;
8347 int magic_save = p_magic;
8349 p_magic = (eap->cmdidx == CMD_smagic);
8350 do_sub(eap);
8351 p_magic = magic_save;
8355 * ":join".
8357 static void
8358 ex_join(eap)
8359 exarg_T *eap;
8361 curwin->w_cursor.lnum = eap->line1;
8362 if (eap->line1 == eap->line2)
8364 if (eap->addr_count >= 2) /* :2,2join does nothing */
8365 return;
8366 if (eap->line2 == curbuf->b_ml.ml_line_count)
8368 beep_flush();
8369 return;
8371 ++eap->line2;
8373 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8374 beginline(BL_WHITE | BL_FIX);
8375 ex_may_print(eap);
8379 * ":[addr]@r" or ":[addr]*r": execute register
8381 static void
8382 ex_at(eap)
8383 exarg_T *eap;
8385 int c;
8386 int prev_len = typebuf.tb_len;
8388 curwin->w_cursor.lnum = eap->line2;
8390 #ifdef USE_ON_FLY_SCROLL
8391 dont_scroll = TRUE; /* disallow scrolling here */
8392 #endif
8394 /* get the register name. No name means to use the previous one */
8395 c = *eap->arg;
8396 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8397 c = '@';
8398 /* Put the register in the typeahead buffer with the "silent" flag. */
8399 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8400 == FAIL)
8402 beep_flush();
8404 else
8406 int save_efr = exec_from_reg;
8408 exec_from_reg = TRUE;
8411 * Execute from the typeahead buffer.
8412 * Continue until the stuff buffer is empty and all added characters
8413 * have been consumed.
8415 while (!stuff_empty() || typebuf.tb_len > prev_len)
8416 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8418 exec_from_reg = save_efr;
8423 * ":!".
8425 static void
8426 ex_bang(eap)
8427 exarg_T *eap;
8429 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8433 * ":undo".
8435 static void
8436 ex_undo(eap)
8437 exarg_T *eap UNUSED;
8439 if (eap->addr_count == 1) /* :undo 123 */
8440 undo_time(eap->line2, FALSE, TRUE);
8441 else
8442 u_undo(1);
8446 * ":redo".
8448 static void
8449 ex_redo(eap)
8450 exarg_T *eap UNUSED;
8452 u_redo(1);
8456 * ":earlier" and ":later".
8458 static void
8459 ex_later(eap)
8460 exarg_T *eap;
8462 long count = 0;
8463 int sec = FALSE;
8464 char_u *p = eap->arg;
8466 if (*p == NUL)
8467 count = 1;
8468 else if (isdigit(*p))
8470 count = getdigits(&p);
8471 switch (*p)
8473 case 's': ++p; sec = TRUE; break;
8474 case 'm': ++p; sec = TRUE; count *= 60; break;
8475 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8479 if (*p != NUL)
8480 EMSG2(_(e_invarg2), eap->arg);
8481 else
8482 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
8486 * ":redir": start/stop redirection.
8488 static void
8489 ex_redir(eap)
8490 exarg_T *eap;
8492 char *mode;
8493 char_u *fname;
8494 char_u *arg = eap->arg;
8496 if (STRICMP(eap->arg, "END") == 0)
8497 close_redir();
8498 else
8500 if (*arg == '>')
8502 ++arg;
8503 if (*arg == '>')
8505 ++arg;
8506 mode = "a";
8508 else
8509 mode = "w";
8510 arg = skipwhite(arg);
8512 close_redir();
8514 /* Expand environment variables and "~/". */
8515 fname = expand_env_save(arg);
8516 if (fname == NULL)
8517 return;
8518 #ifdef FEAT_BROWSE
8519 if (cmdmod.browse)
8521 char_u *browseFile;
8523 browseFile = do_browse(BROWSE_SAVE,
8524 (char_u *)_("Save Redirection"),
8525 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
8526 if (browseFile == NULL)
8527 return; /* operation cancelled */
8528 vim_free(fname);
8529 fname = browseFile;
8530 eap->forceit = TRUE; /* since dialog already asked */
8532 #endif
8534 redir_fd = open_exfile(fname, eap->forceit, mode);
8535 vim_free(fname);
8537 #ifdef FEAT_EVAL
8538 else if (*arg == '@')
8540 /* redirect to a register a-z (resp. A-Z for appending) */
8541 close_redir();
8542 ++arg;
8543 if (ASCII_ISALPHA(*arg)
8544 # ifdef FEAT_CLIPBOARD
8545 || *arg == '*'
8546 || *arg == '+'
8547 # endif
8548 || *arg == '"')
8550 redir_reg = *arg++;
8551 if (*arg == '>' && arg[1] == '>') /* append */
8552 arg += 2;
8553 else
8555 /* Can use both "@a" and "@a>". */
8556 if (*arg == '>')
8557 arg++;
8558 /* Make register empty when not using @A-@Z and the
8559 * command is valid. */
8560 if (*arg == NUL && !isupper(redir_reg))
8561 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
8564 if (*arg != NUL)
8566 redir_reg = 0;
8567 EMSG2(_(e_invarg2), eap->arg);
8570 else if (*arg == '=' && arg[1] == '>')
8572 int append;
8574 /* redirect to a variable */
8575 close_redir();
8576 arg += 2;
8578 if (*arg == '>')
8580 ++arg;
8581 append = TRUE;
8583 else
8584 append = FALSE;
8586 if (var_redir_start(skipwhite(arg), append) == OK)
8587 redir_vname = 1;
8589 #endif
8591 /* TODO: redirect to a buffer */
8593 else
8594 EMSG2(_(e_invarg2), eap->arg);
8597 /* Make sure redirection is not off. Can happen for cmdline completion
8598 * that indirectly invokes a command to catch its output. */
8599 if (redir_fd != NULL
8600 #ifdef FEAT_EVAL
8601 || redir_reg || redir_vname
8602 #endif
8604 redir_off = FALSE;
8608 * ":redraw": force redraw
8610 static void
8611 ex_redraw(eap)
8612 exarg_T *eap;
8614 int r = RedrawingDisabled;
8615 int p = p_lz;
8617 RedrawingDisabled = 0;
8618 p_lz = FALSE;
8619 update_topline();
8620 update_screen(eap->forceit ? CLEAR :
8621 #ifdef FEAT_VISUAL
8622 VIsual_active ? INVERTED :
8623 #endif
8625 #ifdef FEAT_TITLE
8626 if (need_maketitle)
8627 maketitle();
8628 #endif
8629 RedrawingDisabled = r;
8630 p_lz = p;
8632 /* Reset msg_didout, so that a message that's there is overwritten. */
8633 msg_didout = FALSE;
8634 msg_col = 0;
8636 out_flush();
8640 * ":redrawstatus": force redraw of status line(s)
8642 static void
8643 ex_redrawstatus(eap)
8644 exarg_T *eap UNUSED;
8646 #if defined(FEAT_WINDOWS)
8647 int r = RedrawingDisabled;
8648 int p = p_lz;
8650 RedrawingDisabled = 0;
8651 p_lz = FALSE;
8652 if (eap->forceit)
8653 status_redraw_all();
8654 else
8655 status_redraw_curbuf();
8656 update_screen(
8657 # ifdef FEAT_VISUAL
8658 VIsual_active ? INVERTED :
8659 # endif
8661 RedrawingDisabled = r;
8662 p_lz = p;
8663 out_flush();
8664 #endif
8667 static void
8668 close_redir()
8670 if (redir_fd != NULL)
8672 fclose(redir_fd);
8673 redir_fd = NULL;
8675 #ifdef FEAT_EVAL
8676 redir_reg = 0;
8677 if (redir_vname)
8679 var_redir_stop();
8680 redir_vname = 0;
8682 #endif
8685 #if defined(FEAT_SESSION) && defined(USE_CRNL)
8686 # define MKSESSION_NL
8687 static int mksession_nl = FALSE; /* use NL only in put_eol() */
8688 #endif
8691 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8693 static void
8694 ex_mkrc(eap)
8695 exarg_T *eap;
8697 FILE *fd;
8698 int failed = FALSE;
8699 char_u *fname;
8700 #ifdef FEAT_BROWSE
8701 char_u *browseFile = NULL;
8702 #endif
8703 #ifdef FEAT_SESSION
8704 int view_session = FALSE;
8705 int using_vdir = FALSE; /* using 'viewdir'? */
8706 char_u *viewFile = NULL;
8707 unsigned *flagp;
8708 #endif
8710 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8712 #ifdef FEAT_SESSION
8713 view_session = TRUE;
8714 #else
8715 ex_ni(eap);
8716 return;
8717 #endif
8720 #ifdef FEAT_SESSION
8721 /* Use the short file name until ":lcd" is used. We also don't use the
8722 * short file name when 'acd' is set, that is checked later. */
8723 did_lcd = FALSE;
8725 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8726 if (eap->cmdidx == CMD_mkview
8727 && (*eap->arg == NUL
8728 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8730 eap->forceit = TRUE;
8731 fname = get_view_file(*eap->arg);
8732 if (fname == NULL)
8733 return;
8734 viewFile = fname;
8735 using_vdir = TRUE;
8737 else
8738 #endif
8739 if (*eap->arg != NUL)
8740 fname = eap->arg;
8741 else if (eap->cmdidx == CMD_mkvimrc)
8742 fname = (char_u *)VIMRC_FILE;
8743 #ifdef FEAT_SESSION
8744 else if (eap->cmdidx == CMD_mksession)
8745 fname = (char_u *)SESSION_FILE;
8746 #endif
8747 else
8748 fname = (char_u *)EXRC_FILE;
8750 #ifdef FEAT_BROWSE
8751 if (cmdmod.browse)
8753 browseFile = do_browse(BROWSE_SAVE,
8754 # ifdef FEAT_SESSION
8755 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8756 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8757 # endif
8758 (char_u *)_("Save Setup"),
8759 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8760 if (browseFile == NULL)
8761 goto theend;
8762 fname = browseFile;
8763 eap->forceit = TRUE; /* since dialog already asked */
8765 #endif
8767 #if defined(FEAT_SESSION) && defined(vim_mkdir)
8768 /* When using 'viewdir' may have to create the directory. */
8769 if (using_vdir && !mch_isdir(p_vdir))
8770 vim_mkdir_emsg(p_vdir, 0755);
8771 #endif
8773 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8774 if (fd != NULL)
8776 #ifdef FEAT_SESSION
8777 if (eap->cmdidx == CMD_mkview)
8778 flagp = &vop_flags;
8779 else
8780 flagp = &ssop_flags;
8781 #endif
8783 #ifdef MKSESSION_NL
8784 /* "unix" in 'sessionoptions': use NL line separator */
8785 if (view_session && (*flagp & SSOP_UNIX))
8786 mksession_nl = TRUE;
8787 #endif
8789 /* Write the version command for :mkvimrc */
8790 if (eap->cmdidx == CMD_mkvimrc)
8791 (void)put_line(fd, "version 6.0");
8793 #ifdef FEAT_SESSION
8794 if (eap->cmdidx == CMD_mksession)
8796 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8797 failed = TRUE;
8800 if (eap->cmdidx != CMD_mkview)
8801 #endif
8803 /* Write setting 'compatible' first, because it has side effects.
8804 * For that same reason only do it when needed. */
8805 if (p_cp)
8806 (void)put_line(fd, "if !&cp | set cp | endif");
8807 else
8808 (void)put_line(fd, "if &cp | set nocp | endif");
8811 #ifdef FEAT_SESSION
8812 if (!view_session
8813 || (eap->cmdidx == CMD_mksession
8814 && (*flagp & SSOP_OPTIONS)))
8815 #endif
8816 failed |= (makemap(fd, NULL) == FAIL
8817 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8819 #ifdef FEAT_SESSION
8820 if (!failed && view_session)
8822 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8823 failed = TRUE;
8824 if (eap->cmdidx == CMD_mksession)
8826 char_u dirnow[MAXPATHL]; /* current directory */
8829 * Change to session file's dir.
8831 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8832 || mch_chdir((char *)dirnow) != 0)
8833 *dirnow = NUL;
8834 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8836 if (vim_chdirfile(fname) == OK)
8837 shorten_fnames(TRUE);
8839 else if (*dirnow != NUL
8840 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8842 if (mch_chdir((char *)globaldir) == 0)
8843 shorten_fnames(TRUE);
8846 failed |= (makeopens(fd, dirnow) == FAIL);
8848 /* restore original dir */
8849 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8850 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8852 if (mch_chdir((char *)dirnow) != 0)
8853 EMSG(_(e_prev_dir));
8854 shorten_fnames(TRUE);
8857 else
8859 failed |= (put_view(fd, curwin, !using_vdir, flagp,
8860 -1) == FAIL);
8862 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8863 == FAIL)
8864 failed = TRUE;
8865 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8866 failed = TRUE;
8867 if (eap->cmdidx == CMD_mksession)
8869 if (put_line(fd, "unlet SessionLoad") == FAIL)
8870 failed = TRUE;
8873 #endif
8874 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8875 failed = TRUE;
8877 failed |= fclose(fd);
8879 if (failed)
8880 EMSG(_(e_write));
8881 #if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8882 else if (eap->cmdidx == CMD_mksession)
8884 /* successful session write - set this_session var */
8885 char_u tbuf[MAXPATHL];
8887 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8888 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8890 #endif
8891 #ifdef MKSESSION_NL
8892 mksession_nl = FALSE;
8893 #endif
8896 #ifdef FEAT_BROWSE
8897 theend:
8898 vim_free(browseFile);
8899 #endif
8900 #ifdef FEAT_SESSION
8901 vim_free(viewFile);
8902 #endif
8905 #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8906 || defined(PROTO)
8908 vim_mkdir_emsg(name, prot)
8909 char_u *name;
8910 int prot UNUSED;
8912 if (vim_mkdir(name, prot) != 0)
8914 EMSG2(_("E739: Cannot create directory: %s"), name);
8915 return FAIL;
8917 return OK;
8919 #endif
8922 * Open a file for writing for an Ex command, with some checks.
8923 * Return file descriptor, or NULL on failure.
8925 FILE *
8926 open_exfile(fname, forceit, mode)
8927 char_u *fname;
8928 int forceit;
8929 char *mode; /* "w" for create new file or "a" for append */
8931 FILE *fd;
8933 #ifdef UNIX
8934 /* with Unix it is possible to open a directory */
8935 if (mch_isdir(fname))
8937 EMSG2(_(e_isadir2), fname);
8938 return NULL;
8940 #endif
8941 if (!forceit && *mode != 'a' && vim_fexists(fname))
8943 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8944 return NULL;
8947 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8948 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8950 return fd;
8954 * ":mark" and ":k".
8956 static void
8957 ex_mark(eap)
8958 exarg_T *eap;
8960 pos_T pos;
8962 if (*eap->arg == NUL) /* No argument? */
8963 EMSG(_(e_argreq));
8964 else if (eap->arg[1] != NUL) /* more than one character? */
8965 EMSG(_(e_trailing));
8966 else
8968 pos = curwin->w_cursor; /* save curwin->w_cursor */
8969 curwin->w_cursor.lnum = eap->line2;
8970 beginline(BL_WHITE | BL_FIX);
8971 if (setmark(*eap->arg) == FAIL) /* set mark */
8972 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8973 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8978 * Update w_topline, w_leftcol and the cursor position.
8980 void
8981 update_topline_cursor()
8983 check_cursor(); /* put cursor on valid line */
8984 update_topline();
8985 if (!curwin->w_p_wrap)
8986 validate_cursor();
8987 update_curswant();
8990 #ifdef FEAT_EX_EXTRA
8992 * ":normal[!] {commands}": Execute normal mode commands.
8994 static void
8995 ex_normal(eap)
8996 exarg_T *eap;
8998 int save_msg_scroll = msg_scroll;
8999 int save_restart_edit = restart_edit;
9000 int save_msg_didout = msg_didout;
9001 int save_State = State;
9002 tasave_T tabuf;
9003 int save_insertmode = p_im;
9004 int save_finish_op = finish_op;
9005 int save_opcount = opcount;
9006 #ifdef FEAT_MBYTE
9007 char_u *arg = NULL;
9008 int l;
9009 char_u *p;
9010 #endif
9012 if (ex_normal_lock > 0)
9014 EMSG(_(e_secure));
9015 return;
9017 if (ex_normal_busy >= p_mmd)
9019 EMSG(_("E192: Recursive use of :normal too deep"));
9020 return;
9022 ++ex_normal_busy;
9024 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
9025 restart_edit = 0; /* don't go to Insert mode */
9026 p_im = FALSE; /* don't use 'insertmode' */
9028 #ifdef FEAT_MBYTE
9030 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
9031 * this for the K_SPECIAL leading byte, otherwise special keys will not
9032 * work.
9034 if (has_mbyte)
9036 int len = 0;
9038 /* Count the number of characters to be escaped. */
9039 for (p = eap->arg; *p != NUL; ++p)
9041 # ifdef FEAT_GUI
9042 if (*p == CSI) /* leadbyte CSI */
9043 len += 2;
9044 # endif
9045 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
9046 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
9047 # ifdef FEAT_GUI
9048 || *p == CSI
9049 # endif
9051 len += 2;
9053 if (len > 0)
9055 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
9056 if (arg != NULL)
9058 len = 0;
9059 for (p = eap->arg; *p != NUL; ++p)
9061 arg[len++] = *p;
9062 # ifdef FEAT_GUI
9063 if (*p == CSI)
9065 arg[len++] = KS_EXTRA;
9066 arg[len++] = (int)KE_CSI;
9068 # endif
9069 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
9071 arg[len++] = *++p;
9072 if (*p == K_SPECIAL)
9074 arg[len++] = KS_SPECIAL;
9075 arg[len++] = KE_FILLER;
9077 # ifdef FEAT_GUI
9078 else if (*p == CSI)
9080 arg[len++] = KS_EXTRA;
9081 arg[len++] = (int)KE_CSI;
9083 # endif
9085 arg[len] = NUL;
9090 #endif
9093 * Save the current typeahead. This is required to allow using ":normal"
9094 * from an event handler and makes sure we don't hang when the argument
9095 * ends with half a command.
9097 save_typeahead(&tabuf);
9098 if (tabuf.typebuf_valid)
9101 * Repeat the :normal command for each line in the range. When no
9102 * range given, execute it just once, without positioning the cursor
9103 * first.
9107 if (eap->addr_count != 0)
9109 curwin->w_cursor.lnum = eap->line1++;
9110 curwin->w_cursor.col = 0;
9113 exec_normal_cmd(
9114 #ifdef FEAT_MBYTE
9115 arg != NULL ? arg :
9116 #endif
9117 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
9119 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9122 /* Might not return to the main loop when in an event handler. */
9123 update_topline_cursor();
9125 /* Restore the previous typeahead. */
9126 restore_typeahead(&tabuf);
9128 --ex_normal_busy;
9129 msg_scroll = save_msg_scroll;
9130 restart_edit = save_restart_edit;
9131 p_im = save_insertmode;
9132 finish_op = save_finish_op;
9133 opcount = save_opcount;
9134 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9136 /* Restore the state (needed when called from a function executed for
9137 * 'indentexpr'). */
9138 State = save_State;
9139 #ifdef FEAT_MBYTE
9140 vim_free(arg);
9141 #endif
9145 * ":startinsert", ":startreplace" and ":startgreplace"
9147 static void
9148 ex_startinsert(eap)
9149 exarg_T *eap;
9151 if (eap->forceit)
9153 coladvance((colnr_T)MAXCOL);
9154 curwin->w_curswant = MAXCOL;
9155 curwin->w_set_curswant = FALSE;
9158 /* Ignore the command when already in Insert mode. Inserting an
9159 * expression register that invokes a function can do this. */
9160 if (State & INSERT)
9161 return;
9163 if (eap->cmdidx == CMD_startinsert)
9164 restart_edit = 'a';
9165 else if (eap->cmdidx == CMD_startreplace)
9166 restart_edit = 'R';
9167 else
9168 restart_edit = 'V';
9170 if (!eap->forceit)
9172 if (eap->cmdidx == CMD_startinsert)
9173 restart_edit = 'i';
9174 curwin->w_curswant = 0; /* avoid MAXCOL */
9179 * ":stopinsert"
9181 static void
9182 ex_stopinsert(eap)
9183 exarg_T *eap UNUSED;
9185 restart_edit = 0;
9186 stop_insert_mode = TRUE;
9188 #endif
9190 #if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9192 * Execute normal mode command "cmd".
9193 * "remap" can be REMAP_NONE or REMAP_YES.
9195 void
9196 exec_normal_cmd(cmd, remap, silent)
9197 char_u *cmd;
9198 int remap;
9199 int silent;
9201 oparg_T oa;
9204 * Stuff the argument into the typeahead buffer.
9205 * Execute normal_cmd() until there is no typeahead left.
9207 clear_oparg(&oa);
9208 finish_op = FALSE;
9209 ins_typebuf(cmd, remap, 0, TRUE, silent);
9210 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9211 && !got_int)
9213 update_topline_cursor();
9214 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9217 #endif
9219 #ifdef FEAT_FIND_ID
9220 static void
9221 ex_checkpath(eap)
9222 exarg_T *eap;
9224 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9225 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9226 (linenr_T)1, (linenr_T)MAXLNUM);
9229 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9231 * ":psearch"
9233 static void
9234 ex_psearch(eap)
9235 exarg_T *eap;
9237 g_do_tagpreview = p_pvh;
9238 ex_findpat(eap);
9239 g_do_tagpreview = 0;
9241 #endif
9243 static void
9244 ex_findpat(eap)
9245 exarg_T *eap;
9247 int whole = TRUE;
9248 long n;
9249 char_u *p;
9250 int action;
9252 switch (cmdnames[eap->cmdidx].cmd_name[2])
9254 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9255 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9256 action = ACTION_GOTO;
9257 else
9258 action = ACTION_SHOW;
9259 break;
9260 case 'i': /* ":ilist" and ":dlist" */
9261 action = ACTION_SHOW_ALL;
9262 break;
9263 case 'u': /* ":ijump" and ":djump" */
9264 action = ACTION_GOTO;
9265 break;
9266 default: /* ":isplit" and ":dsplit" */
9267 action = ACTION_SPLIT;
9268 break;
9271 n = 1;
9272 if (vim_isdigit(*eap->arg)) /* get count */
9274 n = getdigits(&eap->arg);
9275 eap->arg = skipwhite(eap->arg);
9277 if (*eap->arg == '/') /* Match regexp, not just whole words */
9279 whole = FALSE;
9280 ++eap->arg;
9281 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9282 if (*p)
9284 *p++ = NUL;
9285 p = skipwhite(p);
9287 /* Check for trailing illegal characters */
9288 if (!ends_excmd(*p))
9289 eap->errmsg = e_trailing;
9290 else
9291 eap->nextcmd = check_nextcmd(p);
9294 if (!eap->skip)
9295 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9296 whole, !eap->forceit,
9297 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9298 n, action, eap->line1, eap->line2);
9300 #endif
9302 #ifdef FEAT_WINDOWS
9304 # ifdef FEAT_QUICKFIX
9306 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9308 static void
9309 ex_ptag(eap)
9310 exarg_T *eap;
9312 g_do_tagpreview = p_pvh;
9313 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9317 * ":pedit"
9319 static void
9320 ex_pedit(eap)
9321 exarg_T *eap;
9323 win_T *curwin_save = curwin;
9325 g_do_tagpreview = p_pvh;
9326 prepare_tagpreview(TRUE);
9327 keep_help_flag = curwin_save->w_buffer->b_help;
9328 do_exedit(eap, NULL);
9329 keep_help_flag = FALSE;
9330 if (curwin != curwin_save && win_valid(curwin_save))
9332 /* Return cursor to where we were */
9333 validate_cursor();
9334 redraw_later(VALID);
9335 win_enter(curwin_save, TRUE);
9337 g_do_tagpreview = 0;
9339 # endif
9342 * ":stag", ":stselect" and ":stjump".
9344 static void
9345 ex_stag(eap)
9346 exarg_T *eap;
9348 postponed_split = -1;
9349 postponed_split_flags = cmdmod.split;
9350 postponed_split_tab = cmdmod.tab;
9351 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9352 postponed_split_flags = 0;
9353 postponed_split_tab = 0;
9355 #endif
9358 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9360 static void
9361 ex_tag(eap)
9362 exarg_T *eap;
9364 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9367 static void
9368 ex_tag_cmd(eap, name)
9369 exarg_T *eap;
9370 char_u *name;
9372 int cmd;
9374 switch (name[1])
9376 case 'j': cmd = DT_JUMP; /* ":tjump" */
9377 break;
9378 case 's': cmd = DT_SELECT; /* ":tselect" */
9379 break;
9380 case 'p': cmd = DT_PREV; /* ":tprevious" */
9381 break;
9382 case 'N': cmd = DT_PREV; /* ":tNext" */
9383 break;
9384 case 'n': cmd = DT_NEXT; /* ":tnext" */
9385 break;
9386 case 'o': cmd = DT_POP; /* ":pop" */
9387 break;
9388 case 'f': /* ":tfirst" */
9389 case 'r': cmd = DT_FIRST; /* ":trewind" */
9390 break;
9391 case 'l': cmd = DT_LAST; /* ":tlast" */
9392 break;
9393 default: /* ":tag" */
9394 #ifdef FEAT_CSCOPE
9395 if (p_cst && *eap->arg != NUL)
9397 do_cstag(eap);
9398 return;
9400 #endif
9401 cmd = DT_TAG;
9402 break;
9405 if (name[0] == 'l')
9407 #ifndef FEAT_QUICKFIX
9408 ex_ni(eap);
9409 return;
9410 #else
9411 cmd = DT_LTAG;
9412 #endif
9415 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9416 eap->forceit, TRUE);
9420 * Check "str" for starting with a special cmdline variable.
9421 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9422 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9425 find_cmdline_var(src, usedlen)
9426 char_u *src;
9427 int *usedlen;
9429 int len;
9430 int i;
9431 static char *(spec_str[]) = {
9432 "%",
9433 #define SPEC_PERC 0
9434 "#",
9435 #define SPEC_HASH 1
9436 "<cword>", /* cursor word */
9437 #define SPEC_CWORD 2
9438 "<cWORD>", /* cursor WORD */
9439 #define SPEC_CCWORD 3
9440 "<cfile>", /* cursor path name */
9441 #define SPEC_CFILE 4
9442 "<sfile>", /* ":so" file name */
9443 #define SPEC_SFILE 5
9444 #ifdef FEAT_AUTOCMD
9445 "<afile>", /* autocommand file name */
9446 # define SPEC_AFILE 6
9447 "<abuf>", /* autocommand buffer number */
9448 # define SPEC_ABUF 7
9449 "<amatch>", /* autocommand match name */
9450 # define SPEC_AMATCH 8
9451 #endif
9452 #ifdef FEAT_CLIENTSERVER
9453 "<client>"
9454 # define SPEC_CLIENT 9
9455 #endif
9458 for (i = 0; i < (int)(sizeof(spec_str) / sizeof(char *)); ++i)
9460 len = (int)STRLEN(spec_str[i]);
9461 if (STRNCMP(src, spec_str[i], len) == 0)
9463 *usedlen = len;
9464 return i;
9467 return -1;
9471 * Evaluate cmdline variables.
9473 * change '%' to curbuf->b_ffname
9474 * '#' to curwin->w_altfile
9475 * '<cword>' to word under the cursor
9476 * '<cWORD>' to WORD under the cursor
9477 * '<cfile>' to path name under the cursor
9478 * '<sfile>' to sourced file name
9479 * '<afile>' to file name for autocommand
9480 * '<abuf>' to buffer number for autocommand
9481 * '<amatch>' to matching name for autocommand
9483 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9484 * "" for error without a message) and NULL is returned.
9485 * Returns an allocated string if a valid match was found.
9486 * Returns NULL if no match was found. "usedlen" then still contains the
9487 * number of characters to skip.
9489 char_u *
9490 eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
9491 char_u *src; /* pointer into commandline */
9492 char_u *srcstart; /* beginning of valid memory for src */
9493 int *usedlen; /* characters after src that are used */
9494 linenr_T *lnump; /* line number for :e command, or NULL */
9495 char_u **errormsg; /* pointer to error message */
9496 int *escaped; /* return value has escaped white space (can
9497 * be NULL) */
9499 int i;
9500 char_u *s;
9501 char_u *result;
9502 char_u *resultbuf = NULL;
9503 int resultlen;
9504 buf_T *buf;
9505 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9506 int spec_idx;
9507 #ifdef FEAT_MODIFY_FNAME
9508 int skip_mod = FALSE;
9509 #endif
9511 #if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9512 char_u strbuf[30];
9513 #endif
9515 *errormsg = NULL;
9516 if (escaped != NULL)
9517 *escaped = FALSE;
9520 * Check if there is something to do.
9522 spec_idx = find_cmdline_var(src, usedlen);
9523 if (spec_idx < 0) /* no match */
9525 *usedlen = 1;
9526 return NULL;
9530 * Skip when preceded with a backslash "\%" and "\#".
9531 * Note: In "\\%" the % is also not recognized!
9533 if (src > srcstart && src[-1] == '\\')
9535 *usedlen = 0;
9536 STRMOVE(src - 1, src); /* remove backslash */
9537 return NULL;
9541 * word or WORD under cursor
9543 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9545 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9546 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9547 if (resultlen == 0)
9549 *errormsg = (char_u *)"";
9550 return NULL;
9555 * '#': Alternate file name
9556 * '%': Current file name
9557 * File name under the cursor
9558 * File name for autocommand
9559 * and following modifiers
9561 else
9563 switch (spec_idx)
9565 case SPEC_PERC: /* '%': current file */
9566 if (curbuf->b_fname == NULL)
9568 result = (char_u *)"";
9569 valid = 0; /* Must have ":p:h" to be valid */
9571 else
9572 #ifdef RISCOS
9573 /* Always use the full path for RISC OS if possible. */
9574 result = curbuf->b_ffname;
9575 if (result == NULL)
9576 result = curbuf->b_fname;
9577 #else
9578 result = curbuf->b_fname;
9579 #endif
9580 break;
9582 case SPEC_HASH: /* '#' or "#99": alternate file */
9583 if (src[1] == '#') /* "##": the argument list */
9585 result = arg_all();
9586 resultbuf = result;
9587 *usedlen = 2;
9588 if (escaped != NULL)
9589 *escaped = TRUE;
9590 #ifdef FEAT_MODIFY_FNAME
9591 skip_mod = TRUE;
9592 #endif
9593 break;
9595 s = src + 1;
9596 if (*s == '<') /* "#<99" uses v:oldfiles */
9597 ++s;
9598 i = (int)getdigits(&s);
9599 *usedlen = (int)(s - src); /* length of what we expand */
9601 if (src[1] == '<')
9603 if (*usedlen < 2)
9605 /* Should we give an error message for #<text? */
9606 *usedlen = 1;
9607 return NULL;
9609 #ifdef FEAT_EVAL
9610 result = list_find_str(get_vim_var_list(VV_OLDFILES),
9611 (long)i);
9612 if (result == NULL)
9614 *errormsg = (char_u *)"";
9615 return NULL;
9617 #else
9618 *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
9619 return NULL;
9620 #endif
9622 else
9624 buf = buflist_findnr(i);
9625 if (buf == NULL)
9627 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9628 return NULL;
9630 if (lnump != NULL)
9631 *lnump = ECMD_LAST;
9632 if (buf->b_fname == NULL)
9634 result = (char_u *)"";
9635 valid = 0; /* Must have ":p:h" to be valid */
9637 else
9638 result = buf->b_fname;
9640 break;
9642 #ifdef FEAT_SEARCHPATH
9643 case SPEC_CFILE: /* file name under cursor */
9644 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
9645 if (result == NULL)
9647 *errormsg = (char_u *)"";
9648 return NULL;
9650 resultbuf = result; /* remember allocated string */
9651 break;
9652 #endif
9654 #ifdef FEAT_AUTOCMD
9655 case SPEC_AFILE: /* file name for autocommand */
9656 result = autocmd_fname;
9657 if (result != NULL && !autocmd_fname_full)
9659 /* Still need to turn the fname into a full path. It is
9660 * postponed to avoid a delay when <afile> is not used. */
9661 autocmd_fname_full = TRUE;
9662 result = FullName_save(autocmd_fname, FALSE);
9663 vim_free(autocmd_fname);
9664 autocmd_fname = result;
9666 if (result == NULL)
9668 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9669 return NULL;
9671 result = shorten_fname1(result);
9672 break;
9674 case SPEC_ABUF: /* buffer number for autocommand */
9675 if (autocmd_bufnr <= 0)
9677 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9678 return NULL;
9680 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9681 result = strbuf;
9682 break;
9684 case SPEC_AMATCH: /* match name for autocommand */
9685 result = autocmd_match;
9686 if (result == NULL)
9688 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9689 return NULL;
9691 break;
9693 #endif
9694 case SPEC_SFILE: /* file name for ":so" command */
9695 result = sourcing_name;
9696 if (result == NULL)
9698 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9699 return NULL;
9701 break;
9702 #if defined(FEAT_CLIENTSERVER)
9703 case SPEC_CLIENT: /* Source of last submitted input */
9704 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9705 (long_u)clientWindow);
9706 result = strbuf;
9707 break;
9708 #endif
9711 resultlen = (int)STRLEN(result); /* length of new string */
9712 if (src[*usedlen] == '<') /* remove the file name extension */
9714 ++*usedlen;
9715 #ifdef RISCOS
9716 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9717 #else
9718 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9719 #endif
9720 resultlen = (int)(s - result);
9722 #ifdef FEAT_MODIFY_FNAME
9723 else if (!skip_mod)
9725 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9726 &resultlen);
9727 if (result == NULL)
9729 *errormsg = (char_u *)"";
9730 return NULL;
9733 #endif
9736 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9738 if (valid != VALID_HEAD + VALID_PATH)
9739 /* xgettext:no-c-format */
9740 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9741 else
9742 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9743 result = NULL;
9745 else
9746 result = vim_strnsave(result, resultlen);
9747 vim_free(resultbuf);
9748 return result;
9752 * Concatenate all files in the argument list, separated by spaces, and return
9753 * it in one allocated string.
9754 * Spaces and backslashes in the file names are escaped with a backslash.
9755 * Returns NULL when out of memory.
9757 static char_u *
9758 arg_all()
9760 int len;
9761 int idx;
9762 char_u *retval = NULL;
9763 char_u *p;
9766 * Do this loop two times:
9767 * first time: compute the total length
9768 * second time: concatenate the names
9770 for (;;)
9772 len = 0;
9773 for (idx = 0; idx < ARGCOUNT; ++idx)
9775 p = alist_name(&ARGLIST[idx]);
9776 if (p != NULL)
9778 if (len > 0)
9780 /* insert a space in between names */
9781 if (retval != NULL)
9782 retval[len] = ' ';
9783 ++len;
9785 for ( ; *p != NUL; ++p)
9787 if (*p == ' ' || *p == '\\')
9789 /* insert a backslash */
9790 if (retval != NULL)
9791 retval[len] = '\\';
9792 ++len;
9794 if (retval != NULL)
9795 retval[len] = *p;
9796 ++len;
9801 /* second time: break here */
9802 if (retval != NULL)
9804 retval[len] = NUL;
9805 break;
9808 /* allocate memory */
9809 retval = alloc((unsigned)len + 1);
9810 if (retval == NULL)
9811 break;
9814 return retval;
9817 #if defined(FEAT_AUTOCMD) || defined(PROTO)
9819 * Expand the <sfile> string in "arg".
9821 * Returns an allocated string, or NULL for any error.
9823 char_u *
9824 expand_sfile(arg)
9825 char_u *arg;
9827 char_u *errormsg;
9828 int len;
9829 char_u *result;
9830 char_u *newres;
9831 char_u *repl;
9832 int srclen;
9833 char_u *p;
9835 result = vim_strsave(arg);
9836 if (result == NULL)
9837 return NULL;
9839 for (p = result; *p; )
9841 if (STRNCMP(p, "<sfile>", 7) != 0)
9842 ++p;
9843 else
9845 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
9846 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
9847 if (errormsg != NULL)
9849 if (*errormsg)
9850 emsg(errormsg);
9851 vim_free(result);
9852 return NULL;
9854 if (repl == NULL) /* no match (cannot happen) */
9856 p += srclen;
9857 continue;
9859 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9860 newres = alloc(len);
9861 if (newres == NULL)
9863 vim_free(repl);
9864 vim_free(result);
9865 return NULL;
9867 mch_memmove(newres, result, (size_t)(p - result));
9868 STRCPY(newres + (p - result), repl);
9869 len = (int)STRLEN(newres);
9870 STRCAT(newres, p + srclen);
9871 vim_free(repl);
9872 vim_free(result);
9873 result = newres;
9874 p = newres + len; /* continue after the match */
9878 return result;
9880 #endif
9882 #ifdef FEAT_SESSION
9883 static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9884 win_T *tab_firstwin));
9885 static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9886 static frame_T *ses_skipframe __ARGS((frame_T *fr));
9887 static int ses_do_frame __ARGS((frame_T *fr));
9888 static int ses_do_win __ARGS((win_T *wp));
9889 static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9890 static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9891 static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9894 * Write openfile commands for the current buffers to an .exrc file.
9895 * Return FAIL on error, OK otherwise.
9897 static int
9898 makeopens(fd, dirnow)
9899 FILE *fd;
9900 char_u *dirnow; /* Current directory name */
9902 buf_T *buf;
9903 int only_save_windows = TRUE;
9904 int nr;
9905 int cnr = 1;
9906 int restore_size = TRUE;
9907 win_T *wp;
9908 char_u *sname;
9909 win_T *edited_win = NULL;
9910 int tabnr;
9911 win_T *tab_firstwin;
9912 frame_T *tab_topframe;
9913 int cur_arg_idx = 0;
9914 int next_arg_idx = 0;
9916 if (ssop_flags & SSOP_BUFFERS)
9917 only_save_windows = FALSE; /* Save ALL buffers */
9920 * Begin by setting the this_session variable, and then other
9921 * sessionable variables.
9923 #ifdef FEAT_EVAL
9924 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9925 return FAIL;
9926 if (ssop_flags & SSOP_GLOBALS)
9927 if (store_session_globals(fd) == FAIL)
9928 return FAIL;
9929 #endif
9932 * Close all windows but one.
9934 if (put_line(fd, "silent only") == FAIL)
9935 return FAIL;
9938 * Now a :cd command to the session directory or the current directory
9940 if (ssop_flags & SSOP_SESDIR)
9942 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9943 == FAIL)
9944 return FAIL;
9946 else if (ssop_flags & SSOP_CURDIR)
9948 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9949 if (sname == NULL
9950 || fputs("cd ", fd) < 0
9951 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9952 || put_eol(fd) == FAIL)
9954 vim_free(sname);
9955 return FAIL;
9957 vim_free(sname);
9961 * If there is an empty, unnamed buffer we will wipe it out later.
9962 * Remember the buffer number.
9964 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9965 return FAIL;
9966 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9967 return FAIL;
9968 if (put_line(fd, "endif") == FAIL)
9969 return FAIL;
9972 * Now save the current files, current buffer first.
9974 if (put_line(fd, "set shortmess=aoO") == FAIL)
9975 return FAIL;
9977 /* Now put the other buffers into the buffer list */
9978 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9980 if (!(only_save_windows && buf->b_nwindows == 0)
9981 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9982 && buf->b_fname != NULL
9983 && buf->b_p_bl)
9985 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9986 : buf->b_wininfo->wi_fpos.lnum) < 0
9987 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9988 return FAIL;
9992 /* the global argument list */
9993 if (ses_arglist(fd, "args", &global_alist.al_ga,
9994 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9995 return FAIL;
9997 if (ssop_flags & SSOP_RESIZE)
9999 /* Note: after the restore we still check it worked!*/
10000 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
10001 || put_eol(fd) == FAIL)
10002 return FAIL;
10003 #ifdef FEAT_FULLSCREEN
10004 /* fullscreen needs to be set after lines and columns */
10005 if (p_fullscreen)
10007 if (fprintf(fd, "set fullscreen") < 0 || put_eol(fd) == FAIL)
10008 return FAIL;
10010 #endif
10013 #ifdef FEAT_GUI
10014 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
10016 int x, y;
10018 if (gui_mch_get_winpos(&x, &y) == OK)
10020 /* Note: after the restore we still check it worked!*/
10021 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
10022 return FAIL;
10025 #endif
10028 * May repeat putting Windows for each tab, when "tabpages" is in
10029 * 'sessionoptions'.
10030 * Don't use goto_tabpage(), it may change directory and trigger
10031 * autocommands.
10033 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
10034 tab_topframe = topframe;
10035 for (tabnr = 1; ; ++tabnr)
10037 int need_tabnew = FALSE;
10039 if ((ssop_flags & SSOP_TABPAGES))
10041 tabpage_T *tp = find_tabpage(tabnr);
10043 if (tp == NULL)
10044 break; /* done all tab pages */
10045 if (tp == curtab)
10047 tab_firstwin = firstwin;
10048 tab_topframe = topframe;
10050 else
10052 tab_firstwin = tp->tp_firstwin;
10053 tab_topframe = tp->tp_topframe;
10055 if (tabnr > 1)
10056 need_tabnew = TRUE;
10060 * Before creating the window layout, try loading one file. If this
10061 * is aborted we don't end up with a number of useless windows.
10062 * This may have side effects! (e.g., compressed or network file).
10064 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10066 if (ses_do_win(wp)
10067 && wp->w_buffer->b_ffname != NULL
10068 && !wp->w_buffer->b_help
10069 #ifdef FEAT_QUICKFIX
10070 && !bt_nofile(wp->w_buffer)
10071 #endif
10074 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
10075 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
10076 return FAIL;
10077 need_tabnew = FALSE;
10078 if (!wp->w_arg_idx_invalid)
10079 edited_win = wp;
10080 break;
10084 /* If no file got edited create an empty tab page. */
10085 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
10086 return FAIL;
10089 * Save current window layout.
10091 if (put_line(fd, "set splitbelow splitright") == FAIL)
10092 return FAIL;
10093 if (ses_win_rec(fd, tab_topframe) == FAIL)
10094 return FAIL;
10095 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
10096 return FAIL;
10097 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
10098 return FAIL;
10101 * Check if window sizes can be restored (no windows omitted).
10102 * Remember the window number of the current window after restoring.
10104 nr = 0;
10105 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
10107 if (ses_do_win(wp))
10108 ++nr;
10109 else
10110 restore_size = FALSE;
10111 if (curwin == wp)
10112 cnr = nr;
10115 /* Go to the first window. */
10116 if (put_line(fd, "wincmd t") == FAIL)
10117 return FAIL;
10120 * If more than one window, see if sizes can be restored.
10121 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
10122 * resized when moving between windows.
10123 * Do this before restoring the view, so that the topline and the
10124 * cursor can be set. This is done again below.
10126 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
10127 return FAIL;
10128 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
10129 return FAIL;
10132 * Restore the view of the window (options, file, cursor, etc.).
10134 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10136 if (!ses_do_win(wp))
10137 continue;
10138 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
10139 cur_arg_idx) == FAIL)
10140 return FAIL;
10141 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
10142 return FAIL;
10143 next_arg_idx = wp->w_arg_idx;
10146 /* The argument index in the first tab page is zero, need to set it in
10147 * each window. For further tab pages it's the window where we do
10148 * "tabedit". */
10149 cur_arg_idx = next_arg_idx;
10152 * Restore cursor to the current window if it's not the first one.
10154 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
10155 || put_eol(fd) == FAIL))
10156 return FAIL;
10159 * Restore window sizes again after jumping around in windows, because
10160 * the current window has a minimum size while others may not.
10162 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
10163 return FAIL;
10165 /* Don't continue in another tab page when doing only the current one
10166 * or when at the last tab page. */
10167 if (!(ssop_flags & SSOP_TABPAGES))
10168 break;
10171 if (ssop_flags & SSOP_TABPAGES)
10173 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
10174 || put_eol(fd) == FAIL)
10175 return FAIL;
10179 * Wipe out an empty unnamed buffer we started in.
10181 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
10182 return FAIL;
10183 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
10184 return FAIL;
10185 if (put_line(fd, "endif") == FAIL)
10186 return FAIL;
10187 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
10188 return FAIL;
10190 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10191 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10192 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10193 return FAIL;
10196 * Lastly, execute the x.vim file if it exists.
10198 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10199 || put_line(fd, "if file_readable(s:sx)") == FAIL
10200 || put_line(fd, " exe \"source \" . fnameescape(s:sx)") == FAIL
10201 || put_line(fd, "endif") == FAIL)
10202 return FAIL;
10204 return OK;
10207 static int
10208 ses_winsizes(fd, restore_size, tab_firstwin)
10209 FILE *fd;
10210 int restore_size;
10211 win_T *tab_firstwin;
10213 int n = 0;
10214 win_T *wp;
10216 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10218 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10220 if (!ses_do_win(wp))
10221 continue;
10222 ++n;
10224 /* restore height when not full height */
10225 if (wp->w_height + wp->w_status_height < topframe->fr_height
10226 && (fprintf(fd,
10227 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10228 n, (long)wp->w_height, Rows / 2, Rows) < 0
10229 || put_eol(fd) == FAIL))
10230 return FAIL;
10232 /* restore width when not full width */
10233 if (wp->w_width < Columns && (fprintf(fd,
10234 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10235 n, (long)wp->w_width, Columns / 2, Columns) < 0
10236 || put_eol(fd) == FAIL))
10237 return FAIL;
10240 else
10242 /* Just equalise window sizes */
10243 if (put_line(fd, "wincmd =") == FAIL)
10244 return FAIL;
10246 return OK;
10250 * Write commands to "fd" to recursively create windows for frame "fr",
10251 * horizontally and vertically split.
10252 * After the commands the last window in the frame is the current window.
10253 * Returns FAIL when writing the commands to "fd" fails.
10255 static int
10256 ses_win_rec(fd, fr)
10257 FILE *fd;
10258 frame_T *fr;
10260 frame_T *frc;
10261 int count = 0;
10263 if (fr->fr_layout != FR_LEAF)
10265 /* Find first frame that's not skipped and then create a window for
10266 * each following one (first frame is already there). */
10267 frc = ses_skipframe(fr->fr_child);
10268 if (frc != NULL)
10269 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10271 /* Make window as big as possible so that we have lots of room
10272 * to split. */
10273 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10274 || put_line(fd, fr->fr_layout == FR_COL
10275 ? "split" : "vsplit") == FAIL)
10276 return FAIL;
10277 ++count;
10280 /* Go back to the first window. */
10281 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10282 ? "%dwincmd k" : "%dwincmd h", count) < 0
10283 || put_eol(fd) == FAIL))
10284 return FAIL;
10286 /* Recursively create frames/windows in each window of this column or
10287 * row. */
10288 frc = ses_skipframe(fr->fr_child);
10289 while (frc != NULL)
10291 ses_win_rec(fd, frc);
10292 frc = ses_skipframe(frc->fr_next);
10293 /* Go to next window. */
10294 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10295 return FAIL;
10298 return OK;
10302 * Skip frames that don't contain windows we want to save in the Session.
10303 * Returns NULL when there none.
10305 static frame_T *
10306 ses_skipframe(fr)
10307 frame_T *fr;
10309 frame_T *frc;
10311 for (frc = fr; frc != NULL; frc = frc->fr_next)
10312 if (ses_do_frame(frc))
10313 break;
10314 return frc;
10318 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10319 * the Session.
10321 static int
10322 ses_do_frame(fr)
10323 frame_T *fr;
10325 frame_T *frc;
10327 if (fr->fr_layout == FR_LEAF)
10328 return ses_do_win(fr->fr_win);
10329 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10330 if (ses_do_frame(frc))
10331 return TRUE;
10332 return FALSE;
10336 * Return non-zero if window "wp" is to be stored in the Session.
10338 static int
10339 ses_do_win(wp)
10340 win_T *wp;
10342 if (wp->w_buffer->b_fname == NULL
10343 #ifdef FEAT_QUICKFIX
10344 /* When 'buftype' is "nofile" can't restore the window contents. */
10345 || bt_nofile(wp->w_buffer)
10346 #endif
10348 return (ssop_flags & SSOP_BLANK);
10349 if (wp->w_buffer->b_help)
10350 return (ssop_flags & SSOP_HELP);
10351 return TRUE;
10355 * Write commands to "fd" to restore the view of a window.
10356 * Caller must make sure 'scrolloff' is zero.
10358 static int
10359 put_view(fd, wp, add_edit, flagp, current_arg_idx)
10360 FILE *fd;
10361 win_T *wp;
10362 int add_edit; /* add ":edit" command to view */
10363 unsigned *flagp; /* vop_flags or ssop_flags */
10364 int current_arg_idx; /* current argument index of the window, use
10365 * -1 if unknown */
10367 win_T *save_curwin;
10368 int f;
10369 int do_cursor;
10370 int did_next = FALSE;
10372 /* Always restore cursor position for ":mksession". For ":mkview" only
10373 * when 'viewoptions' contains "cursor". */
10374 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10377 * Local argument list.
10379 if (wp->w_alist == &global_alist)
10381 if (put_line(fd, "argglobal") == FAIL)
10382 return FAIL;
10384 else
10386 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10387 flagp == &vop_flags
10388 || !(*flagp & SSOP_CURDIR)
10389 || wp->w_localdir != NULL, flagp) == FAIL)
10390 return FAIL;
10393 /* Only when part of a session: restore the argument index. Some
10394 * arguments may have been deleted, check if the index is valid. */
10395 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx <= WARGCOUNT(wp)
10396 && flagp == &ssop_flags)
10398 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
10399 || put_eol(fd) == FAIL)
10400 return FAIL;
10401 did_next = TRUE;
10404 /* Edit the file. Skip this when ":next" already did it. */
10405 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
10408 * Load the file.
10410 if (wp->w_buffer->b_ffname != NULL
10411 #ifdef FEAT_QUICKFIX
10412 && !bt_nofile(wp->w_buffer)
10413 #endif
10417 * Editing a file in this buffer: use ":edit file".
10418 * This may have side effects! (e.g., compressed or network file).
10420 if (fputs("edit ", fd) < 0
10421 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10422 return FAIL;
10424 else
10426 /* No file in this buffer, just make it empty. */
10427 if (put_line(fd, "enew") == FAIL)
10428 return FAIL;
10429 #ifdef FEAT_QUICKFIX
10430 if (wp->w_buffer->b_ffname != NULL)
10432 /* The buffer does have a name, but it's not a file name. */
10433 if (fputs("file ", fd) < 0
10434 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10435 return FAIL;
10437 #endif
10438 do_cursor = FALSE;
10443 * Local mappings and abbreviations.
10445 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10446 && makemap(fd, wp->w_buffer) == FAIL)
10447 return FAIL;
10450 * Local options. Need to go to the window temporarily.
10451 * Store only local values when using ":mkview" and when ":mksession" is
10452 * used and 'sessionoptions' doesn't include "options".
10453 * Some folding options are always stored when "folds" is included,
10454 * otherwise the folds would not be restored correctly.
10456 save_curwin = curwin;
10457 curwin = wp;
10458 curbuf = curwin->w_buffer;
10459 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10460 f = makeset(fd, OPT_LOCAL,
10461 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10462 #ifdef FEAT_FOLDING
10463 else if (*flagp & SSOP_FOLDS)
10464 f = makefoldset(fd);
10465 #endif
10466 else
10467 f = OK;
10468 curwin = save_curwin;
10469 curbuf = curwin->w_buffer;
10470 if (f == FAIL)
10471 return FAIL;
10473 #ifdef FEAT_FOLDING
10475 * Save Folds when 'buftype' is empty and for help files.
10477 if ((*flagp & SSOP_FOLDS)
10478 && wp->w_buffer->b_ffname != NULL
10479 # ifdef FEAT_QUICKFIX
10480 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10481 # endif
10484 if (put_folds(fd, wp) == FAIL)
10485 return FAIL;
10487 #endif
10490 * Set the cursor after creating folds, since that moves the cursor.
10492 if (do_cursor)
10495 /* Restore the cursor line in the file and relatively in the
10496 * window. Don't use "G", it changes the jumplist. */
10497 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10498 (long)wp->w_cursor.lnum,
10499 (long)(wp->w_cursor.lnum - wp->w_topline),
10500 (long)wp->w_height / 2, (long)wp->w_height) < 0
10501 || put_eol(fd) == FAIL
10502 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10503 || put_line(fd, "exe s:l") == FAIL
10504 || put_line(fd, "normal! zt") == FAIL
10505 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10506 || put_eol(fd) == FAIL)
10507 return FAIL;
10508 /* Restore the cursor column and left offset when not wrapping. */
10509 if (wp->w_cursor.col == 0)
10511 if (put_line(fd, "normal! 0") == FAIL)
10512 return FAIL;
10514 else
10516 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10518 if (fprintf(fd,
10519 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10520 (long)wp->w_cursor.col,
10521 (long)(wp->w_cursor.col - wp->w_leftcol),
10522 (long)wp->w_width / 2, (long)wp->w_width) < 0
10523 || put_eol(fd) == FAIL
10524 || put_line(fd, "if s:c > 0") == FAIL
10525 || fprintf(fd,
10526 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10527 (long)wp->w_cursor.col) < 0
10528 || put_eol(fd) == FAIL
10529 || put_line(fd, "else") == FAIL
10530 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10531 || put_eol(fd) == FAIL
10532 || put_line(fd, "endif") == FAIL)
10533 return FAIL;
10535 else
10537 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10538 || put_eol(fd) == FAIL)
10539 return FAIL;
10545 * Local directory.
10547 if (wp->w_localdir != NULL)
10549 if (fputs("lcd ", fd) < 0
10550 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10551 || put_eol(fd) == FAIL)
10552 return FAIL;
10553 did_lcd = TRUE;
10556 return OK;
10560 * Write an argument list to the session file.
10561 * Returns FAIL if writing fails.
10563 static int
10564 ses_arglist(fd, cmd, gap, fullname, flagp)
10565 FILE *fd;
10566 char *cmd;
10567 garray_T *gap;
10568 int fullname; /* TRUE: use full path name */
10569 unsigned *flagp;
10571 int i;
10572 char_u buf[MAXPATHL];
10573 char_u *s;
10575 if (gap->ga_len == 0)
10576 return put_line(fd, "silent! argdel *");
10577 if (fputs(cmd, fd) < 0)
10578 return FAIL;
10579 for (i = 0; i < gap->ga_len; ++i)
10581 /* NULL file names are skipped (only happens when out of memory). */
10582 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10583 if (s != NULL)
10585 if (fullname)
10587 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10588 s = buf;
10590 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10591 return FAIL;
10594 return put_eol(fd);
10598 * Write a buffer name to the session file.
10599 * Also ends the line.
10600 * Returns FAIL if writing fails.
10602 static int
10603 ses_fname(fd, buf, flagp)
10604 FILE *fd;
10605 buf_T *buf;
10606 unsigned *flagp;
10608 char_u *name;
10610 /* Use the short file name if the current directory is known at the time
10611 * the session file will be sourced.
10612 * Don't do this for ":mkview", we don't know the current directory.
10613 * Don't do this after ":lcd", we don't keep track of what the current
10614 * directory is. */
10615 if (buf->b_sfname != NULL
10616 && flagp == &ssop_flags
10617 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10618 #ifdef FEAT_AUTOCHDIR
10619 && !p_acd
10620 #endif
10621 && !did_lcd)
10622 name = buf->b_sfname;
10623 else
10624 name = buf->b_ffname;
10625 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10626 return FAIL;
10627 return OK;
10631 * Write a file name to the session file.
10632 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10633 * characters.
10634 * Returns FAIL if writing fails.
10636 static int
10637 ses_put_fname(fd, name, flagp)
10638 FILE *fd;
10639 char_u *name;
10640 unsigned *flagp;
10642 char_u *sname;
10643 int retval = OK;
10644 int c;
10646 sname = home_replace_save(NULL, name);
10647 if (sname != NULL)
10648 name = sname;
10649 while (*name != NUL)
10651 #ifdef FEAT_MBYTE
10653 int l;
10655 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
10657 /* copy a multibyte char */
10658 while (--l >= 0)
10660 if (putc(*name, fd) != *name)
10661 retval = FAIL;
10662 ++name;
10664 continue;
10667 #endif
10668 c = *name++;
10669 if (c == '\\' && (*flagp & SSOP_SLASH))
10670 /* change a backslash to a forward slash */
10671 c = '/';
10672 else if ((vim_strchr(escape_chars, c) != NULL
10673 #ifdef BACKSLASH_IN_FILENAME
10674 && c != '\\'
10675 #endif
10676 ) || c == '#' || c == '%')
10678 /* escape a special character with a backslash */
10679 if (putc('\\', fd) != '\\')
10680 retval = FAIL;
10682 if (putc(c, fd) != c)
10683 retval = FAIL;
10685 vim_free(sname);
10686 return retval;
10690 * ":loadview [nr]"
10692 static void
10693 ex_loadview(eap)
10694 exarg_T *eap;
10696 char_u *fname;
10698 fname = get_view_file(*eap->arg);
10699 if (fname != NULL)
10701 do_source(fname, FALSE, DOSO_NONE);
10702 vim_free(fname);
10707 * Get the name of the view file for the current buffer.
10709 static char_u *
10710 get_view_file(c)
10711 int c;
10713 int len = 0;
10714 char_u *p, *s;
10715 char_u *retval;
10716 char_u *sname;
10718 if (curbuf->b_ffname == NULL)
10720 EMSG(_(e_noname));
10721 return NULL;
10723 sname = home_replace_save(NULL, curbuf->b_ffname);
10724 if (sname == NULL)
10725 return NULL;
10728 * We want a file name without separators, because we're not going to make
10729 * a directory.
10730 * "normal" path separator -> "=+"
10731 * "=" -> "=="
10732 * ":" path separator -> "=-"
10734 for (p = sname; *p; ++p)
10735 if (*p == '=' || vim_ispathsep(*p))
10736 ++len;
10737 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10738 if (retval != NULL)
10740 STRCPY(retval, p_vdir);
10741 add_pathsep(retval);
10742 s = retval + STRLEN(retval);
10743 for (p = sname; *p; ++p)
10745 if (*p == '=')
10747 *s++ = '=';
10748 *s++ = '=';
10750 else if (vim_ispathsep(*p))
10752 *s++ = '=';
10753 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
10754 || defined(VMS)
10755 if (*p == ':')
10756 *s++ = '-';
10757 else
10758 #endif
10759 *s++ = '+';
10761 else
10762 *s++ = *p;
10764 *s++ = '=';
10765 *s++ = c;
10766 STRCPY(s, ".vim");
10769 vim_free(sname);
10770 return retval;
10773 #endif /* FEAT_SESSION */
10776 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10777 * Return FAIL for a write error.
10780 put_eol(fd)
10781 FILE *fd;
10783 if (
10784 #ifdef USE_CRNL
10786 # ifdef MKSESSION_NL
10787 !mksession_nl &&
10788 # endif
10789 (putc('\r', fd) < 0)) ||
10790 #endif
10791 (putc('\n', fd) < 0))
10792 return FAIL;
10793 return OK;
10797 * Write a line to "fd".
10798 * Return FAIL for a write error.
10801 put_line(fd, s)
10802 FILE *fd;
10803 char *s;
10805 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10806 return FAIL;
10807 return OK;
10810 #ifdef FEAT_VIMINFO
10812 * ":rviminfo" and ":wviminfo".
10814 static void
10815 ex_viminfo(eap)
10816 exarg_T *eap;
10818 char_u *save_viminfo;
10820 save_viminfo = p_viminfo;
10821 if (*p_viminfo == NUL)
10822 p_viminfo = (char_u *)"'100";
10823 if (eap->cmdidx == CMD_rviminfo)
10825 if (read_viminfo(eap->arg, VIF_WANT_INFO | VIF_WANT_MARKS
10826 | (eap->forceit ? VIF_FORCEIT : 0)) == FAIL)
10827 EMSG(_("E195: Cannot open viminfo file for reading"));
10829 else
10830 write_viminfo(eap->arg, eap->forceit);
10831 p_viminfo = save_viminfo;
10833 #endif
10835 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
10837 * Make a dialog message in "buff[IOSIZE]".
10838 * "format" must contain "%s".
10840 void
10841 dialog_msg(buff, format, fname)
10842 char_u *buff;
10843 char *format;
10844 char_u *fname;
10846 if (fname == NULL)
10847 fname = (char_u *)_("Untitled");
10848 vim_snprintf((char *)buff, IOSIZE, format, fname);
10850 #endif
10853 * ":behave {mswin,xterm}"
10855 static void
10856 ex_behave(eap)
10857 exarg_T *eap;
10859 if (STRCMP(eap->arg, "mswin") == 0)
10861 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10862 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10863 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10864 set_option_value((char_u *)"keymodel", 0L,
10865 (char_u *)"startsel,stopsel", 0);
10867 else if (STRCMP(eap->arg, "xterm") == 0)
10869 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10870 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10871 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10872 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10874 else
10875 EMSG2(_(e_invarg2), eap->arg);
10878 #ifdef FEAT_AUTOCMD
10879 static int filetype_detect = FALSE;
10880 static int filetype_plugin = FALSE;
10881 static int filetype_indent = FALSE;
10884 * ":filetype [plugin] [indent] {on,off,detect}"
10885 * on: Load the filetype.vim file to install autocommands for file types.
10886 * off: Load the ftoff.vim file to remove all autocommands for file types.
10887 * plugin on: load filetype.vim and ftplugin.vim
10888 * plugin off: load ftplugof.vim
10889 * indent on: load filetype.vim and indent.vim
10890 * indent off: load indoff.vim
10892 static void
10893 ex_filetype(eap)
10894 exarg_T *eap;
10896 char_u *arg = eap->arg;
10897 int plugin = FALSE;
10898 int indent = FALSE;
10900 if (*eap->arg == NUL)
10902 /* Print current status. */
10903 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10904 filetype_detect ? "ON" : "OFF",
10905 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10906 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10907 return;
10910 /* Accept "plugin" and "indent" in any order. */
10911 for (;;)
10913 if (STRNCMP(arg, "plugin", 6) == 0)
10915 plugin = TRUE;
10916 arg = skipwhite(arg + 6);
10917 continue;
10919 if (STRNCMP(arg, "indent", 6) == 0)
10921 indent = TRUE;
10922 arg = skipwhite(arg + 6);
10923 continue;
10925 break;
10927 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10929 if (*arg == 'o' || !filetype_detect)
10931 source_runtime((char_u *)FILETYPE_FILE, TRUE);
10932 filetype_detect = TRUE;
10933 if (plugin)
10935 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
10936 filetype_plugin = TRUE;
10938 if (indent)
10940 source_runtime((char_u *)INDENT_FILE, TRUE);
10941 filetype_indent = TRUE;
10944 if (*arg == 'd')
10946 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
10947 do_modelines(0);
10950 else if (STRCMP(arg, "off") == 0)
10952 if (plugin || indent)
10954 if (plugin)
10956 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
10957 filetype_plugin = FALSE;
10959 if (indent)
10961 source_runtime((char_u *)INDOFF_FILE, TRUE);
10962 filetype_indent = FALSE;
10965 else
10967 source_runtime((char_u *)FTOFF_FILE, TRUE);
10968 filetype_detect = FALSE;
10971 else
10972 EMSG2(_(e_invarg2), arg);
10976 * ":setfiletype {name}"
10978 static void
10979 ex_setfiletype(eap)
10980 exarg_T *eap;
10982 if (!did_filetype)
10983 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10985 #endif
10987 static void
10988 ex_digraphs(eap)
10989 exarg_T *eap UNUSED;
10991 #ifdef FEAT_DIGRAPHS
10992 if (*eap->arg != NUL)
10993 putdigraph(eap->arg);
10994 else
10995 listdigraphs();
10996 #else
10997 EMSG(_("E196: No digraphs in this version"));
10998 #endif
11001 static void
11002 ex_set(eap)
11003 exarg_T *eap;
11005 int flags = 0;
11007 if (eap->cmdidx == CMD_setlocal)
11008 flags = OPT_LOCAL;
11009 else if (eap->cmdidx == CMD_setglobal)
11010 flags = OPT_GLOBAL;
11011 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
11012 if (cmdmod.browse && flags == 0)
11013 ex_options(eap);
11014 else
11015 #endif
11016 (void)do_set(eap->arg, flags);
11019 #ifdef FEAT_SEARCH_EXTRA
11021 * ":nohlsearch"
11023 static void
11024 ex_nohlsearch(eap)
11025 exarg_T *eap UNUSED;
11027 no_hlsearch = TRUE;
11028 redraw_all_later(SOME_VALID);
11032 * ":[N]match {group} {pattern}"
11033 * Sets nextcmd to the start of the next command, if any. Also called when
11034 * skipping commands to find the next command.
11036 static void
11037 ex_match(eap)
11038 exarg_T *eap;
11040 char_u *p;
11041 char_u *g = NULL;
11042 char_u *end;
11043 int c;
11044 int id;
11046 if (eap->line2 <= 3)
11047 id = eap->line2;
11048 else
11050 EMSG(e_invcmd);
11051 return;
11054 /* First clear any old pattern. */
11055 if (!eap->skip)
11056 match_delete(curwin, id, FALSE);
11058 if (ends_excmd(*eap->arg))
11059 end = eap->arg;
11060 else if ((STRNICMP(eap->arg, "none", 4) == 0
11061 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
11062 end = eap->arg + 4;
11063 else
11065 p = skiptowhite(eap->arg);
11066 if (!eap->skip)
11067 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
11068 p = skipwhite(p);
11069 if (*p == NUL)
11071 /* There must be two arguments. */
11072 EMSG2(_(e_invarg2), eap->arg);
11073 return;
11075 end = skip_regexp(p + 1, *p, TRUE, NULL);
11076 if (!eap->skip)
11078 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
11080 eap->errmsg = e_trailing;
11081 return;
11083 if (*end != *p)
11085 EMSG2(_(e_invarg2), p);
11086 return;
11089 c = *end;
11090 *end = NUL;
11091 match_add(curwin, g, p + 1, 10, id);
11092 vim_free(g);
11093 *end = c;
11096 eap->nextcmd = find_nextcmd(end);
11098 #endif
11100 #ifdef FEAT_CRYPT
11102 * ":X": Get crypt key
11104 static void
11105 ex_X(eap)
11106 exarg_T *eap UNUSED;
11108 (void)get_crypt_key(TRUE, TRUE);
11110 #endif
11112 #ifdef FEAT_FOLDING
11113 static void
11114 ex_fold(eap)
11115 exarg_T *eap;
11117 if (foldManualAllowed(TRUE))
11118 foldCreate(eap->line1, eap->line2);
11121 static void
11122 ex_foldopen(eap)
11123 exarg_T *eap;
11125 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
11126 eap->forceit, FALSE);
11129 static void
11130 ex_folddo(eap)
11131 exarg_T *eap;
11133 linenr_T lnum;
11135 /* First set the marks for all lines closed/open. */
11136 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
11137 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
11138 ml_setmarked(lnum);
11140 /* Execute the command on the marked lines. */
11141 global_exe(eap->arg);
11142 ml_clearmarked(); /* clear rest of the marks */
11144 #endif