Make icon module compilation more portable
[MacVim.git] / src / ex_docmd.c
blob83828465d36733e314c384288c82198baaa01062
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * ex_docmd.c: functions for executing an Ex command line.
14 #include "vim.h"
16 static int quitmore = 0;
17 static int ex_pressedreturn = FALSE;
18 #ifndef FEAT_PRINTER
19 # define ex_hardcopy ex_ni
20 #endif
22 #ifdef FEAT_USR_CMDS
23 typedef struct ucmd
25 char_u *uc_name; /* The command name */
26 long_u uc_argt; /* The argument type */
27 char_u *uc_rep; /* The command's replacement string */
28 long uc_def; /* The default value for a range/count */
29 scid_T uc_scriptID; /* SID where the command was defined */
30 int uc_compl; /* completion type */
31 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
32 char_u *uc_compl_arg; /* completion argument if any */
33 # endif
34 } ucmd_T;
36 #define UC_BUFFER 1 /* -buffer: local to current buffer */
38 static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
40 #define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
41 #define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
43 static void do_ucmd __ARGS((exarg_T *eap));
44 static void ex_command __ARGS((exarg_T *eap));
45 static void ex_delcommand __ARGS((exarg_T *eap));
46 # ifdef FEAT_CMDL_COMPL
47 static char_u *get_user_command_name __ARGS((int idx));
48 # endif
50 #else
51 # define ex_command ex_ni
52 # define ex_comclear ex_ni
53 # define ex_delcommand ex_ni
54 #endif
56 #ifdef FEAT_EVAL
57 static char_u *do_one_cmd __ARGS((char_u **, int, struct condstack *, char_u *(*fgetline)(int, void *, int), void *cookie));
58 #else
59 static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
60 static int if_level = 0; /* depth in :if */
61 #endif
62 static char_u *find_command __ARGS((exarg_T *eap, int *full));
64 static void ex_abbreviate __ARGS((exarg_T *eap));
65 static void ex_map __ARGS((exarg_T *eap));
66 static void ex_unmap __ARGS((exarg_T *eap));
67 static void ex_mapclear __ARGS((exarg_T *eap));
68 static void ex_abclear __ARGS((exarg_T *eap));
69 #ifndef FEAT_MENU
70 # define ex_emenu ex_ni
71 # define ex_menu ex_ni
72 # define ex_menutranslate ex_ni
73 #endif
74 #ifdef FEAT_AUTOCMD
75 static void ex_autocmd __ARGS((exarg_T *eap));
76 static void ex_doautocmd __ARGS((exarg_T *eap));
77 #else
78 # define ex_autocmd ex_ni
79 # define ex_doautocmd ex_ni
80 # define ex_doautoall ex_ni
81 #endif
82 #ifdef FEAT_LISTCMDS
83 static void ex_bunload __ARGS((exarg_T *eap));
84 static void ex_buffer __ARGS((exarg_T *eap));
85 static void ex_bmodified __ARGS((exarg_T *eap));
86 static void ex_bnext __ARGS((exarg_T *eap));
87 static void ex_bprevious __ARGS((exarg_T *eap));
88 static void ex_brewind __ARGS((exarg_T *eap));
89 static void ex_blast __ARGS((exarg_T *eap));
90 #else
91 # define ex_bunload ex_ni
92 # define ex_buffer ex_ni
93 # define ex_bmodified ex_ni
94 # define ex_bnext ex_ni
95 # define ex_bprevious ex_ni
96 # define ex_brewind ex_ni
97 # define ex_blast ex_ni
98 # define buflist_list ex_ni
99 # define ex_checktime ex_ni
100 #endif
101 #if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
102 # define ex_buffer_all ex_ni
103 #endif
104 static char_u *getargcmd __ARGS((char_u **));
105 static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
106 static int getargopt __ARGS((exarg_T *eap));
107 #ifndef FEAT_QUICKFIX
108 # define ex_make ex_ni
109 # define ex_cbuffer ex_ni
110 # define ex_cc ex_ni
111 # define ex_cnext ex_ni
112 # define ex_cfile ex_ni
113 # define qf_list ex_ni
114 # define qf_age ex_ni
115 # define ex_helpgrep ex_ni
116 # define ex_vimgrep ex_ni
117 #endif
118 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
119 # define ex_cclose ex_ni
120 # define ex_copen ex_ni
121 # define ex_cwindow ex_ni
122 #endif
123 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
124 # define ex_cexpr ex_ni
125 #endif
127 static int check_more __ARGS((int, int));
128 static linenr_T get_address __ARGS((char_u **, int skip, int to_other_file));
129 static void get_flags __ARGS((exarg_T *eap));
130 #if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
131 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
132 # define HAVE_EX_SCRIPT_NI
133 static void ex_script_ni __ARGS((exarg_T *eap));
134 #endif
135 static char_u *invalid_range __ARGS((exarg_T *eap));
136 static void correct_range __ARGS((exarg_T *eap));
137 #ifdef FEAT_QUICKFIX
138 static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
139 #endif
140 static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
141 static void ex_highlight __ARGS((exarg_T *eap));
142 static void ex_colorscheme __ARGS((exarg_T *eap));
143 static void ex_quit __ARGS((exarg_T *eap));
144 static void ex_cquit __ARGS((exarg_T *eap));
145 static void ex_quit_all __ARGS((exarg_T *eap));
146 #ifdef FEAT_WINDOWS
147 static void ex_close __ARGS((exarg_T *eap));
148 static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
149 static void ex_only __ARGS((exarg_T *eap));
150 static void ex_resize __ARGS((exarg_T *eap));
151 static void ex_stag __ARGS((exarg_T *eap));
152 static void ex_tabclose __ARGS((exarg_T *eap));
153 static void ex_tabonly __ARGS((exarg_T *eap));
154 static void ex_tabnext __ARGS((exarg_T *eap));
155 static void ex_tabmove __ARGS((exarg_T *eap));
156 static void ex_tabs __ARGS((exarg_T *eap));
157 #else
158 # define ex_close ex_ni
159 # define ex_only ex_ni
160 # define ex_all ex_ni
161 # define ex_resize ex_ni
162 # define ex_splitview ex_ni
163 # define ex_stag ex_ni
164 # define ex_tabnext ex_ni
165 # define ex_tabmove ex_ni
166 # define ex_tabs ex_ni
167 # define ex_tabclose ex_ni
168 # define ex_tabonly ex_ni
169 #endif
170 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
171 static void ex_pclose __ARGS((exarg_T *eap));
172 static void ex_ptag __ARGS((exarg_T *eap));
173 static void ex_pedit __ARGS((exarg_T *eap));
174 #else
175 # define ex_pclose ex_ni
176 # define ex_ptag ex_ni
177 # define ex_pedit ex_ni
178 #endif
179 static void ex_hide __ARGS((exarg_T *eap));
180 static void ex_stop __ARGS((exarg_T *eap));
181 static void ex_exit __ARGS((exarg_T *eap));
182 static void ex_print __ARGS((exarg_T *eap));
183 #ifdef FEAT_BYTEOFF
184 static void ex_goto __ARGS((exarg_T *eap));
185 #else
186 # define ex_goto ex_ni
187 #endif
188 static void ex_shell __ARGS((exarg_T *eap));
189 static void ex_preserve __ARGS((exarg_T *eap));
190 static void ex_recover __ARGS((exarg_T *eap));
191 #ifndef FEAT_LISTCMDS
192 # define ex_argedit ex_ni
193 # define ex_argadd ex_ni
194 # define ex_argdelete ex_ni
195 # define ex_listdo ex_ni
196 #endif
197 static void ex_mode __ARGS((exarg_T *eap));
198 static void ex_wrongmodifier __ARGS((exarg_T *eap));
199 static void ex_find __ARGS((exarg_T *eap));
200 static void ex_open __ARGS((exarg_T *eap));
201 static void ex_edit __ARGS((exarg_T *eap));
202 #if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
203 # define ex_drop ex_ni
204 #endif
205 #ifndef FEAT_GUI
206 # define ex_gui ex_nogui
207 static void ex_nogui __ARGS((exarg_T *eap));
208 #endif
209 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
210 static void ex_tearoff __ARGS((exarg_T *eap));
211 #else
212 # define ex_tearoff ex_ni
213 #endif
214 #if defined(FEAT_MENU) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
215 || defined(FEAT_GUI_MACVIM))
216 static void ex_popup __ARGS((exarg_T *eap));
217 #else
218 # define ex_popup ex_ni
219 #endif
220 #ifndef FEAT_GUI_MSWIN
221 # define ex_simalt ex_ni
222 #endif
223 #if !(defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) || \
224 defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MACVIM))
225 # define gui_mch_find_dialog ex_ni
226 # define gui_mch_replace_dialog ex_ni
227 #endif
228 #if !defined(FEAT_GUI_GTK)
229 # define ex_helpfind ex_ni
230 #endif
231 #ifndef FEAT_CSCOPE
232 # define do_cscope ex_ni
233 # define do_scscope ex_ni
234 # define do_cstag ex_ni
235 #endif
236 #ifndef FEAT_SYN_HL
237 # define ex_syntax ex_ni
238 #endif
239 #ifndef FEAT_SPELL
240 # define ex_spell ex_ni
241 # define ex_mkspell ex_ni
242 # define ex_spelldump ex_ni
243 # define ex_spellinfo ex_ni
244 # define ex_spellrepall ex_ni
245 #endif
246 #ifndef FEAT_MZSCHEME
247 # define ex_mzscheme ex_script_ni
248 # define ex_mzfile ex_ni
249 #endif
250 #ifndef FEAT_PERL
251 # define ex_perl ex_script_ni
252 # define ex_perldo ex_ni
253 #endif
254 #ifndef FEAT_PYTHON
255 # define ex_python ex_script_ni
256 # define ex_pyfile ex_ni
257 #endif
258 #ifndef FEAT_TCL
259 # define ex_tcl ex_script_ni
260 # define ex_tcldo ex_ni
261 # define ex_tclfile ex_ni
262 #endif
263 #ifndef FEAT_RUBY
264 # define ex_ruby ex_script_ni
265 # define ex_rubydo ex_ni
266 # define ex_rubyfile ex_ni
267 #endif
268 #ifndef FEAT_SNIFF
269 # define ex_sniff ex_ni
270 #endif
271 #ifndef FEAT_KEYMAP
272 # define ex_loadkeymap ex_ni
273 #endif
274 static void ex_swapname __ARGS((exarg_T *eap));
275 static void ex_syncbind __ARGS((exarg_T *eap));
276 static void ex_read __ARGS((exarg_T *eap));
277 static void ex_pwd __ARGS((exarg_T *eap));
278 static void ex_equal __ARGS((exarg_T *eap));
279 static void ex_sleep __ARGS((exarg_T *eap));
280 static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
281 static void ex_winsize __ARGS((exarg_T *eap));
282 #ifdef FEAT_WINDOWS
283 static void ex_wincmd __ARGS((exarg_T *eap));
284 #else
285 # define ex_wincmd ex_ni
286 #endif
287 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
288 static void ex_winpos __ARGS((exarg_T *eap));
289 #else
290 # define ex_winpos ex_ni
291 #endif
292 static void ex_operators __ARGS((exarg_T *eap));
293 static void ex_put __ARGS((exarg_T *eap));
294 static void ex_copymove __ARGS((exarg_T *eap));
295 static void ex_may_print __ARGS((exarg_T *eap));
296 static void ex_submagic __ARGS((exarg_T *eap));
297 static void ex_join __ARGS((exarg_T *eap));
298 static void ex_at __ARGS((exarg_T *eap));
299 static void ex_bang __ARGS((exarg_T *eap));
300 static void ex_undo __ARGS((exarg_T *eap));
301 static void ex_redo __ARGS((exarg_T *eap));
302 static void ex_later __ARGS((exarg_T *eap));
303 static void ex_redir __ARGS((exarg_T *eap));
304 static void ex_redraw __ARGS((exarg_T *eap));
305 static void ex_redrawstatus __ARGS((exarg_T *eap));
306 static void close_redir __ARGS((void));
307 static void ex_mkrc __ARGS((exarg_T *eap));
308 static void ex_mark __ARGS((exarg_T *eap));
309 #ifdef FEAT_USR_CMDS
310 static char_u *uc_fun_cmd __ARGS((void));
311 static char_u *find_ucmd __ARGS((exarg_T *eap, char_u *p, int *full, expand_T *xp, int *compl));
312 #endif
313 #ifdef FEAT_EX_EXTRA
314 static void ex_normal __ARGS((exarg_T *eap));
315 static void ex_startinsert __ARGS((exarg_T *eap));
316 static void ex_stopinsert __ARGS((exarg_T *eap));
317 #else
318 # define ex_normal ex_ni
319 # define ex_align ex_ni
320 # define ex_retab ex_ni
321 # define ex_startinsert ex_ni
322 # define ex_stopinsert ex_ni
323 # define ex_helptags ex_ni
324 # define ex_sort ex_ni
325 #endif
326 #ifdef FEAT_FIND_ID
327 static void ex_checkpath __ARGS((exarg_T *eap));
328 static void ex_findpat __ARGS((exarg_T *eap));
329 #else
330 # define ex_findpat ex_ni
331 # define ex_checkpath ex_ni
332 #endif
333 #if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
334 static void ex_psearch __ARGS((exarg_T *eap));
335 #else
336 # define ex_psearch ex_ni
337 #endif
338 static void ex_tag __ARGS((exarg_T *eap));
339 static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
340 #ifndef FEAT_EVAL
341 # define ex_scriptnames ex_ni
342 # define ex_finish ex_ni
343 # define ex_echo ex_ni
344 # define ex_echohl ex_ni
345 # define ex_execute ex_ni
346 # define ex_call ex_ni
347 # define ex_if ex_ni
348 # define ex_endif ex_ni
349 # define ex_else ex_ni
350 # define ex_while ex_ni
351 # define ex_for ex_ni
352 # define ex_continue ex_ni
353 # define ex_break ex_ni
354 # define ex_endwhile ex_ni
355 # define ex_endfor ex_ni
356 # define ex_throw ex_ni
357 # define ex_try ex_ni
358 # define ex_catch ex_ni
359 # define ex_finally ex_ni
360 # define ex_endtry ex_ni
361 # define ex_endfunction ex_ni
362 # define ex_let ex_ni
363 # define ex_unlet ex_ni
364 # define ex_lockvar ex_ni
365 # define ex_unlockvar ex_ni
366 # define ex_function ex_ni
367 # define ex_delfunction ex_ni
368 # define ex_return ex_ni
369 # define ex_oldfiles ex_ni
370 #endif
371 static char_u *arg_all __ARGS((void));
372 #ifdef FEAT_SESSION
373 static int makeopens __ARGS((FILE *fd, char_u *dirnow));
374 static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp, int current_arg_idx));
375 static void ex_loadview __ARGS((exarg_T *eap));
376 static char_u *get_view_file __ARGS((int c));
377 static int did_lcd; /* whether ":lcd" was produced for a session */
378 #else
379 # define ex_loadview ex_ni
380 #endif
381 #ifndef FEAT_EVAL
382 # define ex_compiler ex_ni
383 #endif
384 #ifdef FEAT_VIMINFO
385 static void ex_viminfo __ARGS((exarg_T *eap));
386 #else
387 # define ex_viminfo ex_ni
388 #endif
389 static void ex_behave __ARGS((exarg_T *eap));
390 #ifdef FEAT_AUTOCMD
391 static void ex_filetype __ARGS((exarg_T *eap));
392 static void ex_setfiletype __ARGS((exarg_T *eap));
393 #else
394 # define ex_filetype ex_ni
395 # define ex_setfiletype ex_ni
396 #endif
397 #ifndef FEAT_DIFF
398 # define ex_diffoff ex_ni
399 # define ex_diffpatch ex_ni
400 # define ex_diffgetput ex_ni
401 # define ex_diffsplit ex_ni
402 # define ex_diffthis ex_ni
403 # define ex_diffupdate ex_ni
404 #endif
405 static void ex_digraphs __ARGS((exarg_T *eap));
406 static void ex_set __ARGS((exarg_T *eap));
407 #if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
408 # define ex_options ex_ni
409 #endif
410 #ifdef FEAT_SEARCH_EXTRA
411 static void ex_nohlsearch __ARGS((exarg_T *eap));
412 static void ex_match __ARGS((exarg_T *eap));
413 #else
414 # define ex_nohlsearch ex_ni
415 # define ex_match ex_ni
416 #endif
417 #ifdef FEAT_CRYPT
418 static void ex_X __ARGS((exarg_T *eap));
419 #else
420 # define ex_X ex_ni
421 #endif
422 #ifdef FEAT_FOLDING
423 static void ex_fold __ARGS((exarg_T *eap));
424 static void ex_foldopen __ARGS((exarg_T *eap));
425 static void ex_folddo __ARGS((exarg_T *eap));
426 #else
427 # define ex_fold ex_ni
428 # define ex_foldopen ex_ni
429 # define ex_folddo ex_ni
430 #endif
431 #if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
432 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
433 # define ex_language ex_ni
434 #endif
435 #ifndef FEAT_SIGNS
436 # define ex_sign ex_ni
437 #endif
438 #ifndef FEAT_SUN_WORKSHOP
439 # define ex_wsverb ex_ni
440 #endif
441 #ifndef FEAT_NETBEANS_INTG
442 # define ex_nbkey ex_ni
443 #endif
445 #ifndef FEAT_EVAL
446 # define ex_debug ex_ni
447 # define ex_breakadd ex_ni
448 # define ex_debuggreedy ex_ni
449 # define ex_breakdel ex_ni
450 # define ex_breaklist ex_ni
451 #endif
453 #ifndef FEAT_CMDHIST
454 # define ex_history ex_ni
455 #endif
456 #ifndef FEAT_JUMPLIST
457 # define ex_jumps ex_ni
458 # define ex_changes ex_ni
459 #endif
461 #ifndef FEAT_PROFILE
462 # define ex_profile ex_ni
463 #endif
465 #ifndef FEAT_GUI_MACVIM
466 # define ex_macaction ex_ni
467 # define ex_macmenu ex_ni
468 #endif
471 * Declare cmdnames[].
473 #define DO_DECLARE_EXCMD
474 #include "ex_cmds.h"
477 * Table used to quickly search for a command, based on its first character.
479 static cmdidx_T cmdidxs[27] =
481 CMD_append,
482 CMD_buffer,
483 CMD_change,
484 CMD_delete,
485 CMD_edit,
486 CMD_file,
487 CMD_global,
488 CMD_help,
489 CMD_insert,
490 CMD_join,
491 CMD_k,
492 CMD_list,
493 CMD_move,
494 CMD_next,
495 CMD_open,
496 CMD_print,
497 CMD_quit,
498 CMD_read,
499 CMD_substitute,
500 CMD_t,
501 CMD_undo,
502 CMD_vglobal,
503 CMD_write,
504 CMD_xit,
505 CMD_yank,
506 CMD_z,
507 CMD_bang
510 static char_u dollar_command[2] = {'$', 0};
513 #ifdef FEAT_EVAL
514 /* Struct for storing a line inside a while/for loop */
515 typedef struct
517 char_u *line; /* command line */
518 linenr_T lnum; /* sourcing_lnum of the line */
519 } wcmd_T;
522 * Structure used to store info for line position in a while or for loop.
523 * This is required, because do_one_cmd() may invoke ex_function(), which
524 * reads more lines that may come from the while/for loop.
526 struct loop_cookie
528 garray_T *lines_gap; /* growarray with line info */
529 int current_line; /* last read line from growarray */
530 int repeating; /* TRUE when looping a second time */
531 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
532 char_u *(*getline) __ARGS((int, void *, int));
533 void *cookie;
536 static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
537 static int store_loop_line __ARGS((garray_T *gap, char_u *line));
538 static void free_cmdlines __ARGS((garray_T *gap));
540 /* Struct to save a few things while debugging. Used in do_cmdline() only. */
541 struct dbg_stuff
543 int trylevel;
544 int force_abort;
545 except_T *caught_stack;
546 char_u *vv_exception;
547 char_u *vv_throwpoint;
548 int did_emsg;
549 int got_int;
550 int did_throw;
551 int need_rethrow;
552 int check_cstack;
553 except_T *current_exception;
556 static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
557 static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
559 static void
560 save_dbg_stuff(dsp)
561 struct dbg_stuff *dsp;
563 dsp->trylevel = trylevel; trylevel = 0;
564 dsp->force_abort = force_abort; force_abort = FALSE;
565 dsp->caught_stack = caught_stack; caught_stack = NULL;
566 dsp->vv_exception = v_exception(NULL);
567 dsp->vv_throwpoint = v_throwpoint(NULL);
569 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
570 dsp->did_emsg = did_emsg; did_emsg = FALSE;
571 dsp->got_int = got_int; got_int = FALSE;
572 dsp->did_throw = did_throw; did_throw = FALSE;
573 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
574 dsp->check_cstack = check_cstack; check_cstack = FALSE;
575 dsp->current_exception = current_exception; current_exception = NULL;
578 static void
579 restore_dbg_stuff(dsp)
580 struct dbg_stuff *dsp;
582 suppress_errthrow = FALSE;
583 trylevel = dsp->trylevel;
584 force_abort = dsp->force_abort;
585 caught_stack = dsp->caught_stack;
586 (void)v_exception(dsp->vv_exception);
587 (void)v_throwpoint(dsp->vv_throwpoint);
588 did_emsg = dsp->did_emsg;
589 got_int = dsp->got_int;
590 did_throw = dsp->did_throw;
591 need_rethrow = dsp->need_rethrow;
592 check_cstack = dsp->check_cstack;
593 current_exception = dsp->current_exception;
595 #endif
599 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
600 * command is given.
602 void
603 do_exmode(improved)
604 int improved; /* TRUE for "improved Ex" mode */
606 int save_msg_scroll;
607 int prev_msg_row;
608 linenr_T prev_line;
609 int changedtick;
611 if (improved)
612 exmode_active = EXMODE_VIM;
613 else
614 exmode_active = EXMODE_NORMAL;
615 State = NORMAL;
617 /* When using ":global /pat/ visual" and then "Q" we return to continue
618 * the :global command. */
619 if (global_busy)
620 return;
622 save_msg_scroll = msg_scroll;
623 ++RedrawingDisabled; /* don't redisplay the window */
624 ++no_wait_return; /* don't wait for return */
625 #ifdef FEAT_GUI
626 /* Ignore scrollbar and mouse events in Ex mode */
627 ++hold_gui_events;
628 #endif
629 #ifdef FEAT_SNIFF
630 want_sniff_request = 0; /* No K_SNIFF wanted */
631 #endif
633 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
634 while (exmode_active)
636 #ifdef FEAT_EX_EXTRA
637 /* Check for a ":normal" command and no more characters left. */
638 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
640 exmode_active = FALSE;
641 break;
643 #endif
644 msg_scroll = TRUE;
645 need_wait_return = FALSE;
646 ex_pressedreturn = FALSE;
647 ex_no_reprint = FALSE;
648 changedtick = curbuf->b_changedtick;
649 prev_msg_row = msg_row;
650 prev_line = curwin->w_cursor.lnum;
651 #ifdef FEAT_SNIFF
652 ProcessSniffRequests();
653 #endif
654 if (improved)
656 cmdline_row = msg_row;
657 do_cmdline(NULL, getexline, NULL, 0);
659 else
660 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
661 lines_left = Rows - 1;
663 if ((prev_line != curwin->w_cursor.lnum
664 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
666 if (curbuf->b_ml.ml_flags & ML_EMPTY)
667 EMSG(_(e_emptybuf));
668 else
670 if (ex_pressedreturn)
672 /* go up one line, to overwrite the ":<CR>" line, so the
673 * output doesn't contain empty lines. */
674 msg_row = prev_msg_row;
675 if (prev_msg_row == Rows - 1)
676 msg_row--;
678 msg_col = 0;
679 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
680 msg_clr_eos();
683 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
685 if (curbuf->b_ml.ml_flags & ML_EMPTY)
686 EMSG(_(e_emptybuf));
687 else
688 EMSG(_("E501: At end-of-file"));
692 #ifdef FEAT_GUI
693 --hold_gui_events;
694 #endif
695 --RedrawingDisabled;
696 --no_wait_return;
697 update_screen(CLEAR);
698 need_wait_return = FALSE;
699 msg_scroll = save_msg_scroll;
703 * Execute a simple command line. Used for translated commands like "*".
706 do_cmdline_cmd(cmd)
707 char_u *cmd;
709 return do_cmdline(cmd, NULL, NULL,
710 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
714 * do_cmdline(): execute one Ex command line
716 * 1. Execute "cmdline" when it is not NULL.
717 * If "cmdline" is NULL, or more lines are needed, getline() is used.
718 * 2. Split up in parts separated with '|'.
720 * This function can be called recursively!
722 * flags:
723 * DOCMD_VERBOSE - The command will be included in the error message.
724 * DOCMD_NOWAIT - Don't call wait_return() and friends.
725 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
726 * DOCMD_KEYTYPED - Don't reset KeyTyped.
727 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
728 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
730 * return FAIL if cmdline could not be executed, OK otherwise
733 do_cmdline(cmdline, getline, cookie, flags)
734 char_u *cmdline;
735 char_u *(*getline) __ARGS((int, void *, int));
736 void *cookie; /* argument for getline() */
737 int flags;
739 char_u *next_cmdline; /* next cmd to execute */
740 char_u *cmdline_copy = NULL; /* copy of cmd line */
741 int used_getline = FALSE; /* used "getline" to obtain command */
742 static int recursive = 0; /* recursive depth */
743 int msg_didout_before_start = 0;
744 int count = 0; /* line number count */
745 int did_inc = FALSE; /* incremented RedrawingDisabled */
746 int retval = OK;
747 #ifdef FEAT_EVAL
748 struct condstack cstack; /* conditional stack */
749 garray_T lines_ga; /* keep lines for ":while"/":for" */
750 int current_line = 0; /* active line in lines_ga */
751 char_u *fname = NULL; /* function or script name */
752 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
753 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
754 struct dbg_stuff debug_saved; /* saved things for debug mode */
755 int initial_trylevel;
756 struct msglist **saved_msg_list = NULL;
757 struct msglist *private_msg_list;
759 /* "getline" and "cookie" passed to do_one_cmd() */
760 char_u *(*cmd_getline) __ARGS((int, void *, int));
761 void *cmd_cookie;
762 struct loop_cookie cmd_loop_cookie;
763 void *real_cookie;
764 int getline_is_func;
765 #else
766 # define cmd_getline getline
767 # define cmd_cookie cookie
768 #endif
769 static int call_depth = 0; /* recursiveness */
771 #ifdef FEAT_EVAL
772 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
773 * location for storing error messages to be converted to an exception.
774 * This ensures that the do_errthrow() call in do_one_cmd() does not
775 * combine the messages stored by an earlier invocation of do_one_cmd()
776 * with the command name of the later one. This would happen when
777 * BufWritePost autocommands are executed after a write error. */
778 saved_msg_list = msg_list;
779 msg_list = &private_msg_list;
780 private_msg_list = NULL;
781 #endif
783 /* It's possible to create an endless loop with ":execute", catch that
784 * here. The value of 200 allows nested function calls, ":source", etc. */
785 if (call_depth == 200)
787 EMSG(_("E169: Command too recursive"));
788 #ifdef FEAT_EVAL
789 /* When converting to an exception, we do not include the command name
790 * since this is not an error of the specific command. */
791 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
792 msg_list = saved_msg_list;
793 #endif
794 return FAIL;
796 ++call_depth;
798 #ifdef FEAT_EVAL
799 cstack.cs_idx = -1;
800 cstack.cs_looplevel = 0;
801 cstack.cs_trylevel = 0;
802 cstack.cs_emsg_silent_list = NULL;
803 cstack.cs_lflags = 0;
804 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
806 real_cookie = getline_cookie(getline, cookie);
808 /* Inside a function use a higher nesting level. */
809 getline_is_func = getline_equal(getline, cookie, get_func_line);
810 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
811 ++ex_nesting_level;
813 /* Get the function or script name and the address where the next breakpoint
814 * line and the debug tick for a function or script are stored. */
815 if (getline_is_func)
817 fname = func_name(real_cookie);
818 breakpoint = func_breakpoint(real_cookie);
819 dbg_tick = func_dbg_tick(real_cookie);
821 else if (getline_equal(getline, cookie, getsourceline))
823 fname = sourcing_name;
824 breakpoint = source_breakpoint(real_cookie);
825 dbg_tick = source_dbg_tick(real_cookie);
829 * Initialize "force_abort" and "suppress_errthrow" at the top level.
831 if (!recursive)
833 force_abort = FALSE;
834 suppress_errthrow = FALSE;
838 * If requested, store and reset the global values controlling the
839 * exception handling (used when debugging). Otherwise clear it to avoid
840 * a bogus compiler warning when the optimizer uses inline functions...
842 if (flags & DOCMD_EXCRESET)
843 save_dbg_stuff(&debug_saved);
844 else
845 memset(&debug_saved, 0, 1);
847 initial_trylevel = trylevel;
850 * "did_throw" will be set to TRUE when an exception is being thrown.
852 did_throw = FALSE;
853 #endif
855 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
856 * cancel the whole command line, and any if/endif or loop.
857 * If force_abort is set, we cancel everything.
859 did_emsg = FALSE;
862 * KeyTyped is only set when calling vgetc(). Reset it here when not
863 * calling vgetc() (sourced command lines).
865 if (!(flags & DOCMD_KEYTYPED) && !getline_equal(getline, cookie, getexline))
866 KeyTyped = FALSE;
869 * Continue executing command lines:
870 * - when inside an ":if", ":while" or ":for"
871 * - for multiple commands on one line, separated with '|'
872 * - when repeating until there are no more lines (for ":source")
874 next_cmdline = cmdline;
877 #ifdef FEAT_EVAL
878 getline_is_func = getline_equal(getline, cookie, get_func_line);
879 #endif
881 /* stop skipping cmds for an error msg after all endif/while/for */
882 if (next_cmdline == NULL
883 #ifdef FEAT_EVAL
884 && !force_abort
885 && cstack.cs_idx < 0
886 && !(getline_is_func && func_has_abort(real_cookie))
887 #endif
889 did_emsg = FALSE;
892 * 1. If repeating a line in a loop, get a line from lines_ga.
893 * 2. If no line given: Get an allocated line with getline().
894 * 3. If a line is given: Make a copy, so we can mess with it.
897 #ifdef FEAT_EVAL
898 /* 1. If repeating, get a previous line from lines_ga. */
899 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
901 /* Each '|' separated command is stored separately in lines_ga, to
902 * be able to jump to it. Don't use next_cmdline now. */
903 vim_free(cmdline_copy);
904 cmdline_copy = NULL;
906 /* Check if a function has returned or, unless it has an unclosed
907 * try conditional, aborted. */
908 if (getline_is_func)
910 # ifdef FEAT_PROFILE
911 if (do_profiling == PROF_YES)
912 func_line_end(real_cookie);
913 # endif
914 if (func_has_ended(real_cookie))
916 retval = FAIL;
917 break;
920 #ifdef FEAT_PROFILE
921 else if (do_profiling == PROF_YES
922 && getline_equal(getline, cookie, getsourceline))
923 script_line_end();
924 #endif
926 /* Check if a sourced file hit a ":finish" command. */
927 if (source_finished(getline, cookie))
929 retval = FAIL;
930 break;
933 /* If breakpoints have been added/deleted need to check for it. */
934 if (breakpoint != NULL && dbg_tick != NULL
935 && *dbg_tick != debug_tick)
937 *breakpoint = dbg_find_breakpoint(
938 getline_equal(getline, cookie, getsourceline),
939 fname, sourcing_lnum);
940 *dbg_tick = debug_tick;
943 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
944 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
946 /* Did we encounter a breakpoint? */
947 if (breakpoint != NULL && *breakpoint != 0
948 && *breakpoint <= sourcing_lnum)
950 dbg_breakpoint(fname, sourcing_lnum);
951 /* Find next breakpoint. */
952 *breakpoint = dbg_find_breakpoint(
953 getline_equal(getline, cookie, getsourceline),
954 fname, sourcing_lnum);
955 *dbg_tick = debug_tick;
957 # ifdef FEAT_PROFILE
958 if (do_profiling == PROF_YES)
960 if (getline_is_func)
961 func_line_start(real_cookie);
962 else if (getline_equal(getline, cookie, getsourceline))
963 script_line_start();
965 # endif
968 if (cstack.cs_looplevel > 0)
970 /* Inside a while/for loop we need to store the lines and use them
971 * again. Pass a different "getline" function to do_one_cmd()
972 * below, so that it stores lines in or reads them from
973 * "lines_ga". Makes it possible to define a function inside a
974 * while/for loop. */
975 cmd_getline = get_loop_line;
976 cmd_cookie = (void *)&cmd_loop_cookie;
977 cmd_loop_cookie.lines_gap = &lines_ga;
978 cmd_loop_cookie.current_line = current_line;
979 cmd_loop_cookie.getline = getline;
980 cmd_loop_cookie.cookie = cookie;
981 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
983 else
985 cmd_getline = getline;
986 cmd_cookie = cookie;
988 #endif
990 /* 2. If no line given, get an allocated line with getline(). */
991 if (next_cmdline == NULL)
994 * Need to set msg_didout for the first line after an ":if",
995 * otherwise the ":if" will be overwritten.
997 if (count == 1 && getline_equal(getline, cookie, getexline))
998 msg_didout = TRUE;
999 if (getline == NULL || (next_cmdline = getline(':', cookie,
1000 #ifdef FEAT_EVAL
1001 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
1002 #else
1004 #endif
1005 )) == NULL)
1007 /* Don't call wait_return for aborted command line. The NULL
1008 * returned for the end of a sourced file or executed function
1009 * doesn't do this. */
1010 if (KeyTyped && !(flags & DOCMD_REPEAT))
1011 need_wait_return = FALSE;
1012 retval = FAIL;
1013 break;
1015 used_getline = TRUE;
1018 * Keep the first typed line. Clear it when more lines are typed.
1020 if (flags & DOCMD_KEEPLINE)
1022 vim_free(repeat_cmdline);
1023 if (count == 0)
1024 repeat_cmdline = vim_strsave(next_cmdline);
1025 else
1026 repeat_cmdline = NULL;
1030 /* 3. Make a copy of the command so we can mess with it. */
1031 else if (cmdline_copy == NULL)
1033 next_cmdline = vim_strsave(next_cmdline);
1034 if (next_cmdline == NULL)
1036 EMSG(_(e_outofmem));
1037 retval = FAIL;
1038 break;
1041 cmdline_copy = next_cmdline;
1043 #ifdef FEAT_EVAL
1045 * Save the current line when inside a ":while" or ":for", and when
1046 * the command looks like a ":while" or ":for", because we may need it
1047 * later. When there is a '|' and another command, it is stored
1048 * separately, because we need to be able to jump back to it from an
1049 * :endwhile/:endfor.
1051 if (current_line == lines_ga.ga_len
1052 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
1054 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
1056 retval = FAIL;
1057 break;
1060 did_endif = FALSE;
1061 #endif
1063 if (count++ == 0)
1066 * All output from the commands is put below each other, without
1067 * waiting for a return. Don't do this when executing commands
1068 * from a script or when being called recursive (e.g. for ":e
1069 * +command file").
1071 if (!(flags & DOCMD_NOWAIT) && !recursive)
1073 msg_didout_before_start = msg_didout;
1074 msg_didany = FALSE; /* no output yet */
1075 msg_start();
1076 msg_scroll = TRUE; /* put messages below each other */
1077 ++no_wait_return; /* dont wait for return until finished */
1078 ++RedrawingDisabled;
1079 did_inc = TRUE;
1083 if (p_verbose >= 15 && sourcing_name != NULL)
1085 ++no_wait_return;
1086 verbose_enter_scroll();
1088 smsg((char_u *)_("line %ld: %s"),
1089 (long)sourcing_lnum, cmdline_copy);
1090 if (msg_silent == 0)
1091 msg_puts((char_u *)"\n"); /* don't overwrite this */
1093 verbose_leave_scroll();
1094 --no_wait_return;
1098 * 2. Execute one '|' separated command.
1099 * do_one_cmd() will return NULL if there is no trailing '|'.
1100 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1102 ++recursive;
1103 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1104 #ifdef FEAT_EVAL
1105 &cstack,
1106 #endif
1107 cmd_getline, cmd_cookie);
1108 --recursive;
1110 #ifdef FEAT_EVAL
1111 if (cmd_cookie == (void *)&cmd_loop_cookie)
1112 /* Use "current_line" from "cmd_loop_cookie", it may have been
1113 * incremented when defining a function. */
1114 current_line = cmd_loop_cookie.current_line;
1115 #endif
1117 if (next_cmdline == NULL)
1119 vim_free(cmdline_copy);
1120 cmdline_copy = NULL;
1121 #ifdef FEAT_CMDHIST
1123 * If the command was typed, remember it for the ':' register.
1124 * Do this AFTER executing the command to make :@: work.
1126 if (getline_equal(getline, cookie, getexline)
1127 && new_last_cmdline != NULL)
1129 vim_free(last_cmdline);
1130 last_cmdline = new_last_cmdline;
1131 new_last_cmdline = NULL;
1133 #endif
1135 else
1137 /* need to copy the command after the '|' to cmdline_copy, for the
1138 * next do_one_cmd() */
1139 STRMOVE(cmdline_copy, next_cmdline);
1140 next_cmdline = cmdline_copy;
1144 #ifdef FEAT_EVAL
1145 /* reset did_emsg for a function that is not aborted by an error */
1146 if (did_emsg && !force_abort
1147 && getline_equal(getline, cookie, get_func_line)
1148 && !func_has_abort(real_cookie))
1149 did_emsg = FALSE;
1151 if (cstack.cs_looplevel > 0)
1153 ++current_line;
1156 * An ":endwhile", ":endfor" and ":continue" is handled here.
1157 * If we were executing commands, jump back to the ":while" or
1158 * ":for".
1159 * If we were not executing commands, decrement cs_looplevel.
1161 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
1163 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
1165 /* Jump back to the matching ":while" or ":for". Be careful
1166 * not to use a cs_line[] from an entry that isn't a ":while"
1167 * or ":for": It would make "current_line" invalid and can
1168 * cause a crash. */
1169 if (!did_emsg && !got_int && !did_throw
1170 && cstack.cs_idx >= 0
1171 && (cstack.cs_flags[cstack.cs_idx]
1172 & (CSF_WHILE | CSF_FOR))
1173 && cstack.cs_line[cstack.cs_idx] >= 0
1174 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1176 current_line = cstack.cs_line[cstack.cs_idx];
1177 /* remember we jumped there */
1178 cstack.cs_lflags |= CSL_HAD_LOOP;
1179 line_breakcheck(); /* check if CTRL-C typed */
1181 /* Check for the next breakpoint at or after the ":while"
1182 * or ":for". */
1183 if (breakpoint != NULL)
1185 *breakpoint = dbg_find_breakpoint(
1186 getline_equal(getline, cookie, getsourceline),
1187 fname,
1188 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1189 *dbg_tick = debug_tick;
1192 else
1194 /* can only get here with ":endwhile" or ":endfor" */
1195 if (cstack.cs_idx >= 0)
1196 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1197 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
1202 * For a ":while" or ":for" we need to remember the line number.
1204 else if (cstack.cs_lflags & CSL_HAD_LOOP)
1206 cstack.cs_lflags &= ~CSL_HAD_LOOP;
1207 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1212 * When not inside any ":while" loop, clear remembered lines.
1214 if (cstack.cs_looplevel == 0)
1216 if (lines_ga.ga_len > 0)
1218 sourcing_lnum =
1219 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1220 free_cmdlines(&lines_ga);
1222 current_line = 0;
1226 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1227 * being restored at the ":endtry". Reset them here and set the
1228 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1229 * This includes the case where a missing ":endif", ":endwhile" or
1230 * ":endfor" was detected by the ":finally" itself.
1232 if (cstack.cs_lflags & CSL_HAD_FINA)
1234 cstack.cs_lflags &= ~CSL_HAD_FINA;
1235 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1236 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
1237 did_throw ? (void *)current_exception : NULL);
1238 did_emsg = got_int = did_throw = FALSE;
1239 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1242 /* Update global "trylevel" for recursive calls to do_cmdline() from
1243 * within this loop. */
1244 trylevel = initial_trylevel + cstack.cs_trylevel;
1247 * If the outermost try conditional (across function calls and sourced
1248 * files) is aborted because of an error, an interrupt, or an uncaught
1249 * exception, cancel everything. If it is left normally, reset
1250 * force_abort to get the non-EH compatible abortion behavior for
1251 * the rest of the script.
1253 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1254 force_abort = FALSE;
1256 /* Convert an interrupt to an exception if appropriate. */
1257 (void)do_intthrow(&cstack);
1258 #endif /* FEAT_EVAL */
1262 * Continue executing command lines when:
1263 * - no CTRL-C typed, no aborting error, no exception thrown or try
1264 * conditionals need to be checked for executing finally clauses or
1265 * catching an interrupt exception
1266 * - didn't get an error message or lines are not typed
1267 * - there is a command after '|', inside a :if, :while, :for or :try, or
1268 * looping for ":source" command or function call.
1270 while (!((got_int
1271 #ifdef FEAT_EVAL
1272 || (did_emsg && force_abort) || did_throw
1273 #endif
1275 #ifdef FEAT_EVAL
1276 && cstack.cs_trylevel == 0
1277 #endif
1279 && !(did_emsg && used_getline
1280 && (getline_equal(getline, cookie, getexmodeline)
1281 || getline_equal(getline, cookie, getexline)))
1282 && (next_cmdline != NULL
1283 #ifdef FEAT_EVAL
1284 || cstack.cs_idx >= 0
1285 #endif
1286 || (flags & DOCMD_REPEAT)));
1288 vim_free(cmdline_copy);
1289 #ifdef FEAT_EVAL
1290 free_cmdlines(&lines_ga);
1291 ga_clear(&lines_ga);
1293 if (cstack.cs_idx >= 0)
1296 * If a sourced file or executed function ran to its end, report the
1297 * unclosed conditional.
1299 if (!got_int && !did_throw
1300 && ((getline_equal(getline, cookie, getsourceline)
1301 && !source_finished(getline, cookie))
1302 || (getline_equal(getline, cookie, get_func_line)
1303 && !func_has_ended(real_cookie))))
1305 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1306 EMSG(_(e_endtry));
1307 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1308 EMSG(_(e_endwhile));
1309 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1310 EMSG(_(e_endfor));
1311 else
1312 EMSG(_(e_endif));
1316 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1317 * ":endtry" in a sourced file or executed function. If the try
1318 * conditional is in its finally clause, ignore anything pending.
1319 * If it is in a catch clause, finish the caught exception.
1320 * Also cleanup any "cs_forinfo" structures.
1324 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1326 if (idx >= 0)
1327 --idx; /* remove try block not in its finally clause */
1328 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1329 &cstack.cs_looplevel);
1331 while (cstack.cs_idx >= 0);
1332 trylevel = initial_trylevel;
1335 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1336 * lack was reported above and the error message is to be converted to an
1337 * exception, do this now after rewinding the cstack. */
1338 do_errthrow(&cstack, getline_equal(getline, cookie, get_func_line)
1339 ? (char_u *)"endfunction" : (char_u *)NULL);
1341 if (trylevel == 0)
1344 * When an exception is being thrown out of the outermost try
1345 * conditional, discard the uncaught exception, disable the conversion
1346 * of interrupts or errors to exceptions, and ensure that no more
1347 * commands are executed.
1349 if (did_throw)
1351 void *p = NULL;
1352 char_u *saved_sourcing_name;
1353 int saved_sourcing_lnum;
1354 struct msglist *messages = NULL, *next;
1357 * If the uncaught exception is a user exception, report it as an
1358 * error. If it is an error exception, display the saved error
1359 * message now. For an interrupt exception, do nothing; the
1360 * interrupt message is given elsewhere.
1362 switch (current_exception->type)
1364 case ET_USER:
1365 vim_snprintf((char *)IObuff, IOSIZE,
1366 _("E605: Exception not caught: %s"),
1367 current_exception->value);
1368 p = vim_strsave(IObuff);
1369 break;
1370 case ET_ERROR:
1371 messages = current_exception->messages;
1372 current_exception->messages = NULL;
1373 break;
1374 case ET_INTERRUPT:
1375 break;
1376 default:
1377 p = vim_strsave((char_u *)_(e_internal));
1380 saved_sourcing_name = sourcing_name;
1381 saved_sourcing_lnum = sourcing_lnum;
1382 sourcing_name = current_exception->throw_name;
1383 sourcing_lnum = current_exception->throw_lnum;
1384 current_exception->throw_name = NULL;
1386 discard_current_exception(); /* uses IObuff if 'verbose' */
1387 suppress_errthrow = TRUE;
1388 force_abort = TRUE;
1390 if (messages != NULL)
1394 next = messages->next;
1395 emsg(messages->msg);
1396 vim_free(messages->msg);
1397 vim_free(messages);
1398 messages = next;
1400 while (messages != NULL);
1402 else if (p != NULL)
1404 emsg(p);
1405 vim_free(p);
1407 vim_free(sourcing_name);
1408 sourcing_name = saved_sourcing_name;
1409 sourcing_lnum = saved_sourcing_lnum;
1413 * On an interrupt or an aborting error not converted to an exception,
1414 * disable the conversion of errors to exceptions. (Interrupts are not
1415 * converted any more, here.) This enables also the interrupt message
1416 * when force_abort is set and did_emsg unset in case of an interrupt
1417 * from a finally clause after an error.
1419 else if (got_int || (did_emsg && force_abort))
1420 suppress_errthrow = TRUE;
1424 * The current cstack will be freed when do_cmdline() returns. An uncaught
1425 * exception will have to be rethrown in the previous cstack. If a function
1426 * has just returned or a script file was just finished and the previous
1427 * cstack belongs to the same function or, respectively, script file, it
1428 * will have to be checked for finally clauses to be executed due to the
1429 * ":return" or ":finish". This is done in do_one_cmd().
1431 if (did_throw)
1432 need_rethrow = TRUE;
1433 if ((getline_equal(getline, cookie, getsourceline)
1434 && ex_nesting_level > source_level(real_cookie))
1435 || (getline_equal(getline, cookie, get_func_line)
1436 && ex_nesting_level > func_level(real_cookie) + 1))
1438 if (!did_throw)
1439 check_cstack = TRUE;
1441 else
1443 /* When leaving a function, reduce nesting level. */
1444 if (getline_equal(getline, cookie, get_func_line))
1445 --ex_nesting_level;
1447 * Go to debug mode when returning from a function in which we are
1448 * single-stepping.
1450 if ((getline_equal(getline, cookie, getsourceline)
1451 || getline_equal(getline, cookie, get_func_line))
1452 && ex_nesting_level + 1 <= debug_break_level)
1453 do_debug(getline_equal(getline, cookie, getsourceline)
1454 ? (char_u *)_("End of sourced file")
1455 : (char_u *)_("End of function"));
1459 * Restore the exception environment (done after returning from the
1460 * debugger).
1462 if (flags & DOCMD_EXCRESET)
1463 restore_dbg_stuff(&debug_saved);
1465 msg_list = saved_msg_list;
1466 #endif /* FEAT_EVAL */
1469 * If there was too much output to fit on the command line, ask the user to
1470 * hit return before redrawing the screen. With the ":global" command we do
1471 * this only once after the command is finished.
1473 if (did_inc)
1475 --RedrawingDisabled;
1476 --no_wait_return;
1477 msg_scroll = FALSE;
1480 * When just finished an ":if"-":else" which was typed, no need to
1481 * wait for hit-return. Also for an error situation.
1483 if (retval == FAIL
1484 #ifdef FEAT_EVAL
1485 || (did_endif && KeyTyped && !did_emsg)
1486 #endif
1489 need_wait_return = FALSE;
1490 msg_didany = FALSE; /* don't wait when restarting edit */
1492 else if (need_wait_return)
1495 * The msg_start() above clears msg_didout. The wait_return we do
1496 * here should not overwrite the command that may be shown before
1497 * doing that.
1499 msg_didout |= msg_didout_before_start;
1500 wait_return(FALSE);
1504 #ifndef FEAT_EVAL
1506 * Reset if_level, in case a sourced script file contains more ":if" than
1507 * ":endif" (could be ":if x | foo | endif").
1509 if_level = 0;
1510 #endif
1512 --call_depth;
1513 return retval;
1516 #ifdef FEAT_EVAL
1518 * Obtain a line when inside a ":while" or ":for" loop.
1520 static char_u *
1521 get_loop_line(c, cookie, indent)
1522 int c;
1523 void *cookie;
1524 int indent;
1526 struct loop_cookie *cp = (struct loop_cookie *)cookie;
1527 wcmd_T *wp;
1528 char_u *line;
1530 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1532 if (cp->repeating)
1533 return NULL; /* trying to read past ":endwhile"/":endfor" */
1535 /* First time inside the ":while"/":for": get line normally. */
1536 if (cp->getline == NULL)
1537 line = getcmdline(c, 0L, indent);
1538 else
1539 line = cp->getline(c, cp->cookie, indent);
1540 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
1541 ++cp->current_line;
1543 return line;
1546 KeyTyped = FALSE;
1547 ++cp->current_line;
1548 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1549 sourcing_lnum = wp->lnum;
1550 return vim_strsave(wp->line);
1554 * Store a line in "gap" so that a ":while" loop can execute it again.
1556 static int
1557 store_loop_line(gap, line)
1558 garray_T *gap;
1559 char_u *line;
1561 if (ga_grow(gap, 1) == FAIL)
1562 return FAIL;
1563 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1564 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1565 ++gap->ga_len;
1566 return OK;
1570 * Free the lines stored for a ":while" or ":for" loop.
1572 static void
1573 free_cmdlines(gap)
1574 garray_T *gap;
1576 while (gap->ga_len > 0)
1578 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1579 --gap->ga_len;
1582 #endif
1585 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1586 * "func". * Otherwise return TRUE when "fgetline" equals "func".
1588 /*ARGSUSED*/
1590 getline_equal(fgetline, cookie, func)
1591 char_u *(*fgetline) __ARGS((int, void *, int));
1592 void *cookie; /* argument for fgetline() */
1593 char_u *(*func) __ARGS((int, void *, int));
1595 #ifdef FEAT_EVAL
1596 char_u *(*gp) __ARGS((int, void *, int));
1597 struct loop_cookie *cp;
1599 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1600 * function that's originally used to obtain the lines. This may be
1601 * nested several levels. */
1602 gp = fgetline;
1603 cp = (struct loop_cookie *)cookie;
1604 while (gp == get_loop_line)
1606 gp = cp->getline;
1607 cp = cp->cookie;
1609 return gp == func;
1610 #else
1611 return fgetline == func;
1612 #endif
1615 #if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1617 * If "fgetline" is get_loop_line(), return the cookie used by the original
1618 * getline function. Otherwise return "cookie".
1620 /*ARGSUSED*/
1621 void *
1622 getline_cookie(fgetline, cookie)
1623 char_u *(*fgetline) __ARGS((int, void *, int));
1624 void *cookie; /* argument for fgetline() */
1626 # ifdef FEAT_EVAL
1627 char_u *(*gp) __ARGS((int, void *, int));
1628 struct loop_cookie *cp;
1630 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1631 * cookie that's originally used to obtain the lines. This may be nested
1632 * several levels. */
1633 gp = fgetline;
1634 cp = (struct loop_cookie *)cookie;
1635 while (gp == get_loop_line)
1637 gp = cp->getline;
1638 cp = cp->cookie;
1640 return cp;
1641 # else
1642 return cookie;
1643 # endif
1645 #endif
1648 * Execute one Ex command.
1650 * If 'sourcing' is TRUE, the command will be included in the error message.
1652 * 1. skip comment lines and leading space
1653 * 2. handle command modifiers
1654 * 3. parse range
1655 * 4. parse command
1656 * 5. parse arguments
1657 * 6. switch on command name
1659 * Note: "fgetline" can be NULL.
1661 * This function may be called recursively!
1663 #if (_MSC_VER == 1200)
1665 * Avoid optimisation bug in VC++ version 6.0
1667 #pragma optimize( "g", off )
1668 #endif
1669 static char_u *
1670 do_one_cmd(cmdlinep, sourcing,
1671 #ifdef FEAT_EVAL
1672 cstack,
1673 #endif
1674 fgetline, cookie)
1675 char_u **cmdlinep;
1676 int sourcing;
1677 #ifdef FEAT_EVAL
1678 struct condstack *cstack;
1679 #endif
1680 char_u *(*fgetline) __ARGS((int, void *, int));
1681 void *cookie; /* argument for fgetline() */
1683 char_u *p;
1684 linenr_T lnum;
1685 long n;
1686 char_u *errormsg = NULL; /* error message */
1687 exarg_T ea; /* Ex command arguments */
1688 long verbose_save = -1;
1689 int save_msg_scroll = 0;
1690 int did_silent = 0;
1691 int did_esilent = 0;
1692 #ifdef HAVE_SANDBOX
1693 int did_sandbox = FALSE;
1694 #endif
1695 cmdmod_T save_cmdmod;
1696 int ni; /* set when Not Implemented */
1698 vim_memset(&ea, 0, sizeof(ea));
1699 ea.line1 = 1;
1700 ea.line2 = 1;
1701 #ifdef FEAT_EVAL
1702 ++ex_nesting_level;
1703 #endif
1705 /* when not editing the last file :q has to be typed twice */
1706 if (quitmore
1707 #ifdef FEAT_EVAL
1708 /* avoid that a function call in 'statusline' does this */
1709 && !getline_equal(fgetline, cookie, get_func_line)
1710 #endif
1712 --quitmore;
1715 * Reset browse, confirm, etc.. They are restored when returning, for
1716 * recursive calls.
1718 save_cmdmod = cmdmod;
1719 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1721 /* "#!anything" is handled like a comment. */
1722 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1723 goto doend;
1726 * Repeat until no more command modifiers are found.
1728 ea.cmd = *cmdlinep;
1729 for (;;)
1732 * 1. skip comment lines and leading white space and colons
1734 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1735 ++ea.cmd;
1737 /* in ex mode, an empty line works like :+ */
1738 if (*ea.cmd == NUL && exmode_active
1739 && (getline_equal(fgetline, cookie, getexmodeline)
1740 || getline_equal(fgetline, cookie, getexline))
1741 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
1743 ea.cmd = (char_u *)"+";
1744 ex_pressedreturn = TRUE;
1747 /* ignore comment and empty lines */
1748 if (*ea.cmd == '"')
1749 goto doend;
1750 if (*ea.cmd == NUL)
1752 ex_pressedreturn = TRUE;
1753 goto doend;
1757 * 2. handle command modifiers.
1759 p = ea.cmd;
1760 if (VIM_ISDIGIT(*ea.cmd))
1761 p = skipwhite(skipdigits(ea.cmd));
1762 switch (*p)
1764 /* When adding an entry, also modify cmd_exists(). */
1765 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1766 break;
1767 #ifdef FEAT_WINDOWS
1768 cmdmod.split |= WSP_ABOVE;
1769 #endif
1770 continue;
1772 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1774 #ifdef FEAT_WINDOWS
1775 cmdmod.split |= WSP_BELOW;
1776 #endif
1777 continue;
1779 if (checkforcmd(&ea.cmd, "browse", 3))
1781 #ifdef FEAT_BROWSE_CMD
1782 cmdmod.browse = TRUE;
1783 #endif
1784 continue;
1786 if (!checkforcmd(&ea.cmd, "botright", 2))
1787 break;
1788 #ifdef FEAT_WINDOWS
1789 cmdmod.split |= WSP_BOT;
1790 #endif
1791 continue;
1793 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1794 break;
1795 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1796 cmdmod.confirm = TRUE;
1797 #endif
1798 continue;
1800 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1802 cmdmod.keepmarks = TRUE;
1803 continue;
1805 if (checkforcmd(&ea.cmd, "keepalt", 5))
1807 cmdmod.keepalt = TRUE;
1808 continue;
1810 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1811 break;
1812 cmdmod.keepjumps = TRUE;
1813 continue;
1815 /* ":hide" and ":hide | cmd" are not modifiers */
1816 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1817 || *p == NUL || ends_excmd(*p))
1818 break;
1819 ea.cmd = p;
1820 cmdmod.hide = TRUE;
1821 continue;
1823 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1825 cmdmod.lockmarks = TRUE;
1826 continue;
1829 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1830 break;
1831 #ifdef FEAT_WINDOWS
1832 cmdmod.split |= WSP_ABOVE;
1833 #endif
1834 continue;
1836 case 'n': if (!checkforcmd(&ea.cmd, "noautocmd", 3))
1837 break;
1838 #ifdef FEAT_AUTOCMD
1839 if (cmdmod.save_ei == NULL)
1841 /* Set 'eventignore' to "all". Restore the
1842 * existing option value later. */
1843 cmdmod.save_ei = vim_strsave(p_ei);
1844 set_string_option_direct((char_u *)"ei", -1,
1845 (char_u *)"all", OPT_FREE, SID_NONE);
1847 #endif
1848 continue;
1850 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
1851 break;
1852 #ifdef FEAT_WINDOWS
1853 cmdmod.split |= WSP_BELOW;
1854 #endif
1855 continue;
1857 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
1859 #ifdef HAVE_SANDBOX
1860 if (!did_sandbox)
1861 ++sandbox;
1862 did_sandbox = TRUE;
1863 #endif
1864 continue;
1866 if (!checkforcmd(&ea.cmd, "silent", 3))
1867 break;
1868 ++did_silent;
1869 ++msg_silent;
1870 save_msg_scroll = msg_scroll;
1871 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
1873 /* ":silent!", but not "silent !cmd" */
1874 ea.cmd = skipwhite(ea.cmd + 1);
1875 ++emsg_silent;
1876 ++did_esilent;
1878 continue;
1880 case 't': if (checkforcmd(&p, "tab", 3))
1882 #ifdef FEAT_WINDOWS
1883 if (vim_isdigit(*ea.cmd))
1884 cmdmod.tab = atoi((char *)ea.cmd) + 1;
1885 else
1886 cmdmod.tab = tabpage_index(curtab) + 1;
1887 ea.cmd = p;
1888 #endif
1889 continue;
1891 if (!checkforcmd(&ea.cmd, "topleft", 2))
1892 break;
1893 #ifdef FEAT_WINDOWS
1894 cmdmod.split |= WSP_TOP;
1895 #endif
1896 continue;
1898 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
1900 #ifdef FEAT_VERTSPLIT
1901 cmdmod.split |= WSP_VERT;
1902 #endif
1903 continue;
1905 if (!checkforcmd(&p, "verbose", 4))
1906 break;
1907 if (verbose_save < 0)
1908 verbose_save = p_verbose;
1909 if (vim_isdigit(*ea.cmd))
1910 p_verbose = atoi((char *)ea.cmd);
1911 else
1912 p_verbose = 1;
1913 ea.cmd = p;
1914 continue;
1916 break;
1919 #ifdef FEAT_EVAL
1920 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1921 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1922 #else
1923 ea.skip = (if_level > 0);
1924 #endif
1926 #ifdef FEAT_EVAL
1927 # ifdef FEAT_PROFILE
1928 /* Count this line for profiling if ea.skip is FALSE. */
1929 if (do_profiling == PROF_YES && !ea.skip)
1931 if (getline_equal(fgetline, cookie, get_func_line))
1932 func_line_exec(getline_cookie(fgetline, cookie));
1933 else if (getline_equal(fgetline, cookie, getsourceline))
1934 script_line_exec();
1936 #endif
1938 /* May go to debug mode. If this happens and the ">quit" debug command is
1939 * used, throw an interrupt exception and skip the next command. */
1940 dbg_check_breakpoint(&ea);
1941 if (!ea.skip && got_int)
1943 ea.skip = TRUE;
1944 (void)do_intthrow(cstack);
1946 #endif
1949 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1951 * where 'addr' is:
1953 * % (entire file)
1954 * $ [+-NUM]
1955 * 'x [+-NUM] (where x denotes a currently defined mark)
1956 * . [+-NUM]
1957 * [+-NUM]..
1958 * NUM
1960 * The ea.cmd pointer is updated to point to the first character following the
1961 * range spec. If an initial address is found, but no second, the upper bound
1962 * is equal to the lower.
1965 /* repeat for all ',' or ';' separated addresses */
1966 for (;;)
1968 ea.line1 = ea.line2;
1969 ea.line2 = curwin->w_cursor.lnum; /* default is current line number */
1970 ea.cmd = skipwhite(ea.cmd);
1971 lnum = get_address(&ea.cmd, ea.skip, ea.addr_count == 0);
1972 if (ea.cmd == NULL) /* error detected */
1973 goto doend;
1974 if (lnum == MAXLNUM)
1976 if (*ea.cmd == '%') /* '%' - all lines */
1978 ++ea.cmd;
1979 ea.line1 = 1;
1980 ea.line2 = curbuf->b_ml.ml_line_count;
1981 ++ea.addr_count;
1983 /* '*' - visual area */
1984 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1986 pos_T *fp;
1988 ++ea.cmd;
1989 if (!ea.skip)
1991 fp = getmark('<', FALSE);
1992 if (check_mark(fp) == FAIL)
1993 goto doend;
1994 ea.line1 = fp->lnum;
1995 fp = getmark('>', FALSE);
1996 if (check_mark(fp) == FAIL)
1997 goto doend;
1998 ea.line2 = fp->lnum;
1999 ++ea.addr_count;
2003 else
2004 ea.line2 = lnum;
2005 ea.addr_count++;
2007 if (*ea.cmd == ';')
2009 if (!ea.skip)
2010 curwin->w_cursor.lnum = ea.line2;
2012 else if (*ea.cmd != ',')
2013 break;
2014 ++ea.cmd;
2017 /* One address given: set start and end lines */
2018 if (ea.addr_count == 1)
2020 ea.line1 = ea.line2;
2021 /* ... but only implicit: really no address given */
2022 if (lnum == MAXLNUM)
2023 ea.addr_count = 0;
2026 /* Don't leave the cursor on an illegal line (caused by ';') */
2027 check_cursor_lnum();
2030 * 4. parse command
2034 * Skip ':' and any white space
2036 ea.cmd = skipwhite(ea.cmd);
2037 while (*ea.cmd == ':')
2038 ea.cmd = skipwhite(ea.cmd + 1);
2041 * If we got a line, but no command, then go to the line.
2042 * If we find a '|' or '\n' we set ea.nextcmd.
2044 if (*ea.cmd == NUL || *ea.cmd == '"' ||
2045 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2048 * strange vi behaviour:
2049 * ":3" jumps to line 3
2050 * ":3|..." prints line 3
2051 * ":|" prints current line
2053 if (ea.skip) /* skip this if inside :if */
2054 goto doend;
2055 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
2057 ea.cmdidx = CMD_print;
2058 ea.argt = RANGE+COUNT+TRLBAR;
2059 if ((errormsg = invalid_range(&ea)) == NULL)
2061 correct_range(&ea);
2062 ex_print(&ea);
2065 else if (ea.addr_count != 0)
2067 if (ea.line2 > curbuf->b_ml.ml_line_count)
2069 /* With '-' in 'cpoptions' a line number past the file is an
2070 * error, otherwise put it at the end of the file. */
2071 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2072 ea.line2 = -1;
2073 else
2074 ea.line2 = curbuf->b_ml.ml_line_count;
2077 if (ea.line2 < 0)
2078 errormsg = (char_u *)_(e_invrange);
2079 else
2081 if (ea.line2 == 0)
2082 curwin->w_cursor.lnum = 1;
2083 else
2084 curwin->w_cursor.lnum = ea.line2;
2085 beginline(BL_SOL | BL_FIX);
2088 goto doend;
2091 /* Find the command and let "p" point to after it. */
2092 p = find_command(&ea, NULL);
2094 #ifdef FEAT_USR_CMDS
2095 if (p == NULL)
2097 if (!ea.skip)
2098 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2099 goto doend;
2101 /* Check for wrong commands. */
2102 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2104 errormsg = uc_fun_cmd();
2105 goto doend;
2107 #endif
2108 if (ea.cmdidx == CMD_SIZE)
2110 if (!ea.skip)
2112 STRCPY(IObuff, _("E492: Not an editor command"));
2113 if (!sourcing)
2115 STRCAT(IObuff, ": ");
2116 STRNCAT(IObuff, *cmdlinep, 40);
2118 errormsg = IObuff;
2120 goto doend;
2123 ni = (
2124 #ifdef FEAT_USR_CMDS
2125 !USER_CMDIDX(ea.cmdidx) &&
2126 #endif
2127 (cmdnames[ea.cmdidx].cmd_func == ex_ni
2128 #ifdef HAVE_EX_SCRIPT_NI
2129 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2130 #endif
2133 #ifndef FEAT_EVAL
2135 * When the expression evaluation is disabled, recognize the ":if" and
2136 * ":endif" commands and ignore everything in between it.
2138 if (ea.cmdidx == CMD_if)
2139 ++if_level;
2140 if (if_level)
2142 if (ea.cmdidx == CMD_endif)
2143 --if_level;
2144 goto doend;
2147 #endif
2149 /* forced commands */
2150 if (*p == '!' && ea.cmdidx != CMD_substitute
2151 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
2153 ++p;
2154 ea.forceit = TRUE;
2156 else
2157 ea.forceit = FALSE;
2160 * 5. parse arguments
2162 #ifdef FEAT_USR_CMDS
2163 if (!USER_CMDIDX(ea.cmdidx))
2164 #endif
2165 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
2167 if (!ea.skip)
2169 #ifdef HAVE_SANDBOX
2170 if (sandbox != 0 && !(ea.argt & SBOXOK))
2172 /* Command not allowed in sandbox. */
2173 errormsg = (char_u *)_(e_sandbox);
2174 goto doend;
2176 #endif
2177 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2179 /* Command not allowed in non-'modifiable' buffer */
2180 errormsg = (char_u *)_(e_modifiable);
2181 goto doend;
2184 if (text_locked() && !(ea.argt & CMDWIN)
2185 # ifdef FEAT_USR_CMDS
2186 && !USER_CMDIDX(ea.cmdidx)
2187 # endif
2190 /* Command not allowed when editing the command line. */
2191 #ifdef FEAT_CMDWIN
2192 if (cmdwin_type != 0)
2193 errormsg = (char_u *)_(e_cmdwin);
2194 else
2195 #endif
2196 errormsg = (char_u *)_(e_secure);
2197 goto doend;
2199 #ifdef FEAT_AUTOCMD
2200 /* Disallow editing another buffer when "curbuf_lock" is set.
2201 * Do allow ":edit" (check for argument later).
2202 * Do allow ":checktime" (it's postponed). */
2203 if (!(ea.argt & CMDWIN)
2204 && ea.cmdidx != CMD_edit
2205 && ea.cmdidx != CMD_checktime
2206 # ifdef FEAT_USR_CMDS
2207 && !USER_CMDIDX(ea.cmdidx)
2208 # endif
2209 && curbuf_locked())
2210 goto doend;
2211 #endif
2213 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2215 /* no range allowed */
2216 errormsg = (char_u *)_(e_norange);
2217 goto doend;
2221 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2223 errormsg = (char_u *)_(e_nobang);
2224 goto doend;
2228 * Don't complain about the range if it is not used
2229 * (could happen if line_count is accidentally set to 0).
2231 if (!ea.skip && !ni)
2234 * If the range is backwards, ask for confirmation and, if given, swap
2235 * ea.line1 & ea.line2 so it's forwards again.
2236 * When global command is busy, don't ask, will fail below.
2238 if (!global_busy && ea.line1 > ea.line2)
2240 if (msg_silent == 0)
2242 if (sourcing || exmode_active)
2244 errormsg = (char_u *)_("E493: Backwards range given");
2245 goto doend;
2247 if (ask_yesno((char_u *)
2248 _("Backwards range given, OK to swap"), FALSE) != 'y')
2249 goto doend;
2251 lnum = ea.line1;
2252 ea.line1 = ea.line2;
2253 ea.line2 = lnum;
2255 if ((errormsg = invalid_range(&ea)) != NULL)
2256 goto doend;
2259 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2260 ea.line2 = 1;
2262 correct_range(&ea);
2264 #ifdef FEAT_FOLDING
2265 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2267 /* Put the first line at the start of a closed fold, put the last line
2268 * at the end of a closed fold. */
2269 (void)hasFolding(ea.line1, &ea.line1, NULL);
2270 (void)hasFolding(ea.line2, NULL, &ea.line2);
2272 #endif
2274 #ifdef FEAT_QUICKFIX
2276 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
2277 * option here, so things like % get expanded.
2279 p = replace_makeprg(&ea, p, cmdlinep);
2280 if (p == NULL)
2281 goto doend;
2282 #endif
2285 * Skip to start of argument.
2286 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2288 if (ea.cmdidx == CMD_bang)
2289 ea.arg = p;
2290 else
2291 ea.arg = skipwhite(p);
2294 * Check for "++opt=val" argument.
2295 * Must be first, allow ":w ++enc=utf8 !cmd"
2297 if (ea.argt & ARGOPT)
2298 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2299 if (getargopt(&ea) == FAIL && !ni)
2301 errormsg = (char_u *)_(e_invarg);
2302 goto doend;
2305 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2307 if (*ea.arg == '>') /* append */
2309 if (*++ea.arg != '>') /* typed wrong */
2311 errormsg = (char_u *)_("E494: Use w or w>>");
2312 goto doend;
2314 ea.arg = skipwhite(ea.arg + 1);
2315 ea.append = TRUE;
2317 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2319 ++ea.arg;
2320 ea.usefilter = TRUE;
2324 if (ea.cmdidx == CMD_read)
2326 if (ea.forceit)
2328 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2329 ea.forceit = FALSE;
2331 else if (*ea.arg == '!') /* :r !filter */
2333 ++ea.arg;
2334 ea.usefilter = TRUE;
2338 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2340 ea.amount = 1;
2341 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2343 ++ea.arg;
2344 ++ea.amount;
2346 ea.arg = skipwhite(ea.arg);
2350 * Check for "+command" argument, before checking for next command.
2351 * Don't do this for ":read !cmd" and ":write !cmd".
2353 if ((ea.argt & EDITCMD) && !ea.usefilter)
2354 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2357 * Check for '|' to separate commands and '"' to start comments.
2358 * Don't do this for ":read !cmd" and ":write !cmd".
2360 if ((ea.argt & TRLBAR) && !ea.usefilter)
2361 separate_nextcmd(&ea);
2364 * Check for <newline> to end a shell command.
2365 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2366 * Any others?
2368 else if (ea.cmdidx == CMD_bang
2369 || ea.cmdidx == CMD_global
2370 || ea.cmdidx == CMD_vglobal
2371 || ea.usefilter)
2373 for (p = ea.arg; *p; ++p)
2375 /* Remove one backslash before a newline, so that it's possible to
2376 * pass a newline to the shell and also a newline that is preceded
2377 * with a backslash. This makes it impossible to end a shell
2378 * command in a backslash, but that doesn't appear useful.
2379 * Halving the number of backslashes is incompatible with previous
2380 * versions. */
2381 if (*p == '\\' && p[1] == '\n')
2382 STRMOVE(p, p + 1);
2383 else if (*p == '\n')
2385 ea.nextcmd = p + 1;
2386 *p = NUL;
2387 break;
2392 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2394 ea.line1 = 1;
2395 ea.line2 = curbuf->b_ml.ml_line_count;
2398 /* accept numbered register only when no count allowed (:put) */
2399 if ( (ea.argt & REGSTR)
2400 && *ea.arg != NUL
2401 #ifdef FEAT_USR_CMDS
2402 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2403 && USER_CMDIDX(ea.cmdidx)))
2404 /* Do not allow register = for user commands */
2405 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2406 #else
2407 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2408 #endif
2409 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2411 ea.regname = *ea.arg++;
2412 #ifdef FEAT_EVAL
2413 /* for '=' register: accept the rest of the line as an expression */
2414 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2416 set_expr_line(vim_strsave(ea.arg));
2417 ea.arg += STRLEN(ea.arg);
2419 #endif
2420 ea.arg = skipwhite(ea.arg);
2424 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2425 * count, it's a buffer name.
2427 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2428 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2429 || vim_iswhite(*p)))
2431 n = getdigits(&ea.arg);
2432 ea.arg = skipwhite(ea.arg);
2433 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
2435 errormsg = (char_u *)_(e_zerocount);
2436 goto doend;
2438 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2440 ea.line2 = n;
2441 if (ea.addr_count == 0)
2442 ea.addr_count = 1;
2444 else
2446 ea.line1 = ea.line2;
2447 ea.line2 += n - 1;
2448 ++ea.addr_count;
2450 * Be vi compatible: no error message for out of range.
2452 if (ea.line2 > curbuf->b_ml.ml_line_count)
2453 ea.line2 = curbuf->b_ml.ml_line_count;
2458 * Check for flags: 'l', 'p' and '#'.
2460 if (ea.argt & EXFLAGS)
2461 get_flags(&ea);
2462 /* no arguments allowed */
2463 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
2464 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
2466 errormsg = (char_u *)_(e_trailing);
2467 goto doend;
2470 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2472 errormsg = (char_u *)_(e_argreq);
2473 goto doend;
2476 #ifdef FEAT_EVAL
2478 * Skip the command when it's not going to be executed.
2479 * The commands like :if, :endif, etc. always need to be executed.
2480 * Also make an exception for commands that handle a trailing command
2481 * themselves.
2483 if (ea.skip)
2485 switch (ea.cmdidx)
2487 /* commands that need evaluation */
2488 case CMD_while:
2489 case CMD_endwhile:
2490 case CMD_for:
2491 case CMD_endfor:
2492 case CMD_if:
2493 case CMD_elseif:
2494 case CMD_else:
2495 case CMD_endif:
2496 case CMD_try:
2497 case CMD_catch:
2498 case CMD_finally:
2499 case CMD_endtry:
2500 case CMD_function:
2501 break;
2503 /* Commands that handle '|' themselves. Check: A command should
2504 * either have the TRLBAR flag, appear in this list or appear in
2505 * the list at ":help :bar". */
2506 case CMD_aboveleft:
2507 case CMD_and:
2508 case CMD_belowright:
2509 case CMD_botright:
2510 case CMD_browse:
2511 case CMD_call:
2512 case CMD_confirm:
2513 case CMD_delfunction:
2514 case CMD_djump:
2515 case CMD_dlist:
2516 case CMD_dsearch:
2517 case CMD_dsplit:
2518 case CMD_echo:
2519 case CMD_echoerr:
2520 case CMD_echomsg:
2521 case CMD_echon:
2522 case CMD_execute:
2523 case CMD_help:
2524 case CMD_hide:
2525 case CMD_ijump:
2526 case CMD_ilist:
2527 case CMD_isearch:
2528 case CMD_isplit:
2529 case CMD_keepalt:
2530 case CMD_keepjumps:
2531 case CMD_keepmarks:
2532 case CMD_leftabove:
2533 case CMD_let:
2534 case CMD_lockmarks:
2535 case CMD_match:
2536 case CMD_mzscheme:
2537 case CMD_perl:
2538 case CMD_psearch:
2539 case CMD_python:
2540 case CMD_return:
2541 case CMD_rightbelow:
2542 case CMD_ruby:
2543 case CMD_silent:
2544 case CMD_smagic:
2545 case CMD_snomagic:
2546 case CMD_substitute:
2547 case CMD_syntax:
2548 case CMD_tab:
2549 case CMD_tcl:
2550 case CMD_throw:
2551 case CMD_tilde:
2552 case CMD_topleft:
2553 case CMD_unlet:
2554 case CMD_verbose:
2555 case CMD_vertical:
2556 break;
2558 default: goto doend;
2561 #endif
2563 if (ea.argt & XFILE)
2565 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2566 goto doend;
2569 #ifdef FEAT_LISTCMDS
2571 * Accept buffer name. Cannot be used at the same time with a buffer
2572 * number. Don't do this for a user command.
2574 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2575 # ifdef FEAT_USR_CMDS
2576 && !USER_CMDIDX(ea.cmdidx)
2577 # endif
2581 * :bdelete, :bwipeout and :bunload take several arguments, separated
2582 * by spaces: find next space (skipping over escaped characters).
2583 * The others take one argument: ignore trailing spaces.
2585 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2586 || ea.cmdidx == CMD_bunload)
2587 p = skiptowhite_esc(ea.arg);
2588 else
2590 p = ea.arg + STRLEN(ea.arg);
2591 while (p > ea.arg && vim_iswhite(p[-1]))
2592 --p;
2594 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2595 if (ea.line2 < 0) /* failed */
2596 goto doend;
2597 ea.addr_count = 1;
2598 ea.arg = skipwhite(p);
2600 #endif
2603 * 6. switch on command name
2605 * The "ea" structure holds the arguments that can be used.
2607 ea.cmdlinep = cmdlinep;
2608 ea.getline = fgetline;
2609 ea.cookie = cookie;
2610 #ifdef FEAT_EVAL
2611 ea.cstack = cstack;
2612 #endif
2614 #ifdef FEAT_USR_CMDS
2615 if (USER_CMDIDX(ea.cmdidx))
2618 * Execute a user-defined command.
2620 do_ucmd(&ea);
2622 else
2623 #endif
2626 * Call the function to execute the command.
2628 ea.errmsg = NULL;
2629 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2630 if (ea.errmsg != NULL)
2631 errormsg = (char_u *)_(ea.errmsg);
2634 #ifdef FEAT_EVAL
2636 * If the command just executed called do_cmdline(), any throw or ":return"
2637 * or ":finish" encountered there must also check the cstack of the still
2638 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2639 * exception, or reanimate a returned function or finished script file and
2640 * return or finish it again.
2642 if (need_rethrow)
2643 do_throw(cstack);
2644 else if (check_cstack)
2646 if (source_finished(fgetline, cookie))
2647 do_finish(&ea, TRUE);
2648 else if (getline_equal(fgetline, cookie, get_func_line)
2649 && current_func_returned())
2650 do_return(&ea, TRUE, FALSE, NULL);
2652 need_rethrow = check_cstack = FALSE;
2653 #endif
2655 doend:
2656 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2657 curwin->w_cursor.lnum = 1;
2659 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2661 if (sourcing)
2663 if (errormsg != IObuff)
2665 STRCPY(IObuff, errormsg);
2666 errormsg = IObuff;
2668 STRCAT(errormsg, ": ");
2669 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff) - 1);
2671 emsg(errormsg);
2673 #ifdef FEAT_EVAL
2674 do_errthrow(cstack,
2675 (ea.cmdidx != CMD_SIZE
2676 # ifdef FEAT_USR_CMDS
2677 && !USER_CMDIDX(ea.cmdidx)
2678 # endif
2679 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2680 #endif
2682 if (verbose_save >= 0)
2683 p_verbose = verbose_save;
2684 #ifdef FEAT_AUTOCMD
2685 if (cmdmod.save_ei != NULL)
2687 /* Restore 'eventignore' to the value before ":noautocmd". */
2688 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2689 OPT_FREE, SID_NONE);
2690 free_string_option(cmdmod.save_ei);
2692 #endif
2694 cmdmod = save_cmdmod;
2696 if (did_silent > 0)
2698 /* messages could be enabled for a serious error, need to check if the
2699 * counters don't become negative */
2700 msg_silent -= did_silent;
2701 if (msg_silent < 0)
2702 msg_silent = 0;
2703 emsg_silent -= did_esilent;
2704 if (emsg_silent < 0)
2705 emsg_silent = 0;
2706 /* Restore msg_scroll, it's set by file I/O commands, even when no
2707 * message is actually displayed. */
2708 msg_scroll = save_msg_scroll;
2711 #ifdef HAVE_SANDBOX
2712 if (did_sandbox)
2713 --sandbox;
2714 #endif
2716 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2717 ea.nextcmd = NULL;
2719 #ifdef FEAT_EVAL
2720 --ex_nesting_level;
2721 #endif
2723 return ea.nextcmd;
2725 #if (_MSC_VER == 1200)
2726 #pragma optimize( "", on )
2727 #endif
2730 * Check for an Ex command with optional tail.
2731 * If there is a match advance "pp" to the argument and return TRUE.
2734 checkforcmd(pp, cmd, len)
2735 char_u **pp; /* start of command */
2736 char *cmd; /* name of command */
2737 int len; /* required length */
2739 int i;
2741 for (i = 0; cmd[i] != NUL; ++i)
2742 if (cmd[i] != (*pp)[i])
2743 break;
2744 if (i >= len && !isalpha((*pp)[i]))
2746 *pp = skipwhite(*pp + i);
2747 return TRUE;
2749 return FALSE;
2753 * Find an Ex command by its name, either built-in or user.
2754 * Start of the name can be found at eap->cmd.
2755 * Returns pointer to char after the command name.
2756 * "full" is set to TRUE if the whole command name matched.
2757 * Returns NULL for an ambiguous user command.
2759 /*ARGSUSED*/
2760 static char_u *
2761 find_command(eap, full)
2762 exarg_T *eap;
2763 int *full;
2765 int len;
2766 char_u *p;
2767 int i;
2770 * Isolate the command and search for it in the command table.
2771 * Exceptions:
2772 * - the 'k' command can directly be followed by any character.
2773 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2774 * but :sre[wind] is another command, as are :scrip[tnames],
2775 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
2776 * - the "d" command can directly be followed by 'l' or 'p' flag.
2778 p = eap->cmd;
2779 if (*p == 'k')
2781 eap->cmdidx = CMD_k;
2782 ++p;
2784 else if (p[0] == 's'
2785 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2786 && p[3] != 'i' && p[4] != 'p')
2787 || p[1] == 'g'
2788 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2789 || p[1] == 'I'
2790 || (p[1] == 'r' && p[2] != 'e')))
2792 eap->cmdidx = CMD_substitute;
2793 ++p;
2795 else
2797 while (ASCII_ISALPHA(*p))
2798 ++p;
2799 /* check for non-alpha command */
2800 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2801 ++p;
2802 len = (int)(p - eap->cmd);
2803 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2805 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2806 * :delete with the 'l' flag. Same for 'p'. */
2807 for (i = 0; i < len; ++i)
2808 if (eap->cmd[i] != "delete"[i])
2809 break;
2810 if (i == len - 1)
2812 --len;
2813 if (p[-1] == 'l')
2814 eap->flags |= EXFLAG_LIST;
2815 else
2816 eap->flags |= EXFLAG_PRINT;
2820 if (ASCII_ISLOWER(*eap->cmd))
2821 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2822 else
2823 eap->cmdidx = cmdidxs[26];
2825 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2826 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2827 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2828 (size_t)len) == 0)
2830 #ifdef FEAT_EVAL
2831 if (full != NULL
2832 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2833 *full = TRUE;
2834 #endif
2835 break;
2838 #ifdef FEAT_USR_CMDS
2839 /* Look for a user defined command as a last resort */
2840 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2842 /* User defined commands may contain digits. */
2843 while (ASCII_ISALNUM(*p))
2844 ++p;
2845 p = find_ucmd(eap, p, full, NULL, NULL);
2847 #endif
2848 if (p == eap->cmd)
2849 eap->cmdidx = CMD_SIZE;
2852 return p;
2855 #ifdef FEAT_USR_CMDS
2857 * Search for a user command that matches "eap->cmd".
2858 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2859 * Return a pointer to just after the command.
2860 * Return NULL if there is no matching command.
2862 static char_u *
2863 find_ucmd(eap, p, full, xp, compl)
2864 exarg_T *eap;
2865 char_u *p; /* end of the command (possibly including count) */
2866 int *full; /* set to TRUE for a full match */
2867 expand_T *xp; /* used for completion, NULL otherwise */
2868 int *compl; /* completion flags or NULL */
2870 int len = (int)(p - eap->cmd);
2871 int j, k, matchlen = 0;
2872 ucmd_T *uc;
2873 int found = FALSE;
2874 int possible = FALSE;
2875 char_u *cp, *np; /* Point into typed cmd and test name */
2876 garray_T *gap;
2877 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2878 only full match global is accepted. */
2881 * Look for buffer-local user commands first, then global ones.
2883 gap = &curbuf->b_ucmds;
2884 for (;;)
2886 for (j = 0; j < gap->ga_len; ++j)
2888 uc = USER_CMD_GA(gap, j);
2889 cp = eap->cmd;
2890 np = uc->uc_name;
2891 k = 0;
2892 while (k < len && *np != NUL && *cp++ == *np++)
2893 k++;
2894 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2896 /* If finding a second match, the command is ambiguous. But
2897 * not if a buffer-local command wasn't a full match and a
2898 * global command is a full match. */
2899 if (k == len && found && *np != NUL)
2901 if (gap == &ucmds)
2902 return NULL;
2903 amb_local = TRUE;
2906 if (!found || (k == len && *np == NUL))
2908 /* If we matched up to a digit, then there could
2909 * be another command including the digit that we
2910 * should use instead.
2912 if (k == len)
2913 found = TRUE;
2914 else
2915 possible = TRUE;
2917 if (gap == &ucmds)
2918 eap->cmdidx = CMD_USER;
2919 else
2920 eap->cmdidx = CMD_USER_BUF;
2921 eap->argt = (long)uc->uc_argt;
2922 eap->useridx = j;
2924 # ifdef FEAT_CMDL_COMPL
2925 if (compl != NULL)
2926 *compl = uc->uc_compl;
2927 # ifdef FEAT_EVAL
2928 if (xp != NULL)
2930 xp->xp_arg = uc->uc_compl_arg;
2931 xp->xp_scriptID = uc->uc_scriptID;
2933 # endif
2934 # endif
2935 /* Do not search for further abbreviations
2936 * if this is an exact match. */
2937 matchlen = k;
2938 if (k == len && *np == NUL)
2940 if (full != NULL)
2941 *full = TRUE;
2942 amb_local = FALSE;
2943 break;
2949 /* Stop if we found a full match or searched all. */
2950 if (j < gap->ga_len || gap == &ucmds)
2951 break;
2952 gap = &ucmds;
2955 /* Only found ambiguous matches. */
2956 if (amb_local)
2958 if (xp != NULL)
2959 xp->xp_context = EXPAND_UNSUCCESSFUL;
2960 return NULL;
2963 /* The match we found may be followed immediately by a number. Move "p"
2964 * back to point to it. */
2965 if (found || possible)
2966 return p + (matchlen - len);
2967 return p;
2969 #endif
2971 #if defined(FEAT_EVAL) || defined(PROTO)
2972 static struct cmdmod
2974 char *name;
2975 int minlen;
2976 int has_count; /* :123verbose :3tab */
2977 } cmdmods[] = {
2978 {"aboveleft", 3, FALSE},
2979 {"belowright", 3, FALSE},
2980 {"botright", 2, FALSE},
2981 {"browse", 3, FALSE},
2982 {"confirm", 4, FALSE},
2983 {"hide", 3, FALSE},
2984 {"keepalt", 5, FALSE},
2985 {"keepjumps", 5, FALSE},
2986 {"keepmarks", 3, FALSE},
2987 {"leftabove", 5, FALSE},
2988 {"lockmarks", 3, FALSE},
2989 {"noautocmd", 3, FALSE},
2990 {"rightbelow", 6, FALSE},
2991 {"sandbox", 3, FALSE},
2992 {"silent", 3, FALSE},
2993 {"tab", 3, TRUE},
2994 {"topleft", 2, FALSE},
2995 {"verbose", 4, TRUE},
2996 {"vertical", 4, FALSE},
3000 * Return length of a command modifier (including optional count).
3001 * Return zero when it's not a modifier.
3004 modifier_len(cmd)
3005 char_u *cmd;
3007 int i, j;
3008 char_u *p = cmd;
3010 if (VIM_ISDIGIT(*cmd))
3011 p = skipwhite(skipdigits(cmd));
3012 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3014 for (j = 0; p[j] != NUL; ++j)
3015 if (p[j] != cmdmods[i].name[j])
3016 break;
3017 if (!isalpha(p[j]) && j >= cmdmods[i].minlen
3018 && (p == cmd || cmdmods[i].has_count))
3019 return j + (int)(p - cmd);
3021 return 0;
3025 * Return > 0 if an Ex command "name" exists.
3026 * Return 2 if there is an exact match.
3027 * Return 3 if there is an ambiguous match.
3030 cmd_exists(name)
3031 char_u *name;
3033 exarg_T ea;
3034 int full = FALSE;
3035 int i;
3036 int j;
3037 char_u *p;
3039 /* Check command modifiers. */
3040 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3042 for (j = 0; name[j] != NUL; ++j)
3043 if (name[j] != cmdmods[i].name[j])
3044 break;
3045 if (name[j] == NUL && j >= cmdmods[i].minlen)
3046 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3049 /* Check built-in commands and user defined commands.
3050 * For ":2match" and ":3match" we need to skip the number. */
3051 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
3052 ea.cmdidx = (cmdidx_T)0;
3053 p = find_command(&ea, &full);
3054 if (p == NULL)
3055 return 3;
3056 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3057 return 0;
3058 if (*skipwhite(p) != NUL)
3059 return 0; /* trailing garbage */
3060 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3062 #endif
3065 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3066 * we don't need/want deleted. Maybe this could be done better if we didn't
3067 * repeat all this stuff. The only problem is that they may not stay
3068 * perfectly compatible with each other, but then the command line syntax
3069 * probably won't change that much -- webb.
3071 char_u *
3072 set_one_cmd_context(xp, buff)
3073 expand_T *xp;
3074 char_u *buff; /* buffer for command string */
3076 char_u *p;
3077 char_u *cmd, *arg;
3078 int len = 0;
3079 exarg_T ea;
3080 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3081 int compl = EXPAND_NOTHING;
3082 #endif
3083 #ifdef FEAT_CMDL_COMPL
3084 int delim;
3085 #endif
3086 int forceit = FALSE;
3087 int usefilter = FALSE; /* filter instead of file name */
3089 ExpandInit(xp);
3090 xp->xp_pattern = buff;
3091 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
3092 ea.argt = 0;
3095 * 2. skip comment lines and leading space, colons or bars
3097 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3099 xp->xp_pattern = cmd;
3101 if (*cmd == NUL)
3102 return NULL;
3103 if (*cmd == '"') /* ignore comment lines */
3105 xp->xp_context = EXPAND_NOTHING;
3106 return NULL;
3110 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3112 cmd = skip_range(cmd, &xp->xp_context);
3115 * 4. parse command
3117 xp->xp_pattern = cmd;
3118 if (*cmd == NUL)
3119 return NULL;
3120 if (*cmd == '"')
3122 xp->xp_context = EXPAND_NOTHING;
3123 return NULL;
3126 if (*cmd == '|' || *cmd == '\n')
3127 return cmd + 1; /* There's another command */
3130 * Isolate the command and search for it in the command table.
3131 * Exceptions:
3132 * - the 'k' command can directly be followed by any character, but
3133 * do accept "keepmarks", "keepalt" and "keepjumps".
3134 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3136 if (*cmd == 'k' && cmd[1] != 'e')
3138 ea.cmdidx = CMD_k;
3139 p = cmd + 1;
3141 else
3143 p = cmd;
3144 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3145 ++p;
3146 /* check for non-alpha command */
3147 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3148 ++p;
3149 len = (int)(p - cmd);
3151 if (len == 0)
3153 xp->xp_context = EXPAND_UNSUCCESSFUL;
3154 return NULL;
3156 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3157 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3158 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
3159 break;
3161 #ifdef FEAT_USR_CMDS
3162 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3164 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3165 ++p;
3166 len = (int)(p - cmd);
3168 #endif
3172 * If the cursor is touching the command, and it ends in an alpha-numeric
3173 * character, complete the command name.
3175 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3176 return NULL;
3178 if (ea.cmdidx == CMD_SIZE)
3180 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3182 ea.cmdidx = CMD_substitute;
3183 p = cmd + 1;
3185 #ifdef FEAT_USR_CMDS
3186 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3188 ea.cmd = cmd;
3189 p = find_ucmd(&ea, p, NULL, xp,
3190 # if defined(FEAT_CMDL_COMPL)
3191 &compl
3192 # else
3193 NULL
3194 # endif
3196 if (p == NULL)
3197 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
3199 #endif
3201 if (ea.cmdidx == CMD_SIZE)
3203 /* Not still touching the command and it was an illegal one */
3204 xp->xp_context = EXPAND_UNSUCCESSFUL;
3205 return NULL;
3208 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3210 if (*p == '!') /* forced commands */
3212 forceit = TRUE;
3213 ++p;
3217 * 5. parse arguments
3219 #ifdef FEAT_USR_CMDS
3220 if (!USER_CMDIDX(ea.cmdidx))
3221 #endif
3222 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
3224 arg = skipwhite(p);
3226 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
3228 if (*arg == '>') /* append */
3230 if (*++arg == '>')
3231 ++arg;
3232 arg = skipwhite(arg);
3234 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
3236 ++arg;
3237 usefilter = TRUE;
3241 if (ea.cmdidx == CMD_read)
3243 usefilter = forceit; /* :r! filter if forced */
3244 if (*arg == '!') /* :r !filter */
3246 ++arg;
3247 usefilter = TRUE;
3251 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
3253 while (*arg == *cmd) /* allow any number of '>' or '<' */
3254 ++arg;
3255 arg = skipwhite(arg);
3258 /* Does command allow "+command"? */
3259 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
3261 /* Check if we're in the +command */
3262 p = arg + 1;
3263 arg = skip_cmd_arg(arg, FALSE);
3265 /* Still touching the command after '+'? */
3266 if (*arg == NUL)
3267 return p;
3269 /* Skip space(s) after +command to get to the real argument */
3270 arg = skipwhite(arg);
3274 * Check for '|' to separate commands and '"' to start comments.
3275 * Don't do this for ":read !cmd" and ":write !cmd".
3277 if ((ea.argt & TRLBAR) && !usefilter)
3279 p = arg;
3280 /* ":redir @" is not the start of a comment */
3281 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
3282 p += 2;
3283 while (*p)
3285 if (*p == Ctrl_V)
3287 if (p[1] != NUL)
3288 ++p;
3290 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
3291 || *p == '|' || *p == '\n')
3293 if (*(p - 1) != '\\')
3295 if (*p == '|' || *p == '\n')
3296 return p + 1;
3297 return NULL; /* It's a comment */
3300 mb_ptr_adv(p);
3304 /* no arguments allowed */
3305 if (!(ea.argt & EXTRA) && *arg != NUL &&
3306 vim_strchr((char_u *)"|\"", *arg) == NULL)
3307 return NULL;
3309 /* Find start of last argument (argument just before cursor): */
3310 p = buff + STRLEN(buff);
3311 while (p != arg && *p != ' ' && *p != TAB)
3312 p--;
3313 if (*p == ' ' || *p == TAB)
3314 p++;
3315 xp->xp_pattern = p;
3317 if (ea.argt & XFILE)
3319 int c;
3320 int in_quote = FALSE;
3321 char_u *bow = NULL; /* Beginning of word */
3324 * Allow spaces within back-quotes to count as part of the argument
3325 * being expanded.
3327 xp->xp_pattern = skipwhite(arg);
3328 p = xp->xp_pattern;
3329 while (*p != NUL)
3331 #ifdef FEAT_MBYTE
3332 if (has_mbyte)
3333 c = mb_ptr2char(p);
3334 else
3335 #endif
3336 c = *p;
3337 if (c == '\\' && p[1] != NUL)
3338 ++p;
3339 else if (c == '`')
3341 if (!in_quote)
3343 xp->xp_pattern = p;
3344 bow = p + 1;
3346 in_quote = !in_quote;
3348 /* An argument can contain just about everything, except
3349 * characters that end the command and white space. */
3350 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
3351 #ifdef SPACE_IN_FILENAME
3352 && (!(ea.argt & NOSPC) || usefilter)
3353 #endif
3356 len = 0; /* avoid getting stuck when space is in 'isfname' */
3357 while (*p != NUL)
3359 #ifdef FEAT_MBYTE
3360 if (has_mbyte)
3361 c = mb_ptr2char(p);
3362 else
3363 #endif
3364 c = *p;
3365 if (c == '`' || vim_isfilec_or_wc(c))
3366 break;
3367 #ifdef FEAT_MBYTE
3368 if (has_mbyte)
3369 len = (*mb_ptr2len)(p);
3370 else
3371 #endif
3372 len = 1;
3373 mb_ptr_adv(p);
3375 if (in_quote)
3376 bow = p;
3377 else
3378 xp->xp_pattern = p;
3379 p -= len;
3381 mb_ptr_adv(p);
3385 * If we are still inside the quotes, and we passed a space, just
3386 * expand from there.
3388 if (bow != NULL && in_quote)
3389 xp->xp_pattern = bow;
3390 xp->xp_context = EXPAND_FILES;
3392 #ifndef BACKSLASH_IN_FILENAME
3393 /* For a shell command more chars need to be escaped. */
3394 if (usefilter || ea.cmdidx == CMD_bang)
3396 xp->xp_shell = TRUE;
3398 /* When still after the command name expand executables. */
3399 if (xp->xp_pattern == skipwhite(arg))
3400 xp->xp_context = EXPAND_SHELLCMD;
3402 #endif
3404 /* Check for environment variable */
3405 if (*xp->xp_pattern == '$'
3406 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3407 || *xp->xp_pattern == '%'
3408 #endif
3411 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3412 if (!vim_isIDc(*p))
3413 break;
3414 if (*p == NUL)
3416 xp->xp_context = EXPAND_ENV_VARS;
3417 ++xp->xp_pattern;
3418 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3419 /* Avoid that the assignment uses EXPAND_FILES again. */
3420 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
3421 compl = EXPAND_ENV_VARS;
3422 #endif
3428 * 6. switch on command name
3430 switch (ea.cmdidx)
3432 case CMD_cd:
3433 case CMD_chdir:
3434 case CMD_lcd:
3435 case CMD_lchdir:
3436 if (xp->xp_context == EXPAND_FILES)
3437 xp->xp_context = EXPAND_DIRECTORIES;
3438 break;
3439 case CMD_help:
3440 xp->xp_context = EXPAND_HELP;
3441 xp->xp_pattern = arg;
3442 break;
3444 /* Command modifiers: return the argument.
3445 * Also for commands with an argument that is a command. */
3446 case CMD_aboveleft:
3447 case CMD_argdo:
3448 case CMD_belowright:
3449 case CMD_botright:
3450 case CMD_browse:
3451 case CMD_bufdo:
3452 case CMD_confirm:
3453 case CMD_debug:
3454 case CMD_folddoclosed:
3455 case CMD_folddoopen:
3456 case CMD_hide:
3457 case CMD_keepalt:
3458 case CMD_keepjumps:
3459 case CMD_keepmarks:
3460 case CMD_leftabove:
3461 case CMD_lockmarks:
3462 case CMD_rightbelow:
3463 case CMD_sandbox:
3464 case CMD_silent:
3465 case CMD_tab:
3466 case CMD_topleft:
3467 case CMD_verbose:
3468 case CMD_vertical:
3469 case CMD_windo:
3470 return arg;
3472 #ifdef FEAT_CMDL_COMPL
3473 # ifdef FEAT_SEARCH_EXTRA
3474 case CMD_match:
3475 if (*arg == NUL || !ends_excmd(*arg))
3477 /* also complete "None" */
3478 set_context_in_echohl_cmd(xp, arg);
3479 arg = skipwhite(skiptowhite(arg));
3480 if (*arg != NUL)
3482 xp->xp_context = EXPAND_NOTHING;
3483 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3486 return find_nextcmd(arg);
3487 # endif
3490 * All completion for the +cmdline_compl feature goes here.
3493 # ifdef FEAT_USR_CMDS
3494 case CMD_command:
3495 /* Check for attributes */
3496 while (*arg == '-')
3498 arg++; /* Skip "-" */
3499 p = skiptowhite(arg);
3500 if (*p == NUL)
3502 /* Cursor is still in the attribute */
3503 p = vim_strchr(arg, '=');
3504 if (p == NULL)
3506 /* No "=", so complete attribute names */
3507 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3508 xp->xp_pattern = arg;
3509 return NULL;
3512 /* For the -complete and -nargs attributes, we complete
3513 * their arguments as well.
3515 if (STRNICMP(arg, "complete", p - arg) == 0)
3517 xp->xp_context = EXPAND_USER_COMPLETE;
3518 xp->xp_pattern = p + 1;
3519 return NULL;
3521 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3523 xp->xp_context = EXPAND_USER_NARGS;
3524 xp->xp_pattern = p + 1;
3525 return NULL;
3527 return NULL;
3529 arg = skipwhite(p);
3532 /* After the attributes comes the new command name */
3533 p = skiptowhite(arg);
3534 if (*p == NUL)
3536 xp->xp_context = EXPAND_USER_COMMANDS;
3537 xp->xp_pattern = arg;
3538 break;
3541 /* And finally comes a normal command */
3542 return skipwhite(p);
3544 case CMD_delcommand:
3545 xp->xp_context = EXPAND_USER_COMMANDS;
3546 xp->xp_pattern = arg;
3547 break;
3548 # endif
3550 case CMD_global:
3551 case CMD_vglobal:
3552 delim = *arg; /* get the delimiter */
3553 if (delim)
3554 ++arg; /* skip delimiter if there is one */
3556 while (arg[0] != NUL && arg[0] != delim)
3558 if (arg[0] == '\\' && arg[1] != NUL)
3559 ++arg;
3560 ++arg;
3562 if (arg[0] != NUL)
3563 return arg + 1;
3564 break;
3565 case CMD_and:
3566 case CMD_substitute:
3567 delim = *arg;
3568 if (delim)
3570 /* skip "from" part */
3571 ++arg;
3572 arg = skip_regexp(arg, delim, p_magic, NULL);
3574 /* skip "to" part */
3575 while (arg[0] != NUL && arg[0] != delim)
3577 if (arg[0] == '\\' && arg[1] != NUL)
3578 ++arg;
3579 ++arg;
3581 if (arg[0] != NUL) /* skip delimiter */
3582 ++arg;
3583 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3584 ++arg;
3585 if (arg[0] != NUL)
3586 return arg;
3587 break;
3588 case CMD_isearch:
3589 case CMD_dsearch:
3590 case CMD_ilist:
3591 case CMD_dlist:
3592 case CMD_ijump:
3593 case CMD_psearch:
3594 case CMD_djump:
3595 case CMD_isplit:
3596 case CMD_dsplit:
3597 arg = skipwhite(skipdigits(arg)); /* skip count */
3598 if (*arg == '/') /* Match regexp, not just whole words */
3600 for (++arg; *arg && *arg != '/'; arg++)
3601 if (*arg == '\\' && arg[1] != NUL)
3602 arg++;
3603 if (*arg)
3605 arg = skipwhite(arg + 1);
3607 /* Check for trailing illegal characters */
3608 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3609 xp->xp_context = EXPAND_NOTHING;
3610 else
3611 return arg;
3614 break;
3615 #ifdef FEAT_AUTOCMD
3616 case CMD_autocmd:
3617 return set_context_in_autocmd(xp, arg, FALSE);
3619 case CMD_doautocmd:
3620 case CMD_doautoall:
3621 return set_context_in_autocmd(xp, arg, TRUE);
3622 #endif
3623 case CMD_set:
3624 set_context_in_set_cmd(xp, arg, 0);
3625 break;
3626 case CMD_setglobal:
3627 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3628 break;
3629 case CMD_setlocal:
3630 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3631 break;
3632 case CMD_tag:
3633 case CMD_stag:
3634 case CMD_ptag:
3635 case CMD_ltag:
3636 case CMD_tselect:
3637 case CMD_stselect:
3638 case CMD_ptselect:
3639 case CMD_tjump:
3640 case CMD_stjump:
3641 case CMD_ptjump:
3642 if (*p_wop != NUL)
3643 xp->xp_context = EXPAND_TAGS_LISTFILES;
3644 else
3645 xp->xp_context = EXPAND_TAGS;
3646 xp->xp_pattern = arg;
3647 break;
3648 case CMD_augroup:
3649 xp->xp_context = EXPAND_AUGROUP;
3650 xp->xp_pattern = arg;
3651 break;
3652 #ifdef FEAT_SYN_HL
3653 case CMD_syntax:
3654 set_context_in_syntax_cmd(xp, arg);
3655 break;
3656 #endif
3657 #ifdef FEAT_EVAL
3658 case CMD_let:
3659 case CMD_if:
3660 case CMD_elseif:
3661 case CMD_while:
3662 case CMD_for:
3663 case CMD_echo:
3664 case CMD_echon:
3665 case CMD_execute:
3666 case CMD_echomsg:
3667 case CMD_echoerr:
3668 case CMD_call:
3669 case CMD_return:
3670 set_context_for_expression(xp, arg, ea.cmdidx);
3671 break;
3673 case CMD_unlet:
3674 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3675 arg = xp->xp_pattern + 1;
3676 xp->xp_context = EXPAND_USER_VARS;
3677 xp->xp_pattern = arg;
3678 break;
3680 case CMD_function:
3681 case CMD_delfunction:
3682 xp->xp_context = EXPAND_USER_FUNC;
3683 xp->xp_pattern = arg;
3684 break;
3686 case CMD_echohl:
3687 set_context_in_echohl_cmd(xp, arg);
3688 break;
3689 #endif
3690 case CMD_highlight:
3691 set_context_in_highlight_cmd(xp, arg);
3692 break;
3693 #ifdef FEAT_LISTCMDS
3694 case CMD_bdelete:
3695 case CMD_bwipeout:
3696 case CMD_bunload:
3697 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3698 arg = xp->xp_pattern + 1;
3699 /*FALLTHROUGH*/
3700 case CMD_buffer:
3701 case CMD_sbuffer:
3702 case CMD_checktime:
3703 xp->xp_context = EXPAND_BUFFERS;
3704 xp->xp_pattern = arg;
3705 break;
3706 #endif
3707 #ifdef FEAT_USR_CMDS
3708 case CMD_USER:
3709 case CMD_USER_BUF:
3710 if (compl != EXPAND_NOTHING)
3712 /* XFILE: file names are handled above */
3713 if (!(ea.argt & XFILE))
3715 # ifdef FEAT_MENU
3716 if (compl == EXPAND_MENUS)
3717 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3718 # endif
3719 if (compl == EXPAND_COMMANDS)
3720 return arg;
3721 if (compl == EXPAND_MAPPINGS)
3722 return set_context_in_map_cmd(xp, (char_u *)"map",
3723 arg, forceit, FALSE, FALSE, CMD_map);
3724 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3725 arg = xp->xp_pattern + 1;
3726 xp->xp_pattern = arg;
3728 xp->xp_context = compl;
3730 break;
3731 #endif
3732 case CMD_map: case CMD_noremap:
3733 case CMD_nmap: case CMD_nnoremap:
3734 case CMD_vmap: case CMD_vnoremap:
3735 case CMD_omap: case CMD_onoremap:
3736 case CMD_imap: case CMD_inoremap:
3737 case CMD_cmap: case CMD_cnoremap:
3738 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3739 FALSE, FALSE, ea.cmdidx);
3740 case CMD_unmap:
3741 case CMD_nunmap:
3742 case CMD_vunmap:
3743 case CMD_ounmap:
3744 case CMD_iunmap:
3745 case CMD_cunmap:
3746 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3747 FALSE, TRUE, ea.cmdidx);
3748 case CMD_abbreviate: case CMD_noreabbrev:
3749 case CMD_cabbrev: case CMD_cnoreabbrev:
3750 case CMD_iabbrev: case CMD_inoreabbrev:
3751 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3752 TRUE, FALSE, ea.cmdidx);
3753 case CMD_unabbreviate:
3754 case CMD_cunabbrev:
3755 case CMD_iunabbrev:
3756 return set_context_in_map_cmd(xp, cmd, arg, forceit,
3757 TRUE, TRUE, ea.cmdidx);
3758 #ifdef FEAT_MENU
3759 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3760 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3761 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3762 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3763 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3764 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3765 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3766 case CMD_tmenu: case CMD_tunmenu:
3767 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3768 #ifdef FEAT_GUI_MACVIM
3769 case CMD_macmenu:
3770 #endif
3771 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3772 #endif
3774 case CMD_colorscheme:
3775 xp->xp_context = EXPAND_COLORS;
3776 xp->xp_pattern = arg;
3777 break;
3779 case CMD_compiler:
3780 xp->xp_context = EXPAND_COMPILER;
3781 xp->xp_pattern = arg;
3782 break;
3784 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3785 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3786 case CMD_language:
3787 if (*skiptowhite(arg) == NUL)
3789 xp->xp_context = EXPAND_LANGUAGE;
3790 xp->xp_pattern = arg;
3792 else
3793 xp->xp_context = EXPAND_NOTHING;
3794 break;
3795 #endif
3797 #ifdef FEAT_GUI_MACVIM
3798 case CMD_macaction:
3799 xp->xp_context = EXPAND_MACACTION;
3800 xp->xp_pattern = arg;
3801 break;
3802 #endif
3805 #endif /* FEAT_CMDL_COMPL */
3807 default:
3808 break;
3810 return NULL;
3814 * skip a range specifier of the form: addr [,addr] [;addr] ..
3816 * Backslashed delimiters after / or ? will be skipped, and commands will
3817 * not be expanded between /'s and ?'s or after "'".
3819 * Also skip white space and ":" characters.
3820 * Returns the "cmd" pointer advanced to beyond the range.
3822 char_u *
3823 skip_range(cmd, ctx)
3824 char_u *cmd;
3825 int *ctx; /* pointer to xp_context or NULL */
3827 int delim;
3829 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
3831 if (*cmd == '\'')
3833 if (*++cmd == NUL && ctx != NULL)
3834 *ctx = EXPAND_NOTHING;
3836 else if (*cmd == '/' || *cmd == '?')
3838 delim = *cmd++;
3839 while (*cmd != NUL && *cmd != delim)
3840 if (*cmd++ == '\\' && *cmd != NUL)
3841 ++cmd;
3842 if (*cmd == NUL && ctx != NULL)
3843 *ctx = EXPAND_NOTHING;
3845 if (*cmd != NUL)
3846 ++cmd;
3849 /* Skip ":" and white space. */
3850 while (*cmd == ':')
3851 cmd = skipwhite(cmd + 1);
3853 return cmd;
3857 * get a single EX address
3859 * Set ptr to the next character after the part that was interpreted.
3860 * Set ptr to NULL when an error is encountered.
3862 * Return MAXLNUM when no Ex address was found.
3864 static linenr_T
3865 get_address(ptr, skip, to_other_file)
3866 char_u **ptr;
3867 int skip; /* only skip the address, don't use it */
3868 int to_other_file; /* flag: may jump to other file */
3870 int c;
3871 int i;
3872 long n;
3873 char_u *cmd;
3874 pos_T pos;
3875 pos_T *fp;
3876 linenr_T lnum;
3878 cmd = skipwhite(*ptr);
3879 lnum = MAXLNUM;
3882 switch (*cmd)
3884 case '.': /* '.' - Cursor position */
3885 ++cmd;
3886 lnum = curwin->w_cursor.lnum;
3887 break;
3889 case '$': /* '$' - last line */
3890 ++cmd;
3891 lnum = curbuf->b_ml.ml_line_count;
3892 break;
3894 case '\'': /* ''' - mark */
3895 if (*++cmd == NUL)
3897 cmd = NULL;
3898 goto error;
3900 if (skip)
3901 ++cmd;
3902 else
3904 /* Only accept a mark in another file when it is
3905 * used by itself: ":'M". */
3906 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3907 ++cmd;
3908 if (fp == (pos_T *)-1)
3909 /* Jumped to another file. */
3910 lnum = curwin->w_cursor.lnum;
3911 else
3913 if (check_mark(fp) == FAIL)
3915 cmd = NULL;
3916 goto error;
3918 lnum = fp->lnum;
3921 break;
3923 case '/':
3924 case '?': /* '/' or '?' - search */
3925 c = *cmd++;
3926 if (skip) /* skip "/pat/" */
3928 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3929 if (*cmd == c)
3930 ++cmd;
3932 else
3934 pos = curwin->w_cursor; /* save curwin->w_cursor */
3936 * When '/' or '?' follows another address, start
3937 * from there.
3939 if (lnum != MAXLNUM)
3940 curwin->w_cursor.lnum = lnum;
3942 * Start a forward search at the end of the line.
3943 * Start a backward search at the start of the line.
3944 * This makes sure we never match in the current
3945 * line, and can match anywhere in the
3946 * next/previous line.
3948 if (c == '/')
3949 curwin->w_cursor.col = MAXCOL;
3950 else
3951 curwin->w_cursor.col = 0;
3952 searchcmdlen = 0;
3953 if (!do_search(NULL, c, cmd, 1L,
3954 SEARCH_HIS | SEARCH_MSG, NULL))
3956 curwin->w_cursor = pos;
3957 cmd = NULL;
3958 goto error;
3960 lnum = curwin->w_cursor.lnum;
3961 curwin->w_cursor = pos;
3962 /* adjust command string pointer */
3963 cmd += searchcmdlen;
3965 break;
3967 case '\\': /* "\?", "\/" or "\&", repeat search */
3968 ++cmd;
3969 if (*cmd == '&')
3970 i = RE_SUBST;
3971 else if (*cmd == '?' || *cmd == '/')
3972 i = RE_SEARCH;
3973 else
3975 EMSG(_(e_backslash));
3976 cmd = NULL;
3977 goto error;
3980 if (!skip)
3983 * When search follows another address, start from
3984 * there.
3986 if (lnum != MAXLNUM)
3987 pos.lnum = lnum;
3988 else
3989 pos.lnum = curwin->w_cursor.lnum;
3992 * Start the search just like for the above
3993 * do_search().
3995 if (*cmd != '?')
3996 pos.col = MAXCOL;
3997 else
3998 pos.col = 0;
3999 if (searchit(curwin, curbuf, &pos,
4000 *cmd == '?' ? BACKWARD : FORWARD,
4001 (char_u *)"", 1L, SEARCH_MSG,
4002 i, (linenr_T)0, NULL) != FAIL)
4003 lnum = pos.lnum;
4004 else
4006 cmd = NULL;
4007 goto error;
4010 ++cmd;
4011 break;
4013 default:
4014 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
4015 lnum = getdigits(&cmd);
4018 for (;;)
4020 cmd = skipwhite(cmd);
4021 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4022 break;
4024 if (lnum == MAXLNUM)
4025 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
4026 if (VIM_ISDIGIT(*cmd))
4027 i = '+'; /* "number" is same as "+number" */
4028 else
4029 i = *cmd++;
4030 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4031 n = 1;
4032 else
4033 n = getdigits(&cmd);
4034 if (i == '-')
4035 lnum -= n;
4036 else
4037 lnum += n;
4039 } while (*cmd == '/' || *cmd == '?');
4041 error:
4042 *ptr = cmd;
4043 return lnum;
4047 * Get flags from an Ex command argument.
4049 static void
4050 get_flags(eap)
4051 exarg_T *eap;
4053 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4055 if (*eap->arg == 'l')
4056 eap->flags |= EXFLAG_LIST;
4057 else if (*eap->arg == 'p')
4058 eap->flags |= EXFLAG_PRINT;
4059 else
4060 eap->flags |= EXFLAG_NR;
4061 eap->arg = skipwhite(eap->arg + 1);
4066 * Function called for command which is Not Implemented. NI!
4068 void
4069 ex_ni(eap)
4070 exarg_T *eap;
4072 if (!eap->skip)
4073 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4076 #ifdef HAVE_EX_SCRIPT_NI
4078 * Function called for script command which is Not Implemented. NI!
4079 * Skips over ":perl <<EOF" constructs.
4081 static void
4082 ex_script_ni(eap)
4083 exarg_T *eap;
4085 if (!eap->skip)
4086 ex_ni(eap);
4087 else
4088 vim_free(script_get(eap, eap->arg));
4090 #endif
4093 * Check range in Ex command for validity.
4094 * Return NULL when valid, error message when invalid.
4096 static char_u *
4097 invalid_range(eap)
4098 exarg_T *eap;
4100 if ( eap->line1 < 0
4101 || eap->line2 < 0
4102 || eap->line1 > eap->line2
4103 || ((eap->argt & RANGE)
4104 && !(eap->argt & NOTADR)
4105 && eap->line2 > curbuf->b_ml.ml_line_count
4106 #ifdef FEAT_DIFF
4107 + (eap->cmdidx == CMD_diffget)
4108 #endif
4110 return (char_u *)_(e_invrange);
4111 return NULL;
4115 * Correct the range for zero line number, if required.
4117 static void
4118 correct_range(eap)
4119 exarg_T *eap;
4121 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4123 if (eap->line1 == 0)
4124 eap->line1 = 1;
4125 if (eap->line2 == 0)
4126 eap->line2 = 1;
4130 #ifdef FEAT_QUICKFIX
4131 static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4134 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4135 * pattern. Otherwise return eap->arg.
4137 static char_u *
4138 skip_grep_pat(eap)
4139 exarg_T *eap;
4141 char_u *p = eap->arg;
4143 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4144 || eap->cmdidx == CMD_vimgrepadd
4145 || eap->cmdidx == CMD_lvimgrepadd
4146 || grep_internal(eap->cmdidx)))
4148 p = skip_vimgrep_pat(p, NULL, NULL);
4149 if (p == NULL)
4150 p = eap->arg;
4152 return p;
4156 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4157 * in the command line, so that things like % get expanded.
4159 static char_u *
4160 replace_makeprg(eap, p, cmdlinep)
4161 exarg_T *eap;
4162 char_u *p;
4163 char_u **cmdlinep;
4165 char_u *new_cmdline;
4166 char_u *program;
4167 char_u *pos;
4168 char_u *ptr;
4169 int len;
4170 int i;
4173 * Don't do it when ":vimgrep" is used for ":grep".
4175 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4176 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4177 || eap->cmdidx == CMD_grepadd
4178 || eap->cmdidx == CMD_lgrepadd)
4179 && !grep_internal(eap->cmdidx))
4181 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4182 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
4184 if (*curbuf->b_p_gp == NUL)
4185 program = p_gp;
4186 else
4187 program = curbuf->b_p_gp;
4189 else
4191 if (*curbuf->b_p_mp == NUL)
4192 program = p_mp;
4193 else
4194 program = curbuf->b_p_mp;
4197 p = skipwhite(p);
4199 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4201 /* replace $* by given arguments */
4202 i = 1;
4203 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4204 ++i;
4205 len = (int)STRLEN(p);
4206 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4207 if (new_cmdline == NULL)
4208 return NULL; /* out of memory */
4209 ptr = new_cmdline;
4210 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4212 i = (int)(pos - program);
4213 STRNCPY(ptr, program, i);
4214 STRCPY(ptr += i, p);
4215 ptr += len;
4216 program = pos + 2;
4218 STRCPY(ptr, program);
4220 else
4222 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4223 if (new_cmdline == NULL)
4224 return NULL; /* out of memory */
4225 STRCPY(new_cmdline, program);
4226 STRCAT(new_cmdline, " ");
4227 STRCAT(new_cmdline, p);
4229 msg_make(p);
4231 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4232 vim_free(*cmdlinep);
4233 *cmdlinep = new_cmdline;
4234 p = new_cmdline;
4236 return p;
4238 #endif
4241 * Expand file name in Ex command argument.
4242 * Return FAIL for failure, OK otherwise.
4245 expand_filename(eap, cmdlinep, errormsgp)
4246 exarg_T *eap;
4247 char_u **cmdlinep;
4248 char_u **errormsgp;
4250 int has_wildcards; /* need to expand wildcards */
4251 char_u *repl;
4252 int srclen;
4253 char_u *p;
4254 int n;
4255 int escaped;
4257 #ifdef FEAT_QUICKFIX
4258 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4259 p = skip_grep_pat(eap);
4260 #else
4261 p = eap->arg;
4262 #endif
4265 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4266 * the file name contains a wildcard it should not cause expanding.
4267 * (it will be expanded anyway if there is a wildcard before replacing).
4269 has_wildcards = mch_has_wildcard(p);
4270 while (*p != NUL)
4272 #ifdef FEAT_EVAL
4273 /* Skip over `=expr`, wildcards in it are not expanded. */
4274 if (p[0] == '`' && p[1] == '=')
4276 p += 2;
4277 (void)skip_expr(&p);
4278 if (*p == '`')
4279 ++p;
4280 continue;
4282 #endif
4284 * Quick check if this cannot be the start of a special string.
4285 * Also removes backslash before '%', '#' and '<'.
4287 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4289 ++p;
4290 continue;
4294 * Try to find a match at this position.
4296 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4297 errormsgp, &escaped);
4298 if (*errormsgp != NULL) /* error detected */
4299 return FAIL;
4300 if (repl == NULL) /* no match found */
4302 p += srclen;
4303 continue;
4306 /* Wildcards won't be expanded below, the replacement is taken
4307 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4308 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4310 char_u *l = repl;
4312 repl = expand_env_save(repl);
4313 vim_free(l);
4316 /* Need to escape white space et al. with a backslash.
4317 * Don't do this for:
4318 * - replacement that already has been escaped: "##"
4319 * - shell commands (may have to use quotes instead).
4320 * - non-unix systems when there is a single argument (spaces don't
4321 * separate arguments then).
4323 if (!eap->usefilter
4324 && !escaped
4325 && eap->cmdidx != CMD_bang
4326 && eap->cmdidx != CMD_make
4327 && eap->cmdidx != CMD_lmake
4328 && eap->cmdidx != CMD_grep
4329 && eap->cmdidx != CMD_lgrep
4330 && eap->cmdidx != CMD_grepadd
4331 && eap->cmdidx != CMD_lgrepadd
4332 #ifndef UNIX
4333 && !(eap->argt & NOSPC)
4334 #endif
4337 char_u *l;
4338 #ifdef BACKSLASH_IN_FILENAME
4339 /* Don't escape a backslash here, because rem_backslash() doesn't
4340 * remove it later. */
4341 static char_u *nobslash = (char_u *)" \t\"|";
4342 # define ESCAPE_CHARS nobslash
4343 #else
4344 # define ESCAPE_CHARS escape_chars
4345 #endif
4347 for (l = repl; *l; ++l)
4348 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4350 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4351 if (l != NULL)
4353 vim_free(repl);
4354 repl = l;
4356 break;
4360 /* For a shell command a '!' must be escaped. */
4361 if ((eap->usefilter || eap->cmdidx == CMD_bang)
4362 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
4364 char_u *l;
4366 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
4367 if (l != NULL)
4369 vim_free(repl);
4370 repl = l;
4371 /* For a sh-like shell escape "!" another time. */
4372 if (strstr((char *)p_sh, "sh") != NULL)
4374 l = vim_strsave_escaped(repl, (char_u *)"!");
4375 if (l != NULL)
4377 vim_free(repl);
4378 repl = l;
4384 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4385 vim_free(repl);
4386 if (p == NULL)
4387 return FAIL;
4391 * One file argument: Expand wildcards.
4392 * Don't do this with ":r !command" or ":w !command".
4394 if ((eap->argt & NOSPC) && !eap->usefilter)
4397 * May do this twice:
4398 * 1. Replace environment variables.
4399 * 2. Replace any other wildcards, remove backslashes.
4401 for (n = 1; n <= 2; ++n)
4403 if (n == 2)
4405 #ifdef UNIX
4407 * Only for Unix we check for more than one file name.
4408 * For other systems spaces are considered to be part
4409 * of the file name.
4410 * Only check here if there is no wildcard, otherwise
4411 * ExpandOne() will check for errors. This allows
4412 * ":e `ls ve*.c`" on Unix.
4414 if (!has_wildcards)
4415 for (p = eap->arg; *p; ++p)
4417 /* skip escaped characters */
4418 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4419 ++p;
4420 else if (vim_iswhite(*p))
4422 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4423 return FAIL;
4426 #endif
4429 * Halve the number of backslashes (this is Vi compatible).
4430 * For Unix and OS/2, when wildcards are expanded, this is
4431 * done by ExpandOne() below.
4433 #if defined(UNIX) || defined(OS2)
4434 if (!has_wildcards)
4435 #endif
4436 backslash_halve(eap->arg);
4439 if (has_wildcards)
4441 if (n == 1)
4444 * First loop: May expand environment variables. This
4445 * can be done much faster with expand_env() than with
4446 * something else (e.g., calling a shell).
4447 * After expanding environment variables, check again
4448 * if there are still wildcards present.
4450 if (vim_strchr(eap->arg, '$') != NULL
4451 || vim_strchr(eap->arg, '~') != NULL)
4453 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
4454 TRUE, TRUE, NULL);
4455 has_wildcards = mch_has_wildcard(NameBuff);
4456 p = NameBuff;
4458 else
4459 p = NULL;
4461 else /* n == 2 */
4463 expand_T xpc;
4465 ExpandInit(&xpc);
4466 xpc.xp_context = EXPAND_FILES;
4467 p = ExpandOne(&xpc, eap->arg, NULL,
4468 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4469 WILD_EXPAND_FREE);
4470 if (p == NULL)
4471 return FAIL;
4473 if (p != NULL)
4475 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4476 p, cmdlinep);
4477 if (n == 2) /* p came from ExpandOne() */
4478 vim_free(p);
4483 return OK;
4487 * Replace part of the command line, keeping eap->cmd, eap->arg and
4488 * eap->nextcmd correct.
4489 * "src" points to the part that is to be replaced, of length "srclen".
4490 * "repl" is the replacement string.
4491 * Returns a pointer to the character after the replaced string.
4492 * Returns NULL for failure.
4494 static char_u *
4495 repl_cmdline(eap, src, srclen, repl, cmdlinep)
4496 exarg_T *eap;
4497 char_u *src;
4498 int srclen;
4499 char_u *repl;
4500 char_u **cmdlinep;
4502 int len;
4503 int i;
4504 char_u *new_cmdline;
4507 * The new command line is build in new_cmdline[].
4508 * First allocate it.
4509 * Careful: a "+cmd" argument may have been NUL terminated.
4511 len = (int)STRLEN(repl);
4512 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
4513 if (eap->nextcmd != NULL)
4514 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4515 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4516 return NULL; /* out of memory! */
4519 * Copy the stuff before the expanded part.
4520 * Copy the expanded stuff.
4521 * Copy what came after the expanded part.
4522 * Copy the next commands, if there are any.
4524 i = (int)(src - *cmdlinep); /* length of part before match */
4525 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
4527 mch_memmove(new_cmdline + i, repl, (size_t)len);
4528 i += len; /* remember the end of the string */
4529 STRCPY(new_cmdline + i, src + srclen);
4530 src = new_cmdline + i; /* remember where to continue */
4532 if (eap->nextcmd != NULL) /* append next command */
4534 i = (int)STRLEN(new_cmdline) + 1;
4535 STRCPY(new_cmdline + i, eap->nextcmd);
4536 eap->nextcmd = new_cmdline + i;
4538 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4539 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4540 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4541 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4542 vim_free(*cmdlinep);
4543 *cmdlinep = new_cmdline;
4545 return src;
4549 * Check for '|' to separate commands and '"' to start comments.
4551 void
4552 separate_nextcmd(eap)
4553 exarg_T *eap;
4555 char_u *p;
4557 #ifdef FEAT_QUICKFIX
4558 p = skip_grep_pat(eap);
4559 #else
4560 p = eap->arg;
4561 #endif
4563 for ( ; *p; mb_ptr_adv(p))
4565 if (*p == Ctrl_V)
4567 if (eap->argt & (USECTRLV | XFILE))
4568 ++p; /* skip CTRL-V and next char */
4569 else
4570 /* remove CTRL-V and skip next char */
4571 STRMOVE(p, p + 1);
4572 if (*p == NUL) /* stop at NUL after CTRL-V */
4573 break;
4576 #ifdef FEAT_EVAL
4577 /* Skip over `=expr` when wildcards are expanded. */
4578 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
4580 p += 2;
4581 (void)skip_expr(&p);
4583 #endif
4585 /* Check for '"': start of comment or '|': next command */
4586 /* :@" and :*" do not start a comment!
4587 * :redir @" doesn't either. */
4588 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4589 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4590 || p != eap->arg)
4591 && (eap->cmdidx != CMD_redir
4592 || p != eap->arg + 1 || p[-1] != '@'))
4593 || *p == '|' || *p == '\n')
4596 * We remove the '\' before the '|', unless USECTRLV is used
4597 * AND 'b' is present in 'cpoptions'.
4599 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4600 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4602 STRMOVE(p - 1, p); /* remove the '\' */
4603 --p;
4605 else
4607 eap->nextcmd = check_nextcmd(p);
4608 *p = NUL;
4609 break;
4614 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4615 del_trailing_spaces(eap->arg);
4619 * get + command from ex argument
4621 static char_u *
4622 getargcmd(argp)
4623 char_u **argp;
4625 char_u *arg = *argp;
4626 char_u *command = NULL;
4628 if (*arg == '+') /* +[command] */
4630 ++arg;
4631 if (vim_isspace(*arg))
4632 command = dollar_command;
4633 else
4635 command = arg;
4636 arg = skip_cmd_arg(command, TRUE);
4637 if (*arg != NUL)
4638 *arg++ = NUL; /* terminate command with NUL */
4641 arg = skipwhite(arg); /* skip over spaces */
4642 *argp = arg;
4644 return command;
4648 * Find end of "+command" argument. Skip over "\ " and "\\".
4650 static char_u *
4651 skip_cmd_arg(p, rembs)
4652 char_u *p;
4653 int rembs; /* TRUE to halve the number of backslashes */
4655 while (*p && !vim_isspace(*p))
4657 if (*p == '\\' && p[1] != NUL)
4659 if (rembs)
4660 STRMOVE(p, p + 1);
4661 else
4662 ++p;
4664 mb_ptr_adv(p);
4666 return p;
4670 * Get "++opt=arg" argument.
4671 * Return FAIL or OK.
4673 static int
4674 getargopt(eap)
4675 exarg_T *eap;
4677 char_u *arg = eap->arg + 2;
4678 int *pp = NULL;
4679 #ifdef FEAT_MBYTE
4680 char_u *p;
4681 #endif
4683 /* ":edit ++[no]bin[ary] file" */
4684 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4686 if (*arg == 'n')
4688 arg += 2;
4689 eap->force_bin = FORCE_NOBIN;
4691 else
4692 eap->force_bin = FORCE_BIN;
4693 if (!checkforcmd(&arg, "binary", 3))
4694 return FAIL;
4695 eap->arg = skipwhite(arg);
4696 return OK;
4699 /* ":read ++edit file" */
4700 if (STRNCMP(arg, "edit", 4) == 0)
4702 eap->read_edit = TRUE;
4703 eap->arg = skipwhite(arg + 4);
4704 return OK;
4707 if (STRNCMP(arg, "ff", 2) == 0)
4709 arg += 2;
4710 pp = &eap->force_ff;
4712 else if (STRNCMP(arg, "fileformat", 10) == 0)
4714 arg += 10;
4715 pp = &eap->force_ff;
4717 #ifdef FEAT_MBYTE
4718 else if (STRNCMP(arg, "enc", 3) == 0)
4720 arg += 3;
4721 pp = &eap->force_enc;
4723 else if (STRNCMP(arg, "encoding", 8) == 0)
4725 arg += 8;
4726 pp = &eap->force_enc;
4728 else if (STRNCMP(arg, "bad", 3) == 0)
4730 arg += 3;
4731 pp = &eap->bad_char;
4733 #endif
4735 if (pp == NULL || *arg != '=')
4736 return FAIL;
4738 ++arg;
4739 *pp = (int)(arg - eap->cmd);
4740 arg = skip_cmd_arg(arg, FALSE);
4741 eap->arg = skipwhite(arg);
4742 *arg = NUL;
4744 #ifdef FEAT_MBYTE
4745 if (pp == &eap->force_ff)
4747 #endif
4748 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4749 return FAIL;
4750 #ifdef FEAT_MBYTE
4752 else if (pp == &eap->force_enc)
4754 /* Make 'fileencoding' lower case. */
4755 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4756 *p = TOLOWER_ASC(*p);
4758 else
4760 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4761 * "drop". */
4762 p = eap->cmd + eap->bad_char;
4763 if (STRICMP(p, "keep") == 0)
4764 eap->bad_char = BAD_KEEP;
4765 else if (STRICMP(p, "drop") == 0)
4766 eap->bad_char = BAD_DROP;
4767 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4768 eap->bad_char = *p;
4769 else
4770 return FAIL;
4772 #endif
4774 return OK;
4778 * ":abbreviate" and friends.
4780 static void
4781 ex_abbreviate(eap)
4782 exarg_T *eap;
4784 do_exmap(eap, TRUE); /* almost the same as mapping */
4788 * ":map" and friends.
4790 static void
4791 ex_map(eap)
4792 exarg_T *eap;
4795 * If we are sourcing .exrc or .vimrc in current directory we
4796 * print the mappings for security reasons.
4798 if (secure)
4800 secure = 2;
4801 msg_outtrans(eap->cmd);
4802 msg_putchar('\n');
4804 do_exmap(eap, FALSE);
4808 * ":unmap" and friends.
4810 static void
4811 ex_unmap(eap)
4812 exarg_T *eap;
4814 do_exmap(eap, FALSE);
4818 * ":mapclear" and friends.
4820 static void
4821 ex_mapclear(eap)
4822 exarg_T *eap;
4824 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4828 * ":abclear" and friends.
4830 static void
4831 ex_abclear(eap)
4832 exarg_T *eap;
4834 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4837 #ifdef FEAT_AUTOCMD
4838 static void
4839 ex_autocmd(eap)
4840 exarg_T *eap;
4843 * Disallow auto commands from .exrc and .vimrc in current
4844 * directory for security reasons.
4846 if (secure)
4848 secure = 2;
4849 eap->errmsg = e_curdir;
4851 else if (eap->cmdidx == CMD_autocmd)
4852 do_autocmd(eap->arg, eap->forceit);
4853 else
4854 do_augroup(eap->arg, eap->forceit);
4858 * ":doautocmd": Apply the automatic commands to the current buffer.
4860 static void
4861 ex_doautocmd(eap)
4862 exarg_T *eap;
4864 (void)do_doautocmd(eap->arg, TRUE);
4865 do_modelines(0);
4867 #endif
4869 #ifdef FEAT_LISTCMDS
4871 * :[N]bunload[!] [N] [bufname] unload buffer
4872 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4873 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4875 static void
4876 ex_bunload(eap)
4877 exarg_T *eap;
4879 eap->errmsg = do_bufdel(
4880 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4881 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4882 : DOBUF_UNLOAD, eap->arg,
4883 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4887 * :[N]buffer [N] to buffer N
4888 * :[N]sbuffer [N] to buffer N
4890 static void
4891 ex_buffer(eap)
4892 exarg_T *eap;
4894 if (*eap->arg)
4895 eap->errmsg = e_trailing;
4896 else
4898 if (eap->addr_count == 0) /* default is current buffer */
4899 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4900 else
4901 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4906 * :[N]bmodified [N] to next mod. buffer
4907 * :[N]sbmodified [N] to next mod. buffer
4909 static void
4910 ex_bmodified(eap)
4911 exarg_T *eap;
4913 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4917 * :[N]bnext [N] to next buffer
4918 * :[N]sbnext [N] split and to next buffer
4920 static void
4921 ex_bnext(eap)
4922 exarg_T *eap;
4924 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4928 * :[N]bNext [N] to previous buffer
4929 * :[N]bprevious [N] to previous buffer
4930 * :[N]sbNext [N] split and to previous buffer
4931 * :[N]sbprevious [N] split and to previous buffer
4933 static void
4934 ex_bprevious(eap)
4935 exarg_T *eap;
4937 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4941 * :brewind to first buffer
4942 * :bfirst to first buffer
4943 * :sbrewind split and to first buffer
4944 * :sbfirst split and to first buffer
4946 static void
4947 ex_brewind(eap)
4948 exarg_T *eap;
4950 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4954 * :blast to last buffer
4955 * :sblast split and to last buffer
4957 static void
4958 ex_blast(eap)
4959 exarg_T *eap;
4961 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4963 #endif
4966 ends_excmd(c)
4967 int c;
4969 return (c == NUL || c == '|' || c == '"' || c == '\n');
4972 #if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4973 || defined(PROTO)
4975 * Return the next command, after the first '|' or '\n'.
4976 * Return NULL if not found.
4978 char_u *
4979 find_nextcmd(p)
4980 char_u *p;
4982 while (*p != '|' && *p != '\n')
4984 if (*p == NUL)
4985 return NULL;
4986 ++p;
4988 return (p + 1);
4990 #endif
4993 * Check if *p is a separator between Ex commands.
4994 * Return NULL if it isn't, (p + 1) if it is.
4996 char_u *
4997 check_nextcmd(p)
4998 char_u *p;
5000 p = skipwhite(p);
5001 if (*p == '|' || *p == '\n')
5002 return (p + 1);
5003 else
5004 return NULL;
5008 * - if there are more files to edit
5009 * - and this is the last window
5010 * - and forceit not used
5011 * - and not repeated twice on a row
5012 * return FAIL and give error message if 'message' TRUE
5013 * return OK otherwise
5015 static int
5016 check_more(message, forceit)
5017 int message; /* when FALSE check only, no messages */
5018 int forceit;
5020 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5022 if (!forceit && only_one_window()
5023 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
5025 if (message)
5027 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5028 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5030 char_u buff[IOSIZE];
5032 if (n == 1)
5033 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
5034 else
5035 vim_snprintf((char *)buff, IOSIZE,
5036 _("%d more files to edit. Quit anyway?"), n);
5037 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5038 return OK;
5039 return FAIL;
5041 #endif
5042 if (n == 1)
5043 EMSG(_("E173: 1 more file to edit"));
5044 else
5045 EMSGN(_("E173: %ld more files to edit"), n);
5046 quitmore = 2; /* next try to quit is allowed */
5048 return FAIL;
5050 return OK;
5053 #ifdef FEAT_CMDL_COMPL
5055 * Function given to ExpandGeneric() to obtain the list of command names.
5057 /*ARGSUSED*/
5058 char_u *
5059 get_command_name(xp, idx)
5060 expand_T *xp;
5061 int idx;
5063 if (idx >= (int)CMD_SIZE)
5064 # ifdef FEAT_USR_CMDS
5065 return get_user_command_name(idx);
5066 # else
5067 return NULL;
5068 # endif
5069 return cmdnames[idx].cmd_name;
5071 #endif
5073 #if defined(FEAT_USR_CMDS) || defined(PROTO)
5074 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));
5075 static void uc_list __ARGS((char_u *name, size_t name_len));
5076 static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5077 static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5078 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));
5080 static int
5081 uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5082 char_u *name;
5083 size_t name_len;
5084 char_u *rep;
5085 long argt;
5086 long def;
5087 int flags;
5088 int compl;
5089 char_u *compl_arg;
5090 int force;
5092 ucmd_T *cmd = NULL;
5093 char_u *p;
5094 int i;
5095 int cmp = 1;
5096 char_u *rep_buf = NULL;
5097 garray_T *gap;
5099 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
5100 if (rep_buf == NULL)
5102 /* Can't replace termcodes - try using the string as is */
5103 rep_buf = vim_strsave(rep);
5105 /* Give up if out of memory */
5106 if (rep_buf == NULL)
5107 return FAIL;
5110 /* get address of growarray: global or in curbuf */
5111 if (flags & UC_BUFFER)
5113 gap = &curbuf->b_ucmds;
5114 if (gap->ga_itemsize == 0)
5115 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5117 else
5118 gap = &ucmds;
5120 /* Search for the command in the already defined commands. */
5121 for (i = 0; i < gap->ga_len; ++i)
5123 size_t len;
5125 cmd = USER_CMD_GA(gap, i);
5126 len = STRLEN(cmd->uc_name);
5127 cmp = STRNCMP(name, cmd->uc_name, name_len);
5128 if (cmp == 0)
5130 if (name_len < len)
5131 cmp = -1;
5132 else if (name_len > len)
5133 cmp = 1;
5136 if (cmp == 0)
5138 if (!force)
5140 EMSG(_("E174: Command already exists: add ! to replace it"));
5141 goto fail;
5144 vim_free(cmd->uc_rep);
5145 cmd->uc_rep = 0;
5146 break;
5149 /* Stop as soon as we pass the name to add */
5150 if (cmp < 0)
5151 break;
5154 /* Extend the array unless we're replacing an existing command */
5155 if (cmp != 0)
5157 if (ga_grow(gap, 1) != OK)
5158 goto fail;
5159 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5160 goto fail;
5162 cmd = USER_CMD_GA(gap, i);
5163 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5165 ++gap->ga_len;
5167 cmd->uc_name = p;
5170 cmd->uc_rep = rep_buf;
5171 cmd->uc_argt = argt;
5172 cmd->uc_def = def;
5173 cmd->uc_compl = compl;
5174 #ifdef FEAT_EVAL
5175 cmd->uc_scriptID = current_SID;
5176 # ifdef FEAT_CMDL_COMPL
5177 cmd->uc_compl_arg = compl_arg;
5178 # endif
5179 #endif
5181 return OK;
5183 fail:
5184 vim_free(rep_buf);
5185 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5186 vim_free(compl_arg);
5187 #endif
5188 return FAIL;
5192 * List of names for completion for ":command" with the EXPAND_ flag.
5193 * Must be alphabetical for completion.
5195 static struct
5197 int expand;
5198 char *name;
5199 } command_complete[] =
5201 {EXPAND_AUGROUP, "augroup"},
5202 {EXPAND_BUFFERS, "buffer"},
5203 {EXPAND_COMMANDS, "command"},
5204 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5205 {EXPAND_USER_DEFINED, "custom"},
5206 {EXPAND_USER_LIST, "customlist"},
5207 #endif
5208 {EXPAND_DIRECTORIES, "dir"},
5209 {EXPAND_ENV_VARS, "environment"},
5210 {EXPAND_EVENTS, "event"},
5211 {EXPAND_EXPRESSION, "expression"},
5212 {EXPAND_FILES, "file"},
5213 {EXPAND_FUNCTIONS, "function"},
5214 {EXPAND_HELP, "help"},
5215 {EXPAND_HIGHLIGHT, "highlight"},
5216 {EXPAND_MAPPINGS, "mapping"},
5217 {EXPAND_MENUS, "menu"},
5218 {EXPAND_SETTINGS, "option"},
5219 {EXPAND_SHELLCMD, "shellcmd"},
5220 {EXPAND_TAGS, "tag"},
5221 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5222 {EXPAND_USER_VARS, "var"},
5223 {0, NULL}
5226 static void
5227 uc_list(name, name_len)
5228 char_u *name;
5229 size_t name_len;
5231 int i, j;
5232 int found = FALSE;
5233 ucmd_T *cmd;
5234 int len;
5235 long a;
5236 garray_T *gap;
5238 gap = &curbuf->b_ucmds;
5239 for (;;)
5241 for (i = 0; i < gap->ga_len; ++i)
5243 cmd = USER_CMD_GA(gap, i);
5244 a = (long)cmd->uc_argt;
5246 /* Skip commands which don't match the requested prefix */
5247 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5248 continue;
5250 /* Put out the title first time */
5251 if (!found)
5252 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5253 found = TRUE;
5254 msg_putchar('\n');
5255 if (got_int)
5256 break;
5258 /* Special cases */
5259 msg_putchar(a & BANG ? '!' : ' ');
5260 msg_putchar(a & REGSTR ? '"' : ' ');
5261 msg_putchar(gap != &ucmds ? 'b' : ' ');
5262 msg_putchar(' ');
5264 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5265 len = (int)STRLEN(cmd->uc_name) + 4;
5267 do {
5268 msg_putchar(' ');
5269 ++len;
5270 } while (len < 16);
5272 len = 0;
5274 /* Arguments */
5275 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5277 case 0: IObuff[len++] = '0'; break;
5278 case (EXTRA): IObuff[len++] = '*'; break;
5279 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5280 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5281 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5284 do {
5285 IObuff[len++] = ' ';
5286 } while (len < 5);
5288 /* Range */
5289 if (a & (RANGE|COUNT))
5291 if (a & COUNT)
5293 /* -count=N */
5294 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5295 len += (int)STRLEN(IObuff + len);
5297 else if (a & DFLALL)
5298 IObuff[len++] = '%';
5299 else if (cmd->uc_def >= 0)
5301 /* -range=N */
5302 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5303 len += (int)STRLEN(IObuff + len);
5305 else
5306 IObuff[len++] = '.';
5309 do {
5310 IObuff[len++] = ' ';
5311 } while (len < 11);
5313 /* Completion */
5314 for (j = 0; command_complete[j].expand != 0; ++j)
5315 if (command_complete[j].expand == cmd->uc_compl)
5317 STRCPY(IObuff + len, command_complete[j].name);
5318 len += (int)STRLEN(IObuff + len);
5319 break;
5322 do {
5323 IObuff[len++] = ' ';
5324 } while (len < 21);
5326 IObuff[len] = '\0';
5327 msg_outtrans(IObuff);
5329 msg_outtrans_special(cmd->uc_rep, FALSE);
5330 #ifdef FEAT_EVAL
5331 if (p_verbose > 0)
5332 last_set_msg(cmd->uc_scriptID);
5333 #endif
5334 out_flush();
5335 ui_breakcheck();
5336 if (got_int)
5337 break;
5339 if (gap == &ucmds || i < gap->ga_len)
5340 break;
5341 gap = &ucmds;
5344 if (!found)
5345 MSG(_("No user-defined commands found"));
5348 static char_u *
5349 uc_fun_cmd()
5351 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5352 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5353 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5354 0xb9, 0x7f, 0};
5355 int i;
5357 for (i = 0; fcmd[i]; ++i)
5358 IObuff[i] = fcmd[i] - 0x40;
5359 IObuff[i] = 0;
5360 return IObuff;
5363 static int
5364 uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5365 char_u *attr;
5366 size_t len;
5367 long *argt;
5368 long *def;
5369 int *flags;
5370 int *compl;
5371 char_u **compl_arg;
5373 char_u *p;
5375 if (len == 0)
5377 EMSG(_("E175: No attribute specified"));
5378 return FAIL;
5381 /* First, try the simple attributes (no arguments) */
5382 if (STRNICMP(attr, "bang", len) == 0)
5383 *argt |= BANG;
5384 else if (STRNICMP(attr, "buffer", len) == 0)
5385 *flags |= UC_BUFFER;
5386 else if (STRNICMP(attr, "register", len) == 0)
5387 *argt |= REGSTR;
5388 else if (STRNICMP(attr, "bar", len) == 0)
5389 *argt |= TRLBAR;
5390 else
5392 int i;
5393 char_u *val = NULL;
5394 size_t vallen = 0;
5395 size_t attrlen = len;
5397 /* Look for the attribute name - which is the part before any '=' */
5398 for (i = 0; i < (int)len; ++i)
5400 if (attr[i] == '=')
5402 val = &attr[i + 1];
5403 vallen = len - i - 1;
5404 attrlen = i;
5405 break;
5409 if (STRNICMP(attr, "nargs", attrlen) == 0)
5411 if (vallen == 1)
5413 if (*val == '0')
5414 /* Do nothing - this is the default */;
5415 else if (*val == '1')
5416 *argt |= (EXTRA | NOSPC | NEEDARG);
5417 else if (*val == '*')
5418 *argt |= EXTRA;
5419 else if (*val == '?')
5420 *argt |= (EXTRA | NOSPC);
5421 else if (*val == '+')
5422 *argt |= (EXTRA | NEEDARG);
5423 else
5424 goto wrong_nargs;
5426 else
5428 wrong_nargs:
5429 EMSG(_("E176: Invalid number of arguments"));
5430 return FAIL;
5433 else if (STRNICMP(attr, "range", attrlen) == 0)
5435 *argt |= RANGE;
5436 if (vallen == 1 && *val == '%')
5437 *argt |= DFLALL;
5438 else if (val != NULL)
5440 p = val;
5441 if (*def >= 0)
5443 two_count:
5444 EMSG(_("E177: Count cannot be specified twice"));
5445 return FAIL;
5448 *def = getdigits(&p);
5449 *argt |= (ZEROR | NOTADR);
5451 if (p != val + vallen || vallen == 0)
5453 invalid_count:
5454 EMSG(_("E178: Invalid default value for count"));
5455 return FAIL;
5459 else if (STRNICMP(attr, "count", attrlen) == 0)
5461 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
5463 if (val != NULL)
5465 p = val;
5466 if (*def >= 0)
5467 goto two_count;
5469 *def = getdigits(&p);
5471 if (p != val + vallen)
5472 goto invalid_count;
5475 if (*def < 0)
5476 *def = 0;
5478 else if (STRNICMP(attr, "complete", attrlen) == 0)
5480 if (val == NULL)
5482 EMSG(_("E179: argument required for -complete"));
5483 return FAIL;
5486 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5487 == FAIL)
5488 return FAIL;
5490 else
5492 char_u ch = attr[len];
5493 attr[len] = '\0';
5494 EMSG2(_("E181: Invalid attribute: %s"), attr);
5495 attr[len] = ch;
5496 return FAIL;
5500 return OK;
5503 static void
5504 ex_command(eap)
5505 exarg_T *eap;
5507 char_u *name;
5508 char_u *end;
5509 char_u *p;
5510 long argt = 0;
5511 long def = -1;
5512 int flags = 0;
5513 int compl = EXPAND_NOTHING;
5514 char_u *compl_arg = NULL;
5515 int has_attr = (eap->arg[0] == '-');
5517 p = eap->arg;
5519 /* Check for attributes */
5520 while (*p == '-')
5522 ++p;
5523 end = skiptowhite(p);
5524 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5525 == FAIL)
5526 return;
5527 p = skipwhite(end);
5530 /* Get the name (if any) and skip to the following argument */
5531 name = p;
5532 if (ASCII_ISALPHA(*p))
5533 while (ASCII_ISALNUM(*p))
5534 ++p;
5535 if (!ends_excmd(*p) && !vim_iswhite(*p))
5537 EMSG(_("E182: Invalid command name"));
5538 return;
5540 end = p;
5542 /* If there is nothing after the name, and no attributes were specified,
5543 * we are listing commands
5545 p = skipwhite(end);
5546 if (!has_attr && ends_excmd(*p))
5548 uc_list(name, end - name);
5550 else if (!ASCII_ISUPPER(*name))
5552 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5553 return;
5555 else
5556 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5557 eap->forceit);
5561 * ":comclear"
5562 * Clear all user commands, global and for current buffer.
5564 /*ARGSUSED*/
5565 void
5566 ex_comclear(eap)
5567 exarg_T *eap;
5569 uc_clear(&ucmds);
5570 uc_clear(&curbuf->b_ucmds);
5574 * Clear all user commands for "gap".
5576 void
5577 uc_clear(gap)
5578 garray_T *gap;
5580 int i;
5581 ucmd_T *cmd;
5583 for (i = 0; i < gap->ga_len; ++i)
5585 cmd = USER_CMD_GA(gap, i);
5586 vim_free(cmd->uc_name);
5587 vim_free(cmd->uc_rep);
5588 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5589 vim_free(cmd->uc_compl_arg);
5590 # endif
5592 ga_clear(gap);
5595 static void
5596 ex_delcommand(eap)
5597 exarg_T *eap;
5599 int i = 0;
5600 ucmd_T *cmd = NULL;
5601 int cmp = -1;
5602 garray_T *gap;
5604 gap = &curbuf->b_ucmds;
5605 for (;;)
5607 for (i = 0; i < gap->ga_len; ++i)
5609 cmd = USER_CMD_GA(gap, i);
5610 cmp = STRCMP(eap->arg, cmd->uc_name);
5611 if (cmp <= 0)
5612 break;
5614 if (gap == &ucmds || cmp == 0)
5615 break;
5616 gap = &ucmds;
5619 if (cmp != 0)
5621 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5622 return;
5625 vim_free(cmd->uc_name);
5626 vim_free(cmd->uc_rep);
5627 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5628 vim_free(cmd->uc_compl_arg);
5629 # endif
5631 --gap->ga_len;
5633 if (i < gap->ga_len)
5634 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5638 * split and quote args for <f-args>
5640 static char_u *
5641 uc_split_args(arg, lenp)
5642 char_u *arg;
5643 size_t *lenp;
5645 char_u *buf;
5646 char_u *p;
5647 char_u *q;
5648 int len;
5650 /* Precalculate length */
5651 p = arg;
5652 len = 2; /* Initial and final quotes */
5654 while (*p)
5656 if (p[0] == '\\' && p[1] == '\\')
5658 len += 2;
5659 p += 2;
5661 else if (p[0] == '\\' && vim_iswhite(p[1]))
5663 len += 1;
5664 p += 2;
5666 else if (*p == '\\' || *p == '"')
5668 len += 2;
5669 p += 1;
5671 else if (vim_iswhite(*p))
5673 p = skipwhite(p);
5674 if (*p == NUL)
5675 break;
5676 len += 3; /* "," */
5678 else
5680 ++len;
5681 ++p;
5685 buf = alloc(len + 1);
5686 if (buf == NULL)
5688 *lenp = 0;
5689 return buf;
5692 p = arg;
5693 q = buf;
5694 *q++ = '"';
5695 while (*p)
5697 if (p[0] == '\\' && p[1] == '\\')
5699 *q++ = '\\';
5700 *q++ = '\\';
5701 p += 2;
5703 else if (p[0] == '\\' && vim_iswhite(p[1]))
5705 *q++ = p[1];
5706 p += 2;
5708 else if (*p == '\\' || *p == '"')
5710 *q++ = '\\';
5711 *q++ = *p++;
5713 else if (vim_iswhite(*p))
5715 p = skipwhite(p);
5716 if (*p == NUL)
5717 break;
5718 *q++ = '"';
5719 *q++ = ',';
5720 *q++ = '"';
5722 else
5724 *q++ = *p++;
5727 *q++ = '"';
5728 *q = 0;
5730 *lenp = len;
5731 return buf;
5735 * Check for a <> code in a user command.
5736 * "code" points to the '<'. "len" the length of the <> (inclusive).
5737 * "buf" is where the result is to be added.
5738 * "split_buf" points to a buffer used for splitting, caller should free it.
5739 * "split_len" is the length of what "split_buf" contains.
5740 * Returns the length of the replacement, which has been added to "buf".
5741 * Returns -1 if there was no match, and only the "<" has been copied.
5743 static size_t
5744 uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5745 char_u *code;
5746 size_t len;
5747 char_u *buf;
5748 ucmd_T *cmd; /* the user command we're expanding */
5749 exarg_T *eap; /* ex arguments */
5750 char_u **split_buf;
5751 size_t *split_len;
5753 size_t result = 0;
5754 char_u *p = code + 1;
5755 size_t l = len - 2;
5756 int quote = 0;
5757 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5758 ct_LT, ct_NONE } type = ct_NONE;
5760 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5762 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5763 p += 2;
5764 l -= 2;
5767 ++l;
5768 if (l <= 1)
5769 type = ct_NONE;
5770 else if (STRNICMP(p, "args>", l) == 0)
5771 type = ct_ARGS;
5772 else if (STRNICMP(p, "bang>", l) == 0)
5773 type = ct_BANG;
5774 else if (STRNICMP(p, "count>", l) == 0)
5775 type = ct_COUNT;
5776 else if (STRNICMP(p, "line1>", l) == 0)
5777 type = ct_LINE1;
5778 else if (STRNICMP(p, "line2>", l) == 0)
5779 type = ct_LINE2;
5780 else if (STRNICMP(p, "lt>", l) == 0)
5781 type = ct_LT;
5782 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
5783 type = ct_REGISTER;
5785 switch (type)
5787 case ct_ARGS:
5788 /* Simple case first */
5789 if (*eap->arg == NUL)
5791 if (quote == 1)
5793 result = 2;
5794 if (buf != NULL)
5795 STRCPY(buf, "''");
5797 else
5798 result = 0;
5799 break;
5802 /* When specified there is a single argument don't split it.
5803 * Works for ":Cmd %" when % is "a b c". */
5804 if ((eap->argt & NOSPC) && quote == 2)
5805 quote = 1;
5807 switch (quote)
5809 case 0: /* No quoting, no splitting */
5810 result = STRLEN(eap->arg);
5811 if (buf != NULL)
5812 STRCPY(buf, eap->arg);
5813 break;
5814 case 1: /* Quote, but don't split */
5815 result = STRLEN(eap->arg) + 2;
5816 for (p = eap->arg; *p; ++p)
5818 if (*p == '\\' || *p == '"')
5819 ++result;
5822 if (buf != NULL)
5824 *buf++ = '"';
5825 for (p = eap->arg; *p; ++p)
5827 if (*p == '\\' || *p == '"')
5828 *buf++ = '\\';
5829 *buf++ = *p;
5831 *buf = '"';
5834 break;
5835 case 2: /* Quote and split (<f-args>) */
5836 /* This is hard, so only do it once, and cache the result */
5837 if (*split_buf == NULL)
5838 *split_buf = uc_split_args(eap->arg, split_len);
5840 result = *split_len;
5841 if (buf != NULL && result != 0)
5842 STRCPY(buf, *split_buf);
5844 break;
5846 break;
5848 case ct_BANG:
5849 result = eap->forceit ? 1 : 0;
5850 if (quote)
5851 result += 2;
5852 if (buf != NULL)
5854 if (quote)
5855 *buf++ = '"';
5856 if (eap->forceit)
5857 *buf++ = '!';
5858 if (quote)
5859 *buf = '"';
5861 break;
5863 case ct_LINE1:
5864 case ct_LINE2:
5865 case ct_COUNT:
5867 char num_buf[20];
5868 long num = (type == ct_LINE1) ? eap->line1 :
5869 (type == ct_LINE2) ? eap->line2 :
5870 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5871 size_t num_len;
5873 sprintf(num_buf, "%ld", num);
5874 num_len = STRLEN(num_buf);
5875 result = num_len;
5877 if (quote)
5878 result += 2;
5880 if (buf != NULL)
5882 if (quote)
5883 *buf++ = '"';
5884 STRCPY(buf, num_buf);
5885 buf += num_len;
5886 if (quote)
5887 *buf = '"';
5890 break;
5893 case ct_REGISTER:
5894 result = eap->regname ? 1 : 0;
5895 if (quote)
5896 result += 2;
5897 if (buf != NULL)
5899 if (quote)
5900 *buf++ = '\'';
5901 if (eap->regname)
5902 *buf++ = eap->regname;
5903 if (quote)
5904 *buf = '\'';
5906 break;
5908 case ct_LT:
5909 result = 1;
5910 if (buf != NULL)
5911 *buf = '<';
5912 break;
5914 default:
5915 /* Not recognized: just copy the '<' and return -1. */
5916 result = (size_t)-1;
5917 if (buf != NULL)
5918 *buf = '<';
5919 break;
5922 return result;
5925 static void
5926 do_ucmd(eap)
5927 exarg_T *eap;
5929 char_u *buf;
5930 char_u *p;
5931 char_u *q;
5933 char_u *start;
5934 char_u *end;
5935 size_t len, totlen;
5937 size_t split_len = 0;
5938 char_u *split_buf = NULL;
5939 ucmd_T *cmd;
5940 #ifdef FEAT_EVAL
5941 scid_T save_current_SID = current_SID;
5942 #endif
5944 if (eap->cmdidx == CMD_USER)
5945 cmd = USER_CMD(eap->useridx);
5946 else
5947 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5950 * Replace <> in the command by the arguments.
5952 buf = NULL;
5953 for (;;)
5955 p = cmd->uc_rep;
5956 q = buf;
5957 totlen = 0;
5958 while ((start = vim_strchr(p, '<')) != NULL
5959 && (end = vim_strchr(start + 1, '>')) != NULL)
5961 /* Include the '>' */
5962 ++end;
5964 /* Take everything up to the '<' */
5965 len = start - p;
5966 if (buf == NULL)
5967 totlen += len;
5968 else
5970 mch_memmove(q, p, len);
5971 q += len;
5974 len = uc_check_code(start, end - start, q, cmd, eap,
5975 &split_buf, &split_len);
5976 if (len == (size_t)-1)
5978 /* no match, continue after '<' */
5979 p = start + 1;
5980 len = 1;
5982 else
5983 p = end;
5984 if (buf == NULL)
5985 totlen += len;
5986 else
5987 q += len;
5989 if (buf != NULL) /* second time here, finished */
5991 STRCPY(q, p);
5992 break;
5995 totlen += STRLEN(p); /* Add on the trailing characters */
5996 buf = alloc((unsigned)(totlen + 1));
5997 if (buf == NULL)
5999 vim_free(split_buf);
6000 return;
6004 #ifdef FEAT_EVAL
6005 current_SID = cmd->uc_scriptID;
6006 #endif
6007 (void)do_cmdline(buf, eap->getline, eap->cookie,
6008 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
6009 #ifdef FEAT_EVAL
6010 current_SID = save_current_SID;
6011 #endif
6012 vim_free(buf);
6013 vim_free(split_buf);
6016 # if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6017 static char_u *
6018 get_user_command_name(idx)
6019 int idx;
6021 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6025 * Function given to ExpandGeneric() to obtain the list of user command names.
6027 /*ARGSUSED*/
6028 char_u *
6029 get_user_commands(xp, idx)
6030 expand_T *xp;
6031 int idx;
6033 if (idx < curbuf->b_ucmds.ga_len)
6034 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6035 idx -= curbuf->b_ucmds.ga_len;
6036 if (idx < ucmds.ga_len)
6037 return USER_CMD(idx)->uc_name;
6038 return NULL;
6042 * Function given to ExpandGeneric() to obtain the list of user command
6043 * attributes.
6045 /*ARGSUSED*/
6046 char_u *
6047 get_user_cmd_flags(xp, idx)
6048 expand_T *xp;
6049 int idx;
6051 static char *user_cmd_flags[] =
6052 {"bang", "bar", "buffer", "complete", "count",
6053 "nargs", "range", "register"};
6055 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
6056 return NULL;
6057 return (char_u *)user_cmd_flags[idx];
6061 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6063 /*ARGSUSED*/
6064 char_u *
6065 get_user_cmd_nargs(xp, idx)
6066 expand_T *xp;
6067 int idx;
6069 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6071 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
6072 return NULL;
6073 return (char_u *)user_cmd_nargs[idx];
6077 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6079 /*ARGSUSED*/
6080 char_u *
6081 get_user_cmd_complete(xp, idx)
6082 expand_T *xp;
6083 int idx;
6085 return (char_u *)command_complete[idx].name;
6087 # endif /* FEAT_CMDL_COMPL */
6089 #endif /* FEAT_USR_CMDS */
6091 #if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6093 * Parse a completion argument "value[vallen]".
6094 * The detected completion goes in "*complp", argument type in "*argt".
6095 * When there is an argument, for function and user defined completion, it's
6096 * copied to allocated memory and stored in "*compl_arg".
6097 * Returns FAIL if something is wrong.
6100 parse_compl_arg(value, vallen, complp, argt, compl_arg)
6101 char_u *value;
6102 int vallen;
6103 int *complp;
6104 long *argt;
6105 char_u **compl_arg;
6107 char_u *arg = NULL;
6108 size_t arglen = 0;
6109 int i;
6110 int valend = vallen;
6112 /* Look for any argument part - which is the part after any ',' */
6113 for (i = 0; i < vallen; ++i)
6115 if (value[i] == ',')
6117 arg = &value[i + 1];
6118 arglen = vallen - i - 1;
6119 valend = i;
6120 break;
6124 for (i = 0; command_complete[i].expand != 0; ++i)
6126 if ((int)STRLEN(command_complete[i].name) == valend
6127 && STRNCMP(value, command_complete[i].name, valend) == 0)
6129 *complp = command_complete[i].expand;
6130 if (command_complete[i].expand == EXPAND_BUFFERS)
6131 *argt |= BUFNAME;
6132 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6133 || command_complete[i].expand == EXPAND_FILES)
6134 *argt |= XFILE;
6135 break;
6139 if (command_complete[i].expand == 0)
6141 EMSG2(_("E180: Invalid complete value: %s"), value);
6142 return FAIL;
6145 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6146 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6147 && arg != NULL)
6148 # else
6149 if (arg != NULL)
6150 # endif
6152 EMSG(_("E468: Completion argument only allowed for custom completion"));
6153 return FAIL;
6156 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6157 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6158 && arg == NULL)
6160 EMSG(_("E467: Custom completion requires a function argument"));
6161 return FAIL;
6164 if (arg != NULL)
6165 *compl_arg = vim_strnsave(arg, (int)arglen);
6166 # endif
6167 return OK;
6169 #endif
6171 static void
6172 ex_colorscheme(eap)
6173 exarg_T *eap;
6175 if (load_colors(eap->arg) == FAIL)
6176 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6179 static void
6180 ex_highlight(eap)
6181 exarg_T *eap;
6183 if (*eap->arg == NUL && eap->cmd[2] == '!')
6184 MSG(_("Greetings, Vim user!"));
6185 do_highlight(eap->arg, eap->forceit, FALSE);
6190 * Call this function if we thought we were going to exit, but we won't
6191 * (because of an error). May need to restore the terminal mode.
6193 void
6194 not_exiting()
6196 exiting = FALSE;
6197 settmode(TMODE_RAW);
6201 * ":quit": quit current window, quit Vim if closed the last window.
6203 static void
6204 ex_quit(eap)
6205 exarg_T *eap;
6207 #ifdef FEAT_CMDWIN
6208 if (cmdwin_type != 0)
6210 cmdwin_result = Ctrl_C;
6211 return;
6213 #endif
6214 /* Don't quit while editing the command line. */
6215 if (text_locked())
6217 text_locked_msg();
6218 return;
6220 #ifdef FEAT_AUTOCMD
6221 if (curbuf_locked())
6222 return;
6223 #endif
6225 #ifdef FEAT_NETBEANS_INTG
6226 netbeansForcedQuit = eap->forceit;
6227 #endif
6230 * If there are more files or windows we won't exit.
6232 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6233 exiting = TRUE;
6234 if ((!P_HID(curbuf)
6235 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6236 || check_more(TRUE, eap->forceit) == FAIL
6237 || (only_one_window() && check_changed_any(eap->forceit)))
6239 not_exiting();
6241 else
6243 #ifdef FEAT_WINDOWS
6244 if (only_one_window()) /* quit last window */
6245 #endif
6246 getout(0);
6247 #ifdef FEAT_WINDOWS
6248 # ifdef FEAT_GUI
6249 need_mouse_correct = TRUE;
6250 # endif
6251 /* close window; may free buffer */
6252 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6253 #endif
6258 * ":cquit".
6260 /*ARGSUSED*/
6261 static void
6262 ex_cquit(eap)
6263 exarg_T *eap;
6265 getout(1); /* this does not always pass on the exit code to the Manx
6266 compiler. why? */
6270 * ":qall": try to quit all windows
6272 static void
6273 ex_quit_all(eap)
6274 exarg_T *eap;
6276 # ifdef FEAT_CMDWIN
6277 if (cmdwin_type != 0)
6279 if (eap->forceit)
6280 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6281 else
6282 cmdwin_result = K_XF2;
6283 return;
6285 # endif
6287 /* Don't quit while editing the command line. */
6288 if (text_locked())
6290 text_locked_msg();
6291 return;
6293 #ifdef FEAT_AUTOCMD
6294 if (curbuf_locked())
6295 return;
6296 #endif
6298 exiting = TRUE;
6299 if (eap->forceit || !check_changed_any(FALSE))
6300 getout(0);
6301 not_exiting();
6304 #if defined(FEAT_WINDOWS) || defined(PROTO)
6306 * ":close": close current window, unless it is the last one
6308 static void
6309 ex_close(eap)
6310 exarg_T *eap;
6312 # ifdef FEAT_CMDWIN
6313 if (cmdwin_type != 0)
6314 cmdwin_result = K_IGNORE;
6315 else
6316 # endif
6317 if (!text_locked()
6318 #ifdef FEAT_AUTOCMD
6319 && !curbuf_locked()
6320 #endif
6322 ex_win_close(eap->forceit, curwin, NULL);
6325 # ifdef FEAT_QUICKFIX
6327 * ":pclose": Close any preview window.
6329 static void
6330 ex_pclose(eap)
6331 exarg_T *eap;
6333 win_T *win;
6335 for (win = firstwin; win != NULL; win = win->w_next)
6336 if (win->w_p_pvw)
6338 ex_win_close(eap->forceit, win, NULL);
6339 break;
6342 # endif
6345 * Close window "win" and take care of handling closing the last window for a
6346 * modified buffer.
6348 static void
6349 ex_win_close(forceit, win, tp)
6350 int forceit;
6351 win_T *win;
6352 tabpage_T *tp; /* NULL or the tab page "win" is in */
6354 int need_hide;
6355 buf_T *buf = win->w_buffer;
6357 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
6358 if (need_hide && !P_HID(buf) && !forceit)
6360 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
6361 if ((p_confirm || cmdmod.confirm) && p_write)
6363 dialog_changed(buf, FALSE);
6364 if (buf_valid(buf) && bufIsChanged(buf))
6365 return;
6366 need_hide = FALSE;
6368 else
6369 # endif
6371 EMSG(_(e_nowrtmsg));
6372 return;
6376 # ifdef FEAT_GUI
6377 need_mouse_correct = TRUE;
6378 # endif
6380 /* free buffer when not hiding it or when it's a scratch buffer */
6381 if (tp == NULL)
6382 win_close(win, !need_hide && !P_HID(buf));
6383 else
6384 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
6388 * ":tabclose": close current tab page, unless it is the last one.
6389 * ":tabclose N": close tab page N.
6391 static void
6392 ex_tabclose(eap)
6393 exarg_T *eap;
6395 tabpage_T *tp;
6397 # ifdef FEAT_CMDWIN
6398 if (cmdwin_type != 0)
6399 cmdwin_result = K_IGNORE;
6400 else
6401 # endif
6402 if (first_tabpage->tp_next == NULL)
6403 EMSG(_("E784: Cannot close last tab page"));
6404 else
6406 if (eap->addr_count > 0)
6408 tp = find_tabpage((int)eap->line2);
6409 if (tp == NULL)
6411 beep_flush();
6412 return;
6414 if (tp != curtab)
6416 tabpage_close_other(tp, eap->forceit);
6417 return;
6420 if (!text_locked()
6421 #ifdef FEAT_AUTOCMD
6422 && !curbuf_locked()
6423 #endif
6425 tabpage_close(eap->forceit);
6430 * ":tabonly": close all tab pages except the current one
6432 static void
6433 ex_tabonly(eap)
6434 exarg_T *eap;
6436 tabpage_T *tp;
6437 int done;
6439 # ifdef FEAT_CMDWIN
6440 if (cmdwin_type != 0)
6441 cmdwin_result = K_IGNORE;
6442 else
6443 # endif
6444 if (first_tabpage->tp_next == NULL)
6445 MSG(_("Already only one tab page"));
6446 else
6448 /* Repeat this up to a 1000 times, because autocommands may mess
6449 * up the lists. */
6450 for (done = 0; done < 1000; ++done)
6452 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6453 if (tp->tp_topframe != topframe)
6455 tabpage_close_other(tp, eap->forceit);
6456 /* if we failed to close it quit */
6457 if (valid_tabpage(tp))
6458 done = 1000;
6459 /* start over, "tp" is now invalid */
6460 break;
6462 if (first_tabpage->tp_next == NULL)
6463 break;
6469 * Close the current tab page.
6471 void
6472 tabpage_close(forceit)
6473 int forceit;
6475 /* First close all the windows but the current one. If that worked then
6476 * close the last window in this tab, that will close it. */
6477 if (lastwin != firstwin)
6478 close_others(TRUE, forceit);
6479 if (lastwin == firstwin)
6480 ex_win_close(forceit, curwin, NULL);
6481 # ifdef FEAT_GUI
6482 need_mouse_correct = TRUE;
6483 # endif
6487 * Close tab page "tp", which is not the current tab page.
6488 * Note that autocommands may make "tp" invalid.
6489 * Also takes care of the tab pages line disappearing when closing the
6490 * last-but-one tab page.
6492 void
6493 tabpage_close_other(tp, forceit)
6494 tabpage_T *tp;
6495 int forceit;
6497 int done = 0;
6498 win_T *wp;
6499 int h = tabline_height();
6501 /* Limit to 1000 windows, autocommands may add a window while we close
6502 * one. OK, so I'm paranoid... */
6503 while (++done < 1000)
6505 wp = tp->tp_firstwin;
6506 ex_win_close(forceit, wp, tp);
6508 /* Autocommands may delete the tab page under our fingers and we may
6509 * fail to close a window with a modified buffer. */
6510 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
6511 break;
6514 redraw_tabline = TRUE;
6515 if (h != tabline_height())
6516 shell_new_rows();
6520 * ":only".
6522 static void
6523 ex_only(eap)
6524 exarg_T *eap;
6526 # ifdef FEAT_GUI
6527 need_mouse_correct = TRUE;
6528 # endif
6529 close_others(TRUE, eap->forceit);
6533 * ":all" and ":sall".
6534 * Also used for ":tab drop file ..." after setting the argument list.
6536 void
6537 ex_all(eap)
6538 exarg_T *eap;
6540 if (eap->addr_count == 0)
6541 eap->line2 = 9999;
6542 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
6544 #endif /* FEAT_WINDOWS */
6546 static void
6547 ex_hide(eap)
6548 exarg_T *eap;
6550 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6551 eap->errmsg = e_invarg;
6552 else
6554 /* ":hide" or ":hide | cmd": hide current window */
6555 eap->nextcmd = check_nextcmd(eap->arg);
6556 #ifdef FEAT_WINDOWS
6557 if (!eap->skip)
6559 # ifdef FEAT_GUI
6560 need_mouse_correct = TRUE;
6561 # endif
6562 win_close(curwin, FALSE); /* don't free buffer */
6564 #endif
6569 * ":stop" and ":suspend": Suspend Vim.
6571 static void
6572 ex_stop(eap)
6573 exarg_T *eap;
6576 * Disallow suspending for "rvim".
6578 if (!check_restricted()
6579 #ifdef WIN3264
6581 * Check if external commands are allowed now.
6583 && can_end_termcap_mode(TRUE)
6584 #endif
6587 if (!eap->forceit)
6588 autowrite_all();
6589 windgoto((int)Rows - 1, 0);
6590 out_char('\n');
6591 out_flush();
6592 stoptermcap();
6593 out_flush(); /* needed for SUN to restore xterm buffer */
6594 #ifdef FEAT_TITLE
6595 mch_restore_title(3); /* restore window titles */
6596 #endif
6597 ui_suspend(); /* call machine specific function */
6598 #ifdef FEAT_TITLE
6599 maketitle();
6600 resettitle(); /* force updating the title */
6601 #endif
6602 starttermcap();
6603 scroll_start(); /* scroll screen before redrawing */
6604 redraw_later_clear();
6605 shell_resized(); /* may have resized window */
6610 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6612 static void
6613 ex_exit(eap)
6614 exarg_T *eap;
6616 #ifdef FEAT_CMDWIN
6617 if (cmdwin_type != 0)
6619 cmdwin_result = Ctrl_C;
6620 return;
6622 #endif
6623 /* Don't quit while editing the command line. */
6624 if (text_locked())
6626 text_locked_msg();
6627 return;
6629 #ifdef FEAT_AUTOCMD
6630 if (curbuf_locked())
6631 return;
6632 #endif
6635 * if more files or windows we won't exit
6637 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6638 exiting = TRUE;
6639 if ( ((eap->cmdidx == CMD_wq
6640 || curbufIsChanged())
6641 && do_write(eap) == FAIL)
6642 || check_more(TRUE, eap->forceit) == FAIL
6643 || (only_one_window() && check_changed_any(eap->forceit)))
6645 not_exiting();
6647 else
6649 #ifdef FEAT_WINDOWS
6650 if (only_one_window()) /* quit last window, exit Vim */
6651 #endif
6652 getout(0);
6653 #ifdef FEAT_WINDOWS
6654 # ifdef FEAT_GUI
6655 need_mouse_correct = TRUE;
6656 # endif
6657 /* quit current window, may free buffer */
6658 win_close(curwin, !P_HID(curwin->w_buffer));
6659 #endif
6664 * ":print", ":list", ":number".
6666 static void
6667 ex_print(eap)
6668 exarg_T *eap;
6670 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6671 EMSG(_(e_emptybuf));
6672 else
6674 for ( ;!got_int; ui_breakcheck())
6676 print_line(eap->line1,
6677 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6678 || (eap->flags & EXFLAG_NR)),
6679 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6680 if (++eap->line1 > eap->line2)
6681 break;
6682 out_flush(); /* show one line at a time */
6684 setpcmark();
6685 /* put cursor at last line */
6686 curwin->w_cursor.lnum = eap->line2;
6687 beginline(BL_SOL | BL_FIX);
6690 ex_no_reprint = TRUE;
6693 #ifdef FEAT_BYTEOFF
6694 static void
6695 ex_goto(eap)
6696 exarg_T *eap;
6698 goto_byte(eap->line2);
6700 #endif
6703 * ":shell".
6705 /*ARGSUSED*/
6706 static void
6707 ex_shell(eap)
6708 exarg_T *eap;
6710 do_shell(NULL, 0);
6713 #if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6714 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
6715 || defined(FEAT_GUI_MSWIN) \
6716 || defined(FEAT_GUI_MAC) \
6717 || defined(PROTO) \
6718 || defined(FEAT_GUI_MACVIM)
6721 * Handle a file drop. The code is here because a drop is *nearly* like an
6722 * :args command, but not quite (we have a list of exact filenames, so we
6723 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6724 * code is very similar to :args and hence needs access to a lot of the static
6725 * functions in this file.
6727 * The list should be allocated using alloc(), as should each item in the
6728 * list. This function takes over responsibility for freeing the list.
6730 * XXX The list is made into the argument list. This is freed using
6731 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6732 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6733 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6734 * file functionality is (currently) not in EMX this is not presently a
6735 * problem.
6737 void
6738 handle_drop(filec, filev, split)
6739 int filec; /* the number of files dropped */
6740 char_u **filev; /* the list of files dropped */
6741 int split; /* force splitting the window */
6743 exarg_T ea;
6744 int save_msg_scroll = msg_scroll;
6746 /* Postpone this while editing the command line. */
6747 if (text_locked())
6748 return;
6749 #ifdef FEAT_AUTOCMD
6750 if (curbuf_locked())
6751 return;
6752 #endif
6753 /* When the screen is being updated we should not change buffers and
6754 * windows structures, it may cause freed memory to be used. */
6755 if (updating_screen)
6756 return;
6758 /* Check whether the current buffer is changed. If so, we will need
6759 * to split the current window or data could be lost.
6760 * We don't need to check if the 'hidden' option is set, as in this
6761 * case the buffer won't be lost.
6763 if (!P_HID(curbuf) && !split)
6765 ++emsg_off;
6766 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6767 --emsg_off;
6769 if (split)
6771 # ifdef FEAT_WINDOWS
6772 if (win_split(0, 0) == FAIL)
6773 return;
6774 # ifdef FEAT_SCROLLBIND
6775 curwin->w_p_scb = FALSE;
6776 # endif
6778 /* When splitting the window, create a new alist. Otherwise the
6779 * existing one is overwritten. */
6780 alist_unlink(curwin->w_alist);
6781 alist_new();
6782 # else
6783 return; /* can't split, always fail */
6784 # endif
6788 * Set up the new argument list.
6790 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
6793 * Move to the first file.
6795 /* Fake up a minimal "next" command for do_argfile() */
6796 vim_memset(&ea, 0, sizeof(ea));
6797 ea.cmd = (char_u *)"next";
6798 do_argfile(&ea, 0);
6800 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6801 * mode that is not needed here. */
6802 need_start_insertmode = FALSE;
6804 /* Restore msg_scroll, otherwise a following command may cause scrolling
6805 * unexpectedly. The screen will be redrawn by the caller, thus
6806 * msg_scroll being set by displaying a message is irrelevant. */
6807 msg_scroll = save_msg_scroll;
6809 #endif
6812 * Clear an argument list: free all file names and reset it to zero entries.
6814 void
6815 alist_clear(al)
6816 alist_T *al;
6818 while (--al->al_ga.ga_len >= 0)
6819 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6820 ga_clear(&al->al_ga);
6824 * Init an argument list.
6826 void
6827 alist_init(al)
6828 alist_T *al;
6830 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6833 #if defined(FEAT_WINDOWS) || defined(PROTO)
6836 * Remove a reference from an argument list.
6837 * Ignored when the argument list is the global one.
6838 * If the argument list is no longer used by any window, free it.
6840 void
6841 alist_unlink(al)
6842 alist_T *al;
6844 if (al != &global_alist && --al->al_refcount <= 0)
6846 alist_clear(al);
6847 vim_free(al);
6851 # if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6853 * Create a new argument list and use it for the current window.
6855 void
6856 alist_new()
6858 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6859 if (curwin->w_alist == NULL)
6861 curwin->w_alist = &global_alist;
6862 ++global_alist.al_refcount;
6864 else
6866 curwin->w_alist->al_refcount = 1;
6867 alist_init(curwin->w_alist);
6870 # endif
6871 #endif
6873 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6875 * Expand the file names in the global argument list.
6876 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6877 * numbers to be re-used.
6879 void
6880 alist_expand(fnum_list, fnum_len)
6881 int *fnum_list;
6882 int fnum_len;
6884 char_u **old_arg_files;
6885 int old_arg_count;
6886 char_u **new_arg_files;
6887 int new_arg_file_count;
6888 char_u *save_p_su = p_su;
6889 int i;
6891 /* Don't use 'suffixes' here. This should work like the shell did the
6892 * expansion. Also, the vimrc file isn't read yet, thus the user
6893 * can't set the options. */
6894 p_su = empty_option;
6895 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6896 if (old_arg_files != NULL)
6898 for (i = 0; i < GARGCOUNT; ++i)
6899 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6900 old_arg_count = GARGCOUNT;
6901 if (expand_wildcards(old_arg_count, old_arg_files,
6902 &new_arg_file_count, &new_arg_files,
6903 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6904 && new_arg_file_count > 0)
6906 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6907 TRUE, fnum_list, fnum_len);
6908 FreeWild(old_arg_count, old_arg_files);
6911 p_su = save_p_su;
6913 #endif
6916 * Set the argument list for the current window.
6917 * Takes over the allocated files[] and the allocated fnames in it.
6919 void
6920 alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
6921 alist_T *al;
6922 int count;
6923 char_u **files;
6924 int use_curbuf;
6925 int *fnum_list;
6926 int fnum_len;
6928 int i;
6930 alist_clear(al);
6931 if (ga_grow(&al->al_ga, count) == OK)
6933 for (i = 0; i < count; ++i)
6935 if (got_int)
6937 /* When adding many buffers this can take a long time. Allow
6938 * interrupting here. */
6939 while (i < count)
6940 vim_free(files[i++]);
6941 break;
6944 /* May set buffer name of a buffer previously used for the
6945 * argument list, so that it's re-used by alist_add. */
6946 if (fnum_list != NULL && i < fnum_len)
6947 buf_set_name(fnum_list[i], files[i]);
6949 alist_add(al, files[i], use_curbuf ? 2 : 1);
6950 ui_breakcheck();
6952 vim_free(files);
6954 else
6955 FreeWild(count, files);
6956 #ifdef FEAT_WINDOWS
6957 if (al == &global_alist)
6958 #endif
6959 arg_had_last = FALSE;
6963 * Add file "fname" to argument list "al".
6964 * "fname" must have been allocated and "al" must have been checked for room.
6966 void
6967 alist_add(al, fname, set_fnum)
6968 alist_T *al;
6969 char_u *fname;
6970 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6972 if (fname == NULL) /* don't add NULL file names */
6973 return;
6974 #ifdef BACKSLASH_IN_FILENAME
6975 slash_adjust(fname);
6976 #endif
6977 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6978 if (set_fnum > 0)
6979 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6980 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6981 ++al->al_ga.ga_len;
6984 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6986 * Adjust slashes in file names. Called after 'shellslash' was set.
6988 void
6989 alist_slash_adjust()
6991 int i;
6992 # ifdef FEAT_WINDOWS
6993 win_T *wp;
6994 tabpage_T *tp;
6995 # endif
6997 for (i = 0; i < GARGCOUNT; ++i)
6998 if (GARGLIST[i].ae_fname != NULL)
6999 slash_adjust(GARGLIST[i].ae_fname);
7000 # ifdef FEAT_WINDOWS
7001 FOR_ALL_TAB_WINDOWS(tp, wp)
7002 if (wp->w_alist != &global_alist)
7003 for (i = 0; i < WARGCOUNT(wp); ++i)
7004 if (WARGLIST(wp)[i].ae_fname != NULL)
7005 slash_adjust(WARGLIST(wp)[i].ae_fname);
7006 # endif
7008 #endif
7011 * ":preserve".
7013 /*ARGSUSED*/
7014 static void
7015 ex_preserve(eap)
7016 exarg_T *eap;
7018 curbuf->b_flags |= BF_PRESERVED;
7019 ml_preserve(curbuf, TRUE);
7023 * ":recover".
7025 static void
7026 ex_recover(eap)
7027 exarg_T *eap;
7029 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7030 recoverymode = TRUE;
7031 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
7032 && (*eap->arg == NUL
7033 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7034 ml_recover();
7035 recoverymode = FALSE;
7039 * Command modifier used in a wrong way.
7041 static void
7042 ex_wrongmodifier(eap)
7043 exarg_T *eap;
7045 eap->errmsg = e_invcmd;
7048 #ifdef FEAT_WINDOWS
7050 * :sview [+command] file split window with new file, read-only
7051 * :split [[+command] file] split window with current or new file
7052 * :vsplit [[+command] file] split window vertically with current or new file
7053 * :new [[+command] file] split window with no or new file
7054 * :vnew [[+command] file] split vertically window with no or new file
7055 * :sfind [+command] file split window with file in 'path'
7057 * :tabedit open new Tab page with empty window
7058 * :tabedit [+command] file open new Tab page and edit "file"
7059 * :tabnew [[+command] file] just like :tabedit
7060 * :tabfind [+command] file open new Tab page and find "file"
7062 void
7063 ex_splitview(eap)
7064 exarg_T *eap;
7066 win_T *old_curwin = curwin;
7067 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7068 char_u *fname = NULL;
7069 # endif
7070 # ifdef FEAT_BROWSE
7071 int browse_flag = cmdmod.browse;
7072 # endif
7074 # ifndef FEAT_VERTSPLIT
7075 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7077 ex_ni(eap);
7078 return;
7080 # endif
7082 # ifdef FEAT_GUI
7083 need_mouse_correct = TRUE;
7084 # endif
7086 # ifdef FEAT_QUICKFIX
7087 /* A ":split" in the quickfix window works like ":new". Don't want two
7088 * quickfix windows. But it's OK when doing ":tab split". */
7089 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
7091 if (eap->cmdidx == CMD_split)
7092 eap->cmdidx = CMD_new;
7093 # ifdef FEAT_VERTSPLIT
7094 if (eap->cmdidx == CMD_vsplit)
7095 eap->cmdidx = CMD_vnew;
7096 # endif
7098 # endif
7100 # ifdef FEAT_SEARCHPATH
7101 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
7103 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7104 FNAME_MESS, TRUE, curbuf->b_ffname);
7105 if (fname == NULL)
7106 goto theend;
7107 eap->arg = fname;
7109 # ifdef FEAT_BROWSE
7110 else
7111 # endif
7112 # endif
7113 # ifdef FEAT_BROWSE
7114 if (cmdmod.browse
7115 # ifdef FEAT_VERTSPLIT
7116 && eap->cmdidx != CMD_vnew
7117 # endif
7118 && eap->cmdidx != CMD_new)
7120 # ifdef FEAT_AUTOCMD
7121 if (
7122 # ifdef FEAT_GUI
7123 !gui.in_use &&
7124 # endif
7125 au_has_group((char_u *)"FileExplorer"))
7127 /* No browsing supported but we do have the file explorer:
7128 * Edit the directory. */
7129 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7130 eap->arg = (char_u *)".";
7132 else
7133 # endif
7135 fname = do_browse(0, (char_u *)_("Edit File in new window"),
7136 eap->arg, NULL, NULL, NULL, curbuf);
7137 if (fname == NULL)
7138 goto theend;
7139 eap->arg = fname;
7142 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
7143 # endif
7146 * Either open new tab page or split the window.
7148 if (eap->cmdidx == CMD_tabedit
7149 || eap->cmdidx == CMD_tabfind
7150 || eap->cmdidx == CMD_tabnew)
7152 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7153 : eap->addr_count == 0 ? 0
7154 : (int)eap->line2 + 1) != FAIL)
7156 do_exedit(eap, old_curwin);
7158 /* set the alternate buffer for the window we came from */
7159 if (curwin != old_curwin
7160 && win_valid(old_curwin)
7161 && old_curwin->w_buffer != curbuf
7162 && !cmdmod.keepalt)
7163 old_curwin->w_alt_fnum = curbuf->b_fnum;
7166 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
7167 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7169 # ifdef FEAT_SCROLLBIND
7170 /* Reset 'scrollbind' when editing another file, but keep it when
7171 * doing ":split" without arguments. */
7172 if (*eap->arg != NUL
7173 # ifdef FEAT_BROWSE
7174 || cmdmod.browse
7175 # endif
7177 curwin->w_p_scb = FALSE;
7178 else
7179 do_check_scrollbind(FALSE);
7180 # endif
7181 do_exedit(eap, old_curwin);
7184 # ifdef FEAT_BROWSE
7185 cmdmod.browse = browse_flag;
7186 # endif
7188 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7189 theend:
7190 vim_free(fname);
7191 # endif
7195 * Open a new tab page.
7197 void
7198 tabpage_new()
7200 exarg_T ea;
7202 vim_memset(&ea, 0, sizeof(ea));
7203 ea.cmdidx = CMD_tabnew;
7204 ea.cmd = (char_u *)"tabn";
7205 ea.arg = (char_u *)"";
7206 ex_splitview(&ea);
7210 * :tabnext command
7212 static void
7213 ex_tabnext(eap)
7214 exarg_T *eap;
7216 switch (eap->cmdidx)
7218 case CMD_tabfirst:
7219 case CMD_tabrewind:
7220 goto_tabpage(1);
7221 break;
7222 case CMD_tablast:
7223 goto_tabpage(9999);
7224 break;
7225 case CMD_tabprevious:
7226 case CMD_tabNext:
7227 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7228 break;
7229 default: /* CMD_tabnext */
7230 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7231 break;
7236 * :tabmove command
7238 static void
7239 ex_tabmove(eap)
7240 exarg_T *eap;
7242 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
7246 * :tabs command: List tabs and their contents.
7248 /*ARGSUSED*/
7249 static void
7250 ex_tabs(eap)
7251 exarg_T *eap;
7253 tabpage_T *tp;
7254 win_T *wp;
7255 int tabcount = 1;
7257 msg_start();
7258 msg_scroll = TRUE;
7259 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7261 msg_putchar('\n');
7262 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7263 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7264 out_flush(); /* output one line at a time */
7265 ui_breakcheck();
7267 if (tp == curtab)
7268 wp = firstwin;
7269 else
7270 wp = tp->tp_firstwin;
7271 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7273 msg_putchar('\n');
7274 msg_putchar(wp == curwin ? '>' : ' ');
7275 msg_putchar(' ');
7276 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7277 msg_putchar(' ');
7278 if (buf_spname(wp->w_buffer) != NULL)
7279 STRCPY(IObuff, buf_spname(wp->w_buffer));
7280 else
7281 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7282 IObuff, IOSIZE, TRUE);
7283 msg_outtrans(IObuff);
7284 out_flush(); /* output one line at a time */
7285 ui_breakcheck();
7290 #endif /* FEAT_WINDOWS */
7293 * ":mode": Set screen mode.
7294 * If no argument given, just get the screen size and redraw.
7296 static void
7297 ex_mode(eap)
7298 exarg_T *eap;
7300 if (*eap->arg == NUL)
7301 shell_resized();
7302 else
7303 mch_screenmode(eap->arg);
7306 #ifdef FEAT_WINDOWS
7308 * ":resize".
7309 * set, increment or decrement current window height
7311 static void
7312 ex_resize(eap)
7313 exarg_T *eap;
7315 int n;
7316 win_T *wp = curwin;
7318 if (eap->addr_count > 0)
7320 n = eap->line2;
7321 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7325 #ifdef FEAT_GUI
7326 need_mouse_correct = TRUE;
7327 #endif
7328 n = atol((char *)eap->arg);
7329 #ifdef FEAT_VERTSPLIT
7330 if (cmdmod.split & WSP_VERT)
7332 if (*eap->arg == '-' || *eap->arg == '+')
7333 n += W_WIDTH(curwin);
7334 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7335 n = 9999;
7336 win_setwidth_win((int)n, wp);
7338 else
7339 #endif
7341 if (*eap->arg == '-' || *eap->arg == '+')
7342 n += curwin->w_height;
7343 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7344 n = 9999;
7345 win_setheight_win((int)n, wp);
7348 #endif
7351 * ":find [+command] <file>" command.
7353 static void
7354 ex_find(eap)
7355 exarg_T *eap;
7357 #ifdef FEAT_SEARCHPATH
7358 char_u *fname;
7359 int count;
7361 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7362 TRUE, curbuf->b_ffname);
7363 if (eap->addr_count > 0)
7365 /* Repeat finding the file "count" times. This matters when it
7366 * appears several times in the path. */
7367 count = eap->line2;
7368 while (fname != NULL && --count > 0)
7370 vim_free(fname);
7371 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7372 FALSE, curbuf->b_ffname);
7376 if (fname != NULL)
7378 eap->arg = fname;
7379 #endif
7380 do_exedit(eap, NULL);
7381 #ifdef FEAT_SEARCHPATH
7382 vim_free(fname);
7384 #endif
7388 * ":open" simulation: for now just work like ":visual".
7390 static void
7391 ex_open(eap)
7392 exarg_T *eap;
7394 regmatch_T regmatch;
7395 char_u *p;
7397 curwin->w_cursor.lnum = eap->line2;
7398 beginline(BL_SOL | BL_FIX);
7399 if (*eap->arg == '/')
7401 /* ":open /pattern/": put cursor in column found with pattern */
7402 ++eap->arg;
7403 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7404 *p = NUL;
7405 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7406 if (regmatch.regprog != NULL)
7408 regmatch.rm_ic = p_ic;
7409 p = ml_get_curline();
7410 if (vim_regexec(&regmatch, p, (colnr_T)0))
7411 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
7412 else
7413 EMSG(_(e_nomatch));
7414 vim_free(regmatch.regprog);
7416 /* Move to the NUL, ignore any other arguments. */
7417 eap->arg += STRLEN(eap->arg);
7419 check_cursor();
7421 eap->cmdidx = CMD_visual;
7422 do_exedit(eap, NULL);
7426 * ":edit", ":badd", ":visual".
7428 static void
7429 ex_edit(eap)
7430 exarg_T *eap;
7432 do_exedit(eap, NULL);
7436 * ":edit <file>" command and alikes.
7438 /*ARGSUSED*/
7439 void
7440 do_exedit(eap, old_curwin)
7441 exarg_T *eap;
7442 win_T *old_curwin; /* curwin before doing a split or NULL */
7444 int n;
7445 #ifdef FEAT_WINDOWS
7446 int need_hide;
7447 #endif
7448 int exmode_was = exmode_active;
7451 * ":vi" command ends Ex mode.
7453 if (exmode_active && (eap->cmdidx == CMD_visual
7454 || eap->cmdidx == CMD_view))
7456 exmode_active = FALSE;
7457 if (*eap->arg == NUL)
7459 /* Special case: ":global/pat/visual\NLvi-commands" */
7460 if (global_busy)
7462 int rd = RedrawingDisabled;
7463 int nwr = no_wait_return;
7464 int ms = msg_scroll;
7465 #ifdef FEAT_GUI
7466 int he = hold_gui_events;
7467 #endif
7469 if (eap->nextcmd != NULL)
7471 stuffReadbuff(eap->nextcmd);
7472 eap->nextcmd = NULL;
7475 if (exmode_was != EXMODE_VIM)
7476 settmode(TMODE_RAW);
7477 RedrawingDisabled = 0;
7478 no_wait_return = 0;
7479 need_wait_return = FALSE;
7480 msg_scroll = 0;
7481 #ifdef FEAT_GUI
7482 hold_gui_events = 0;
7483 #endif
7484 must_redraw = CLEAR;
7486 main_loop(FALSE, TRUE);
7488 RedrawingDisabled = rd;
7489 no_wait_return = nwr;
7490 msg_scroll = ms;
7491 #ifdef FEAT_GUI
7492 hold_gui_events = he;
7493 #endif
7495 return;
7499 if ((eap->cmdidx == CMD_new
7500 || eap->cmdidx == CMD_tabnew
7501 || eap->cmdidx == CMD_tabedit
7502 #ifdef FEAT_VERTSPLIT
7503 || eap->cmdidx == CMD_vnew
7504 #endif
7505 ) && *eap->arg == NUL)
7507 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
7508 setpcmark();
7509 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7510 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
7511 old_curwin == NULL ? curwin : NULL);
7513 else if ((eap->cmdidx != CMD_split
7514 #ifdef FEAT_VERTSPLIT
7515 && eap->cmdidx != CMD_vsplit
7516 #endif
7518 || *eap->arg != NUL
7519 #ifdef FEAT_BROWSE
7520 || cmdmod.browse
7521 #endif
7524 #ifdef FEAT_AUTOCMD
7525 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7526 * can bring us here, others are stopped earlier. */
7527 if (*eap->arg != NUL && curbuf_locked())
7528 return;
7529 #endif
7530 n = readonlymode;
7531 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7532 readonlymode = TRUE;
7533 else if (eap->cmdidx == CMD_enew)
7534 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7535 empty buffer */
7536 setpcmark();
7537 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7538 NULL, eap,
7539 /* ":edit" goes to first line if Vi compatible */
7540 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7541 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7542 ? ECMD_ONE : eap->do_ecmd_lnum,
7543 (P_HID(curbuf) ? ECMD_HIDE : 0)
7544 + (eap->forceit ? ECMD_FORCEIT : 0)
7545 #ifdef FEAT_LISTCMDS
7546 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7547 #endif
7548 , old_curwin == NULL ? curwin : NULL) == FAIL)
7550 /* Editing the file failed. If the window was split, close it. */
7551 #ifdef FEAT_WINDOWS
7552 if (old_curwin != NULL)
7554 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7555 if (!need_hide || P_HID(curbuf))
7557 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7558 cleanup_T cs;
7560 /* Reset the error/interrupt/exception state here so that
7561 * aborting() returns FALSE when closing a window. */
7562 enter_cleanup(&cs);
7563 # endif
7564 # ifdef FEAT_GUI
7565 need_mouse_correct = TRUE;
7566 # endif
7567 win_close(curwin, !need_hide && !P_HID(curbuf));
7569 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7570 /* Restore the error/interrupt/exception state if not
7571 * discarded by a new aborting error, interrupt, or
7572 * uncaught exception. */
7573 leave_cleanup(&cs);
7574 # endif
7577 #endif
7579 else if (readonlymode && curbuf->b_nwindows == 1)
7581 /* When editing an already visited buffer, 'readonly' won't be set
7582 * but the previous value is kept. With ":view" and ":sview" we
7583 * want the file to be readonly, except when another window is
7584 * editing the same buffer. */
7585 curbuf->b_p_ro = TRUE;
7587 readonlymode = n;
7589 else
7591 if (eap->do_ecmd_cmd != NULL)
7592 do_cmdline_cmd(eap->do_ecmd_cmd);
7593 #ifdef FEAT_TITLE
7594 n = curwin->w_arg_idx_invalid;
7595 #endif
7596 check_arg_idx(curwin);
7597 #ifdef FEAT_TITLE
7598 if (n != curwin->w_arg_idx_invalid)
7599 maketitle();
7600 #endif
7603 #ifdef FEAT_WINDOWS
7605 * if ":split file" worked, set alternate file name in old window to new
7606 * file
7608 if (old_curwin != NULL
7609 && *eap->arg != NUL
7610 && curwin != old_curwin
7611 && win_valid(old_curwin)
7612 && old_curwin->w_buffer != curbuf
7613 && !cmdmod.keepalt)
7614 old_curwin->w_alt_fnum = curbuf->b_fnum;
7615 #endif
7617 ex_no_reprint = TRUE;
7620 #ifndef FEAT_GUI
7622 * ":gui" and ":gvim" when there is no GUI.
7624 static void
7625 ex_nogui(eap)
7626 exarg_T *eap;
7628 eap->errmsg = e_nogvim;
7630 #endif
7632 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7633 static void
7634 ex_tearoff(eap)
7635 exarg_T *eap;
7637 gui_make_tearoff(eap->arg);
7639 #endif
7641 #if defined(FEAT_MENU) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
7642 || defined(FEAT_GUI_MACVIM))
7643 static void
7644 ex_popup(eap)
7645 exarg_T *eap;
7647 gui_make_popup(eap->arg, eap->forceit);
7649 #endif
7651 /*ARGSUSED*/
7652 static void
7653 ex_swapname(eap)
7654 exarg_T *eap;
7656 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7657 MSG(_("No swap file"));
7658 else
7659 msg(curbuf->b_ml.ml_mfp->mf_fname);
7663 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7664 * offset.
7665 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7667 /*ARGSUSED*/
7668 static void
7669 ex_syncbind(eap)
7670 exarg_T *eap;
7672 #ifdef FEAT_SCROLLBIND
7673 win_T *wp;
7674 long topline;
7675 long y;
7676 linenr_T old_linenr = curwin->w_cursor.lnum;
7678 setpcmark();
7681 * determine max topline
7683 if (curwin->w_p_scb)
7685 topline = curwin->w_topline;
7686 for (wp = firstwin; wp; wp = wp->w_next)
7688 if (wp->w_p_scb && wp->w_buffer)
7690 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7691 if (topline > y)
7692 topline = y;
7695 if (topline < 1)
7696 topline = 1;
7698 else
7700 topline = 1;
7705 * set all scrollbind windows to the same topline
7707 wp = curwin;
7708 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7710 if (curwin->w_p_scb)
7712 y = topline - curwin->w_topline;
7713 if (y > 0)
7714 scrollup(y, TRUE);
7715 else
7716 scrolldown(-y, TRUE);
7717 curwin->w_scbind_pos = topline;
7718 redraw_later(VALID);
7719 cursor_correct();
7720 #ifdef FEAT_WINDOWS
7721 curwin->w_redr_status = TRUE;
7722 #endif
7725 curwin = wp;
7726 if (curwin->w_p_scb)
7728 did_syncbind = TRUE;
7729 checkpcmark();
7730 if (old_linenr != curwin->w_cursor.lnum)
7732 char_u ctrl_o[2];
7734 ctrl_o[0] = Ctrl_O;
7735 ctrl_o[1] = 0;
7736 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7739 #endif
7743 static void
7744 ex_read(eap)
7745 exarg_T *eap;
7747 int i;
7748 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7749 linenr_T lnum;
7751 if (eap->usefilter) /* :r!cmd */
7752 do_bang(1, eap, FALSE, FALSE, TRUE);
7753 else
7755 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7756 return;
7758 #ifdef FEAT_BROWSE
7759 if (cmdmod.browse)
7761 char_u *browseFile;
7763 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
7764 NULL, NULL, NULL, curbuf);
7765 if (browseFile != NULL)
7767 i = readfile(browseFile, NULL,
7768 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7769 vim_free(browseFile);
7771 else
7772 i = OK;
7774 else
7775 #endif
7776 if (*eap->arg == NUL)
7778 if (check_fname() == FAIL) /* check for no file name */
7779 return;
7780 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7781 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7783 else
7785 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7786 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7787 i = readfile(eap->arg, NULL,
7788 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7791 if (i == FAIL)
7793 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7794 if (!aborting())
7795 #endif
7796 EMSG2(_(e_notopen), eap->arg);
7798 else
7800 if (empty && exmode_active)
7802 /* Delete the empty line that remains. Historically ex does
7803 * this but vi doesn't. */
7804 if (eap->line2 == 0)
7805 lnum = curbuf->b_ml.ml_line_count;
7806 else
7807 lnum = 1;
7808 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
7810 ml_delete(lnum, FALSE);
7811 deleted_lines_mark(lnum, 1L);
7812 if (curwin->w_cursor.lnum > 1
7813 && curwin->w_cursor.lnum >= lnum)
7814 --curwin->w_cursor.lnum;
7817 redraw_curbuf_later(VALID);
7822 static char_u *prev_dir = NULL;
7824 #if defined(EXITFREE) || defined(PROTO)
7825 void
7826 free_cd_dir()
7828 vim_free(prev_dir);
7829 prev_dir = NULL;
7831 #endif
7835 * ":cd", ":lcd", ":chdir" and ":lchdir".
7837 void
7838 ex_cd(eap)
7839 exarg_T *eap;
7841 char_u *new_dir;
7842 char_u *tofree;
7844 new_dir = eap->arg;
7845 #if !defined(UNIX) && !defined(VMS)
7846 /* for non-UNIX ":cd" means: print current directory */
7847 if (*new_dir == NUL)
7848 ex_pwd(NULL);
7849 else
7850 #endif
7852 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7853 && !eap->forceit)
7855 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
7856 return;
7859 /* ":cd -": Change to previous directory */
7860 if (STRCMP(new_dir, "-") == 0)
7862 if (prev_dir == NULL)
7864 EMSG(_("E186: No previous directory"));
7865 return;
7867 new_dir = prev_dir;
7870 /* Save current directory for next ":cd -" */
7871 tofree = prev_dir;
7872 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7873 prev_dir = vim_strsave(NameBuff);
7874 else
7875 prev_dir = NULL;
7877 #if defined(UNIX) || defined(VMS)
7878 /* for UNIX ":cd" means: go to home directory */
7879 if (*new_dir == NUL)
7881 /* use NameBuff for home directory name */
7882 # ifdef VMS
7883 char_u *p;
7885 p = mch_getenv((char_u *)"SYS$LOGIN");
7886 if (p == NULL || *p == NUL) /* empty is the same as not set */
7887 NameBuff[0] = NUL;
7888 else
7889 vim_strncpy(NameBuff, p, MAXPATHL - 1);
7890 # else
7891 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7892 # endif
7893 new_dir = NameBuff;
7895 #endif
7896 if (new_dir == NULL || vim_chdir(new_dir))
7897 EMSG(_(e_failed));
7898 else
7900 vim_free(curwin->w_localdir);
7901 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7903 /* If still in global directory, need to remember current
7904 * directory as global directory. */
7905 if (globaldir == NULL && prev_dir != NULL)
7906 globaldir = vim_strsave(prev_dir);
7907 /* Remember this local directory for the window. */
7908 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7909 curwin->w_localdir = vim_strsave(NameBuff);
7911 else
7913 /* We are now in the global directory, no need to remember its
7914 * name. */
7915 vim_free(globaldir);
7916 globaldir = NULL;
7917 curwin->w_localdir = NULL;
7920 shorten_fnames(TRUE);
7922 /* Echo the new current directory if the command was typed. */
7923 if (KeyTyped)
7924 ex_pwd(eap);
7926 vim_free(tofree);
7931 * ":pwd".
7933 /*ARGSUSED*/
7934 static void
7935 ex_pwd(eap)
7936 exarg_T *eap;
7938 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7940 #ifdef BACKSLASH_IN_FILENAME
7941 slash_adjust(NameBuff);
7942 #endif
7943 msg(NameBuff);
7945 else
7946 EMSG(_("E187: Unknown"));
7950 * ":=".
7952 static void
7953 ex_equal(eap)
7954 exarg_T *eap;
7956 smsg((char_u *)"%ld", (long)eap->line2);
7957 ex_may_print(eap);
7960 static void
7961 ex_sleep(eap)
7962 exarg_T *eap;
7964 int n;
7965 long len;
7967 if (cursor_valid())
7969 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7970 if (n >= 0)
7971 windgoto((int)n, curwin->w_wcol);
7974 len = eap->line2;
7975 switch (*eap->arg)
7977 case 'm': break;
7978 case NUL: len *= 1000L; break;
7979 default: EMSG2(_(e_invarg2), eap->arg); return;
7981 do_sleep(len);
7985 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7987 void
7988 do_sleep(msec)
7989 long msec;
7991 long done;
7993 cursor_on();
7994 out_flush();
7995 for (done = 0; !got_int && done < msec; done += 1000L)
7997 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7998 ui_breakcheck();
8002 static void
8003 do_exmap(eap, isabbrev)
8004 exarg_T *eap;
8005 int isabbrev;
8007 int mode;
8008 char_u *cmdp;
8010 cmdp = eap->cmd;
8011 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
8013 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
8014 eap->arg, mode, isabbrev))
8016 case 1: EMSG(_(e_invarg));
8017 break;
8018 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
8019 break;
8024 * ":winsize" command (obsolete).
8026 static void
8027 ex_winsize(eap)
8028 exarg_T *eap;
8030 int w, h;
8031 char_u *arg = eap->arg;
8032 char_u *p;
8034 w = getdigits(&arg);
8035 arg = skipwhite(arg);
8036 p = arg;
8037 h = getdigits(&arg);
8038 if (*p != NUL && *arg == NUL)
8039 set_shellsize(w, h, TRUE);
8040 else
8041 EMSG(_("E465: :winsize requires two number arguments"));
8044 #ifdef FEAT_WINDOWS
8045 static void
8046 ex_wincmd(eap)
8047 exarg_T *eap;
8049 int xchar = NUL;
8050 char_u *p;
8052 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8054 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8055 if (eap->arg[1] == NUL)
8057 EMSG(_(e_invarg));
8058 return;
8060 xchar = eap->arg[1];
8061 p = eap->arg + 2;
8063 else
8064 p = eap->arg + 1;
8066 eap->nextcmd = check_nextcmd(p);
8067 p = skipwhite(p);
8068 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8069 EMSG(_(e_invarg));
8070 else
8072 /* Pass flags on for ":vertical wincmd ]". */
8073 postponed_split_flags = cmdmod.split;
8074 postponed_split_tab = cmdmod.tab;
8075 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8076 postponed_split_flags = 0;
8077 postponed_split_tab = 0;
8080 #endif
8082 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
8084 * ":winpos".
8086 static void
8087 ex_winpos(eap)
8088 exarg_T *eap;
8090 int x, y;
8091 char_u *arg = eap->arg;
8092 char_u *p;
8094 if (*arg == NUL)
8096 # if defined(FEAT_GUI) || defined(MSWIN)
8097 # ifdef FEAT_GUI
8098 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
8099 # else
8100 if (mch_get_winpos(&x, &y) != FAIL)
8101 # endif
8103 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8104 msg(IObuff);
8106 else
8107 # endif
8108 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8110 else
8112 x = getdigits(&arg);
8113 arg = skipwhite(arg);
8114 p = arg;
8115 y = getdigits(&arg);
8116 if (*p == NUL || *arg != NUL)
8118 EMSG(_("E466: :winpos requires two number arguments"));
8119 return;
8121 # ifdef FEAT_GUI
8122 if (gui.in_use)
8123 gui_mch_set_winpos(x, y);
8124 else if (gui.starting)
8126 /* Remember the coordinates for when the window is opened. */
8127 gui_win_x = x;
8128 gui_win_y = y;
8130 # ifdef HAVE_TGETENT
8131 else
8132 # endif
8133 # else
8134 # ifdef MSWIN
8135 mch_set_winpos(x, y);
8136 # endif
8137 # endif
8138 # ifdef HAVE_TGETENT
8139 if (*T_CWP)
8140 term_set_winpos(x, y);
8141 # endif
8144 #endif
8147 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8149 static void
8150 ex_operators(eap)
8151 exarg_T *eap;
8153 oparg_T oa;
8155 clear_oparg(&oa);
8156 oa.regname = eap->regname;
8157 oa.start.lnum = eap->line1;
8158 oa.end.lnum = eap->line2;
8159 oa.line_count = eap->line2 - eap->line1 + 1;
8160 oa.motion_type = MLINE;
8161 #ifdef FEAT_VIRTUALEDIT
8162 virtual_op = FALSE;
8163 #endif
8164 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8166 setpcmark();
8167 curwin->w_cursor.lnum = eap->line1;
8168 beginline(BL_SOL | BL_FIX);
8171 switch (eap->cmdidx)
8173 case CMD_delete:
8174 oa.op_type = OP_DELETE;
8175 op_delete(&oa);
8176 break;
8178 case CMD_yank:
8179 oa.op_type = OP_YANK;
8180 (void)op_yank(&oa, FALSE, TRUE);
8181 break;
8183 default: /* CMD_rshift or CMD_lshift */
8184 if ((eap->cmdidx == CMD_rshift)
8185 #ifdef FEAT_RIGHTLEFT
8186 ^ curwin->w_p_rl
8187 #endif
8189 oa.op_type = OP_RSHIFT;
8190 else
8191 oa.op_type = OP_LSHIFT;
8192 op_shift(&oa, FALSE, eap->amount);
8193 break;
8195 #ifdef FEAT_VIRTUALEDIT
8196 virtual_op = MAYBE;
8197 #endif
8198 ex_may_print(eap);
8202 * ":put".
8204 static void
8205 ex_put(eap)
8206 exarg_T *eap;
8208 /* ":0put" works like ":1put!". */
8209 if (eap->line2 == 0)
8211 eap->line2 = 1;
8212 eap->forceit = TRUE;
8214 curwin->w_cursor.lnum = eap->line2;
8215 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8216 PUT_LINE|PUT_CURSLINE);
8220 * Handle ":copy" and ":move".
8222 static void
8223 ex_copymove(eap)
8224 exarg_T *eap;
8226 long n;
8228 n = get_address(&eap->arg, FALSE, FALSE);
8229 if (eap->arg == NULL) /* error detected */
8231 eap->nextcmd = NULL;
8232 return;
8234 get_flags(eap);
8237 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8239 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8241 EMSG(_(e_invaddr));
8242 return;
8245 if (eap->cmdidx == CMD_move)
8247 if (do_move(eap->line1, eap->line2, n) == FAIL)
8248 return;
8250 else
8251 ex_copy(eap->line1, eap->line2, n);
8252 u_clearline();
8253 beginline(BL_SOL | BL_FIX);
8254 ex_may_print(eap);
8258 * Print the current line if flags were given to the Ex command.
8260 static void
8261 ex_may_print(eap)
8262 exarg_T *eap;
8264 if (eap->flags != 0)
8266 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8267 (eap->flags & EXFLAG_LIST));
8268 ex_no_reprint = TRUE;
8273 * ":smagic" and ":snomagic".
8275 static void
8276 ex_submagic(eap)
8277 exarg_T *eap;
8279 int magic_save = p_magic;
8281 p_magic = (eap->cmdidx == CMD_smagic);
8282 do_sub(eap);
8283 p_magic = magic_save;
8287 * ":join".
8289 static void
8290 ex_join(eap)
8291 exarg_T *eap;
8293 curwin->w_cursor.lnum = eap->line1;
8294 if (eap->line1 == eap->line2)
8296 if (eap->addr_count >= 2) /* :2,2join does nothing */
8297 return;
8298 if (eap->line2 == curbuf->b_ml.ml_line_count)
8300 beep_flush();
8301 return;
8303 ++eap->line2;
8305 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8306 beginline(BL_WHITE | BL_FIX);
8307 ex_may_print(eap);
8311 * ":[addr]@r" or ":[addr]*r": execute register
8313 static void
8314 ex_at(eap)
8315 exarg_T *eap;
8317 int c;
8319 curwin->w_cursor.lnum = eap->line2;
8321 #ifdef USE_ON_FLY_SCROLL
8322 dont_scroll = TRUE; /* disallow scrolling here */
8323 #endif
8325 /* get the register name. No name means to use the previous one */
8326 c = *eap->arg;
8327 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8328 c = '@';
8329 /* Put the register in the typeahead buffer with the "silent" flag. */
8330 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8331 == FAIL)
8333 beep_flush();
8335 else
8337 int save_efr = exec_from_reg;
8339 exec_from_reg = TRUE;
8342 * Execute from the typeahead buffer.
8343 * Originally this didn't check for the typeahead buffer to be empty,
8344 * thus could read more Ex commands from stdin. It's not clear why,
8345 * it is certainly unexpected.
8347 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8348 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8350 exec_from_reg = save_efr;
8355 * ":!".
8357 static void
8358 ex_bang(eap)
8359 exarg_T *eap;
8361 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8365 * ":undo".
8367 /*ARGSUSED*/
8368 static void
8369 ex_undo(eap)
8370 exarg_T *eap;
8372 if (eap->addr_count == 1) /* :undo 123 */
8373 undo_time(eap->line2, FALSE, TRUE);
8374 else
8375 u_undo(1);
8379 * ":redo".
8381 /*ARGSUSED*/
8382 static void
8383 ex_redo(eap)
8384 exarg_T *eap;
8386 u_redo(1);
8390 * ":earlier" and ":later".
8392 /*ARGSUSED*/
8393 static void
8394 ex_later(eap)
8395 exarg_T *eap;
8397 long count = 0;
8398 int sec = FALSE;
8399 char_u *p = eap->arg;
8401 if (*p == NUL)
8402 count = 1;
8403 else if (isdigit(*p))
8405 count = getdigits(&p);
8406 switch (*p)
8408 case 's': ++p; sec = TRUE; break;
8409 case 'm': ++p; sec = TRUE; count *= 60; break;
8410 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8414 if (*p != NUL)
8415 EMSG2(_(e_invarg2), eap->arg);
8416 else
8417 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
8421 * ":redir": start/stop redirection.
8423 static void
8424 ex_redir(eap)
8425 exarg_T *eap;
8427 char *mode;
8428 char_u *fname;
8429 char_u *arg = eap->arg;
8431 if (STRICMP(eap->arg, "END") == 0)
8432 close_redir();
8433 else
8435 if (*arg == '>')
8437 ++arg;
8438 if (*arg == '>')
8440 ++arg;
8441 mode = "a";
8443 else
8444 mode = "w";
8445 arg = skipwhite(arg);
8447 close_redir();
8449 /* Expand environment variables and "~/". */
8450 fname = expand_env_save(arg);
8451 if (fname == NULL)
8452 return;
8453 #ifdef FEAT_BROWSE
8454 if (cmdmod.browse)
8456 char_u *browseFile;
8458 browseFile = do_browse(BROWSE_SAVE,
8459 (char_u *)_("Save Redirection"),
8460 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
8461 if (browseFile == NULL)
8462 return; /* operation cancelled */
8463 vim_free(fname);
8464 fname = browseFile;
8465 eap->forceit = TRUE; /* since dialog already asked */
8467 #endif
8469 redir_fd = open_exfile(fname, eap->forceit, mode);
8470 vim_free(fname);
8472 #ifdef FEAT_EVAL
8473 else if (*arg == '@')
8475 /* redirect to a register a-z (resp. A-Z for appending) */
8476 close_redir();
8477 ++arg;
8478 if (ASCII_ISALPHA(*arg)
8479 # ifdef FEAT_CLIPBOARD
8480 || *arg == '*'
8481 || *arg == '+'
8482 # endif
8483 || *arg == '"')
8485 redir_reg = *arg++;
8486 if (*arg == '>' && arg[1] == '>') /* append */
8487 arg += 2;
8488 else
8490 /* Can use both "@a" and "@a>". */
8491 if (*arg == '>')
8492 arg++;
8493 /* Make register empty when not using @A-@Z and the
8494 * command is valid. */
8495 if (*arg == NUL && !isupper(redir_reg))
8496 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
8499 if (*arg != NUL)
8501 redir_reg = 0;
8502 EMSG2(_(e_invarg2), eap->arg);
8505 else if (*arg == '=' && arg[1] == '>')
8507 int append;
8509 /* redirect to a variable */
8510 close_redir();
8511 arg += 2;
8513 if (*arg == '>')
8515 ++arg;
8516 append = TRUE;
8518 else
8519 append = FALSE;
8521 if (var_redir_start(skipwhite(arg), append) == OK)
8522 redir_vname = 1;
8524 #endif
8526 /* TODO: redirect to a buffer */
8528 else
8529 EMSG2(_(e_invarg2), eap->arg);
8532 /* Make sure redirection is not off. Can happen for cmdline completion
8533 * that indirectly invokes a command to catch its output. */
8534 if (redir_fd != NULL
8535 #ifdef FEAT_EVAL
8536 || redir_reg || redir_vname
8537 #endif
8539 redir_off = FALSE;
8543 * ":redraw": force redraw
8545 static void
8546 ex_redraw(eap)
8547 exarg_T *eap;
8549 int r = RedrawingDisabled;
8550 int p = p_lz;
8552 RedrawingDisabled = 0;
8553 p_lz = FALSE;
8554 update_topline();
8555 update_screen(eap->forceit ? CLEAR :
8556 #ifdef FEAT_VISUAL
8557 VIsual_active ? INVERTED :
8558 #endif
8560 #ifdef FEAT_TITLE
8561 if (need_maketitle)
8562 maketitle();
8563 #endif
8564 RedrawingDisabled = r;
8565 p_lz = p;
8567 /* Reset msg_didout, so that a message that's there is overwritten. */
8568 msg_didout = FALSE;
8569 msg_col = 0;
8571 out_flush();
8575 * ":redrawstatus": force redraw of status line(s)
8577 /*ARGSUSED*/
8578 static void
8579 ex_redrawstatus(eap)
8580 exarg_T *eap;
8582 #if defined(FEAT_WINDOWS)
8583 int r = RedrawingDisabled;
8584 int p = p_lz;
8586 RedrawingDisabled = 0;
8587 p_lz = FALSE;
8588 if (eap->forceit)
8589 status_redraw_all();
8590 else
8591 status_redraw_curbuf();
8592 update_screen(
8593 # ifdef FEAT_VISUAL
8594 VIsual_active ? INVERTED :
8595 # endif
8597 RedrawingDisabled = r;
8598 p_lz = p;
8599 out_flush();
8600 #endif
8603 static void
8604 close_redir()
8606 if (redir_fd != NULL)
8608 fclose(redir_fd);
8609 redir_fd = NULL;
8611 #ifdef FEAT_EVAL
8612 redir_reg = 0;
8613 if (redir_vname)
8615 var_redir_stop();
8616 redir_vname = 0;
8618 #endif
8621 #if defined(FEAT_SESSION) && defined(USE_CRNL)
8622 # define MKSESSION_NL
8623 static int mksession_nl = FALSE; /* use NL only in put_eol() */
8624 #endif
8627 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8629 static void
8630 ex_mkrc(eap)
8631 exarg_T *eap;
8633 FILE *fd;
8634 int failed = FALSE;
8635 char_u *fname;
8636 #ifdef FEAT_BROWSE
8637 char_u *browseFile = NULL;
8638 #endif
8639 #ifdef FEAT_SESSION
8640 int view_session = FALSE;
8641 int using_vdir = FALSE; /* using 'viewdir'? */
8642 char_u *viewFile = NULL;
8643 unsigned *flagp;
8644 #endif
8646 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8648 #ifdef FEAT_SESSION
8649 view_session = TRUE;
8650 #else
8651 ex_ni(eap);
8652 return;
8653 #endif
8656 #ifdef FEAT_SESSION
8657 did_lcd = FALSE;
8659 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8660 if (eap->cmdidx == CMD_mkview
8661 && (*eap->arg == NUL
8662 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8664 eap->forceit = TRUE;
8665 fname = get_view_file(*eap->arg);
8666 if (fname == NULL)
8667 return;
8668 viewFile = fname;
8669 using_vdir = TRUE;
8671 else
8672 #endif
8673 if (*eap->arg != NUL)
8674 fname = eap->arg;
8675 else if (eap->cmdidx == CMD_mkvimrc)
8676 fname = (char_u *)VIMRC_FILE;
8677 #ifdef FEAT_SESSION
8678 else if (eap->cmdidx == CMD_mksession)
8679 fname = (char_u *)SESSION_FILE;
8680 #endif
8681 else
8682 fname = (char_u *)EXRC_FILE;
8684 #ifdef FEAT_BROWSE
8685 if (cmdmod.browse)
8687 browseFile = do_browse(BROWSE_SAVE,
8688 # ifdef FEAT_SESSION
8689 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8690 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8691 # endif
8692 (char_u *)_("Save Setup"),
8693 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8694 if (browseFile == NULL)
8695 goto theend;
8696 fname = browseFile;
8697 eap->forceit = TRUE; /* since dialog already asked */
8699 #endif
8701 #if defined(FEAT_SESSION) && defined(vim_mkdir)
8702 /* When using 'viewdir' may have to create the directory. */
8703 if (using_vdir && !mch_isdir(p_vdir))
8704 vim_mkdir_emsg(p_vdir, 0755);
8705 #endif
8707 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8708 if (fd != NULL)
8710 #ifdef FEAT_SESSION
8711 if (eap->cmdidx == CMD_mkview)
8712 flagp = &vop_flags;
8713 else
8714 flagp = &ssop_flags;
8715 #endif
8717 #ifdef MKSESSION_NL
8718 /* "unix" in 'sessionoptions': use NL line separator */
8719 if (view_session && (*flagp & SSOP_UNIX))
8720 mksession_nl = TRUE;
8721 #endif
8723 /* Write the version command for :mkvimrc */
8724 if (eap->cmdidx == CMD_mkvimrc)
8725 (void)put_line(fd, "version 6.0");
8727 #ifdef FEAT_SESSION
8728 if (eap->cmdidx == CMD_mksession)
8730 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8731 failed = TRUE;
8734 if (eap->cmdidx != CMD_mkview)
8735 #endif
8737 /* Write setting 'compatible' first, because it has side effects.
8738 * For that same reason only do it when needed. */
8739 if (p_cp)
8740 (void)put_line(fd, "if !&cp | set cp | endif");
8741 else
8742 (void)put_line(fd, "if &cp | set nocp | endif");
8745 #ifdef FEAT_SESSION
8746 if (!view_session
8747 || (eap->cmdidx == CMD_mksession
8748 && (*flagp & SSOP_OPTIONS)))
8749 #endif
8750 failed |= (makemap(fd, NULL) == FAIL
8751 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8753 #ifdef FEAT_SESSION
8754 if (!failed && view_session)
8756 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8757 failed = TRUE;
8758 if (eap->cmdidx == CMD_mksession)
8760 char_u dirnow[MAXPATHL]; /* current directory */
8763 * Change to session file's dir.
8765 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8766 || mch_chdir((char *)dirnow) != 0)
8767 *dirnow = NUL;
8768 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8770 if (vim_chdirfile(fname) == OK)
8771 shorten_fnames(TRUE);
8773 else if (*dirnow != NUL
8774 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8776 if (mch_chdir((char *)globaldir) == OK)
8777 shorten_fnames(TRUE);
8780 failed |= (makeopens(fd, dirnow) == FAIL);
8782 /* restore original dir */
8783 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8784 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8786 if (mch_chdir((char *)dirnow) != 0)
8787 EMSG(_(e_prev_dir));
8788 shorten_fnames(TRUE);
8791 else
8793 failed |= (put_view(fd, curwin, !using_vdir, flagp,
8794 -1) == FAIL);
8796 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8797 == FAIL)
8798 failed = TRUE;
8799 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8800 failed = TRUE;
8801 if (eap->cmdidx == CMD_mksession)
8803 if (put_line(fd, "unlet SessionLoad") == FAIL)
8804 failed = TRUE;
8807 #endif
8808 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8809 failed = TRUE;
8811 failed |= fclose(fd);
8813 if (failed)
8814 EMSG(_(e_write));
8815 #if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8816 else if (eap->cmdidx == CMD_mksession)
8818 /* successful session write - set this_session var */
8819 char_u tbuf[MAXPATHL];
8821 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8822 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8824 #endif
8825 #ifdef MKSESSION_NL
8826 mksession_nl = FALSE;
8827 #endif
8830 #ifdef FEAT_BROWSE
8831 theend:
8832 vim_free(browseFile);
8833 #endif
8834 #ifdef FEAT_SESSION
8835 vim_free(viewFile);
8836 #endif
8839 #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8840 || defined(PROTO)
8841 /*ARGSUSED*/
8843 vim_mkdir_emsg(name, prot)
8844 char_u *name;
8845 int prot;
8847 if (vim_mkdir(name, prot) != 0)
8849 EMSG2(_("E739: Cannot create directory: %s"), name);
8850 return FAIL;
8852 return OK;
8854 #endif
8857 * Open a file for writing for an Ex command, with some checks.
8858 * Return file descriptor, or NULL on failure.
8860 FILE *
8861 open_exfile(fname, forceit, mode)
8862 char_u *fname;
8863 int forceit;
8864 char *mode; /* "w" for create new file or "a" for append */
8866 FILE *fd;
8868 #ifdef UNIX
8869 /* with Unix it is possible to open a directory */
8870 if (mch_isdir(fname))
8872 EMSG2(_(e_isadir2), fname);
8873 return NULL;
8875 #endif
8876 if (!forceit && *mode != 'a' && vim_fexists(fname))
8878 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8879 return NULL;
8882 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8883 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8885 return fd;
8889 * ":mark" and ":k".
8891 static void
8892 ex_mark(eap)
8893 exarg_T *eap;
8895 pos_T pos;
8897 if (*eap->arg == NUL) /* No argument? */
8898 EMSG(_(e_argreq));
8899 else if (eap->arg[1] != NUL) /* more than one character? */
8900 EMSG(_(e_trailing));
8901 else
8903 pos = curwin->w_cursor; /* save curwin->w_cursor */
8904 curwin->w_cursor.lnum = eap->line2;
8905 beginline(BL_WHITE | BL_FIX);
8906 if (setmark(*eap->arg) == FAIL) /* set mark */
8907 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8908 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8913 * Update w_topline, w_leftcol and the cursor position.
8915 void
8916 update_topline_cursor()
8918 check_cursor(); /* put cursor on valid line */
8919 update_topline();
8920 if (!curwin->w_p_wrap)
8921 validate_cursor();
8922 update_curswant();
8925 #ifdef FEAT_EX_EXTRA
8927 * ":normal[!] {commands}": Execute normal mode commands.
8929 static void
8930 ex_normal(eap)
8931 exarg_T *eap;
8933 int save_msg_scroll = msg_scroll;
8934 int save_restart_edit = restart_edit;
8935 int save_msg_didout = msg_didout;
8936 int save_State = State;
8937 tasave_T tabuf;
8938 int save_insertmode = p_im;
8939 int save_finish_op = finish_op;
8940 int save_opcount = opcount;
8941 #ifdef FEAT_MBYTE
8942 char_u *arg = NULL;
8943 int l;
8944 char_u *p;
8945 #endif
8947 if (ex_normal_lock > 0)
8949 EMSG(_(e_secure));
8950 return;
8952 if (ex_normal_busy >= p_mmd)
8954 EMSG(_("E192: Recursive use of :normal too deep"));
8955 return;
8957 ++ex_normal_busy;
8959 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8960 restart_edit = 0; /* don't go to Insert mode */
8961 p_im = FALSE; /* don't use 'insertmode' */
8963 #ifdef FEAT_MBYTE
8965 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8966 * this for the K_SPECIAL leading byte, otherwise special keys will not
8967 * work.
8969 if (has_mbyte)
8971 int len = 0;
8973 /* Count the number of characters to be escaped. */
8974 for (p = eap->arg; *p != NUL; ++p)
8976 # ifdef FEAT_GUI
8977 if (*p == CSI) /* leadbyte CSI */
8978 len += 2;
8979 # endif
8980 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
8981 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8982 # ifdef FEAT_GUI
8983 || *p == CSI
8984 # endif
8986 len += 2;
8988 if (len > 0)
8990 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8991 if (arg != NULL)
8993 len = 0;
8994 for (p = eap->arg; *p != NUL; ++p)
8996 arg[len++] = *p;
8997 # ifdef FEAT_GUI
8998 if (*p == CSI)
9000 arg[len++] = KS_EXTRA;
9001 arg[len++] = (int)KE_CSI;
9003 # endif
9004 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
9006 arg[len++] = *++p;
9007 if (*p == K_SPECIAL)
9009 arg[len++] = KS_SPECIAL;
9010 arg[len++] = KE_FILLER;
9012 # ifdef FEAT_GUI
9013 else if (*p == CSI)
9015 arg[len++] = KS_EXTRA;
9016 arg[len++] = (int)KE_CSI;
9018 # endif
9020 arg[len] = NUL;
9025 #endif
9028 * Save the current typeahead. This is required to allow using ":normal"
9029 * from an event handler and makes sure we don't hang when the argument
9030 * ends with half a command.
9032 save_typeahead(&tabuf);
9033 if (tabuf.typebuf_valid)
9036 * Repeat the :normal command for each line in the range. When no
9037 * range given, execute it just once, without positioning the cursor
9038 * first.
9042 if (eap->addr_count != 0)
9044 curwin->w_cursor.lnum = eap->line1++;
9045 curwin->w_cursor.col = 0;
9048 exec_normal_cmd(
9049 #ifdef FEAT_MBYTE
9050 arg != NULL ? arg :
9051 #endif
9052 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
9054 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9057 /* Might not return to the main loop when in an event handler. */
9058 update_topline_cursor();
9060 /* Restore the previous typeahead. */
9061 restore_typeahead(&tabuf);
9063 --ex_normal_busy;
9064 msg_scroll = save_msg_scroll;
9065 restart_edit = save_restart_edit;
9066 p_im = save_insertmode;
9067 finish_op = save_finish_op;
9068 opcount = save_opcount;
9069 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9071 /* Restore the state (needed when called from a function executed for
9072 * 'indentexpr'). */
9073 State = save_State;
9074 #ifdef FEAT_MBYTE
9075 vim_free(arg);
9076 #endif
9080 * ":startinsert", ":startreplace" and ":startgreplace"
9082 static void
9083 ex_startinsert(eap)
9084 exarg_T *eap;
9086 if (eap->forceit)
9088 coladvance((colnr_T)MAXCOL);
9089 curwin->w_curswant = MAXCOL;
9090 curwin->w_set_curswant = FALSE;
9093 /* Ignore the command when already in Insert mode. Inserting an
9094 * expression register that invokes a function can do this. */
9095 if (State & INSERT)
9096 return;
9098 if (eap->cmdidx == CMD_startinsert)
9099 restart_edit = 'a';
9100 else if (eap->cmdidx == CMD_startreplace)
9101 restart_edit = 'R';
9102 else
9103 restart_edit = 'V';
9105 if (!eap->forceit)
9107 if (eap->cmdidx == CMD_startinsert)
9108 restart_edit = 'i';
9109 curwin->w_curswant = 0; /* avoid MAXCOL */
9114 * ":stopinsert"
9116 /*ARGSUSED*/
9117 static void
9118 ex_stopinsert(eap)
9119 exarg_T *eap;
9121 restart_edit = 0;
9122 stop_insert_mode = TRUE;
9124 #endif
9126 #if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9128 * Execute normal mode command "cmd".
9129 * "remap" can be REMAP_NONE or REMAP_YES.
9131 void
9132 exec_normal_cmd(cmd, remap, silent)
9133 char_u *cmd;
9134 int remap;
9135 int silent;
9137 oparg_T oa;
9140 * Stuff the argument into the typeahead buffer.
9141 * Execute normal_cmd() until there is no typeahead left.
9143 clear_oparg(&oa);
9144 finish_op = FALSE;
9145 ins_typebuf(cmd, remap, 0, TRUE, silent);
9146 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9147 && !got_int)
9149 update_topline_cursor();
9150 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9153 #endif
9155 #ifdef FEAT_FIND_ID
9156 static void
9157 ex_checkpath(eap)
9158 exarg_T *eap;
9160 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9161 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9162 (linenr_T)1, (linenr_T)MAXLNUM);
9165 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9167 * ":psearch"
9169 static void
9170 ex_psearch(eap)
9171 exarg_T *eap;
9173 g_do_tagpreview = p_pvh;
9174 ex_findpat(eap);
9175 g_do_tagpreview = 0;
9177 #endif
9179 static void
9180 ex_findpat(eap)
9181 exarg_T *eap;
9183 int whole = TRUE;
9184 long n;
9185 char_u *p;
9186 int action;
9188 switch (cmdnames[eap->cmdidx].cmd_name[2])
9190 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9191 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9192 action = ACTION_GOTO;
9193 else
9194 action = ACTION_SHOW;
9195 break;
9196 case 'i': /* ":ilist" and ":dlist" */
9197 action = ACTION_SHOW_ALL;
9198 break;
9199 case 'u': /* ":ijump" and ":djump" */
9200 action = ACTION_GOTO;
9201 break;
9202 default: /* ":isplit" and ":dsplit" */
9203 action = ACTION_SPLIT;
9204 break;
9207 n = 1;
9208 if (vim_isdigit(*eap->arg)) /* get count */
9210 n = getdigits(&eap->arg);
9211 eap->arg = skipwhite(eap->arg);
9213 if (*eap->arg == '/') /* Match regexp, not just whole words */
9215 whole = FALSE;
9216 ++eap->arg;
9217 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9218 if (*p)
9220 *p++ = NUL;
9221 p = skipwhite(p);
9223 /* Check for trailing illegal characters */
9224 if (!ends_excmd(*p))
9225 eap->errmsg = e_trailing;
9226 else
9227 eap->nextcmd = check_nextcmd(p);
9230 if (!eap->skip)
9231 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9232 whole, !eap->forceit,
9233 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9234 n, action, eap->line1, eap->line2);
9236 #endif
9238 #ifdef FEAT_WINDOWS
9240 # ifdef FEAT_QUICKFIX
9242 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9244 static void
9245 ex_ptag(eap)
9246 exarg_T *eap;
9248 g_do_tagpreview = p_pvh;
9249 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9253 * ":pedit"
9255 static void
9256 ex_pedit(eap)
9257 exarg_T *eap;
9259 win_T *curwin_save = curwin;
9261 g_do_tagpreview = p_pvh;
9262 prepare_tagpreview(TRUE);
9263 keep_help_flag = curwin_save->w_buffer->b_help;
9264 do_exedit(eap, NULL);
9265 keep_help_flag = FALSE;
9266 if (curwin != curwin_save && win_valid(curwin_save))
9268 /* Return cursor to where we were */
9269 validate_cursor();
9270 redraw_later(VALID);
9271 win_enter(curwin_save, TRUE);
9273 g_do_tagpreview = 0;
9275 # endif
9278 * ":stag", ":stselect" and ":stjump".
9280 static void
9281 ex_stag(eap)
9282 exarg_T *eap;
9284 postponed_split = -1;
9285 postponed_split_flags = cmdmod.split;
9286 postponed_split_tab = cmdmod.tab;
9287 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9288 postponed_split_flags = 0;
9289 postponed_split_tab = 0;
9291 #endif
9294 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9296 static void
9297 ex_tag(eap)
9298 exarg_T *eap;
9300 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9303 static void
9304 ex_tag_cmd(eap, name)
9305 exarg_T *eap;
9306 char_u *name;
9308 int cmd;
9310 switch (name[1])
9312 case 'j': cmd = DT_JUMP; /* ":tjump" */
9313 break;
9314 case 's': cmd = DT_SELECT; /* ":tselect" */
9315 break;
9316 case 'p': cmd = DT_PREV; /* ":tprevious" */
9317 break;
9318 case 'N': cmd = DT_PREV; /* ":tNext" */
9319 break;
9320 case 'n': cmd = DT_NEXT; /* ":tnext" */
9321 break;
9322 case 'o': cmd = DT_POP; /* ":pop" */
9323 break;
9324 case 'f': /* ":tfirst" */
9325 case 'r': cmd = DT_FIRST; /* ":trewind" */
9326 break;
9327 case 'l': cmd = DT_LAST; /* ":tlast" */
9328 break;
9329 default: /* ":tag" */
9330 #ifdef FEAT_CSCOPE
9331 if (p_cst && *eap->arg != NUL)
9333 do_cstag(eap);
9334 return;
9336 #endif
9337 cmd = DT_TAG;
9338 break;
9341 if (name[0] == 'l')
9343 #ifndef FEAT_QUICKFIX
9344 ex_ni(eap);
9345 return;
9346 #else
9347 cmd = DT_LTAG;
9348 #endif
9351 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9352 eap->forceit, TRUE);
9356 * Check "str" for starting with a special cmdline variable.
9357 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9358 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9361 find_cmdline_var(src, usedlen)
9362 char_u *src;
9363 int *usedlen;
9365 int len;
9366 int i;
9367 static char *(spec_str[]) = {
9368 "%",
9369 #define SPEC_PERC 0
9370 "#",
9371 #define SPEC_HASH 1
9372 "<cword>", /* cursor word */
9373 #define SPEC_CWORD 2
9374 "<cWORD>", /* cursor WORD */
9375 #define SPEC_CCWORD 3
9376 "<cfile>", /* cursor path name */
9377 #define SPEC_CFILE 4
9378 "<sfile>", /* ":so" file name */
9379 #define SPEC_SFILE 5
9380 #ifdef FEAT_AUTOCMD
9381 "<afile>", /* autocommand file name */
9382 # define SPEC_AFILE 6
9383 "<abuf>", /* autocommand buffer number */
9384 # define SPEC_ABUF 7
9385 "<amatch>", /* autocommand match name */
9386 # define SPEC_AMATCH 8
9387 #endif
9388 #ifdef FEAT_CLIENTSERVER
9389 "<client>"
9390 # define SPEC_CLIENT 9
9391 #endif
9393 #define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9395 for (i = 0; i < SPEC_COUNT; ++i)
9397 len = (int)STRLEN(spec_str[i]);
9398 if (STRNCMP(src, spec_str[i], len) == 0)
9400 *usedlen = len;
9401 return i;
9404 return -1;
9408 * Evaluate cmdline variables.
9410 * change '%' to curbuf->b_ffname
9411 * '#' to curwin->w_altfile
9412 * '<cword>' to word under the cursor
9413 * '<cWORD>' to WORD under the cursor
9414 * '<cfile>' to path name under the cursor
9415 * '<sfile>' to sourced file name
9416 * '<afile>' to file name for autocommand
9417 * '<abuf>' to buffer number for autocommand
9418 * '<amatch>' to matching name for autocommand
9420 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9421 * "" for error without a message) and NULL is returned.
9422 * Returns an allocated string if a valid match was found.
9423 * Returns NULL if no match was found. "usedlen" then still contains the
9424 * number of characters to skip.
9426 char_u *
9427 eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
9428 char_u *src; /* pointer into commandline */
9429 char_u *srcstart; /* beginning of valid memory for src */
9430 int *usedlen; /* characters after src that are used */
9431 linenr_T *lnump; /* line number for :e command, or NULL */
9432 char_u **errormsg; /* pointer to error message */
9433 int *escaped; /* return value has escaped white space (can
9434 * be NULL) */
9436 int i;
9437 char_u *s;
9438 char_u *result;
9439 char_u *resultbuf = NULL;
9440 int resultlen;
9441 buf_T *buf;
9442 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9443 int spec_idx;
9444 #ifdef FEAT_MODIFY_FNAME
9445 int skip_mod = FALSE;
9446 #endif
9448 #if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9449 char_u strbuf[30];
9450 #endif
9452 *errormsg = NULL;
9453 if (escaped != NULL)
9454 *escaped = FALSE;
9457 * Check if there is something to do.
9459 spec_idx = find_cmdline_var(src, usedlen);
9460 if (spec_idx < 0) /* no match */
9462 *usedlen = 1;
9463 return NULL;
9467 * Skip when preceded with a backslash "\%" and "\#".
9468 * Note: In "\\%" the % is also not recognized!
9470 if (src > srcstart && src[-1] == '\\')
9472 *usedlen = 0;
9473 STRMOVE(src - 1, src); /* remove backslash */
9474 return NULL;
9478 * word or WORD under cursor
9480 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9482 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9483 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9484 if (resultlen == 0)
9486 *errormsg = (char_u *)"";
9487 return NULL;
9492 * '#': Alternate file name
9493 * '%': Current file name
9494 * File name under the cursor
9495 * File name for autocommand
9496 * and following modifiers
9498 else
9500 switch (spec_idx)
9502 case SPEC_PERC: /* '%': current file */
9503 if (curbuf->b_fname == NULL)
9505 result = (char_u *)"";
9506 valid = 0; /* Must have ":p:h" to be valid */
9508 else
9509 #ifdef RISCOS
9510 /* Always use the full path for RISC OS if possible. */
9511 result = curbuf->b_ffname;
9512 if (result == NULL)
9513 result = curbuf->b_fname;
9514 #else
9515 result = curbuf->b_fname;
9516 #endif
9517 break;
9519 case SPEC_HASH: /* '#' or "#99": alternate file */
9520 if (src[1] == '#') /* "##": the argument list */
9522 result = arg_all();
9523 resultbuf = result;
9524 *usedlen = 2;
9525 if (escaped != NULL)
9526 *escaped = TRUE;
9527 #ifdef FEAT_MODIFY_FNAME
9528 skip_mod = TRUE;
9529 #endif
9530 break;
9532 s = src + 1;
9533 if (*s == '<') /* "#<99" uses v:oldfiles */
9534 ++s;
9535 i = (int)getdigits(&s);
9536 *usedlen = (int)(s - src); /* length of what we expand */
9538 if (src[1] == '<')
9540 if (*usedlen < 2)
9542 /* Should we give an error message for #<text? */
9543 *usedlen = 1;
9544 return NULL;
9546 #ifdef FEAT_EVAL
9547 result = list_find_str(get_vim_var_list(VV_OLDFILES),
9548 (long)i);
9549 if (result == NULL)
9551 *errormsg = (char_u *)"";
9552 return NULL;
9554 #else
9555 *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
9556 return NULL;
9557 #endif
9559 else
9561 buf = buflist_findnr(i);
9562 if (buf == NULL)
9564 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9565 return NULL;
9567 if (lnump != NULL)
9568 *lnump = ECMD_LAST;
9569 if (buf->b_fname == NULL)
9571 result = (char_u *)"";
9572 valid = 0; /* Must have ":p:h" to be valid */
9574 else
9575 result = buf->b_fname;
9577 break;
9579 #ifdef FEAT_SEARCHPATH
9580 case SPEC_CFILE: /* file name under cursor */
9581 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
9582 if (result == NULL)
9584 *errormsg = (char_u *)"";
9585 return NULL;
9587 resultbuf = result; /* remember allocated string */
9588 break;
9589 #endif
9591 #ifdef FEAT_AUTOCMD
9592 case SPEC_AFILE: /* file name for autocommand */
9593 result = autocmd_fname;
9594 if (result != NULL && !autocmd_fname_full)
9596 /* Still need to turn the fname into a full path. It is
9597 * postponed to avoid a delay when <afile> is not used. */
9598 autocmd_fname_full = TRUE;
9599 result = FullName_save(autocmd_fname, FALSE);
9600 vim_free(autocmd_fname);
9601 autocmd_fname = result;
9603 if (result == NULL)
9605 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9606 return NULL;
9608 result = shorten_fname1(result);
9609 break;
9611 case SPEC_ABUF: /* buffer number for autocommand */
9612 if (autocmd_bufnr <= 0)
9614 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9615 return NULL;
9617 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9618 result = strbuf;
9619 break;
9621 case SPEC_AMATCH: /* match name for autocommand */
9622 result = autocmd_match;
9623 if (result == NULL)
9625 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9626 return NULL;
9628 break;
9630 #endif
9631 case SPEC_SFILE: /* file name for ":so" command */
9632 result = sourcing_name;
9633 if (result == NULL)
9635 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9636 return NULL;
9638 break;
9639 #if defined(FEAT_CLIENTSERVER)
9640 case SPEC_CLIENT: /* Source of last submitted input */
9641 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9642 (long_u)clientWindow);
9643 result = strbuf;
9644 break;
9645 #endif
9648 resultlen = (int)STRLEN(result); /* length of new string */
9649 if (src[*usedlen] == '<') /* remove the file name extension */
9651 ++*usedlen;
9652 #ifdef RISCOS
9653 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9654 #else
9655 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9656 #endif
9657 resultlen = (int)(s - result);
9659 #ifdef FEAT_MODIFY_FNAME
9660 else if (!skip_mod)
9662 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9663 &resultlen);
9664 if (result == NULL)
9666 *errormsg = (char_u *)"";
9667 return NULL;
9670 #endif
9673 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9675 if (valid != VALID_HEAD + VALID_PATH)
9676 /* xgettext:no-c-format */
9677 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9678 else
9679 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9680 result = NULL;
9682 else
9683 result = vim_strnsave(result, resultlen);
9684 vim_free(resultbuf);
9685 return result;
9689 * Concatenate all files in the argument list, separated by spaces, and return
9690 * it in one allocated string.
9691 * Spaces and backslashes in the file names are escaped with a backslash.
9692 * Returns NULL when out of memory.
9694 static char_u *
9695 arg_all()
9697 int len;
9698 int idx;
9699 char_u *retval = NULL;
9700 char_u *p;
9703 * Do this loop two times:
9704 * first time: compute the total length
9705 * second time: concatenate the names
9707 for (;;)
9709 len = 0;
9710 for (idx = 0; idx < ARGCOUNT; ++idx)
9712 p = alist_name(&ARGLIST[idx]);
9713 if (p != NULL)
9715 if (len > 0)
9717 /* insert a space in between names */
9718 if (retval != NULL)
9719 retval[len] = ' ';
9720 ++len;
9722 for ( ; *p != NUL; ++p)
9724 if (*p == ' ' || *p == '\\')
9726 /* insert a backslash */
9727 if (retval != NULL)
9728 retval[len] = '\\';
9729 ++len;
9731 if (retval != NULL)
9732 retval[len] = *p;
9733 ++len;
9738 /* second time: break here */
9739 if (retval != NULL)
9741 retval[len] = NUL;
9742 break;
9745 /* allocate memory */
9746 retval = alloc(len + 1);
9747 if (retval == NULL)
9748 break;
9751 return retval;
9754 #if defined(FEAT_AUTOCMD) || defined(PROTO)
9756 * Expand the <sfile> string in "arg".
9758 * Returns an allocated string, or NULL for any error.
9760 char_u *
9761 expand_sfile(arg)
9762 char_u *arg;
9764 char_u *errormsg;
9765 int len;
9766 char_u *result;
9767 char_u *newres;
9768 char_u *repl;
9769 int srclen;
9770 char_u *p;
9772 result = vim_strsave(arg);
9773 if (result == NULL)
9774 return NULL;
9776 for (p = result; *p; )
9778 if (STRNCMP(p, "<sfile>", 7) != 0)
9779 ++p;
9780 else
9782 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
9783 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
9784 if (errormsg != NULL)
9786 if (*errormsg)
9787 emsg(errormsg);
9788 vim_free(result);
9789 return NULL;
9791 if (repl == NULL) /* no match (cannot happen) */
9793 p += srclen;
9794 continue;
9796 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9797 newres = alloc(len);
9798 if (newres == NULL)
9800 vim_free(repl);
9801 vim_free(result);
9802 return NULL;
9804 mch_memmove(newres, result, (size_t)(p - result));
9805 STRCPY(newres + (p - result), repl);
9806 len = (int)STRLEN(newres);
9807 STRCAT(newres, p + srclen);
9808 vim_free(repl);
9809 vim_free(result);
9810 result = newres;
9811 p = newres + len; /* continue after the match */
9815 return result;
9817 #endif
9819 #ifdef FEAT_SESSION
9820 static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9821 win_T *tab_firstwin));
9822 static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9823 static frame_T *ses_skipframe __ARGS((frame_T *fr));
9824 static int ses_do_frame __ARGS((frame_T *fr));
9825 static int ses_do_win __ARGS((win_T *wp));
9826 static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9827 static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9828 static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9831 * Write openfile commands for the current buffers to an .exrc file.
9832 * Return FAIL on error, OK otherwise.
9834 static int
9835 makeopens(fd, dirnow)
9836 FILE *fd;
9837 char_u *dirnow; /* Current directory name */
9839 buf_T *buf;
9840 int only_save_windows = TRUE;
9841 int nr;
9842 int cnr = 1;
9843 int restore_size = TRUE;
9844 win_T *wp;
9845 char_u *sname;
9846 win_T *edited_win = NULL;
9847 int tabnr;
9848 win_T *tab_firstwin;
9849 frame_T *tab_topframe;
9850 int cur_arg_idx = 0;
9851 int next_arg_idx = 0;
9853 if (ssop_flags & SSOP_BUFFERS)
9854 only_save_windows = FALSE; /* Save ALL buffers */
9857 * Begin by setting the this_session variable, and then other
9858 * sessionable variables.
9860 #ifdef FEAT_EVAL
9861 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9862 return FAIL;
9863 if (ssop_flags & SSOP_GLOBALS)
9864 if (store_session_globals(fd) == FAIL)
9865 return FAIL;
9866 #endif
9869 * Close all windows but one.
9871 if (put_line(fd, "silent only") == FAIL)
9872 return FAIL;
9875 * Now a :cd command to the session directory or the current directory
9877 if (ssop_flags & SSOP_SESDIR)
9879 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9880 == FAIL)
9881 return FAIL;
9883 else if (ssop_flags & SSOP_CURDIR)
9885 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9886 if (sname == NULL
9887 || fputs("cd ", fd) < 0
9888 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9889 || put_eol(fd) == FAIL)
9891 vim_free(sname);
9892 return FAIL;
9894 vim_free(sname);
9898 * If there is an empty, unnamed buffer we will wipe it out later.
9899 * Remember the buffer number.
9901 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9902 return FAIL;
9903 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9904 return FAIL;
9905 if (put_line(fd, "endif") == FAIL)
9906 return FAIL;
9909 * Now save the current files, current buffer first.
9911 if (put_line(fd, "set shortmess=aoO") == FAIL)
9912 return FAIL;
9914 /* Now put the other buffers into the buffer list */
9915 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9917 if (!(only_save_windows && buf->b_nwindows == 0)
9918 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9919 && buf->b_fname != NULL
9920 && buf->b_p_bl)
9922 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9923 : buf->b_wininfo->wi_fpos.lnum) < 0
9924 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9925 return FAIL;
9929 /* the global argument list */
9930 if (ses_arglist(fd, "args", &global_alist.al_ga,
9931 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9932 return FAIL;
9934 if (ssop_flags & SSOP_RESIZE)
9936 /* Note: after the restore we still check it worked!*/
9937 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9938 || put_eol(fd) == FAIL)
9939 return FAIL;
9940 #ifdef FEAT_FULLSCREEN
9941 /* fullscreen needs to be set after lines and columns */
9942 if (p_fullscreen)
9944 if (fprintf(fd, "set fullscreen") < 0 || put_eol(fd) == FAIL)
9945 return FAIL;
9947 #endif
9950 #ifdef FEAT_GUI
9951 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9953 int x, y;
9955 if (gui_mch_get_winpos(&x, &y) == OK)
9957 /* Note: after the restore we still check it worked!*/
9958 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9959 return FAIL;
9962 #endif
9965 * May repeat putting Windows for each tab, when "tabpages" is in
9966 * 'sessionoptions'.
9967 * Don't use goto_tabpage(), it may change directory and trigger
9968 * autocommands.
9970 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
9971 tab_topframe = topframe;
9972 for (tabnr = 1; ; ++tabnr)
9974 int need_tabnew = FALSE;
9976 if ((ssop_flags & SSOP_TABPAGES))
9978 tabpage_T *tp = find_tabpage(tabnr);
9980 if (tp == NULL)
9981 break; /* done all tab pages */
9982 if (tp == curtab)
9984 tab_firstwin = firstwin;
9985 tab_topframe = topframe;
9987 else
9989 tab_firstwin = tp->tp_firstwin;
9990 tab_topframe = tp->tp_topframe;
9992 if (tabnr > 1)
9993 need_tabnew = TRUE;
9997 * Before creating the window layout, try loading one file. If this
9998 * is aborted we don't end up with a number of useless windows.
9999 * This may have side effects! (e.g., compressed or network file).
10001 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10003 if (ses_do_win(wp)
10004 && wp->w_buffer->b_ffname != NULL
10005 && !wp->w_buffer->b_help
10006 #ifdef FEAT_QUICKFIX
10007 && !bt_nofile(wp->w_buffer)
10008 #endif
10011 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
10012 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
10013 return FAIL;
10014 need_tabnew = FALSE;
10015 if (!wp->w_arg_idx_invalid)
10016 edited_win = wp;
10017 break;
10021 /* If no file got edited create an empty tab page. */
10022 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
10023 return FAIL;
10026 * Save current window layout.
10028 if (put_line(fd, "set splitbelow splitright") == FAIL)
10029 return FAIL;
10030 if (ses_win_rec(fd, tab_topframe) == FAIL)
10031 return FAIL;
10032 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
10033 return FAIL;
10034 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
10035 return FAIL;
10038 * Check if window sizes can be restored (no windows omitted).
10039 * Remember the window number of the current window after restoring.
10041 nr = 0;
10042 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
10044 if (ses_do_win(wp))
10045 ++nr;
10046 else
10047 restore_size = FALSE;
10048 if (curwin == wp)
10049 cnr = nr;
10052 /* Go to the first window. */
10053 if (put_line(fd, "wincmd t") == FAIL)
10054 return FAIL;
10057 * If more than one window, see if sizes can be restored.
10058 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
10059 * resized when moving between windows.
10060 * Do this before restoring the view, so that the topline and the
10061 * cursor can be set. This is done again below.
10063 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
10064 return FAIL;
10065 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
10066 return FAIL;
10069 * Restore the view of the window (options, file, cursor, etc.).
10071 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10073 if (!ses_do_win(wp))
10074 continue;
10075 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
10076 cur_arg_idx) == FAIL)
10077 return FAIL;
10078 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
10079 return FAIL;
10080 next_arg_idx = wp->w_arg_idx;
10083 /* The argument index in the first tab page is zero, need to set it in
10084 * each window. For further tab pages it's the window where we do
10085 * "tabedit". */
10086 cur_arg_idx = next_arg_idx;
10089 * Restore cursor to the current window if it's not the first one.
10091 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
10092 || put_eol(fd) == FAIL))
10093 return FAIL;
10096 * Restore window sizes again after jumping around in windows, because
10097 * the current window has a minimum size while others may not.
10099 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
10100 return FAIL;
10102 /* Don't continue in another tab page when doing only the current one
10103 * or when at the last tab page. */
10104 if (!(ssop_flags & SSOP_TABPAGES))
10105 break;
10108 if (ssop_flags & SSOP_TABPAGES)
10110 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
10111 || put_eol(fd) == FAIL)
10112 return FAIL;
10116 * Wipe out an empty unnamed buffer we started in.
10118 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
10119 return FAIL;
10120 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
10121 return FAIL;
10122 if (put_line(fd, "endif") == FAIL)
10123 return FAIL;
10124 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
10125 return FAIL;
10127 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10128 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10129 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10130 return FAIL;
10133 * Lastly, execute the x.vim file if it exists.
10135 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10136 || put_line(fd, "if file_readable(s:sx)") == FAIL
10137 || put_line(fd, " exe \"source \" . fnameescape(s:sx)") == FAIL
10138 || put_line(fd, "endif") == FAIL)
10139 return FAIL;
10141 return OK;
10144 static int
10145 ses_winsizes(fd, restore_size, tab_firstwin)
10146 FILE *fd;
10147 int restore_size;
10148 win_T *tab_firstwin;
10150 int n = 0;
10151 win_T *wp;
10153 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10155 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
10157 if (!ses_do_win(wp))
10158 continue;
10159 ++n;
10161 /* restore height when not full height */
10162 if (wp->w_height + wp->w_status_height < topframe->fr_height
10163 && (fprintf(fd,
10164 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10165 n, (long)wp->w_height, Rows / 2, Rows) < 0
10166 || put_eol(fd) == FAIL))
10167 return FAIL;
10169 /* restore width when not full width */
10170 if (wp->w_width < Columns && (fprintf(fd,
10171 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10172 n, (long)wp->w_width, Columns / 2, Columns) < 0
10173 || put_eol(fd) == FAIL))
10174 return FAIL;
10177 else
10179 /* Just equalise window sizes */
10180 if (put_line(fd, "wincmd =") == FAIL)
10181 return FAIL;
10183 return OK;
10187 * Write commands to "fd" to recursively create windows for frame "fr",
10188 * horizontally and vertically split.
10189 * After the commands the last window in the frame is the current window.
10190 * Returns FAIL when writing the commands to "fd" fails.
10192 static int
10193 ses_win_rec(fd, fr)
10194 FILE *fd;
10195 frame_T *fr;
10197 frame_T *frc;
10198 int count = 0;
10200 if (fr->fr_layout != FR_LEAF)
10202 /* Find first frame that's not skipped and then create a window for
10203 * each following one (first frame is already there). */
10204 frc = ses_skipframe(fr->fr_child);
10205 if (frc != NULL)
10206 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10208 /* Make window as big as possible so that we have lots of room
10209 * to split. */
10210 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10211 || put_line(fd, fr->fr_layout == FR_COL
10212 ? "split" : "vsplit") == FAIL)
10213 return FAIL;
10214 ++count;
10217 /* Go back to the first window. */
10218 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10219 ? "%dwincmd k" : "%dwincmd h", count) < 0
10220 || put_eol(fd) == FAIL))
10221 return FAIL;
10223 /* Recursively create frames/windows in each window of this column or
10224 * row. */
10225 frc = ses_skipframe(fr->fr_child);
10226 while (frc != NULL)
10228 ses_win_rec(fd, frc);
10229 frc = ses_skipframe(frc->fr_next);
10230 /* Go to next window. */
10231 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10232 return FAIL;
10235 return OK;
10239 * Skip frames that don't contain windows we want to save in the Session.
10240 * Returns NULL when there none.
10242 static frame_T *
10243 ses_skipframe(fr)
10244 frame_T *fr;
10246 frame_T *frc;
10248 for (frc = fr; frc != NULL; frc = frc->fr_next)
10249 if (ses_do_frame(frc))
10250 break;
10251 return frc;
10255 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10256 * the Session.
10258 static int
10259 ses_do_frame(fr)
10260 frame_T *fr;
10262 frame_T *frc;
10264 if (fr->fr_layout == FR_LEAF)
10265 return ses_do_win(fr->fr_win);
10266 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10267 if (ses_do_frame(frc))
10268 return TRUE;
10269 return FALSE;
10273 * Return non-zero if window "wp" is to be stored in the Session.
10275 static int
10276 ses_do_win(wp)
10277 win_T *wp;
10279 if (wp->w_buffer->b_fname == NULL
10280 #ifdef FEAT_QUICKFIX
10281 /* When 'buftype' is "nofile" can't restore the window contents. */
10282 || bt_nofile(wp->w_buffer)
10283 #endif
10285 return (ssop_flags & SSOP_BLANK);
10286 if (wp->w_buffer->b_help)
10287 return (ssop_flags & SSOP_HELP);
10288 return TRUE;
10292 * Write commands to "fd" to restore the view of a window.
10293 * Caller must make sure 'scrolloff' is zero.
10295 static int
10296 put_view(fd, wp, add_edit, flagp, current_arg_idx)
10297 FILE *fd;
10298 win_T *wp;
10299 int add_edit; /* add ":edit" command to view */
10300 unsigned *flagp; /* vop_flags or ssop_flags */
10301 int current_arg_idx; /* current argument index of the window, use
10302 * -1 if unknown */
10304 win_T *save_curwin;
10305 int f;
10306 int do_cursor;
10307 int did_next = FALSE;
10309 /* Always restore cursor position for ":mksession". For ":mkview" only
10310 * when 'viewoptions' contains "cursor". */
10311 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10314 * Local argument list.
10316 if (wp->w_alist == &global_alist)
10318 if (put_line(fd, "argglobal") == FAIL)
10319 return FAIL;
10321 else
10323 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10324 flagp == &vop_flags
10325 || !(*flagp & SSOP_CURDIR)
10326 || wp->w_localdir != NULL, flagp) == FAIL)
10327 return FAIL;
10330 /* Only when part of a session: restore the argument index. Some
10331 * arguments may have been deleted, check if the index is valid. */
10332 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx <= WARGCOUNT(wp)
10333 && flagp == &ssop_flags)
10335 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
10336 || put_eol(fd) == FAIL)
10337 return FAIL;
10338 did_next = TRUE;
10341 /* Edit the file. Skip this when ":next" already did it. */
10342 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
10345 * Load the file.
10347 if (wp->w_buffer->b_ffname != NULL
10348 #ifdef FEAT_QUICKFIX
10349 && !bt_nofile(wp->w_buffer)
10350 #endif
10354 * Editing a file in this buffer: use ":edit file".
10355 * This may have side effects! (e.g., compressed or network file).
10357 if (fputs("edit ", fd) < 0
10358 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10359 return FAIL;
10361 else
10363 /* No file in this buffer, just make it empty. */
10364 if (put_line(fd, "enew") == FAIL)
10365 return FAIL;
10366 #ifdef FEAT_QUICKFIX
10367 if (wp->w_buffer->b_ffname != NULL)
10369 /* The buffer does have a name, but it's not a file name. */
10370 if (fputs("file ", fd) < 0
10371 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10372 return FAIL;
10374 #endif
10375 do_cursor = FALSE;
10380 * Local mappings and abbreviations.
10382 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10383 && makemap(fd, wp->w_buffer) == FAIL)
10384 return FAIL;
10387 * Local options. Need to go to the window temporarily.
10388 * Store only local values when using ":mkview" and when ":mksession" is
10389 * used and 'sessionoptions' doesn't include "options".
10390 * Some folding options are always stored when "folds" is included,
10391 * otherwise the folds would not be restored correctly.
10393 save_curwin = curwin;
10394 curwin = wp;
10395 curbuf = curwin->w_buffer;
10396 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10397 f = makeset(fd, OPT_LOCAL,
10398 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10399 #ifdef FEAT_FOLDING
10400 else if (*flagp & SSOP_FOLDS)
10401 f = makefoldset(fd);
10402 #endif
10403 else
10404 f = OK;
10405 curwin = save_curwin;
10406 curbuf = curwin->w_buffer;
10407 if (f == FAIL)
10408 return FAIL;
10410 #ifdef FEAT_FOLDING
10412 * Save Folds when 'buftype' is empty and for help files.
10414 if ((*flagp & SSOP_FOLDS)
10415 && wp->w_buffer->b_ffname != NULL
10416 # ifdef FEAT_QUICKFIX
10417 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10418 # endif
10421 if (put_folds(fd, wp) == FAIL)
10422 return FAIL;
10424 #endif
10427 * Set the cursor after creating folds, since that moves the cursor.
10429 if (do_cursor)
10432 /* Restore the cursor line in the file and relatively in the
10433 * window. Don't use "G", it changes the jumplist. */
10434 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10435 (long)wp->w_cursor.lnum,
10436 (long)(wp->w_cursor.lnum - wp->w_topline),
10437 (long)wp->w_height / 2, (long)wp->w_height) < 0
10438 || put_eol(fd) == FAIL
10439 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10440 || put_line(fd, "exe s:l") == FAIL
10441 || put_line(fd, "normal! zt") == FAIL
10442 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10443 || put_eol(fd) == FAIL)
10444 return FAIL;
10445 /* Restore the cursor column and left offset when not wrapping. */
10446 if (wp->w_cursor.col == 0)
10448 if (put_line(fd, "normal! 0") == FAIL)
10449 return FAIL;
10451 else
10453 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10455 if (fprintf(fd,
10456 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10457 (long)wp->w_cursor.col,
10458 (long)(wp->w_cursor.col - wp->w_leftcol),
10459 (long)wp->w_width / 2, (long)wp->w_width) < 0
10460 || put_eol(fd) == FAIL
10461 || put_line(fd, "if s:c > 0") == FAIL
10462 || fprintf(fd,
10463 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10464 (long)wp->w_cursor.col) < 0
10465 || put_eol(fd) == FAIL
10466 || put_line(fd, "else") == FAIL
10467 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10468 || put_eol(fd) == FAIL
10469 || put_line(fd, "endif") == FAIL)
10470 return FAIL;
10472 else
10474 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10475 || put_eol(fd) == FAIL)
10476 return FAIL;
10482 * Local directory.
10484 if (wp->w_localdir != NULL)
10486 if (fputs("lcd ", fd) < 0
10487 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10488 || put_eol(fd) == FAIL)
10489 return FAIL;
10490 did_lcd = TRUE;
10493 return OK;
10497 * Write an argument list to the session file.
10498 * Returns FAIL if writing fails.
10500 static int
10501 ses_arglist(fd, cmd, gap, fullname, flagp)
10502 FILE *fd;
10503 char *cmd;
10504 garray_T *gap;
10505 int fullname; /* TRUE: use full path name */
10506 unsigned *flagp;
10508 int i;
10509 char_u buf[MAXPATHL];
10510 char_u *s;
10512 if (gap->ga_len == 0)
10513 return put_line(fd, "silent! argdel *");
10514 if (fputs(cmd, fd) < 0)
10515 return FAIL;
10516 for (i = 0; i < gap->ga_len; ++i)
10518 /* NULL file names are skipped (only happens when out of memory). */
10519 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10520 if (s != NULL)
10522 if (fullname)
10524 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10525 s = buf;
10527 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10528 return FAIL;
10531 return put_eol(fd);
10535 * Write a buffer name to the session file.
10536 * Also ends the line.
10537 * Returns FAIL if writing fails.
10539 static int
10540 ses_fname(fd, buf, flagp)
10541 FILE *fd;
10542 buf_T *buf;
10543 unsigned *flagp;
10545 char_u *name;
10547 /* Use the short file name if the current directory is known at the time
10548 * the session file will be sourced.
10549 * Don't do this for ":mkview", we don't know the current directory.
10550 * Don't do this after ":lcd", we don't keep track of what the current
10551 * directory is. */
10552 if (buf->b_sfname != NULL
10553 && flagp == &ssop_flags
10554 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10555 && !did_lcd)
10556 name = buf->b_sfname;
10557 else
10558 name = buf->b_ffname;
10559 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10560 return FAIL;
10561 return OK;
10565 * Write a file name to the session file.
10566 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10567 * characters.
10568 * Returns FAIL if writing fails.
10570 static int
10571 ses_put_fname(fd, name, flagp)
10572 FILE *fd;
10573 char_u *name;
10574 unsigned *flagp;
10576 char_u *sname;
10577 int retval = OK;
10578 int c;
10580 sname = home_replace_save(NULL, name);
10581 if (sname != NULL)
10582 name = sname;
10583 while (*name != NUL)
10585 #ifdef FEAT_MBYTE
10587 int l;
10589 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
10591 /* copy a multibyte char */
10592 while (--l >= 0)
10594 if (putc(*name, fd) != *name)
10595 retval = FAIL;
10596 ++name;
10598 continue;
10601 #endif
10602 c = *name++;
10603 if (c == '\\' && (*flagp & SSOP_SLASH))
10604 /* change a backslash to a forward slash */
10605 c = '/';
10606 else if ((vim_strchr(escape_chars, c) != NULL
10607 #ifdef BACKSLASH_IN_FILENAME
10608 && c != '\\'
10609 #endif
10610 ) || c == '#' || c == '%')
10612 /* escape a special character with a backslash */
10613 if (putc('\\', fd) != '\\')
10614 retval = FAIL;
10616 if (putc(c, fd) != c)
10617 retval = FAIL;
10619 vim_free(sname);
10620 return retval;
10624 * ":loadview [nr]"
10626 static void
10627 ex_loadview(eap)
10628 exarg_T *eap;
10630 char_u *fname;
10632 fname = get_view_file(*eap->arg);
10633 if (fname != NULL)
10635 do_source(fname, FALSE, DOSO_NONE);
10636 vim_free(fname);
10641 * Get the name of the view file for the current buffer.
10643 static char_u *
10644 get_view_file(c)
10645 int c;
10647 int len = 0;
10648 char_u *p, *s;
10649 char_u *retval;
10650 char_u *sname;
10652 if (curbuf->b_ffname == NULL)
10654 EMSG(_(e_noname));
10655 return NULL;
10657 sname = home_replace_save(NULL, curbuf->b_ffname);
10658 if (sname == NULL)
10659 return NULL;
10662 * We want a file name without separators, because we're not going to make
10663 * a directory.
10664 * "normal" path separator -> "=+"
10665 * "=" -> "=="
10666 * ":" path separator -> "=-"
10668 for (p = sname; *p; ++p)
10669 if (*p == '=' || vim_ispathsep(*p))
10670 ++len;
10671 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10672 if (retval != NULL)
10674 STRCPY(retval, p_vdir);
10675 add_pathsep(retval);
10676 s = retval + STRLEN(retval);
10677 for (p = sname; *p; ++p)
10679 if (*p == '=')
10681 *s++ = '=';
10682 *s++ = '=';
10684 else if (vim_ispathsep(*p))
10686 *s++ = '=';
10687 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
10688 || defined(VMS)
10689 if (*p == ':')
10690 *s++ = '-';
10691 else
10692 #endif
10693 *s++ = '+';
10695 else
10696 *s++ = *p;
10698 *s++ = '=';
10699 *s++ = c;
10700 STRCPY(s, ".vim");
10703 vim_free(sname);
10704 return retval;
10707 #endif /* FEAT_SESSION */
10710 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10711 * Return FAIL for a write error.
10714 put_eol(fd)
10715 FILE *fd;
10717 if (
10718 #ifdef USE_CRNL
10720 # ifdef MKSESSION_NL
10721 !mksession_nl &&
10722 # endif
10723 (putc('\r', fd) < 0)) ||
10724 #endif
10725 (putc('\n', fd) < 0))
10726 return FAIL;
10727 return OK;
10731 * Write a line to "fd".
10732 * Return FAIL for a write error.
10735 put_line(fd, s)
10736 FILE *fd;
10737 char *s;
10739 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10740 return FAIL;
10741 return OK;
10744 #ifdef FEAT_VIMINFO
10746 * ":rviminfo" and ":wviminfo".
10748 static void
10749 ex_viminfo(eap)
10750 exarg_T *eap;
10752 char_u *save_viminfo;
10754 save_viminfo = p_viminfo;
10755 if (*p_viminfo == NUL)
10756 p_viminfo = (char_u *)"'100";
10757 if (eap->cmdidx == CMD_rviminfo)
10759 if (read_viminfo(eap->arg, VIF_WANT_INFO | VIF_WANT_MARKS
10760 | (eap->forceit ? VIF_FORCEIT : 0)) == FAIL)
10761 EMSG(_("E195: Cannot open viminfo file for reading"));
10763 else
10764 write_viminfo(eap->arg, eap->forceit);
10765 p_viminfo = save_viminfo;
10767 #endif
10769 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
10771 * Make a dialog message in "buff[IOSIZE]".
10772 * "format" must contain "%s".
10774 void
10775 dialog_msg(buff, format, fname)
10776 char_u *buff;
10777 char *format;
10778 char_u *fname;
10780 if (fname == NULL)
10781 fname = (char_u *)_("Untitled");
10782 vim_snprintf((char *)buff, IOSIZE, format, fname);
10784 #endif
10787 * ":behave {mswin,xterm}"
10789 static void
10790 ex_behave(eap)
10791 exarg_T *eap;
10793 if (STRCMP(eap->arg, "mswin") == 0)
10795 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10796 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10797 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10798 set_option_value((char_u *)"keymodel", 0L,
10799 (char_u *)"startsel,stopsel", 0);
10801 else if (STRCMP(eap->arg, "xterm") == 0)
10803 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10804 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10805 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10806 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10808 else
10809 EMSG2(_(e_invarg2), eap->arg);
10812 #ifdef FEAT_AUTOCMD
10813 static int filetype_detect = FALSE;
10814 static int filetype_plugin = FALSE;
10815 static int filetype_indent = FALSE;
10818 * ":filetype [plugin] [indent] {on,off,detect}"
10819 * on: Load the filetype.vim file to install autocommands for file types.
10820 * off: Load the ftoff.vim file to remove all autocommands for file types.
10821 * plugin on: load filetype.vim and ftplugin.vim
10822 * plugin off: load ftplugof.vim
10823 * indent on: load filetype.vim and indent.vim
10824 * indent off: load indoff.vim
10826 static void
10827 ex_filetype(eap)
10828 exarg_T *eap;
10830 char_u *arg = eap->arg;
10831 int plugin = FALSE;
10832 int indent = FALSE;
10834 if (*eap->arg == NUL)
10836 /* Print current status. */
10837 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10838 filetype_detect ? "ON" : "OFF",
10839 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10840 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10841 return;
10844 /* Accept "plugin" and "indent" in any order. */
10845 for (;;)
10847 if (STRNCMP(arg, "plugin", 6) == 0)
10849 plugin = TRUE;
10850 arg = skipwhite(arg + 6);
10851 continue;
10853 if (STRNCMP(arg, "indent", 6) == 0)
10855 indent = TRUE;
10856 arg = skipwhite(arg + 6);
10857 continue;
10859 break;
10861 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10863 if (*arg == 'o' || !filetype_detect)
10865 source_runtime((char_u *)FILETYPE_FILE, TRUE);
10866 filetype_detect = TRUE;
10867 if (plugin)
10869 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
10870 filetype_plugin = TRUE;
10872 if (indent)
10874 source_runtime((char_u *)INDENT_FILE, TRUE);
10875 filetype_indent = TRUE;
10878 if (*arg == 'd')
10880 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
10881 do_modelines(0);
10884 else if (STRCMP(arg, "off") == 0)
10886 if (plugin || indent)
10888 if (plugin)
10890 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
10891 filetype_plugin = FALSE;
10893 if (indent)
10895 source_runtime((char_u *)INDOFF_FILE, TRUE);
10896 filetype_indent = FALSE;
10899 else
10901 source_runtime((char_u *)FTOFF_FILE, TRUE);
10902 filetype_detect = FALSE;
10905 else
10906 EMSG2(_(e_invarg2), arg);
10910 * ":setfiletype {name}"
10912 static void
10913 ex_setfiletype(eap)
10914 exarg_T *eap;
10916 if (!did_filetype)
10917 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10919 #endif
10921 /*ARGSUSED*/
10922 static void
10923 ex_digraphs(eap)
10924 exarg_T *eap;
10926 #ifdef FEAT_DIGRAPHS
10927 if (*eap->arg != NUL)
10928 putdigraph(eap->arg);
10929 else
10930 listdigraphs();
10931 #else
10932 EMSG(_("E196: No digraphs in this version"));
10933 #endif
10936 static void
10937 ex_set(eap)
10938 exarg_T *eap;
10940 int flags = 0;
10942 if (eap->cmdidx == CMD_setlocal)
10943 flags = OPT_LOCAL;
10944 else if (eap->cmdidx == CMD_setglobal)
10945 flags = OPT_GLOBAL;
10946 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10947 if (cmdmod.browse && flags == 0)
10948 ex_options(eap);
10949 else
10950 #endif
10951 (void)do_set(eap->arg, flags);
10954 #ifdef FEAT_SEARCH_EXTRA
10956 * ":nohlsearch"
10958 /*ARGSUSED*/
10959 static void
10960 ex_nohlsearch(eap)
10961 exarg_T *eap;
10963 no_hlsearch = TRUE;
10964 redraw_all_later(SOME_VALID);
10968 * ":[N]match {group} {pattern}"
10969 * Sets nextcmd to the start of the next command, if any. Also called when
10970 * skipping commands to find the next command.
10972 static void
10973 ex_match(eap)
10974 exarg_T *eap;
10976 char_u *p;
10977 char_u *g = NULL;
10978 char_u *end;
10979 int c;
10980 int id;
10982 if (eap->line2 <= 3)
10983 id = eap->line2;
10984 else
10986 EMSG(e_invcmd);
10987 return;
10990 /* First clear any old pattern. */
10991 if (!eap->skip)
10992 match_delete(curwin, id, FALSE);
10994 if (ends_excmd(*eap->arg))
10995 end = eap->arg;
10996 else if ((STRNICMP(eap->arg, "none", 4) == 0
10997 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10998 end = eap->arg + 4;
10999 else
11001 p = skiptowhite(eap->arg);
11002 if (!eap->skip)
11003 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
11004 p = skipwhite(p);
11005 if (*p == NUL)
11007 /* There must be two arguments. */
11008 EMSG2(_(e_invarg2), eap->arg);
11009 return;
11011 end = skip_regexp(p + 1, *p, TRUE, NULL);
11012 if (!eap->skip)
11014 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
11016 eap->errmsg = e_trailing;
11017 return;
11019 if (*end != *p)
11021 EMSG2(_(e_invarg2), p);
11022 return;
11025 c = *end;
11026 *end = NUL;
11027 match_add(curwin, g, p + 1, 10, id);
11028 vim_free(g);
11029 *end = c;
11032 eap->nextcmd = find_nextcmd(end);
11034 #endif
11036 #ifdef FEAT_CRYPT
11038 * ":X": Get crypt key
11040 /*ARGSUSED*/
11041 static void
11042 ex_X(eap)
11043 exarg_T *eap;
11045 (void)get_crypt_key(TRUE, TRUE);
11047 #endif
11049 #ifdef FEAT_FOLDING
11050 static void
11051 ex_fold(eap)
11052 exarg_T *eap;
11054 if (foldManualAllowed(TRUE))
11055 foldCreate(eap->line1, eap->line2);
11058 static void
11059 ex_foldopen(eap)
11060 exarg_T *eap;
11062 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
11063 eap->forceit, FALSE);
11066 static void
11067 ex_folddo(eap)
11068 exarg_T *eap;
11070 linenr_T lnum;
11072 /* First set the marks for all lines closed/open. */
11073 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
11074 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
11075 ml_setmarked(lnum);
11077 /* Execute the command on the marked lines. */
11078 global_exe(eap->arg);
11079 ml_clearmarked(); /* clear rest of the marks */
11081 #endif