aeb7774bfcc7b68cb2474aaede97f10b40e968a2
[MacVim.git] / src / ex_docmd.c
blobaeb7774bfcc7b68cb2474aaede97f10b40e968a2
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_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
215 static void ex_popup __ARGS((exarg_T *eap));
216 #else
217 # define ex_popup ex_ni
218 #endif
219 #ifndef FEAT_GUI_MSWIN
220 # define ex_simalt ex_ni
221 #endif
222 #if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
223 # define gui_mch_find_dialog ex_ni
224 # define gui_mch_replace_dialog ex_ni
225 #endif
226 #if !defined(FEAT_GUI_GTK)
227 # define ex_helpfind ex_ni
228 #endif
229 #ifndef FEAT_CSCOPE
230 # define do_cscope ex_ni
231 # define do_scscope ex_ni
232 # define do_cstag ex_ni
233 #endif
234 #ifndef FEAT_SYN_HL
235 # define ex_syntax ex_ni
236 #endif
237 #ifndef FEAT_SPELL
238 # define ex_spell ex_ni
239 # define ex_mkspell ex_ni
240 # define ex_spelldump ex_ni
241 # define ex_spellinfo ex_ni
242 # define ex_spellrepall ex_ni
243 #endif
244 #ifndef FEAT_MZSCHEME
245 # define ex_mzscheme ex_script_ni
246 # define ex_mzfile ex_ni
247 #endif
248 #ifndef FEAT_PERL
249 # define ex_perl ex_script_ni
250 # define ex_perldo ex_ni
251 #endif
252 #ifndef FEAT_PYTHON
253 # define ex_python ex_script_ni
254 # define ex_pyfile ex_ni
255 #endif
256 #ifndef FEAT_TCL
257 # define ex_tcl ex_script_ni
258 # define ex_tcldo ex_ni
259 # define ex_tclfile ex_ni
260 #endif
261 #ifndef FEAT_RUBY
262 # define ex_ruby ex_script_ni
263 # define ex_rubydo ex_ni
264 # define ex_rubyfile ex_ni
265 #endif
266 #ifndef FEAT_SNIFF
267 # define ex_sniff ex_ni
268 #endif
269 #ifndef FEAT_KEYMAP
270 # define ex_loadkeymap ex_ni
271 #endif
272 static void ex_swapname __ARGS((exarg_T *eap));
273 static void ex_syncbind __ARGS((exarg_T *eap));
274 static void ex_read __ARGS((exarg_T *eap));
275 static void ex_pwd __ARGS((exarg_T *eap));
276 static void ex_equal __ARGS((exarg_T *eap));
277 static void ex_sleep __ARGS((exarg_T *eap));
278 static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
279 static void ex_winsize __ARGS((exarg_T *eap));
280 #ifdef FEAT_WINDOWS
281 static void ex_wincmd __ARGS((exarg_T *eap));
282 #else
283 # define ex_wincmd ex_ni
284 #endif
285 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
286 static void ex_winpos __ARGS((exarg_T *eap));
287 #else
288 # define ex_winpos ex_ni
289 #endif
290 static void ex_operators __ARGS((exarg_T *eap));
291 static void ex_put __ARGS((exarg_T *eap));
292 static void ex_copymove __ARGS((exarg_T *eap));
293 static void ex_may_print __ARGS((exarg_T *eap));
294 static void ex_submagic __ARGS((exarg_T *eap));
295 static void ex_join __ARGS((exarg_T *eap));
296 static void ex_at __ARGS((exarg_T *eap));
297 static void ex_bang __ARGS((exarg_T *eap));
298 static void ex_undo __ARGS((exarg_T *eap));
299 static void ex_redo __ARGS((exarg_T *eap));
300 static void ex_later __ARGS((exarg_T *eap));
301 static void ex_redir __ARGS((exarg_T *eap));
302 static void ex_redraw __ARGS((exarg_T *eap));
303 static void ex_redrawstatus __ARGS((exarg_T *eap));
304 static void close_redir __ARGS((void));
305 static void ex_mkrc __ARGS((exarg_T *eap));
306 static void ex_mark __ARGS((exarg_T *eap));
307 #ifdef FEAT_USR_CMDS
308 static char_u *uc_fun_cmd __ARGS((void));
309 static char_u *find_ucmd __ARGS((exarg_T *eap, char_u *p, int *full, expand_T *xp, int *compl));
310 #endif
311 #ifdef FEAT_EX_EXTRA
312 static void ex_normal __ARGS((exarg_T *eap));
313 static void ex_startinsert __ARGS((exarg_T *eap));
314 static void ex_stopinsert __ARGS((exarg_T *eap));
315 #else
316 # define ex_normal ex_ni
317 # define ex_align ex_ni
318 # define ex_retab ex_ni
319 # define ex_startinsert ex_ni
320 # define ex_stopinsert ex_ni
321 # define ex_helptags ex_ni
322 # define ex_sort ex_ni
323 #endif
324 #ifdef FEAT_FIND_ID
325 static void ex_checkpath __ARGS((exarg_T *eap));
326 static void ex_findpat __ARGS((exarg_T *eap));
327 #else
328 # define ex_findpat ex_ni
329 # define ex_checkpath ex_ni
330 #endif
331 #if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
332 static void ex_psearch __ARGS((exarg_T *eap));
333 #else
334 # define ex_psearch ex_ni
335 #endif
336 static void ex_tag __ARGS((exarg_T *eap));
337 static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
338 #ifndef FEAT_EVAL
339 # define ex_scriptnames ex_ni
340 # define ex_finish ex_ni
341 # define ex_echo ex_ni
342 # define ex_echohl ex_ni
343 # define ex_execute ex_ni
344 # define ex_call ex_ni
345 # define ex_if ex_ni
346 # define ex_endif ex_ni
347 # define ex_else ex_ni
348 # define ex_while ex_ni
349 # define ex_for ex_ni
350 # define ex_continue ex_ni
351 # define ex_break ex_ni
352 # define ex_endwhile ex_ni
353 # define ex_endfor ex_ni
354 # define ex_throw ex_ni
355 # define ex_try ex_ni
356 # define ex_catch ex_ni
357 # define ex_finally ex_ni
358 # define ex_endtry ex_ni
359 # define ex_endfunction ex_ni
360 # define ex_let ex_ni
361 # define ex_unlet ex_ni
362 # define ex_lockvar ex_ni
363 # define ex_unlockvar ex_ni
364 # define ex_function ex_ni
365 # define ex_delfunction ex_ni
366 # define ex_return ex_ni
367 # define ex_oldfiles ex_ni
368 #endif
369 static char_u *arg_all __ARGS((void));
370 #ifdef FEAT_SESSION
371 static int makeopens __ARGS((FILE *fd, char_u *dirnow));
372 static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp, int current_arg_idx));
373 static void ex_loadview __ARGS((exarg_T *eap));
374 static char_u *get_view_file __ARGS((int c));
375 static int did_lcd; /* whether ":lcd" was produced for a session */
376 #else
377 # define ex_loadview ex_ni
378 #endif
379 #ifndef FEAT_EVAL
380 # define ex_compiler ex_ni
381 #endif
382 #ifdef FEAT_VIMINFO
383 static void ex_viminfo __ARGS((exarg_T *eap));
384 #else
385 # define ex_viminfo ex_ni
386 #endif
387 static void ex_behave __ARGS((exarg_T *eap));
388 #ifdef FEAT_AUTOCMD
389 static void ex_filetype __ARGS((exarg_T *eap));
390 static void ex_setfiletype __ARGS((exarg_T *eap));
391 #else
392 # define ex_filetype ex_ni
393 # define ex_setfiletype ex_ni
394 #endif
395 #ifndef FEAT_DIFF
396 # define ex_diffoff ex_ni
397 # define ex_diffpatch ex_ni
398 # define ex_diffgetput ex_ni
399 # define ex_diffsplit ex_ni
400 # define ex_diffthis ex_ni
401 # define ex_diffupdate ex_ni
402 #endif
403 static void ex_digraphs __ARGS((exarg_T *eap));
404 static void ex_set __ARGS((exarg_T *eap));
405 #if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
406 # define ex_options ex_ni
407 #endif
408 #ifdef FEAT_SEARCH_EXTRA
409 static void ex_nohlsearch __ARGS((exarg_T *eap));
410 static void ex_match __ARGS((exarg_T *eap));
411 #else
412 # define ex_nohlsearch ex_ni
413 # define ex_match ex_ni
414 #endif
415 #ifdef FEAT_CRYPT
416 static void ex_X __ARGS((exarg_T *eap));
417 #else
418 # define ex_X ex_ni
419 #endif
420 #ifdef FEAT_FOLDING
421 static void ex_fold __ARGS((exarg_T *eap));
422 static void ex_foldopen __ARGS((exarg_T *eap));
423 static void ex_folddo __ARGS((exarg_T *eap));
424 #else
425 # define ex_fold ex_ni
426 # define ex_foldopen ex_ni
427 # define ex_folddo ex_ni
428 #endif
429 #if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
430 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
431 # define ex_language ex_ni
432 #endif
433 #ifndef FEAT_SIGNS
434 # define ex_sign ex_ni
435 #endif
436 #ifndef FEAT_SUN_WORKSHOP
437 # define ex_wsverb ex_ni
438 #endif
439 #ifndef FEAT_NETBEANS_INTG
440 # define ex_nbkey ex_ni
441 #endif
443 #ifndef FEAT_EVAL
444 # define ex_debug ex_ni
445 # define ex_breakadd ex_ni
446 # define ex_debuggreedy ex_ni
447 # define ex_breakdel ex_ni
448 # define ex_breaklist ex_ni
449 #endif
451 #ifndef FEAT_CMDHIST
452 # define ex_history ex_ni
453 #endif
454 #ifndef FEAT_JUMPLIST
455 # define ex_jumps ex_ni
456 # define ex_changes ex_ni
457 #endif
459 #ifndef FEAT_PROFILE
460 # define ex_profile ex_ni
461 #endif
464 * Declare cmdnames[].
466 #define DO_DECLARE_EXCMD
467 #include "ex_cmds.h"
470 * Table used to quickly search for a command, based on its first character.
472 static cmdidx_T cmdidxs[27] =
474 CMD_append,
475 CMD_buffer,
476 CMD_change,
477 CMD_delete,
478 CMD_edit,
479 CMD_file,
480 CMD_global,
481 CMD_help,
482 CMD_insert,
483 CMD_join,
484 CMD_k,
485 CMD_list,
486 CMD_move,
487 CMD_next,
488 CMD_open,
489 CMD_print,
490 CMD_quit,
491 CMD_read,
492 CMD_substitute,
493 CMD_t,
494 CMD_undo,
495 CMD_vglobal,
496 CMD_write,
497 CMD_xit,
498 CMD_yank,
499 CMD_z,
500 CMD_bang
503 static char_u dollar_command[2] = {'$', 0};
506 #ifdef FEAT_EVAL
507 /* Struct for storing a line inside a while/for loop */
508 typedef struct
510 char_u *line; /* command line */
511 linenr_T lnum; /* sourcing_lnum of the line */
512 } wcmd_T;
515 * Structure used to store info for line position in a while or for loop.
516 * This is required, because do_one_cmd() may invoke ex_function(), which
517 * reads more lines that may come from the while/for loop.
519 struct loop_cookie
521 garray_T *lines_gap; /* growarray with line info */
522 int current_line; /* last read line from growarray */
523 int repeating; /* TRUE when looping a second time */
524 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
525 char_u *(*getline) __ARGS((int, void *, int));
526 void *cookie;
529 static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
530 static int store_loop_line __ARGS((garray_T *gap, char_u *line));
531 static void free_cmdlines __ARGS((garray_T *gap));
533 /* Struct to save a few things while debugging. Used in do_cmdline() only. */
534 struct dbg_stuff
536 int trylevel;
537 int force_abort;
538 except_T *caught_stack;
539 char_u *vv_exception;
540 char_u *vv_throwpoint;
541 int did_emsg;
542 int got_int;
543 int did_throw;
544 int need_rethrow;
545 int check_cstack;
546 except_T *current_exception;
549 static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
550 static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
552 static void
553 save_dbg_stuff(dsp)
554 struct dbg_stuff *dsp;
556 dsp->trylevel = trylevel; trylevel = 0;
557 dsp->force_abort = force_abort; force_abort = FALSE;
558 dsp->caught_stack = caught_stack; caught_stack = NULL;
559 dsp->vv_exception = v_exception(NULL);
560 dsp->vv_throwpoint = v_throwpoint(NULL);
562 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
563 dsp->did_emsg = did_emsg; did_emsg = FALSE;
564 dsp->got_int = got_int; got_int = FALSE;
565 dsp->did_throw = did_throw; did_throw = FALSE;
566 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
567 dsp->check_cstack = check_cstack; check_cstack = FALSE;
568 dsp->current_exception = current_exception; current_exception = NULL;
571 static void
572 restore_dbg_stuff(dsp)
573 struct dbg_stuff *dsp;
575 suppress_errthrow = FALSE;
576 trylevel = dsp->trylevel;
577 force_abort = dsp->force_abort;
578 caught_stack = dsp->caught_stack;
579 (void)v_exception(dsp->vv_exception);
580 (void)v_throwpoint(dsp->vv_throwpoint);
581 did_emsg = dsp->did_emsg;
582 got_int = dsp->got_int;
583 did_throw = dsp->did_throw;
584 need_rethrow = dsp->need_rethrow;
585 check_cstack = dsp->check_cstack;
586 current_exception = dsp->current_exception;
588 #endif
592 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
593 * command is given.
595 void
596 do_exmode(improved)
597 int improved; /* TRUE for "improved Ex" mode */
599 int save_msg_scroll;
600 int prev_msg_row;
601 linenr_T prev_line;
602 int changedtick;
604 if (improved)
605 exmode_active = EXMODE_VIM;
606 else
607 exmode_active = EXMODE_NORMAL;
608 State = NORMAL;
610 /* When using ":global /pat/ visual" and then "Q" we return to continue
611 * the :global command. */
612 if (global_busy)
613 return;
615 save_msg_scroll = msg_scroll;
616 ++RedrawingDisabled; /* don't redisplay the window */
617 ++no_wait_return; /* don't wait for return */
618 #ifdef FEAT_GUI
619 /* Ignore scrollbar and mouse events in Ex mode */
620 ++hold_gui_events;
621 #endif
622 #ifdef FEAT_SNIFF
623 want_sniff_request = 0; /* No K_SNIFF wanted */
624 #endif
626 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
627 while (exmode_active)
629 #ifdef FEAT_EX_EXTRA
630 /* Check for a ":normal" command and no more characters left. */
631 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
633 exmode_active = FALSE;
634 break;
636 #endif
637 msg_scroll = TRUE;
638 need_wait_return = FALSE;
639 ex_pressedreturn = FALSE;
640 ex_no_reprint = FALSE;
641 changedtick = curbuf->b_changedtick;
642 prev_msg_row = msg_row;
643 prev_line = curwin->w_cursor.lnum;
644 #ifdef FEAT_SNIFF
645 ProcessSniffRequests();
646 #endif
647 if (improved)
649 cmdline_row = msg_row;
650 do_cmdline(NULL, getexline, NULL, 0);
652 else
653 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
654 lines_left = Rows - 1;
656 if ((prev_line != curwin->w_cursor.lnum
657 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
659 if (curbuf->b_ml.ml_flags & ML_EMPTY)
660 EMSG(_(e_emptybuf));
661 else
663 if (ex_pressedreturn)
665 /* go up one line, to overwrite the ":<CR>" line, so the
666 * output doesn't contain empty lines. */
667 msg_row = prev_msg_row;
668 if (prev_msg_row == Rows - 1)
669 msg_row--;
671 msg_col = 0;
672 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
673 msg_clr_eos();
676 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
678 if (curbuf->b_ml.ml_flags & ML_EMPTY)
679 EMSG(_(e_emptybuf));
680 else
681 EMSG(_("E501: At end-of-file"));
685 #ifdef FEAT_GUI
686 --hold_gui_events;
687 #endif
688 --RedrawingDisabled;
689 --no_wait_return;
690 update_screen(CLEAR);
691 need_wait_return = FALSE;
692 msg_scroll = save_msg_scroll;
696 * Execute a simple command line. Used for translated commands like "*".
699 do_cmdline_cmd(cmd)
700 char_u *cmd;
702 return do_cmdline(cmd, NULL, NULL,
703 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
707 * do_cmdline(): execute one Ex command line
709 * 1. Execute "cmdline" when it is not NULL.
710 * If "cmdline" is NULL, or more lines are needed, getline() is used.
711 * 2. Split up in parts separated with '|'.
713 * This function can be called recursively!
715 * flags:
716 * DOCMD_VERBOSE - The command will be included in the error message.
717 * DOCMD_NOWAIT - Don't call wait_return() and friends.
718 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
719 * DOCMD_KEYTYPED - Don't reset KeyTyped.
720 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
721 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
723 * return FAIL if cmdline could not be executed, OK otherwise
726 do_cmdline(cmdline, getline, cookie, flags)
727 char_u *cmdline;
728 char_u *(*getline) __ARGS((int, void *, int));
729 void *cookie; /* argument for getline() */
730 int flags;
732 char_u *next_cmdline; /* next cmd to execute */
733 char_u *cmdline_copy = NULL; /* copy of cmd line */
734 int used_getline = FALSE; /* used "getline" to obtain command */
735 static int recursive = 0; /* recursive depth */
736 int msg_didout_before_start = 0;
737 int count = 0; /* line number count */
738 int did_inc = FALSE; /* incremented RedrawingDisabled */
739 int retval = OK;
740 #ifdef FEAT_EVAL
741 struct condstack cstack; /* conditional stack */
742 garray_T lines_ga; /* keep lines for ":while"/":for" */
743 int current_line = 0; /* active line in lines_ga */
744 char_u *fname = NULL; /* function or script name */
745 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
746 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
747 struct dbg_stuff debug_saved; /* saved things for debug mode */
748 int initial_trylevel;
749 struct msglist **saved_msg_list = NULL;
750 struct msglist *private_msg_list;
752 /* "getline" and "cookie" passed to do_one_cmd() */
753 char_u *(*cmd_getline) __ARGS((int, void *, int));
754 void *cmd_cookie;
755 struct loop_cookie cmd_loop_cookie;
756 void *real_cookie;
757 int getline_is_func;
758 #else
759 # define cmd_getline getline
760 # define cmd_cookie cookie
761 #endif
762 static int call_depth = 0; /* recursiveness */
764 #ifdef FEAT_EVAL
765 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
766 * location for storing error messages to be converted to an exception.
767 * This ensures that the do_errthrow() call in do_one_cmd() does not
768 * combine the messages stored by an earlier invocation of do_one_cmd()
769 * with the command name of the later one. This would happen when
770 * BufWritePost autocommands are executed after a write error. */
771 saved_msg_list = msg_list;
772 msg_list = &private_msg_list;
773 private_msg_list = NULL;
774 #endif
776 /* It's possible to create an endless loop with ":execute", catch that
777 * here. The value of 200 allows nested function calls, ":source", etc. */
778 if (call_depth == 200)
780 EMSG(_("E169: Command too recursive"));
781 #ifdef FEAT_EVAL
782 /* When converting to an exception, we do not include the command name
783 * since this is not an error of the specific command. */
784 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
785 msg_list = saved_msg_list;
786 #endif
787 return FAIL;
789 ++call_depth;
791 #ifdef FEAT_EVAL
792 cstack.cs_idx = -1;
793 cstack.cs_looplevel = 0;
794 cstack.cs_trylevel = 0;
795 cstack.cs_emsg_silent_list = NULL;
796 cstack.cs_lflags = 0;
797 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
799 real_cookie = getline_cookie(getline, cookie);
801 /* Inside a function use a higher nesting level. */
802 getline_is_func = getline_equal(getline, cookie, get_func_line);
803 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
804 ++ex_nesting_level;
806 /* Get the function or script name and the address where the next breakpoint
807 * line and the debug tick for a function or script are stored. */
808 if (getline_is_func)
810 fname = func_name(real_cookie);
811 breakpoint = func_breakpoint(real_cookie);
812 dbg_tick = func_dbg_tick(real_cookie);
814 else if (getline_equal(getline, cookie, getsourceline))
816 fname = sourcing_name;
817 breakpoint = source_breakpoint(real_cookie);
818 dbg_tick = source_dbg_tick(real_cookie);
822 * Initialize "force_abort" and "suppress_errthrow" at the top level.
824 if (!recursive)
826 force_abort = FALSE;
827 suppress_errthrow = FALSE;
831 * If requested, store and reset the global values controlling the
832 * exception handling (used when debugging). Otherwise clear it to avoid
833 * a bogus compiler warning when the optimizer uses inline functions...
835 if (flags & DOCMD_EXCRESET)
836 save_dbg_stuff(&debug_saved);
837 else
838 memset(&debug_saved, 0, 1);
840 initial_trylevel = trylevel;
843 * "did_throw" will be set to TRUE when an exception is being thrown.
845 did_throw = FALSE;
846 #endif
848 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
849 * cancel the whole command line, and any if/endif or loop.
850 * If force_abort is set, we cancel everything.
852 did_emsg = FALSE;
855 * KeyTyped is only set when calling vgetc(). Reset it here when not
856 * calling vgetc() (sourced command lines).
858 if (!(flags & DOCMD_KEYTYPED) && !getline_equal(getline, cookie, getexline))
859 KeyTyped = FALSE;
862 * Continue executing command lines:
863 * - when inside an ":if", ":while" or ":for"
864 * - for multiple commands on one line, separated with '|'
865 * - when repeating until there are no more lines (for ":source")
867 next_cmdline = cmdline;
870 #ifdef FEAT_EVAL
871 getline_is_func = getline_equal(getline, cookie, get_func_line);
872 #endif
874 /* stop skipping cmds for an error msg after all endif/while/for */
875 if (next_cmdline == NULL
876 #ifdef FEAT_EVAL
877 && !force_abort
878 && cstack.cs_idx < 0
879 && !(getline_is_func && func_has_abort(real_cookie))
880 #endif
882 did_emsg = FALSE;
885 * 1. If repeating a line in a loop, get a line from lines_ga.
886 * 2. If no line given: Get an allocated line with getline().
887 * 3. If a line is given: Make a copy, so we can mess with it.
890 #ifdef FEAT_EVAL
891 /* 1. If repeating, get a previous line from lines_ga. */
892 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
894 /* Each '|' separated command is stored separately in lines_ga, to
895 * be able to jump to it. Don't use next_cmdline now. */
896 vim_free(cmdline_copy);
897 cmdline_copy = NULL;
899 /* Check if a function has returned or, unless it has an unclosed
900 * try conditional, aborted. */
901 if (getline_is_func)
903 # ifdef FEAT_PROFILE
904 if (do_profiling == PROF_YES)
905 func_line_end(real_cookie);
906 # endif
907 if (func_has_ended(real_cookie))
909 retval = FAIL;
910 break;
913 #ifdef FEAT_PROFILE
914 else if (do_profiling == PROF_YES
915 && getline_equal(getline, cookie, getsourceline))
916 script_line_end();
917 #endif
919 /* Check if a sourced file hit a ":finish" command. */
920 if (source_finished(getline, cookie))
922 retval = FAIL;
923 break;
926 /* If breakpoints have been added/deleted need to check for it. */
927 if (breakpoint != NULL && dbg_tick != NULL
928 && *dbg_tick != debug_tick)
930 *breakpoint = dbg_find_breakpoint(
931 getline_equal(getline, cookie, getsourceline),
932 fname, sourcing_lnum);
933 *dbg_tick = debug_tick;
936 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
937 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
939 /* Did we encounter a breakpoint? */
940 if (breakpoint != NULL && *breakpoint != 0
941 && *breakpoint <= sourcing_lnum)
943 dbg_breakpoint(fname, sourcing_lnum);
944 /* Find next breakpoint. */
945 *breakpoint = dbg_find_breakpoint(
946 getline_equal(getline, cookie, getsourceline),
947 fname, sourcing_lnum);
948 *dbg_tick = debug_tick;
950 # ifdef FEAT_PROFILE
951 if (do_profiling == PROF_YES)
953 if (getline_is_func)
954 func_line_start(real_cookie);
955 else if (getline_equal(getline, cookie, getsourceline))
956 script_line_start();
958 # endif
961 if (cstack.cs_looplevel > 0)
963 /* Inside a while/for loop we need to store the lines and use them
964 * again. Pass a different "getline" function to do_one_cmd()
965 * below, so that it stores lines in or reads them from
966 * "lines_ga". Makes it possible to define a function inside a
967 * while/for loop. */
968 cmd_getline = get_loop_line;
969 cmd_cookie = (void *)&cmd_loop_cookie;
970 cmd_loop_cookie.lines_gap = &lines_ga;
971 cmd_loop_cookie.current_line = current_line;
972 cmd_loop_cookie.getline = getline;
973 cmd_loop_cookie.cookie = cookie;
974 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
976 else
978 cmd_getline = getline;
979 cmd_cookie = cookie;
981 #endif
983 /* 2. If no line given, get an allocated line with getline(). */
984 if (next_cmdline == NULL)
987 * Need to set msg_didout for the first line after an ":if",
988 * otherwise the ":if" will be overwritten.
990 if (count == 1 && getline_equal(getline, cookie, getexline))
991 msg_didout = TRUE;
992 if (getline == NULL || (next_cmdline = getline(':', cookie,
993 #ifdef FEAT_EVAL
994 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
995 #else
997 #endif
998 )) == NULL)
1000 /* Don't call wait_return for aborted command line. The NULL
1001 * returned for the end of a sourced file or executed function
1002 * doesn't do this. */
1003 if (KeyTyped && !(flags & DOCMD_REPEAT))
1004 need_wait_return = FALSE;
1005 retval = FAIL;
1006 break;
1008 used_getline = TRUE;
1011 * Keep the first typed line. Clear it when more lines are typed.
1013 if (flags & DOCMD_KEEPLINE)
1015 vim_free(repeat_cmdline);
1016 if (count == 0)
1017 repeat_cmdline = vim_strsave(next_cmdline);
1018 else
1019 repeat_cmdline = NULL;
1023 /* 3. Make a copy of the command so we can mess with it. */
1024 else if (cmdline_copy == NULL)
1026 next_cmdline = vim_strsave(next_cmdline);
1027 if (next_cmdline == NULL)
1029 EMSG(_(e_outofmem));
1030 retval = FAIL;
1031 break;
1034 cmdline_copy = next_cmdline;
1036 #ifdef FEAT_EVAL
1038 * Save the current line when inside a ":while" or ":for", and when
1039 * the command looks like a ":while" or ":for", because we may need it
1040 * later. When there is a '|' and another command, it is stored
1041 * separately, because we need to be able to jump back to it from an
1042 * :endwhile/:endfor.
1044 if (current_line == lines_ga.ga_len
1045 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
1047 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
1049 retval = FAIL;
1050 break;
1053 did_endif = FALSE;
1054 #endif
1056 if (count++ == 0)
1059 * All output from the commands is put below each other, without
1060 * waiting for a return. Don't do this when executing commands
1061 * from a script or when being called recursive (e.g. for ":e
1062 * +command file").
1064 if (!(flags & DOCMD_NOWAIT) && !recursive)
1066 msg_didout_before_start = msg_didout;
1067 msg_didany = FALSE; /* no output yet */
1068 msg_start();
1069 msg_scroll = TRUE; /* put messages below each other */
1070 ++no_wait_return; /* dont wait for return until finished */
1071 ++RedrawingDisabled;
1072 did_inc = TRUE;
1076 if (p_verbose >= 15 && sourcing_name != NULL)
1078 ++no_wait_return;
1079 verbose_enter_scroll();
1081 smsg((char_u *)_("line %ld: %s"),
1082 (long)sourcing_lnum, cmdline_copy);
1083 if (msg_silent == 0)
1084 msg_puts((char_u *)"\n"); /* don't overwrite this */
1086 verbose_leave_scroll();
1087 --no_wait_return;
1091 * 2. Execute one '|' separated command.
1092 * do_one_cmd() will return NULL if there is no trailing '|'.
1093 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1095 ++recursive;
1096 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1097 #ifdef FEAT_EVAL
1098 &cstack,
1099 #endif
1100 cmd_getline, cmd_cookie);
1101 --recursive;
1103 #ifdef FEAT_EVAL
1104 if (cmd_cookie == (void *)&cmd_loop_cookie)
1105 /* Use "current_line" from "cmd_loop_cookie", it may have been
1106 * incremented when defining a function. */
1107 current_line = cmd_loop_cookie.current_line;
1108 #endif
1110 if (next_cmdline == NULL)
1112 vim_free(cmdline_copy);
1113 cmdline_copy = NULL;
1114 #ifdef FEAT_CMDHIST
1116 * If the command was typed, remember it for the ':' register.
1117 * Do this AFTER executing the command to make :@: work.
1119 if (getline_equal(getline, cookie, getexline)
1120 && new_last_cmdline != NULL)
1122 vim_free(last_cmdline);
1123 last_cmdline = new_last_cmdline;
1124 new_last_cmdline = NULL;
1126 #endif
1128 else
1130 /* need to copy the command after the '|' to cmdline_copy, for the
1131 * next do_one_cmd() */
1132 STRMOVE(cmdline_copy, next_cmdline);
1133 next_cmdline = cmdline_copy;
1137 #ifdef FEAT_EVAL
1138 /* reset did_emsg for a function that is not aborted by an error */
1139 if (did_emsg && !force_abort
1140 && getline_equal(getline, cookie, get_func_line)
1141 && !func_has_abort(real_cookie))
1142 did_emsg = FALSE;
1144 if (cstack.cs_looplevel > 0)
1146 ++current_line;
1149 * An ":endwhile", ":endfor" and ":continue" is handled here.
1150 * If we were executing commands, jump back to the ":while" or
1151 * ":for".
1152 * If we were not executing commands, decrement cs_looplevel.
1154 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
1156 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
1158 /* Jump back to the matching ":while" or ":for". Be careful
1159 * not to use a cs_line[] from an entry that isn't a ":while"
1160 * or ":for": It would make "current_line" invalid and can
1161 * cause a crash. */
1162 if (!did_emsg && !got_int && !did_throw
1163 && cstack.cs_idx >= 0
1164 && (cstack.cs_flags[cstack.cs_idx]
1165 & (CSF_WHILE | CSF_FOR))
1166 && cstack.cs_line[cstack.cs_idx] >= 0
1167 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1169 current_line = cstack.cs_line[cstack.cs_idx];
1170 /* remember we jumped there */
1171 cstack.cs_lflags |= CSL_HAD_LOOP;
1172 line_breakcheck(); /* check if CTRL-C typed */
1174 /* Check for the next breakpoint at or after the ":while"
1175 * or ":for". */
1176 if (breakpoint != NULL)
1178 *breakpoint = dbg_find_breakpoint(
1179 getline_equal(getline, cookie, getsourceline),
1180 fname,
1181 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1182 *dbg_tick = debug_tick;
1185 else
1187 /* can only get here with ":endwhile" or ":endfor" */
1188 if (cstack.cs_idx >= 0)
1189 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1190 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
1195 * For a ":while" or ":for" we need to remember the line number.
1197 else if (cstack.cs_lflags & CSL_HAD_LOOP)
1199 cstack.cs_lflags &= ~CSL_HAD_LOOP;
1200 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1205 * When not inside any ":while" loop, clear remembered lines.
1207 if (cstack.cs_looplevel == 0)
1209 if (lines_ga.ga_len > 0)
1211 sourcing_lnum =
1212 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1213 free_cmdlines(&lines_ga);
1215 current_line = 0;
1219 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1220 * being restored at the ":endtry". Reset them here and set the
1221 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1222 * This includes the case where a missing ":endif", ":endwhile" or
1223 * ":endfor" was detected by the ":finally" itself.
1225 if (cstack.cs_lflags & CSL_HAD_FINA)
1227 cstack.cs_lflags &= ~CSL_HAD_FINA;
1228 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1229 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
1230 did_throw ? (void *)current_exception : NULL);
1231 did_emsg = got_int = did_throw = FALSE;
1232 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1235 /* Update global "trylevel" for recursive calls to do_cmdline() from
1236 * within this loop. */
1237 trylevel = initial_trylevel + cstack.cs_trylevel;
1240 * If the outermost try conditional (across function calls and sourced
1241 * files) is aborted because of an error, an interrupt, or an uncaught
1242 * exception, cancel everything. If it is left normally, reset
1243 * force_abort to get the non-EH compatible abortion behavior for
1244 * the rest of the script.
1246 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1247 force_abort = FALSE;
1249 /* Convert an interrupt to an exception if appropriate. */
1250 (void)do_intthrow(&cstack);
1251 #endif /* FEAT_EVAL */
1255 * Continue executing command lines when:
1256 * - no CTRL-C typed, no aborting error, no exception thrown or try
1257 * conditionals need to be checked for executing finally clauses or
1258 * catching an interrupt exception
1259 * - didn't get an error message or lines are not typed
1260 * - there is a command after '|', inside a :if, :while, :for or :try, or
1261 * looping for ":source" command or function call.
1263 while (!((got_int
1264 #ifdef FEAT_EVAL
1265 || (did_emsg && force_abort) || did_throw
1266 #endif
1268 #ifdef FEAT_EVAL
1269 && cstack.cs_trylevel == 0
1270 #endif
1272 && !(did_emsg && used_getline
1273 && (getline_equal(getline, cookie, getexmodeline)
1274 || getline_equal(getline, cookie, getexline)))
1275 && (next_cmdline != NULL
1276 #ifdef FEAT_EVAL
1277 || cstack.cs_idx >= 0
1278 #endif
1279 || (flags & DOCMD_REPEAT)));
1281 vim_free(cmdline_copy);
1282 #ifdef FEAT_EVAL
1283 free_cmdlines(&lines_ga);
1284 ga_clear(&lines_ga);
1286 if (cstack.cs_idx >= 0)
1289 * If a sourced file or executed function ran to its end, report the
1290 * unclosed conditional.
1292 if (!got_int && !did_throw
1293 && ((getline_equal(getline, cookie, getsourceline)
1294 && !source_finished(getline, cookie))
1295 || (getline_equal(getline, cookie, get_func_line)
1296 && !func_has_ended(real_cookie))))
1298 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1299 EMSG(_(e_endtry));
1300 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1301 EMSG(_(e_endwhile));
1302 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1303 EMSG(_(e_endfor));
1304 else
1305 EMSG(_(e_endif));
1309 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1310 * ":endtry" in a sourced file or executed function. If the try
1311 * conditional is in its finally clause, ignore anything pending.
1312 * If it is in a catch clause, finish the caught exception.
1313 * Also cleanup any "cs_forinfo" structures.
1317 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1319 if (idx >= 0)
1320 --idx; /* remove try block not in its finally clause */
1321 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1322 &cstack.cs_looplevel);
1324 while (cstack.cs_idx >= 0);
1325 trylevel = initial_trylevel;
1328 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1329 * lack was reported above and the error message is to be converted to an
1330 * exception, do this now after rewinding the cstack. */
1331 do_errthrow(&cstack, getline_equal(getline, cookie, get_func_line)
1332 ? (char_u *)"endfunction" : (char_u *)NULL);
1334 if (trylevel == 0)
1337 * When an exception is being thrown out of the outermost try
1338 * conditional, discard the uncaught exception, disable the conversion
1339 * of interrupts or errors to exceptions, and ensure that no more
1340 * commands are executed.
1342 if (did_throw)
1344 void *p = NULL;
1345 char_u *saved_sourcing_name;
1346 int saved_sourcing_lnum;
1347 struct msglist *messages = NULL, *next;
1350 * If the uncaught exception is a user exception, report it as an
1351 * error. If it is an error exception, display the saved error
1352 * message now. For an interrupt exception, do nothing; the
1353 * interrupt message is given elsewhere.
1355 switch (current_exception->type)
1357 case ET_USER:
1358 vim_snprintf((char *)IObuff, IOSIZE,
1359 _("E605: Exception not caught: %s"),
1360 current_exception->value);
1361 p = vim_strsave(IObuff);
1362 break;
1363 case ET_ERROR:
1364 messages = current_exception->messages;
1365 current_exception->messages = NULL;
1366 break;
1367 case ET_INTERRUPT:
1368 break;
1369 default:
1370 p = vim_strsave((char_u *)_(e_internal));
1373 saved_sourcing_name = sourcing_name;
1374 saved_sourcing_lnum = sourcing_lnum;
1375 sourcing_name = current_exception->throw_name;
1376 sourcing_lnum = current_exception->throw_lnum;
1377 current_exception->throw_name = NULL;
1379 discard_current_exception(); /* uses IObuff if 'verbose' */
1380 suppress_errthrow = TRUE;
1381 force_abort = TRUE;
1383 if (messages != NULL)
1387 next = messages->next;
1388 emsg(messages->msg);
1389 vim_free(messages->msg);
1390 vim_free(messages);
1391 messages = next;
1393 while (messages != NULL);
1395 else if (p != NULL)
1397 emsg(p);
1398 vim_free(p);
1400 vim_free(sourcing_name);
1401 sourcing_name = saved_sourcing_name;
1402 sourcing_lnum = saved_sourcing_lnum;
1406 * On an interrupt or an aborting error not converted to an exception,
1407 * disable the conversion of errors to exceptions. (Interrupts are not
1408 * converted any more, here.) This enables also the interrupt message
1409 * when force_abort is set and did_emsg unset in case of an interrupt
1410 * from a finally clause after an error.
1412 else if (got_int || (did_emsg && force_abort))
1413 suppress_errthrow = TRUE;
1417 * The current cstack will be freed when do_cmdline() returns. An uncaught
1418 * exception will have to be rethrown in the previous cstack. If a function
1419 * has just returned or a script file was just finished and the previous
1420 * cstack belongs to the same function or, respectively, script file, it
1421 * will have to be checked for finally clauses to be executed due to the
1422 * ":return" or ":finish". This is done in do_one_cmd().
1424 if (did_throw)
1425 need_rethrow = TRUE;
1426 if ((getline_equal(getline, cookie, getsourceline)
1427 && ex_nesting_level > source_level(real_cookie))
1428 || (getline_equal(getline, cookie, get_func_line)
1429 && ex_nesting_level > func_level(real_cookie) + 1))
1431 if (!did_throw)
1432 check_cstack = TRUE;
1434 else
1436 /* When leaving a function, reduce nesting level. */
1437 if (getline_equal(getline, cookie, get_func_line))
1438 --ex_nesting_level;
1440 * Go to debug mode when returning from a function in which we are
1441 * single-stepping.
1443 if ((getline_equal(getline, cookie, getsourceline)
1444 || getline_equal(getline, cookie, get_func_line))
1445 && ex_nesting_level + 1 <= debug_break_level)
1446 do_debug(getline_equal(getline, cookie, getsourceline)
1447 ? (char_u *)_("End of sourced file")
1448 : (char_u *)_("End of function"));
1452 * Restore the exception environment (done after returning from the
1453 * debugger).
1455 if (flags & DOCMD_EXCRESET)
1456 restore_dbg_stuff(&debug_saved);
1458 msg_list = saved_msg_list;
1459 #endif /* FEAT_EVAL */
1462 * If there was too much output to fit on the command line, ask the user to
1463 * hit return before redrawing the screen. With the ":global" command we do
1464 * this only once after the command is finished.
1466 if (did_inc)
1468 --RedrawingDisabled;
1469 --no_wait_return;
1470 msg_scroll = FALSE;
1473 * When just finished an ":if"-":else" which was typed, no need to
1474 * wait for hit-return. Also for an error situation.
1476 if (retval == FAIL
1477 #ifdef FEAT_EVAL
1478 || (did_endif && KeyTyped && !did_emsg)
1479 #endif
1482 need_wait_return = FALSE;
1483 msg_didany = FALSE; /* don't wait when restarting edit */
1485 else if (need_wait_return)
1488 * The msg_start() above clears msg_didout. The wait_return we do
1489 * here should not overwrite the command that may be shown before
1490 * doing that.
1492 msg_didout |= msg_didout_before_start;
1493 wait_return(FALSE);
1497 #ifndef FEAT_EVAL
1499 * Reset if_level, in case a sourced script file contains more ":if" than
1500 * ":endif" (could be ":if x | foo | endif").
1502 if_level = 0;
1503 #endif
1505 --call_depth;
1506 return retval;
1509 #ifdef FEAT_EVAL
1511 * Obtain a line when inside a ":while" or ":for" loop.
1513 static char_u *
1514 get_loop_line(c, cookie, indent)
1515 int c;
1516 void *cookie;
1517 int indent;
1519 struct loop_cookie *cp = (struct loop_cookie *)cookie;
1520 wcmd_T *wp;
1521 char_u *line;
1523 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1525 if (cp->repeating)
1526 return NULL; /* trying to read past ":endwhile"/":endfor" */
1528 /* First time inside the ":while"/":for": get line normally. */
1529 if (cp->getline == NULL)
1530 line = getcmdline(c, 0L, indent);
1531 else
1532 line = cp->getline(c, cp->cookie, indent);
1533 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
1534 ++cp->current_line;
1536 return line;
1539 KeyTyped = FALSE;
1540 ++cp->current_line;
1541 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1542 sourcing_lnum = wp->lnum;
1543 return vim_strsave(wp->line);
1547 * Store a line in "gap" so that a ":while" loop can execute it again.
1549 static int
1550 store_loop_line(gap, line)
1551 garray_T *gap;
1552 char_u *line;
1554 if (ga_grow(gap, 1) == FAIL)
1555 return FAIL;
1556 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1557 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1558 ++gap->ga_len;
1559 return OK;
1563 * Free the lines stored for a ":while" or ":for" loop.
1565 static void
1566 free_cmdlines(gap)
1567 garray_T *gap;
1569 while (gap->ga_len > 0)
1571 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1572 --gap->ga_len;
1575 #endif
1578 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1579 * "func". * Otherwise return TRUE when "fgetline" equals "func".
1582 getline_equal(fgetline, cookie, func)
1583 char_u *(*fgetline) __ARGS((int, void *, int));
1584 void *cookie UNUSED; /* argument for fgetline() */
1585 char_u *(*func) __ARGS((int, void *, int));
1587 #ifdef FEAT_EVAL
1588 char_u *(*gp) __ARGS((int, void *, int));
1589 struct loop_cookie *cp;
1591 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1592 * function that's originally used to obtain the lines. This may be
1593 * nested several levels. */
1594 gp = fgetline;
1595 cp = (struct loop_cookie *)cookie;
1596 while (gp == get_loop_line)
1598 gp = cp->getline;
1599 cp = cp->cookie;
1601 return gp == func;
1602 #else
1603 return fgetline == func;
1604 #endif
1607 #if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1609 * If "fgetline" is get_loop_line(), return the cookie used by the original
1610 * getline function. Otherwise return "cookie".
1612 void *
1613 getline_cookie(fgetline, cookie)
1614 char_u *(*fgetline) __ARGS((int, void *, int)) UNUSED;
1615 void *cookie; /* argument for fgetline() */
1617 # ifdef FEAT_EVAL
1618 char_u *(*gp) __ARGS((int, void *, int));
1619 struct loop_cookie *cp;
1621 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1622 * cookie that's originally used to obtain the lines. This may be nested
1623 * several levels. */
1624 gp = fgetline;
1625 cp = (struct loop_cookie *)cookie;
1626 while (gp == get_loop_line)
1628 gp = cp->getline;
1629 cp = cp->cookie;
1631 return cp;
1632 # else
1633 return cookie;
1634 # endif
1636 #endif
1639 * Execute one Ex command.
1641 * If 'sourcing' is TRUE, the command will be included in the error message.
1643 * 1. skip comment lines and leading space
1644 * 2. handle command modifiers
1645 * 3. parse range
1646 * 4. parse command
1647 * 5. parse arguments
1648 * 6. switch on command name
1650 * Note: "fgetline" can be NULL.
1652 * This function may be called recursively!
1654 #if (_MSC_VER == 1200)
1656 * Avoid optimisation bug in VC++ version 6.0
1658 #pragma optimize( "g", off )
1659 #endif
1660 static char_u *
1661 do_one_cmd(cmdlinep, sourcing,
1662 #ifdef FEAT_EVAL
1663 cstack,
1664 #endif
1665 fgetline, cookie)
1666 char_u **cmdlinep;
1667 int sourcing;
1668 #ifdef FEAT_EVAL
1669 struct condstack *cstack;
1670 #endif
1671 char_u *(*fgetline) __ARGS((int, void *, int));
1672 void *cookie; /* argument for fgetline() */
1674 char_u *p;
1675 linenr_T lnum;
1676 long n;
1677 char_u *errormsg = NULL; /* error message */
1678 exarg_T ea; /* Ex command arguments */
1679 long verbose_save = -1;
1680 int save_msg_scroll = msg_scroll;
1681 int save_msg_silent = -1;
1682 int did_esilent = 0;
1683 #ifdef HAVE_SANDBOX
1684 int did_sandbox = FALSE;
1685 #endif
1686 cmdmod_T save_cmdmod;
1687 int ni; /* set when Not Implemented */
1689 vim_memset(&ea, 0, sizeof(ea));
1690 ea.line1 = 1;
1691 ea.line2 = 1;
1692 #ifdef FEAT_EVAL
1693 ++ex_nesting_level;
1694 #endif
1696 /* when not editing the last file :q has to be typed twice */
1697 if (quitmore
1698 #ifdef FEAT_EVAL
1699 /* avoid that a function call in 'statusline' does this */
1700 && !getline_equal(fgetline, cookie, get_func_line)
1701 #endif
1703 --quitmore;
1706 * Reset browse, confirm, etc.. They are restored when returning, for
1707 * recursive calls.
1709 save_cmdmod = cmdmod;
1710 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1712 /* "#!anything" is handled like a comment. */
1713 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1714 goto doend;
1717 * Repeat until no more command modifiers are found.
1719 ea.cmd = *cmdlinep;
1720 for (;;)
1723 * 1. skip comment lines and leading white space and colons
1725 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1726 ++ea.cmd;
1728 /* in ex mode, an empty line works like :+ */
1729 if (*ea.cmd == NUL && exmode_active
1730 && (getline_equal(fgetline, cookie, getexmodeline)
1731 || getline_equal(fgetline, cookie, getexline))
1732 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
1734 ea.cmd = (char_u *)"+";
1735 ex_pressedreturn = TRUE;
1738 /* ignore comment and empty lines */
1739 if (*ea.cmd == '"')
1740 goto doend;
1741 if (*ea.cmd == NUL)
1743 ex_pressedreturn = TRUE;
1744 goto doend;
1748 * 2. handle command modifiers.
1750 p = ea.cmd;
1751 if (VIM_ISDIGIT(*ea.cmd))
1752 p = skipwhite(skipdigits(ea.cmd));
1753 switch (*p)
1755 /* When adding an entry, also modify cmd_exists(). */
1756 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1757 break;
1758 #ifdef FEAT_WINDOWS
1759 cmdmod.split |= WSP_ABOVE;
1760 #endif
1761 continue;
1763 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1765 #ifdef FEAT_WINDOWS
1766 cmdmod.split |= WSP_BELOW;
1767 #endif
1768 continue;
1770 if (checkforcmd(&ea.cmd, "browse", 3))
1772 #ifdef FEAT_BROWSE_CMD
1773 cmdmod.browse = TRUE;
1774 #endif
1775 continue;
1777 if (!checkforcmd(&ea.cmd, "botright", 2))
1778 break;
1779 #ifdef FEAT_WINDOWS
1780 cmdmod.split |= WSP_BOT;
1781 #endif
1782 continue;
1784 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1785 break;
1786 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1787 cmdmod.confirm = TRUE;
1788 #endif
1789 continue;
1791 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1793 cmdmod.keepmarks = TRUE;
1794 continue;
1796 if (checkforcmd(&ea.cmd, "keepalt", 5))
1798 cmdmod.keepalt = TRUE;
1799 continue;
1801 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1802 break;
1803 cmdmod.keepjumps = TRUE;
1804 continue;
1806 /* ":hide" and ":hide | cmd" are not modifiers */
1807 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1808 || *p == NUL || ends_excmd(*p))
1809 break;
1810 ea.cmd = p;
1811 cmdmod.hide = TRUE;
1812 continue;
1814 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1816 cmdmod.lockmarks = TRUE;
1817 continue;
1820 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1821 break;
1822 #ifdef FEAT_WINDOWS
1823 cmdmod.split |= WSP_ABOVE;
1824 #endif
1825 continue;
1827 case 'n': if (!checkforcmd(&ea.cmd, "noautocmd", 3))
1828 break;
1829 #ifdef FEAT_AUTOCMD
1830 if (cmdmod.save_ei == NULL)
1832 /* Set 'eventignore' to "all". Restore the
1833 * existing option value later. */
1834 cmdmod.save_ei = vim_strsave(p_ei);
1835 set_string_option_direct((char_u *)"ei", -1,
1836 (char_u *)"all", OPT_FREE, SID_NONE);
1838 #endif
1839 continue;
1841 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
1842 break;
1843 #ifdef FEAT_WINDOWS
1844 cmdmod.split |= WSP_BELOW;
1845 #endif
1846 continue;
1848 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
1850 #ifdef HAVE_SANDBOX
1851 if (!did_sandbox)
1852 ++sandbox;
1853 did_sandbox = TRUE;
1854 #endif
1855 continue;
1857 if (!checkforcmd(&ea.cmd, "silent", 3))
1858 break;
1859 if (save_msg_silent == -1)
1860 save_msg_silent = msg_silent;
1861 ++msg_silent;
1862 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
1864 /* ":silent!", but not "silent !cmd" */
1865 ea.cmd = skipwhite(ea.cmd + 1);
1866 ++emsg_silent;
1867 ++did_esilent;
1869 continue;
1871 case 't': if (checkforcmd(&p, "tab", 3))
1873 #ifdef FEAT_WINDOWS
1874 if (vim_isdigit(*ea.cmd))
1875 cmdmod.tab = atoi((char *)ea.cmd) + 1;
1876 else
1877 cmdmod.tab = tabpage_index(curtab) + 1;
1878 ea.cmd = p;
1879 #endif
1880 continue;
1882 if (!checkforcmd(&ea.cmd, "topleft", 2))
1883 break;
1884 #ifdef FEAT_WINDOWS
1885 cmdmod.split |= WSP_TOP;
1886 #endif
1887 continue;
1889 case 'u': if (!checkforcmd(&ea.cmd, "unsilent", 3))
1890 break;
1891 if (save_msg_silent == -1)
1892 save_msg_silent = msg_silent;
1893 msg_silent = 0;
1894 continue;
1896 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
1898 #ifdef FEAT_VERTSPLIT
1899 cmdmod.split |= WSP_VERT;
1900 #endif
1901 continue;
1903 if (!checkforcmd(&p, "verbose", 4))
1904 break;
1905 if (verbose_save < 0)
1906 verbose_save = p_verbose;
1907 if (vim_isdigit(*ea.cmd))
1908 p_verbose = atoi((char *)ea.cmd);
1909 else
1910 p_verbose = 1;
1911 ea.cmd = p;
1912 continue;
1914 break;
1917 #ifdef FEAT_EVAL
1918 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1919 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1920 #else
1921 ea.skip = (if_level > 0);
1922 #endif
1924 #ifdef FEAT_EVAL
1925 # ifdef FEAT_PROFILE
1926 /* Count this line for profiling if ea.skip is FALSE. */
1927 if (do_profiling == PROF_YES && !ea.skip)
1929 if (getline_equal(fgetline, cookie, get_func_line))
1930 func_line_exec(getline_cookie(fgetline, cookie));
1931 else if (getline_equal(fgetline, cookie, getsourceline))
1932 script_line_exec();
1934 #endif
1936 /* May go to debug mode. If this happens and the ">quit" debug command is
1937 * used, throw an interrupt exception and skip the next command. */
1938 dbg_check_breakpoint(&ea);
1939 if (!ea.skip && got_int)
1941 ea.skip = TRUE;
1942 (void)do_intthrow(cstack);
1944 #endif
1947 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1949 * where 'addr' is:
1951 * % (entire file)
1952 * $ [+-NUM]
1953 * 'x [+-NUM] (where x denotes a currently defined mark)
1954 * . [+-NUM]
1955 * [+-NUM]..
1956 * NUM
1958 * The ea.cmd pointer is updated to point to the first character following the
1959 * range spec. If an initial address is found, but no second, the upper bound
1960 * is equal to the lower.
1963 /* repeat for all ',' or ';' separated addresses */
1964 for (;;)
1966 ea.line1 = ea.line2;
1967 ea.line2 = curwin->w_cursor.lnum; /* default is current line number */
1968 ea.cmd = skipwhite(ea.cmd);
1969 lnum = get_address(&ea.cmd, ea.skip, ea.addr_count == 0);
1970 if (ea.cmd == NULL) /* error detected */
1971 goto doend;
1972 if (lnum == MAXLNUM)
1974 if (*ea.cmd == '%') /* '%' - all lines */
1976 ++ea.cmd;
1977 ea.line1 = 1;
1978 ea.line2 = curbuf->b_ml.ml_line_count;
1979 ++ea.addr_count;
1981 /* '*' - visual area */
1982 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1984 pos_T *fp;
1986 ++ea.cmd;
1987 if (!ea.skip)
1989 fp = getmark('<', FALSE);
1990 if (check_mark(fp) == FAIL)
1991 goto doend;
1992 ea.line1 = fp->lnum;
1993 fp = getmark('>', FALSE);
1994 if (check_mark(fp) == FAIL)
1995 goto doend;
1996 ea.line2 = fp->lnum;
1997 ++ea.addr_count;
2001 else
2002 ea.line2 = lnum;
2003 ea.addr_count++;
2005 if (*ea.cmd == ';')
2007 if (!ea.skip)
2008 curwin->w_cursor.lnum = ea.line2;
2010 else if (*ea.cmd != ',')
2011 break;
2012 ++ea.cmd;
2015 /* One address given: set start and end lines */
2016 if (ea.addr_count == 1)
2018 ea.line1 = ea.line2;
2019 /* ... but only implicit: really no address given */
2020 if (lnum == MAXLNUM)
2021 ea.addr_count = 0;
2024 /* Don't leave the cursor on an illegal line (caused by ';') */
2025 check_cursor_lnum();
2028 * 4. parse command
2032 * Skip ':' and any white space
2034 ea.cmd = skipwhite(ea.cmd);
2035 while (*ea.cmd == ':')
2036 ea.cmd = skipwhite(ea.cmd + 1);
2039 * If we got a line, but no command, then go to the line.
2040 * If we find a '|' or '\n' we set ea.nextcmd.
2042 if (*ea.cmd == NUL || *ea.cmd == '"' ||
2043 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2046 * strange vi behaviour:
2047 * ":3" jumps to line 3
2048 * ":3|..." prints line 3
2049 * ":|" prints current line
2051 if (ea.skip) /* skip this if inside :if */
2052 goto doend;
2053 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
2055 ea.cmdidx = CMD_print;
2056 ea.argt = RANGE+COUNT+TRLBAR;
2057 if ((errormsg = invalid_range(&ea)) == NULL)
2059 correct_range(&ea);
2060 ex_print(&ea);
2063 else if (ea.addr_count != 0)
2065 if (ea.line2 > curbuf->b_ml.ml_line_count)
2067 /* With '-' in 'cpoptions' a line number past the file is an
2068 * error, otherwise put it at the end of the file. */
2069 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2070 ea.line2 = -1;
2071 else
2072 ea.line2 = curbuf->b_ml.ml_line_count;
2075 if (ea.line2 < 0)
2076 errormsg = (char_u *)_(e_invrange);
2077 else
2079 if (ea.line2 == 0)
2080 curwin->w_cursor.lnum = 1;
2081 else
2082 curwin->w_cursor.lnum = ea.line2;
2083 beginline(BL_SOL | BL_FIX);
2086 goto doend;
2089 /* Find the command and let "p" point to after it. */
2090 p = find_command(&ea, NULL);
2092 #ifdef FEAT_USR_CMDS
2093 if (p == NULL)
2095 if (!ea.skip)
2096 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2097 goto doend;
2099 /* Check for wrong commands. */
2100 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2102 errormsg = uc_fun_cmd();
2103 goto doend;
2105 #endif
2106 if (ea.cmdidx == CMD_SIZE)
2108 if (!ea.skip)
2110 STRCPY(IObuff, _("E492: Not an editor command"));
2111 if (!sourcing)
2113 STRCAT(IObuff, ": ");
2114 STRNCAT(IObuff, *cmdlinep, 40);
2116 errormsg = IObuff;
2118 goto doend;
2121 ni = (
2122 #ifdef FEAT_USR_CMDS
2123 !USER_CMDIDX(ea.cmdidx) &&
2124 #endif
2125 (cmdnames[ea.cmdidx].cmd_func == ex_ni
2126 #ifdef HAVE_EX_SCRIPT_NI
2127 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2128 #endif
2131 #ifndef FEAT_EVAL
2133 * When the expression evaluation is disabled, recognize the ":if" and
2134 * ":endif" commands and ignore everything in between it.
2136 if (ea.cmdidx == CMD_if)
2137 ++if_level;
2138 if (if_level)
2140 if (ea.cmdidx == CMD_endif)
2141 --if_level;
2142 goto doend;
2145 #endif
2147 /* forced commands */
2148 if (*p == '!' && ea.cmdidx != CMD_substitute
2149 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
2151 ++p;
2152 ea.forceit = TRUE;
2154 else
2155 ea.forceit = FALSE;
2158 * 5. parse arguments
2160 #ifdef FEAT_USR_CMDS
2161 if (!USER_CMDIDX(ea.cmdidx))
2162 #endif
2163 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
2165 if (!ea.skip)
2167 #ifdef HAVE_SANDBOX
2168 if (sandbox != 0 && !(ea.argt & SBOXOK))
2170 /* Command not allowed in sandbox. */
2171 errormsg = (char_u *)_(e_sandbox);
2172 goto doend;
2174 #endif
2175 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2177 /* Command not allowed in non-'modifiable' buffer */
2178 errormsg = (char_u *)_(e_modifiable);
2179 goto doend;
2182 if (text_locked() && !(ea.argt & CMDWIN)
2183 # ifdef FEAT_USR_CMDS
2184 && !USER_CMDIDX(ea.cmdidx)
2185 # endif
2188 /* Command not allowed when editing the command line. */
2189 #ifdef FEAT_CMDWIN
2190 if (cmdwin_type != 0)
2191 errormsg = (char_u *)_(e_cmdwin);
2192 else
2193 #endif
2194 errormsg = (char_u *)_(e_secure);
2195 goto doend;
2197 #ifdef FEAT_AUTOCMD
2198 /* Disallow editing another buffer when "curbuf_lock" is set.
2199 * Do allow ":edit" (check for argument later).
2200 * Do allow ":checktime" (it's postponed). */
2201 if (!(ea.argt & CMDWIN)
2202 && ea.cmdidx != CMD_edit
2203 && ea.cmdidx != CMD_checktime
2204 # ifdef FEAT_USR_CMDS
2205 && !USER_CMDIDX(ea.cmdidx)
2206 # endif
2207 && curbuf_locked())
2208 goto doend;
2209 #endif
2211 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2213 /* no range allowed */
2214 errormsg = (char_u *)_(e_norange);
2215 goto doend;
2219 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2221 errormsg = (char_u *)_(e_nobang);
2222 goto doend;
2226 * Don't complain about the range if it is not used
2227 * (could happen if line_count is accidentally set to 0).
2229 if (!ea.skip && !ni)
2232 * If the range is backwards, ask for confirmation and, if given, swap
2233 * ea.line1 & ea.line2 so it's forwards again.
2234 * When global command is busy, don't ask, will fail below.
2236 if (!global_busy && ea.line1 > ea.line2)
2238 if (msg_silent == 0)
2240 if (sourcing || exmode_active)
2242 errormsg = (char_u *)_("E493: Backwards range given");
2243 goto doend;
2245 if (ask_yesno((char_u *)
2246 _("Backwards range given, OK to swap"), FALSE) != 'y')
2247 goto doend;
2249 lnum = ea.line1;
2250 ea.line1 = ea.line2;
2251 ea.line2 = lnum;
2253 if ((errormsg = invalid_range(&ea)) != NULL)
2254 goto doend;
2257 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2258 ea.line2 = 1;
2260 correct_range(&ea);
2262 #ifdef FEAT_FOLDING
2263 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2265 /* Put the first line at the start of a closed fold, put the last line
2266 * at the end of a closed fold. */
2267 (void)hasFolding(ea.line1, &ea.line1, NULL);
2268 (void)hasFolding(ea.line2, NULL, &ea.line2);
2270 #endif
2272 #ifdef FEAT_QUICKFIX
2274 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
2275 * option here, so things like % get expanded.
2277 p = replace_makeprg(&ea, p, cmdlinep);
2278 if (p == NULL)
2279 goto doend;
2280 #endif
2283 * Skip to start of argument.
2284 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2286 if (ea.cmdidx == CMD_bang)
2287 ea.arg = p;
2288 else
2289 ea.arg = skipwhite(p);
2292 * Check for "++opt=val" argument.
2293 * Must be first, allow ":w ++enc=utf8 !cmd"
2295 if (ea.argt & ARGOPT)
2296 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2297 if (getargopt(&ea) == FAIL && !ni)
2299 errormsg = (char_u *)_(e_invarg);
2300 goto doend;
2303 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2305 if (*ea.arg == '>') /* append */
2307 if (*++ea.arg != '>') /* typed wrong */
2309 errormsg = (char_u *)_("E494: Use w or w>>");
2310 goto doend;
2312 ea.arg = skipwhite(ea.arg + 1);
2313 ea.append = TRUE;
2315 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2317 ++ea.arg;
2318 ea.usefilter = TRUE;
2322 if (ea.cmdidx == CMD_read)
2324 if (ea.forceit)
2326 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2327 ea.forceit = FALSE;
2329 else if (*ea.arg == '!') /* :r !filter */
2331 ++ea.arg;
2332 ea.usefilter = TRUE;
2336 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2338 ea.amount = 1;
2339 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2341 ++ea.arg;
2342 ++ea.amount;
2344 ea.arg = skipwhite(ea.arg);
2348 * Check for "+command" argument, before checking for next command.
2349 * Don't do this for ":read !cmd" and ":write !cmd".
2351 if ((ea.argt & EDITCMD) && !ea.usefilter)
2352 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2355 * Check for '|' to separate commands and '"' to start comments.
2356 * Don't do this for ":read !cmd" and ":write !cmd".
2358 if ((ea.argt & TRLBAR) && !ea.usefilter)
2359 separate_nextcmd(&ea);
2362 * Check for <newline> to end a shell command.
2363 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2364 * Any others?
2366 else if (ea.cmdidx == CMD_bang
2367 || ea.cmdidx == CMD_global
2368 || ea.cmdidx == CMD_vglobal
2369 || ea.usefilter)
2371 for (p = ea.arg; *p; ++p)
2373 /* Remove one backslash before a newline, so that it's possible to
2374 * pass a newline to the shell and also a newline that is preceded
2375 * with a backslash. This makes it impossible to end a shell
2376 * command in a backslash, but that doesn't appear useful.
2377 * Halving the number of backslashes is incompatible with previous
2378 * versions. */
2379 if (*p == '\\' && p[1] == '\n')
2380 STRMOVE(p, p + 1);
2381 else if (*p == '\n')
2383 ea.nextcmd = p + 1;
2384 *p = NUL;
2385 break;
2390 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2392 ea.line1 = 1;
2393 ea.line2 = curbuf->b_ml.ml_line_count;
2396 /* accept numbered register only when no count allowed (:put) */
2397 if ( (ea.argt & REGSTR)
2398 && *ea.arg != NUL
2399 #ifdef FEAT_USR_CMDS
2400 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2401 && USER_CMDIDX(ea.cmdidx)))
2402 /* Do not allow register = for user commands */
2403 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2404 #else
2405 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2406 #endif
2407 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2409 ea.regname = *ea.arg++;
2410 #ifdef FEAT_EVAL
2411 /* for '=' register: accept the rest of the line as an expression */
2412 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2414 set_expr_line(vim_strsave(ea.arg));
2415 ea.arg += STRLEN(ea.arg);
2417 #endif
2418 ea.arg = skipwhite(ea.arg);
2422 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2423 * count, it's a buffer name.
2425 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2426 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2427 || vim_iswhite(*p)))
2429 n = getdigits(&ea.arg);
2430 ea.arg = skipwhite(ea.arg);
2431 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
2433 errormsg = (char_u *)_(e_zerocount);
2434 goto doend;
2436 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2438 ea.line2 = n;
2439 if (ea.addr_count == 0)
2440 ea.addr_count = 1;
2442 else
2444 ea.line1 = ea.line2;
2445 ea.line2 += n - 1;
2446 ++ea.addr_count;
2448 * Be vi compatible: no error message for out of range.
2450 if (ea.line2 > curbuf->b_ml.ml_line_count)
2451 ea.line2 = curbuf->b_ml.ml_line_count;
2456 * Check for flags: 'l', 'p' and '#'.
2458 if (ea.argt & EXFLAGS)
2459 get_flags(&ea);
2460 /* no arguments allowed */
2461 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
2462 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
2464 errormsg = (char_u *)_(e_trailing);
2465 goto doend;
2468 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2470 errormsg = (char_u *)_(e_argreq);
2471 goto doend;
2474 #ifdef FEAT_EVAL
2476 * Skip the command when it's not going to be executed.
2477 * The commands like :if, :endif, etc. always need to be executed.
2478 * Also make an exception for commands that handle a trailing command
2479 * themselves.
2481 if (ea.skip)
2483 switch (ea.cmdidx)
2485 /* commands that need evaluation */
2486 case CMD_while:
2487 case CMD_endwhile:
2488 case CMD_for:
2489 case CMD_endfor:
2490 case CMD_if:
2491 case CMD_elseif:
2492 case CMD_else:
2493 case CMD_endif:
2494 case CMD_try:
2495 case CMD_catch:
2496 case CMD_finally:
2497 case CMD_endtry:
2498 case CMD_function:
2499 break;
2501 /* Commands that handle '|' themselves. Check: A command should
2502 * either have the TRLBAR flag, appear in this list or appear in
2503 * the list at ":help :bar". */
2504 case CMD_aboveleft:
2505 case CMD_and:
2506 case CMD_belowright:
2507 case CMD_botright:
2508 case CMD_browse:
2509 case CMD_call:
2510 case CMD_confirm:
2511 case CMD_delfunction:
2512 case CMD_djump:
2513 case CMD_dlist:
2514 case CMD_dsearch:
2515 case CMD_dsplit:
2516 case CMD_echo:
2517 case CMD_echoerr:
2518 case CMD_echomsg:
2519 case CMD_echon:
2520 case CMD_execute:
2521 case CMD_help:
2522 case CMD_hide:
2523 case CMD_ijump:
2524 case CMD_ilist:
2525 case CMD_isearch:
2526 case CMD_isplit:
2527 case CMD_keepalt:
2528 case CMD_keepjumps:
2529 case CMD_keepmarks:
2530 case CMD_leftabove:
2531 case CMD_let:
2532 case CMD_lockmarks:
2533 case CMD_match:
2534 case CMD_mzscheme:
2535 case CMD_perl:
2536 case CMD_psearch:
2537 case CMD_python:
2538 case CMD_return:
2539 case CMD_rightbelow:
2540 case CMD_ruby:
2541 case CMD_silent:
2542 case CMD_smagic:
2543 case CMD_snomagic:
2544 case CMD_substitute:
2545 case CMD_syntax:
2546 case CMD_tab:
2547 case CMD_tcl:
2548 case CMD_throw:
2549 case CMD_tilde:
2550 case CMD_topleft:
2551 case CMD_unlet:
2552 case CMD_verbose:
2553 case CMD_vertical:
2554 break;
2556 default: goto doend;
2559 #endif
2561 if (ea.argt & XFILE)
2563 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2564 goto doend;
2567 #ifdef FEAT_LISTCMDS
2569 * Accept buffer name. Cannot be used at the same time with a buffer
2570 * number. Don't do this for a user command.
2572 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2573 # ifdef FEAT_USR_CMDS
2574 && !USER_CMDIDX(ea.cmdidx)
2575 # endif
2579 * :bdelete, :bwipeout and :bunload take several arguments, separated
2580 * by spaces: find next space (skipping over escaped characters).
2581 * The others take one argument: ignore trailing spaces.
2583 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2584 || ea.cmdidx == CMD_bunload)
2585 p = skiptowhite_esc(ea.arg);
2586 else
2588 p = ea.arg + STRLEN(ea.arg);
2589 while (p > ea.arg && vim_iswhite(p[-1]))
2590 --p;
2592 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2593 if (ea.line2 < 0) /* failed */
2594 goto doend;
2595 ea.addr_count = 1;
2596 ea.arg = skipwhite(p);
2598 #endif
2601 * 6. switch on command name
2603 * The "ea" structure holds the arguments that can be used.
2605 ea.cmdlinep = cmdlinep;
2606 ea.getline = fgetline;
2607 ea.cookie = cookie;
2608 #ifdef FEAT_EVAL
2609 ea.cstack = cstack;
2610 #endif
2612 #ifdef FEAT_USR_CMDS
2613 if (USER_CMDIDX(ea.cmdidx))
2616 * Execute a user-defined command.
2618 do_ucmd(&ea);
2620 else
2621 #endif
2624 * Call the function to execute the command.
2626 ea.errmsg = NULL;
2627 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2628 if (ea.errmsg != NULL)
2629 errormsg = (char_u *)_(ea.errmsg);
2632 #ifdef FEAT_EVAL
2634 * If the command just executed called do_cmdline(), any throw or ":return"
2635 * or ":finish" encountered there must also check the cstack of the still
2636 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2637 * exception, or reanimate a returned function or finished script file and
2638 * return or finish it again.
2640 if (need_rethrow)
2641 do_throw(cstack);
2642 else if (check_cstack)
2644 if (source_finished(fgetline, cookie))
2645 do_finish(&ea, TRUE);
2646 else if (getline_equal(fgetline, cookie, get_func_line)
2647 && current_func_returned())
2648 do_return(&ea, TRUE, FALSE, NULL);
2650 need_rethrow = check_cstack = FALSE;
2651 #endif
2653 doend:
2654 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2655 curwin->w_cursor.lnum = 1;
2657 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2659 if (sourcing)
2661 if (errormsg != IObuff)
2663 STRCPY(IObuff, errormsg);
2664 errormsg = IObuff;
2666 STRCAT(errormsg, ": ");
2667 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff) - 1);
2669 emsg(errormsg);
2671 #ifdef FEAT_EVAL
2672 do_errthrow(cstack,
2673 (ea.cmdidx != CMD_SIZE
2674 # ifdef FEAT_USR_CMDS
2675 && !USER_CMDIDX(ea.cmdidx)
2676 # endif
2677 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2678 #endif
2680 if (verbose_save >= 0)
2681 p_verbose = verbose_save;
2682 #ifdef FEAT_AUTOCMD
2683 if (cmdmod.save_ei != NULL)
2685 /* Restore 'eventignore' to the value before ":noautocmd". */
2686 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2687 OPT_FREE, SID_NONE);
2688 free_string_option(cmdmod.save_ei);
2690 #endif
2692 cmdmod = save_cmdmod;
2694 if (save_msg_silent != -1)
2696 /* messages could be enabled for a serious error, need to check if the
2697 * counters don't become negative */
2698 if (!did_emsg || msg_silent > save_msg_silent)
2699 msg_silent = save_msg_silent;
2700 emsg_silent -= did_esilent;
2701 if (emsg_silent < 0)
2702 emsg_silent = 0;
2703 /* Restore msg_scroll, it's set by file I/O commands, even when no
2704 * message is actually displayed. */
2705 msg_scroll = save_msg_scroll;
2707 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
2708 * somewhere in the line. Put it back in the first column. */
2709 if (redirecting())
2710 msg_col = 0;
2713 #ifdef HAVE_SANDBOX
2714 if (did_sandbox)
2715 --sandbox;
2716 #endif
2718 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2719 ea.nextcmd = NULL;
2721 #ifdef FEAT_EVAL
2722 --ex_nesting_level;
2723 #endif
2725 return ea.nextcmd;
2727 #if (_MSC_VER == 1200)
2728 #pragma optimize( "", on )
2729 #endif
2732 * Check for an Ex command with optional tail.
2733 * If there is a match advance "pp" to the argument and return TRUE.
2736 checkforcmd(pp, cmd, len)
2737 char_u **pp; /* start of command */
2738 char *cmd; /* name of command */
2739 int len; /* required length */
2741 int i;
2743 for (i = 0; cmd[i] != NUL; ++i)
2744 if (((char_u *)cmd)[i] != (*pp)[i])
2745 break;
2746 if (i >= len && !isalpha((*pp)[i]))
2748 *pp = skipwhite(*pp + i);
2749 return TRUE;
2751 return FALSE;
2755 * Find an Ex command by its name, either built-in or user.
2756 * Start of the name can be found at eap->cmd.
2757 * Returns pointer to char after the command name.
2758 * "full" is set to TRUE if the whole command name matched.
2759 * Returns NULL for an ambiguous user command.
2761 static char_u *
2762 find_command(eap, full)
2763 exarg_T *eap;
2764 int *full UNUSED;
2766 int len;
2767 char_u *p;
2768 int i;
2771 * Isolate the command and search for it in the command table.
2772 * Exceptions:
2773 * - the 'k' command can directly be followed by any character.
2774 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2775 * but :sre[wind] is another command, as are :scrip[tnames],
2776 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
2777 * - the "d" command can directly be followed by 'l' or 'p' flag.
2779 p = eap->cmd;
2780 if (*p == 'k')
2782 eap->cmdidx = CMD_k;
2783 ++p;
2785 else if (p[0] == 's'
2786 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2787 && p[3] != 'i' && p[4] != 'p')
2788 || p[1] == 'g'
2789 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2790 || p[1] == 'I'
2791 || (p[1] == 'r' && p[2] != 'e')))
2793 eap->cmdidx = CMD_substitute;
2794 ++p;
2796 else
2798 while (ASCII_ISALPHA(*p))
2799 ++p;
2800 /* check for non-alpha command */
2801 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2802 ++p;
2803 len = (int)(p - eap->cmd);
2804 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2806 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2807 * :delete with the 'l' flag. Same for 'p'. */
2808 for (i = 0; i < len; ++i)
2809 if (eap->cmd[i] != ((char_u *)"delete")[i])
2810 break;
2811 if (i == len - 1)
2813 --len;
2814 if (p[-1] == 'l')
2815 eap->flags |= EXFLAG_LIST;
2816 else
2817 eap->flags |= EXFLAG_PRINT;
2821 if (ASCII_ISLOWER(*eap->cmd))
2822 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2823 else
2824 eap->cmdidx = cmdidxs[26];
2826 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2827 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2828 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2829 (size_t)len) == 0)
2831 #ifdef FEAT_EVAL
2832 if (full != NULL
2833 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2834 *full = TRUE;
2835 #endif
2836 break;
2839 #ifdef FEAT_USR_CMDS
2840 /* Look for a user defined command as a last resort */
2841 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2843 /* User defined commands may contain digits. */
2844 while (ASCII_ISALNUM(*p))
2845 ++p;
2846 p = find_ucmd(eap, p, full, NULL, NULL);
2848 #endif
2849 if (p == eap->cmd)
2850 eap->cmdidx = CMD_SIZE;
2853 return p;
2856 #ifdef FEAT_USR_CMDS
2858 * Search for a user command that matches "eap->cmd".
2859 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2860 * Return a pointer to just after the command.
2861 * Return NULL if there is no matching command.
2863 static char_u *
2864 find_ucmd(eap, p, full, xp, compl)
2865 exarg_T *eap;
2866 char_u *p; /* end of the command (possibly including count) */
2867 int *full; /* set to TRUE for a full match */
2868 expand_T *xp; /* used for completion, NULL otherwise */
2869 int *compl; /* completion flags or NULL */
2871 int len = (int)(p - eap->cmd);
2872 int j, k, matchlen = 0;
2873 ucmd_T *uc;
2874 int found = FALSE;
2875 int possible = FALSE;
2876 char_u *cp, *np; /* Point into typed cmd and test name */
2877 garray_T *gap;
2878 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2879 only full match global is accepted. */
2882 * Look for buffer-local user commands first, then global ones.
2884 gap = &curbuf->b_ucmds;
2885 for (;;)
2887 for (j = 0; j < gap->ga_len; ++j)
2889 uc = USER_CMD_GA(gap, j);
2890 cp = eap->cmd;
2891 np = uc->uc_name;
2892 k = 0;
2893 while (k < len && *np != NUL && *cp++ == *np++)
2894 k++;
2895 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2897 /* If finding a second match, the command is ambiguous. But
2898 * not if a buffer-local command wasn't a full match and a
2899 * global command is a full match. */
2900 if (k == len && found && *np != NUL)
2902 if (gap == &ucmds)
2903 return NULL;
2904 amb_local = TRUE;
2907 if (!found || (k == len && *np == NUL))
2909 /* If we matched up to a digit, then there could
2910 * be another command including the digit that we
2911 * should use instead.
2913 if (k == len)
2914 found = TRUE;
2915 else
2916 possible = TRUE;
2918 if (gap == &ucmds)
2919 eap->cmdidx = CMD_USER;
2920 else
2921 eap->cmdidx = CMD_USER_BUF;
2922 eap->argt = (long)uc->uc_argt;
2923 eap->useridx = j;
2925 # ifdef FEAT_CMDL_COMPL
2926 if (compl != NULL)
2927 *compl = uc->uc_compl;
2928 # ifdef FEAT_EVAL
2929 if (xp != NULL)
2931 xp->xp_arg = uc->uc_compl_arg;
2932 xp->xp_scriptID = uc->uc_scriptID;
2934 # endif
2935 # endif
2936 /* Do not search for further abbreviations
2937 * if this is an exact match. */
2938 matchlen = k;
2939 if (k == len && *np == NUL)
2941 if (full != NULL)
2942 *full = TRUE;
2943 amb_local = FALSE;
2944 break;
2950 /* Stop if we found a full match or searched all. */
2951 if (j < gap->ga_len || gap == &ucmds)
2952 break;
2953 gap = &ucmds;
2956 /* Only found ambiguous matches. */
2957 if (amb_local)
2959 if (xp != NULL)
2960 xp->xp_context = EXPAND_UNSUCCESSFUL;
2961 return NULL;
2964 /* The match we found may be followed immediately by a number. Move "p"
2965 * back to point to it. */
2966 if (found || possible)
2967 return p + (matchlen - len);
2968 return p;
2970 #endif
2972 #if defined(FEAT_EVAL) || defined(PROTO)
2973 static struct cmdmod
2975 char *name;
2976 int minlen;
2977 int has_count; /* :123verbose :3tab */
2978 } cmdmods[] = {
2979 {"aboveleft", 3, FALSE},
2980 {"belowright", 3, FALSE},
2981 {"botright", 2, FALSE},
2982 {"browse", 3, FALSE},
2983 {"confirm", 4, FALSE},
2984 {"hide", 3, FALSE},
2985 {"keepalt", 5, FALSE},
2986 {"keepjumps", 5, FALSE},
2987 {"keepmarks", 3, FALSE},
2988 {"leftabove", 5, FALSE},
2989 {"lockmarks", 3, FALSE},
2990 {"noautocmd", 3, FALSE},
2991 {"rightbelow", 6, FALSE},
2992 {"sandbox", 3, FALSE},
2993 {"silent", 3, FALSE},
2994 {"tab", 3, TRUE},
2995 {"topleft", 2, FALSE},
2996 {"unsilent", 3, FALSE},
2997 {"verbose", 4, TRUE},
2998 {"vertical", 4, FALSE},
3002 * Return length of a command modifier (including optional count).
3003 * Return zero when it's not a modifier.
3006 modifier_len(cmd)
3007 char_u *cmd;
3009 int i, j;
3010 char_u *p = cmd;
3012 if (VIM_ISDIGIT(*cmd))
3013 p = skipwhite(skipdigits(cmd));
3014 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
3016 for (j = 0; p[j] != NUL; ++j)
3017 if (p[j] != cmdmods[i].name[j])
3018 break;
3019 if (!isalpha(p[j]) && j >= cmdmods[i].minlen
3020 && (p == cmd || cmdmods[i].has_count))
3021 return j + (int)(p - cmd);
3023 return 0;
3027 * Return > 0 if an Ex command "name" exists.
3028 * Return 2 if there is an exact match.
3029 * Return 3 if there is an ambiguous match.
3032 cmd_exists(name)
3033 char_u *name;
3035 exarg_T ea;
3036 int full = FALSE;
3037 int i;
3038 int j;
3039 char_u *p;
3041 /* Check command modifiers. */
3042 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
3044 for (j = 0; name[j] != NUL; ++j)
3045 if (name[j] != cmdmods[i].name[j])
3046 break;
3047 if (name[j] == NUL && j >= cmdmods[i].minlen)
3048 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3051 /* Check built-in commands and user defined commands.
3052 * For ":2match" and ":3match" we need to skip the number. */
3053 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
3054 ea.cmdidx = (cmdidx_T)0;
3055 p = find_command(&ea, &full);
3056 if (p == NULL)
3057 return 3;
3058 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3059 return 0;
3060 if (*skipwhite(p) != NUL)
3061 return 0; /* trailing garbage */
3062 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3064 #endif
3067 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3068 * we don't need/want deleted. Maybe this could be done better if we didn't
3069 * repeat all this stuff. The only problem is that they may not stay
3070 * perfectly compatible with each other, but then the command line syntax
3071 * probably won't change that much -- webb.
3073 char_u *
3074 set_one_cmd_context(xp, buff)
3075 expand_T *xp;
3076 char_u *buff; /* buffer for command string */
3078 char_u *p;
3079 char_u *cmd, *arg;
3080 int len = 0;
3081 exarg_T ea;
3082 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3083 int compl = EXPAND_NOTHING;
3084 #endif
3085 #ifdef FEAT_CMDL_COMPL
3086 int delim;
3087 #endif
3088 int forceit = FALSE;
3089 int usefilter = FALSE; /* filter instead of file name */
3091 ExpandInit(xp);
3092 xp->xp_pattern = buff;
3093 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
3094 ea.argt = 0;
3097 * 2. skip comment lines and leading space, colons or bars
3099 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3101 xp->xp_pattern = cmd;
3103 if (*cmd == NUL)
3104 return NULL;
3105 if (*cmd == '"') /* ignore comment lines */
3107 xp->xp_context = EXPAND_NOTHING;
3108 return NULL;
3112 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3114 cmd = skip_range(cmd, &xp->xp_context);
3117 * 4. parse command
3119 xp->xp_pattern = cmd;
3120 if (*cmd == NUL)
3121 return NULL;
3122 if (*cmd == '"')
3124 xp->xp_context = EXPAND_NOTHING;
3125 return NULL;
3128 if (*cmd == '|' || *cmd == '\n')
3129 return cmd + 1; /* There's another command */
3132 * Isolate the command and search for it in the command table.
3133 * Exceptions:
3134 * - the 'k' command can directly be followed by any character, but
3135 * do accept "keepmarks", "keepalt" and "keepjumps".
3136 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3138 if (*cmd == 'k' && cmd[1] != 'e')
3140 ea.cmdidx = CMD_k;
3141 p = cmd + 1;
3143 else
3145 p = cmd;
3146 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3147 ++p;
3148 /* check for non-alpha command */
3149 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3150 ++p;
3151 len = (int)(p - cmd);
3153 if (len == 0)
3155 xp->xp_context = EXPAND_UNSUCCESSFUL;
3156 return NULL;
3158 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3159 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3160 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
3161 break;
3163 #ifdef FEAT_USR_CMDS
3164 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3166 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3167 ++p;
3168 len = (int)(p - cmd);
3170 #endif
3174 * If the cursor is touching the command, and it ends in an alpha-numeric
3175 * character, complete the command name.
3177 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3178 return NULL;
3180 if (ea.cmdidx == CMD_SIZE)
3182 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3184 ea.cmdidx = CMD_substitute;
3185 p = cmd + 1;
3187 #ifdef FEAT_USR_CMDS
3188 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3190 ea.cmd = cmd;
3191 p = find_ucmd(&ea, p, NULL, xp,
3192 # if defined(FEAT_CMDL_COMPL)
3193 &compl
3194 # else
3195 NULL
3196 # endif
3198 if (p == NULL)
3199 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
3201 #endif
3203 if (ea.cmdidx == CMD_SIZE)
3205 /* Not still touching the command and it was an illegal one */
3206 xp->xp_context = EXPAND_UNSUCCESSFUL;
3207 return NULL;
3210 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3212 if (*p == '!') /* forced commands */
3214 forceit = TRUE;
3215 ++p;
3219 * 5. parse arguments
3221 #ifdef FEAT_USR_CMDS
3222 if (!USER_CMDIDX(ea.cmdidx))
3223 #endif
3224 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
3226 arg = skipwhite(p);
3228 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
3230 if (*arg == '>') /* append */
3232 if (*++arg == '>')
3233 ++arg;
3234 arg = skipwhite(arg);
3236 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
3238 ++arg;
3239 usefilter = TRUE;
3243 if (ea.cmdidx == CMD_read)
3245 usefilter = forceit; /* :r! filter if forced */
3246 if (*arg == '!') /* :r !filter */
3248 ++arg;
3249 usefilter = TRUE;
3253 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
3255 while (*arg == *cmd) /* allow any number of '>' or '<' */
3256 ++arg;
3257 arg = skipwhite(arg);
3260 /* Does command allow "+command"? */
3261 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
3263 /* Check if we're in the +command */
3264 p = arg + 1;
3265 arg = skip_cmd_arg(arg, FALSE);
3267 /* Still touching the command after '+'? */
3268 if (*arg == NUL)
3269 return p;
3271 /* Skip space(s) after +command to get to the real argument */
3272 arg = skipwhite(arg);
3276 * Check for '|' to separate commands and '"' to start comments.
3277 * Don't do this for ":read !cmd" and ":write !cmd".
3279 if ((ea.argt & TRLBAR) && !usefilter)
3281 p = arg;
3282 /* ":redir @" is not the start of a comment */
3283 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
3284 p += 2;
3285 while (*p)
3287 if (*p == Ctrl_V)
3289 if (p[1] != NUL)
3290 ++p;
3292 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
3293 || *p == '|' || *p == '\n')
3295 if (*(p - 1) != '\\')
3297 if (*p == '|' || *p == '\n')
3298 return p + 1;
3299 return NULL; /* It's a comment */
3302 mb_ptr_adv(p);
3306 /* no arguments allowed */
3307 if (!(ea.argt & EXTRA) && *arg != NUL &&
3308 vim_strchr((char_u *)"|\"", *arg) == NULL)
3309 return NULL;
3311 /* Find start of last argument (argument just before cursor): */
3312 p = buff + STRLEN(buff);
3313 while (p != arg && *p != ' ' && *p != TAB)
3314 p--;
3315 if (*p == ' ' || *p == TAB)
3316 p++;
3317 xp->xp_pattern = p;
3319 if (ea.argt & XFILE)
3321 int c;
3322 int in_quote = FALSE;
3323 char_u *bow = NULL; /* Beginning of word */
3326 * Allow spaces within back-quotes to count as part of the argument
3327 * being expanded.
3329 xp->xp_pattern = skipwhite(arg);
3330 p = xp->xp_pattern;
3331 while (*p != NUL)
3333 #ifdef FEAT_MBYTE
3334 if (has_mbyte)
3335 c = mb_ptr2char(p);
3336 else
3337 #endif
3338 c = *p;
3339 if (c == '\\' && p[1] != NUL)
3340 ++p;
3341 else if (c == '`')
3343 if (!in_quote)
3345 xp->xp_pattern = p;
3346 bow = p + 1;
3348 in_quote = !in_quote;
3350 /* An argument can contain just about everything, except
3351 * characters that end the command and white space. */
3352 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
3353 #ifdef SPACE_IN_FILENAME
3354 && (!(ea.argt & NOSPC) || usefilter)
3355 #endif
3358 len = 0; /* avoid getting stuck when space is in 'isfname' */
3359 while (*p != NUL)
3361 #ifdef FEAT_MBYTE
3362 if (has_mbyte)
3363 c = mb_ptr2char(p);
3364 else
3365 #endif
3366 c = *p;
3367 if (c == '`' || vim_isfilec_or_wc(c))
3368 break;
3369 #ifdef FEAT_MBYTE
3370 if (has_mbyte)
3371 len = (*mb_ptr2len)(p);
3372 else
3373 #endif
3374 len = 1;
3375 mb_ptr_adv(p);
3377 if (in_quote)
3378 bow = p;
3379 else
3380 xp->xp_pattern = p;
3381 p -= len;
3383 mb_ptr_adv(p);
3387 * If we are still inside the quotes, and we passed a space, just
3388 * expand from there.
3390 if (bow != NULL && in_quote)
3391 xp->xp_pattern = bow;
3392 xp->xp_context = EXPAND_FILES;
3394 #ifndef BACKSLASH_IN_FILENAME
3395 /* For a shell command more chars need to be escaped. */
3396 if (usefilter || ea.cmdidx == CMD_bang)
3398 xp->xp_shell = TRUE;
3400 /* When still after the command name expand executables. */
3401 if (xp->xp_pattern == skipwhite(arg))
3402 xp->xp_context = EXPAND_SHELLCMD;
3404 #endif
3406 /* Check for environment variable */
3407 if (*xp->xp_pattern == '$'
3408 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3409 || *xp->xp_pattern == '%'
3410 #endif
3413 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3414 if (!vim_isIDc(*p))
3415 break;
3416 if (*p == NUL)
3418 xp->xp_context = EXPAND_ENV_VARS;
3419 ++xp->xp_pattern;
3420 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3421 /* Avoid that the assignment uses EXPAND_FILES again. */
3422 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
3423 compl = EXPAND_ENV_VARS;
3424 #endif
3430 * 6. switch on command name
3432 switch (ea.cmdidx)
3434 case CMD_cd:
3435 case CMD_chdir:
3436 case CMD_lcd:
3437 case CMD_lchdir:
3438 if (xp->xp_context == EXPAND_FILES)
3439 xp->xp_context = EXPAND_DIRECTORIES;
3440 break;
3441 case CMD_help:
3442 xp->xp_context = EXPAND_HELP;
3443 xp->xp_pattern = arg;
3444 break;
3446 /* Command modifiers: return the argument.
3447 * Also for commands with an argument that is a command. */
3448 case CMD_aboveleft:
3449 case CMD_argdo:
3450 case CMD_belowright:
3451 case CMD_botright:
3452 case CMD_browse:
3453 case CMD_bufdo:
3454 case CMD_confirm:
3455 case CMD_debug:
3456 case CMD_folddoclosed:
3457 case CMD_folddoopen:
3458 case CMD_hide:
3459 case CMD_keepalt:
3460 case CMD_keepjumps:
3461 case CMD_keepmarks:
3462 case CMD_leftabove:
3463 case CMD_lockmarks:
3464 case CMD_rightbelow:
3465 case CMD_sandbox:
3466 case CMD_silent:
3467 case CMD_tab:
3468 case CMD_topleft:
3469 case CMD_verbose:
3470 case CMD_vertical:
3471 case CMD_windo:
3472 return arg;
3474 #ifdef FEAT_CMDL_COMPL
3475 # ifdef FEAT_SEARCH_EXTRA
3476 case CMD_match:
3477 if (*arg == NUL || !ends_excmd(*arg))
3479 /* also complete "None" */
3480 set_context_in_echohl_cmd(xp, arg);
3481 arg = skipwhite(skiptowhite(arg));
3482 if (*arg != NUL)
3484 xp->xp_context = EXPAND_NOTHING;
3485 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3488 return find_nextcmd(arg);
3489 # endif
3492 * All completion for the +cmdline_compl feature goes here.
3495 # ifdef FEAT_USR_CMDS
3496 case CMD_command:
3497 /* Check for attributes */
3498 while (*arg == '-')
3500 arg++; /* Skip "-" */
3501 p = skiptowhite(arg);
3502 if (*p == NUL)
3504 /* Cursor is still in the attribute */
3505 p = vim_strchr(arg, '=');
3506 if (p == NULL)
3508 /* No "=", so complete attribute names */
3509 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3510 xp->xp_pattern = arg;
3511 return NULL;
3514 /* For the -complete and -nargs attributes, we complete
3515 * their arguments as well.
3517 if (STRNICMP(arg, "complete", p - arg) == 0)
3519 xp->xp_context = EXPAND_USER_COMPLETE;
3520 xp->xp_pattern = p + 1;
3521 return NULL;
3523 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3525 xp->xp_context = EXPAND_USER_NARGS;
3526 xp->xp_pattern = p + 1;
3527 return NULL;
3529 return NULL;
3531 arg = skipwhite(p);
3534 /* After the attributes comes the new command name */
3535 p = skiptowhite(arg);
3536 if (*p == NUL)
3538 xp->xp_context = EXPAND_USER_COMMANDS;
3539 xp->xp_pattern = arg;
3540 break;
3543 /* And finally comes a normal command */
3544 return skipwhite(p);
3546 case CMD_delcommand:
3547 xp->xp_context = EXPAND_USER_COMMANDS;
3548 xp->xp_pattern = arg;
3549 break;
3550 # endif
3552 case CMD_global:
3553 case CMD_vglobal:
3554 delim = *arg; /* get the delimiter */
3555 if (delim)
3556 ++arg; /* skip delimiter if there is one */
3558 while (arg[0] != NUL && arg[0] != delim)
3560 if (arg[0] == '\\' && arg[1] != NUL)
3561 ++arg;
3562 ++arg;
3564 if (arg[0] != NUL)
3565 return arg + 1;
3566 break;
3567 case CMD_and:
3568 case CMD_substitute:
3569 delim = *arg;
3570 if (delim)
3572 /* skip "from" part */
3573 ++arg;
3574 arg = skip_regexp(arg, delim, p_magic, NULL);
3576 /* skip "to" part */
3577 while (arg[0] != NUL && arg[0] != delim)
3579 if (arg[0] == '\\' && arg[1] != NUL)
3580 ++arg;
3581 ++arg;
3583 if (arg[0] != NUL) /* skip delimiter */
3584 ++arg;
3585 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3586 ++arg;
3587 if (arg[0] != NUL)
3588 return arg;
3589 break;
3590 case CMD_isearch:
3591 case CMD_dsearch:
3592 case CMD_ilist:
3593 case CMD_dlist:
3594 case CMD_ijump:
3595 case CMD_psearch:
3596 case CMD_djump:
3597 case CMD_isplit:
3598 case CMD_dsplit:
3599 arg = skipwhite(skipdigits(arg)); /* skip count */
3600 if (*arg == '/') /* Match regexp, not just whole words */
3602 for (++arg; *arg && *arg != '/'; arg++)
3603 if (*arg == '\\' && arg[1] != NUL)
3604 arg++;
3605 if (*arg)
3607 arg = skipwhite(arg + 1);
3609 /* Check for trailing illegal characters */
3610 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3611 xp->xp_context = EXPAND_NOTHING;
3612 else
3613 return arg;
3616 break;
3617 #ifdef FEAT_AUTOCMD
3618 case CMD_autocmd:
3619 return set_context_in_autocmd(xp, arg, FALSE);
3621 case CMD_doautocmd:
3622 case CMD_doautoall:
3623 return set_context_in_autocmd(xp, arg, TRUE);
3624 #endif
3625 case CMD_set:
3626 set_context_in_set_cmd(xp, arg, 0);
3627 break;
3628 case CMD_setglobal:
3629 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3630 break;
3631 case CMD_setlocal:
3632 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3633 break;
3634 case CMD_tag:
3635 case CMD_stag:
3636 case CMD_ptag:
3637 case CMD_ltag:
3638 case CMD_tselect:
3639 case CMD_stselect:
3640 case CMD_ptselect:
3641 case CMD_tjump:
3642 case CMD_stjump:
3643 case CMD_ptjump:
3644 if (*p_wop != NUL)
3645 xp->xp_context = EXPAND_TAGS_LISTFILES;
3646 else
3647 xp->xp_context = EXPAND_TAGS;
3648 xp->xp_pattern = arg;
3649 break;
3650 case CMD_augroup:
3651 xp->xp_context = EXPAND_AUGROUP;
3652 xp->xp_pattern = arg;
3653 break;
3654 #ifdef FEAT_SYN_HL
3655 case CMD_syntax:
3656 set_context_in_syntax_cmd(xp, arg);
3657 break;
3658 #endif
3659 #ifdef FEAT_EVAL
3660 case CMD_let:
3661 case CMD_if:
3662 case CMD_elseif:
3663 case CMD_while:
3664 case CMD_for:
3665 case CMD_echo:
3666 case CMD_echon:
3667 case CMD_execute:
3668 case CMD_echomsg:
3669 case CMD_echoerr:
3670 case CMD_call:
3671 case CMD_return:
3672 set_context_for_expression(xp, arg, ea.cmdidx);
3673 break;
3675 case CMD_unlet:
3676 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3677 arg = xp->xp_pattern + 1;
3678 xp->xp_context = EXPAND_USER_VARS;
3679 xp->xp_pattern = arg;
3680 break;
3682 case CMD_function:
3683 case CMD_delfunction:
3684 xp->xp_context = EXPAND_USER_FUNC;
3685 xp->xp_pattern = arg;
3686 break;
3688 case CMD_echohl:
3689 set_context_in_echohl_cmd(xp, arg);
3690 break;
3691 #endif
3692 case CMD_highlight:
3693 set_context_in_highlight_cmd(xp, arg);
3694 break;
3695 #ifdef FEAT_CSCOPE
3696 case CMD_cscope:
3697 case CMD_lcscope:
3698 case CMD_scscope:
3699 set_context_in_cscope_cmd(xp, arg, ea.cmdidx);
3700 break;
3701 #endif
3702 #ifdef FEAT_SIGNS
3703 case CMD_sign:
3704 set_context_in_sign_cmd(xp, arg);
3705 break;
3706 #endif
3707 #ifdef FEAT_LISTCMDS
3708 case CMD_bdelete:
3709 case CMD_bwipeout:
3710 case CMD_bunload:
3711 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3712 arg = xp->xp_pattern + 1;
3713 /*FALLTHROUGH*/
3714 case CMD_buffer:
3715 case CMD_sbuffer:
3716 case CMD_checktime:
3717 xp->xp_context = EXPAND_BUFFERS;
3718 xp->xp_pattern = arg;
3719 break;
3720 #endif
3721 #ifdef FEAT_USR_CMDS
3722 case CMD_USER:
3723 case CMD_USER_BUF:
3724 if (compl != EXPAND_NOTHING)
3726 /* XFILE: file names are handled above */
3727 if (!(ea.argt & XFILE))
3729 # ifdef FEAT_MENU
3730 if (compl == EXPAND_MENUS)
3731 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3732 # endif
3733 if (compl == EXPAND_COMMANDS)
3734 return arg;
3735 if (compl == EXPAND_MAPPINGS)
3736 return set_context_in_map_cmd(xp, (char_u *)"map",
3737 arg, forceit, FALSE, FALSE, CMD_map);
3738 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3739 arg = xp->xp_pattern + 1;
3740 xp->xp_pattern = arg;
3742 xp->xp_context = compl;
3744 break;
3745 #endif
3746 case CMD_map: case CMD_noremap:
3747 case CMD_nmap: case CMD_nnoremap:
3748 case CMD_vmap: case CMD_vnoremap:
3749 case CMD_omap: case CMD_onoremap:
3750 case CMD_imap: case CMD_inoremap:
3751 case CMD_cmap: case CMD_cnoremap:
3752 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3753 FALSE, FALSE, ea.cmdidx);
3754 case CMD_unmap:
3755 case CMD_nunmap:
3756 case CMD_vunmap:
3757 case CMD_ounmap:
3758 case CMD_iunmap:
3759 case CMD_cunmap:
3760 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3761 FALSE, TRUE, ea.cmdidx);
3762 case CMD_abbreviate: case CMD_noreabbrev:
3763 case CMD_cabbrev: case CMD_cnoreabbrev:
3764 case CMD_iabbrev: case CMD_inoreabbrev:
3765 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3766 TRUE, FALSE, ea.cmdidx);
3767 case CMD_unabbreviate:
3768 case CMD_cunabbrev:
3769 case CMD_iunabbrev:
3770 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3771 TRUE, TRUE, ea.cmdidx);
3772 #ifdef FEAT_MENU
3773 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3774 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3775 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3776 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3777 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3778 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3779 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3780 case CMD_tmenu: case CMD_tunmenu:
3781 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3782 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3783 #endif
3785 case CMD_colorscheme:
3786 xp->xp_context = EXPAND_COLORS;
3787 xp->xp_pattern = arg;
3788 break;
3790 case CMD_compiler:
3791 xp->xp_context = EXPAND_COMPILER;
3792 xp->xp_pattern = arg;
3793 break;
3795 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3796 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3797 case CMD_language:
3798 if (*skiptowhite(arg) == NUL)
3800 xp->xp_context = EXPAND_LANGUAGE;
3801 xp->xp_pattern = arg;
3803 else
3804 xp->xp_context = EXPAND_NOTHING;
3805 break;
3806 #endif
3807 #if defined(FEAT_PROFILE)
3808 case CMD_profile:
3809 set_context_in_profile_cmd(xp, arg);
3810 break;
3811 #endif
3813 #endif /* FEAT_CMDL_COMPL */
3815 default:
3816 break;
3818 return NULL;
3822 * skip a range specifier of the form: addr [,addr] [;addr] ..
3824 * Backslashed delimiters after / or ? will be skipped, and commands will
3825 * not be expanded between /'s and ?'s or after "'".
3827 * Also skip white space and ":" characters.
3828 * Returns the "cmd" pointer advanced to beyond the range.
3830 char_u *
3831 skip_range(cmd, ctx)
3832 char_u *cmd;
3833 int *ctx; /* pointer to xp_context or NULL */
3835 unsigned delim;
3837 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
3839 if (*cmd == '\'')
3841 if (*++cmd == NUL && ctx != NULL)
3842 *ctx = EXPAND_NOTHING;
3844 else if (*cmd == '/' || *cmd == '?')
3846 delim = *cmd++;
3847 while (*cmd != NUL && *cmd != delim)
3848 if (*cmd++ == '\\' && *cmd != NUL)
3849 ++cmd;
3850 if (*cmd == NUL && ctx != NULL)
3851 *ctx = EXPAND_NOTHING;
3853 if (*cmd != NUL)
3854 ++cmd;
3857 /* Skip ":" and white space. */
3858 while (*cmd == ':')
3859 cmd = skipwhite(cmd + 1);
3861 return cmd;
3865 * get a single EX address
3867 * Set ptr to the next character after the part that was interpreted.
3868 * Set ptr to NULL when an error is encountered.
3870 * Return MAXLNUM when no Ex address was found.
3872 static linenr_T
3873 get_address(ptr, skip, to_other_file)
3874 char_u **ptr;
3875 int skip; /* only skip the address, don't use it */
3876 int to_other_file; /* flag: may jump to other file */
3878 int c;
3879 int i;
3880 long n;
3881 char_u *cmd;
3882 pos_T pos;
3883 pos_T *fp;
3884 linenr_T lnum;
3886 cmd = skipwhite(*ptr);
3887 lnum = MAXLNUM;
3890 switch (*cmd)
3892 case '.': /* '.' - Cursor position */
3893 ++cmd;
3894 lnum = curwin->w_cursor.lnum;
3895 break;
3897 case '$': /* '$' - last line */
3898 ++cmd;
3899 lnum = curbuf->b_ml.ml_line_count;
3900 break;
3902 case '\'': /* ''' - mark */
3903 if (*++cmd == NUL)
3905 cmd = NULL;
3906 goto error;
3908 if (skip)
3909 ++cmd;
3910 else
3912 /* Only accept a mark in another file when it is
3913 * used by itself: ":'M". */
3914 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3915 ++cmd;
3916 if (fp == (pos_T *)-1)
3917 /* Jumped to another file. */
3918 lnum = curwin->w_cursor.lnum;
3919 else
3921 if (check_mark(fp) == FAIL)
3923 cmd = NULL;
3924 goto error;
3926 lnum = fp->lnum;
3929 break;
3931 case '/':
3932 case '?': /* '/' or '?' - search */
3933 c = *cmd++;
3934 if (skip) /* skip "/pat/" */
3936 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3937 if (*cmd == c)
3938 ++cmd;
3940 else
3942 pos = curwin->w_cursor; /* save curwin->w_cursor */
3944 * When '/' or '?' follows another address, start
3945 * from there.
3947 if (lnum != MAXLNUM)
3948 curwin->w_cursor.lnum = lnum;
3950 * Start a forward search at the end of the line.
3951 * Start a backward search at the start of the line.
3952 * This makes sure we never match in the current
3953 * line, and can match anywhere in the
3954 * next/previous line.
3956 if (c == '/')
3957 curwin->w_cursor.col = MAXCOL;
3958 else
3959 curwin->w_cursor.col = 0;
3960 searchcmdlen = 0;
3961 if (!do_search(NULL, c, cmd, 1L,
3962 SEARCH_HIS | SEARCH_MSG, NULL))
3964 curwin->w_cursor = pos;
3965 cmd = NULL;
3966 goto error;
3968 lnum = curwin->w_cursor.lnum;
3969 curwin->w_cursor = pos;
3970 /* adjust command string pointer */
3971 cmd += searchcmdlen;
3973 break;
3975 case '\\': /* "\?", "\/" or "\&", repeat search */
3976 ++cmd;
3977 if (*cmd == '&')
3978 i = RE_SUBST;
3979 else if (*cmd == '?' || *cmd == '/')
3980 i = RE_SEARCH;
3981 else
3983 EMSG(_(e_backslash));
3984 cmd = NULL;
3985 goto error;
3988 if (!skip)
3991 * When search follows another address, start from
3992 * there.
3994 if (lnum != MAXLNUM)
3995 pos.lnum = lnum;
3996 else
3997 pos.lnum = curwin->w_cursor.lnum;
4000 * Start the search just like for the above
4001 * do_search().
4003 if (*cmd != '?')
4004 pos.col = MAXCOL;
4005 else
4006 pos.col = 0;
4007 if (searchit(curwin, curbuf, &pos,
4008 *cmd == '?' ? BACKWARD : FORWARD,
4009 (char_u *)"", 1L, SEARCH_MSG,
4010 i, (linenr_T)0, NULL) != FAIL)
4011 lnum = pos.lnum;
4012 else
4014 cmd = NULL;
4015 goto error;
4018 ++cmd;
4019 break;
4021 default:
4022 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
4023 lnum = getdigits(&cmd);
4026 for (;;)
4028 cmd = skipwhite(cmd);
4029 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4030 break;
4032 if (lnum == MAXLNUM)
4033 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
4034 if (VIM_ISDIGIT(*cmd))
4035 i = '+'; /* "number" is same as "+number" */
4036 else
4037 i = *cmd++;
4038 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4039 n = 1;
4040 else
4041 n = getdigits(&cmd);
4042 if (i == '-')
4043 lnum -= n;
4044 else
4045 lnum += n;
4047 } while (*cmd == '/' || *cmd == '?');
4049 error:
4050 *ptr = cmd;
4051 return lnum;
4055 * Get flags from an Ex command argument.
4057 static void
4058 get_flags(eap)
4059 exarg_T *eap;
4061 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4063 if (*eap->arg == 'l')
4064 eap->flags |= EXFLAG_LIST;
4065 else if (*eap->arg == 'p')
4066 eap->flags |= EXFLAG_PRINT;
4067 else
4068 eap->flags |= EXFLAG_NR;
4069 eap->arg = skipwhite(eap->arg + 1);
4074 * Function called for command which is Not Implemented. NI!
4076 void
4077 ex_ni(eap)
4078 exarg_T *eap;
4080 if (!eap->skip)
4081 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4084 #ifdef HAVE_EX_SCRIPT_NI
4086 * Function called for script command which is Not Implemented. NI!
4087 * Skips over ":perl <<EOF" constructs.
4089 static void
4090 ex_script_ni(eap)
4091 exarg_T *eap;
4093 if (!eap->skip)
4094 ex_ni(eap);
4095 else
4096 vim_free(script_get(eap, eap->arg));
4098 #endif
4101 * Check range in Ex command for validity.
4102 * Return NULL when valid, error message when invalid.
4104 static char_u *
4105 invalid_range(eap)
4106 exarg_T *eap;
4108 if ( eap->line1 < 0
4109 || eap->line2 < 0
4110 || eap->line1 > eap->line2
4111 || ((eap->argt & RANGE)
4112 && !(eap->argt & NOTADR)
4113 && eap->line2 > curbuf->b_ml.ml_line_count
4114 #ifdef FEAT_DIFF
4115 + (eap->cmdidx == CMD_diffget)
4116 #endif
4118 return (char_u *)_(e_invrange);
4119 return NULL;
4123 * Correct the range for zero line number, if required.
4125 static void
4126 correct_range(eap)
4127 exarg_T *eap;
4129 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4131 if (eap->line1 == 0)
4132 eap->line1 = 1;
4133 if (eap->line2 == 0)
4134 eap->line2 = 1;
4138 #ifdef FEAT_QUICKFIX
4139 static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4142 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4143 * pattern. Otherwise return eap->arg.
4145 static char_u *
4146 skip_grep_pat(eap)
4147 exarg_T *eap;
4149 char_u *p = eap->arg;
4151 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4152 || eap->cmdidx == CMD_vimgrepadd
4153 || eap->cmdidx == CMD_lvimgrepadd
4154 || grep_internal(eap->cmdidx)))
4156 p = skip_vimgrep_pat(p, NULL, NULL);
4157 if (p == NULL)
4158 p = eap->arg;
4160 return p;
4164 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4165 * in the command line, so that things like % get expanded.
4167 static char_u *
4168 replace_makeprg(eap, p, cmdlinep)
4169 exarg_T *eap;
4170 char_u *p;
4171 char_u **cmdlinep;
4173 char_u *new_cmdline;
4174 char_u *program;
4175 char_u *pos;
4176 char_u *ptr;
4177 int len;
4178 int i;
4181 * Don't do it when ":vimgrep" is used for ":grep".
4183 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4184 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4185 || eap->cmdidx == CMD_grepadd
4186 || eap->cmdidx == CMD_lgrepadd)
4187 && !grep_internal(eap->cmdidx))
4189 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4190 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
4192 if (*curbuf->b_p_gp == NUL)
4193 program = p_gp;
4194 else
4195 program = curbuf->b_p_gp;
4197 else
4199 if (*curbuf->b_p_mp == NUL)
4200 program = p_mp;
4201 else
4202 program = curbuf->b_p_mp;
4205 p = skipwhite(p);
4207 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4209 /* replace $* by given arguments */
4210 i = 1;
4211 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4212 ++i;
4213 len = (int)STRLEN(p);
4214 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4215 if (new_cmdline == NULL)
4216 return NULL; /* out of memory */
4217 ptr = new_cmdline;
4218 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4220 i = (int)(pos - program);
4221 STRNCPY(ptr, program, i);
4222 STRCPY(ptr += i, p);
4223 ptr += len;
4224 program = pos + 2;
4226 STRCPY(ptr, program);
4228 else
4230 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4231 if (new_cmdline == NULL)
4232 return NULL; /* out of memory */
4233 STRCPY(new_cmdline, program);
4234 STRCAT(new_cmdline, " ");
4235 STRCAT(new_cmdline, p);
4237 msg_make(p);
4239 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4240 vim_free(*cmdlinep);
4241 *cmdlinep = new_cmdline;
4242 p = new_cmdline;
4244 return p;
4246 #endif
4249 * Expand file name in Ex command argument.
4250 * Return FAIL for failure, OK otherwise.
4253 expand_filename(eap, cmdlinep, errormsgp)
4254 exarg_T *eap;
4255 char_u **cmdlinep;
4256 char_u **errormsgp;
4258 int has_wildcards; /* need to expand wildcards */
4259 char_u *repl;
4260 int srclen;
4261 char_u *p;
4262 int n;
4263 int escaped;
4265 #ifdef FEAT_QUICKFIX
4266 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4267 p = skip_grep_pat(eap);
4268 #else
4269 p = eap->arg;
4270 #endif
4273 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4274 * the file name contains a wildcard it should not cause expanding.
4275 * (it will be expanded anyway if there is a wildcard before replacing).
4277 has_wildcards = mch_has_wildcard(p);
4278 while (*p != NUL)
4280 #ifdef FEAT_EVAL
4281 /* Skip over `=expr`, wildcards in it are not expanded. */
4282 if (p[0] == '`' && p[1] == '=')
4284 p += 2;
4285 (void)skip_expr(&p);
4286 if (*p == '`')
4287 ++p;
4288 continue;
4290 #endif
4292 * Quick check if this cannot be the start of a special string.
4293 * Also removes backslash before '%', '#' and '<'.
4295 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4297 ++p;
4298 continue;
4302 * Try to find a match at this position.
4304 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4305 errormsgp, &escaped);
4306 if (*errormsgp != NULL) /* error detected */
4307 return FAIL;
4308 if (repl == NULL) /* no match found */
4310 p += srclen;
4311 continue;
4314 /* Wildcards won't be expanded below, the replacement is taken
4315 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4316 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4318 char_u *l = repl;
4320 repl = expand_env_save(repl);
4321 vim_free(l);
4324 /* Need to escape white space et al. with a backslash.
4325 * Don't do this for:
4326 * - replacement that already has been escaped: "##"
4327 * - shell commands (may have to use quotes instead).
4328 * - non-unix systems when there is a single argument (spaces don't
4329 * separate arguments then).
4331 if (!eap->usefilter
4332 && !escaped
4333 && eap->cmdidx != CMD_bang
4334 && eap->cmdidx != CMD_make
4335 && eap->cmdidx != CMD_lmake
4336 && eap->cmdidx != CMD_grep
4337 && eap->cmdidx != CMD_lgrep
4338 && eap->cmdidx != CMD_grepadd
4339 && eap->cmdidx != CMD_lgrepadd
4340 #ifndef UNIX
4341 && !(eap->argt & NOSPC)
4342 #endif
4345 char_u *l;
4346 #ifdef BACKSLASH_IN_FILENAME
4347 /* Don't escape a backslash here, because rem_backslash() doesn't
4348 * remove it later. */
4349 static char_u *nobslash = (char_u *)" \t\"|";
4350 # define ESCAPE_CHARS nobslash
4351 #else
4352 # define ESCAPE_CHARS escape_chars
4353 #endif
4355 for (l = repl; *l; ++l)
4356 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4358 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4359 if (l != NULL)
4361 vim_free(repl);
4362 repl = l;
4364 break;
4368 /* For a shell command a '!' must be escaped. */
4369 if ((eap->usefilter || eap->cmdidx == CMD_bang)
4370 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
4372 char_u *l;
4374 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
4375 if (l != NULL)
4377 vim_free(repl);
4378 repl = l;
4379 /* For a sh-like shell escape "!" another time. */
4380 if (strstr((char *)p_sh, "sh") != NULL)
4382 l = vim_strsave_escaped(repl, (char_u *)"!");
4383 if (l != NULL)
4385 vim_free(repl);
4386 repl = l;
4392 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4393 vim_free(repl);
4394 if (p == NULL)
4395 return FAIL;
4399 * One file argument: Expand wildcards.
4400 * Don't do this with ":r !command" or ":w !command".
4402 if ((eap->argt & NOSPC) && !eap->usefilter)
4405 * May do this twice:
4406 * 1. Replace environment variables.
4407 * 2. Replace any other wildcards, remove backslashes.
4409 for (n = 1; n <= 2; ++n)
4411 if (n == 2)
4413 #ifdef UNIX
4415 * Only for Unix we check for more than one file name.
4416 * For other systems spaces are considered to be part
4417 * of the file name.
4418 * Only check here if there is no wildcard, otherwise
4419 * ExpandOne() will check for errors. This allows
4420 * ":e `ls ve*.c`" on Unix.
4422 if (!has_wildcards)
4423 for (p = eap->arg; *p; ++p)
4425 /* skip escaped characters */
4426 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4427 ++p;
4428 else if (vim_iswhite(*p))
4430 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4431 return FAIL;
4434 #endif
4437 * Halve the number of backslashes (this is Vi compatible).
4438 * For Unix and OS/2, when wildcards are expanded, this is
4439 * done by ExpandOne() below.
4441 #if defined(UNIX) || defined(OS2)
4442 if (!has_wildcards)
4443 #endif
4444 backslash_halve(eap->arg);
4447 if (has_wildcards)
4449 if (n == 1)
4452 * First loop: May expand environment variables. This
4453 * can be done much faster with expand_env() than with
4454 * something else (e.g., calling a shell).
4455 * After expanding environment variables, check again
4456 * if there are still wildcards present.
4458 if (vim_strchr(eap->arg, '$') != NULL
4459 || vim_strchr(eap->arg, '~') != NULL)
4461 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
4462 TRUE, TRUE, NULL);
4463 has_wildcards = mch_has_wildcard(NameBuff);
4464 p = NameBuff;
4466 else
4467 p = NULL;
4469 else /* n == 2 */
4471 expand_T xpc;
4473 ExpandInit(&xpc);
4474 xpc.xp_context = EXPAND_FILES;
4475 p = ExpandOne(&xpc, eap->arg, NULL,
4476 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4477 WILD_EXPAND_FREE);
4478 if (p == NULL)
4479 return FAIL;
4481 if (p != NULL)
4483 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4484 p, cmdlinep);
4485 if (n == 2) /* p came from ExpandOne() */
4486 vim_free(p);
4491 return OK;
4495 * Replace part of the command line, keeping eap->cmd, eap->arg and
4496 * eap->nextcmd correct.
4497 * "src" points to the part that is to be replaced, of length "srclen".
4498 * "repl" is the replacement string.
4499 * Returns a pointer to the character after the replaced string.
4500 * Returns NULL for failure.
4502 static char_u *
4503 repl_cmdline(eap, src, srclen, repl, cmdlinep)
4504 exarg_T *eap;
4505 char_u *src;
4506 int srclen;
4507 char_u *repl;
4508 char_u **cmdlinep;
4510 int len;
4511 int i;
4512 char_u *new_cmdline;
4515 * The new command line is build in new_cmdline[].
4516 * First allocate it.
4517 * Careful: a "+cmd" argument may have been NUL terminated.
4519 len = (int)STRLEN(repl);
4520 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
4521 if (eap->nextcmd != NULL)
4522 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4523 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4524 return NULL; /* out of memory! */
4527 * Copy the stuff before the expanded part.
4528 * Copy the expanded stuff.
4529 * Copy what came after the expanded part.
4530 * Copy the next commands, if there are any.
4532 i = (int)(src - *cmdlinep); /* length of part before match */
4533 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
4535 mch_memmove(new_cmdline + i, repl, (size_t)len);
4536 i += len; /* remember the end of the string */
4537 STRCPY(new_cmdline + i, src + srclen);
4538 src = new_cmdline + i; /* remember where to continue */
4540 if (eap->nextcmd != NULL) /* append next command */
4542 i = (int)STRLEN(new_cmdline) + 1;
4543 STRCPY(new_cmdline + i, eap->nextcmd);
4544 eap->nextcmd = new_cmdline + i;
4546 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4547 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4548 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4549 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4550 vim_free(*cmdlinep);
4551 *cmdlinep = new_cmdline;
4553 return src;
4557 * Check for '|' to separate commands and '"' to start comments.
4559 void
4560 separate_nextcmd(eap)
4561 exarg_T *eap;
4563 char_u *p;
4565 #ifdef FEAT_QUICKFIX
4566 p = skip_grep_pat(eap);
4567 #else
4568 p = eap->arg;
4569 #endif
4571 for ( ; *p; mb_ptr_adv(p))
4573 if (*p == Ctrl_V)
4575 if (eap->argt & (USECTRLV | XFILE))
4576 ++p; /* skip CTRL-V and next char */
4577 else
4578 /* remove CTRL-V and skip next char */
4579 STRMOVE(p, p + 1);
4580 if (*p == NUL) /* stop at NUL after CTRL-V */
4581 break;
4584 #ifdef FEAT_EVAL
4585 /* Skip over `=expr` when wildcards are expanded. */
4586 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
4588 p += 2;
4589 (void)skip_expr(&p);
4591 #endif
4593 /* Check for '"': start of comment or '|': next command */
4594 /* :@" and :*" do not start a comment!
4595 * :redir @" doesn't either. */
4596 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4597 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4598 || p != eap->arg)
4599 && (eap->cmdidx != CMD_redir
4600 || p != eap->arg + 1 || p[-1] != '@'))
4601 || *p == '|' || *p == '\n')
4604 * We remove the '\' before the '|', unless USECTRLV is used
4605 * AND 'b' is present in 'cpoptions'.
4607 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4608 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4610 STRMOVE(p - 1, p); /* remove the '\' */
4611 --p;
4613 else
4615 eap->nextcmd = check_nextcmd(p);
4616 *p = NUL;
4617 break;
4622 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4623 del_trailing_spaces(eap->arg);
4627 * get + command from ex argument
4629 static char_u *
4630 getargcmd(argp)
4631 char_u **argp;
4633 char_u *arg = *argp;
4634 char_u *command = NULL;
4636 if (*arg == '+') /* +[command] */
4638 ++arg;
4639 if (vim_isspace(*arg))
4640 command = dollar_command;
4641 else
4643 command = arg;
4644 arg = skip_cmd_arg(command, TRUE);
4645 if (*arg != NUL)
4646 *arg++ = NUL; /* terminate command with NUL */
4649 arg = skipwhite(arg); /* skip over spaces */
4650 *argp = arg;
4652 return command;
4656 * Find end of "+command" argument. Skip over "\ " and "\\".
4658 static char_u *
4659 skip_cmd_arg(p, rembs)
4660 char_u *p;
4661 int rembs; /* TRUE to halve the number of backslashes */
4663 while (*p && !vim_isspace(*p))
4665 if (*p == '\\' && p[1] != NUL)
4667 if (rembs)
4668 STRMOVE(p, p + 1);
4669 else
4670 ++p;
4672 mb_ptr_adv(p);
4674 return p;
4678 * Get "++opt=arg" argument.
4679 * Return FAIL or OK.
4681 static int
4682 getargopt(eap)
4683 exarg_T *eap;
4685 char_u *arg = eap->arg + 2;
4686 int *pp = NULL;
4687 #ifdef FEAT_MBYTE
4688 char_u *p;
4689 #endif
4691 /* ":edit ++[no]bin[ary] file" */
4692 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4694 if (*arg == 'n')
4696 arg += 2;
4697 eap->force_bin = FORCE_NOBIN;
4699 else
4700 eap->force_bin = FORCE_BIN;
4701 if (!checkforcmd(&arg, "binary", 3))
4702 return FAIL;
4703 eap->arg = skipwhite(arg);
4704 return OK;
4707 /* ":read ++edit file" */
4708 if (STRNCMP(arg, "edit", 4) == 0)
4710 eap->read_edit = TRUE;
4711 eap->arg = skipwhite(arg + 4);
4712 return OK;
4715 if (STRNCMP(arg, "ff", 2) == 0)
4717 arg += 2;
4718 pp = &eap->force_ff;
4720 else if (STRNCMP(arg, "fileformat", 10) == 0)
4722 arg += 10;
4723 pp = &eap->force_ff;
4725 #ifdef FEAT_MBYTE
4726 else if (STRNCMP(arg, "enc", 3) == 0)
4728 arg += 3;
4729 pp = &eap->force_enc;
4731 else if (STRNCMP(arg, "encoding", 8) == 0)
4733 arg += 8;
4734 pp = &eap->force_enc;
4736 else if (STRNCMP(arg, "bad", 3) == 0)
4738 arg += 3;
4739 pp = &eap->bad_char;
4741 #endif
4743 if (pp == NULL || *arg != '=')
4744 return FAIL;
4746 ++arg;
4747 *pp = (int)(arg - eap->cmd);
4748 arg = skip_cmd_arg(arg, FALSE);
4749 eap->arg = skipwhite(arg);
4750 *arg = NUL;
4752 #ifdef FEAT_MBYTE
4753 if (pp == &eap->force_ff)
4755 #endif
4756 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4757 return FAIL;
4758 #ifdef FEAT_MBYTE
4760 else if (pp == &eap->force_enc)
4762 /* Make 'fileencoding' lower case. */
4763 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4764 *p = TOLOWER_ASC(*p);
4766 else
4768 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4769 * "drop". */
4770 p = eap->cmd + eap->bad_char;
4771 if (STRICMP(p, "keep") == 0)
4772 eap->bad_char = BAD_KEEP;
4773 else if (STRICMP(p, "drop") == 0)
4774 eap->bad_char = BAD_DROP;
4775 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4776 eap->bad_char = *p;
4777 else
4778 return FAIL;
4780 #endif
4782 return OK;
4786 * ":abbreviate" and friends.
4788 static void
4789 ex_abbreviate(eap)
4790 exarg_T *eap;
4792 do_exmap(eap, TRUE); /* almost the same as mapping */
4796 * ":map" and friends.
4798 static void
4799 ex_map(eap)
4800 exarg_T *eap;
4803 * If we are sourcing .exrc or .vimrc in current directory we
4804 * print the mappings for security reasons.
4806 if (secure)
4808 secure = 2;
4809 msg_outtrans(eap->cmd);
4810 msg_putchar('\n');
4812 do_exmap(eap, FALSE);
4816 * ":unmap" and friends.
4818 static void
4819 ex_unmap(eap)
4820 exarg_T *eap;
4822 do_exmap(eap, FALSE);
4826 * ":mapclear" and friends.
4828 static void
4829 ex_mapclear(eap)
4830 exarg_T *eap;
4832 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4836 * ":abclear" and friends.
4838 static void
4839 ex_abclear(eap)
4840 exarg_T *eap;
4842 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4845 #ifdef FEAT_AUTOCMD
4846 static void
4847 ex_autocmd(eap)
4848 exarg_T *eap;
4851 * Disallow auto commands from .exrc and .vimrc in current
4852 * directory for security reasons.
4854 if (secure)
4856 secure = 2;
4857 eap->errmsg = e_curdir;
4859 else if (eap->cmdidx == CMD_autocmd)
4860 do_autocmd(eap->arg, eap->forceit);
4861 else
4862 do_augroup(eap->arg, eap->forceit);
4866 * ":doautocmd": Apply the automatic commands to the current buffer.
4868 static void
4869 ex_doautocmd(eap)
4870 exarg_T *eap;
4872 (void)do_doautocmd(eap->arg, TRUE);
4873 do_modelines(0);
4875 #endif
4877 #ifdef FEAT_LISTCMDS
4879 * :[N]bunload[!] [N] [bufname] unload buffer
4880 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4881 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4883 static void
4884 ex_bunload(eap)
4885 exarg_T *eap;
4887 eap->errmsg = do_bufdel(
4888 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4889 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4890 : DOBUF_UNLOAD, eap->arg,
4891 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4895 * :[N]buffer [N] to buffer N
4896 * :[N]sbuffer [N] to buffer N
4898 static void
4899 ex_buffer(eap)
4900 exarg_T *eap;
4902 if (*eap->arg)
4903 eap->errmsg = e_trailing;
4904 else
4906 if (eap->addr_count == 0) /* default is current buffer */
4907 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4908 else
4909 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4914 * :[N]bmodified [N] to next mod. buffer
4915 * :[N]sbmodified [N] to next mod. buffer
4917 static void
4918 ex_bmodified(eap)
4919 exarg_T *eap;
4921 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4925 * :[N]bnext [N] to next buffer
4926 * :[N]sbnext [N] split and to next buffer
4928 static void
4929 ex_bnext(eap)
4930 exarg_T *eap;
4932 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4936 * :[N]bNext [N] to previous buffer
4937 * :[N]bprevious [N] to previous buffer
4938 * :[N]sbNext [N] split and to previous buffer
4939 * :[N]sbprevious [N] split and to previous buffer
4941 static void
4942 ex_bprevious(eap)
4943 exarg_T *eap;
4945 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4949 * :brewind to first buffer
4950 * :bfirst to first buffer
4951 * :sbrewind split and to first buffer
4952 * :sbfirst split and to first buffer
4954 static void
4955 ex_brewind(eap)
4956 exarg_T *eap;
4958 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4962 * :blast to last buffer
4963 * :sblast split and to last buffer
4965 static void
4966 ex_blast(eap)
4967 exarg_T *eap;
4969 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4971 #endif
4974 ends_excmd(c)
4975 int c;
4977 return (c == NUL || c == '|' || c == '"' || c == '\n');
4980 #if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4981 || defined(PROTO)
4983 * Return the next command, after the first '|' or '\n'.
4984 * Return NULL if not found.
4986 char_u *
4987 find_nextcmd(p)
4988 char_u *p;
4990 while (*p != '|' && *p != '\n')
4992 if (*p == NUL)
4993 return NULL;
4994 ++p;
4996 return (p + 1);
4998 #endif
5001 * Check if *p is a separator between Ex commands.
5002 * Return NULL if it isn't, (p + 1) if it is.
5004 char_u *
5005 check_nextcmd(p)
5006 char_u *p;
5008 p = skipwhite(p);
5009 if (*p == '|' || *p == '\n')
5010 return (p + 1);
5011 else
5012 return NULL;
5016 * - if there are more files to edit
5017 * - and this is the last window
5018 * - and forceit not used
5019 * - and not repeated twice on a row
5020 * return FAIL and give error message if 'message' TRUE
5021 * return OK otherwise
5023 static int
5024 check_more(message, forceit)
5025 int message; /* when FALSE check only, no messages */
5026 int forceit;
5028 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5030 if (!forceit && only_one_window()
5031 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
5033 if (message)
5035 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5036 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5038 char_u buff[IOSIZE];
5040 if (n == 1)
5041 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
5042 else
5043 vim_snprintf((char *)buff, IOSIZE,
5044 _("%d more files to edit. Quit anyway?"), n);
5045 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5046 return OK;
5047 return FAIL;
5049 #endif
5050 if (n == 1)
5051 EMSG(_("E173: 1 more file to edit"));
5052 else
5053 EMSGN(_("E173: %ld more files to edit"), n);
5054 quitmore = 2; /* next try to quit is allowed */
5056 return FAIL;
5058 return OK;
5061 #ifdef FEAT_CMDL_COMPL
5063 * Function given to ExpandGeneric() to obtain the list of command names.
5065 char_u *
5066 get_command_name(xp, idx)
5067 expand_T *xp UNUSED;
5068 int idx;
5070 if (idx >= (int)CMD_SIZE)
5071 # ifdef FEAT_USR_CMDS
5072 return get_user_command_name(idx);
5073 # else
5074 return NULL;
5075 # endif
5076 return cmdnames[idx].cmd_name;
5078 #endif
5080 #if defined(FEAT_USR_CMDS) || defined(PROTO)
5081 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));
5082 static void uc_list __ARGS((char_u *name, size_t name_len));
5083 static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5084 static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5085 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));
5087 static int
5088 uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5089 char_u *name;
5090 size_t name_len;
5091 char_u *rep;
5092 long argt;
5093 long def;
5094 int flags;
5095 int compl;
5096 char_u *compl_arg;
5097 int force;
5099 ucmd_T *cmd = NULL;
5100 char_u *p;
5101 int i;
5102 int cmp = 1;
5103 char_u *rep_buf = NULL;
5104 garray_T *gap;
5106 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
5107 if (rep_buf == NULL)
5109 /* Can't replace termcodes - try using the string as is */
5110 rep_buf = vim_strsave(rep);
5112 /* Give up if out of memory */
5113 if (rep_buf == NULL)
5114 return FAIL;
5117 /* get address of growarray: global or in curbuf */
5118 if (flags & UC_BUFFER)
5120 gap = &curbuf->b_ucmds;
5121 if (gap->ga_itemsize == 0)
5122 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5124 else
5125 gap = &ucmds;
5127 /* Search for the command in the already defined commands. */
5128 for (i = 0; i < gap->ga_len; ++i)
5130 size_t len;
5132 cmd = USER_CMD_GA(gap, i);
5133 len = STRLEN(cmd->uc_name);
5134 cmp = STRNCMP(name, cmd->uc_name, name_len);
5135 if (cmp == 0)
5137 if (name_len < len)
5138 cmp = -1;
5139 else if (name_len > len)
5140 cmp = 1;
5143 if (cmp == 0)
5145 if (!force)
5147 EMSG(_("E174: Command already exists: add ! to replace it"));
5148 goto fail;
5151 vim_free(cmd->uc_rep);
5152 cmd->uc_rep = NULL;
5153 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5154 vim_free(cmd->uc_compl_arg);
5155 cmd->uc_compl_arg = NULL;
5156 #endif
5157 break;
5160 /* Stop as soon as we pass the name to add */
5161 if (cmp < 0)
5162 break;
5165 /* Extend the array unless we're replacing an existing command */
5166 if (cmp != 0)
5168 if (ga_grow(gap, 1) != OK)
5169 goto fail;
5170 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5171 goto fail;
5173 cmd = USER_CMD_GA(gap, i);
5174 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5176 ++gap->ga_len;
5178 cmd->uc_name = p;
5181 cmd->uc_rep = rep_buf;
5182 cmd->uc_argt = argt;
5183 cmd->uc_def = def;
5184 cmd->uc_compl = compl;
5185 #ifdef FEAT_EVAL
5186 cmd->uc_scriptID = current_SID;
5187 # ifdef FEAT_CMDL_COMPL
5188 cmd->uc_compl_arg = compl_arg;
5189 # endif
5190 #endif
5192 return OK;
5194 fail:
5195 vim_free(rep_buf);
5196 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5197 vim_free(compl_arg);
5198 #endif
5199 return FAIL;
5203 * List of names for completion for ":command" with the EXPAND_ flag.
5204 * Must be alphabetical for completion.
5206 static struct
5208 int expand;
5209 char *name;
5210 } command_complete[] =
5212 {EXPAND_AUGROUP, "augroup"},
5213 {EXPAND_BUFFERS, "buffer"},
5214 {EXPAND_COMMANDS, "command"},
5215 #if defined(FEAT_CSCOPE)
5216 {EXPAND_CSCOPE, "cscope"},
5217 #endif
5218 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5219 {EXPAND_USER_DEFINED, "custom"},
5220 {EXPAND_USER_LIST, "customlist"},
5221 #endif
5222 {EXPAND_DIRECTORIES, "dir"},
5223 {EXPAND_ENV_VARS, "environment"},
5224 {EXPAND_EVENTS, "event"},
5225 {EXPAND_EXPRESSION, "expression"},
5226 {EXPAND_FILES, "file"},
5227 {EXPAND_FUNCTIONS, "function"},
5228 {EXPAND_HELP, "help"},
5229 {EXPAND_HIGHLIGHT, "highlight"},
5230 {EXPAND_MAPPINGS, "mapping"},
5231 {EXPAND_MENUS, "menu"},
5232 {EXPAND_SETTINGS, "option"},
5233 {EXPAND_SHELLCMD, "shellcmd"},
5234 #if defined(FEAT_SIGNS)
5235 {EXPAND_SIGN, "sign"},
5236 #endif
5237 {EXPAND_TAGS, "tag"},
5238 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5239 {EXPAND_USER_VARS, "var"},
5240 {0, NULL}
5243 static void
5244 uc_list(name, name_len)
5245 char_u *name;
5246 size_t name_len;
5248 int i, j;
5249 int found = FALSE;
5250 ucmd_T *cmd;
5251 int len;
5252 long a;
5253 garray_T *gap;
5255 gap = &curbuf->b_ucmds;
5256 for (;;)
5258 for (i = 0; i < gap->ga_len; ++i)
5260 cmd = USER_CMD_GA(gap, i);
5261 a = (long)cmd->uc_argt;
5263 /* Skip commands which don't match the requested prefix */
5264 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5265 continue;
5267 /* Put out the title first time */
5268 if (!found)
5269 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5270 found = TRUE;
5271 msg_putchar('\n');
5272 if (got_int)
5273 break;
5275 /* Special cases */
5276 msg_putchar(a & BANG ? '!' : ' ');
5277 msg_putchar(a & REGSTR ? '"' : ' ');
5278 msg_putchar(gap != &ucmds ? 'b' : ' ');
5279 msg_putchar(' ');
5281 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5282 len = (int)STRLEN(cmd->uc_name) + 4;
5284 do {
5285 msg_putchar(' ');
5286 ++len;
5287 } while (len < 16);
5289 len = 0;
5291 /* Arguments */
5292 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5294 case 0: IObuff[len++] = '0'; break;
5295 case (EXTRA): IObuff[len++] = '*'; break;
5296 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5297 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5298 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5301 do {
5302 IObuff[len++] = ' ';
5303 } while (len < 5);
5305 /* Range */
5306 if (a & (RANGE|COUNT))
5308 if (a & COUNT)
5310 /* -count=N */
5311 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5312 len += (int)STRLEN(IObuff + len);
5314 else if (a & DFLALL)
5315 IObuff[len++] = '%';
5316 else if (cmd->uc_def >= 0)
5318 /* -range=N */
5319 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5320 len += (int)STRLEN(IObuff + len);
5322 else
5323 IObuff[len++] = '.';
5326 do {
5327 IObuff[len++] = ' ';
5328 } while (len < 11);
5330 /* Completion */
5331 for (j = 0; command_complete[j].expand != 0; ++j)
5332 if (command_complete[j].expand == cmd->uc_compl)
5334 STRCPY(IObuff + len, command_complete[j].name);
5335 len += (int)STRLEN(IObuff + len);
5336 break;
5339 do {
5340 IObuff[len++] = ' ';
5341 } while (len < 21);
5343 IObuff[len] = '\0';
5344 msg_outtrans(IObuff);
5346 msg_outtrans_special(cmd->uc_rep, FALSE);
5347 #ifdef FEAT_EVAL
5348 if (p_verbose > 0)
5349 last_set_msg(cmd->uc_scriptID);
5350 #endif
5351 out_flush();
5352 ui_breakcheck();
5353 if (got_int)
5354 break;
5356 if (gap == &ucmds || i < gap->ga_len)
5357 break;
5358 gap = &ucmds;
5361 if (!found)
5362 MSG(_("No user-defined commands found"));
5365 static char_u *
5366 uc_fun_cmd()
5368 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5369 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5370 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5371 0xb9, 0x7f, 0};
5372 int i;
5374 for (i = 0; fcmd[i]; ++i)
5375 IObuff[i] = fcmd[i] - 0x40;
5376 IObuff[i] = 0;
5377 return IObuff;
5380 static int
5381 uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5382 char_u *attr;
5383 size_t len;
5384 long *argt;
5385 long *def;
5386 int *flags;
5387 int *compl;
5388 char_u **compl_arg;
5390 char_u *p;
5392 if (len == 0)
5394 EMSG(_("E175: No attribute specified"));
5395 return FAIL;
5398 /* First, try the simple attributes (no arguments) */
5399 if (STRNICMP(attr, "bang", len) == 0)
5400 *argt |= BANG;
5401 else if (STRNICMP(attr, "buffer", len) == 0)
5402 *flags |= UC_BUFFER;
5403 else if (STRNICMP(attr, "register", len) == 0)
5404 *argt |= REGSTR;
5405 else if (STRNICMP(attr, "bar", len) == 0)
5406 *argt |= TRLBAR;
5407 else
5409 int i;
5410 char_u *val = NULL;
5411 size_t vallen = 0;
5412 size_t attrlen = len;
5414 /* Look for the attribute name - which is the part before any '=' */
5415 for (i = 0; i < (int)len; ++i)
5417 if (attr[i] == '=')
5419 val = &attr[i + 1];
5420 vallen = len - i - 1;
5421 attrlen = i;
5422 break;
5426 if (STRNICMP(attr, "nargs", attrlen) == 0)
5428 if (vallen == 1)
5430 if (*val == '0')
5431 /* Do nothing - this is the default */;
5432 else if (*val == '1')
5433 *argt |= (EXTRA | NOSPC | NEEDARG);
5434 else if (*val == '*')
5435 *argt |= EXTRA;
5436 else if (*val == '?')
5437 *argt |= (EXTRA | NOSPC);
5438 else if (*val == '+')
5439 *argt |= (EXTRA | NEEDARG);
5440 else
5441 goto wrong_nargs;
5443 else
5445 wrong_nargs:
5446 EMSG(_("E176: Invalid number of arguments"));
5447 return FAIL;
5450 else if (STRNICMP(attr, "range", attrlen) == 0)
5452 *argt |= RANGE;
5453 if (vallen == 1 && *val == '%')
5454 *argt |= DFLALL;
5455 else if (val != NULL)
5457 p = val;
5458 if (*def >= 0)
5460 two_count:
5461 EMSG(_("E177: Count cannot be specified twice"));
5462 return FAIL;
5465 *def = getdigits(&p);
5466 *argt |= (ZEROR | NOTADR);
5468 if (p != val + vallen || vallen == 0)
5470 invalid_count:
5471 EMSG(_("E178: Invalid default value for count"));
5472 return FAIL;
5476 else if (STRNICMP(attr, "count", attrlen) == 0)
5478 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
5480 if (val != NULL)
5482 p = val;
5483 if (*def >= 0)
5484 goto two_count;
5486 *def = getdigits(&p);
5488 if (p != val + vallen)
5489 goto invalid_count;
5492 if (*def < 0)
5493 *def = 0;
5495 else if (STRNICMP(attr, "complete", attrlen) == 0)
5497 if (val == NULL)
5499 EMSG(_("E179: argument required for -complete"));
5500 return FAIL;
5503 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5504 == FAIL)
5505 return FAIL;
5507 else
5509 char_u ch = attr[len];
5510 attr[len] = '\0';
5511 EMSG2(_("E181: Invalid attribute: %s"), attr);
5512 attr[len] = ch;
5513 return FAIL;
5517 return OK;
5521 * ":command ..."
5523 static void
5524 ex_command(eap)
5525 exarg_T *eap;
5527 char_u *name;
5528 char_u *end;
5529 char_u *p;
5530 long argt = 0;
5531 long def = -1;
5532 int flags = 0;
5533 int compl = EXPAND_NOTHING;
5534 char_u *compl_arg = NULL;
5535 int has_attr = (eap->arg[0] == '-');
5537 p = eap->arg;
5539 /* Check for attributes */
5540 while (*p == '-')
5542 ++p;
5543 end = skiptowhite(p);
5544 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5545 == FAIL)
5546 return;
5547 p = skipwhite(end);
5550 /* Get the name (if any) and skip to the following argument */
5551 name = p;
5552 if (ASCII_ISALPHA(*p))
5553 while (ASCII_ISALNUM(*p))
5554 ++p;
5555 if (!ends_excmd(*p) && !vim_iswhite(*p))
5557 EMSG(_("E182: Invalid command name"));
5558 return;
5560 end = p;
5562 /* If there is nothing after the name, and no attributes were specified,
5563 * we are listing commands
5565 p = skipwhite(end);
5566 if (!has_attr && ends_excmd(*p))
5568 uc_list(name, end - name);
5570 else if (!ASCII_ISUPPER(*name))
5572 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5573 return;
5575 else
5576 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5577 eap->forceit);
5581 * ":comclear"
5582 * Clear all user commands, global and for current buffer.
5584 void
5585 ex_comclear(eap)
5586 exarg_T *eap UNUSED;
5588 uc_clear(&ucmds);
5589 uc_clear(&curbuf->b_ucmds);
5593 * Clear all user commands for "gap".
5595 void
5596 uc_clear(gap)
5597 garray_T *gap;
5599 int i;
5600 ucmd_T *cmd;
5602 for (i = 0; i < gap->ga_len; ++i)
5604 cmd = USER_CMD_GA(gap, i);
5605 vim_free(cmd->uc_name);
5606 vim_free(cmd->uc_rep);
5607 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5608 vim_free(cmd->uc_compl_arg);
5609 # endif
5611 ga_clear(gap);
5614 static void
5615 ex_delcommand(eap)
5616 exarg_T *eap;
5618 int i = 0;
5619 ucmd_T *cmd = NULL;
5620 int cmp = -1;
5621 garray_T *gap;
5623 gap = &curbuf->b_ucmds;
5624 for (;;)
5626 for (i = 0; i < gap->ga_len; ++i)
5628 cmd = USER_CMD_GA(gap, i);
5629 cmp = STRCMP(eap->arg, cmd->uc_name);
5630 if (cmp <= 0)
5631 break;
5633 if (gap == &ucmds || cmp == 0)
5634 break;
5635 gap = &ucmds;
5638 if (cmp != 0)
5640 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5641 return;
5644 vim_free(cmd->uc_name);
5645 vim_free(cmd->uc_rep);
5646 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5647 vim_free(cmd->uc_compl_arg);
5648 # endif
5650 --gap->ga_len;
5652 if (i < gap->ga_len)
5653 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5657 * split and quote args for <f-args>
5659 static char_u *
5660 uc_split_args(arg, lenp)
5661 char_u *arg;
5662 size_t *lenp;
5664 char_u *buf;
5665 char_u *p;
5666 char_u *q;
5667 int len;
5669 /* Precalculate length */
5670 p = arg;
5671 len = 2; /* Initial and final quotes */
5673 while (*p)
5675 if (p[0] == '\\' && p[1] == '\\')
5677 len += 2;
5678 p += 2;
5680 else if (p[0] == '\\' && vim_iswhite(p[1]))
5682 len += 1;
5683 p += 2;
5685 else if (*p == '\\' || *p == '"')
5687 len += 2;
5688 p += 1;
5690 else if (vim_iswhite(*p))
5692 p = skipwhite(p);
5693 if (*p == NUL)
5694 break;
5695 len += 3; /* "," */
5697 else
5699 ++len;
5700 ++p;
5704 buf = alloc(len + 1);
5705 if (buf == NULL)
5707 *lenp = 0;
5708 return buf;
5711 p = arg;
5712 q = buf;
5713 *q++ = '"';
5714 while (*p)
5716 if (p[0] == '\\' && p[1] == '\\')
5718 *q++ = '\\';
5719 *q++ = '\\';
5720 p += 2;
5722 else if (p[0] == '\\' && vim_iswhite(p[1]))
5724 *q++ = p[1];
5725 p += 2;
5727 else if (*p == '\\' || *p == '"')
5729 *q++ = '\\';
5730 *q++ = *p++;
5732 else if (vim_iswhite(*p))
5734 p = skipwhite(p);
5735 if (*p == NUL)
5736 break;
5737 *q++ = '"';
5738 *q++ = ',';
5739 *q++ = '"';
5741 else
5743 *q++ = *p++;
5746 *q++ = '"';
5747 *q = 0;
5749 *lenp = len;
5750 return buf;
5754 * Check for a <> code in a user command.
5755 * "code" points to the '<'. "len" the length of the <> (inclusive).
5756 * "buf" is where the result is to be added.
5757 * "split_buf" points to a buffer used for splitting, caller should free it.
5758 * "split_len" is the length of what "split_buf" contains.
5759 * Returns the length of the replacement, which has been added to "buf".
5760 * Returns -1 if there was no match, and only the "<" has been copied.
5762 static size_t
5763 uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5764 char_u *code;
5765 size_t len;
5766 char_u *buf;
5767 ucmd_T *cmd; /* the user command we're expanding */
5768 exarg_T *eap; /* ex arguments */
5769 char_u **split_buf;
5770 size_t *split_len;
5772 size_t result = 0;
5773 char_u *p = code + 1;
5774 size_t l = len - 2;
5775 int quote = 0;
5776 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5777 ct_LT, ct_NONE } type = ct_NONE;
5779 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5781 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5782 p += 2;
5783 l -= 2;
5786 ++l;
5787 if (l <= 1)
5788 type = ct_NONE;
5789 else if (STRNICMP(p, "args>", l) == 0)
5790 type = ct_ARGS;
5791 else if (STRNICMP(p, "bang>", l) == 0)
5792 type = ct_BANG;
5793 else if (STRNICMP(p, "count>", l) == 0)
5794 type = ct_COUNT;
5795 else if (STRNICMP(p, "line1>", l) == 0)
5796 type = ct_LINE1;
5797 else if (STRNICMP(p, "line2>", l) == 0)
5798 type = ct_LINE2;
5799 else if (STRNICMP(p, "lt>", l) == 0)
5800 type = ct_LT;
5801 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
5802 type = ct_REGISTER;
5804 switch (type)
5806 case ct_ARGS:
5807 /* Simple case first */
5808 if (*eap->arg == NUL)
5810 if (quote == 1)
5812 result = 2;
5813 if (buf != NULL)
5814 STRCPY(buf, "''");
5816 else
5817 result = 0;
5818 break;
5821 /* When specified there is a single argument don't split it.
5822 * Works for ":Cmd %" when % is "a b c". */
5823 if ((eap->argt & NOSPC) && quote == 2)
5824 quote = 1;
5826 switch (quote)
5828 case 0: /* No quoting, no splitting */
5829 result = STRLEN(eap->arg);
5830 if (buf != NULL)
5831 STRCPY(buf, eap->arg);
5832 break;
5833 case 1: /* Quote, but don't split */
5834 result = STRLEN(eap->arg) + 2;
5835 for (p = eap->arg; *p; ++p)
5837 if (*p == '\\' || *p == '"')
5838 ++result;
5841 if (buf != NULL)
5843 *buf++ = '"';
5844 for (p = eap->arg; *p; ++p)
5846 if (*p == '\\' || *p == '"')
5847 *buf++ = '\\';
5848 *buf++ = *p;
5850 *buf = '"';
5853 break;
5854 case 2: /* Quote and split (<f-args>) */
5855 /* This is hard, so only do it once, and cache the result */
5856 if (*split_buf == NULL)
5857 *split_buf = uc_split_args(eap->arg, split_len);
5859 result = *split_len;
5860 if (buf != NULL && result != 0)
5861 STRCPY(buf, *split_buf);
5863 break;
5865 break;
5867 case ct_BANG:
5868 result = eap->forceit ? 1 : 0;
5869 if (quote)
5870 result += 2;
5871 if (buf != NULL)
5873 if (quote)
5874 *buf++ = '"';
5875 if (eap->forceit)
5876 *buf++ = '!';
5877 if (quote)
5878 *buf = '"';
5880 break;
5882 case ct_LINE1:
5883 case ct_LINE2:
5884 case ct_COUNT:
5886 char num_buf[20];
5887 long num = (type == ct_LINE1) ? eap->line1 :
5888 (type == ct_LINE2) ? eap->line2 :
5889 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5890 size_t num_len;
5892 sprintf(num_buf, "%ld", num);
5893 num_len = STRLEN(num_buf);
5894 result = num_len;
5896 if (quote)
5897 result += 2;
5899 if (buf != NULL)
5901 if (quote)
5902 *buf++ = '"';
5903 STRCPY(buf, num_buf);
5904 buf += num_len;
5905 if (quote)
5906 *buf = '"';
5909 break;
5912 case ct_REGISTER:
5913 result = eap->regname ? 1 : 0;
5914 if (quote)
5915 result += 2;
5916 if (buf != NULL)
5918 if (quote)
5919 *buf++ = '\'';
5920 if (eap->regname)
5921 *buf++ = eap->regname;
5922 if (quote)
5923 *buf = '\'';
5925 break;
5927 case ct_LT:
5928 result = 1;
5929 if (buf != NULL)
5930 *buf = '<';
5931 break;
5933 default:
5934 /* Not recognized: just copy the '<' and return -1. */
5935 result = (size_t)-1;
5936 if (buf != NULL)
5937 *buf = '<';
5938 break;
5941 return result;
5944 static void
5945 do_ucmd(eap)
5946 exarg_T *eap;
5948 char_u *buf;
5949 char_u *p;
5950 char_u *q;
5952 char_u *start;
5953 char_u *end = NULL;
5954 char_u *ksp;
5955 size_t len, totlen;
5957 size_t split_len = 0;
5958 char_u *split_buf = NULL;
5959 ucmd_T *cmd;
5960 #ifdef FEAT_EVAL
5961 scid_T save_current_SID = current_SID;
5962 #endif
5964 if (eap->cmdidx == CMD_USER)
5965 cmd = USER_CMD(eap->useridx);
5966 else
5967 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5970 * Replace <> in the command by the arguments.
5971 * First round: "buf" is NULL, compute length, allocate "buf".
5972 * Second round: copy result into "buf".
5974 buf = NULL;
5975 for (;;)
5977 p = cmd->uc_rep; /* source */
5978 q = buf; /* destination */
5979 totlen = 0;
5981 for (;;)
5983 start = vim_strchr(p, '<');
5984 if (start != NULL)
5985 end = vim_strchr(start + 1, '>');
5986 if (buf != NULL)
5988 ksp = vim_strchr(p, K_SPECIAL);
5989 if (ksp != NULL && (start == NULL || ksp < start || end == NULL)
5990 && ((ksp[1] == KS_SPECIAL && ksp[2] == KE_FILLER)
5991 # ifdef FEAT_GUI
5992 || (ksp[1] == KS_EXTRA && ksp[2] == (int)KE_CSI)
5993 # endif
5996 /* K_SPECIAL han been put in the buffer as K_SPECIAL
5997 * KS_SPECIAL KE_FILLER, like for mappings, but
5998 * do_cmdline() doesn't handle that, so convert it back.
5999 * Also change K_SPECIAL KS_EXTRA KE_CSI into CSI. */
6000 len = ksp - p;
6001 if (len > 0)
6003 mch_memmove(q, p, len);
6004 q += len;
6006 *q++ = ksp[1] == KS_SPECIAL ? K_SPECIAL : CSI;
6007 p = ksp + 3;
6008 continue;
6012 /* break if there no <item> is found */
6013 if (start == NULL || end == NULL)
6014 break;
6016 /* Include the '>' */
6017 ++end;
6019 /* Take everything up to the '<' */
6020 len = start - p;
6021 if (buf == NULL)
6022 totlen += len;
6023 else
6025 mch_memmove(q, p, len);
6026 q += len;
6029 len = uc_check_code(start, end - start, q, cmd, eap,
6030 &split_buf, &split_len);
6031 if (len == (size_t)-1)
6033 /* no match, continue after '<' */
6034 p = start + 1;
6035 len = 1;
6037 else
6038 p = end;
6039 if (buf == NULL)
6040 totlen += len;
6041 else
6042 q += len;
6044 if (buf != NULL) /* second time here, finished */
6046 STRCPY(q, p);
6047 break;
6050 totlen += STRLEN(p); /* Add on the trailing characters */
6051 buf = alloc((unsigned)(totlen + 1));
6052 if (buf == NULL)
6054 vim_free(split_buf);
6055 return;
6059 #ifdef FEAT_EVAL
6060 current_SID = cmd->uc_scriptID;
6061 #endif
6062 (void)do_cmdline(buf, eap->getline, eap->cookie,
6063 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
6064 #ifdef FEAT_EVAL
6065 current_SID = save_current_SID;
6066 #endif
6067 vim_free(buf);
6068 vim_free(split_buf);
6071 # if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6072 static char_u *
6073 get_user_command_name(idx)
6074 int idx;
6076 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6080 * Function given to ExpandGeneric() to obtain the list of user command names.
6082 char_u *
6083 get_user_commands(xp, idx)
6084 expand_T *xp UNUSED;
6085 int idx;
6087 if (idx < curbuf->b_ucmds.ga_len)
6088 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6089 idx -= curbuf->b_ucmds.ga_len;
6090 if (idx < ucmds.ga_len)
6091 return USER_CMD(idx)->uc_name;
6092 return NULL;
6096 * Function given to ExpandGeneric() to obtain the list of user command
6097 * attributes.
6099 char_u *
6100 get_user_cmd_flags(xp, idx)
6101 expand_T *xp UNUSED;
6102 int idx;
6104 static char *user_cmd_flags[] =
6105 {"bang", "bar", "buffer", "complete", "count",
6106 "nargs", "range", "register"};
6108 if (idx >= (int)(sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0])))
6109 return NULL;
6110 return (char_u *)user_cmd_flags[idx];
6114 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6116 char_u *
6117 get_user_cmd_nargs(xp, idx)
6118 expand_T *xp UNUSED;
6119 int idx;
6121 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6123 if (idx >= (int)(sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0])))
6124 return NULL;
6125 return (char_u *)user_cmd_nargs[idx];
6129 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6131 char_u *
6132 get_user_cmd_complete(xp, idx)
6133 expand_T *xp UNUSED;
6134 int idx;
6136 return (char_u *)command_complete[idx].name;
6138 # endif /* FEAT_CMDL_COMPL */
6140 #endif /* FEAT_USR_CMDS */
6142 #if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6144 * Parse a completion argument "value[vallen]".
6145 * The detected completion goes in "*complp", argument type in "*argt".
6146 * When there is an argument, for function and user defined completion, it's
6147 * copied to allocated memory and stored in "*compl_arg".
6148 * Returns FAIL if something is wrong.
6151 parse_compl_arg(value, vallen, complp, argt, compl_arg)
6152 char_u *value;
6153 int vallen;
6154 int *complp;
6155 long *argt;
6156 char_u **compl_arg;
6158 char_u *arg = NULL;
6159 size_t arglen = 0;
6160 int i;
6161 int valend = vallen;
6163 /* Look for any argument part - which is the part after any ',' */
6164 for (i = 0; i < vallen; ++i)
6166 if (value[i] == ',')
6168 arg = &value[i + 1];
6169 arglen = vallen - i - 1;
6170 valend = i;
6171 break;
6175 for (i = 0; command_complete[i].expand != 0; ++i)
6177 if ((int)STRLEN(command_complete[i].name) == valend
6178 && STRNCMP(value, command_complete[i].name, valend) == 0)
6180 *complp = command_complete[i].expand;
6181 if (command_complete[i].expand == EXPAND_BUFFERS)
6182 *argt |= BUFNAME;
6183 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6184 || command_complete[i].expand == EXPAND_FILES)
6185 *argt |= XFILE;
6186 break;
6190 if (command_complete[i].expand == 0)
6192 EMSG2(_("E180: Invalid complete value: %s"), value);
6193 return FAIL;
6196 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6197 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6198 && arg != NULL)
6199 # else
6200 if (arg != NULL)
6201 # endif
6203 EMSG(_("E468: Completion argument only allowed for custom completion"));
6204 return FAIL;
6207 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6208 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6209 && arg == NULL)
6211 EMSG(_("E467: Custom completion requires a function argument"));
6212 return FAIL;
6215 if (arg != NULL)
6216 *compl_arg = vim_strnsave(arg, (int)arglen);
6217 # endif
6218 return OK;
6220 #endif
6222 static void
6223 ex_colorscheme(eap)
6224 exarg_T *eap;
6226 if (load_colors(eap->arg) == FAIL)
6227 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6230 static void
6231 ex_highlight(eap)
6232 exarg_T *eap;
6234 if (*eap->arg == NUL && eap->cmd[2] == '!')
6235 MSG(_("Greetings, Vim user!"));
6236 do_highlight(eap->arg, eap->forceit, FALSE);
6241 * Call this function if we thought we were going to exit, but we won't
6242 * (because of an error). May need to restore the terminal mode.
6244 void
6245 not_exiting()
6247 exiting = FALSE;
6248 settmode(TMODE_RAW);
6252 * ":quit": quit current window, quit Vim if closed the last window.
6254 static void
6255 ex_quit(eap)
6256 exarg_T *eap;
6258 #ifdef FEAT_CMDWIN
6259 if (cmdwin_type != 0)
6261 cmdwin_result = Ctrl_C;
6262 return;
6264 #endif
6265 /* Don't quit while editing the command line. */
6266 if (text_locked())
6268 text_locked_msg();
6269 return;
6271 #ifdef FEAT_AUTOCMD
6272 if (curbuf_locked())
6273 return;
6274 #endif
6276 #ifdef FEAT_NETBEANS_INTG
6277 netbeansForcedQuit = eap->forceit;
6278 #endif
6281 * If there are more files or windows we won't exit.
6283 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6284 exiting = TRUE;
6285 if ((!P_HID(curbuf)
6286 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6287 || check_more(TRUE, eap->forceit) == FAIL
6288 || (only_one_window() && check_changed_any(eap->forceit)))
6290 not_exiting();
6292 else
6294 #ifdef FEAT_WINDOWS
6295 if (only_one_window()) /* quit last window */
6296 #endif
6297 getout(0);
6298 #ifdef FEAT_WINDOWS
6299 # ifdef FEAT_GUI
6300 need_mouse_correct = TRUE;
6301 # endif
6302 /* close window; may free buffer */
6303 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6304 #endif
6309 * ":cquit".
6311 static void
6312 ex_cquit(eap)
6313 exarg_T *eap UNUSED;
6315 getout(1); /* this does not always pass on the exit code to the Manx
6316 compiler. why? */
6320 * ":qall": try to quit all windows
6322 static void
6323 ex_quit_all(eap)
6324 exarg_T *eap;
6326 # ifdef FEAT_CMDWIN
6327 if (cmdwin_type != 0)
6329 if (eap->forceit)
6330 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6331 else
6332 cmdwin_result = K_XF2;
6333 return;
6335 # endif
6337 /* Don't quit while editing the command line. */
6338 if (text_locked())
6340 text_locked_msg();
6341 return;
6343 #ifdef FEAT_AUTOCMD
6344 if (curbuf_locked())
6345 return;
6346 #endif
6348 exiting = TRUE;
6349 if (eap->forceit || !check_changed_any(FALSE))
6350 getout(0);
6351 not_exiting();
6354 #if defined(FEAT_WINDOWS) || defined(PROTO)
6356 * ":close": close current window, unless it is the last one
6358 static void
6359 ex_close(eap)
6360 exarg_T *eap;
6362 # ifdef FEAT_CMDWIN
6363 if (cmdwin_type != 0)
6364 cmdwin_result = K_IGNORE;
6365 else
6366 # endif
6367 if (!text_locked()
6368 #ifdef FEAT_AUTOCMD
6369 && !curbuf_locked()
6370 #endif
6372 ex_win_close(eap->forceit, curwin, NULL);
6375 # ifdef FEAT_QUICKFIX
6377 * ":pclose": Close any preview window.
6379 static void
6380 ex_pclose(eap)
6381 exarg_T *eap;
6383 win_T *win;
6385 for (win = firstwin; win != NULL; win = win->w_next)
6386 if (win->w_p_pvw)
6388 ex_win_close(eap->forceit, win, NULL);
6389 break;
6392 # endif
6395 * Close window "win" and take care of handling closing the last window for a
6396 * modified buffer.
6398 static void
6399 ex_win_close(forceit, win, tp)
6400 int forceit;
6401 win_T *win;
6402 tabpage_T *tp; /* NULL or the tab page "win" is in */
6404 int need_hide;
6405 buf_T *buf = win->w_buffer;
6407 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
6408 if (need_hide && !P_HID(buf) && !forceit)
6410 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
6411 if ((p_confirm || cmdmod.confirm) && p_write)
6413 dialog_changed(buf, FALSE);
6414 if (buf_valid(buf) && bufIsChanged(buf))
6415 return;
6416 need_hide = FALSE;
6418 else
6419 # endif
6421 EMSG(_(e_nowrtmsg));
6422 return;
6426 # ifdef FEAT_GUI
6427 need_mouse_correct = TRUE;
6428 # endif
6430 /* free buffer when not hiding it or when it's a scratch buffer */
6431 if (tp == NULL)
6432 win_close(win, !need_hide && !P_HID(buf));
6433 else
6434 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
6438 * ":tabclose": close current tab page, unless it is the last one.
6439 * ":tabclose N": close tab page N.
6441 static void
6442 ex_tabclose(eap)
6443 exarg_T *eap;
6445 tabpage_T *tp;
6447 # ifdef FEAT_CMDWIN
6448 if (cmdwin_type != 0)
6449 cmdwin_result = K_IGNORE;
6450 else
6451 # endif
6452 if (first_tabpage->tp_next == NULL)
6453 EMSG(_("E784: Cannot close last tab page"));
6454 else
6456 if (eap->addr_count > 0)
6458 tp = find_tabpage((int)eap->line2);
6459 if (tp == NULL)
6461 beep_flush();
6462 return;
6464 if (tp != curtab)
6466 tabpage_close_other(tp, eap->forceit);
6467 return;
6470 if (!text_locked()
6471 #ifdef FEAT_AUTOCMD
6472 && !curbuf_locked()
6473 #endif
6475 tabpage_close(eap->forceit);
6480 * ":tabonly": close all tab pages except the current one
6482 static void
6483 ex_tabonly(eap)
6484 exarg_T *eap;
6486 tabpage_T *tp;
6487 int done;
6489 # ifdef FEAT_CMDWIN
6490 if (cmdwin_type != 0)
6491 cmdwin_result = K_IGNORE;
6492 else
6493 # endif
6494 if (first_tabpage->tp_next == NULL)
6495 MSG(_("Already only one tab page"));
6496 else
6498 /* Repeat this up to a 1000 times, because autocommands may mess
6499 * up the lists. */
6500 for (done = 0; done < 1000; ++done)
6502 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6503 if (tp->tp_topframe != topframe)
6505 tabpage_close_other(tp, eap->forceit);
6506 /* if we failed to close it quit */
6507 if (valid_tabpage(tp))
6508 done = 1000;
6509 /* start over, "tp" is now invalid */
6510 break;
6512 if (first_tabpage->tp_next == NULL)
6513 break;
6519 * Close the current tab page.
6521 void
6522 tabpage_close(forceit)
6523 int forceit;
6525 /* First close all the windows but the current one. If that worked then
6526 * close the last window in this tab, that will close it. */
6527 if (lastwin != firstwin)
6528 close_others(TRUE, forceit);
6529 if (lastwin == firstwin)
6530 ex_win_close(forceit, curwin, NULL);
6531 # ifdef FEAT_GUI
6532 need_mouse_correct = TRUE;
6533 # endif
6537 * Close tab page "tp", which is not the current tab page.
6538 * Note that autocommands may make "tp" invalid.
6539 * Also takes care of the tab pages line disappearing when closing the
6540 * last-but-one tab page.
6542 void
6543 tabpage_close_other(tp, forceit)
6544 tabpage_T *tp;
6545 int forceit;
6547 int done = 0;
6548 win_T *wp;
6549 int h = tabline_height();
6551 /* Limit to 1000 windows, autocommands may add a window while we close
6552 * one. OK, so I'm paranoid... */
6553 while (++done < 1000)
6555 wp = tp->tp_firstwin;
6556 ex_win_close(forceit, wp, tp);
6558 /* Autocommands may delete the tab page under our fingers and we may
6559 * fail to close a window with a modified buffer. */
6560 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
6561 break;
6564 redraw_tabline = TRUE;
6565 if (h != tabline_height())
6566 shell_new_rows();
6570 * ":only".
6572 static void
6573 ex_only(eap)
6574 exarg_T *eap;
6576 # ifdef FEAT_GUI
6577 need_mouse_correct = TRUE;
6578 # endif
6579 close_others(TRUE, eap->forceit);
6583 * ":all" and ":sall".
6584 * Also used for ":tab drop file ..." after setting the argument list.
6586 void
6587 ex_all(eap)
6588 exarg_T *eap;
6590 if (eap->addr_count == 0)
6591 eap->line2 = 9999;
6592 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
6594 #endif /* FEAT_WINDOWS */
6596 static void
6597 ex_hide(eap)
6598 exarg_T *eap;
6600 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6601 eap->errmsg = e_invarg;
6602 else
6604 /* ":hide" or ":hide | cmd": hide current window */
6605 eap->nextcmd = check_nextcmd(eap->arg);
6606 #ifdef FEAT_WINDOWS
6607 if (!eap->skip)
6609 # ifdef FEAT_GUI
6610 need_mouse_correct = TRUE;
6611 # endif
6612 win_close(curwin, FALSE); /* don't free buffer */
6614 #endif
6619 * ":stop" and ":suspend": Suspend Vim.
6621 static void
6622 ex_stop(eap)
6623 exarg_T *eap;
6626 * Disallow suspending for "rvim".
6628 if (!check_restricted()
6629 #ifdef WIN3264
6631 * Check if external commands are allowed now.
6633 && can_end_termcap_mode(TRUE)
6634 #endif
6637 if (!eap->forceit)
6638 autowrite_all();
6639 windgoto((int)Rows - 1, 0);
6640 out_char('\n');
6641 out_flush();
6642 stoptermcap();
6643 out_flush(); /* needed for SUN to restore xterm buffer */
6644 #ifdef FEAT_TITLE
6645 mch_restore_title(3); /* restore window titles */
6646 #endif
6647 ui_suspend(); /* call machine specific function */
6648 #ifdef FEAT_TITLE
6649 maketitle();
6650 resettitle(); /* force updating the title */
6651 #endif
6652 starttermcap();
6653 scroll_start(); /* scroll screen before redrawing */
6654 redraw_later_clear();
6655 shell_resized(); /* may have resized window */
6660 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6662 static void
6663 ex_exit(eap)
6664 exarg_T *eap;
6666 #ifdef FEAT_CMDWIN
6667 if (cmdwin_type != 0)
6669 cmdwin_result = Ctrl_C;
6670 return;
6672 #endif
6673 /* Don't quit while editing the command line. */
6674 if (text_locked())
6676 text_locked_msg();
6677 return;
6679 #ifdef FEAT_AUTOCMD
6680 if (curbuf_locked())
6681 return;
6682 #endif
6685 * if more files or windows we won't exit
6687 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6688 exiting = TRUE;
6689 if ( ((eap->cmdidx == CMD_wq
6690 || curbufIsChanged())
6691 && do_write(eap) == FAIL)
6692 || check_more(TRUE, eap->forceit) == FAIL
6693 || (only_one_window() && check_changed_any(eap->forceit)))
6695 not_exiting();
6697 else
6699 #ifdef FEAT_WINDOWS
6700 if (only_one_window()) /* quit last window, exit Vim */
6701 #endif
6702 getout(0);
6703 #ifdef FEAT_WINDOWS
6704 # ifdef FEAT_GUI
6705 need_mouse_correct = TRUE;
6706 # endif
6707 /* quit current window, may free buffer */
6708 win_close(curwin, !P_HID(curwin->w_buffer));
6709 #endif
6714 * ":print", ":list", ":number".
6716 static void
6717 ex_print(eap)
6718 exarg_T *eap;
6720 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6721 EMSG(_(e_emptybuf));
6722 else
6724 for ( ;!got_int; ui_breakcheck())
6726 print_line(eap->line1,
6727 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6728 || (eap->flags & EXFLAG_NR)),
6729 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6730 if (++eap->line1 > eap->line2)
6731 break;
6732 out_flush(); /* show one line at a time */
6734 setpcmark();
6735 /* put cursor at last line */
6736 curwin->w_cursor.lnum = eap->line2;
6737 beginline(BL_SOL | BL_FIX);
6740 ex_no_reprint = TRUE;
6743 #ifdef FEAT_BYTEOFF
6744 static void
6745 ex_goto(eap)
6746 exarg_T *eap;
6748 goto_byte(eap->line2);
6750 #endif
6753 * ":shell".
6755 static void
6756 ex_shell(eap)
6757 exarg_T *eap UNUSED;
6759 do_shell(NULL, 0);
6762 #if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6763 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
6764 || defined(FEAT_GUI_MSWIN) \
6765 || defined(FEAT_GUI_MAC) \
6766 || defined(PROTO)
6769 * Handle a file drop. The code is here because a drop is *nearly* like an
6770 * :args command, but not quite (we have a list of exact filenames, so we
6771 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6772 * code is very similar to :args and hence needs access to a lot of the static
6773 * functions in this file.
6775 * The list should be allocated using alloc(), as should each item in the
6776 * list. This function takes over responsibility for freeing the list.
6778 * XXX The list is made into the argument list. This is freed using
6779 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6780 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6781 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6782 * file functionality is (currently) not in EMX this is not presently a
6783 * problem.
6785 void
6786 handle_drop(filec, filev, split)
6787 int filec; /* the number of files dropped */
6788 char_u **filev; /* the list of files dropped */
6789 int split; /* force splitting the window */
6791 exarg_T ea;
6792 int save_msg_scroll = msg_scroll;
6794 /* Postpone this while editing the command line. */
6795 if (text_locked())
6796 return;
6797 #ifdef FEAT_AUTOCMD
6798 if (curbuf_locked())
6799 return;
6800 #endif
6801 /* When the screen is being updated we should not change buffers and
6802 * windows structures, it may cause freed memory to be used. */
6803 if (updating_screen)
6804 return;
6806 /* Check whether the current buffer is changed. If so, we will need
6807 * to split the current window or data could be lost.
6808 * We don't need to check if the 'hidden' option is set, as in this
6809 * case the buffer won't be lost.
6811 if (!P_HID(curbuf) && !split)
6813 ++emsg_off;
6814 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6815 --emsg_off;
6817 if (split)
6819 # ifdef FEAT_WINDOWS
6820 if (win_split(0, 0) == FAIL)
6821 return;
6822 # ifdef FEAT_SCROLLBIND
6823 curwin->w_p_scb = FALSE;
6824 # endif
6826 /* When splitting the window, create a new alist. Otherwise the
6827 * existing one is overwritten. */
6828 alist_unlink(curwin->w_alist);
6829 alist_new();
6830 # else
6831 return; /* can't split, always fail */
6832 # endif
6836 * Set up the new argument list.
6838 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
6841 * Move to the first file.
6843 /* Fake up a minimal "next" command for do_argfile() */
6844 vim_memset(&ea, 0, sizeof(ea));
6845 ea.cmd = (char_u *)"next";
6846 do_argfile(&ea, 0);
6848 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6849 * mode that is not needed here. */
6850 need_start_insertmode = FALSE;
6852 /* Restore msg_scroll, otherwise a following command may cause scrolling
6853 * unexpectedly. The screen will be redrawn by the caller, thus
6854 * msg_scroll being set by displaying a message is irrelevant. */
6855 msg_scroll = save_msg_scroll;
6857 #endif
6860 * Clear an argument list: free all file names and reset it to zero entries.
6862 void
6863 alist_clear(al)
6864 alist_T *al;
6866 while (--al->al_ga.ga_len >= 0)
6867 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6868 ga_clear(&al->al_ga);
6872 * Init an argument list.
6874 void
6875 alist_init(al)
6876 alist_T *al;
6878 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6881 #if defined(FEAT_WINDOWS) || defined(PROTO)
6884 * Remove a reference from an argument list.
6885 * Ignored when the argument list is the global one.
6886 * If the argument list is no longer used by any window, free it.
6888 void
6889 alist_unlink(al)
6890 alist_T *al;
6892 if (al != &global_alist && --al->al_refcount <= 0)
6894 alist_clear(al);
6895 vim_free(al);
6899 # if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6901 * Create a new argument list and use it for the current window.
6903 void
6904 alist_new()
6906 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6907 if (curwin->w_alist == NULL)
6909 curwin->w_alist = &global_alist;
6910 ++global_alist.al_refcount;
6912 else
6914 curwin->w_alist->al_refcount = 1;
6915 alist_init(curwin->w_alist);
6918 # endif
6919 #endif
6921 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6923 * Expand the file names in the global argument list.
6924 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6925 * numbers to be re-used.
6927 void
6928 alist_expand(fnum_list, fnum_len)
6929 int *fnum_list;
6930 int fnum_len;
6932 char_u **old_arg_files;
6933 int old_arg_count;
6934 char_u **new_arg_files;
6935 int new_arg_file_count;
6936 char_u *save_p_su = p_su;
6937 int i;
6939 /* Don't use 'suffixes' here. This should work like the shell did the
6940 * expansion. Also, the vimrc file isn't read yet, thus the user
6941 * can't set the options. */
6942 p_su = empty_option;
6943 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6944 if (old_arg_files != NULL)
6946 for (i = 0; i < GARGCOUNT; ++i)
6947 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6948 old_arg_count = GARGCOUNT;
6949 if (expand_wildcards(old_arg_count, old_arg_files,
6950 &new_arg_file_count, &new_arg_files,
6951 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6952 && new_arg_file_count > 0)
6954 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6955 TRUE, fnum_list, fnum_len);
6956 FreeWild(old_arg_count, old_arg_files);
6959 p_su = save_p_su;
6961 #endif
6964 * Set the argument list for the current window.
6965 * Takes over the allocated files[] and the allocated fnames in it.
6967 void
6968 alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
6969 alist_T *al;
6970 int count;
6971 char_u **files;
6972 int use_curbuf;
6973 int *fnum_list;
6974 int fnum_len;
6976 int i;
6978 alist_clear(al);
6979 if (ga_grow(&al->al_ga, count) == OK)
6981 for (i = 0; i < count; ++i)
6983 if (got_int)
6985 /* When adding many buffers this can take a long time. Allow
6986 * interrupting here. */
6987 while (i < count)
6988 vim_free(files[i++]);
6989 break;
6992 /* May set buffer name of a buffer previously used for the
6993 * argument list, so that it's re-used by alist_add. */
6994 if (fnum_list != NULL && i < fnum_len)
6995 buf_set_name(fnum_list[i], files[i]);
6997 alist_add(al, files[i], use_curbuf ? 2 : 1);
6998 ui_breakcheck();
7000 vim_free(files);
7002 else
7003 FreeWild(count, files);
7004 #ifdef FEAT_WINDOWS
7005 if (al == &global_alist)
7006 #endif
7007 arg_had_last = FALSE;
7011 * Add file "fname" to argument list "al".
7012 * "fname" must have been allocated and "al" must have been checked for room.
7014 void
7015 alist_add(al, fname, set_fnum)
7016 alist_T *al;
7017 char_u *fname;
7018 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
7020 if (fname == NULL) /* don't add NULL file names */
7021 return;
7022 #ifdef BACKSLASH_IN_FILENAME
7023 slash_adjust(fname);
7024 #endif
7025 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
7026 if (set_fnum > 0)
7027 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
7028 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
7029 ++al->al_ga.ga_len;
7032 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7034 * Adjust slashes in file names. Called after 'shellslash' was set.
7036 void
7037 alist_slash_adjust()
7039 int i;
7040 # ifdef FEAT_WINDOWS
7041 win_T *wp;
7042 tabpage_T *tp;
7043 # endif
7045 for (i = 0; i < GARGCOUNT; ++i)
7046 if (GARGLIST[i].ae_fname != NULL)
7047 slash_adjust(GARGLIST[i].ae_fname);
7048 # ifdef FEAT_WINDOWS
7049 FOR_ALL_TAB_WINDOWS(tp, wp)
7050 if (wp->w_alist != &global_alist)
7051 for (i = 0; i < WARGCOUNT(wp); ++i)
7052 if (WARGLIST(wp)[i].ae_fname != NULL)
7053 slash_adjust(WARGLIST(wp)[i].ae_fname);
7054 # endif
7056 #endif
7059 * ":preserve".
7061 static void
7062 ex_preserve(eap)
7063 exarg_T *eap UNUSED;
7065 curbuf->b_flags |= BF_PRESERVED;
7066 ml_preserve(curbuf, TRUE);
7070 * ":recover".
7072 static void
7073 ex_recover(eap)
7074 exarg_T *eap;
7076 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7077 recoverymode = TRUE;
7078 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
7079 && (*eap->arg == NUL
7080 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7081 ml_recover();
7082 recoverymode = FALSE;
7086 * Command modifier used in a wrong way.
7088 static void
7089 ex_wrongmodifier(eap)
7090 exarg_T *eap;
7092 eap->errmsg = e_invcmd;
7095 #ifdef FEAT_WINDOWS
7097 * :sview [+command] file split window with new file, read-only
7098 * :split [[+command] file] split window with current or new file
7099 * :vsplit [[+command] file] split window vertically with current or new file
7100 * :new [[+command] file] split window with no or new file
7101 * :vnew [[+command] file] split vertically window with no or new file
7102 * :sfind [+command] file split window with file in 'path'
7104 * :tabedit open new Tab page with empty window
7105 * :tabedit [+command] file open new Tab page and edit "file"
7106 * :tabnew [[+command] file] just like :tabedit
7107 * :tabfind [+command] file open new Tab page and find "file"
7109 void
7110 ex_splitview(eap)
7111 exarg_T *eap;
7113 win_T *old_curwin = curwin;
7114 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7115 char_u *fname = NULL;
7116 # endif
7117 # ifdef FEAT_BROWSE
7118 int browse_flag = cmdmod.browse;
7119 # endif
7121 # ifndef FEAT_VERTSPLIT
7122 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7124 ex_ni(eap);
7125 return;
7127 # endif
7129 # ifdef FEAT_GUI
7130 need_mouse_correct = TRUE;
7131 # endif
7133 # ifdef FEAT_QUICKFIX
7134 /* A ":split" in the quickfix window works like ":new". Don't want two
7135 * quickfix windows. But it's OK when doing ":tab split". */
7136 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
7138 if (eap->cmdidx == CMD_split)
7139 eap->cmdidx = CMD_new;
7140 # ifdef FEAT_VERTSPLIT
7141 if (eap->cmdidx == CMD_vsplit)
7142 eap->cmdidx = CMD_vnew;
7143 # endif
7145 # endif
7147 # ifdef FEAT_SEARCHPATH
7148 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
7150 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7151 FNAME_MESS, TRUE, curbuf->b_ffname);
7152 if (fname == NULL)
7153 goto theend;
7154 eap->arg = fname;
7156 # ifdef FEAT_BROWSE
7157 else
7158 # endif
7159 # endif
7160 # ifdef FEAT_BROWSE
7161 if (cmdmod.browse
7162 # ifdef FEAT_VERTSPLIT
7163 && eap->cmdidx != CMD_vnew
7164 # endif
7165 && eap->cmdidx != CMD_new)
7167 # ifdef FEAT_AUTOCMD
7168 if (
7169 # ifdef FEAT_GUI
7170 !gui.in_use &&
7171 # endif
7172 au_has_group((char_u *)"FileExplorer"))
7174 /* No browsing supported but we do have the file explorer:
7175 * Edit the directory. */
7176 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7177 eap->arg = (char_u *)".";
7179 else
7180 # endif
7182 fname = do_browse(0, (char_u *)_("Edit File in new window"),
7183 eap->arg, NULL, NULL, NULL, curbuf);
7184 if (fname == NULL)
7185 goto theend;
7186 eap->arg = fname;
7189 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
7190 # endif
7193 * Either open new tab page or split the window.
7195 if (eap->cmdidx == CMD_tabedit
7196 || eap->cmdidx == CMD_tabfind
7197 || eap->cmdidx == CMD_tabnew)
7199 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7200 : eap->addr_count == 0 ? 0
7201 : (int)eap->line2 + 1) != FAIL)
7203 do_exedit(eap, old_curwin);
7205 /* set the alternate buffer for the window we came from */
7206 if (curwin != old_curwin
7207 && win_valid(old_curwin)
7208 && old_curwin->w_buffer != curbuf
7209 && !cmdmod.keepalt)
7210 old_curwin->w_alt_fnum = curbuf->b_fnum;
7213 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
7214 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7216 # ifdef FEAT_SCROLLBIND
7217 /* Reset 'scrollbind' when editing another file, but keep it when
7218 * doing ":split" without arguments. */
7219 if (*eap->arg != NUL
7220 # ifdef FEAT_BROWSE
7221 || cmdmod.browse
7222 # endif
7224 curwin->w_p_scb = FALSE;
7225 else
7226 do_check_scrollbind(FALSE);
7227 # endif
7228 do_exedit(eap, old_curwin);
7231 # ifdef FEAT_BROWSE
7232 cmdmod.browse = browse_flag;
7233 # endif
7235 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7236 theend:
7237 vim_free(fname);
7238 # endif
7242 * Open a new tab page.
7244 void
7245 tabpage_new()
7247 exarg_T ea;
7249 vim_memset(&ea, 0, sizeof(ea));
7250 ea.cmdidx = CMD_tabnew;
7251 ea.cmd = (char_u *)"tabn";
7252 ea.arg = (char_u *)"";
7253 ex_splitview(&ea);
7257 * :tabnext command
7259 static void
7260 ex_tabnext(eap)
7261 exarg_T *eap;
7263 switch (eap->cmdidx)
7265 case CMD_tabfirst:
7266 case CMD_tabrewind:
7267 goto_tabpage(1);
7268 break;
7269 case CMD_tablast:
7270 goto_tabpage(9999);
7271 break;
7272 case CMD_tabprevious:
7273 case CMD_tabNext:
7274 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7275 break;
7276 default: /* CMD_tabnext */
7277 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7278 break;
7283 * :tabmove command
7285 static void
7286 ex_tabmove(eap)
7287 exarg_T *eap;
7289 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
7293 * :tabs command: List tabs and their contents.
7295 static void
7296 ex_tabs(eap)
7297 exarg_T *eap UNUSED;
7299 tabpage_T *tp;
7300 win_T *wp;
7301 int tabcount = 1;
7303 msg_start();
7304 msg_scroll = TRUE;
7305 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7307 msg_putchar('\n');
7308 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7309 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7310 out_flush(); /* output one line at a time */
7311 ui_breakcheck();
7313 if (tp == curtab)
7314 wp = firstwin;
7315 else
7316 wp = tp->tp_firstwin;
7317 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7319 msg_putchar('\n');
7320 msg_putchar(wp == curwin ? '>' : ' ');
7321 msg_putchar(' ');
7322 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7323 msg_putchar(' ');
7324 if (buf_spname(wp->w_buffer) != NULL)
7325 STRCPY(IObuff, buf_spname(wp->w_buffer));
7326 else
7327 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7328 IObuff, IOSIZE, TRUE);
7329 msg_outtrans(IObuff);
7330 out_flush(); /* output one line at a time */
7331 ui_breakcheck();
7336 #endif /* FEAT_WINDOWS */
7339 * ":mode": Set screen mode.
7340 * If no argument given, just get the screen size and redraw.
7342 static void
7343 ex_mode(eap)
7344 exarg_T *eap;
7346 if (*eap->arg == NUL)
7347 shell_resized();
7348 else
7349 mch_screenmode(eap->arg);
7352 #ifdef FEAT_WINDOWS
7354 * ":resize".
7355 * set, increment or decrement current window height
7357 static void
7358 ex_resize(eap)
7359 exarg_T *eap;
7361 int n;
7362 win_T *wp = curwin;
7364 if (eap->addr_count > 0)
7366 n = eap->line2;
7367 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7371 #ifdef FEAT_GUI
7372 need_mouse_correct = TRUE;
7373 #endif
7374 n = atol((char *)eap->arg);
7375 #ifdef FEAT_VERTSPLIT
7376 if (cmdmod.split & WSP_VERT)
7378 if (*eap->arg == '-' || *eap->arg == '+')
7379 n += W_WIDTH(curwin);
7380 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7381 n = 9999;
7382 win_setwidth_win((int)n, wp);
7384 else
7385 #endif
7387 if (*eap->arg == '-' || *eap->arg == '+')
7388 n += curwin->w_height;
7389 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7390 n = 9999;
7391 win_setheight_win((int)n, wp);
7394 #endif
7397 * ":find [+command] <file>" command.
7399 static void
7400 ex_find(eap)
7401 exarg_T *eap;
7403 #ifdef FEAT_SEARCHPATH
7404 char_u *fname;
7405 int count;
7407 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7408 TRUE, curbuf->b_ffname);
7409 if (eap->addr_count > 0)
7411 /* Repeat finding the file "count" times. This matters when it
7412 * appears several times in the path. */
7413 count = eap->line2;
7414 while (fname != NULL && --count > 0)
7416 vim_free(fname);
7417 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7418 FALSE, curbuf->b_ffname);
7422 if (fname != NULL)
7424 eap->arg = fname;
7425 #endif
7426 do_exedit(eap, NULL);
7427 #ifdef FEAT_SEARCHPATH
7428 vim_free(fname);
7430 #endif
7434 * ":open" simulation: for now just work like ":visual".
7436 static void
7437 ex_open(eap)
7438 exarg_T *eap;
7440 regmatch_T regmatch;
7441 char_u *p;
7443 curwin->w_cursor.lnum = eap->line2;
7444 beginline(BL_SOL | BL_FIX);
7445 if (*eap->arg == '/')
7447 /* ":open /pattern/": put cursor in column found with pattern */
7448 ++eap->arg;
7449 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7450 *p = NUL;
7451 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7452 if (regmatch.regprog != NULL)
7454 regmatch.rm_ic = p_ic;
7455 p = ml_get_curline();
7456 if (vim_regexec(&regmatch, p, (colnr_T)0))
7457 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
7458 else
7459 EMSG(_(e_nomatch));
7460 vim_free(regmatch.regprog);
7462 /* Move to the NUL, ignore any other arguments. */
7463 eap->arg += STRLEN(eap->arg);
7465 check_cursor();
7467 eap->cmdidx = CMD_visual;
7468 do_exedit(eap, NULL);
7472 * ":edit", ":badd", ":visual".
7474 static void
7475 ex_edit(eap)
7476 exarg_T *eap;
7478 do_exedit(eap, NULL);
7482 * ":edit <file>" command and alikes.
7484 void
7485 do_exedit(eap, old_curwin)
7486 exarg_T *eap;
7487 win_T *old_curwin; /* curwin before doing a split or NULL */
7489 int n;
7490 #ifdef FEAT_WINDOWS
7491 int need_hide;
7492 #endif
7493 int exmode_was = exmode_active;
7496 * ":vi" command ends Ex mode.
7498 if (exmode_active && (eap->cmdidx == CMD_visual
7499 || eap->cmdidx == CMD_view))
7501 exmode_active = FALSE;
7502 if (*eap->arg == NUL)
7504 /* Special case: ":global/pat/visual\NLvi-commands" */
7505 if (global_busy)
7507 int rd = RedrawingDisabled;
7508 int nwr = no_wait_return;
7509 int ms = msg_scroll;
7510 #ifdef FEAT_GUI
7511 int he = hold_gui_events;
7512 #endif
7514 if (eap->nextcmd != NULL)
7516 stuffReadbuff(eap->nextcmd);
7517 eap->nextcmd = NULL;
7520 if (exmode_was != EXMODE_VIM)
7521 settmode(TMODE_RAW);
7522 RedrawingDisabled = 0;
7523 no_wait_return = 0;
7524 need_wait_return = FALSE;
7525 msg_scroll = 0;
7526 #ifdef FEAT_GUI
7527 hold_gui_events = 0;
7528 #endif
7529 must_redraw = CLEAR;
7531 main_loop(FALSE, TRUE);
7533 RedrawingDisabled = rd;
7534 no_wait_return = nwr;
7535 msg_scroll = ms;
7536 #ifdef FEAT_GUI
7537 hold_gui_events = he;
7538 #endif
7540 return;
7544 if ((eap->cmdidx == CMD_new
7545 || eap->cmdidx == CMD_tabnew
7546 || eap->cmdidx == CMD_tabedit
7547 #ifdef FEAT_VERTSPLIT
7548 || eap->cmdidx == CMD_vnew
7549 #endif
7550 ) && *eap->arg == NUL)
7552 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
7553 setpcmark();
7554 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7555 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
7556 old_curwin == NULL ? curwin : NULL);
7558 else if ((eap->cmdidx != CMD_split
7559 #ifdef FEAT_VERTSPLIT
7560 && eap->cmdidx != CMD_vsplit
7561 #endif
7563 || *eap->arg != NUL
7564 #ifdef FEAT_BROWSE
7565 || cmdmod.browse
7566 #endif
7569 #ifdef FEAT_AUTOCMD
7570 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7571 * can bring us here, others are stopped earlier. */
7572 if (*eap->arg != NUL && curbuf_locked())
7573 return;
7574 #endif
7575 n = readonlymode;
7576 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7577 readonlymode = TRUE;
7578 else if (eap->cmdidx == CMD_enew)
7579 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7580 empty buffer */
7581 setpcmark();
7582 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7583 NULL, eap,
7584 /* ":edit" goes to first line if Vi compatible */
7585 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7586 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7587 ? ECMD_ONE : eap->do_ecmd_lnum,
7588 (P_HID(curbuf) ? ECMD_HIDE : 0)
7589 + (eap->forceit ? ECMD_FORCEIT : 0)
7590 #ifdef FEAT_LISTCMDS
7591 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7592 #endif
7593 , old_curwin == NULL ? curwin : NULL) == FAIL)
7595 /* Editing the file failed. If the window was split, close it. */
7596 #ifdef FEAT_WINDOWS
7597 if (old_curwin != NULL)
7599 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7600 if (!need_hide || P_HID(curbuf))
7602 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7603 cleanup_T cs;
7605 /* Reset the error/interrupt/exception state here so that
7606 * aborting() returns FALSE when closing a window. */
7607 enter_cleanup(&cs);
7608 # endif
7609 # ifdef FEAT_GUI
7610 need_mouse_correct = TRUE;
7611 # endif
7612 win_close(curwin, !need_hide && !P_HID(curbuf));
7614 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7615 /* Restore the error/interrupt/exception state if not
7616 * discarded by a new aborting error, interrupt, or
7617 * uncaught exception. */
7618 leave_cleanup(&cs);
7619 # endif
7622 #endif
7624 else if (readonlymode && curbuf->b_nwindows == 1)
7626 /* When editing an already visited buffer, 'readonly' won't be set
7627 * but the previous value is kept. With ":view" and ":sview" we
7628 * want the file to be readonly, except when another window is
7629 * editing the same buffer. */
7630 curbuf->b_p_ro = TRUE;
7632 readonlymode = n;
7634 else
7636 if (eap->do_ecmd_cmd != NULL)
7637 do_cmdline_cmd(eap->do_ecmd_cmd);
7638 #ifdef FEAT_TITLE
7639 n = curwin->w_arg_idx_invalid;
7640 #endif
7641 check_arg_idx(curwin);
7642 #ifdef FEAT_TITLE
7643 if (n != curwin->w_arg_idx_invalid)
7644 maketitle();
7645 #endif
7648 #ifdef FEAT_WINDOWS
7650 * if ":split file" worked, set alternate file name in old window to new
7651 * file
7653 if (old_curwin != NULL
7654 && *eap->arg != NUL
7655 && curwin != old_curwin
7656 && win_valid(old_curwin)
7657 && old_curwin->w_buffer != curbuf
7658 && !cmdmod.keepalt)
7659 old_curwin->w_alt_fnum = curbuf->b_fnum;
7660 #endif
7662 ex_no_reprint = TRUE;
7665 #ifndef FEAT_GUI
7667 * ":gui" and ":gvim" when there is no GUI.
7669 static void
7670 ex_nogui(eap)
7671 exarg_T *eap;
7673 eap->errmsg = e_nogvim;
7675 #endif
7677 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7678 static void
7679 ex_tearoff(eap)
7680 exarg_T *eap;
7682 gui_make_tearoff(eap->arg);
7684 #endif
7686 #if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
7687 static void
7688 ex_popup(eap)
7689 exarg_T *eap;
7691 gui_make_popup(eap->arg, eap->forceit);
7693 #endif
7695 static void
7696 ex_swapname(eap)
7697 exarg_T *eap UNUSED;
7699 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7700 MSG(_("No swap file"));
7701 else
7702 msg(curbuf->b_ml.ml_mfp->mf_fname);
7706 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7707 * offset.
7708 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7710 static void
7711 ex_syncbind(eap)
7712 exarg_T *eap UNUSED;
7714 #ifdef FEAT_SCROLLBIND
7715 win_T *wp;
7716 long topline;
7717 long y;
7718 linenr_T old_linenr = curwin->w_cursor.lnum;
7720 setpcmark();
7723 * determine max topline
7725 if (curwin->w_p_scb)
7727 topline = curwin->w_topline;
7728 for (wp = firstwin; wp; wp = wp->w_next)
7730 if (wp->w_p_scb && wp->w_buffer)
7732 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7733 if (topline > y)
7734 topline = y;
7737 if (topline < 1)
7738 topline = 1;
7740 else
7742 topline = 1;
7747 * set all scrollbind windows to the same topline
7749 wp = curwin;
7750 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7752 if (curwin->w_p_scb)
7754 y = topline - curwin->w_topline;
7755 if (y > 0)
7756 scrollup(y, TRUE);
7757 else
7758 scrolldown(-y, TRUE);
7759 curwin->w_scbind_pos = topline;
7760 redraw_later(VALID);
7761 cursor_correct();
7762 #ifdef FEAT_WINDOWS
7763 curwin->w_redr_status = TRUE;
7764 #endif
7767 curwin = wp;
7768 if (curwin->w_p_scb)
7770 did_syncbind = TRUE;
7771 checkpcmark();
7772 if (old_linenr != curwin->w_cursor.lnum)
7774 char_u ctrl_o[2];
7776 ctrl_o[0] = Ctrl_O;
7777 ctrl_o[1] = 0;
7778 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7781 #endif
7785 static void
7786 ex_read(eap)
7787 exarg_T *eap;
7789 int i;
7790 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7791 linenr_T lnum;
7793 if (eap->usefilter) /* :r!cmd */
7794 do_bang(1, eap, FALSE, FALSE, TRUE);
7795 else
7797 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7798 return;
7800 #ifdef FEAT_BROWSE
7801 if (cmdmod.browse)
7803 char_u *browseFile;
7805 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
7806 NULL, NULL, NULL, curbuf);
7807 if (browseFile != NULL)
7809 i = readfile(browseFile, NULL,
7810 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7811 vim_free(browseFile);
7813 else
7814 i = OK;
7816 else
7817 #endif
7818 if (*eap->arg == NUL)
7820 if (check_fname() == FAIL) /* check for no file name */
7821 return;
7822 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7823 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7825 else
7827 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7828 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7829 i = readfile(eap->arg, NULL,
7830 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7833 if (i == FAIL)
7835 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7836 if (!aborting())
7837 #endif
7838 EMSG2(_(e_notopen), eap->arg);
7840 else
7842 if (empty && exmode_active)
7844 /* Delete the empty line that remains. Historically ex does
7845 * this but vi doesn't. */
7846 if (eap->line2 == 0)
7847 lnum = curbuf->b_ml.ml_line_count;
7848 else
7849 lnum = 1;
7850 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
7852 ml_delete(lnum, FALSE);
7853 if (curwin->w_cursor.lnum > 1
7854 && curwin->w_cursor.lnum >= lnum)
7855 --curwin->w_cursor.lnum;
7856 deleted_lines_mark(lnum, 1L);
7859 redraw_curbuf_later(VALID);
7864 static char_u *prev_dir = NULL;
7866 #if defined(EXITFREE) || defined(PROTO)
7867 void
7868 free_cd_dir()
7870 vim_free(prev_dir);
7871 prev_dir = NULL;
7873 vim_free(globaldir);
7874 globaldir = NULL;
7876 #endif
7880 * ":cd", ":lcd", ":chdir" and ":lchdir".
7882 void
7883 ex_cd(eap)
7884 exarg_T *eap;
7886 char_u *new_dir;
7887 char_u *tofree;
7889 new_dir = eap->arg;
7890 #if !defined(UNIX) && !defined(VMS)
7891 /* for non-UNIX ":cd" means: print current directory */
7892 if (*new_dir == NUL)
7893 ex_pwd(NULL);
7894 else
7895 #endif
7897 #ifdef FEAT_AUTOCMD
7898 if (allbuf_locked())
7899 return;
7900 #endif
7901 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7902 && !eap->forceit)
7904 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
7905 return;
7908 /* ":cd -": Change to previous directory */
7909 if (STRCMP(new_dir, "-") == 0)
7911 if (prev_dir == NULL)
7913 EMSG(_("E186: No previous directory"));
7914 return;
7916 new_dir = prev_dir;
7919 /* Save current directory for next ":cd -" */
7920 tofree = prev_dir;
7921 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7922 prev_dir = vim_strsave(NameBuff);
7923 else
7924 prev_dir = NULL;
7926 #if defined(UNIX) || defined(VMS)
7927 /* for UNIX ":cd" means: go to home directory */
7928 if (*new_dir == NUL)
7930 /* use NameBuff for home directory name */
7931 # ifdef VMS
7932 char_u *p;
7934 p = mch_getenv((char_u *)"SYS$LOGIN");
7935 if (p == NULL || *p == NUL) /* empty is the same as not set */
7936 NameBuff[0] = NUL;
7937 else
7938 vim_strncpy(NameBuff, p, MAXPATHL - 1);
7939 # else
7940 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7941 # endif
7942 new_dir = NameBuff;
7944 #endif
7945 if (new_dir == NULL || vim_chdir(new_dir))
7946 EMSG(_(e_failed));
7947 else
7949 vim_free(curwin->w_localdir);
7950 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7952 /* If still in global directory, need to remember current
7953 * directory as global directory. */
7954 if (globaldir == NULL && prev_dir != NULL)
7955 globaldir = vim_strsave(prev_dir);
7956 /* Remember this local directory for the window. */
7957 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7958 curwin->w_localdir = vim_strsave(NameBuff);
7960 else
7962 /* We are now in the global directory, no need to remember its
7963 * name. */
7964 vim_free(globaldir);
7965 globaldir = NULL;
7966 curwin->w_localdir = NULL;
7969 shorten_fnames(TRUE);
7971 /* Echo the new current directory if the command was typed. */
7972 if (KeyTyped || p_verbose >= 5)
7973 ex_pwd(eap);
7975 vim_free(tofree);
7980 * ":pwd".
7982 static void
7983 ex_pwd(eap)
7984 exarg_T *eap UNUSED;
7986 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7988 #ifdef BACKSLASH_IN_FILENAME
7989 slash_adjust(NameBuff);
7990 #endif
7991 msg(NameBuff);
7993 else
7994 EMSG(_("E187: Unknown"));
7998 * ":=".
8000 static void
8001 ex_equal(eap)
8002 exarg_T *eap;
8004 smsg((char_u *)"%ld", (long)eap->line2);
8005 ex_may_print(eap);
8008 static void
8009 ex_sleep(eap)
8010 exarg_T *eap;
8012 int n;
8013 long len;
8015 if (cursor_valid())
8017 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
8018 if (n >= 0)
8019 windgoto((int)n, curwin->w_wcol);
8022 len = eap->line2;
8023 switch (*eap->arg)
8025 case 'm': break;
8026 case NUL: len *= 1000L; break;
8027 default: EMSG2(_(e_invarg2), eap->arg); return;
8029 do_sleep(len);
8033 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
8035 void
8036 do_sleep(msec)
8037 long msec;
8039 long done;
8041 cursor_on();
8042 out_flush();
8043 for (done = 0; !got_int && done < msec; done += 1000L)
8045 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
8046 ui_breakcheck();
8050 static void
8051 do_exmap(eap, isabbrev)
8052 exarg_T *eap;
8053 int isabbrev;
8055 int mode;
8056 char_u *cmdp;
8058 cmdp = eap->cmd;
8059 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
8061 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
8062 eap->arg, mode, isabbrev))
8064 case 1: EMSG(_(e_invarg));
8065 break;
8066 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
8067 break;
8072 * ":winsize" command (obsolete).
8074 static void
8075 ex_winsize(eap)
8076 exarg_T *eap;
8078 int w, h;
8079 char_u *arg = eap->arg;
8080 char_u *p;
8082 w = getdigits(&arg);
8083 arg = skipwhite(arg);
8084 p = arg;
8085 h = getdigits(&arg);
8086 if (*p != NUL && *arg == NUL)
8087 set_shellsize(w, h, TRUE);
8088 else
8089 EMSG(_("E465: :winsize requires two number arguments"));
8092 #ifdef FEAT_WINDOWS
8093 static void
8094 ex_wincmd(eap)
8095 exarg_T *eap;
8097 int xchar = NUL;
8098 char_u *p;
8100 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8102 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8103 if (eap->arg[1] == NUL)
8105 EMSG(_(e_invarg));
8106 return;
8108 xchar = eap->arg[1];
8109 p = eap->arg + 2;
8111 else
8112 p = eap->arg + 1;
8114 eap->nextcmd = check_nextcmd(p);
8115 p = skipwhite(p);
8116 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8117 EMSG(_(e_invarg));
8118 else
8120 /* Pass flags on for ":vertical wincmd ]". */
8121 postponed_split_flags = cmdmod.split;
8122 postponed_split_tab = cmdmod.tab;
8123 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8124 postponed_split_flags = 0;
8125 postponed_split_tab = 0;
8128 #endif
8130 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
8132 * ":winpos".
8134 static void
8135 ex_winpos(eap)
8136 exarg_T *eap;
8138 int x, y;
8139 char_u *arg = eap->arg;
8140 char_u *p;
8142 if (*arg == NUL)
8144 # if defined(FEAT_GUI) || defined(MSWIN)
8145 # ifdef FEAT_GUI
8146 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
8147 # else
8148 if (mch_get_winpos(&x, &y) != FAIL)
8149 # endif
8151 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8152 msg(IObuff);
8154 else
8155 # endif
8156 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8158 else
8160 x = getdigits(&arg);
8161 arg = skipwhite(arg);
8162 p = arg;
8163 y = getdigits(&arg);
8164 if (*p == NUL || *arg != NUL)
8166 EMSG(_("E466: :winpos requires two number arguments"));
8167 return;
8169 # ifdef FEAT_GUI
8170 if (gui.in_use)
8171 gui_mch_set_winpos(x, y);
8172 else if (gui.starting)
8174 /* Remember the coordinates for when the window is opened. */
8175 gui_win_x = x;
8176 gui_win_y = y;
8178 # ifdef HAVE_TGETENT
8179 else
8180 # endif
8181 # else
8182 # ifdef MSWIN
8183 mch_set_winpos(x, y);
8184 # endif
8185 # endif
8186 # ifdef HAVE_TGETENT
8187 if (*T_CWP)
8188 term_set_winpos(x, y);
8189 # endif
8192 #endif
8195 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8197 static void
8198 ex_operators(eap)
8199 exarg_T *eap;
8201 oparg_T oa;
8203 clear_oparg(&oa);
8204 oa.regname = eap->regname;
8205 oa.start.lnum = eap->line1;
8206 oa.end.lnum = eap->line2;
8207 oa.line_count = eap->line2 - eap->line1 + 1;
8208 oa.motion_type = MLINE;
8209 #ifdef FEAT_VIRTUALEDIT
8210 virtual_op = FALSE;
8211 #endif
8212 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8214 setpcmark();
8215 curwin->w_cursor.lnum = eap->line1;
8216 beginline(BL_SOL | BL_FIX);
8219 switch (eap->cmdidx)
8221 case CMD_delete:
8222 oa.op_type = OP_DELETE;
8223 op_delete(&oa);
8224 break;
8226 case CMD_yank:
8227 oa.op_type = OP_YANK;
8228 (void)op_yank(&oa, FALSE, TRUE);
8229 break;
8231 default: /* CMD_rshift or CMD_lshift */
8232 if ((eap->cmdidx == CMD_rshift)
8233 #ifdef FEAT_RIGHTLEFT
8234 ^ curwin->w_p_rl
8235 #endif
8237 oa.op_type = OP_RSHIFT;
8238 else
8239 oa.op_type = OP_LSHIFT;
8240 op_shift(&oa, FALSE, eap->amount);
8241 break;
8243 #ifdef FEAT_VIRTUALEDIT
8244 virtual_op = MAYBE;
8245 #endif
8246 ex_may_print(eap);
8250 * ":put".
8252 static void
8253 ex_put(eap)
8254 exarg_T *eap;
8256 /* ":0put" works like ":1put!". */
8257 if (eap->line2 == 0)
8259 eap->line2 = 1;
8260 eap->forceit = TRUE;
8262 curwin->w_cursor.lnum = eap->line2;
8263 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8264 PUT_LINE|PUT_CURSLINE);
8268 * Handle ":copy" and ":move".
8270 static void
8271 ex_copymove(eap)
8272 exarg_T *eap;
8274 long n;
8276 n = get_address(&eap->arg, FALSE, FALSE);
8277 if (eap->arg == NULL) /* error detected */
8279 eap->nextcmd = NULL;
8280 return;
8282 get_flags(eap);
8285 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8287 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8289 EMSG(_(e_invaddr));
8290 return;
8293 if (eap->cmdidx == CMD_move)
8295 if (do_move(eap->line1, eap->line2, n) == FAIL)
8296 return;
8298 else
8299 ex_copy(eap->line1, eap->line2, n);
8300 u_clearline();
8301 beginline(BL_SOL | BL_FIX);
8302 ex_may_print(eap);
8306 * Print the current line if flags were given to the Ex command.
8308 static void
8309 ex_may_print(eap)
8310 exarg_T *eap;
8312 if (eap->flags != 0)
8314 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8315 (eap->flags & EXFLAG_LIST));
8316 ex_no_reprint = TRUE;
8321 * ":smagic" and ":snomagic".
8323 static void
8324 ex_submagic(eap)
8325 exarg_T *eap;
8327 int magic_save = p_magic;
8329 p_magic = (eap->cmdidx == CMD_smagic);
8330 do_sub(eap);
8331 p_magic = magic_save;
8335 * ":join".
8337 static void
8338 ex_join(eap)
8339 exarg_T *eap;
8341 curwin->w_cursor.lnum = eap->line1;
8342 if (eap->line1 == eap->line2)
8344 if (eap->addr_count >= 2) /* :2,2join does nothing */
8345 return;
8346 if (eap->line2 == curbuf->b_ml.ml_line_count)
8348 beep_flush();
8349 return;
8351 ++eap->line2;
8353 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8354 beginline(BL_WHITE | BL_FIX);
8355 ex_may_print(eap);
8359 * ":[addr]@r" or ":[addr]*r": execute register
8361 static void
8362 ex_at(eap)
8363 exarg_T *eap;
8365 int c;
8366 int prev_len = typebuf.tb_len;
8368 curwin->w_cursor.lnum = eap->line2;
8370 #ifdef USE_ON_FLY_SCROLL
8371 dont_scroll = TRUE; /* disallow scrolling here */
8372 #endif
8374 /* get the register name. No name means to use the previous one */
8375 c = *eap->arg;
8376 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8377 c = '@';
8378 /* Put the register in the typeahead buffer with the "silent" flag. */
8379 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8380 == FAIL)
8382 beep_flush();
8384 else
8386 int save_efr = exec_from_reg;
8388 exec_from_reg = TRUE;
8391 * Execute from the typeahead buffer.
8392 * Continue until the stuff buffer is empty and all added characters
8393 * have been consumed.
8395 while (!stuff_empty() || typebuf.tb_len > prev_len)
8396 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8398 exec_from_reg = save_efr;
8403 * ":!".
8405 static void
8406 ex_bang(eap)
8407 exarg_T *eap;
8409 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8413 * ":undo".
8415 static void
8416 ex_undo(eap)
8417 exarg_T *eap UNUSED;
8419 if (eap->addr_count == 1) /* :undo 123 */
8420 undo_time(eap->line2, FALSE, TRUE);
8421 else
8422 u_undo(1);
8426 * ":redo".
8428 static void
8429 ex_redo(eap)
8430 exarg_T *eap UNUSED;
8432 u_redo(1);
8436 * ":earlier" and ":later".
8438 static void
8439 ex_later(eap)
8440 exarg_T *eap;
8442 long count = 0;
8443 int sec = FALSE;
8444 char_u *p = eap->arg;
8446 if (*p == NUL)
8447 count = 1;
8448 else if (isdigit(*p))
8450 count = getdigits(&p);
8451 switch (*p)
8453 case 's': ++p; sec = TRUE; break;
8454 case 'm': ++p; sec = TRUE; count *= 60; break;
8455 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8459 if (*p != NUL)
8460 EMSG2(_(e_invarg2), eap->arg);
8461 else
8462 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
8466 * ":redir": start/stop redirection.
8468 static void
8469 ex_redir(eap)
8470 exarg_T *eap;
8472 char *mode;
8473 char_u *fname;
8474 char_u *arg = eap->arg;
8476 if (STRICMP(eap->arg, "END") == 0)
8477 close_redir();
8478 else
8480 if (*arg == '>')
8482 ++arg;
8483 if (*arg == '>')
8485 ++arg;
8486 mode = "a";
8488 else
8489 mode = "w";
8490 arg = skipwhite(arg);
8492 close_redir();
8494 /* Expand environment variables and "~/". */
8495 fname = expand_env_save(arg);
8496 if (fname == NULL)
8497 return;
8498 #ifdef FEAT_BROWSE
8499 if (cmdmod.browse)
8501 char_u *browseFile;
8503 browseFile = do_browse(BROWSE_SAVE,
8504 (char_u *)_("Save Redirection"),
8505 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
8506 if (browseFile == NULL)
8507 return; /* operation cancelled */
8508 vim_free(fname);
8509 fname = browseFile;
8510 eap->forceit = TRUE; /* since dialog already asked */
8512 #endif
8514 redir_fd = open_exfile(fname, eap->forceit, mode);
8515 vim_free(fname);
8517 #ifdef FEAT_EVAL
8518 else if (*arg == '@')
8520 /* redirect to a register a-z (resp. A-Z for appending) */
8521 close_redir();
8522 ++arg;
8523 if (ASCII_ISALPHA(*arg)
8524 # ifdef FEAT_CLIPBOARD
8525 || *arg == '*'
8526 || *arg == '+'
8527 # endif
8528 || *arg == '"')
8530 redir_reg = *arg++;
8531 if (*arg == '>' && arg[1] == '>') /* append */
8532 arg += 2;
8533 else
8535 /* Can use both "@a" and "@a>". */
8536 if (*arg == '>')
8537 arg++;
8538 /* Make register empty when not using @A-@Z and the
8539 * command is valid. */
8540 if (*arg == NUL && !isupper(redir_reg))
8541 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
8544 if (*arg != NUL)
8546 redir_reg = 0;
8547 EMSG2(_(e_invarg2), eap->arg);
8550 else if (*arg == '=' && arg[1] == '>')
8552 int append;
8554 /* redirect to a variable */
8555 close_redir();
8556 arg += 2;
8558 if (*arg == '>')
8560 ++arg;
8561 append = TRUE;
8563 else
8564 append = FALSE;
8566 if (var_redir_start(skipwhite(arg), append) == OK)
8567 redir_vname = 1;
8569 #endif
8571 /* TODO: redirect to a buffer */
8573 else
8574 EMSG2(_(e_invarg2), eap->arg);
8577 /* Make sure redirection is not off. Can happen for cmdline completion
8578 * that indirectly invokes a command to catch its output. */
8579 if (redir_fd != NULL
8580 #ifdef FEAT_EVAL
8581 || redir_reg || redir_vname
8582 #endif
8584 redir_off = FALSE;
8588 * ":redraw": force redraw
8590 static void
8591 ex_redraw(eap)
8592 exarg_T *eap;
8594 int r = RedrawingDisabled;
8595 int p = p_lz;
8597 RedrawingDisabled = 0;
8598 p_lz = FALSE;
8599 update_topline();
8600 update_screen(eap->forceit ? CLEAR :
8601 #ifdef FEAT_VISUAL
8602 VIsual_active ? INVERTED :
8603 #endif
8605 #ifdef FEAT_TITLE
8606 if (need_maketitle)
8607 maketitle();
8608 #endif
8609 RedrawingDisabled = r;
8610 p_lz = p;
8612 /* Reset msg_didout, so that a message that's there is overwritten. */
8613 msg_didout = FALSE;
8614 msg_col = 0;
8616 out_flush();
8620 * ":redrawstatus": force redraw of status line(s)
8622 static void
8623 ex_redrawstatus(eap)
8624 exarg_T *eap UNUSED;
8626 #if defined(FEAT_WINDOWS)
8627 int r = RedrawingDisabled;
8628 int p = p_lz;
8630 RedrawingDisabled = 0;
8631 p_lz = FALSE;
8632 if (eap->forceit)
8633 status_redraw_all();
8634 else
8635 status_redraw_curbuf();
8636 update_screen(
8637 # ifdef FEAT_VISUAL
8638 VIsual_active ? INVERTED :
8639 # endif
8641 RedrawingDisabled = r;
8642 p_lz = p;
8643 out_flush();
8644 #endif
8647 static void
8648 close_redir()
8650 if (redir_fd != NULL)
8652 fclose(redir_fd);
8653 redir_fd = NULL;
8655 #ifdef FEAT_EVAL
8656 redir_reg = 0;
8657 if (redir_vname)
8659 var_redir_stop();
8660 redir_vname = 0;
8662 #endif
8665 #if defined(FEAT_SESSION) && defined(USE_CRNL)
8666 # define MKSESSION_NL
8667 static int mksession_nl = FALSE; /* use NL only in put_eol() */
8668 #endif
8671 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8673 static void
8674 ex_mkrc(eap)
8675 exarg_T *eap;
8677 FILE *fd;
8678 int failed = FALSE;
8679 char_u *fname;
8680 #ifdef FEAT_BROWSE
8681 char_u *browseFile = NULL;
8682 #endif
8683 #ifdef FEAT_SESSION
8684 int view_session = FALSE;
8685 int using_vdir = FALSE; /* using 'viewdir'? */
8686 char_u *viewFile = NULL;
8687 unsigned *flagp;
8688 #endif
8690 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8692 #ifdef FEAT_SESSION
8693 view_session = TRUE;
8694 #else
8695 ex_ni(eap);
8696 return;
8697 #endif
8700 #ifdef FEAT_SESSION
8701 /* Use the short file name until ":lcd" is used. We also don't use the
8702 * short file name when 'acd' is set, that is checked later. */
8703 did_lcd = FALSE;
8705 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8706 if (eap->cmdidx == CMD_mkview
8707 && (*eap->arg == NUL
8708 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8710 eap->forceit = TRUE;
8711 fname = get_view_file(*eap->arg);
8712 if (fname == NULL)
8713 return;
8714 viewFile = fname;
8715 using_vdir = TRUE;
8717 else
8718 #endif
8719 if (*eap->arg != NUL)
8720 fname = eap->arg;
8721 else if (eap->cmdidx == CMD_mkvimrc)
8722 fname = (char_u *)VIMRC_FILE;
8723 #ifdef FEAT_SESSION
8724 else if (eap->cmdidx == CMD_mksession)
8725 fname = (char_u *)SESSION_FILE;
8726 #endif
8727 else
8728 fname = (char_u *)EXRC_FILE;
8730 #ifdef FEAT_BROWSE
8731 if (cmdmod.browse)
8733 browseFile = do_browse(BROWSE_SAVE,
8734 # ifdef FEAT_SESSION
8735 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8736 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8737 # endif
8738 (char_u *)_("Save Setup"),
8739 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8740 if (browseFile == NULL)
8741 goto theend;
8742 fname = browseFile;
8743 eap->forceit = TRUE; /* since dialog already asked */
8745 #endif
8747 #if defined(FEAT_SESSION) && defined(vim_mkdir)
8748 /* When using 'viewdir' may have to create the directory. */
8749 if (using_vdir && !mch_isdir(p_vdir))
8750 vim_mkdir_emsg(p_vdir, 0755);
8751 #endif
8753 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8754 if (fd != NULL)
8756 #ifdef FEAT_SESSION
8757 if (eap->cmdidx == CMD_mkview)
8758 flagp = &vop_flags;
8759 else
8760 flagp = &ssop_flags;
8761 #endif
8763 #ifdef MKSESSION_NL
8764 /* "unix" in 'sessionoptions': use NL line separator */
8765 if (view_session && (*flagp & SSOP_UNIX))
8766 mksession_nl = TRUE;
8767 #endif
8769 /* Write the version command for :mkvimrc */
8770 if (eap->cmdidx == CMD_mkvimrc)
8771 (void)put_line(fd, "version 6.0");
8773 #ifdef FEAT_SESSION
8774 if (eap->cmdidx == CMD_mksession)
8776 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8777 failed = TRUE;
8780 if (eap->cmdidx != CMD_mkview)
8781 #endif
8783 /* Write setting 'compatible' first, because it has side effects.
8784 * For that same reason only do it when needed. */
8785 if (p_cp)
8786 (void)put_line(fd, "if !&cp | set cp | endif");
8787 else
8788 (void)put_line(fd, "if &cp | set nocp | endif");
8791 #ifdef FEAT_SESSION
8792 if (!view_session
8793 || (eap->cmdidx == CMD_mksession
8794 && (*flagp & SSOP_OPTIONS)))
8795 #endif
8796 failed |= (makemap(fd, NULL) == FAIL
8797 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8799 #ifdef FEAT_SESSION
8800 if (!failed && view_session)
8802 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8803 failed = TRUE;
8804 if (eap->cmdidx == CMD_mksession)
8806 char_u dirnow[MAXPATHL]; /* current directory */
8809 * Change to session file's dir.
8811 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8812 || mch_chdir((char *)dirnow) != 0)
8813 *dirnow = NUL;
8814 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8816 if (vim_chdirfile(fname) == OK)
8817 shorten_fnames(TRUE);
8819 else if (*dirnow != NUL
8820 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8822 if (mch_chdir((char *)globaldir) == 0)
8823 shorten_fnames(TRUE);
8826 failed |= (makeopens(fd, dirnow) == FAIL);
8828 /* restore original dir */
8829 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8830 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8832 if (mch_chdir((char *)dirnow) != 0)
8833 EMSG(_(e_prev_dir));
8834 shorten_fnames(TRUE);
8837 else
8839 failed |= (put_view(fd, curwin, !using_vdir, flagp,
8840 -1) == FAIL);
8842 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8843 == FAIL)
8844 failed = TRUE;
8845 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8846 failed = TRUE;
8847 if (eap->cmdidx == CMD_mksession)
8849 if (put_line(fd, "unlet SessionLoad") == FAIL)
8850 failed = TRUE;
8853 #endif
8854 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8855 failed = TRUE;
8857 failed |= fclose(fd);
8859 if (failed)
8860 EMSG(_(e_write));
8861 #if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8862 else if (eap->cmdidx == CMD_mksession)
8864 /* successful session write - set this_session var */
8865 char_u tbuf[MAXPATHL];
8867 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8868 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8870 #endif
8871 #ifdef MKSESSION_NL
8872 mksession_nl = FALSE;
8873 #endif
8876 #ifdef FEAT_BROWSE
8877 theend:
8878 vim_free(browseFile);
8879 #endif
8880 #ifdef FEAT_SESSION
8881 vim_free(viewFile);
8882 #endif
8885 #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8886 || defined(PROTO)
8888 vim_mkdir_emsg(name, prot)
8889 char_u *name;
8890 int prot UNUSED;
8892 if (vim_mkdir(name, prot) != 0)
8894 EMSG2(_("E739: Cannot create directory: %s"), name);
8895 return FAIL;
8897 return OK;
8899 #endif
8902 * Open a file for writing for an Ex command, with some checks.
8903 * Return file descriptor, or NULL on failure.
8905 FILE *
8906 open_exfile(fname, forceit, mode)
8907 char_u *fname;
8908 int forceit;
8909 char *mode; /* "w" for create new file or "a" for append */
8911 FILE *fd;
8913 #ifdef UNIX
8914 /* with Unix it is possible to open a directory */
8915 if (mch_isdir(fname))
8917 EMSG2(_(e_isadir2), fname);
8918 return NULL;
8920 #endif
8921 if (!forceit && *mode != 'a' && vim_fexists(fname))
8923 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8924 return NULL;
8927 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8928 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8930 return fd;
8934 * ":mark" and ":k".
8936 static void
8937 ex_mark(eap)
8938 exarg_T *eap;
8940 pos_T pos;
8942 if (*eap->arg == NUL) /* No argument? */
8943 EMSG(_(e_argreq));
8944 else if (eap->arg[1] != NUL) /* more than one character? */
8945 EMSG(_(e_trailing));
8946 else
8948 pos = curwin->w_cursor; /* save curwin->w_cursor */
8949 curwin->w_cursor.lnum = eap->line2;
8950 beginline(BL_WHITE | BL_FIX);
8951 if (setmark(*eap->arg) == FAIL) /* set mark */
8952 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8953 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8958 * Update w_topline, w_leftcol and the cursor position.
8960 void
8961 update_topline_cursor()
8963 check_cursor(); /* put cursor on valid line */
8964 update_topline();
8965 if (!curwin->w_p_wrap)
8966 validate_cursor();
8967 update_curswant();
8970 #ifdef FEAT_EX_EXTRA
8972 * ":normal[!] {commands}": Execute normal mode commands.
8974 static void
8975 ex_normal(eap)
8976 exarg_T *eap;
8978 int save_msg_scroll = msg_scroll;
8979 int save_restart_edit = restart_edit;
8980 int save_msg_didout = msg_didout;
8981 int save_State = State;
8982 tasave_T tabuf;
8983 int save_insertmode = p_im;
8984 int save_finish_op = finish_op;
8985 int save_opcount = opcount;
8986 #ifdef FEAT_MBYTE
8987 char_u *arg = NULL;
8988 int l;
8989 char_u *p;
8990 #endif
8992 if (ex_normal_lock > 0)
8994 EMSG(_(e_secure));
8995 return;
8997 if (ex_normal_busy >= p_mmd)
8999 EMSG(_("E192: Recursive use of :normal too deep"));
9000 return;
9002 ++ex_normal_busy;
9004 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
9005 restart_edit = 0; /* don't go to Insert mode */
9006 p_im = FALSE; /* don't use 'insertmode' */
9008 #ifdef FEAT_MBYTE
9010 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
9011 * this for the K_SPECIAL leading byte, otherwise special keys will not
9012 * work.
9014 if (has_mbyte)
9016 int len = 0;
9018 /* Count the number of characters to be escaped. */
9019 for (p = eap->arg; *p != NUL; ++p)
9021 # ifdef FEAT_GUI
9022 if (*p == CSI) /* leadbyte CSI */
9023 len += 2;
9024 # endif
9025 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
9026 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
9027 # ifdef FEAT_GUI
9028 || *p == CSI
9029 # endif
9031 len += 2;
9033 if (len > 0)
9035 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
9036 if (arg != NULL)
9038 len = 0;
9039 for (p = eap->arg; *p != NUL; ++p)
9041 arg[len++] = *p;
9042 # ifdef FEAT_GUI
9043 if (*p == CSI)
9045 arg[len++] = KS_EXTRA;
9046 arg[len++] = (int)KE_CSI;
9048 # endif
9049 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
9051 arg[len++] = *++p;
9052 if (*p == K_SPECIAL)
9054 arg[len++] = KS_SPECIAL;
9055 arg[len++] = KE_FILLER;
9057 # ifdef FEAT_GUI
9058 else if (*p == CSI)
9060 arg[len++] = KS_EXTRA;
9061 arg[len++] = (int)KE_CSI;
9063 # endif
9065 arg[len] = NUL;
9070 #endif
9073 * Save the current typeahead. This is required to allow using ":normal"
9074 * from an event handler and makes sure we don't hang when the argument
9075 * ends with half a command.
9077 save_typeahead(&tabuf);
9078 if (tabuf.typebuf_valid)
9081 * Repeat the :normal command for each line in the range. When no
9082 * range given, execute it just once, without positioning the cursor
9083 * first.
9087 if (eap->addr_count != 0)
9089 curwin->w_cursor.lnum = eap->line1++;
9090 curwin->w_cursor.col = 0;
9093 exec_normal_cmd(
9094 #ifdef FEAT_MBYTE
9095 arg != NULL ? arg :
9096 #endif
9097 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
9099 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9102 /* Might not return to the main loop when in an event handler. */
9103 update_topline_cursor();
9105 /* Restore the previous typeahead. */
9106 restore_typeahead(&tabuf);
9108 --ex_normal_busy;
9109 msg_scroll = save_msg_scroll;
9110 restart_edit = save_restart_edit;
9111 p_im = save_insertmode;
9112 finish_op = save_finish_op;
9113 opcount = save_opcount;
9114 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9116 /* Restore the state (needed when called from a function executed for
9117 * 'indentexpr'). */
9118 State = save_State;
9119 #ifdef FEAT_MBYTE
9120 vim_free(arg);
9121 #endif
9125 * ":startinsert", ":startreplace" and ":startgreplace"
9127 static void
9128 ex_startinsert(eap)
9129 exarg_T *eap;
9131 if (eap->forceit)
9133 coladvance((colnr_T)MAXCOL);
9134 curwin->w_curswant = MAXCOL;
9135 curwin->w_set_curswant = FALSE;
9138 /* Ignore the command when already in Insert mode. Inserting an
9139 * expression register that invokes a function can do this. */
9140 if (State & INSERT)
9141 return;
9143 if (eap->cmdidx == CMD_startinsert)
9144 restart_edit = 'a';
9145 else if (eap->cmdidx == CMD_startreplace)
9146 restart_edit = 'R';
9147 else
9148 restart_edit = 'V';
9150 if (!eap->forceit)
9152 if (eap->cmdidx == CMD_startinsert)
9153 restart_edit = 'i';
9154 curwin->w_curswant = 0; /* avoid MAXCOL */
9159 * ":stopinsert"
9161 static void
9162 ex_stopinsert(eap)
9163 exarg_T *eap UNUSED;
9165 restart_edit = 0;
9166 stop_insert_mode = TRUE;
9168 #endif
9170 #if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9172 * Execute normal mode command "cmd".
9173 * "remap" can be REMAP_NONE or REMAP_YES.
9175 void
9176 exec_normal_cmd(cmd, remap, silent)
9177 char_u *cmd;
9178 int remap;
9179 int silent;
9181 oparg_T oa;
9184 * Stuff the argument into the typeahead buffer.
9185 * Execute normal_cmd() until there is no typeahead left.
9187 clear_oparg(&oa);
9188 finish_op = FALSE;
9189 ins_typebuf(cmd, remap, 0, TRUE, silent);
9190 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9191 && !got_int)
9193 update_topline_cursor();
9194 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9197 #endif
9199 #ifdef FEAT_FIND_ID
9200 static void
9201 ex_checkpath(eap)
9202 exarg_T *eap;
9204 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9205 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9206 (linenr_T)1, (linenr_T)MAXLNUM);
9209 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9211 * ":psearch"
9213 static void
9214 ex_psearch(eap)
9215 exarg_T *eap;
9217 g_do_tagpreview = p_pvh;
9218 ex_findpat(eap);
9219 g_do_tagpreview = 0;
9221 #endif
9223 static void
9224 ex_findpat(eap)
9225 exarg_T *eap;
9227 int whole = TRUE;
9228 long n;
9229 char_u *p;
9230 int action;
9232 switch (cmdnames[eap->cmdidx].cmd_name[2])
9234 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9235 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9236 action = ACTION_GOTO;
9237 else
9238 action = ACTION_SHOW;
9239 break;
9240 case 'i': /* ":ilist" and ":dlist" */
9241 action = ACTION_SHOW_ALL;
9242 break;
9243 case 'u': /* ":ijump" and ":djump" */
9244 action = ACTION_GOTO;
9245 break;
9246 default: /* ":isplit" and ":dsplit" */
9247 action = ACTION_SPLIT;
9248 break;
9251 n = 1;
9252 if (vim_isdigit(*eap->arg)) /* get count */
9254 n = getdigits(&eap->arg);
9255 eap->arg = skipwhite(eap->arg);
9257 if (*eap->arg == '/') /* Match regexp, not just whole words */
9259 whole = FALSE;
9260 ++eap->arg;
9261 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9262 if (*p)
9264 *p++ = NUL;
9265 p = skipwhite(p);
9267 /* Check for trailing illegal characters */
9268 if (!ends_excmd(*p))
9269 eap->errmsg = e_trailing;
9270 else
9271 eap->nextcmd = check_nextcmd(p);
9274 if (!eap->skip)
9275 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9276 whole, !eap->forceit,
9277 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9278 n, action, eap->line1, eap->line2);
9280 #endif
9282 #ifdef FEAT_WINDOWS
9284 # ifdef FEAT_QUICKFIX
9286 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9288 static void
9289 ex_ptag(eap)
9290 exarg_T *eap;
9292 g_do_tagpreview = p_pvh;
9293 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9297 * ":pedit"
9299 static void
9300 ex_pedit(eap)
9301 exarg_T *eap;
9303 win_T *curwin_save = curwin;
9305 g_do_tagpreview = p_pvh;
9306 prepare_tagpreview(TRUE);
9307 keep_help_flag = curwin_save->w_buffer->b_help;
9308 do_exedit(eap, NULL);
9309 keep_help_flag = FALSE;
9310 if (curwin != curwin_save && win_valid(curwin_save))
9312 /* Return cursor to where we were */
9313 validate_cursor();
9314 redraw_later(VALID);
9315 win_enter(curwin_save, TRUE);
9317 g_do_tagpreview = 0;
9319 # endif
9322 * ":stag", ":stselect" and ":stjump".
9324 static void
9325 ex_stag(eap)
9326 exarg_T *eap;
9328 postponed_split = -1;
9329 postponed_split_flags = cmdmod.split;
9330 postponed_split_tab = cmdmod.tab;
9331 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9332 postponed_split_flags = 0;
9333 postponed_split_tab = 0;
9335 #endif
9338 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9340 static void
9341 ex_tag(eap)
9342 exarg_T *eap;
9344 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9347 static void
9348 ex_tag_cmd(eap, name)
9349 exarg_T *eap;
9350 char_u *name;
9352 int cmd;
9354 switch (name[1])
9356 case 'j': cmd = DT_JUMP; /* ":tjump" */
9357 break;
9358 case 's': cmd = DT_SELECT; /* ":tselect" */
9359 break;
9360 case 'p': cmd = DT_PREV; /* ":tprevious" */
9361 break;
9362 case 'N': cmd = DT_PREV; /* ":tNext" */
9363 break;
9364 case 'n': cmd = DT_NEXT; /* ":tnext" */
9365 break;
9366 case 'o': cmd = DT_POP; /* ":pop" */
9367 break;
9368 case 'f': /* ":tfirst" */
9369 case 'r': cmd = DT_FIRST; /* ":trewind" */
9370 break;
9371 case 'l': cmd = DT_LAST; /* ":tlast" */
9372 break;
9373 default: /* ":tag" */
9374 #ifdef FEAT_CSCOPE
9375 if (p_cst && *eap->arg != NUL)
9377 do_cstag(eap);
9378 return;
9380 #endif
9381 cmd = DT_TAG;
9382 break;
9385 if (name[0] == 'l')
9387 #ifndef FEAT_QUICKFIX
9388 ex_ni(eap);
9389 return;
9390 #else
9391 cmd = DT_LTAG;
9392 #endif
9395 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9396 eap->forceit, TRUE);
9400 * Check "str" for starting with a special cmdline variable.
9401 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9402 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9405 find_cmdline_var(src, usedlen)
9406 char_u *src;
9407 int *usedlen;
9409 int len;
9410 int i;
9411 static char *(spec_str[]) = {
9412 "%",
9413 #define SPEC_PERC 0
9414 "#",
9415 #define SPEC_HASH 1
9416 "<cword>", /* cursor word */
9417 #define SPEC_CWORD 2
9418 "<cWORD>", /* cursor WORD */
9419 #define SPEC_CCWORD 3
9420 "<cfile>", /* cursor path name */
9421 #define SPEC_CFILE 4
9422 "<sfile>", /* ":so" file name */
9423 #define SPEC_SFILE 5
9424 #ifdef FEAT_AUTOCMD
9425 "<afile>", /* autocommand file name */
9426 # define SPEC_AFILE 6
9427 "<abuf>", /* autocommand buffer number */
9428 # define SPEC_ABUF 7
9429 "<amatch>", /* autocommand match name */
9430 # define SPEC_AMATCH 8
9431 #endif
9432 #ifdef FEAT_CLIENTSERVER
9433 "<client>"
9434 # define SPEC_CLIENT 9
9435 #endif
9438 for (i = 0; i < (int)(sizeof(spec_str) / sizeof(char *)); ++i)
9440 len = (int)STRLEN(spec_str[i]);
9441 if (STRNCMP(src, spec_str[i], len) == 0)
9443 *usedlen = len;
9444 return i;
9447 return -1;
9451 * Evaluate cmdline variables.
9453 * change '%' to curbuf->b_ffname
9454 * '#' to curwin->w_altfile
9455 * '<cword>' to word under the cursor
9456 * '<cWORD>' to WORD under the cursor
9457 * '<cfile>' to path name under the cursor
9458 * '<sfile>' to sourced file name
9459 * '<afile>' to file name for autocommand
9460 * '<abuf>' to buffer number for autocommand
9461 * '<amatch>' to matching name for autocommand
9463 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9464 * "" for error without a message) and NULL is returned.
9465 * Returns an allocated string if a valid match was found.
9466 * Returns NULL if no match was found. "usedlen" then still contains the
9467 * number of characters to skip.
9469 char_u *
9470 eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
9471 char_u *src; /* pointer into commandline */
9472 char_u *srcstart; /* beginning of valid memory for src */
9473 int *usedlen; /* characters after src that are used */
9474 linenr_T *lnump; /* line number for :e command, or NULL */
9475 char_u **errormsg; /* pointer to error message */
9476 int *escaped; /* return value has escaped white space (can
9477 * be NULL) */
9479 int i;
9480 char_u *s;
9481 char_u *result;
9482 char_u *resultbuf = NULL;
9483 int resultlen;
9484 buf_T *buf;
9485 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9486 int spec_idx;
9487 #ifdef FEAT_MODIFY_FNAME
9488 int skip_mod = FALSE;
9489 #endif
9491 #if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9492 char_u strbuf[30];
9493 #endif
9495 *errormsg = NULL;
9496 if (escaped != NULL)
9497 *escaped = FALSE;
9500 * Check if there is something to do.
9502 spec_idx = find_cmdline_var(src, usedlen);
9503 if (spec_idx < 0) /* no match */
9505 *usedlen = 1;
9506 return NULL;
9510 * Skip when preceded with a backslash "\%" and "\#".
9511 * Note: In "\\%" the % is also not recognized!
9513 if (src > srcstart && src[-1] == '\\')
9515 *usedlen = 0;
9516 STRMOVE(src - 1, src); /* remove backslash */
9517 return NULL;
9521 * word or WORD under cursor
9523 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9525 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9526 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9527 if (resultlen == 0)
9529 *errormsg = (char_u *)"";
9530 return NULL;
9535 * '#': Alternate file name
9536 * '%': Current file name
9537 * File name under the cursor
9538 * File name for autocommand
9539 * and following modifiers
9541 else
9543 switch (spec_idx)
9545 case SPEC_PERC: /* '%': current file */
9546 if (curbuf->b_fname == NULL)
9548 result = (char_u *)"";
9549 valid = 0; /* Must have ":p:h" to be valid */
9551 else
9552 #ifdef RISCOS
9553 /* Always use the full path for RISC OS if possible. */
9554 result = curbuf->b_ffname;
9555 if (result == NULL)
9556 result = curbuf->b_fname;
9557 #else
9558 result = curbuf->b_fname;
9559 #endif
9560 break;
9562 case SPEC_HASH: /* '#' or "#99": alternate file */
9563 if (src[1] == '#') /* "##": the argument list */
9565 result = arg_all();
9566 resultbuf = result;
9567 *usedlen = 2;
9568 if (escaped != NULL)
9569 *escaped = TRUE;
9570 #ifdef FEAT_MODIFY_FNAME
9571 skip_mod = TRUE;
9572 #endif
9573 break;
9575 s = src + 1;
9576 if (*s == '<') /* "#<99" uses v:oldfiles */
9577 ++s;
9578 i = (int)getdigits(&s);
9579 *usedlen = (int)(s - src); /* length of what we expand */
9581 if (src[1] == '<')
9583 if (*usedlen < 2)
9585 /* Should we give an error message for #<text? */
9586 *usedlen = 1;
9587 return NULL;
9589 #ifdef FEAT_EVAL
9590 result = list_find_str(get_vim_var_list(VV_OLDFILES),
9591 (long)i);
9592 if (result == NULL)
9594 *errormsg = (char_u *)"";
9595 return NULL;
9597 #else
9598 *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
9599 return NULL;
9600 #endif
9602 else
9604 buf = buflist_findnr(i);
9605 if (buf == NULL)
9607 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9608 return NULL;
9610 if (lnump != NULL)
9611 *lnump = ECMD_LAST;
9612 if (buf->b_fname == NULL)
9614 result = (char_u *)"";
9615 valid = 0; /* Must have ":p:h" to be valid */
9617 else
9618 result = buf->b_fname;
9620 break;
9622 #ifdef FEAT_SEARCHPATH
9623 case SPEC_CFILE: /* file name under cursor */
9624 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
9625 if (result == NULL)
9627 *errormsg = (char_u *)"";
9628 return NULL;
9630 resultbuf = result; /* remember allocated string */
9631 break;
9632 #endif
9634 #ifdef FEAT_AUTOCMD
9635 case SPEC_AFILE: /* file name for autocommand */
9636 result = autocmd_fname;
9637 if (result != NULL && !autocmd_fname_full)
9639 /* Still need to turn the fname into a full path. It is
9640 * postponed to avoid a delay when <afile> is not used. */
9641 autocmd_fname_full = TRUE;
9642 result = FullName_save(autocmd_fname, FALSE);
9643 vim_free(autocmd_fname);
9644 autocmd_fname = result;
9646 if (result == NULL)
9648 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9649 return NULL;
9651 result = shorten_fname1(result);
9652 break;
9654 case SPEC_ABUF: /* buffer number for autocommand */
9655 if (autocmd_bufnr <= 0)
9657 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9658 return NULL;
9660 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9661 result = strbuf;
9662 break;
9664 case SPEC_AMATCH: /* match name for autocommand */
9665 result = autocmd_match;
9666 if (result == NULL)
9668 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9669 return NULL;
9671 break;
9673 #endif
9674 case SPEC_SFILE: /* file name for ":so" command */
9675 result = sourcing_name;
9676 if (result == NULL)
9678 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9679 return NULL;
9681 break;
9682 #if defined(FEAT_CLIENTSERVER)
9683 case SPEC_CLIENT: /* Source of last submitted input */
9684 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9685 (long_u)clientWindow);
9686 result = strbuf;
9687 break;
9688 #endif
9691 resultlen = (int)STRLEN(result); /* length of new string */
9692 if (src[*usedlen] == '<') /* remove the file name extension */
9694 ++*usedlen;
9695 #ifdef RISCOS
9696 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9697 #else
9698 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9699 #endif
9700 resultlen = (int)(s - result);
9702 #ifdef FEAT_MODIFY_FNAME
9703 else if (!skip_mod)
9705 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9706 &resultlen);
9707 if (result == NULL)
9709 *errormsg = (char_u *)"";
9710 return NULL;
9713 #endif
9716 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9718 if (valid != VALID_HEAD + VALID_PATH)
9719 /* xgettext:no-c-format */
9720 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9721 else
9722 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9723 result = NULL;
9725 else
9726 result = vim_strnsave(result, resultlen);
9727 vim_free(resultbuf);
9728 return result;
9732 * Concatenate all files in the argument list, separated by spaces, and return
9733 * it in one allocated string.
9734 * Spaces and backslashes in the file names are escaped with a backslash.
9735 * Returns NULL when out of memory.
9737 static char_u *
9738 arg_all()
9740 int len;
9741 int idx;
9742 char_u *retval = NULL;
9743 char_u *p;
9746 * Do this loop two times:
9747 * first time: compute the total length
9748 * second time: concatenate the names
9750 for (;;)
9752 len = 0;
9753 for (idx = 0; idx < ARGCOUNT; ++idx)
9755 p = alist_name(&ARGLIST[idx]);
9756 if (p != NULL)
9758 if (len > 0)
9760 /* insert a space in between names */
9761 if (retval != NULL)
9762 retval[len] = ' ';
9763 ++len;
9765 for ( ; *p != NUL; ++p)
9767 if (*p == ' ' || *p == '\\')
9769 /* insert a backslash */
9770 if (retval != NULL)
9771 retval[len] = '\\';
9772 ++len;
9774 if (retval != NULL)
9775 retval[len] = *p;
9776 ++len;
9781 /* second time: break here */
9782 if (retval != NULL)
9784 retval[len] = NUL;
9785 break;
9788 /* allocate memory */
9789 retval = alloc((unsigned)len + 1);
9790 if (retval == NULL)
9791 break;
9794 return retval;
9797 #if defined(FEAT_AUTOCMD) || defined(PROTO)
9799 * Expand the <sfile> string in "arg".
9801 * Returns an allocated string, or NULL for any error.
9803 char_u *
9804 expand_sfile(arg)
9805 char_u *arg;
9807 char_u *errormsg;
9808 int len;
9809 char_u *result;
9810 char_u *newres;
9811 char_u *repl;
9812 int srclen;
9813 char_u *p;
9815 result = vim_strsave(arg);
9816 if (result == NULL)
9817 return NULL;
9819 for (p = result; *p; )
9821 if (STRNCMP(p, "<sfile>", 7) != 0)
9822 ++p;
9823 else
9825 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
9826 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
9827 if (errormsg != NULL)
9829 if (*errormsg)
9830 emsg(errormsg);
9831 vim_free(result);
9832 return NULL;
9834 if (repl == NULL) /* no match (cannot happen) */
9836 p += srclen;
9837 continue;
9839 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9840 newres = alloc(len);
9841 if (newres == NULL)
9843 vim_free(repl);
9844 vim_free(result);
9845 return NULL;
9847 mch_memmove(newres, result, (size_t)(p - result));
9848 STRCPY(newres + (p - result), repl);
9849 len = (int)STRLEN(newres);
9850 STRCAT(newres, p + srclen);
9851 vim_free(repl);
9852 vim_free(result);
9853 result = newres;
9854 p = newres + len; /* continue after the match */
9858 return result;
9860 #endif
9862 #ifdef FEAT_SESSION
9863 static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9864 win_T *tab_firstwin));
9865 static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9866 static frame_T *ses_skipframe __ARGS((frame_T *fr));
9867 static int ses_do_frame __ARGS((frame_T *fr));
9868 static int ses_do_win __ARGS((win_T *wp));
9869 static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9870 static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9871 static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9874 * Write openfile commands for the current buffers to an .exrc file.
9875 * Return FAIL on error, OK otherwise.
9877 static int
9878 makeopens(fd, dirnow)
9879 FILE *fd;
9880 char_u *dirnow; /* Current directory name */
9882 buf_T *buf;
9883 int only_save_windows = TRUE;
9884 int nr;
9885 int cnr = 1;
9886 int restore_size = TRUE;
9887 win_T *wp;
9888 char_u *sname;
9889 win_T *edited_win = NULL;
9890 int tabnr;
9891 win_T *tab_firstwin;
9892 frame_T *tab_topframe;
9893 int cur_arg_idx = 0;
9894 int next_arg_idx = 0;
9896 if (ssop_flags & SSOP_BUFFERS)
9897 only_save_windows = FALSE; /* Save ALL buffers */
9900 * Begin by setting the this_session variable, and then other
9901 * sessionable variables.
9903 #ifdef FEAT_EVAL
9904 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9905 return FAIL;
9906 if (ssop_flags & SSOP_GLOBALS)
9907 if (store_session_globals(fd) == FAIL)
9908 return FAIL;
9909 #endif
9912 * Close all windows but one.
9914 if (put_line(fd, "silent only") == FAIL)
9915 return FAIL;
9918 * Now a :cd command to the session directory or the current directory
9920 if (ssop_flags & SSOP_SESDIR)
9922 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9923 == FAIL)
9924 return FAIL;
9926 else if (ssop_flags & SSOP_CURDIR)
9928 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9929 if (sname == NULL
9930 || fputs("cd ", fd) < 0
9931 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9932 || put_eol(fd) == FAIL)
9934 vim_free(sname);
9935 return FAIL;
9937 vim_free(sname);
9941 * If there is an empty, unnamed buffer we will wipe it out later.
9942 * Remember the buffer number.
9944 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9945 return FAIL;
9946 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9947 return FAIL;
9948 if (put_line(fd, "endif") == FAIL)
9949 return FAIL;
9952 * Now save the current files, current buffer first.
9954 if (put_line(fd, "set shortmess=aoO") == FAIL)
9955 return FAIL;
9957 /* Now put the other buffers into the buffer list */
9958 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9960 if (!(only_save_windows && buf->b_nwindows == 0)
9961 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9962 && buf->b_fname != NULL
9963 && buf->b_p_bl)
9965 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9966 : buf->b_wininfo->wi_fpos.lnum) < 0
9967 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9968 return FAIL;
9972 /* the global argument list */
9973 if (ses_arglist(fd, "args", &global_alist.al_ga,
9974 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9975 return FAIL;
9977 if (ssop_flags & SSOP_RESIZE)
9979 /* Note: after the restore we still check it worked!*/
9980 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9981 || put_eol(fd) == FAIL)
9982 return FAIL;
9985 #ifdef FEAT_GUI
9986 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9988 int x, y;
9990 if (gui_mch_get_winpos(&x, &y) == OK)
9992 /* Note: after the restore we still check it worked!*/
9993 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9994 return FAIL;
9997 #endif
10000 * May repeat putting Windows for each tab, when "tabpages" is in
10001 * 'sessionoptions'.
10002 * Don't use goto_tabpage(), it may change directory and trigger
10003 * autocommands.
10005 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
10006 tab_topframe = topframe;
10007 for (tabnr = 1; ; ++tabnr)
10009 int need_tabnew = FALSE;
10011 if ((ssop_flags & SSOP_TABPAGES))
10013 tabpage_T *tp = find_tabpage(tabnr);
10015 if (tp == NULL)
10016 break; /* done all tab pages */
10017 if (tp == curtab)
10019 tab_firstwin = firstwin;
10020 tab_topframe = topframe;
10022 else
10024 tab_firstwin = tp->tp_firstwin;
10025 tab_topframe = tp->tp_topframe;
10027 if (tabnr > 1)
10028 need_tabnew = TRUE;
10032 * Before creating the window layout, try loading one file. If this
10033 * is aborted we don't end up with a number of useless windows.
10034 * This may have side effects! (e.g., compressed or network file).
10036 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10038 if (ses_do_win(wp)
10039 && wp->w_buffer->b_ffname != NULL
10040 && !wp->w_buffer->b_help
10041 #ifdef FEAT_QUICKFIX
10042 && !bt_nofile(wp->w_buffer)
10043 #endif
10046 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
10047 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
10048 return FAIL;
10049 need_tabnew = FALSE;
10050 if (!wp->w_arg_idx_invalid)
10051 edited_win = wp;
10052 break;
10056 /* If no file got edited create an empty tab page. */
10057 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
10058 return FAIL;
10061 * Save current window layout.
10063 if (put_line(fd, "set splitbelow splitright") == FAIL)
10064 return FAIL;
10065 if (ses_win_rec(fd, tab_topframe) == FAIL)
10066 return FAIL;
10067 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
10068 return FAIL;
10069 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
10070 return FAIL;
10073 * Check if window sizes can be restored (no windows omitted).
10074 * Remember the window number of the current window after restoring.
10076 nr = 0;
10077 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
10079 if (ses_do_win(wp))
10080 ++nr;
10081 else
10082 restore_size = FALSE;
10083 if (curwin == wp)
10084 cnr = nr;
10087 /* Go to the first window. */
10088 if (put_line(fd, "wincmd t") == FAIL)
10089 return FAIL;
10092 * If more than one window, see if sizes can be restored.
10093 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
10094 * resized when moving between windows.
10095 * Do this before restoring the view, so that the topline and the
10096 * cursor can be set. This is done again below.
10098 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
10099 return FAIL;
10100 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
10101 return FAIL;
10104 * Restore the view of the window (options, file, cursor, etc.).
10106 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10108 if (!ses_do_win(wp))
10109 continue;
10110 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
10111 cur_arg_idx) == FAIL)
10112 return FAIL;
10113 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
10114 return FAIL;
10115 next_arg_idx = wp->w_arg_idx;
10118 /* The argument index in the first tab page is zero, need to set it in
10119 * each window. For further tab pages it's the window where we do
10120 * "tabedit". */
10121 cur_arg_idx = next_arg_idx;
10124 * Restore cursor to the current window if it's not the first one.
10126 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
10127 || put_eol(fd) == FAIL))
10128 return FAIL;
10131 * Restore window sizes again after jumping around in windows, because
10132 * the current window has a minimum size while others may not.
10134 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
10135 return FAIL;
10137 /* Don't continue in another tab page when doing only the current one
10138 * or when at the last tab page. */
10139 if (!(ssop_flags & SSOP_TABPAGES))
10140 break;
10143 if (ssop_flags & SSOP_TABPAGES)
10145 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
10146 || put_eol(fd) == FAIL)
10147 return FAIL;
10151 * Wipe out an empty unnamed buffer we started in.
10153 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
10154 return FAIL;
10155 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
10156 return FAIL;
10157 if (put_line(fd, "endif") == FAIL)
10158 return FAIL;
10159 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
10160 return FAIL;
10162 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10163 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10164 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10165 return FAIL;
10168 * Lastly, execute the x.vim file if it exists.
10170 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10171 || put_line(fd, "if file_readable(s:sx)") == FAIL
10172 || put_line(fd, " exe \"source \" . fnameescape(s:sx)") == FAIL
10173 || put_line(fd, "endif") == FAIL)
10174 return FAIL;
10176 return OK;
10179 static int
10180 ses_winsizes(fd, restore_size, tab_firstwin)
10181 FILE *fd;
10182 int restore_size;
10183 win_T *tab_firstwin;
10185 int n = 0;
10186 win_T *wp;
10188 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10190 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10192 if (!ses_do_win(wp))
10193 continue;
10194 ++n;
10196 /* restore height when not full height */
10197 if (wp->w_height + wp->w_status_height < topframe->fr_height
10198 && (fprintf(fd,
10199 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10200 n, (long)wp->w_height, Rows / 2, Rows) < 0
10201 || put_eol(fd) == FAIL))
10202 return FAIL;
10204 /* restore width when not full width */
10205 if (wp->w_width < Columns && (fprintf(fd,
10206 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10207 n, (long)wp->w_width, Columns / 2, Columns) < 0
10208 || put_eol(fd) == FAIL))
10209 return FAIL;
10212 else
10214 /* Just equalise window sizes */
10215 if (put_line(fd, "wincmd =") == FAIL)
10216 return FAIL;
10218 return OK;
10222 * Write commands to "fd" to recursively create windows for frame "fr",
10223 * horizontally and vertically split.
10224 * After the commands the last window in the frame is the current window.
10225 * Returns FAIL when writing the commands to "fd" fails.
10227 static int
10228 ses_win_rec(fd, fr)
10229 FILE *fd;
10230 frame_T *fr;
10232 frame_T *frc;
10233 int count = 0;
10235 if (fr->fr_layout != FR_LEAF)
10237 /* Find first frame that's not skipped and then create a window for
10238 * each following one (first frame is already there). */
10239 frc = ses_skipframe(fr->fr_child);
10240 if (frc != NULL)
10241 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10243 /* Make window as big as possible so that we have lots of room
10244 * to split. */
10245 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10246 || put_line(fd, fr->fr_layout == FR_COL
10247 ? "split" : "vsplit") == FAIL)
10248 return FAIL;
10249 ++count;
10252 /* Go back to the first window. */
10253 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10254 ? "%dwincmd k" : "%dwincmd h", count) < 0
10255 || put_eol(fd) == FAIL))
10256 return FAIL;
10258 /* Recursively create frames/windows in each window of this column or
10259 * row. */
10260 frc = ses_skipframe(fr->fr_child);
10261 while (frc != NULL)
10263 ses_win_rec(fd, frc);
10264 frc = ses_skipframe(frc->fr_next);
10265 /* Go to next window. */
10266 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10267 return FAIL;
10270 return OK;
10274 * Skip frames that don't contain windows we want to save in the Session.
10275 * Returns NULL when there none.
10277 static frame_T *
10278 ses_skipframe(fr)
10279 frame_T *fr;
10281 frame_T *frc;
10283 for (frc = fr; frc != NULL; frc = frc->fr_next)
10284 if (ses_do_frame(frc))
10285 break;
10286 return frc;
10290 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10291 * the Session.
10293 static int
10294 ses_do_frame(fr)
10295 frame_T *fr;
10297 frame_T *frc;
10299 if (fr->fr_layout == FR_LEAF)
10300 return ses_do_win(fr->fr_win);
10301 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10302 if (ses_do_frame(frc))
10303 return TRUE;
10304 return FALSE;
10308 * Return non-zero if window "wp" is to be stored in the Session.
10310 static int
10311 ses_do_win(wp)
10312 win_T *wp;
10314 if (wp->w_buffer->b_fname == NULL
10315 #ifdef FEAT_QUICKFIX
10316 /* When 'buftype' is "nofile" can't restore the window contents. */
10317 || bt_nofile(wp->w_buffer)
10318 #endif
10320 return (ssop_flags & SSOP_BLANK);
10321 if (wp->w_buffer->b_help)
10322 return (ssop_flags & SSOP_HELP);
10323 return TRUE;
10327 * Write commands to "fd" to restore the view of a window.
10328 * Caller must make sure 'scrolloff' is zero.
10330 static int
10331 put_view(fd, wp, add_edit, flagp, current_arg_idx)
10332 FILE *fd;
10333 win_T *wp;
10334 int add_edit; /* add ":edit" command to view */
10335 unsigned *flagp; /* vop_flags or ssop_flags */
10336 int current_arg_idx; /* current argument index of the window, use
10337 * -1 if unknown */
10339 win_T *save_curwin;
10340 int f;
10341 int do_cursor;
10342 int did_next = FALSE;
10344 /* Always restore cursor position for ":mksession". For ":mkview" only
10345 * when 'viewoptions' contains "cursor". */
10346 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10349 * Local argument list.
10351 if (wp->w_alist == &global_alist)
10353 if (put_line(fd, "argglobal") == FAIL)
10354 return FAIL;
10356 else
10358 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10359 flagp == &vop_flags
10360 || !(*flagp & SSOP_CURDIR)
10361 || wp->w_localdir != NULL, flagp) == FAIL)
10362 return FAIL;
10365 /* Only when part of a session: restore the argument index. Some
10366 * arguments may have been deleted, check if the index is valid. */
10367 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx <= WARGCOUNT(wp)
10368 && flagp == &ssop_flags)
10370 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
10371 || put_eol(fd) == FAIL)
10372 return FAIL;
10373 did_next = TRUE;
10376 /* Edit the file. Skip this when ":next" already did it. */
10377 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
10380 * Load the file.
10382 if (wp->w_buffer->b_ffname != NULL
10383 #ifdef FEAT_QUICKFIX
10384 && !bt_nofile(wp->w_buffer)
10385 #endif
10389 * Editing a file in this buffer: use ":edit file".
10390 * This may have side effects! (e.g., compressed or network file).
10392 if (fputs("edit ", fd) < 0
10393 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10394 return FAIL;
10396 else
10398 /* No file in this buffer, just make it empty. */
10399 if (put_line(fd, "enew") == FAIL)
10400 return FAIL;
10401 #ifdef FEAT_QUICKFIX
10402 if (wp->w_buffer->b_ffname != NULL)
10404 /* The buffer does have a name, but it's not a file name. */
10405 if (fputs("file ", fd) < 0
10406 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10407 return FAIL;
10409 #endif
10410 do_cursor = FALSE;
10415 * Local mappings and abbreviations.
10417 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10418 && makemap(fd, wp->w_buffer) == FAIL)
10419 return FAIL;
10422 * Local options. Need to go to the window temporarily.
10423 * Store only local values when using ":mkview" and when ":mksession" is
10424 * used and 'sessionoptions' doesn't include "options".
10425 * Some folding options are always stored when "folds" is included,
10426 * otherwise the folds would not be restored correctly.
10428 save_curwin = curwin;
10429 curwin = wp;
10430 curbuf = curwin->w_buffer;
10431 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10432 f = makeset(fd, OPT_LOCAL,
10433 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10434 #ifdef FEAT_FOLDING
10435 else if (*flagp & SSOP_FOLDS)
10436 f = makefoldset(fd);
10437 #endif
10438 else
10439 f = OK;
10440 curwin = save_curwin;
10441 curbuf = curwin->w_buffer;
10442 if (f == FAIL)
10443 return FAIL;
10445 #ifdef FEAT_FOLDING
10447 * Save Folds when 'buftype' is empty and for help files.
10449 if ((*flagp & SSOP_FOLDS)
10450 && wp->w_buffer->b_ffname != NULL
10451 # ifdef FEAT_QUICKFIX
10452 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10453 # endif
10456 if (put_folds(fd, wp) == FAIL)
10457 return FAIL;
10459 #endif
10462 * Set the cursor after creating folds, since that moves the cursor.
10464 if (do_cursor)
10467 /* Restore the cursor line in the file and relatively in the
10468 * window. Don't use "G", it changes the jumplist. */
10469 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10470 (long)wp->w_cursor.lnum,
10471 (long)(wp->w_cursor.lnum - wp->w_topline),
10472 (long)wp->w_height / 2, (long)wp->w_height) < 0
10473 || put_eol(fd) == FAIL
10474 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10475 || put_line(fd, "exe s:l") == FAIL
10476 || put_line(fd, "normal! zt") == FAIL
10477 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10478 || put_eol(fd) == FAIL)
10479 return FAIL;
10480 /* Restore the cursor column and left offset when not wrapping. */
10481 if (wp->w_cursor.col == 0)
10483 if (put_line(fd, "normal! 0") == FAIL)
10484 return FAIL;
10486 else
10488 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10490 if (fprintf(fd,
10491 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10492 (long)wp->w_cursor.col,
10493 (long)(wp->w_cursor.col - wp->w_leftcol),
10494 (long)wp->w_width / 2, (long)wp->w_width) < 0
10495 || put_eol(fd) == FAIL
10496 || put_line(fd, "if s:c > 0") == FAIL
10497 || fprintf(fd,
10498 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10499 (long)wp->w_cursor.col) < 0
10500 || put_eol(fd) == FAIL
10501 || put_line(fd, "else") == FAIL
10502 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10503 || put_eol(fd) == FAIL
10504 || put_line(fd, "endif") == FAIL)
10505 return FAIL;
10507 else
10509 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10510 || put_eol(fd) == FAIL)
10511 return FAIL;
10517 * Local directory.
10519 if (wp->w_localdir != NULL)
10521 if (fputs("lcd ", fd) < 0
10522 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10523 || put_eol(fd) == FAIL)
10524 return FAIL;
10525 did_lcd = TRUE;
10528 return OK;
10532 * Write an argument list to the session file.
10533 * Returns FAIL if writing fails.
10535 static int
10536 ses_arglist(fd, cmd, gap, fullname, flagp)
10537 FILE *fd;
10538 char *cmd;
10539 garray_T *gap;
10540 int fullname; /* TRUE: use full path name */
10541 unsigned *flagp;
10543 int i;
10544 char_u buf[MAXPATHL];
10545 char_u *s;
10547 if (gap->ga_len == 0)
10548 return put_line(fd, "silent! argdel *");
10549 if (fputs(cmd, fd) < 0)
10550 return FAIL;
10551 for (i = 0; i < gap->ga_len; ++i)
10553 /* NULL file names are skipped (only happens when out of memory). */
10554 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10555 if (s != NULL)
10557 if (fullname)
10559 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10560 s = buf;
10562 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10563 return FAIL;
10566 return put_eol(fd);
10570 * Write a buffer name to the session file.
10571 * Also ends the line.
10572 * Returns FAIL if writing fails.
10574 static int
10575 ses_fname(fd, buf, flagp)
10576 FILE *fd;
10577 buf_T *buf;
10578 unsigned *flagp;
10580 char_u *name;
10582 /* Use the short file name if the current directory is known at the time
10583 * the session file will be sourced.
10584 * Don't do this for ":mkview", we don't know the current directory.
10585 * Don't do this after ":lcd", we don't keep track of what the current
10586 * directory is. */
10587 if (buf->b_sfname != NULL
10588 && flagp == &ssop_flags
10589 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10590 #ifdef FEAT_AUTOCHDIR
10591 && !p_acd
10592 #endif
10593 && !did_lcd)
10594 name = buf->b_sfname;
10595 else
10596 name = buf->b_ffname;
10597 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10598 return FAIL;
10599 return OK;
10603 * Write a file name to the session file.
10604 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10605 * characters.
10606 * Returns FAIL if writing fails.
10608 static int
10609 ses_put_fname(fd, name, flagp)
10610 FILE *fd;
10611 char_u *name;
10612 unsigned *flagp;
10614 char_u *sname;
10615 int retval = OK;
10616 int c;
10618 sname = home_replace_save(NULL, name);
10619 if (sname != NULL)
10620 name = sname;
10621 while (*name != NUL)
10623 #ifdef FEAT_MBYTE
10625 int l;
10627 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
10629 /* copy a multibyte char */
10630 while (--l >= 0)
10632 if (putc(*name, fd) != *name)
10633 retval = FAIL;
10634 ++name;
10636 continue;
10639 #endif
10640 c = *name++;
10641 if (c == '\\' && (*flagp & SSOP_SLASH))
10642 /* change a backslash to a forward slash */
10643 c = '/';
10644 else if ((vim_strchr(escape_chars, c) != NULL
10645 #ifdef BACKSLASH_IN_FILENAME
10646 && c != '\\'
10647 #endif
10648 ) || c == '#' || c == '%')
10650 /* escape a special character with a backslash */
10651 if (putc('\\', fd) != '\\')
10652 retval = FAIL;
10654 if (putc(c, fd) != c)
10655 retval = FAIL;
10657 vim_free(sname);
10658 return retval;
10662 * ":loadview [nr]"
10664 static void
10665 ex_loadview(eap)
10666 exarg_T *eap;
10668 char_u *fname;
10670 fname = get_view_file(*eap->arg);
10671 if (fname != NULL)
10673 do_source(fname, FALSE, DOSO_NONE);
10674 vim_free(fname);
10679 * Get the name of the view file for the current buffer.
10681 static char_u *
10682 get_view_file(c)
10683 int c;
10685 int len = 0;
10686 char_u *p, *s;
10687 char_u *retval;
10688 char_u *sname;
10690 if (curbuf->b_ffname == NULL)
10692 EMSG(_(e_noname));
10693 return NULL;
10695 sname = home_replace_save(NULL, curbuf->b_ffname);
10696 if (sname == NULL)
10697 return NULL;
10700 * We want a file name without separators, because we're not going to make
10701 * a directory.
10702 * "normal" path separator -> "=+"
10703 * "=" -> "=="
10704 * ":" path separator -> "=-"
10706 for (p = sname; *p; ++p)
10707 if (*p == '=' || vim_ispathsep(*p))
10708 ++len;
10709 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10710 if (retval != NULL)
10712 STRCPY(retval, p_vdir);
10713 add_pathsep(retval);
10714 s = retval + STRLEN(retval);
10715 for (p = sname; *p; ++p)
10717 if (*p == '=')
10719 *s++ = '=';
10720 *s++ = '=';
10722 else if (vim_ispathsep(*p))
10724 *s++ = '=';
10725 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
10726 || defined(VMS)
10727 if (*p == ':')
10728 *s++ = '-';
10729 else
10730 #endif
10731 *s++ = '+';
10733 else
10734 *s++ = *p;
10736 *s++ = '=';
10737 *s++ = c;
10738 STRCPY(s, ".vim");
10741 vim_free(sname);
10742 return retval;
10745 #endif /* FEAT_SESSION */
10748 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10749 * Return FAIL for a write error.
10752 put_eol(fd)
10753 FILE *fd;
10755 if (
10756 #ifdef USE_CRNL
10758 # ifdef MKSESSION_NL
10759 !mksession_nl &&
10760 # endif
10761 (putc('\r', fd) < 0)) ||
10762 #endif
10763 (putc('\n', fd) < 0))
10764 return FAIL;
10765 return OK;
10769 * Write a line to "fd".
10770 * Return FAIL for a write error.
10773 put_line(fd, s)
10774 FILE *fd;
10775 char *s;
10777 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10778 return FAIL;
10779 return OK;
10782 #ifdef FEAT_VIMINFO
10784 * ":rviminfo" and ":wviminfo".
10786 static void
10787 ex_viminfo(eap)
10788 exarg_T *eap;
10790 char_u *save_viminfo;
10792 save_viminfo = p_viminfo;
10793 if (*p_viminfo == NUL)
10794 p_viminfo = (char_u *)"'100";
10795 if (eap->cmdidx == CMD_rviminfo)
10797 if (read_viminfo(eap->arg, VIF_WANT_INFO | VIF_WANT_MARKS
10798 | (eap->forceit ? VIF_FORCEIT : 0)) == FAIL)
10799 EMSG(_("E195: Cannot open viminfo file for reading"));
10801 else
10802 write_viminfo(eap->arg, eap->forceit);
10803 p_viminfo = save_viminfo;
10805 #endif
10807 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
10809 * Make a dialog message in "buff[IOSIZE]".
10810 * "format" must contain "%s".
10812 void
10813 dialog_msg(buff, format, fname)
10814 char_u *buff;
10815 char *format;
10816 char_u *fname;
10818 if (fname == NULL)
10819 fname = (char_u *)_("Untitled");
10820 vim_snprintf((char *)buff, IOSIZE, format, fname);
10822 #endif
10825 * ":behave {mswin,xterm}"
10827 static void
10828 ex_behave(eap)
10829 exarg_T *eap;
10831 if (STRCMP(eap->arg, "mswin") == 0)
10833 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10834 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10835 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10836 set_option_value((char_u *)"keymodel", 0L,
10837 (char_u *)"startsel,stopsel", 0);
10839 else if (STRCMP(eap->arg, "xterm") == 0)
10841 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10842 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10843 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10844 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10846 else
10847 EMSG2(_(e_invarg2), eap->arg);
10850 #ifdef FEAT_AUTOCMD
10851 static int filetype_detect = FALSE;
10852 static int filetype_plugin = FALSE;
10853 static int filetype_indent = FALSE;
10856 * ":filetype [plugin] [indent] {on,off,detect}"
10857 * on: Load the filetype.vim file to install autocommands for file types.
10858 * off: Load the ftoff.vim file to remove all autocommands for file types.
10859 * plugin on: load filetype.vim and ftplugin.vim
10860 * plugin off: load ftplugof.vim
10861 * indent on: load filetype.vim and indent.vim
10862 * indent off: load indoff.vim
10864 static void
10865 ex_filetype(eap)
10866 exarg_T *eap;
10868 char_u *arg = eap->arg;
10869 int plugin = FALSE;
10870 int indent = FALSE;
10872 if (*eap->arg == NUL)
10874 /* Print current status. */
10875 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10876 filetype_detect ? "ON" : "OFF",
10877 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10878 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10879 return;
10882 /* Accept "plugin" and "indent" in any order. */
10883 for (;;)
10885 if (STRNCMP(arg, "plugin", 6) == 0)
10887 plugin = TRUE;
10888 arg = skipwhite(arg + 6);
10889 continue;
10891 if (STRNCMP(arg, "indent", 6) == 0)
10893 indent = TRUE;
10894 arg = skipwhite(arg + 6);
10895 continue;
10897 break;
10899 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10901 if (*arg == 'o' || !filetype_detect)
10903 source_runtime((char_u *)FILETYPE_FILE, TRUE);
10904 filetype_detect = TRUE;
10905 if (plugin)
10907 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
10908 filetype_plugin = TRUE;
10910 if (indent)
10912 source_runtime((char_u *)INDENT_FILE, TRUE);
10913 filetype_indent = TRUE;
10916 if (*arg == 'd')
10918 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
10919 do_modelines(0);
10922 else if (STRCMP(arg, "off") == 0)
10924 if (plugin || indent)
10926 if (plugin)
10928 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
10929 filetype_plugin = FALSE;
10931 if (indent)
10933 source_runtime((char_u *)INDOFF_FILE, TRUE);
10934 filetype_indent = FALSE;
10937 else
10939 source_runtime((char_u *)FTOFF_FILE, TRUE);
10940 filetype_detect = FALSE;
10943 else
10944 EMSG2(_(e_invarg2), arg);
10948 * ":setfiletype {name}"
10950 static void
10951 ex_setfiletype(eap)
10952 exarg_T *eap;
10954 if (!did_filetype)
10955 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10957 #endif
10959 static void
10960 ex_digraphs(eap)
10961 exarg_T *eap UNUSED;
10963 #ifdef FEAT_DIGRAPHS
10964 if (*eap->arg != NUL)
10965 putdigraph(eap->arg);
10966 else
10967 listdigraphs();
10968 #else
10969 EMSG(_("E196: No digraphs in this version"));
10970 #endif
10973 static void
10974 ex_set(eap)
10975 exarg_T *eap;
10977 int flags = 0;
10979 if (eap->cmdidx == CMD_setlocal)
10980 flags = OPT_LOCAL;
10981 else if (eap->cmdidx == CMD_setglobal)
10982 flags = OPT_GLOBAL;
10983 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10984 if (cmdmod.browse && flags == 0)
10985 ex_options(eap);
10986 else
10987 #endif
10988 (void)do_set(eap->arg, flags);
10991 #ifdef FEAT_SEARCH_EXTRA
10993 * ":nohlsearch"
10995 static void
10996 ex_nohlsearch(eap)
10997 exarg_T *eap UNUSED;
10999 no_hlsearch = TRUE;
11000 redraw_all_later(SOME_VALID);
11004 * ":[N]match {group} {pattern}"
11005 * Sets nextcmd to the start of the next command, if any. Also called when
11006 * skipping commands to find the next command.
11008 static void
11009 ex_match(eap)
11010 exarg_T *eap;
11012 char_u *p;
11013 char_u *g = NULL;
11014 char_u *end;
11015 int c;
11016 int id;
11018 if (eap->line2 <= 3)
11019 id = eap->line2;
11020 else
11022 EMSG(e_invcmd);
11023 return;
11026 /* First clear any old pattern. */
11027 if (!eap->skip)
11028 match_delete(curwin, id, FALSE);
11030 if (ends_excmd(*eap->arg))
11031 end = eap->arg;
11032 else if ((STRNICMP(eap->arg, "none", 4) == 0
11033 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
11034 end = eap->arg + 4;
11035 else
11037 p = skiptowhite(eap->arg);
11038 if (!eap->skip)
11039 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
11040 p = skipwhite(p);
11041 if (*p == NUL)
11043 /* There must be two arguments. */
11044 EMSG2(_(e_invarg2), eap->arg);
11045 return;
11047 end = skip_regexp(p + 1, *p, TRUE, NULL);
11048 if (!eap->skip)
11050 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
11052 eap->errmsg = e_trailing;
11053 return;
11055 if (*end != *p)
11057 EMSG2(_(e_invarg2), p);
11058 return;
11061 c = *end;
11062 *end = NUL;
11063 match_add(curwin, g, p + 1, 10, id);
11064 vim_free(g);
11065 *end = c;
11068 eap->nextcmd = find_nextcmd(end);
11070 #endif
11072 #ifdef FEAT_CRYPT
11074 * ":X": Get crypt key
11076 static void
11077 ex_X(eap)
11078 exarg_T *eap UNUSED;
11080 (void)get_crypt_key(TRUE, TRUE);
11082 #endif
11084 #ifdef FEAT_FOLDING
11085 static void
11086 ex_fold(eap)
11087 exarg_T *eap;
11089 if (foldManualAllowed(TRUE))
11090 foldCreate(eap->line1, eap->line2);
11093 static void
11094 ex_foldopen(eap)
11095 exarg_T *eap;
11097 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
11098 eap->forceit, FALSE);
11101 static void
11102 ex_folddo(eap)
11103 exarg_T *eap;
11105 linenr_T lnum;
11107 /* First set the marks for all lines closed/open. */
11108 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
11109 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
11110 ml_setmarked(lnum);
11112 /* Execute the command on the marked lines. */
11113 global_exe(eap->arg);
11114 ml_clearmarked(); /* clear rest of the marks */
11116 #endif