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.
11 * ex_docmd.c: functions for executing an Ex command line.
16 static int quitmore
= 0;
17 static int ex_pressedreturn
= FALSE
;
19 # define ex_hardcopy ex_ni
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 */
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
));
51 # define ex_command ex_ni
52 # define ex_comclear ex_ni
53 # define ex_delcommand ex_ni
57 static char_u
*do_one_cmd
__ARGS((char_u
**, int, struct condstack
*, char_u
*(*fgetline
)(int, void *, int), void *cookie
));
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 */
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
));
70 # define ex_emenu ex_ni
71 # define ex_menu ex_ni
72 # define ex_menutranslate ex_ni
75 static void ex_autocmd
__ARGS((exarg_T
*eap
));
76 static void ex_doautocmd
__ARGS((exarg_T
*eap
));
78 # define ex_autocmd ex_ni
79 # define ex_doautocmd ex_ni
80 # define ex_doautoall ex_ni
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
));
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
101 #if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
102 # define ex_buffer_all ex_ni
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
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
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
123 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
124 # define ex_cexpr ex_ni
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
));
135 static char_u
*invalid_range
__ARGS((exarg_T
*eap
));
136 static void correct_range
__ARGS((exarg_T
*eap
));
138 static char_u
*replace_makeprg
__ARGS((exarg_T
*eap
, char_u
*p
, char_u
**cmdlinep
));
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
));
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
));
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
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
));
175 # define ex_pclose ex_ni
176 # define ex_ptag ex_ni
177 # define ex_pedit ex_ni
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
));
184 static void ex_goto
__ARGS((exarg_T
*eap
));
186 # define ex_goto ex_ni
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
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
206 # define ex_gui ex_nogui
207 static void ex_nogui
__ARGS((exarg_T
*eap
));
209 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
210 static void ex_tearoff
__ARGS((exarg_T
*eap
));
212 # define ex_tearoff ex_ni
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
));
218 # define ex_popup ex_ni
220 #ifndef FEAT_GUI_MSWIN
221 # define ex_simalt ex_ni
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
228 #if !defined(FEAT_GUI_GTK)
229 # define ex_helpfind ex_ni
232 # define do_cscope ex_ni
233 # define do_scscope ex_ni
234 # define do_cstag ex_ni
237 # define ex_syntax ex_ni
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
246 #ifndef FEAT_MZSCHEME
247 # define ex_mzscheme ex_script_ni
248 # define ex_mzfile ex_ni
251 # define ex_perl ex_script_ni
252 # define ex_perldo ex_ni
255 # define ex_python ex_script_ni
256 # define ex_pyfile ex_ni
259 # define ex_tcl ex_script_ni
260 # define ex_tcldo ex_ni
261 # define ex_tclfile ex_ni
264 # define ex_ruby ex_script_ni
265 # define ex_rubydo ex_ni
266 # define ex_rubyfile ex_ni
269 # define ex_sniff ex_ni
272 # define ex_loadkeymap ex_ni
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
));
283 static void ex_wincmd
__ARGS((exarg_T
*eap
));
285 # define ex_wincmd ex_ni
287 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
288 static void ex_winpos
__ARGS((exarg_T
*eap
));
290 # define ex_winpos ex_ni
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
));
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));
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
));
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
327 static void ex_checkpath
__ARGS((exarg_T
*eap
));
328 static void ex_findpat
__ARGS((exarg_T
*eap
));
330 # define ex_findpat ex_ni
331 # define ex_checkpath ex_ni
333 #if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
334 static void ex_psearch
__ARGS((exarg_T
*eap
));
336 # define ex_psearch ex_ni
338 static void ex_tag
__ARGS((exarg_T
*eap
));
339 static void ex_tag_cmd
__ARGS((exarg_T
*eap
, char_u
*name
));
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
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
371 static char_u
*arg_all
__ARGS((void));
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 */
379 # define ex_loadview ex_ni
382 # define ex_compiler ex_ni
385 static void ex_viminfo
__ARGS((exarg_T
*eap
));
387 # define ex_viminfo ex_ni
389 static void ex_behave
__ARGS((exarg_T
*eap
));
391 static void ex_filetype
__ARGS((exarg_T
*eap
));
392 static void ex_setfiletype
__ARGS((exarg_T
*eap
));
394 # define ex_filetype ex_ni
395 # define ex_setfiletype ex_ni
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
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
410 #ifdef FEAT_SEARCH_EXTRA
411 static void ex_nohlsearch
__ARGS((exarg_T
*eap
));
412 static void ex_match
__ARGS((exarg_T
*eap
));
414 # define ex_nohlsearch ex_ni
415 # define ex_match ex_ni
418 static void ex_X
__ARGS((exarg_T
*eap
));
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
));
427 # define ex_fold ex_ni
428 # define ex_foldopen ex_ni
429 # define ex_folddo ex_ni
431 #if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
432 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
433 # define ex_language ex_ni
436 # define ex_sign ex_ni
438 #ifndef FEAT_SUN_WORKSHOP
439 # define ex_wsverb ex_ni
441 #ifndef FEAT_NETBEANS_INTG
442 # define ex_nbkey ex_ni
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
454 # define ex_history ex_ni
456 #ifndef FEAT_JUMPLIST
457 # define ex_jumps ex_ni
458 # define ex_changes ex_ni
462 # define ex_profile ex_ni
465 #ifndef FEAT_GUI_MACVIM
466 # define ex_macaction ex_ni
467 # define ex_macmenu ex_ni
471 * Declare cmdnames[].
473 #define DO_DECLARE_EXCMD
477 * Table used to quickly search for a command, based on its first character.
479 static cmdidx_T cmdidxs
[27] =
510 static char_u dollar_command
[2] = {'$', 0};
514 /* Struct for storing a line inside a while/for loop */
517 char_u
*line
; /* command line */
518 linenr_T lnum
; /* sourcing_lnum of the line */
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.
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));
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. */
545 except_T
*caught_stack
;
546 char_u
*vv_exception
;
547 char_u
*vv_throwpoint
;
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
));
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
;
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
;
599 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
604 int improved
; /* TRUE for "improved Ex" mode */
612 exmode_active
= EXMODE_VIM
;
614 exmode_active
= EXMODE_NORMAL
;
617 /* When using ":global /pat/ visual" and then "Q" we return to continue
618 * the :global command. */
622 save_msg_scroll
= msg_scroll
;
623 ++RedrawingDisabled
; /* don't redisplay the window */
624 ++no_wait_return
; /* don't wait for return */
626 /* Ignore scrollbar and mouse events in Ex mode */
630 want_sniff_request
= 0; /* No K_SNIFF wanted */
633 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
634 while (exmode_active
)
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
;
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
;
652 ProcessSniffRequests();
656 cmdline_row
= msg_row
;
657 do_cmdline(NULL
, getexline
, NULL
, 0);
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
)
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)
679 print_line_no_prefix(curwin
->w_cursor
.lnum
, FALSE
, FALSE
);
683 else if (ex_pressedreturn
&& !ex_no_reprint
) /* must be at EOF */
685 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
688 EMSG(_("E501: At end-of-file"));
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 "*".
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!
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
)
735 char_u
*(*getline
) __ARGS((int, void *, int));
736 void *cookie
; /* argument for getline() */
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 */
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));
762 struct loop_cookie cmd_loop_cookie
;
766 # define cmd_getline getline
767 # define cmd_cookie cookie
769 static int call_depth
= 0; /* recursiveness */
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
;
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"));
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
;
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
))
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. */
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.
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
);
845 memset(&debug_saved
, 0, 1);
847 initial_trylevel
= trylevel
;
850 * "did_throw" will be set to TRUE when an exception is being thrown.
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.
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
))
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
;
878 getline_is_func
= getline_equal(getline
, cookie
, get_func_line
);
881 /* stop skipping cmds for an error msg after all endif/while/for */
882 if (next_cmdline
== NULL
886 && !(getline_is_func
&& func_has_abort(real_cookie
))
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.
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
);
906 /* Check if a function has returned or, unless it has an unclosed
907 * try conditional, aborted. */
911 if (do_profiling
== PROF_YES
)
912 func_line_end(real_cookie
);
914 if (func_has_ended(real_cookie
))
921 else if (do_profiling
== PROF_YES
922 && getline_equal(getline
, cookie
, getsourceline
))
926 /* Check if a sourced file hit a ":finish" command. */
927 if (source_finished(getline
, cookie
))
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
;
958 if (do_profiling
== PROF_YES
)
961 func_line_start(real_cookie
);
962 else if (getline_equal(getline
, cookie
, getsourceline
))
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
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
);
985 cmd_getline
= getline
;
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
))
999 if (getline
== NULL
|| (next_cmdline
= getline(':', cookie
,
1001 cstack
.cs_idx
< 0 ? 0 : (cstack
.cs_idx
+ 1) * 2
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
;
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
);
1024 repeat_cmdline
= vim_strsave(next_cmdline
);
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
));
1041 cmdline_copy
= next_cmdline
;
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
)
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
1071 if (!(flags
& DOCMD_NOWAIT
) && !recursive
)
1073 msg_didout_before_start
= msg_didout
;
1074 msg_didany
= FALSE
; /* no output yet */
1076 msg_scroll
= TRUE
; /* put messages below each other */
1077 ++no_wait_return
; /* dont wait for return until finished */
1078 ++RedrawingDisabled
;
1083 if (p_verbose
>= 15 && sourcing_name
!= NULL
)
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();
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.
1103 next_cmdline
= do_one_cmd(&cmdline_copy
, flags
& DOCMD_VERBOSE
,
1107 cmd_getline
, cmd_cookie
);
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
;
1117 if (next_cmdline
== NULL
)
1119 vim_free(cmdline_copy
);
1120 cmdline_copy
= NULL
;
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
;
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
;
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
))
1151 if (cstack
.cs_looplevel
> 0)
1156 * An ":endwhile", ":endfor" and ":continue" is handled here.
1157 * If we were executing commands, jump back to the ":while" or
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
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"
1183 if (breakpoint
!= NULL
)
1185 *breakpoint
= dbg_find_breakpoint(
1186 getline_equal(getline
, cookie
, getsourceline
),
1188 ((wcmd_T
*)lines_ga
.ga_data
)[current_line
].lnum
-1);
1189 *dbg_tick
= debug_tick
;
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)
1219 ((wcmd_T
*)lines_ga
.ga_data
)[lines_ga
.ga_len
- 1].lnum
;
1220 free_cmdlines(&lines_ga
);
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.
1272 || (did_emsg
&& force_abort
) || did_throw
1276 && cstack
.cs_trylevel
== 0
1279 && !(did_emsg
&& used_getline
1280 && (getline_equal(getline
, cookie
, getexmodeline
)
1281 || getline_equal(getline
, cookie
, getexline
)))
1282 && (next_cmdline
!= NULL
1284 || cstack
.cs_idx
>= 0
1286 || (flags
& DOCMD_REPEAT
)));
1288 vim_free(cmdline_copy
);
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
)
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
)
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
);
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
);
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.
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
)
1365 vim_snprintf((char *)IObuff
, IOSIZE
,
1366 _("E605: Exception not caught: %s"),
1367 current_exception
->value
);
1368 p
= vim_strsave(IObuff
);
1371 messages
= current_exception
->messages
;
1372 current_exception
->messages
= NULL
;
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
;
1390 if (messages
!= NULL
)
1394 next
= messages
->next
;
1395 emsg(messages
->msg
);
1396 vim_free(messages
->msg
);
1400 while (messages
!= NULL
);
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().
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))
1439 check_cstack
= TRUE
;
1443 /* When leaving a function, reduce nesting level. */
1444 if (getline_equal(getline
, cookie
, get_func_line
))
1447 * Go to debug mode when returning from a function in which we are
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
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.
1475 --RedrawingDisabled
;
1480 * When just finished an ":if"-":else" which was typed, no need to
1481 * wait for hit-return. Also for an error situation.
1485 || (did_endif
&& KeyTyped
&& !did_emsg
)
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
1499 msg_didout
|= msg_didout_before_start
;
1506 * Reset if_level, in case a sourced script file contains more ":if" than
1507 * ":endif" (could be ":if x | foo | endif").
1518 * Obtain a line when inside a ":while" or ":for" loop.
1521 get_loop_line(c
, cookie
, indent
)
1526 struct loop_cookie
*cp
= (struct loop_cookie
*)cookie
;
1530 if (cp
->current_line
+ 1 >= cp
->lines_gap
->ga_len
)
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
);
1539 line
= cp
->getline(c
, cp
->cookie
, indent
);
1540 if (line
!= NULL
&& store_loop_line(cp
->lines_gap
, line
) == OK
)
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.
1557 store_loop_line(gap
, line
)
1561 if (ga_grow(gap
, 1) == 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
;
1570 * Free the lines stored for a ":while" or ":for" loop.
1576 while (gap
->ga_len
> 0)
1578 vim_free(((wcmd_T
*)(gap
->ga_data
))[gap
->ga_len
- 1].line
);
1585 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1586 * "func". * Otherwise return TRUE when "fgetline" equals "func".
1589 getline_equal(fgetline
, cookie
, func
)
1590 char_u
*(*fgetline
) __ARGS((int, void *, int));
1591 void *cookie UNUSED
; /* argument for fgetline() */
1592 char_u
*(*func
) __ARGS((int, void *, int));
1595 char_u
*(*gp
) __ARGS((int, void *, int));
1596 struct loop_cookie
*cp
;
1598 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1599 * function that's originally used to obtain the lines. This may be
1600 * nested several levels. */
1602 cp
= (struct loop_cookie
*)cookie
;
1603 while (gp
== get_loop_line
)
1610 return fgetline
== func
;
1614 #if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1616 * If "fgetline" is get_loop_line(), return the cookie used by the original
1617 * getline function. Otherwise return "cookie".
1620 getline_cookie(fgetline
, cookie
)
1621 char_u
*(*fgetline
) __ARGS((int, void *, int)) UNUSED
;
1622 void *cookie
; /* argument for fgetline() */
1625 char_u
*(*gp
) __ARGS((int, void *, int));
1626 struct loop_cookie
*cp
;
1628 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1629 * cookie that's originally used to obtain the lines. This may be nested
1630 * several levels. */
1632 cp
= (struct loop_cookie
*)cookie
;
1633 while (gp
== get_loop_line
)
1646 * Execute one Ex command.
1648 * If 'sourcing' is TRUE, the command will be included in the error message.
1650 * 1. skip comment lines and leading space
1651 * 2. handle command modifiers
1654 * 5. parse arguments
1655 * 6. switch on command name
1657 * Note: "fgetline" can be NULL.
1659 * This function may be called recursively!
1661 #if (_MSC_VER == 1200)
1663 * Avoid optimisation bug in VC++ version 6.0
1665 #pragma optimize( "g", off )
1668 do_one_cmd(cmdlinep
, sourcing
,
1676 struct condstack
*cstack
;
1678 char_u
*(*fgetline
) __ARGS((int, void *, int));
1679 void *cookie
; /* argument for fgetline() */
1684 char_u
*errormsg
= NULL
; /* error message */
1685 exarg_T ea
; /* Ex command arguments */
1686 long verbose_save
= -1;
1687 int save_msg_scroll
= 0;
1689 int did_esilent
= 0;
1691 int did_sandbox
= FALSE
;
1693 cmdmod_T save_cmdmod
;
1694 int ni
; /* set when Not Implemented */
1696 vim_memset(&ea
, 0, sizeof(ea
));
1703 /* when not editing the last file :q has to be typed twice */
1706 /* avoid that a function call in 'statusline' does this */
1707 && !getline_equal(fgetline
, cookie
, get_func_line
)
1713 * Reset browse, confirm, etc.. They are restored when returning, for
1716 save_cmdmod
= cmdmod
;
1717 vim_memset(&cmdmod
, 0, sizeof(cmdmod
));
1719 /* "#!anything" is handled like a comment. */
1720 if ((*cmdlinep
)[0] == '#' && (*cmdlinep
)[1] == '!')
1724 * Repeat until no more command modifiers are found.
1730 * 1. skip comment lines and leading white space and colons
1732 while (*ea
.cmd
== ' ' || *ea
.cmd
== '\t' || *ea
.cmd
== ':')
1735 /* in ex mode, an empty line works like :+ */
1736 if (*ea
.cmd
== NUL
&& exmode_active
1737 && (getline_equal(fgetline
, cookie
, getexmodeline
)
1738 || getline_equal(fgetline
, cookie
, getexline
))
1739 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
1741 ea
.cmd
= (char_u
*)"+";
1742 ex_pressedreturn
= TRUE
;
1745 /* ignore comment and empty lines */
1750 ex_pressedreturn
= TRUE
;
1755 * 2. handle command modifiers.
1758 if (VIM_ISDIGIT(*ea
.cmd
))
1759 p
= skipwhite(skipdigits(ea
.cmd
));
1762 /* When adding an entry, also modify cmd_exists(). */
1763 case 'a': if (!checkforcmd(&ea
.cmd
, "aboveleft", 3))
1766 cmdmod
.split
|= WSP_ABOVE
;
1770 case 'b': if (checkforcmd(&ea
.cmd
, "belowright", 3))
1773 cmdmod
.split
|= WSP_BELOW
;
1777 if (checkforcmd(&ea
.cmd
, "browse", 3))
1779 #ifdef FEAT_BROWSE_CMD
1780 cmdmod
.browse
= TRUE
;
1784 if (!checkforcmd(&ea
.cmd
, "botright", 2))
1787 cmdmod
.split
|= WSP_BOT
;
1791 case 'c': if (!checkforcmd(&ea
.cmd
, "confirm", 4))
1793 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1794 cmdmod
.confirm
= TRUE
;
1798 case 'k': if (checkforcmd(&ea
.cmd
, "keepmarks", 3))
1800 cmdmod
.keepmarks
= TRUE
;
1803 if (checkforcmd(&ea
.cmd
, "keepalt", 5))
1805 cmdmod
.keepalt
= TRUE
;
1808 if (!checkforcmd(&ea
.cmd
, "keepjumps", 5))
1810 cmdmod
.keepjumps
= TRUE
;
1813 /* ":hide" and ":hide | cmd" are not modifiers */
1814 case 'h': if (p
!= ea
.cmd
|| !checkforcmd(&p
, "hide", 3)
1815 || *p
== NUL
|| ends_excmd(*p
))
1821 case 'l': if (checkforcmd(&ea
.cmd
, "lockmarks", 3))
1823 cmdmod
.lockmarks
= TRUE
;
1827 if (!checkforcmd(&ea
.cmd
, "leftabove", 5))
1830 cmdmod
.split
|= WSP_ABOVE
;
1834 case 'n': if (!checkforcmd(&ea
.cmd
, "noautocmd", 3))
1837 if (cmdmod
.save_ei
== NULL
)
1839 /* Set 'eventignore' to "all". Restore the
1840 * existing option value later. */
1841 cmdmod
.save_ei
= vim_strsave(p_ei
);
1842 set_string_option_direct((char_u
*)"ei", -1,
1843 (char_u
*)"all", OPT_FREE
, SID_NONE
);
1848 case 'r': if (!checkforcmd(&ea
.cmd
, "rightbelow", 6))
1851 cmdmod
.split
|= WSP_BELOW
;
1855 case 's': if (checkforcmd(&ea
.cmd
, "sandbox", 3))
1864 if (!checkforcmd(&ea
.cmd
, "silent", 3))
1868 save_msg_scroll
= msg_scroll
;
1869 if (*ea
.cmd
== '!' && !vim_iswhite(ea
.cmd
[-1]))
1871 /* ":silent!", but not "silent !cmd" */
1872 ea
.cmd
= skipwhite(ea
.cmd
+ 1);
1878 case 't': if (checkforcmd(&p
, "tab", 3))
1881 if (vim_isdigit(*ea
.cmd
))
1882 cmdmod
.tab
= atoi((char *)ea
.cmd
) + 1;
1884 cmdmod
.tab
= tabpage_index(curtab
) + 1;
1889 if (!checkforcmd(&ea
.cmd
, "topleft", 2))
1892 cmdmod
.split
|= WSP_TOP
;
1896 case 'v': if (checkforcmd(&ea
.cmd
, "vertical", 4))
1898 #ifdef FEAT_VERTSPLIT
1899 cmdmod
.split
|= WSP_VERT
;
1903 if (!checkforcmd(&p
, "verbose", 4))
1905 if (verbose_save
< 0)
1906 verbose_save
= p_verbose
;
1907 if (vim_isdigit(*ea
.cmd
))
1908 p_verbose
= atoi((char *)ea
.cmd
);
1918 ea
.skip
= did_emsg
|| got_int
|| did_throw
|| (cstack
->cs_idx
>= 0
1919 && !(cstack
->cs_flags
[cstack
->cs_idx
] & CSF_ACTIVE
));
1921 ea
.skip
= (if_level
> 0);
1925 # ifdef FEAT_PROFILE
1926 /* Count this line for profiling if ea.skip is FALSE. */
1927 if (do_profiling
== PROF_YES
&& !ea
.skip
)
1929 if (getline_equal(fgetline
, cookie
, get_func_line
))
1930 func_line_exec(getline_cookie(fgetline
, cookie
));
1931 else if (getline_equal(fgetline
, cookie
, getsourceline
))
1936 /* May go to debug mode. If this happens and the ">quit" debug command is
1937 * used, throw an interrupt exception and skip the next command. */
1938 dbg_check_breakpoint(&ea
);
1939 if (!ea
.skip
&& got_int
)
1942 (void)do_intthrow(cstack
);
1947 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1953 * 'x [+-NUM] (where x denotes a currently defined mark)
1958 * The ea.cmd pointer is updated to point to the first character following the
1959 * range spec. If an initial address is found, but no second, the upper bound
1960 * is equal to the lower.
1963 /* repeat for all ',' or ';' separated addresses */
1966 ea
.line1
= ea
.line2
;
1967 ea
.line2
= curwin
->w_cursor
.lnum
; /* default is current line number */
1968 ea
.cmd
= skipwhite(ea
.cmd
);
1969 lnum
= get_address(&ea
.cmd
, ea
.skip
, ea
.addr_count
== 0);
1970 if (ea
.cmd
== NULL
) /* error detected */
1972 if (lnum
== MAXLNUM
)
1974 if (*ea
.cmd
== '%') /* '%' - all lines */
1978 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
1981 /* '*' - visual area */
1982 else if (*ea
.cmd
== '*' && vim_strchr(p_cpo
, CPO_STAR
) == NULL
)
1989 fp
= getmark('<', FALSE
);
1990 if (check_mark(fp
) == FAIL
)
1992 ea
.line1
= fp
->lnum
;
1993 fp
= getmark('>', FALSE
);
1994 if (check_mark(fp
) == FAIL
)
1996 ea
.line2
= fp
->lnum
;
2008 curwin
->w_cursor
.lnum
= ea
.line2
;
2010 else if (*ea
.cmd
!= ',')
2015 /* One address given: set start and end lines */
2016 if (ea
.addr_count
== 1)
2018 ea
.line1
= ea
.line2
;
2019 /* ... but only implicit: really no address given */
2020 if (lnum
== MAXLNUM
)
2024 /* Don't leave the cursor on an illegal line (caused by ';') */
2025 check_cursor_lnum();
2032 * Skip ':' and any white space
2034 ea
.cmd
= skipwhite(ea
.cmd
);
2035 while (*ea
.cmd
== ':')
2036 ea
.cmd
= skipwhite(ea
.cmd
+ 1);
2039 * If we got a line, but no command, then go to the line.
2040 * If we find a '|' or '\n' we set ea.nextcmd.
2042 if (*ea
.cmd
== NUL
|| *ea
.cmd
== '"' ||
2043 (ea
.nextcmd
= check_nextcmd(ea
.cmd
)) != NULL
)
2046 * strange vi behaviour:
2047 * ":3" jumps to line 3
2048 * ":3|..." prints line 3
2049 * ":|" prints current line
2051 if (ea
.skip
) /* skip this if inside :if */
2053 if (*ea
.cmd
== '|' || (exmode_active
&& ea
.line1
!= ea
.line2
))
2055 ea
.cmdidx
= CMD_print
;
2056 ea
.argt
= RANGE
+COUNT
+TRLBAR
;
2057 if ((errormsg
= invalid_range(&ea
)) == NULL
)
2063 else if (ea
.addr_count
!= 0)
2065 if (ea
.line2
> curbuf
->b_ml
.ml_line_count
)
2067 /* With '-' in 'cpoptions' a line number past the file is an
2068 * error, otherwise put it at the end of the file. */
2069 if (vim_strchr(p_cpo
, CPO_MINUS
) != NULL
)
2072 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2076 errormsg
= (char_u
*)_(e_invrange
);
2080 curwin
->w_cursor
.lnum
= 1;
2082 curwin
->w_cursor
.lnum
= ea
.line2
;
2083 beginline(BL_SOL
| BL_FIX
);
2089 /* Find the command and let "p" point to after it. */
2090 p
= find_command(&ea
, NULL
);
2092 #ifdef FEAT_USR_CMDS
2096 errormsg
= (char_u
*)_("E464: Ambiguous use of user-defined command");
2099 /* Check for wrong commands. */
2100 if (*p
== '!' && ea
.cmd
[1] == 0151 && ea
.cmd
[0] == 78)
2102 errormsg
= uc_fun_cmd();
2106 if (ea
.cmdidx
== CMD_SIZE
)
2110 STRCPY(IObuff
, _("E492: Not an editor command"));
2113 STRCAT(IObuff
, ": ");
2114 STRNCAT(IObuff
, *cmdlinep
, 40);
2122 #ifdef FEAT_USR_CMDS
2123 !USER_CMDIDX(ea
.cmdidx
) &&
2125 (cmdnames
[ea
.cmdidx
].cmd_func
== ex_ni
2126 #ifdef HAVE_EX_SCRIPT_NI
2127 || cmdnames
[ea
.cmdidx
].cmd_func
== ex_script_ni
2133 * When the expression evaluation is disabled, recognize the ":if" and
2134 * ":endif" commands and ignore everything in between it.
2136 if (ea
.cmdidx
== CMD_if
)
2140 if (ea
.cmdidx
== CMD_endif
)
2147 /* forced commands */
2148 if (*p
== '!' && ea
.cmdidx
!= CMD_substitute
2149 && ea
.cmdidx
!= CMD_smagic
&& ea
.cmdidx
!= CMD_snomagic
)
2158 * 5. parse arguments
2160 #ifdef FEAT_USR_CMDS
2161 if (!USER_CMDIDX(ea
.cmdidx
))
2163 ea
.argt
= (long)cmdnames
[(int)ea
.cmdidx
].cmd_argt
;
2168 if (sandbox
!= 0 && !(ea
.argt
& SBOXOK
))
2170 /* Command not allowed in sandbox. */
2171 errormsg
= (char_u
*)_(e_sandbox
);
2175 if (!curbuf
->b_p_ma
&& (ea
.argt
& MODIFY
))
2177 /* Command not allowed in non-'modifiable' buffer */
2178 errormsg
= (char_u
*)_(e_modifiable
);
2182 if (text_locked() && !(ea
.argt
& CMDWIN
)
2183 # ifdef FEAT_USR_CMDS
2184 && !USER_CMDIDX(ea
.cmdidx
)
2188 /* Command not allowed when editing the command line. */
2190 if (cmdwin_type
!= 0)
2191 errormsg
= (char_u
*)_(e_cmdwin
);
2194 errormsg
= (char_u
*)_(e_secure
);
2198 /* Disallow editing another buffer when "curbuf_lock" is set.
2199 * Do allow ":edit" (check for argument later).
2200 * Do allow ":checktime" (it's postponed). */
2201 if (!(ea
.argt
& CMDWIN
)
2202 && ea
.cmdidx
!= CMD_edit
2203 && ea
.cmdidx
!= CMD_checktime
2204 # ifdef FEAT_USR_CMDS
2205 && !USER_CMDIDX(ea
.cmdidx
)
2211 if (!ni
&& !(ea
.argt
& RANGE
) && ea
.addr_count
> 0)
2213 /* no range allowed */
2214 errormsg
= (char_u
*)_(e_norange
);
2219 if (!ni
&& !(ea
.argt
& BANG
) && ea
.forceit
) /* no <!> allowed */
2221 errormsg
= (char_u
*)_(e_nobang
);
2226 * Don't complain about the range if it is not used
2227 * (could happen if line_count is accidentally set to 0).
2229 if (!ea
.skip
&& !ni
)
2232 * If the range is backwards, ask for confirmation and, if given, swap
2233 * ea.line1 & ea.line2 so it's forwards again.
2234 * When global command is busy, don't ask, will fail below.
2236 if (!global_busy
&& ea
.line1
> ea
.line2
)
2238 if (msg_silent
== 0)
2240 if (sourcing
|| exmode_active
)
2242 errormsg
= (char_u
*)_("E493: Backwards range given");
2245 if (ask_yesno((char_u
*)
2246 _("Backwards range given, OK to swap"), FALSE
) != 'y')
2250 ea
.line1
= ea
.line2
;
2253 if ((errormsg
= invalid_range(&ea
)) != NULL
)
2257 if ((ea
.argt
& NOTADR
) && ea
.addr_count
== 0) /* default is 1, not cursor */
2263 if (((ea
.argt
& WHOLEFOLD
) || ea
.addr_count
>= 2) && !global_busy
)
2265 /* Put the first line at the start of a closed fold, put the last line
2266 * at the end of a closed fold. */
2267 (void)hasFolding(ea
.line1
, &ea
.line1
, NULL
);
2268 (void)hasFolding(ea
.line2
, NULL
, &ea
.line2
);
2272 #ifdef FEAT_QUICKFIX
2274 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
2275 * option here, so things like % get expanded.
2277 p
= replace_makeprg(&ea
, p
, cmdlinep
);
2283 * Skip to start of argument.
2284 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2286 if (ea
.cmdidx
== CMD_bang
)
2289 ea
.arg
= skipwhite(p
);
2292 * Check for "++opt=val" argument.
2293 * Must be first, allow ":w ++enc=utf8 !cmd"
2295 if (ea
.argt
& ARGOPT
)
2296 while (ea
.arg
[0] == '+' && ea
.arg
[1] == '+')
2297 if (getargopt(&ea
) == FAIL
&& !ni
)
2299 errormsg
= (char_u
*)_(e_invarg
);
2303 if (ea
.cmdidx
== CMD_write
|| ea
.cmdidx
== CMD_update
)
2305 if (*ea
.arg
== '>') /* append */
2307 if (*++ea
.arg
!= '>') /* typed wrong */
2309 errormsg
= (char_u
*)_("E494: Use w or w>>");
2312 ea
.arg
= skipwhite(ea
.arg
+ 1);
2315 else if (*ea
.arg
== '!' && ea
.cmdidx
== CMD_write
) /* :w !filter */
2318 ea
.usefilter
= TRUE
;
2322 if (ea
.cmdidx
== CMD_read
)
2326 ea
.usefilter
= TRUE
; /* :r! filter if ea.forceit */
2329 else if (*ea
.arg
== '!') /* :r !filter */
2332 ea
.usefilter
= TRUE
;
2336 if (ea
.cmdidx
== CMD_lshift
|| ea
.cmdidx
== CMD_rshift
)
2339 while (*ea
.arg
== *ea
.cmd
) /* count number of '>' or '<' */
2344 ea
.arg
= skipwhite(ea
.arg
);
2348 * Check for "+command" argument, before checking for next command.
2349 * Don't do this for ":read !cmd" and ":write !cmd".
2351 if ((ea
.argt
& EDITCMD
) && !ea
.usefilter
)
2352 ea
.do_ecmd_cmd
= getargcmd(&ea
.arg
);
2355 * Check for '|' to separate commands and '"' to start comments.
2356 * Don't do this for ":read !cmd" and ":write !cmd".
2358 if ((ea
.argt
& TRLBAR
) && !ea
.usefilter
)
2359 separate_nextcmd(&ea
);
2362 * Check for <newline> to end a shell command.
2363 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2366 else if (ea
.cmdidx
== CMD_bang
2367 || ea
.cmdidx
== CMD_global
2368 || ea
.cmdidx
== CMD_vglobal
2371 for (p
= ea
.arg
; *p
; ++p
)
2373 /* Remove one backslash before a newline, so that it's possible to
2374 * pass a newline to the shell and also a newline that is preceded
2375 * with a backslash. This makes it impossible to end a shell
2376 * command in a backslash, but that doesn't appear useful.
2377 * Halving the number of backslashes is incompatible with previous
2379 if (*p
== '\\' && p
[1] == '\n')
2381 else if (*p
== '\n')
2390 if ((ea
.argt
& DFLALL
) && ea
.addr_count
== 0)
2393 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2396 /* accept numbered register only when no count allowed (:put) */
2397 if ( (ea
.argt
& REGSTR
)
2399 #ifdef FEAT_USR_CMDS
2400 && valid_yank_reg(*ea
.arg
, (ea
.cmdidx
!= CMD_put
2401 && USER_CMDIDX(ea
.cmdidx
)))
2402 /* Do not allow register = for user commands */
2403 && (!USER_CMDIDX(ea
.cmdidx
) || *ea
.arg
!= '=')
2405 && valid_yank_reg(*ea
.arg
, ea
.cmdidx
!= CMD_put
)
2407 && !((ea
.argt
& COUNT
) && VIM_ISDIGIT(*ea
.arg
)))
2409 ea
.regname
= *ea
.arg
++;
2411 /* for '=' register: accept the rest of the line as an expression */
2412 if (ea
.arg
[-1] == '=' && ea
.arg
[0] != NUL
)
2414 set_expr_line(vim_strsave(ea
.arg
));
2415 ea
.arg
+= STRLEN(ea
.arg
);
2418 ea
.arg
= skipwhite(ea
.arg
);
2422 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2423 * count, it's a buffer name.
2425 if ((ea
.argt
& COUNT
) && VIM_ISDIGIT(*ea
.arg
)
2426 && (!(ea
.argt
& BUFNAME
) || *(p
= skipdigits(ea
.arg
)) == NUL
2427 || vim_iswhite(*p
)))
2429 n
= getdigits(&ea
.arg
);
2430 ea
.arg
= skipwhite(ea
.arg
);
2431 if (n
<= 0 && !ni
&& (ea
.argt
& ZEROR
) == 0)
2433 errormsg
= (char_u
*)_(e_zerocount
);
2436 if (ea
.argt
& NOTADR
) /* e.g. :buffer 2, :sleep 3 */
2439 if (ea
.addr_count
== 0)
2444 ea
.line1
= ea
.line2
;
2448 * Be vi compatible: no error message for out of range.
2450 if (ea
.line2
> curbuf
->b_ml
.ml_line_count
)
2451 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2456 * Check for flags: 'l', 'p' and '#'.
2458 if (ea
.argt
& EXFLAGS
)
2460 /* no arguments allowed */
2461 if (!ni
&& !(ea
.argt
& EXTRA
) && *ea
.arg
!= NUL
2462 && *ea
.arg
!= '"' && (*ea
.arg
!= '|' || (ea
.argt
& TRLBAR
) == 0))
2464 errormsg
= (char_u
*)_(e_trailing
);
2468 if (!ni
&& (ea
.argt
& NEEDARG
) && *ea
.arg
== NUL
)
2470 errormsg
= (char_u
*)_(e_argreq
);
2476 * Skip the command when it's not going to be executed.
2477 * The commands like :if, :endif, etc. always need to be executed.
2478 * Also make an exception for commands that handle a trailing command
2485 /* commands that need evaluation */
2501 /* Commands that handle '|' themselves. Check: A command should
2502 * either have the TRLBAR flag, appear in this list or appear in
2503 * the list at ":help :bar". */
2506 case CMD_belowright
:
2511 case CMD_delfunction
:
2539 case CMD_rightbelow
:
2544 case CMD_substitute
:
2556 default: goto doend
;
2561 if (ea
.argt
& XFILE
)
2563 if (expand_filename(&ea
, cmdlinep
, &errormsg
) == FAIL
)
2567 #ifdef FEAT_LISTCMDS
2569 * Accept buffer name. Cannot be used at the same time with a buffer
2570 * number. Don't do this for a user command.
2572 if ((ea
.argt
& BUFNAME
) && *ea
.arg
!= NUL
&& ea
.addr_count
== 0
2573 # ifdef FEAT_USR_CMDS
2574 && !USER_CMDIDX(ea
.cmdidx
)
2579 * :bdelete, :bwipeout and :bunload take several arguments, separated
2580 * by spaces: find next space (skipping over escaped characters).
2581 * The others take one argument: ignore trailing spaces.
2583 if (ea
.cmdidx
== CMD_bdelete
|| ea
.cmdidx
== CMD_bwipeout
2584 || ea
.cmdidx
== CMD_bunload
)
2585 p
= skiptowhite_esc(ea
.arg
);
2588 p
= ea
.arg
+ STRLEN(ea
.arg
);
2589 while (p
> ea
.arg
&& vim_iswhite(p
[-1]))
2592 ea
.line2
= buflist_findpat(ea
.arg
, p
, (ea
.argt
& BUFUNL
) != 0, FALSE
);
2593 if (ea
.line2
< 0) /* failed */
2596 ea
.arg
= skipwhite(p
);
2601 * 6. switch on command name
2603 * The "ea" structure holds the arguments that can be used.
2605 ea
.cmdlinep
= cmdlinep
;
2606 ea
.getline
= fgetline
;
2612 #ifdef FEAT_USR_CMDS
2613 if (USER_CMDIDX(ea
.cmdidx
))
2616 * Execute a user-defined command.
2624 * Call the function to execute the command.
2627 (cmdnames
[ea
.cmdidx
].cmd_func
)(&ea
);
2628 if (ea
.errmsg
!= NULL
)
2629 errormsg
= (char_u
*)_(ea
.errmsg
);
2634 * If the command just executed called do_cmdline(), any throw or ":return"
2635 * or ":finish" encountered there must also check the cstack of the still
2636 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2637 * exception, or reanimate a returned function or finished script file and
2638 * return or finish it again.
2642 else if (check_cstack
)
2644 if (source_finished(fgetline
, cookie
))
2645 do_finish(&ea
, TRUE
);
2646 else if (getline_equal(fgetline
, cookie
, get_func_line
)
2647 && current_func_returned())
2648 do_return(&ea
, TRUE
, FALSE
, NULL
);
2650 need_rethrow
= check_cstack
= FALSE
;
2654 if (curwin
->w_cursor
.lnum
== 0) /* can happen with zero line number */
2655 curwin
->w_cursor
.lnum
= 1;
2657 if (errormsg
!= NULL
&& *errormsg
!= NUL
&& !did_emsg
)
2661 if (errormsg
!= IObuff
)
2663 STRCPY(IObuff
, errormsg
);
2666 STRCAT(errormsg
, ": ");
2667 STRNCAT(errormsg
, *cmdlinep
, IOSIZE
- STRLEN(IObuff
) - 1);
2673 (ea
.cmdidx
!= CMD_SIZE
2674 # ifdef FEAT_USR_CMDS
2675 && !USER_CMDIDX(ea
.cmdidx
)
2677 ) ? cmdnames
[(int)ea
.cmdidx
].cmd_name
: (char_u
*)NULL
);
2680 if (verbose_save
>= 0)
2681 p_verbose
= verbose_save
;
2683 if (cmdmod
.save_ei
!= NULL
)
2685 /* Restore 'eventignore' to the value before ":noautocmd". */
2686 set_string_option_direct((char_u
*)"ei", -1, cmdmod
.save_ei
,
2687 OPT_FREE
, SID_NONE
);
2688 free_string_option(cmdmod
.save_ei
);
2692 cmdmod
= save_cmdmod
;
2696 /* messages could be enabled for a serious error, need to check if the
2697 * counters don't become negative */
2698 msg_silent
-= did_silent
;
2701 emsg_silent
-= did_esilent
;
2702 if (emsg_silent
< 0)
2704 /* Restore msg_scroll, it's set by file I/O commands, even when no
2705 * message is actually displayed. */
2706 msg_scroll
= save_msg_scroll
;
2708 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
2709 * somewhere in the line. Put it back in the first column. */
2719 if (ea
.nextcmd
&& *ea
.nextcmd
== NUL
) /* not really a next command */
2728 #if (_MSC_VER == 1200)
2729 #pragma optimize( "", on )
2733 * Check for an Ex command with optional tail.
2734 * If there is a match advance "pp" to the argument and return TRUE.
2737 checkforcmd(pp
, cmd
, len
)
2738 char_u
**pp
; /* start of command */
2739 char *cmd
; /* name of command */
2740 int len
; /* required length */
2744 for (i
= 0; cmd
[i
] != NUL
; ++i
)
2745 if (((char_u
*)cmd
)[i
] != (*pp
)[i
])
2747 if (i
>= len
&& !isalpha((*pp
)[i
]))
2749 *pp
= skipwhite(*pp
+ i
);
2756 * Find an Ex command by its name, either built-in or user.
2757 * Start of the name can be found at eap->cmd.
2758 * Returns pointer to char after the command name.
2759 * "full" is set to TRUE if the whole command name matched.
2760 * Returns NULL for an ambiguous user command.
2763 find_command(eap
, full
)
2772 * Isolate the command and search for it in the command table.
2774 * - the 'k' command can directly be followed by any character.
2775 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2776 * but :sre[wind] is another command, as are :scrip[tnames],
2777 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
2778 * - the "d" command can directly be followed by 'l' or 'p' flag.
2783 eap
->cmdidx
= CMD_k
;
2786 else if (p
[0] == 's'
2787 && ((p
[1] == 'c' && p
[2] != 's' && p
[2] != 'r'
2788 && p
[3] != 'i' && p
[4] != 'p')
2790 || (p
[1] == 'i' && p
[2] != 'm' && p
[2] != 'l' && p
[2] != 'g')
2792 || (p
[1] == 'r' && p
[2] != 'e')))
2794 eap
->cmdidx
= CMD_substitute
;
2799 while (ASCII_ISALPHA(*p
))
2801 /* check for non-alpha command */
2802 if (p
== eap
->cmd
&& vim_strchr((char_u
*)"@*!=><&~#", *p
) != NULL
)
2804 len
= (int)(p
- eap
->cmd
);
2805 if (*eap
->cmd
== 'd' && (p
[-1] == 'l' || p
[-1] == 'p'))
2807 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2808 * :delete with the 'l' flag. Same for 'p'. */
2809 for (i
= 0; i
< len
; ++i
)
2810 if (eap
->cmd
[i
] != ((char_u
*)"delete")[i
])
2816 eap
->flags
|= EXFLAG_LIST
;
2818 eap
->flags
|= EXFLAG_PRINT
;
2822 if (ASCII_ISLOWER(*eap
->cmd
))
2823 eap
->cmdidx
= cmdidxs
[CharOrdLow(*eap
->cmd
)];
2825 eap
->cmdidx
= cmdidxs
[26];
2827 for ( ; (int)eap
->cmdidx
< (int)CMD_SIZE
;
2828 eap
->cmdidx
= (cmdidx_T
)((int)eap
->cmdidx
+ 1))
2829 if (STRNCMP(cmdnames
[(int)eap
->cmdidx
].cmd_name
, (char *)eap
->cmd
,
2834 && cmdnames
[(int)eap
->cmdidx
].cmd_name
[len
] == NUL
)
2840 #ifdef FEAT_USR_CMDS
2841 /* Look for a user defined command as a last resort */
2842 if (eap
->cmdidx
== CMD_SIZE
&& *eap
->cmd
>= 'A' && *eap
->cmd
<= 'Z')
2844 /* User defined commands may contain digits. */
2845 while (ASCII_ISALNUM(*p
))
2847 p
= find_ucmd(eap
, p
, full
, NULL
, NULL
);
2851 eap
->cmdidx
= CMD_SIZE
;
2857 #ifdef FEAT_USR_CMDS
2859 * Search for a user command that matches "eap->cmd".
2860 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2861 * Return a pointer to just after the command.
2862 * Return NULL if there is no matching command.
2865 find_ucmd(eap
, p
, full
, xp
, compl)
2867 char_u
*p
; /* end of the command (possibly including count) */
2868 int *full
; /* set to TRUE for a full match */
2869 expand_T
*xp
; /* used for completion, NULL otherwise */
2870 int *compl; /* completion flags or NULL */
2872 int len
= (int)(p
- eap
->cmd
);
2873 int j
, k
, matchlen
= 0;
2876 int possible
= FALSE
;
2877 char_u
*cp
, *np
; /* Point into typed cmd and test name */
2879 int amb_local
= FALSE
; /* Found ambiguous buffer-local command,
2880 only full match global is accepted. */
2883 * Look for buffer-local user commands first, then global ones.
2885 gap
= &curbuf
->b_ucmds
;
2888 for (j
= 0; j
< gap
->ga_len
; ++j
)
2890 uc
= USER_CMD_GA(gap
, j
);
2894 while (k
< len
&& *np
!= NUL
&& *cp
++ == *np
++)
2896 if (k
== len
|| (*np
== NUL
&& vim_isdigit(eap
->cmd
[k
])))
2898 /* If finding a second match, the command is ambiguous. But
2899 * not if a buffer-local command wasn't a full match and a
2900 * global command is a full match. */
2901 if (k
== len
&& found
&& *np
!= NUL
)
2908 if (!found
|| (k
== len
&& *np
== NUL
))
2910 /* If we matched up to a digit, then there could
2911 * be another command including the digit that we
2912 * should use instead.
2920 eap
->cmdidx
= CMD_USER
;
2922 eap
->cmdidx
= CMD_USER_BUF
;
2923 eap
->argt
= (long)uc
->uc_argt
;
2926 # ifdef FEAT_CMDL_COMPL
2928 *compl = uc
->uc_compl
;
2932 xp
->xp_arg
= uc
->uc_compl_arg
;
2933 xp
->xp_scriptID
= uc
->uc_scriptID
;
2937 /* Do not search for further abbreviations
2938 * if this is an exact match. */
2940 if (k
== len
&& *np
== NUL
)
2951 /* Stop if we found a full match or searched all. */
2952 if (j
< gap
->ga_len
|| gap
== &ucmds
)
2957 /* Only found ambiguous matches. */
2961 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
2965 /* The match we found may be followed immediately by a number. Move "p"
2966 * back to point to it. */
2967 if (found
|| possible
)
2968 return p
+ (matchlen
- len
);
2973 #if defined(FEAT_EVAL) || defined(PROTO)
2974 static struct cmdmod
2978 int has_count
; /* :123verbose :3tab */
2980 {"aboveleft", 3, FALSE
},
2981 {"belowright", 3, FALSE
},
2982 {"botright", 2, FALSE
},
2983 {"browse", 3, FALSE
},
2984 {"confirm", 4, FALSE
},
2986 {"keepalt", 5, FALSE
},
2987 {"keepjumps", 5, FALSE
},
2988 {"keepmarks", 3, FALSE
},
2989 {"leftabove", 5, FALSE
},
2990 {"lockmarks", 3, FALSE
},
2991 {"noautocmd", 3, FALSE
},
2992 {"rightbelow", 6, FALSE
},
2993 {"sandbox", 3, FALSE
},
2994 {"silent", 3, FALSE
},
2996 {"topleft", 2, FALSE
},
2997 {"verbose", 4, TRUE
},
2998 {"vertical", 4, FALSE
},
3002 * Return length of a command modifier (including optional count).
3003 * Return zero when it's not a modifier.
3012 if (VIM_ISDIGIT(*cmd
))
3013 p
= skipwhite(skipdigits(cmd
));
3014 for (i
= 0; i
< (int)(sizeof(cmdmods
) / sizeof(struct cmdmod
)); ++i
)
3016 for (j
= 0; p
[j
] != NUL
; ++j
)
3017 if (p
[j
] != cmdmods
[i
].name
[j
])
3019 if (!isalpha(p
[j
]) && j
>= cmdmods
[i
].minlen
3020 && (p
== cmd
|| cmdmods
[i
].has_count
))
3021 return j
+ (int)(p
- cmd
);
3027 * Return > 0 if an Ex command "name" exists.
3028 * Return 2 if there is an exact match.
3029 * Return 3 if there is an ambiguous match.
3041 /* Check command modifiers. */
3042 for (i
= 0; i
< (int)(sizeof(cmdmods
) / sizeof(struct cmdmod
)); ++i
)
3044 for (j
= 0; name
[j
] != NUL
; ++j
)
3045 if (name
[j
] != cmdmods
[i
].name
[j
])
3047 if (name
[j
] == NUL
&& j
>= cmdmods
[i
].minlen
)
3048 return (cmdmods
[i
].name
[j
] == NUL
? 2 : 1);
3051 /* Check built-in commands and user defined commands.
3052 * For ":2match" and ":3match" we need to skip the number. */
3053 ea
.cmd
= (*name
== '2' || *name
== '3') ? name
+ 1 : name
;
3054 ea
.cmdidx
= (cmdidx_T
)0;
3055 p
= find_command(&ea
, &full
);
3058 if (vim_isdigit(*name
) && ea
.cmdidx
!= CMD_match
)
3060 if (*skipwhite(p
) != NUL
)
3061 return 0; /* trailing garbage */
3062 return (ea
.cmdidx
== CMD_SIZE
? 0 : (full
? 2 : 1));
3067 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3068 * we don't need/want deleted. Maybe this could be done better if we didn't
3069 * repeat all this stuff. The only problem is that they may not stay
3070 * perfectly compatible with each other, but then the command line syntax
3071 * probably won't change that much -- webb.
3074 set_one_cmd_context(xp
, buff
)
3076 char_u
*buff
; /* buffer for command string */
3082 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3083 int compl = EXPAND_NOTHING
;
3085 #ifdef FEAT_CMDL_COMPL
3088 int forceit
= FALSE
;
3089 int usefilter
= FALSE
; /* filter instead of file name */
3092 xp
->xp_pattern
= buff
;
3093 xp
->xp_context
= EXPAND_COMMANDS
; /* Default until we get past command */
3097 * 2. skip comment lines and leading space, colons or bars
3099 for (cmd
= buff
; vim_strchr((char_u
*)" \t:|", *cmd
) != NULL
; cmd
++)
3101 xp
->xp_pattern
= cmd
;
3105 if (*cmd
== '"') /* ignore comment lines */
3107 xp
->xp_context
= EXPAND_NOTHING
;
3112 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3114 cmd
= skip_range(cmd
, &xp
->xp_context
);
3119 xp
->xp_pattern
= cmd
;
3124 xp
->xp_context
= EXPAND_NOTHING
;
3128 if (*cmd
== '|' || *cmd
== '\n')
3129 return cmd
+ 1; /* There's another command */
3132 * Isolate the command and search for it in the command table.
3134 * - the 'k' command can directly be followed by any character, but
3135 * do accept "keepmarks", "keepalt" and "keepjumps".
3136 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3138 if (*cmd
== 'k' && cmd
[1] != 'e')
3146 while (ASCII_ISALPHA(*p
) || *p
== '*') /* Allow * wild card */
3148 /* check for non-alpha command */
3149 if (p
== cmd
&& vim_strchr((char_u
*)"@*!=><&~#", *p
) != NULL
)
3151 len
= (int)(p
- cmd
);
3155 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
3158 for (ea
.cmdidx
= (cmdidx_T
)0; (int)ea
.cmdidx
< (int)CMD_SIZE
;
3159 ea
.cmdidx
= (cmdidx_T
)((int)ea
.cmdidx
+ 1))
3160 if (STRNCMP(cmdnames
[(int)ea
.cmdidx
].cmd_name
, cmd
, (size_t)len
) == 0)
3163 #ifdef FEAT_USR_CMDS
3164 if (cmd
[0] >= 'A' && cmd
[0] <= 'Z')
3166 while (ASCII_ISALNUM(*p
) || *p
== '*') /* Allow * wild card */
3168 len
= (int)(p
- cmd
);
3174 * If the cursor is touching the command, and it ends in an alpha-numeric
3175 * character, complete the command name.
3177 if (*p
== NUL
&& ASCII_ISALNUM(p
[-1]))
3180 if (ea
.cmdidx
== CMD_SIZE
)
3182 if (*cmd
== 's' && vim_strchr((char_u
*)"cgriI", cmd
[1]) != NULL
)
3184 ea
.cmdidx
= CMD_substitute
;
3187 #ifdef FEAT_USR_CMDS
3188 else if (cmd
[0] >= 'A' && cmd
[0] <= 'Z')
3191 p
= find_ucmd(&ea
, p
, NULL
, xp
,
3192 # if defined(FEAT_CMDL_COMPL)
3199 ea
.cmdidx
= CMD_SIZE
; /* ambiguous user command */
3203 if (ea
.cmdidx
== CMD_SIZE
)
3205 /* Not still touching the command and it was an illegal one */
3206 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
3210 xp
->xp_context
= EXPAND_NOTHING
; /* Default now that we're past command */
3212 if (*p
== '!') /* forced commands */
3219 * 5. parse arguments
3221 #ifdef FEAT_USR_CMDS
3222 if (!USER_CMDIDX(ea
.cmdidx
))
3224 ea
.argt
= (long)cmdnames
[(int)ea
.cmdidx
].cmd_argt
;
3228 if (ea
.cmdidx
== CMD_write
|| ea
.cmdidx
== CMD_update
)
3230 if (*arg
== '>') /* append */
3234 arg
= skipwhite(arg
);
3236 else if (*arg
== '!' && ea
.cmdidx
== CMD_write
) /* :w !filter */
3243 if (ea
.cmdidx
== CMD_read
)
3245 usefilter
= forceit
; /* :r! filter if forced */
3246 if (*arg
== '!') /* :r !filter */
3253 if (ea
.cmdidx
== CMD_lshift
|| ea
.cmdidx
== CMD_rshift
)
3255 while (*arg
== *cmd
) /* allow any number of '>' or '<' */
3257 arg
= skipwhite(arg
);
3260 /* Does command allow "+command"? */
3261 if ((ea
.argt
& EDITCMD
) && !usefilter
&& *arg
== '+')
3263 /* Check if we're in the +command */
3265 arg
= skip_cmd_arg(arg
, FALSE
);
3267 /* Still touching the command after '+'? */
3271 /* Skip space(s) after +command to get to the real argument */
3272 arg
= skipwhite(arg
);
3276 * Check for '|' to separate commands and '"' to start comments.
3277 * Don't do this for ":read !cmd" and ":write !cmd".
3279 if ((ea
.argt
& TRLBAR
) && !usefilter
)
3282 /* ":redir @" is not the start of a comment */
3283 if (ea
.cmdidx
== CMD_redir
&& p
[0] == '@' && p
[1] == '"')
3292 else if ( (*p
== '"' && !(ea
.argt
& NOTRLCOM
))
3293 || *p
== '|' || *p
== '\n')
3295 if (*(p
- 1) != '\\')
3297 if (*p
== '|' || *p
== '\n')
3299 return NULL
; /* It's a comment */
3306 /* no arguments allowed */
3307 if (!(ea
.argt
& EXTRA
) && *arg
!= NUL
&&
3308 vim_strchr((char_u
*)"|\"", *arg
) == NULL
)
3311 /* Find start of last argument (argument just before cursor): */
3312 p
= buff
+ STRLEN(buff
);
3313 while (p
!= arg
&& *p
!= ' ' && *p
!= TAB
)
3315 if (*p
== ' ' || *p
== TAB
)
3319 if (ea
.argt
& XFILE
)
3322 int in_quote
= FALSE
;
3323 char_u
*bow
= NULL
; /* Beginning of word */
3326 * Allow spaces within back-quotes to count as part of the argument
3329 xp
->xp_pattern
= skipwhite(arg
);
3339 if (c
== '\\' && p
[1] != NUL
)
3348 in_quote
= !in_quote
;
3350 /* An argument can contain just about everything, except
3351 * characters that end the command and white space. */
3352 else if (c
== '|' || c
== '\n' || c
== '"' || (vim_iswhite(c
)
3353 #ifdef SPACE_IN_FILENAME
3354 && (!(ea
.argt
& NOSPC
) || usefilter
)
3358 len
= 0; /* avoid getting stuck when space is in 'isfname' */
3367 if (c
== '`' || vim_isfilec_or_wc(c
))
3371 len
= (*mb_ptr2len
)(p
);
3387 * If we are still inside the quotes, and we passed a space, just
3388 * expand from there.
3390 if (bow
!= NULL
&& in_quote
)
3391 xp
->xp_pattern
= bow
;
3392 xp
->xp_context
= EXPAND_FILES
;
3394 #ifndef BACKSLASH_IN_FILENAME
3395 /* For a shell command more chars need to be escaped. */
3396 if (usefilter
|| ea
.cmdidx
== CMD_bang
)
3398 xp
->xp_shell
= TRUE
;
3400 /* When still after the command name expand executables. */
3401 if (xp
->xp_pattern
== skipwhite(arg
))
3402 xp
->xp_context
= EXPAND_SHELLCMD
;
3406 /* Check for environment variable */
3407 if (*xp
->xp_pattern
== '$'
3408 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3409 || *xp
->xp_pattern
== '%'
3413 for (p
= xp
->xp_pattern
+ 1; *p
!= NUL
; ++p
)
3418 xp
->xp_context
= EXPAND_ENV_VARS
;
3420 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3421 /* Avoid that the assignment uses EXPAND_FILES again. */
3422 if (compl != EXPAND_USER_DEFINED
&& compl != EXPAND_USER_LIST
)
3423 compl = EXPAND_ENV_VARS
;
3430 * 6. switch on command name
3438 if (xp
->xp_context
== EXPAND_FILES
)
3439 xp
->xp_context
= EXPAND_DIRECTORIES
;
3442 xp
->xp_context
= EXPAND_HELP
;
3443 xp
->xp_pattern
= arg
;
3446 /* Command modifiers: return the argument.
3447 * Also for commands with an argument that is a command. */
3450 case CMD_belowright
:
3456 case CMD_folddoclosed
:
3457 case CMD_folddoopen
:
3464 case CMD_rightbelow
:
3474 #ifdef FEAT_CMDL_COMPL
3475 # ifdef FEAT_SEARCH_EXTRA
3477 if (*arg
== NUL
|| !ends_excmd(*arg
))
3479 /* also complete "None" */
3480 set_context_in_echohl_cmd(xp
, arg
);
3481 arg
= skipwhite(skiptowhite(arg
));
3484 xp
->xp_context
= EXPAND_NOTHING
;
3485 arg
= skip_regexp(arg
+ 1, *arg
, p_magic
, NULL
);
3488 return find_nextcmd(arg
);
3492 * All completion for the +cmdline_compl feature goes here.
3495 # ifdef FEAT_USR_CMDS
3497 /* Check for attributes */
3500 arg
++; /* Skip "-" */
3501 p
= skiptowhite(arg
);
3504 /* Cursor is still in the attribute */
3505 p
= vim_strchr(arg
, '=');
3508 /* No "=", so complete attribute names */
3509 xp
->xp_context
= EXPAND_USER_CMD_FLAGS
;
3510 xp
->xp_pattern
= arg
;
3514 /* For the -complete and -nargs attributes, we complete
3515 * their arguments as well.
3517 if (STRNICMP(arg
, "complete", p
- arg
) == 0)
3519 xp
->xp_context
= EXPAND_USER_COMPLETE
;
3520 xp
->xp_pattern
= p
+ 1;
3523 else if (STRNICMP(arg
, "nargs", p
- arg
) == 0)
3525 xp
->xp_context
= EXPAND_USER_NARGS
;
3526 xp
->xp_pattern
= p
+ 1;
3534 /* After the attributes comes the new command name */
3535 p
= skiptowhite(arg
);
3538 xp
->xp_context
= EXPAND_USER_COMMANDS
;
3539 xp
->xp_pattern
= arg
;
3543 /* And finally comes a normal command */
3544 return skipwhite(p
);
3546 case CMD_delcommand
:
3547 xp
->xp_context
= EXPAND_USER_COMMANDS
;
3548 xp
->xp_pattern
= arg
;
3554 delim
= *arg
; /* get the delimiter */
3556 ++arg
; /* skip delimiter if there is one */
3558 while (arg
[0] != NUL
&& arg
[0] != delim
)
3560 if (arg
[0] == '\\' && arg
[1] != NUL
)
3568 case CMD_substitute
:
3572 /* skip "from" part */
3574 arg
= skip_regexp(arg
, delim
, p_magic
, NULL
);
3576 /* skip "to" part */
3577 while (arg
[0] != NUL
&& arg
[0] != delim
)
3579 if (arg
[0] == '\\' && arg
[1] != NUL
)
3583 if (arg
[0] != NUL
) /* skip delimiter */
3585 while (arg
[0] && vim_strchr((char_u
*)"|\"#", arg
[0]) == NULL
)
3599 arg
= skipwhite(skipdigits(arg
)); /* skip count */
3600 if (*arg
== '/') /* Match regexp, not just whole words */
3602 for (++arg
; *arg
&& *arg
!= '/'; arg
++)
3603 if (*arg
== '\\' && arg
[1] != NUL
)
3607 arg
= skipwhite(arg
+ 1);
3609 /* Check for trailing illegal characters */
3610 if (*arg
&& vim_strchr((char_u
*)"|\"\n", *arg
) == NULL
)
3611 xp
->xp_context
= EXPAND_NOTHING
;
3619 return set_context_in_autocmd(xp
, arg
, FALSE
);
3623 return set_context_in_autocmd(xp
, arg
, TRUE
);
3626 set_context_in_set_cmd(xp
, arg
, 0);
3629 set_context_in_set_cmd(xp
, arg
, OPT_GLOBAL
);
3632 set_context_in_set_cmd(xp
, arg
, OPT_LOCAL
);
3645 xp
->xp_context
= EXPAND_TAGS_LISTFILES
;
3647 xp
->xp_context
= EXPAND_TAGS
;
3648 xp
->xp_pattern
= arg
;
3651 xp
->xp_context
= EXPAND_AUGROUP
;
3652 xp
->xp_pattern
= arg
;
3656 set_context_in_syntax_cmd(xp
, arg
);
3672 set_context_for_expression(xp
, arg
, ea
.cmdidx
);
3676 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3677 arg
= xp
->xp_pattern
+ 1;
3678 xp
->xp_context
= EXPAND_USER_VARS
;
3679 xp
->xp_pattern
= arg
;
3683 case CMD_delfunction
:
3684 xp
->xp_context
= EXPAND_USER_FUNC
;
3685 xp
->xp_pattern
= arg
;
3689 set_context_in_echohl_cmd(xp
, arg
);
3693 set_context_in_highlight_cmd(xp
, arg
);
3699 set_context_in_cscope_cmd(xp
, arg
, ea
.cmdidx
);
3704 set_context_in_sign_cmd(xp
, arg
);
3707 #ifdef FEAT_LISTCMDS
3711 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3712 arg
= xp
->xp_pattern
+ 1;
3717 xp
->xp_context
= EXPAND_BUFFERS
;
3718 xp
->xp_pattern
= arg
;
3721 #ifdef FEAT_USR_CMDS
3724 if (compl != EXPAND_NOTHING
)
3726 /* XFILE: file names are handled above */
3727 if (!(ea
.argt
& XFILE
))
3730 if (compl == EXPAND_MENUS
)
3731 return set_context_in_menu_cmd(xp
, cmd
, arg
, forceit
);
3733 if (compl == EXPAND_COMMANDS
)
3735 if (compl == EXPAND_MAPPINGS
)
3736 return set_context_in_map_cmd(xp
, (char_u
*)"map",
3737 arg
, forceit
, FALSE
, FALSE
, CMD_map
);
3738 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3739 arg
= xp
->xp_pattern
+ 1;
3740 xp
->xp_pattern
= arg
;
3742 xp
->xp_context
= compl;
3746 case CMD_map
: case CMD_noremap
:
3747 case CMD_nmap
: case CMD_nnoremap
:
3748 case CMD_vmap
: case CMD_vnoremap
:
3749 case CMD_omap
: case CMD_onoremap
:
3750 case CMD_imap
: case CMD_inoremap
:
3751 case CMD_cmap
: case CMD_cnoremap
:
3752 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3753 FALSE
, FALSE
, ea
.cmdidx
);
3760 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3761 FALSE
, TRUE
, ea
.cmdidx
);
3762 case CMD_abbreviate
: case CMD_noreabbrev
:
3763 case CMD_cabbrev
: case CMD_cnoreabbrev
:
3764 case CMD_iabbrev
: case CMD_inoreabbrev
:
3765 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3766 TRUE
, FALSE
, ea
.cmdidx
);
3767 case CMD_unabbreviate
:
3770 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3771 TRUE
, TRUE
, ea
.cmdidx
);
3773 case CMD_menu
: case CMD_noremenu
: case CMD_unmenu
:
3774 case CMD_amenu
: case CMD_anoremenu
: case CMD_aunmenu
:
3775 case CMD_nmenu
: case CMD_nnoremenu
: case CMD_nunmenu
:
3776 case CMD_vmenu
: case CMD_vnoremenu
: case CMD_vunmenu
:
3777 case CMD_omenu
: case CMD_onoremenu
: case CMD_ounmenu
:
3778 case CMD_imenu
: case CMD_inoremenu
: case CMD_iunmenu
:
3779 case CMD_cmenu
: case CMD_cnoremenu
: case CMD_cunmenu
:
3780 case CMD_tmenu
: case CMD_tunmenu
:
3781 case CMD_popup
: case CMD_tearoff
: case CMD_emenu
:
3782 #ifdef FEAT_GUI_MACVIM
3785 return set_context_in_menu_cmd(xp
, cmd
, arg
, forceit
);
3788 case CMD_colorscheme
:
3789 xp
->xp_context
= EXPAND_COLORS
;
3790 xp
->xp_pattern
= arg
;
3794 xp
->xp_context
= EXPAND_COMPILER
;
3795 xp
->xp_pattern
= arg
;
3798 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3799 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3801 if (*skiptowhite(arg
) == NUL
)
3803 xp
->xp_context
= EXPAND_LANGUAGE
;
3804 xp
->xp_pattern
= arg
;
3807 xp
->xp_context
= EXPAND_NOTHING
;
3811 #ifdef FEAT_GUI_MACVIM
3813 xp
->xp_context
= EXPAND_MACACTION
;
3814 xp
->xp_pattern
= arg
;
3819 #endif /* FEAT_CMDL_COMPL */
3828 * skip a range specifier of the form: addr [,addr] [;addr] ..
3830 * Backslashed delimiters after / or ? will be skipped, and commands will
3831 * not be expanded between /'s and ?'s or after "'".
3833 * Also skip white space and ":" characters.
3834 * Returns the "cmd" pointer advanced to beyond the range.
3837 skip_range(cmd
, ctx
)
3839 int *ctx
; /* pointer to xp_context or NULL */
3843 while (vim_strchr((char_u
*)" \t0123456789.$%'/?-+,;", *cmd
) != NULL
)
3847 if (*++cmd
== NUL
&& ctx
!= NULL
)
3848 *ctx
= EXPAND_NOTHING
;
3850 else if (*cmd
== '/' || *cmd
== '?')
3853 while (*cmd
!= NUL
&& *cmd
!= delim
)
3854 if (*cmd
++ == '\\' && *cmd
!= NUL
)
3856 if (*cmd
== NUL
&& ctx
!= NULL
)
3857 *ctx
= EXPAND_NOTHING
;
3863 /* Skip ":" and white space. */
3865 cmd
= skipwhite(cmd
+ 1);
3871 * get a single EX address
3873 * Set ptr to the next character after the part that was interpreted.
3874 * Set ptr to NULL when an error is encountered.
3876 * Return MAXLNUM when no Ex address was found.
3879 get_address(ptr
, skip
, to_other_file
)
3881 int skip
; /* only skip the address, don't use it */
3882 int to_other_file
; /* flag: may jump to other file */
3892 cmd
= skipwhite(*ptr
);
3898 case '.': /* '.' - Cursor position */
3900 lnum
= curwin
->w_cursor
.lnum
;
3903 case '$': /* '$' - last line */
3905 lnum
= curbuf
->b_ml
.ml_line_count
;
3908 case '\'': /* ''' - mark */
3918 /* Only accept a mark in another file when it is
3919 * used by itself: ":'M". */
3920 fp
= getmark(*cmd
, to_other_file
&& cmd
[1] == NUL
);
3922 if (fp
== (pos_T
*)-1)
3923 /* Jumped to another file. */
3924 lnum
= curwin
->w_cursor
.lnum
;
3927 if (check_mark(fp
) == FAIL
)
3938 case '?': /* '/' or '?' - search */
3940 if (skip
) /* skip "/pat/" */
3942 cmd
= skip_regexp(cmd
, c
, (int)p_magic
, NULL
);
3948 pos
= curwin
->w_cursor
; /* save curwin->w_cursor */
3950 * When '/' or '?' follows another address, start
3953 if (lnum
!= MAXLNUM
)
3954 curwin
->w_cursor
.lnum
= lnum
;
3956 * Start a forward search at the end of the line.
3957 * Start a backward search at the start of the line.
3958 * This makes sure we never match in the current
3959 * line, and can match anywhere in the
3960 * next/previous line.
3963 curwin
->w_cursor
.col
= MAXCOL
;
3965 curwin
->w_cursor
.col
= 0;
3967 if (!do_search(NULL
, c
, cmd
, 1L,
3968 SEARCH_HIS
| SEARCH_MSG
, NULL
))
3970 curwin
->w_cursor
= pos
;
3974 lnum
= curwin
->w_cursor
.lnum
;
3975 curwin
->w_cursor
= pos
;
3976 /* adjust command string pointer */
3977 cmd
+= searchcmdlen
;
3981 case '\\': /* "\?", "\/" or "\&", repeat search */
3985 else if (*cmd
== '?' || *cmd
== '/')
3989 EMSG(_(e_backslash
));
3997 * When search follows another address, start from
4000 if (lnum
!= MAXLNUM
)
4003 pos
.lnum
= curwin
->w_cursor
.lnum
;
4006 * Start the search just like for the above
4013 if (searchit(curwin
, curbuf
, &pos
,
4014 *cmd
== '?' ? BACKWARD
: FORWARD
,
4015 (char_u
*)"", 1L, SEARCH_MSG
,
4016 i
, (linenr_T
)0, NULL
) != FAIL
)
4028 if (VIM_ISDIGIT(*cmd
)) /* absolute line number */
4029 lnum
= getdigits(&cmd
);
4034 cmd
= skipwhite(cmd
);
4035 if (*cmd
!= '-' && *cmd
!= '+' && !VIM_ISDIGIT(*cmd
))
4038 if (lnum
== MAXLNUM
)
4039 lnum
= curwin
->w_cursor
.lnum
; /* "+1" is same as ".+1" */
4040 if (VIM_ISDIGIT(*cmd
))
4041 i
= '+'; /* "number" is same as "+number" */
4044 if (!VIM_ISDIGIT(*cmd
)) /* '+' is '+1', but '+0' is not '+1' */
4047 n
= getdigits(&cmd
);
4053 } while (*cmd
== '/' || *cmd
== '?');
4061 * Get flags from an Ex command argument.
4067 while (vim_strchr((char_u
*)"lp#", *eap
->arg
) != NULL
)
4069 if (*eap
->arg
== 'l')
4070 eap
->flags
|= EXFLAG_LIST
;
4071 else if (*eap
->arg
== 'p')
4072 eap
->flags
|= EXFLAG_PRINT
;
4074 eap
->flags
|= EXFLAG_NR
;
4075 eap
->arg
= skipwhite(eap
->arg
+ 1);
4080 * Function called for command which is Not Implemented. NI!
4087 eap
->errmsg
= (char_u
*)N_("E319: Sorry, the command is not available in this version");
4090 #ifdef HAVE_EX_SCRIPT_NI
4092 * Function called for script command which is Not Implemented. NI!
4093 * Skips over ":perl <<EOF" constructs.
4102 vim_free(script_get(eap
, eap
->arg
));
4107 * Check range in Ex command for validity.
4108 * Return NULL when valid, error message when invalid.
4116 || eap
->line1
> eap
->line2
4117 || ((eap
->argt
& RANGE
)
4118 && !(eap
->argt
& NOTADR
)
4119 && eap
->line2
> curbuf
->b_ml
.ml_line_count
4121 + (eap
->cmdidx
== CMD_diffget
)
4124 return (char_u
*)_(e_invrange
);
4129 * Correct the range for zero line number, if required.
4135 if (!(eap
->argt
& ZEROR
)) /* zero in range not allowed */
4137 if (eap
->line1
== 0)
4139 if (eap
->line2
== 0)
4144 #ifdef FEAT_QUICKFIX
4145 static char_u
*skip_grep_pat
__ARGS((exarg_T
*eap
));
4148 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4149 * pattern. Otherwise return eap->arg.
4155 char_u
*p
= eap
->arg
;
4157 if (*p
!= NUL
&& (eap
->cmdidx
== CMD_vimgrep
|| eap
->cmdidx
== CMD_lvimgrep
4158 || eap
->cmdidx
== CMD_vimgrepadd
4159 || eap
->cmdidx
== CMD_lvimgrepadd
4160 || grep_internal(eap
->cmdidx
)))
4162 p
= skip_vimgrep_pat(p
, NULL
, NULL
);
4170 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4171 * in the command line, so that things like % get expanded.
4174 replace_makeprg(eap
, p
, cmdlinep
)
4179 char_u
*new_cmdline
;
4187 * Don't do it when ":vimgrep" is used for ":grep".
4189 if ((eap
->cmdidx
== CMD_make
|| eap
->cmdidx
== CMD_lmake
4190 || eap
->cmdidx
== CMD_grep
|| eap
->cmdidx
== CMD_lgrep
4191 || eap
->cmdidx
== CMD_grepadd
4192 || eap
->cmdidx
== CMD_lgrepadd
)
4193 && !grep_internal(eap
->cmdidx
))
4195 if (eap
->cmdidx
== CMD_grep
|| eap
->cmdidx
== CMD_lgrep
4196 || eap
->cmdidx
== CMD_grepadd
|| eap
->cmdidx
== CMD_lgrepadd
)
4198 if (*curbuf
->b_p_gp
== NUL
)
4201 program
= curbuf
->b_p_gp
;
4205 if (*curbuf
->b_p_mp
== NUL
)
4208 program
= curbuf
->b_p_mp
;
4213 if ((pos
= (char_u
*)strstr((char *)program
, "$*")) != NULL
)
4215 /* replace $* by given arguments */
4217 while ((pos
= (char_u
*)strstr((char *)pos
+ 2, "$*")) != NULL
)
4219 len
= (int)STRLEN(p
);
4220 new_cmdline
= alloc((int)(STRLEN(program
) + i
* (len
- 2) + 1));
4221 if (new_cmdline
== NULL
)
4222 return NULL
; /* out of memory */
4224 while ((pos
= (char_u
*)strstr((char *)program
, "$*")) != NULL
)
4226 i
= (int)(pos
- program
);
4227 STRNCPY(ptr
, program
, i
);
4228 STRCPY(ptr
+= i
, p
);
4232 STRCPY(ptr
, program
);
4236 new_cmdline
= alloc((int)(STRLEN(program
) + STRLEN(p
) + 2));
4237 if (new_cmdline
== NULL
)
4238 return NULL
; /* out of memory */
4239 STRCPY(new_cmdline
, program
);
4240 STRCAT(new_cmdline
, " ");
4241 STRCAT(new_cmdline
, p
);
4245 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4246 vim_free(*cmdlinep
);
4247 *cmdlinep
= new_cmdline
;
4255 * Expand file name in Ex command argument.
4256 * Return FAIL for failure, OK otherwise.
4259 expand_filename(eap
, cmdlinep
, errormsgp
)
4264 int has_wildcards
; /* need to expand wildcards */
4271 #ifdef FEAT_QUICKFIX
4272 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4273 p
= skip_grep_pat(eap
);
4279 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4280 * the file name contains a wildcard it should not cause expanding.
4281 * (it will be expanded anyway if there is a wildcard before replacing).
4283 has_wildcards
= mch_has_wildcard(p
);
4287 /* Skip over `=expr`, wildcards in it are not expanded. */
4288 if (p
[0] == '`' && p
[1] == '=')
4291 (void)skip_expr(&p
);
4298 * Quick check if this cannot be the start of a special string.
4299 * Also removes backslash before '%', '#' and '<'.
4301 if (vim_strchr((char_u
*)"%#<", *p
) == NULL
)
4308 * Try to find a match at this position.
4310 repl
= eval_vars(p
, eap
->arg
, &srclen
, &(eap
->do_ecmd_lnum
),
4311 errormsgp
, &escaped
);
4312 if (*errormsgp
!= NULL
) /* error detected */
4314 if (repl
== NULL
) /* no match found */
4320 /* Wildcards won't be expanded below, the replacement is taken
4321 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4322 if (vim_strchr(repl
, '$') != NULL
|| vim_strchr(repl
, '~') != NULL
)
4326 repl
= expand_env_save(repl
);
4330 /* Need to escape white space et al. with a backslash.
4331 * Don't do this for:
4332 * - replacement that already has been escaped: "##"
4333 * - shell commands (may have to use quotes instead).
4334 * - non-unix systems when there is a single argument (spaces don't
4335 * separate arguments then).
4339 && eap
->cmdidx
!= CMD_bang
4340 && eap
->cmdidx
!= CMD_make
4341 && eap
->cmdidx
!= CMD_lmake
4342 && eap
->cmdidx
!= CMD_grep
4343 && eap
->cmdidx
!= CMD_lgrep
4344 && eap
->cmdidx
!= CMD_grepadd
4345 && eap
->cmdidx
!= CMD_lgrepadd
4347 && !(eap
->argt
& NOSPC
)
4352 #ifdef BACKSLASH_IN_FILENAME
4353 /* Don't escape a backslash here, because rem_backslash() doesn't
4354 * remove it later. */
4355 static char_u
*nobslash
= (char_u
*)" \t\"|";
4356 # define ESCAPE_CHARS nobslash
4358 # define ESCAPE_CHARS escape_chars
4361 for (l
= repl
; *l
; ++l
)
4362 if (vim_strchr(ESCAPE_CHARS
, *l
) != NULL
)
4364 l
= vim_strsave_escaped(repl
, ESCAPE_CHARS
);
4374 /* For a shell command a '!' must be escaped. */
4375 if ((eap
->usefilter
|| eap
->cmdidx
== CMD_bang
)
4376 && vim_strpbrk(repl
, (char_u
*)"!&;()<>") != NULL
)
4380 l
= vim_strsave_escaped(repl
, (char_u
*)"!&;()<>");
4385 /* For a sh-like shell escape "!" another time. */
4386 if (strstr((char *)p_sh
, "sh") != NULL
)
4388 l
= vim_strsave_escaped(repl
, (char_u
*)"!");
4398 p
= repl_cmdline(eap
, p
, srclen
, repl
, cmdlinep
);
4405 * One file argument: Expand wildcards.
4406 * Don't do this with ":r !command" or ":w !command".
4408 if ((eap
->argt
& NOSPC
) && !eap
->usefilter
)
4411 * May do this twice:
4412 * 1. Replace environment variables.
4413 * 2. Replace any other wildcards, remove backslashes.
4415 for (n
= 1; n
<= 2; ++n
)
4421 * Only for Unix we check for more than one file name.
4422 * For other systems spaces are considered to be part
4424 * Only check here if there is no wildcard, otherwise
4425 * ExpandOne() will check for errors. This allows
4426 * ":e `ls ve*.c`" on Unix.
4429 for (p
= eap
->arg
; *p
; ++p
)
4431 /* skip escaped characters */
4432 if (p
[1] && (*p
== '\\' || *p
== Ctrl_V
))
4434 else if (vim_iswhite(*p
))
4436 *errormsgp
= (char_u
*)_("E172: Only one file name allowed");
4443 * Halve the number of backslashes (this is Vi compatible).
4444 * For Unix and OS/2, when wildcards are expanded, this is
4445 * done by ExpandOne() below.
4447 #if defined(UNIX) || defined(OS2)
4450 backslash_halve(eap
->arg
);
4458 * First loop: May expand environment variables. This
4459 * can be done much faster with expand_env() than with
4460 * something else (e.g., calling a shell).
4461 * After expanding environment variables, check again
4462 * if there are still wildcards present.
4464 if (vim_strchr(eap
->arg
, '$') != NULL
4465 || vim_strchr(eap
->arg
, '~') != NULL
)
4467 expand_env_esc(eap
->arg
, NameBuff
, MAXPATHL
,
4469 has_wildcards
= mch_has_wildcard(NameBuff
);
4480 xpc
.xp_context
= EXPAND_FILES
;
4481 p
= ExpandOne(&xpc
, eap
->arg
, NULL
,
4482 WILD_LIST_NOTFOUND
|WILD_ADD_SLASH
,
4489 (void)repl_cmdline(eap
, eap
->arg
, (int)STRLEN(eap
->arg
),
4491 if (n
== 2) /* p came from ExpandOne() */
4501 * Replace part of the command line, keeping eap->cmd, eap->arg and
4502 * eap->nextcmd correct.
4503 * "src" points to the part that is to be replaced, of length "srclen".
4504 * "repl" is the replacement string.
4505 * Returns a pointer to the character after the replaced string.
4506 * Returns NULL for failure.
4509 repl_cmdline(eap
, src
, srclen
, repl
, cmdlinep
)
4518 char_u
*new_cmdline
;
4521 * The new command line is build in new_cmdline[].
4522 * First allocate it.
4523 * Careful: a "+cmd" argument may have been NUL terminated.
4525 len
= (int)STRLEN(repl
);
4526 i
= (int)(src
- *cmdlinep
) + (int)STRLEN(src
+ srclen
) + len
+ 3;
4527 if (eap
->nextcmd
!= NULL
)
4528 i
+= (int)STRLEN(eap
->nextcmd
);/* add space for next command */
4529 if ((new_cmdline
= alloc((unsigned)i
)) == NULL
)
4530 return NULL
; /* out of memory! */
4533 * Copy the stuff before the expanded part.
4534 * Copy the expanded stuff.
4535 * Copy what came after the expanded part.
4536 * Copy the next commands, if there are any.
4538 i
= (int)(src
- *cmdlinep
); /* length of part before match */
4539 mch_memmove(new_cmdline
, *cmdlinep
, (size_t)i
);
4541 mch_memmove(new_cmdline
+ i
, repl
, (size_t)len
);
4542 i
+= len
; /* remember the end of the string */
4543 STRCPY(new_cmdline
+ i
, src
+ srclen
);
4544 src
= new_cmdline
+ i
; /* remember where to continue */
4546 if (eap
->nextcmd
!= NULL
) /* append next command */
4548 i
= (int)STRLEN(new_cmdline
) + 1;
4549 STRCPY(new_cmdline
+ i
, eap
->nextcmd
);
4550 eap
->nextcmd
= new_cmdline
+ i
;
4552 eap
->cmd
= new_cmdline
+ (eap
->cmd
- *cmdlinep
);
4553 eap
->arg
= new_cmdline
+ (eap
->arg
- *cmdlinep
);
4554 if (eap
->do_ecmd_cmd
!= NULL
&& eap
->do_ecmd_cmd
!= dollar_command
)
4555 eap
->do_ecmd_cmd
= new_cmdline
+ (eap
->do_ecmd_cmd
- *cmdlinep
);
4556 vim_free(*cmdlinep
);
4557 *cmdlinep
= new_cmdline
;
4563 * Check for '|' to separate commands and '"' to start comments.
4566 separate_nextcmd(eap
)
4571 #ifdef FEAT_QUICKFIX
4572 p
= skip_grep_pat(eap
);
4577 for ( ; *p
; mb_ptr_adv(p
))
4581 if (eap
->argt
& (USECTRLV
| XFILE
))
4582 ++p
; /* skip CTRL-V and next char */
4584 /* remove CTRL-V and skip next char */
4586 if (*p
== NUL
) /* stop at NUL after CTRL-V */
4591 /* Skip over `=expr` when wildcards are expanded. */
4592 else if (p
[0] == '`' && p
[1] == '=' && (eap
->argt
& XFILE
))
4595 (void)skip_expr(&p
);
4599 /* Check for '"': start of comment or '|': next command */
4600 /* :@" and :*" do not start a comment!
4601 * :redir @" doesn't either. */
4602 else if ((*p
== '"' && !(eap
->argt
& NOTRLCOM
)
4603 && ((eap
->cmdidx
!= CMD_at
&& eap
->cmdidx
!= CMD_star
)
4605 && (eap
->cmdidx
!= CMD_redir
4606 || p
!= eap
->arg
+ 1 || p
[-1] != '@'))
4607 || *p
== '|' || *p
== '\n')
4610 * We remove the '\' before the '|', unless USECTRLV is used
4611 * AND 'b' is present in 'cpoptions'.
4613 if ((vim_strchr(p_cpo
, CPO_BAR
) == NULL
4614 || !(eap
->argt
& USECTRLV
)) && *(p
- 1) == '\\')
4616 STRMOVE(p
- 1, p
); /* remove the '\' */
4621 eap
->nextcmd
= check_nextcmd(p
);
4628 if (!(eap
->argt
& NOTRLCOM
)) /* remove trailing spaces */
4629 del_trailing_spaces(eap
->arg
);
4633 * get + command from ex argument
4639 char_u
*arg
= *argp
;
4640 char_u
*command
= NULL
;
4642 if (*arg
== '+') /* +[command] */
4645 if (vim_isspace(*arg
))
4646 command
= dollar_command
;
4650 arg
= skip_cmd_arg(command
, TRUE
);
4652 *arg
++ = NUL
; /* terminate command with NUL */
4655 arg
= skipwhite(arg
); /* skip over spaces */
4662 * Find end of "+command" argument. Skip over "\ " and "\\".
4665 skip_cmd_arg(p
, rembs
)
4667 int rembs
; /* TRUE to halve the number of backslashes */
4669 while (*p
&& !vim_isspace(*p
))
4671 if (*p
== '\\' && p
[1] != NUL
)
4684 * Get "++opt=arg" argument.
4685 * Return FAIL or OK.
4691 char_u
*arg
= eap
->arg
+ 2;
4697 /* ":edit ++[no]bin[ary] file" */
4698 if (STRNCMP(arg
, "bin", 3) == 0 || STRNCMP(arg
, "nobin", 5) == 0)
4703 eap
->force_bin
= FORCE_NOBIN
;
4706 eap
->force_bin
= FORCE_BIN
;
4707 if (!checkforcmd(&arg
, "binary", 3))
4709 eap
->arg
= skipwhite(arg
);
4713 /* ":read ++edit file" */
4714 if (STRNCMP(arg
, "edit", 4) == 0)
4716 eap
->read_edit
= TRUE
;
4717 eap
->arg
= skipwhite(arg
+ 4);
4721 if (STRNCMP(arg
, "ff", 2) == 0)
4724 pp
= &eap
->force_ff
;
4726 else if (STRNCMP(arg
, "fileformat", 10) == 0)
4729 pp
= &eap
->force_ff
;
4732 else if (STRNCMP(arg
, "enc", 3) == 0)
4735 pp
= &eap
->force_enc
;
4737 else if (STRNCMP(arg
, "encoding", 8) == 0)
4740 pp
= &eap
->force_enc
;
4742 else if (STRNCMP(arg
, "bad", 3) == 0)
4745 pp
= &eap
->bad_char
;
4749 if (pp
== NULL
|| *arg
!= '=')
4753 *pp
= (int)(arg
- eap
->cmd
);
4754 arg
= skip_cmd_arg(arg
, FALSE
);
4755 eap
->arg
= skipwhite(arg
);
4759 if (pp
== &eap
->force_ff
)
4762 if (check_ff_value(eap
->cmd
+ eap
->force_ff
) == FAIL
)
4766 else if (pp
== &eap
->force_enc
)
4768 /* Make 'fileencoding' lower case. */
4769 for (p
= eap
->cmd
+ eap
->force_enc
; *p
!= NUL
; ++p
)
4770 *p
= TOLOWER_ASC(*p
);
4774 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4776 p
= eap
->cmd
+ eap
->bad_char
;
4777 if (STRICMP(p
, "keep") == 0)
4778 eap
->bad_char
= BAD_KEEP
;
4779 else if (STRICMP(p
, "drop") == 0)
4780 eap
->bad_char
= BAD_DROP
;
4781 else if (MB_BYTE2LEN(*p
) == 1 && p
[1] == NUL
)
4792 * ":abbreviate" and friends.
4798 do_exmap(eap
, TRUE
); /* almost the same as mapping */
4802 * ":map" and friends.
4809 * If we are sourcing .exrc or .vimrc in current directory we
4810 * print the mappings for security reasons.
4815 msg_outtrans(eap
->cmd
);
4818 do_exmap(eap
, FALSE
);
4822 * ":unmap" and friends.
4828 do_exmap(eap
, FALSE
);
4832 * ":mapclear" and friends.
4838 map_clear(eap
->cmd
, eap
->arg
, eap
->forceit
, FALSE
);
4842 * ":abclear" and friends.
4848 map_clear(eap
->cmd
, eap
->arg
, TRUE
, TRUE
);
4857 * Disallow auto commands from .exrc and .vimrc in current
4858 * directory for security reasons.
4863 eap
->errmsg
= e_curdir
;
4865 else if (eap
->cmdidx
== CMD_autocmd
)
4866 do_autocmd(eap
->arg
, eap
->forceit
);
4868 do_augroup(eap
->arg
, eap
->forceit
);
4872 * ":doautocmd": Apply the automatic commands to the current buffer.
4878 (void)do_doautocmd(eap
->arg
, TRUE
);
4883 #ifdef FEAT_LISTCMDS
4885 * :[N]bunload[!] [N] [bufname] unload buffer
4886 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4887 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4893 eap
->errmsg
= do_bufdel(
4894 eap
->cmdidx
== CMD_bdelete
? DOBUF_DEL
4895 : eap
->cmdidx
== CMD_bwipeout
? DOBUF_WIPE
4896 : DOBUF_UNLOAD
, eap
->arg
,
4897 eap
->addr_count
, (int)eap
->line1
, (int)eap
->line2
, eap
->forceit
);
4901 * :[N]buffer [N] to buffer N
4902 * :[N]sbuffer [N] to buffer N
4909 eap
->errmsg
= e_trailing
;
4912 if (eap
->addr_count
== 0) /* default is current buffer */
4913 goto_buffer(eap
, DOBUF_CURRENT
, FORWARD
, 0);
4915 goto_buffer(eap
, DOBUF_FIRST
, FORWARD
, (int)eap
->line2
);
4920 * :[N]bmodified [N] to next mod. buffer
4921 * :[N]sbmodified [N] to next mod. buffer
4927 goto_buffer(eap
, DOBUF_MOD
, FORWARD
, (int)eap
->line2
);
4931 * :[N]bnext [N] to next buffer
4932 * :[N]sbnext [N] split and to next buffer
4938 goto_buffer(eap
, DOBUF_CURRENT
, FORWARD
, (int)eap
->line2
);
4942 * :[N]bNext [N] to previous buffer
4943 * :[N]bprevious [N] to previous buffer
4944 * :[N]sbNext [N] split and to previous buffer
4945 * :[N]sbprevious [N] split and to previous buffer
4951 goto_buffer(eap
, DOBUF_CURRENT
, BACKWARD
, (int)eap
->line2
);
4955 * :brewind to first buffer
4956 * :bfirst to first buffer
4957 * :sbrewind split and to first buffer
4958 * :sbfirst split and to first buffer
4964 goto_buffer(eap
, DOBUF_FIRST
, FORWARD
, 0);
4968 * :blast to last buffer
4969 * :sblast split and to last buffer
4975 goto_buffer(eap
, DOBUF_LAST
, BACKWARD
, 0);
4983 return (c
== NUL
|| c
== '|' || c
== '"' || c
== '\n');
4986 #if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4989 * Return the next command, after the first '|' or '\n'.
4990 * Return NULL if not found.
4996 while (*p
!= '|' && *p
!= '\n')
5007 * Check if *p is a separator between Ex commands.
5008 * Return NULL if it isn't, (p + 1) if it is.
5015 if (*p
== '|' || *p
== '\n')
5022 * - if there are more files to edit
5023 * - and this is the last window
5024 * - and forceit not used
5025 * - and not repeated twice on a row
5026 * return FAIL and give error message if 'message' TRUE
5027 * return OK otherwise
5030 check_more(message
, forceit
)
5031 int message
; /* when FALSE check only, no messages */
5034 int n
= ARGCOUNT
- curwin
->w_arg_idx
- 1;
5036 if (!forceit
&& only_one_window()
5037 && ARGCOUNT
> 1 && !arg_had_last
&& n
>= 0 && quitmore
== 0)
5041 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5042 if ((p_confirm
|| cmdmod
.confirm
) && curbuf
->b_fname
!= NULL
)
5044 char_u buff
[IOSIZE
];
5047 STRCPY(buff
, _("1 more file to edit. Quit anyway?"));
5049 vim_snprintf((char *)buff
, IOSIZE
,
5050 _("%d more files to edit. Quit anyway?"), n
);
5051 if (vim_dialog_yesno(VIM_QUESTION
, NULL
, buff
, 1) == VIM_YES
)
5057 EMSG(_("E173: 1 more file to edit"));
5059 EMSGN(_("E173: %ld more files to edit"), n
);
5060 quitmore
= 2; /* next try to quit is allowed */
5067 #ifdef FEAT_CMDL_COMPL
5069 * Function given to ExpandGeneric() to obtain the list of command names.
5072 get_command_name(xp
, idx
)
5073 expand_T
*xp UNUSED
;
5076 if (idx
>= (int)CMD_SIZE
)
5077 # ifdef FEAT_USR_CMDS
5078 return get_user_command_name(idx
);
5082 return cmdnames
[idx
].cmd_name
;
5086 #if defined(FEAT_USR_CMDS) || defined(PROTO)
5087 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
));
5088 static void uc_list
__ARGS((char_u
*name
, size_t name_len
));
5089 static int uc_scan_attr
__ARGS((char_u
*attr
, size_t len
, long *argt
, long *def
, int *flags
, int *compl, char_u
**compl_arg
));
5090 static char_u
*uc_split_args
__ARGS((char_u
*arg
, size_t *lenp
));
5091 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
));
5094 uc_add_command(name
, name_len
, rep
, argt
, def
, flags
, compl, compl_arg
, force
)
5109 char_u
*rep_buf
= NULL
;
5112 replace_termcodes(rep
, &rep_buf
, FALSE
, FALSE
, FALSE
);
5113 if (rep_buf
== NULL
)
5115 /* Can't replace termcodes - try using the string as is */
5116 rep_buf
= vim_strsave(rep
);
5118 /* Give up if out of memory */
5119 if (rep_buf
== NULL
)
5123 /* get address of growarray: global or in curbuf */
5124 if (flags
& UC_BUFFER
)
5126 gap
= &curbuf
->b_ucmds
;
5127 if (gap
->ga_itemsize
== 0)
5128 ga_init2(gap
, (int)sizeof(ucmd_T
), 4);
5133 /* Search for the command in the already defined commands. */
5134 for (i
= 0; i
< gap
->ga_len
; ++i
)
5138 cmd
= USER_CMD_GA(gap
, i
);
5139 len
= STRLEN(cmd
->uc_name
);
5140 cmp
= STRNCMP(name
, cmd
->uc_name
, name_len
);
5145 else if (name_len
> len
)
5153 EMSG(_("E174: Command already exists: add ! to replace it"));
5157 vim_free(cmd
->uc_rep
);
5159 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5160 vim_free(cmd
->uc_compl_arg
);
5161 cmd
->uc_compl_arg
= NULL
;
5166 /* Stop as soon as we pass the name to add */
5171 /* Extend the array unless we're replacing an existing command */
5174 if (ga_grow(gap
, 1) != OK
)
5176 if ((p
= vim_strnsave(name
, (int)name_len
)) == NULL
)
5179 cmd
= USER_CMD_GA(gap
, i
);
5180 mch_memmove(cmd
+ 1, cmd
, (gap
->ga_len
- i
) * sizeof(ucmd_T
));
5187 cmd
->uc_rep
= rep_buf
;
5188 cmd
->uc_argt
= argt
;
5190 cmd
->uc_compl
= compl;
5192 cmd
->uc_scriptID
= current_SID
;
5193 # ifdef FEAT_CMDL_COMPL
5194 cmd
->uc_compl_arg
= compl_arg
;
5202 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5203 vim_free(compl_arg
);
5209 * List of names for completion for ":command" with the EXPAND_ flag.
5210 * Must be alphabetical for completion.
5216 } command_complete
[] =
5218 {EXPAND_AUGROUP
, "augroup"},
5219 {EXPAND_BUFFERS
, "buffer"},
5220 {EXPAND_COMMANDS
, "command"},
5221 #if defined(FEAT_CSCOPE)
5222 {EXPAND_CSCOPE
, "cscope"},
5224 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5225 {EXPAND_USER_DEFINED
, "custom"},
5226 {EXPAND_USER_LIST
, "customlist"},
5228 {EXPAND_DIRECTORIES
, "dir"},
5229 {EXPAND_ENV_VARS
, "environment"},
5230 {EXPAND_EVENTS
, "event"},
5231 {EXPAND_EXPRESSION
, "expression"},
5232 {EXPAND_FILES
, "file"},
5233 {EXPAND_FUNCTIONS
, "function"},
5234 {EXPAND_HELP
, "help"},
5235 {EXPAND_HIGHLIGHT
, "highlight"},
5236 {EXPAND_MAPPINGS
, "mapping"},
5237 {EXPAND_MENUS
, "menu"},
5238 {EXPAND_SETTINGS
, "option"},
5239 {EXPAND_SHELLCMD
, "shellcmd"},
5240 #if defined(FEAT_SIGNS)
5241 {EXPAND_SIGN
, "sign"},
5243 {EXPAND_TAGS
, "tag"},
5244 {EXPAND_TAGS_LISTFILES
, "tag_listfiles"},
5245 {EXPAND_USER_VARS
, "var"},
5250 uc_list(name
, name_len
)
5261 gap
= &curbuf
->b_ucmds
;
5264 for (i
= 0; i
< gap
->ga_len
; ++i
)
5266 cmd
= USER_CMD_GA(gap
, i
);
5267 a
= (long)cmd
->uc_argt
;
5269 /* Skip commands which don't match the requested prefix */
5270 if (STRNCMP(name
, cmd
->uc_name
, name_len
) != 0)
5273 /* Put out the title first time */
5275 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5282 msg_putchar(a
& BANG
? '!' : ' ');
5283 msg_putchar(a
& REGSTR
? '"' : ' ');
5284 msg_putchar(gap
!= &ucmds
? 'b' : ' ');
5287 msg_outtrans_attr(cmd
->uc_name
, hl_attr(HLF_D
));
5288 len
= (int)STRLEN(cmd
->uc_name
) + 4;
5298 switch ((int)(a
& (EXTRA
|NOSPC
|NEEDARG
)))
5300 case 0: IObuff
[len
++] = '0'; break;
5301 case (EXTRA
): IObuff
[len
++] = '*'; break;
5302 case (EXTRA
|NOSPC
): IObuff
[len
++] = '?'; break;
5303 case (EXTRA
|NEEDARG
): IObuff
[len
++] = '+'; break;
5304 case (EXTRA
|NOSPC
|NEEDARG
): IObuff
[len
++] = '1'; break;
5308 IObuff
[len
++] = ' ';
5312 if (a
& (RANGE
|COUNT
))
5317 sprintf((char *)IObuff
+ len
, "%ldc", cmd
->uc_def
);
5318 len
+= (int)STRLEN(IObuff
+ len
);
5320 else if (a
& DFLALL
)
5321 IObuff
[len
++] = '%';
5322 else if (cmd
->uc_def
>= 0)
5325 sprintf((char *)IObuff
+ len
, "%ld", cmd
->uc_def
);
5326 len
+= (int)STRLEN(IObuff
+ len
);
5329 IObuff
[len
++] = '.';
5333 IObuff
[len
++] = ' ';
5337 for (j
= 0; command_complete
[j
].expand
!= 0; ++j
)
5338 if (command_complete
[j
].expand
== cmd
->uc_compl
)
5340 STRCPY(IObuff
+ len
, command_complete
[j
].name
);
5341 len
+= (int)STRLEN(IObuff
+ len
);
5346 IObuff
[len
++] = ' ';
5350 msg_outtrans(IObuff
);
5352 msg_outtrans_special(cmd
->uc_rep
, FALSE
);
5355 last_set_msg(cmd
->uc_scriptID
);
5362 if (gap
== &ucmds
|| i
< gap
->ga_len
)
5368 MSG(_("No user-defined commands found"));
5374 static char_u fcmd
[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5375 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5376 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5380 for (i
= 0; fcmd
[i
]; ++i
)
5381 IObuff
[i
] = fcmd
[i
] - 0x40;
5387 uc_scan_attr(attr
, len
, argt
, def
, flags
, compl, compl_arg
)
5400 EMSG(_("E175: No attribute specified"));
5404 /* First, try the simple attributes (no arguments) */
5405 if (STRNICMP(attr
, "bang", len
) == 0)
5407 else if (STRNICMP(attr
, "buffer", len
) == 0)
5408 *flags
|= UC_BUFFER
;
5409 else if (STRNICMP(attr
, "register", len
) == 0)
5411 else if (STRNICMP(attr
, "bar", len
) == 0)
5418 size_t attrlen
= len
;
5420 /* Look for the attribute name - which is the part before any '=' */
5421 for (i
= 0; i
< (int)len
; ++i
)
5426 vallen
= len
- i
- 1;
5432 if (STRNICMP(attr
, "nargs", attrlen
) == 0)
5437 /* Do nothing - this is the default */;
5438 else if (*val
== '1')
5439 *argt
|= (EXTRA
| NOSPC
| NEEDARG
);
5440 else if (*val
== '*')
5442 else if (*val
== '?')
5443 *argt
|= (EXTRA
| NOSPC
);
5444 else if (*val
== '+')
5445 *argt
|= (EXTRA
| NEEDARG
);
5452 EMSG(_("E176: Invalid number of arguments"));
5456 else if (STRNICMP(attr
, "range", attrlen
) == 0)
5459 if (vallen
== 1 && *val
== '%')
5461 else if (val
!= NULL
)
5467 EMSG(_("E177: Count cannot be specified twice"));
5471 *def
= getdigits(&p
);
5472 *argt
|= (ZEROR
| NOTADR
);
5474 if (p
!= val
+ vallen
|| vallen
== 0)
5477 EMSG(_("E178: Invalid default value for count"));
5482 else if (STRNICMP(attr
, "count", attrlen
) == 0)
5484 *argt
|= (COUNT
| ZEROR
| RANGE
| NOTADR
);
5492 *def
= getdigits(&p
);
5494 if (p
!= val
+ vallen
)
5501 else if (STRNICMP(attr
, "complete", attrlen
) == 0)
5505 EMSG(_("E179: argument required for -complete"));
5509 if (parse_compl_arg(val
, (int)vallen
, compl, argt
, compl_arg
)
5515 char_u ch
= attr
[len
];
5517 EMSG2(_("E181: Invalid attribute: %s"), attr
);
5539 int compl = EXPAND_NOTHING
;
5540 char_u
*compl_arg
= NULL
;
5541 int has_attr
= (eap
->arg
[0] == '-');
5545 /* Check for attributes */
5549 end
= skiptowhite(p
);
5550 if (uc_scan_attr(p
, end
- p
, &argt
, &def
, &flags
, &compl, &compl_arg
)
5556 /* Get the name (if any) and skip to the following argument */
5558 if (ASCII_ISALPHA(*p
))
5559 while (ASCII_ISALNUM(*p
))
5561 if (!ends_excmd(*p
) && !vim_iswhite(*p
))
5563 EMSG(_("E182: Invalid command name"));
5568 /* If there is nothing after the name, and no attributes were specified,
5569 * we are listing commands
5572 if (!has_attr
&& ends_excmd(*p
))
5574 uc_list(name
, end
- name
);
5576 else if (!ASCII_ISUPPER(*name
))
5578 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5582 uc_add_command(name
, end
- name
, p
, argt
, def
, flags
, compl, compl_arg
,
5588 * Clear all user commands, global and for current buffer.
5592 exarg_T
*eap UNUSED
;
5595 uc_clear(&curbuf
->b_ucmds
);
5599 * Clear all user commands for "gap".
5608 for (i
= 0; i
< gap
->ga_len
; ++i
)
5610 cmd
= USER_CMD_GA(gap
, i
);
5611 vim_free(cmd
->uc_name
);
5612 vim_free(cmd
->uc_rep
);
5613 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5614 vim_free(cmd
->uc_compl_arg
);
5629 gap
= &curbuf
->b_ucmds
;
5632 for (i
= 0; i
< gap
->ga_len
; ++i
)
5634 cmd
= USER_CMD_GA(gap
, i
);
5635 cmp
= STRCMP(eap
->arg
, cmd
->uc_name
);
5639 if (gap
== &ucmds
|| cmp
== 0)
5646 EMSG2(_("E184: No such user-defined command: %s"), eap
->arg
);
5650 vim_free(cmd
->uc_name
);
5651 vim_free(cmd
->uc_rep
);
5652 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5653 vim_free(cmd
->uc_compl_arg
);
5658 if (i
< gap
->ga_len
)
5659 mch_memmove(cmd
, cmd
+ 1, (gap
->ga_len
- i
) * sizeof(ucmd_T
));
5663 * split and quote args for <f-args>
5666 uc_split_args(arg
, lenp
)
5675 /* Precalculate length */
5677 len
= 2; /* Initial and final quotes */
5681 if (p
[0] == '\\' && p
[1] == '\\')
5686 else if (p
[0] == '\\' && vim_iswhite(p
[1]))
5691 else if (*p
== '\\' || *p
== '"')
5696 else if (vim_iswhite(*p
))
5710 buf
= alloc(len
+ 1);
5722 if (p
[0] == '\\' && p
[1] == '\\')
5728 else if (p
[0] == '\\' && vim_iswhite(p
[1]))
5733 else if (*p
== '\\' || *p
== '"')
5738 else if (vim_iswhite(*p
))
5760 * Check for a <> code in a user command.
5761 * "code" points to the '<'. "len" the length of the <> (inclusive).
5762 * "buf" is where the result is to be added.
5763 * "split_buf" points to a buffer used for splitting, caller should free it.
5764 * "split_len" is the length of what "split_buf" contains.
5765 * Returns the length of the replacement, which has been added to "buf".
5766 * Returns -1 if there was no match, and only the "<" has been copied.
5769 uc_check_code(code
, len
, buf
, cmd
, eap
, split_buf
, split_len
)
5773 ucmd_T
*cmd
; /* the user command we're expanding */
5774 exarg_T
*eap
; /* ex arguments */
5779 char_u
*p
= code
+ 1;
5782 enum { ct_ARGS
, ct_BANG
, ct_COUNT
, ct_LINE1
, ct_LINE2
, ct_REGISTER
,
5783 ct_LT
, ct_NONE
} type
= ct_NONE
;
5785 if ((vim_strchr((char_u
*)"qQfF", *p
) != NULL
) && p
[1] == '-')
5787 quote
= (*p
== 'q' || *p
== 'Q') ? 1 : 2;
5795 else if (STRNICMP(p
, "args>", l
) == 0)
5797 else if (STRNICMP(p
, "bang>", l
) == 0)
5799 else if (STRNICMP(p
, "count>", l
) == 0)
5801 else if (STRNICMP(p
, "line1>", l
) == 0)
5803 else if (STRNICMP(p
, "line2>", l
) == 0)
5805 else if (STRNICMP(p
, "lt>", l
) == 0)
5807 else if (STRNICMP(p
, "reg>", l
) == 0 || STRNICMP(p
, "register>", l
) == 0)
5813 /* Simple case first */
5814 if (*eap
->arg
== NUL
)
5827 /* When specified there is a single argument don't split it.
5828 * Works for ":Cmd %" when % is "a b c". */
5829 if ((eap
->argt
& NOSPC
) && quote
== 2)
5834 case 0: /* No quoting, no splitting */
5835 result
= STRLEN(eap
->arg
);
5837 STRCPY(buf
, eap
->arg
);
5839 case 1: /* Quote, but don't split */
5840 result
= STRLEN(eap
->arg
) + 2;
5841 for (p
= eap
->arg
; *p
; ++p
)
5843 if (*p
== '\\' || *p
== '"')
5850 for (p
= eap
->arg
; *p
; ++p
)
5852 if (*p
== '\\' || *p
== '"')
5860 case 2: /* Quote and split (<f-args>) */
5861 /* This is hard, so only do it once, and cache the result */
5862 if (*split_buf
== NULL
)
5863 *split_buf
= uc_split_args(eap
->arg
, split_len
);
5865 result
= *split_len
;
5866 if (buf
!= NULL
&& result
!= 0)
5867 STRCPY(buf
, *split_buf
);
5874 result
= eap
->forceit
? 1 : 0;
5893 long num
= (type
== ct_LINE1
) ? eap
->line1
:
5894 (type
== ct_LINE2
) ? eap
->line2
:
5895 (eap
->addr_count
> 0) ? eap
->line2
: cmd
->uc_def
;
5898 sprintf(num_buf
, "%ld", num
);
5899 num_len
= STRLEN(num_buf
);
5909 STRCPY(buf
, num_buf
);
5919 result
= eap
->regname
? 1 : 0;
5927 *buf
++ = eap
->regname
;
5940 /* Not recognized: just copy the '<' and return -1. */
5941 result
= (size_t)-1;
5963 size_t split_len
= 0;
5964 char_u
*split_buf
= NULL
;
5967 scid_T save_current_SID
= current_SID
;
5970 if (eap
->cmdidx
== CMD_USER
)
5971 cmd
= USER_CMD(eap
->useridx
);
5973 cmd
= USER_CMD_GA(&curbuf
->b_ucmds
, eap
->useridx
);
5976 * Replace <> in the command by the arguments.
5977 * First round: "buf" is NULL, compute length, allocate "buf".
5978 * Second round: copy result into "buf".
5983 p
= cmd
->uc_rep
; /* source */
5984 q
= buf
; /* destination */
5989 start
= vim_strchr(p
, '<');
5991 end
= vim_strchr(start
+ 1, '>');
5994 ksp
= vim_strchr(p
, K_SPECIAL
);
5995 if (ksp
!= NULL
&& (start
== NULL
|| ksp
< start
|| end
== NULL
)
5996 && ((ksp
[1] == KS_SPECIAL
&& ksp
[2] == KE_FILLER
)
5998 || (ksp
[1] == KS_EXTRA
&& ksp
[2] == (int)KE_CSI
)
6002 /* K_SPECIAL han been put in the buffer as K_SPECIAL
6003 * KS_SPECIAL KE_FILLER, like for mappings, but
6004 * do_cmdline() doesn't handle that, so convert it back.
6005 * Also change K_SPECIAL KS_EXTRA KE_CSI into CSI. */
6009 mch_memmove(q
, p
, len
);
6012 *q
++ = ksp
[1] == KS_SPECIAL
? K_SPECIAL
: CSI
;
6018 /* break if there no <item> is found */
6019 if (start
== NULL
|| end
== NULL
)
6022 /* Include the '>' */
6025 /* Take everything up to the '<' */
6031 mch_memmove(q
, p
, len
);
6035 len
= uc_check_code(start
, end
- start
, q
, cmd
, eap
,
6036 &split_buf
, &split_len
);
6037 if (len
== (size_t)-1)
6039 /* no match, continue after '<' */
6050 if (buf
!= NULL
) /* second time here, finished */
6056 totlen
+= STRLEN(p
); /* Add on the trailing characters */
6057 buf
= alloc((unsigned)(totlen
+ 1));
6060 vim_free(split_buf
);
6066 current_SID
= cmd
->uc_scriptID
;
6068 (void)do_cmdline(buf
, eap
->getline
, eap
->cookie
,
6069 DOCMD_VERBOSE
|DOCMD_NOWAIT
|DOCMD_KEYTYPED
);
6071 current_SID
= save_current_SID
;
6074 vim_free(split_buf
);
6077 # if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6079 get_user_command_name(idx
)
6082 return get_user_commands(NULL
, idx
- (int)CMD_SIZE
);
6086 * Function given to ExpandGeneric() to obtain the list of user command names.
6089 get_user_commands(xp
, idx
)
6090 expand_T
*xp UNUSED
;
6093 if (idx
< curbuf
->b_ucmds
.ga_len
)
6094 return USER_CMD_GA(&curbuf
->b_ucmds
, idx
)->uc_name
;
6095 idx
-= curbuf
->b_ucmds
.ga_len
;
6096 if (idx
< ucmds
.ga_len
)
6097 return USER_CMD(idx
)->uc_name
;
6102 * Function given to ExpandGeneric() to obtain the list of user command
6106 get_user_cmd_flags(xp
, idx
)
6107 expand_T
*xp UNUSED
;
6110 static char *user_cmd_flags
[] =
6111 {"bang", "bar", "buffer", "complete", "count",
6112 "nargs", "range", "register"};
6114 if (idx
>= (int)(sizeof(user_cmd_flags
) / sizeof(user_cmd_flags
[0])))
6116 return (char_u
*)user_cmd_flags
[idx
];
6120 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6123 get_user_cmd_nargs(xp
, idx
)
6124 expand_T
*xp UNUSED
;
6127 static char *user_cmd_nargs
[] = {"0", "1", "*", "?", "+"};
6129 if (idx
>= (int)(sizeof(user_cmd_nargs
) / sizeof(user_cmd_nargs
[0])))
6131 return (char_u
*)user_cmd_nargs
[idx
];
6135 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6138 get_user_cmd_complete(xp
, idx
)
6139 expand_T
*xp UNUSED
;
6142 return (char_u
*)command_complete
[idx
].name
;
6144 # endif /* FEAT_CMDL_COMPL */
6146 #endif /* FEAT_USR_CMDS */
6148 #if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6150 * Parse a completion argument "value[vallen]".
6151 * The detected completion goes in "*complp", argument type in "*argt".
6152 * When there is an argument, for function and user defined completion, it's
6153 * copied to allocated memory and stored in "*compl_arg".
6154 * Returns FAIL if something is wrong.
6157 parse_compl_arg(value
, vallen
, complp
, argt
, compl_arg
)
6167 int valend
= vallen
;
6169 /* Look for any argument part - which is the part after any ',' */
6170 for (i
= 0; i
< vallen
; ++i
)
6172 if (value
[i
] == ',')
6174 arg
= &value
[i
+ 1];
6175 arglen
= vallen
- i
- 1;
6181 for (i
= 0; command_complete
[i
].expand
!= 0; ++i
)
6183 if ((int)STRLEN(command_complete
[i
].name
) == valend
6184 && STRNCMP(value
, command_complete
[i
].name
, valend
) == 0)
6186 *complp
= command_complete
[i
].expand
;
6187 if (command_complete
[i
].expand
== EXPAND_BUFFERS
)
6189 else if (command_complete
[i
].expand
== EXPAND_DIRECTORIES
6190 || command_complete
[i
].expand
== EXPAND_FILES
)
6196 if (command_complete
[i
].expand
== 0)
6198 EMSG2(_("E180: Invalid complete value: %s"), value
);
6202 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6203 if (*complp
!= EXPAND_USER_DEFINED
&& *complp
!= EXPAND_USER_LIST
6209 EMSG(_("E468: Completion argument only allowed for custom completion"));
6213 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6214 if ((*complp
== EXPAND_USER_DEFINED
|| *complp
== EXPAND_USER_LIST
)
6217 EMSG(_("E467: Custom completion requires a function argument"));
6222 *compl_arg
= vim_strnsave(arg
, (int)arglen
);
6232 if (load_colors(eap
->arg
) == FAIL
)
6233 EMSG2(_("E185: Cannot find color scheme %s"), eap
->arg
);
6240 if (*eap
->arg
== NUL
&& eap
->cmd
[2] == '!')
6241 MSG(_("Greetings, Vim user!"));
6242 do_highlight(eap
->arg
, eap
->forceit
, FALSE
);
6247 * Call this function if we thought we were going to exit, but we won't
6248 * (because of an error). May need to restore the terminal mode.
6254 settmode(TMODE_RAW
);
6258 * ":quit": quit current window, quit Vim if closed the last window.
6265 if (cmdwin_type
!= 0)
6267 cmdwin_result
= Ctrl_C
;
6271 /* Don't quit while editing the command line. */
6278 if (curbuf_locked())
6282 #ifdef FEAT_NETBEANS_INTG
6283 netbeansForcedQuit
= eap
->forceit
;
6287 * If there are more files or windows we won't exit.
6289 if (check_more(FALSE
, eap
->forceit
) == OK
&& only_one_window())
6292 && check_changed(curbuf
, p_awa
, FALSE
, eap
->forceit
, FALSE
))
6293 || check_more(TRUE
, eap
->forceit
) == FAIL
6294 || (only_one_window() && check_changed_any(eap
->forceit
)))
6301 if (only_one_window()) /* quit last window */
6306 need_mouse_correct
= TRUE
;
6308 /* close window; may free buffer */
6309 win_close(curwin
, !P_HID(curwin
->w_buffer
) || eap
->forceit
);
6319 exarg_T
*eap UNUSED
;
6321 getout(1); /* this does not always pass on the exit code to the Manx
6326 * ":qall": try to quit all windows
6333 if (cmdwin_type
!= 0)
6336 cmdwin_result
= K_XF1
; /* ex_window() takes care of this */
6338 cmdwin_result
= K_XF2
;
6343 /* Don't quit while editing the command line. */
6350 if (curbuf_locked())
6355 if (eap
->forceit
|| !check_changed_any(FALSE
))
6360 #if defined(FEAT_WINDOWS) || defined(PROTO)
6362 * ":close": close current window, unless it is the last one
6369 if (cmdwin_type
!= 0)
6370 cmdwin_result
= K_IGNORE
;
6378 ex_win_close(eap
->forceit
, curwin
, NULL
);
6381 # ifdef FEAT_QUICKFIX
6383 * ":pclose": Close any preview window.
6391 for (win
= firstwin
; win
!= NULL
; win
= win
->w_next
)
6394 ex_win_close(eap
->forceit
, win
, NULL
);
6401 * Close window "win" and take care of handling closing the last window for a
6405 ex_win_close(forceit
, win
, tp
)
6408 tabpage_T
*tp
; /* NULL or the tab page "win" is in */
6411 buf_T
*buf
= win
->w_buffer
;
6413 need_hide
= (bufIsChanged(buf
) && buf
->b_nwindows
<= 1);
6414 if (need_hide
&& !P_HID(buf
) && !forceit
)
6416 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
6417 if ((p_confirm
|| cmdmod
.confirm
) && p_write
)
6419 dialog_changed(buf
, FALSE
);
6420 if (buf_valid(buf
) && bufIsChanged(buf
))
6427 EMSG(_(e_nowrtmsg
));
6433 need_mouse_correct
= TRUE
;
6436 /* free buffer when not hiding it or when it's a scratch buffer */
6438 win_close(win
, !need_hide
&& !P_HID(buf
));
6440 win_close_othertab(win
, !need_hide
&& !P_HID(buf
), tp
);
6444 * ":tabclose": close current tab page, unless it is the last one.
6445 * ":tabclose N": close tab page N.
6454 if (cmdwin_type
!= 0)
6455 cmdwin_result
= K_IGNORE
;
6458 if (first_tabpage
->tp_next
== NULL
)
6459 EMSG(_("E784: Cannot close last tab page"));
6462 if (eap
->addr_count
> 0)
6464 tp
= find_tabpage((int)eap
->line2
);
6472 tabpage_close_other(tp
, eap
->forceit
);
6481 tabpage_close(eap
->forceit
);
6486 * ":tabonly": close all tab pages except the current one
6496 if (cmdwin_type
!= 0)
6497 cmdwin_result
= K_IGNORE
;
6500 if (first_tabpage
->tp_next
== NULL
)
6501 MSG(_("Already only one tab page"));
6504 /* Repeat this up to a 1000 times, because autocommands may mess
6506 for (done
= 0; done
< 1000; ++done
)
6508 for (tp
= first_tabpage
; tp
!= NULL
; tp
= tp
->tp_next
)
6509 if (tp
->tp_topframe
!= topframe
)
6511 tabpage_close_other(tp
, eap
->forceit
);
6512 /* if we failed to close it quit */
6513 if (valid_tabpage(tp
))
6515 /* start over, "tp" is now invalid */
6518 if (first_tabpage
->tp_next
== NULL
)
6525 * Close the current tab page.
6528 tabpage_close(forceit
)
6531 /* First close all the windows but the current one. If that worked then
6532 * close the last window in this tab, that will close it. */
6533 if (lastwin
!= firstwin
)
6534 close_others(TRUE
, forceit
);
6535 if (lastwin
== firstwin
)
6536 ex_win_close(forceit
, curwin
, NULL
);
6538 need_mouse_correct
= TRUE
;
6543 * Close tab page "tp", which is not the current tab page.
6544 * Note that autocommands may make "tp" invalid.
6545 * Also takes care of the tab pages line disappearing when closing the
6546 * last-but-one tab page.
6549 tabpage_close_other(tp
, forceit
)
6555 int h
= tabline_height();
6557 /* Limit to 1000 windows, autocommands may add a window while we close
6558 * one. OK, so I'm paranoid... */
6559 while (++done
< 1000)
6561 wp
= tp
->tp_firstwin
;
6562 ex_win_close(forceit
, wp
, tp
);
6564 /* Autocommands may delete the tab page under our fingers and we may
6565 * fail to close a window with a modified buffer. */
6566 if (!valid_tabpage(tp
) || tp
->tp_firstwin
== wp
)
6570 redraw_tabline
= TRUE
;
6571 if (h
!= tabline_height())
6583 need_mouse_correct
= TRUE
;
6585 close_others(TRUE
, eap
->forceit
);
6589 * ":all" and ":sall".
6590 * Also used for ":tab drop file ..." after setting the argument list.
6596 if (eap
->addr_count
== 0)
6598 do_arg_all((int)eap
->line2
, eap
->forceit
, eap
->cmdidx
== CMD_drop
);
6600 #endif /* FEAT_WINDOWS */
6606 if (*eap
->arg
!= NUL
&& check_nextcmd(eap
->arg
) == NULL
)
6607 eap
->errmsg
= e_invarg
;
6610 /* ":hide" or ":hide | cmd": hide current window */
6611 eap
->nextcmd
= check_nextcmd(eap
->arg
);
6616 need_mouse_correct
= TRUE
;
6618 win_close(curwin
, FALSE
); /* don't free buffer */
6625 * ":stop" and ":suspend": Suspend Vim.
6632 * Disallow suspending for "rvim".
6634 if (!check_restricted()
6637 * Check if external commands are allowed now.
6639 && can_end_termcap_mode(TRUE
)
6645 windgoto((int)Rows
- 1, 0);
6649 out_flush(); /* needed for SUN to restore xterm buffer */
6651 mch_restore_title(3); /* restore window titles */
6653 ui_suspend(); /* call machine specific function */
6656 resettitle(); /* force updating the title */
6659 scroll_start(); /* scroll screen before redrawing */
6660 redraw_later_clear();
6661 shell_resized(); /* may have resized window */
6666 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6673 if (cmdwin_type
!= 0)
6675 cmdwin_result
= Ctrl_C
;
6679 /* Don't quit while editing the command line. */
6686 if (curbuf_locked())
6691 * if more files or windows we won't exit
6693 if (check_more(FALSE
, eap
->forceit
) == OK
&& only_one_window())
6695 if ( ((eap
->cmdidx
== CMD_wq
6696 || curbufIsChanged())
6697 && do_write(eap
) == FAIL
)
6698 || check_more(TRUE
, eap
->forceit
) == FAIL
6699 || (only_one_window() && check_changed_any(eap
->forceit
)))
6706 if (only_one_window()) /* quit last window, exit Vim */
6711 need_mouse_correct
= TRUE
;
6713 /* quit current window, may free buffer */
6714 win_close(curwin
, !P_HID(curwin
->w_buffer
));
6720 * ":print", ":list", ":number".
6726 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
6727 EMSG(_(e_emptybuf
));
6730 for ( ;!got_int
; ui_breakcheck())
6732 print_line(eap
->line1
,
6733 (eap
->cmdidx
== CMD_number
|| eap
->cmdidx
== CMD_pound
6734 || (eap
->flags
& EXFLAG_NR
)),
6735 eap
->cmdidx
== CMD_list
|| (eap
->flags
& EXFLAG_LIST
));
6736 if (++eap
->line1
> eap
->line2
)
6738 out_flush(); /* show one line at a time */
6741 /* put cursor at last line */
6742 curwin
->w_cursor
.lnum
= eap
->line2
;
6743 beginline(BL_SOL
| BL_FIX
);
6746 ex_no_reprint
= TRUE
;
6754 goto_byte(eap
->line2
);
6763 exarg_T
*eap UNUSED
;
6768 #if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6769 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
6770 || defined(FEAT_GUI_MSWIN) \
6771 || defined(FEAT_GUI_MAC) \
6773 || defined(FEAT_GUI_MACVIM)
6776 * Handle a file drop. The code is here because a drop is *nearly* like an
6777 * :args command, but not quite (we have a list of exact filenames, so we
6778 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6779 * code is very similar to :args and hence needs access to a lot of the static
6780 * functions in this file.
6782 * The list should be allocated using alloc(), as should each item in the
6783 * list. This function takes over responsibility for freeing the list.
6785 * XXX The list is made into the argument list. This is freed using
6786 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6787 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6788 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6789 * file functionality is (currently) not in EMX this is not presently a
6793 handle_drop(filec
, filev
, split
)
6794 int filec
; /* the number of files dropped */
6795 char_u
**filev
; /* the list of files dropped */
6796 int split
; /* force splitting the window */
6799 int save_msg_scroll
= msg_scroll
;
6801 /* Postpone this while editing the command line. */
6805 if (curbuf_locked())
6808 /* When the screen is being updated we should not change buffers and
6809 * windows structures, it may cause freed memory to be used. */
6810 if (updating_screen
)
6813 /* Check whether the current buffer is changed. If so, we will need
6814 * to split the current window or data could be lost.
6815 * We don't need to check if the 'hidden' option is set, as in this
6816 * case the buffer won't be lost.
6818 if (!P_HID(curbuf
) && !split
)
6821 split
= check_changed(curbuf
, TRUE
, FALSE
, FALSE
, FALSE
);
6826 # ifdef FEAT_WINDOWS
6827 if (win_split(0, 0) == FAIL
)
6829 # ifdef FEAT_SCROLLBIND
6830 curwin
->w_p_scb
= FALSE
;
6833 /* When splitting the window, create a new alist. Otherwise the
6834 * existing one is overwritten. */
6835 alist_unlink(curwin
->w_alist
);
6838 return; /* can't split, always fail */
6843 * Set up the new argument list.
6845 alist_set(ALIST(curwin
), filec
, filev
, FALSE
, NULL
, 0);
6848 * Move to the first file.
6850 /* Fake up a minimal "next" command for do_argfile() */
6851 vim_memset(&ea
, 0, sizeof(ea
));
6852 ea
.cmd
= (char_u
*)"next";
6855 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6856 * mode that is not needed here. */
6857 need_start_insertmode
= FALSE
;
6859 /* Restore msg_scroll, otherwise a following command may cause scrolling
6860 * unexpectedly. The screen will be redrawn by the caller, thus
6861 * msg_scroll being set by displaying a message is irrelevant. */
6862 msg_scroll
= save_msg_scroll
;
6867 * Clear an argument list: free all file names and reset it to zero entries.
6873 while (--al
->al_ga
.ga_len
>= 0)
6874 vim_free(AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fname
);
6875 ga_clear(&al
->al_ga
);
6879 * Init an argument list.
6885 ga_init2(&al
->al_ga
, (int)sizeof(aentry_T
), 5);
6888 #if defined(FEAT_WINDOWS) || defined(PROTO)
6891 * Remove a reference from an argument list.
6892 * Ignored when the argument list is the global one.
6893 * If the argument list is no longer used by any window, free it.
6899 if (al
!= &global_alist
&& --al
->al_refcount
<= 0)
6906 # if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6908 * Create a new argument list and use it for the current window.
6913 curwin
->w_alist
= (alist_T
*)alloc((unsigned)sizeof(alist_T
));
6914 if (curwin
->w_alist
== NULL
)
6916 curwin
->w_alist
= &global_alist
;
6917 ++global_alist
.al_refcount
;
6921 curwin
->w_alist
->al_refcount
= 1;
6922 alist_init(curwin
->w_alist
);
6928 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6930 * Expand the file names in the global argument list.
6931 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6932 * numbers to be re-used.
6935 alist_expand(fnum_list
, fnum_len
)
6939 char_u
**old_arg_files
;
6941 char_u
**new_arg_files
;
6942 int new_arg_file_count
;
6943 char_u
*save_p_su
= p_su
;
6946 /* Don't use 'suffixes' here. This should work like the shell did the
6947 * expansion. Also, the vimrc file isn't read yet, thus the user
6948 * can't set the options. */
6949 p_su
= empty_option
;
6950 old_arg_files
= (char_u
**)alloc((unsigned)(sizeof(char_u
*) * GARGCOUNT
));
6951 if (old_arg_files
!= NULL
)
6953 for (i
= 0; i
< GARGCOUNT
; ++i
)
6954 old_arg_files
[i
] = vim_strsave(GARGLIST
[i
].ae_fname
);
6955 old_arg_count
= GARGCOUNT
;
6956 if (expand_wildcards(old_arg_count
, old_arg_files
,
6957 &new_arg_file_count
, &new_arg_files
,
6958 EW_FILE
|EW_NOTFOUND
|EW_ADDSLASH
) == OK
6959 && new_arg_file_count
> 0)
6961 alist_set(&global_alist
, new_arg_file_count
, new_arg_files
,
6962 TRUE
, fnum_list
, fnum_len
);
6963 FreeWild(old_arg_count
, old_arg_files
);
6971 * Set the argument list for the current window.
6972 * Takes over the allocated files[] and the allocated fnames in it.
6975 alist_set(al
, count
, files
, use_curbuf
, fnum_list
, fnum_len
)
6986 if (ga_grow(&al
->al_ga
, count
) == OK
)
6988 for (i
= 0; i
< count
; ++i
)
6992 /* When adding many buffers this can take a long time. Allow
6993 * interrupting here. */
6995 vim_free(files
[i
++]);
6999 /* May set buffer name of a buffer previously used for the
7000 * argument list, so that it's re-used by alist_add. */
7001 if (fnum_list
!= NULL
&& i
< fnum_len
)
7002 buf_set_name(fnum_list
[i
], files
[i
]);
7004 alist_add(al
, files
[i
], use_curbuf
? 2 : 1);
7010 FreeWild(count
, files
);
7012 if (al
== &global_alist
)
7014 arg_had_last
= FALSE
;
7018 * Add file "fname" to argument list "al".
7019 * "fname" must have been allocated and "al" must have been checked for room.
7022 alist_add(al
, fname
, set_fnum
)
7025 int set_fnum
; /* 1: set buffer number; 2: re-use curbuf */
7027 if (fname
== NULL
) /* don't add NULL file names */
7029 #ifdef BACKSLASH_IN_FILENAME
7030 slash_adjust(fname
);
7032 AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fname
= fname
;
7034 AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fnum
=
7035 buflist_add(fname
, BLN_LISTED
| (set_fnum
== 2 ? BLN_CURBUF
: 0));
7039 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7041 * Adjust slashes in file names. Called after 'shellslash' was set.
7044 alist_slash_adjust()
7047 # ifdef FEAT_WINDOWS
7052 for (i
= 0; i
< GARGCOUNT
; ++i
)
7053 if (GARGLIST
[i
].ae_fname
!= NULL
)
7054 slash_adjust(GARGLIST
[i
].ae_fname
);
7055 # ifdef FEAT_WINDOWS
7056 FOR_ALL_TAB_WINDOWS(tp
, wp
)
7057 if (wp
->w_alist
!= &global_alist
)
7058 for (i
= 0; i
< WARGCOUNT(wp
); ++i
)
7059 if (WARGLIST(wp
)[i
].ae_fname
!= NULL
)
7060 slash_adjust(WARGLIST(wp
)[i
].ae_fname
);
7070 exarg_T
*eap UNUSED
;
7072 curbuf
->b_flags
|= BF_PRESERVED
;
7073 ml_preserve(curbuf
, TRUE
);
7083 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7084 recoverymode
= TRUE
;
7085 if (!check_changed(curbuf
, p_awa
, TRUE
, eap
->forceit
, FALSE
)
7086 && (*eap
->arg
== NUL
7087 || setfname(curbuf
, eap
->arg
, NULL
, TRUE
) == OK
))
7089 recoverymode
= FALSE
;
7093 * Command modifier used in a wrong way.
7096 ex_wrongmodifier(eap
)
7099 eap
->errmsg
= e_invcmd
;
7104 * :sview [+command] file split window with new file, read-only
7105 * :split [[+command] file] split window with current or new file
7106 * :vsplit [[+command] file] split window vertically with current or new file
7107 * :new [[+command] file] split window with no or new file
7108 * :vnew [[+command] file] split vertically window with no or new file
7109 * :sfind [+command] file split window with file in 'path'
7111 * :tabedit open new Tab page with empty window
7112 * :tabedit [+command] file open new Tab page and edit "file"
7113 * :tabnew [[+command] file] just like :tabedit
7114 * :tabfind [+command] file open new Tab page and find "file"
7120 win_T
*old_curwin
= curwin
;
7121 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7122 char_u
*fname
= NULL
;
7125 int browse_flag
= cmdmod
.browse
;
7128 # ifndef FEAT_VERTSPLIT
7129 if (eap
->cmdidx
== CMD_vsplit
|| eap
->cmdidx
== CMD_vnew
)
7137 need_mouse_correct
= TRUE
;
7140 # ifdef FEAT_QUICKFIX
7141 /* A ":split" in the quickfix window works like ":new". Don't want two
7142 * quickfix windows. But it's OK when doing ":tab split". */
7143 if (bt_quickfix(curbuf
) && cmdmod
.tab
== 0)
7145 if (eap
->cmdidx
== CMD_split
)
7146 eap
->cmdidx
= CMD_new
;
7147 # ifdef FEAT_VERTSPLIT
7148 if (eap
->cmdidx
== CMD_vsplit
)
7149 eap
->cmdidx
= CMD_vnew
;
7154 # ifdef FEAT_SEARCHPATH
7155 if (eap
->cmdidx
== CMD_sfind
|| eap
->cmdidx
== CMD_tabfind
)
7157 fname
= find_file_in_path(eap
->arg
, (int)STRLEN(eap
->arg
),
7158 FNAME_MESS
, TRUE
, curbuf
->b_ffname
);
7169 # ifdef FEAT_VERTSPLIT
7170 && eap
->cmdidx
!= CMD_vnew
7172 && eap
->cmdidx
!= CMD_new
)
7174 # ifdef FEAT_AUTOCMD
7179 au_has_group((char_u
*)"FileExplorer"))
7181 /* No browsing supported but we do have the file explorer:
7182 * Edit the directory. */
7183 if (*eap
->arg
== NUL
|| !mch_isdir(eap
->arg
))
7184 eap
->arg
= (char_u
*)".";
7189 fname
= do_browse(0, (char_u
*)_("Edit File in new window"),
7190 eap
->arg
, NULL
, NULL
, NULL
, curbuf
);
7196 cmdmod
.browse
= FALSE
; /* Don't browse again in do_ecmd(). */
7200 * Either open new tab page or split the window.
7202 if (eap
->cmdidx
== CMD_tabedit
7203 || eap
->cmdidx
== CMD_tabfind
7204 || eap
->cmdidx
== CMD_tabnew
)
7206 if (win_new_tabpage(cmdmod
.tab
!= 0 ? cmdmod
.tab
7207 : eap
->addr_count
== 0 ? 0
7208 : (int)eap
->line2
+ 1) != FAIL
)
7210 do_exedit(eap
, old_curwin
);
7212 /* set the alternate buffer for the window we came from */
7213 if (curwin
!= old_curwin
7214 && win_valid(old_curwin
)
7215 && old_curwin
->w_buffer
!= curbuf
7217 old_curwin
->w_alt_fnum
= curbuf
->b_fnum
;
7220 else if (win_split(eap
->addr_count
> 0 ? (int)eap
->line2
: 0,
7221 *eap
->cmd
== 'v' ? WSP_VERT
: 0) != FAIL
)
7223 # ifdef FEAT_SCROLLBIND
7224 /* Reset 'scrollbind' when editing another file, but keep it when
7225 * doing ":split" without arguments. */
7226 if (*eap
->arg
!= NUL
7231 curwin
->w_p_scb
= FALSE
;
7233 do_check_scrollbind(FALSE
);
7235 do_exedit(eap
, old_curwin
);
7239 cmdmod
.browse
= browse_flag
;
7242 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7249 * Open a new tab page.
7256 vim_memset(&ea
, 0, sizeof(ea
));
7257 ea
.cmdidx
= CMD_tabnew
;
7258 ea
.cmd
= (char_u
*)"tabn";
7259 ea
.arg
= (char_u
*)"";
7270 switch (eap
->cmdidx
)
7279 case CMD_tabprevious
:
7281 goto_tabpage(eap
->addr_count
== 0 ? -1 : -(int)eap
->line2
);
7283 default: /* CMD_tabnext */
7284 goto_tabpage(eap
->addr_count
== 0 ? 0 : (int)eap
->line2
);
7296 tabpage_move(eap
->addr_count
== 0 ? 9999 : (int)eap
->line2
);
7300 * :tabs command: List tabs and their contents.
7304 exarg_T
*eap UNUSED
;
7312 for (tp
= first_tabpage
; tp
!= NULL
&& !got_int
; tp
= tp
->tp_next
)
7315 vim_snprintf((char *)IObuff
, IOSIZE
, _("Tab page %d"), tabcount
++);
7316 msg_outtrans_attr(IObuff
, hl_attr(HLF_T
));
7317 out_flush(); /* output one line at a time */
7323 wp
= tp
->tp_firstwin
;
7324 for ( ; wp
!= NULL
&& !got_int
; wp
= wp
->w_next
)
7327 msg_putchar(wp
== curwin
? '>' : ' ');
7329 msg_putchar(bufIsChanged(wp
->w_buffer
) ? '+' : ' ');
7331 if (buf_spname(wp
->w_buffer
) != NULL
)
7332 STRCPY(IObuff
, buf_spname(wp
->w_buffer
));
7334 home_replace(wp
->w_buffer
, wp
->w_buffer
->b_fname
,
7335 IObuff
, IOSIZE
, TRUE
);
7336 msg_outtrans(IObuff
);
7337 out_flush(); /* output one line at a time */
7343 #endif /* FEAT_WINDOWS */
7346 * ":mode": Set screen mode.
7347 * If no argument given, just get the screen size and redraw.
7353 if (*eap
->arg
== NUL
)
7356 mch_screenmode(eap
->arg
);
7362 * set, increment or decrement current window height
7371 if (eap
->addr_count
> 0)
7374 for (wp
= firstwin
; wp
->w_next
!= NULL
&& --n
> 0; wp
= wp
->w_next
)
7379 need_mouse_correct
= TRUE
;
7381 n
= atol((char *)eap
->arg
);
7382 #ifdef FEAT_VERTSPLIT
7383 if (cmdmod
.split
& WSP_VERT
)
7385 if (*eap
->arg
== '-' || *eap
->arg
== '+')
7386 n
+= W_WIDTH(curwin
);
7387 else if (n
== 0 && eap
->arg
[0] == NUL
) /* default is very wide */
7389 win_setwidth_win((int)n
, wp
);
7394 if (*eap
->arg
== '-' || *eap
->arg
== '+')
7395 n
+= curwin
->w_height
;
7396 else if (n
== 0 && eap
->arg
[0] == NUL
) /* default is very wide */
7398 win_setheight_win((int)n
, wp
);
7404 * ":find [+command] <file>" command.
7410 #ifdef FEAT_SEARCHPATH
7414 fname
= find_file_in_path(eap
->arg
, (int)STRLEN(eap
->arg
), FNAME_MESS
,
7415 TRUE
, curbuf
->b_ffname
);
7416 if (eap
->addr_count
> 0)
7418 /* Repeat finding the file "count" times. This matters when it
7419 * appears several times in the path. */
7421 while (fname
!= NULL
&& --count
> 0)
7424 fname
= find_file_in_path(NULL
, 0, FNAME_MESS
,
7425 FALSE
, curbuf
->b_ffname
);
7433 do_exedit(eap
, NULL
);
7434 #ifdef FEAT_SEARCHPATH
7441 * ":open" simulation: for now just work like ":visual".
7447 regmatch_T regmatch
;
7450 curwin
->w_cursor
.lnum
= eap
->line2
;
7451 beginline(BL_SOL
| BL_FIX
);
7452 if (*eap
->arg
== '/')
7454 /* ":open /pattern/": put cursor in column found with pattern */
7456 p
= skip_regexp(eap
->arg
, '/', p_magic
, NULL
);
7458 regmatch
.regprog
= vim_regcomp(eap
->arg
, p_magic
? RE_MAGIC
: 0);
7459 if (regmatch
.regprog
!= NULL
)
7461 regmatch
.rm_ic
= p_ic
;
7462 p
= ml_get_curline();
7463 if (vim_regexec(®match
, p
, (colnr_T
)0))
7464 curwin
->w_cursor
.col
= (colnr_T
)(regmatch
.startp
[0] - p
);
7467 vim_free(regmatch
.regprog
);
7469 /* Move to the NUL, ignore any other arguments. */
7470 eap
->arg
+= STRLEN(eap
->arg
);
7474 eap
->cmdidx
= CMD_visual
;
7475 do_exedit(eap
, NULL
);
7479 * ":edit", ":badd", ":visual".
7485 do_exedit(eap
, NULL
);
7489 * ":edit <file>" command and alikes.
7492 do_exedit(eap
, old_curwin
)
7494 win_T
*old_curwin
; /* curwin before doing a split or NULL */
7500 int exmode_was
= exmode_active
;
7503 * ":vi" command ends Ex mode.
7505 if (exmode_active
&& (eap
->cmdidx
== CMD_visual
7506 || eap
->cmdidx
== CMD_view
))
7508 exmode_active
= FALSE
;
7509 if (*eap
->arg
== NUL
)
7511 /* Special case: ":global/pat/visual\NLvi-commands" */
7514 int rd
= RedrawingDisabled
;
7515 int nwr
= no_wait_return
;
7516 int ms
= msg_scroll
;
7518 int he
= hold_gui_events
;
7521 if (eap
->nextcmd
!= NULL
)
7523 stuffReadbuff(eap
->nextcmd
);
7524 eap
->nextcmd
= NULL
;
7527 if (exmode_was
!= EXMODE_VIM
)
7528 settmode(TMODE_RAW
);
7529 RedrawingDisabled
= 0;
7531 need_wait_return
= FALSE
;
7534 hold_gui_events
= 0;
7536 must_redraw
= CLEAR
;
7538 main_loop(FALSE
, TRUE
);
7540 RedrawingDisabled
= rd
;
7541 no_wait_return
= nwr
;
7544 hold_gui_events
= he
;
7551 if ((eap
->cmdidx
== CMD_new
7552 || eap
->cmdidx
== CMD_tabnew
7553 || eap
->cmdidx
== CMD_tabedit
7554 #ifdef FEAT_VERTSPLIT
7555 || eap
->cmdidx
== CMD_vnew
7557 ) && *eap
->arg
== NUL
)
7559 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
7561 (void)do_ecmd(0, NULL
, NULL
, eap
, ECMD_ONE
,
7562 ECMD_HIDE
+ (eap
->forceit
? ECMD_FORCEIT
: 0),
7563 old_curwin
== NULL
? curwin
: NULL
);
7565 else if ((eap
->cmdidx
!= CMD_split
7566 #ifdef FEAT_VERTSPLIT
7567 && eap
->cmdidx
!= CMD_vsplit
7577 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7578 * can bring us here, others are stopped earlier. */
7579 if (*eap
->arg
!= NUL
&& curbuf_locked())
7583 if (eap
->cmdidx
== CMD_view
|| eap
->cmdidx
== CMD_sview
)
7584 readonlymode
= TRUE
;
7585 else if (eap
->cmdidx
== CMD_enew
)
7586 readonlymode
= FALSE
; /* 'readonly' doesn't make sense in an
7589 if (do_ecmd(0, (eap
->cmdidx
== CMD_enew
? NULL
: eap
->arg
),
7591 /* ":edit" goes to first line if Vi compatible */
7592 (*eap
->arg
== NUL
&& eap
->do_ecmd_lnum
== 0
7593 && vim_strchr(p_cpo
, CPO_GOTO1
) != NULL
)
7594 ? ECMD_ONE
: eap
->do_ecmd_lnum
,
7595 (P_HID(curbuf
) ? ECMD_HIDE
: 0)
7596 + (eap
->forceit
? ECMD_FORCEIT
: 0)
7597 #ifdef FEAT_LISTCMDS
7598 + (eap
->cmdidx
== CMD_badd
? ECMD_ADDBUF
: 0 )
7600 , old_curwin
== NULL
? curwin
: NULL
) == FAIL
)
7602 /* Editing the file failed. If the window was split, close it. */
7604 if (old_curwin
!= NULL
)
7606 need_hide
= (curbufIsChanged() && curbuf
->b_nwindows
<= 1);
7607 if (!need_hide
|| P_HID(curbuf
))
7609 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7612 /* Reset the error/interrupt/exception state here so that
7613 * aborting() returns FALSE when closing a window. */
7617 need_mouse_correct
= TRUE
;
7619 win_close(curwin
, !need_hide
&& !P_HID(curbuf
));
7621 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7622 /* Restore the error/interrupt/exception state if not
7623 * discarded by a new aborting error, interrupt, or
7624 * uncaught exception. */
7631 else if (readonlymode
&& curbuf
->b_nwindows
== 1)
7633 /* When editing an already visited buffer, 'readonly' won't be set
7634 * but the previous value is kept. With ":view" and ":sview" we
7635 * want the file to be readonly, except when another window is
7636 * editing the same buffer. */
7637 curbuf
->b_p_ro
= TRUE
;
7643 if (eap
->do_ecmd_cmd
!= NULL
)
7644 do_cmdline_cmd(eap
->do_ecmd_cmd
);
7646 n
= curwin
->w_arg_idx_invalid
;
7648 check_arg_idx(curwin
);
7650 if (n
!= curwin
->w_arg_idx_invalid
)
7657 * if ":split file" worked, set alternate file name in old window to new
7660 if (old_curwin
!= NULL
7662 && curwin
!= old_curwin
7663 && win_valid(old_curwin
)
7664 && old_curwin
->w_buffer
!= curbuf
7666 old_curwin
->w_alt_fnum
= curbuf
->b_fnum
;
7669 ex_no_reprint
= TRUE
;
7674 * ":gui" and ":gvim" when there is no GUI.
7680 eap
->errmsg
= e_nogvim
;
7684 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7689 gui_make_tearoff(eap
->arg
);
7693 #if defined(FEAT_MENU) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
7694 || defined(FEAT_GUI_MACVIM))
7699 gui_make_popup(eap
->arg
, eap
->forceit
);
7705 exarg_T
*eap UNUSED
;
7707 if (curbuf
->b_ml
.ml_mfp
== NULL
|| curbuf
->b_ml
.ml_mfp
->mf_fname
== NULL
)
7708 MSG(_("No swap file"));
7710 msg(curbuf
->b_ml
.ml_mfp
->mf_fname
);
7714 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7716 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7720 exarg_T
*eap UNUSED
;
7722 #ifdef FEAT_SCROLLBIND
7726 linenr_T old_linenr
= curwin
->w_cursor
.lnum
;
7731 * determine max topline
7733 if (curwin
->w_p_scb
)
7735 topline
= curwin
->w_topline
;
7736 for (wp
= firstwin
; wp
; wp
= wp
->w_next
)
7738 if (wp
->w_p_scb
&& wp
->w_buffer
)
7740 y
= wp
->w_buffer
->b_ml
.ml_line_count
- p_so
;
7755 * set all scrollbind windows to the same topline
7758 for (curwin
= firstwin
; curwin
; curwin
= curwin
->w_next
)
7760 if (curwin
->w_p_scb
)
7762 y
= topline
- curwin
->w_topline
;
7766 scrolldown(-y
, TRUE
);
7767 curwin
->w_scbind_pos
= topline
;
7768 redraw_later(VALID
);
7771 curwin
->w_redr_status
= TRUE
;
7776 if (curwin
->w_p_scb
)
7778 did_syncbind
= TRUE
;
7780 if (old_linenr
!= curwin
->w_cursor
.lnum
)
7786 ins_typebuf(ctrl_o
, REMAP_NONE
, 0, TRUE
, FALSE
);
7798 int empty
= (curbuf
->b_ml
.ml_flags
& ML_EMPTY
);
7801 if (eap
->usefilter
) /* :r!cmd */
7802 do_bang(1, eap
, FALSE
, FALSE
, TRUE
);
7805 if (u_save(eap
->line2
, (linenr_T
)(eap
->line2
+ 1)) == FAIL
)
7813 browseFile
= do_browse(0, (char_u
*)_("Append File"), eap
->arg
,
7814 NULL
, NULL
, NULL
, curbuf
);
7815 if (browseFile
!= NULL
)
7817 i
= readfile(browseFile
, NULL
,
7818 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7819 vim_free(browseFile
);
7826 if (*eap
->arg
== NUL
)
7828 if (check_fname() == FAIL
) /* check for no file name */
7830 i
= readfile(curbuf
->b_ffname
, curbuf
->b_fname
,
7831 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7835 if (vim_strchr(p_cpo
, CPO_ALTREAD
) != NULL
)
7836 (void)setaltfname(eap
->arg
, eap
->arg
, (linenr_T
)1);
7837 i
= readfile(eap
->arg
, NULL
,
7838 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7843 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7846 EMSG2(_(e_notopen
), eap
->arg
);
7850 if (empty
&& exmode_active
)
7852 /* Delete the empty line that remains. Historically ex does
7853 * this but vi doesn't. */
7854 if (eap
->line2
== 0)
7855 lnum
= curbuf
->b_ml
.ml_line_count
;
7858 if (*ml_get(lnum
) == NUL
&& u_savedel(lnum
, 1L) == OK
)
7860 ml_delete(lnum
, FALSE
);
7861 deleted_lines_mark(lnum
, 1L);
7862 if (curwin
->w_cursor
.lnum
> 1
7863 && curwin
->w_cursor
.lnum
>= lnum
)
7864 --curwin
->w_cursor
.lnum
;
7867 redraw_curbuf_later(VALID
);
7872 static char_u
*prev_dir
= NULL
;
7874 #if defined(EXITFREE) || defined(PROTO)
7881 vim_free(globaldir
);
7888 * ":cd", ":lcd", ":chdir" and ":lchdir".
7898 #if !defined(UNIX) && !defined(VMS)
7899 /* for non-UNIX ":cd" means: print current directory */
7900 if (*new_dir
== NUL
)
7906 if (allbuf_locked())
7909 if (vim_strchr(p_cpo
, CPO_CHDIR
) != NULL
&& curbufIsChanged()
7912 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
7916 /* ":cd -": Change to previous directory */
7917 if (STRCMP(new_dir
, "-") == 0)
7919 if (prev_dir
== NULL
)
7921 EMSG(_("E186: No previous directory"));
7927 /* Save current directory for next ":cd -" */
7929 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7930 prev_dir
= vim_strsave(NameBuff
);
7934 #if defined(UNIX) || defined(VMS)
7935 /* for UNIX ":cd" means: go to home directory */
7936 if (*new_dir
== NUL
)
7938 /* use NameBuff for home directory name */
7942 p
= mch_getenv((char_u
*)"SYS$LOGIN");
7943 if (p
== NULL
|| *p
== NUL
) /* empty is the same as not set */
7946 vim_strncpy(NameBuff
, p
, MAXPATHL
- 1);
7948 expand_env((char_u
*)"$HOME", NameBuff
, MAXPATHL
);
7953 if (new_dir
== NULL
|| vim_chdir(new_dir
))
7957 vim_free(curwin
->w_localdir
);
7958 if (eap
->cmdidx
== CMD_lcd
|| eap
->cmdidx
== CMD_lchdir
)
7960 /* If still in global directory, need to remember current
7961 * directory as global directory. */
7962 if (globaldir
== NULL
&& prev_dir
!= NULL
)
7963 globaldir
= vim_strsave(prev_dir
);
7964 /* Remember this local directory for the window. */
7965 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7966 curwin
->w_localdir
= vim_strsave(NameBuff
);
7970 /* We are now in the global directory, no need to remember its
7972 vim_free(globaldir
);
7974 curwin
->w_localdir
= NULL
;
7977 shorten_fnames(TRUE
);
7979 /* Echo the new current directory if the command was typed. */
7992 exarg_T
*eap UNUSED
;
7994 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7996 #ifdef BACKSLASH_IN_FILENAME
7997 slash_adjust(NameBuff
);
8002 EMSG(_("E187: Unknown"));
8012 smsg((char_u
*)"%ld", (long)eap
->line2
);
8025 n
= W_WINROW(curwin
) + curwin
->w_wrow
- msg_scrolled
;
8027 windgoto((int)n
, curwin
->w_wcol
);
8034 case NUL
: len
*= 1000L; break;
8035 default: EMSG2(_(e_invarg2
), eap
->arg
); return;
8041 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
8051 for (done
= 0; !got_int
&& done
< msec
; done
+= 1000L)
8053 ui_delay(msec
- done
> 1000L ? 1000L : msec
- done
, TRUE
);
8059 do_exmap(eap
, isabbrev
)
8067 mode
= get_map_mode(&cmdp
, eap
->forceit
|| isabbrev
);
8069 switch (do_map((*cmdp
== 'n') ? 2 : (*cmdp
== 'u'),
8070 eap
->arg
, mode
, isabbrev
))
8072 case 1: EMSG(_(e_invarg
));
8074 case 2: EMSG(isabbrev
? _(e_noabbr
) : _(e_nomap
));
8080 * ":winsize" command (obsolete).
8087 char_u
*arg
= eap
->arg
;
8090 w
= getdigits(&arg
);
8091 arg
= skipwhite(arg
);
8093 h
= getdigits(&arg
);
8094 if (*p
!= NUL
&& *arg
== NUL
)
8095 set_shellsize(w
, h
, TRUE
);
8097 EMSG(_("E465: :winsize requires two number arguments"));
8108 if (*eap
->arg
== 'g' || *eap
->arg
== Ctrl_G
)
8110 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8111 if (eap
->arg
[1] == NUL
)
8116 xchar
= eap
->arg
[1];
8122 eap
->nextcmd
= check_nextcmd(p
);
8124 if (*p
!= NUL
&& *p
!= '"' && eap
->nextcmd
== NULL
)
8128 /* Pass flags on for ":vertical wincmd ]". */
8129 postponed_split_flags
= cmdmod
.split
;
8130 postponed_split_tab
= cmdmod
.tab
;
8131 do_window(*eap
->arg
, eap
->addr_count
> 0 ? eap
->line2
: 0L, xchar
);
8132 postponed_split_flags
= 0;
8133 postponed_split_tab
= 0;
8138 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
8147 char_u
*arg
= eap
->arg
;
8152 # if defined(FEAT_GUI) || defined(MSWIN)
8154 if (gui
.in_use
&& gui_mch_get_winpos(&x
, &y
) != FAIL
)
8156 if (mch_get_winpos(&x
, &y
) != FAIL
)
8159 sprintf((char *)IObuff
, _("Window position: X %d, Y %d"), x
, y
);
8164 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8168 x
= getdigits(&arg
);
8169 arg
= skipwhite(arg
);
8171 y
= getdigits(&arg
);
8172 if (*p
== NUL
|| *arg
!= NUL
)
8174 EMSG(_("E466: :winpos requires two number arguments"));
8179 gui_mch_set_winpos(x
, y
);
8180 else if (gui
.starting
)
8182 /* Remember the coordinates for when the window is opened. */
8186 # ifdef HAVE_TGETENT
8191 mch_set_winpos(x
, y
);
8194 # ifdef HAVE_TGETENT
8196 term_set_winpos(x
, y
);
8203 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8212 oa
.regname
= eap
->regname
;
8213 oa
.start
.lnum
= eap
->line1
;
8214 oa
.end
.lnum
= eap
->line2
;
8215 oa
.line_count
= eap
->line2
- eap
->line1
+ 1;
8216 oa
.motion_type
= MLINE
;
8217 #ifdef FEAT_VIRTUALEDIT
8220 if (eap
->cmdidx
!= CMD_yank
) /* position cursor for undo */
8223 curwin
->w_cursor
.lnum
= eap
->line1
;
8224 beginline(BL_SOL
| BL_FIX
);
8227 switch (eap
->cmdidx
)
8230 oa
.op_type
= OP_DELETE
;
8235 oa
.op_type
= OP_YANK
;
8236 (void)op_yank(&oa
, FALSE
, TRUE
);
8239 default: /* CMD_rshift or CMD_lshift */
8240 if ((eap
->cmdidx
== CMD_rshift
)
8241 #ifdef FEAT_RIGHTLEFT
8245 oa
.op_type
= OP_RSHIFT
;
8247 oa
.op_type
= OP_LSHIFT
;
8248 op_shift(&oa
, FALSE
, eap
->amount
);
8251 #ifdef FEAT_VIRTUALEDIT
8264 /* ":0put" works like ":1put!". */
8265 if (eap
->line2
== 0)
8268 eap
->forceit
= TRUE
;
8270 curwin
->w_cursor
.lnum
= eap
->line2
;
8271 do_put(eap
->regname
, eap
->forceit
? BACKWARD
: FORWARD
, 1L,
8272 PUT_LINE
|PUT_CURSLINE
);
8276 * Handle ":copy" and ":move".
8284 n
= get_address(&eap
->arg
, FALSE
, FALSE
);
8285 if (eap
->arg
== NULL
) /* error detected */
8287 eap
->nextcmd
= NULL
;
8293 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8295 if (n
== MAXLNUM
|| n
< 0 || n
> curbuf
->b_ml
.ml_line_count
)
8301 if (eap
->cmdidx
== CMD_move
)
8303 if (do_move(eap
->line1
, eap
->line2
, n
) == FAIL
)
8307 ex_copy(eap
->line1
, eap
->line2
, n
);
8309 beginline(BL_SOL
| BL_FIX
);
8314 * Print the current line if flags were given to the Ex command.
8320 if (eap
->flags
!= 0)
8322 print_line(curwin
->w_cursor
.lnum
, (eap
->flags
& EXFLAG_NR
),
8323 (eap
->flags
& EXFLAG_LIST
));
8324 ex_no_reprint
= TRUE
;
8329 * ":smagic" and ":snomagic".
8335 int magic_save
= p_magic
;
8337 p_magic
= (eap
->cmdidx
== CMD_smagic
);
8339 p_magic
= magic_save
;
8349 curwin
->w_cursor
.lnum
= eap
->line1
;
8350 if (eap
->line1
== eap
->line2
)
8352 if (eap
->addr_count
>= 2) /* :2,2join does nothing */
8354 if (eap
->line2
== curbuf
->b_ml
.ml_line_count
)
8361 do_do_join(eap
->line2
- eap
->line1
+ 1, !eap
->forceit
);
8362 beginline(BL_WHITE
| BL_FIX
);
8367 * ":[addr]@r" or ":[addr]*r": execute register
8375 curwin
->w_cursor
.lnum
= eap
->line2
;
8377 #ifdef USE_ON_FLY_SCROLL
8378 dont_scroll
= TRUE
; /* disallow scrolling here */
8381 /* get the register name. No name means to use the previous one */
8383 if (c
== NUL
|| (c
== '*' && *eap
->cmd
== '*'))
8385 /* Put the register in the typeahead buffer with the "silent" flag. */
8386 if (do_execreg(c
, TRUE
, vim_strchr(p_cpo
, CPO_EXECBUF
) != NULL
, TRUE
)
8393 int save_efr
= exec_from_reg
;
8395 exec_from_reg
= TRUE
;
8398 * Execute from the typeahead buffer.
8399 * Originally this didn't check for the typeahead buffer to be empty,
8400 * thus could read more Ex commands from stdin. It's not clear why,
8401 * it is certainly unexpected.
8403 while ((!stuff_empty() || typebuf
.tb_len
> 0) && vpeekc() == ':')
8404 (void)do_cmdline(NULL
, getexline
, NULL
, DOCMD_NOWAIT
|DOCMD_VERBOSE
);
8406 exec_from_reg
= save_efr
;
8417 do_bang(eap
->addr_count
, eap
, eap
->forceit
, TRUE
, TRUE
);
8425 exarg_T
*eap UNUSED
;
8427 if (eap
->addr_count
== 1) /* :undo 123 */
8428 undo_time(eap
->line2
, FALSE
, TRUE
);
8438 exarg_T
*eap UNUSED
;
8444 * ":earlier" and ":later".
8452 char_u
*p
= eap
->arg
;
8456 else if (isdigit(*p
))
8458 count
= getdigits(&p
);
8461 case 's': ++p
; sec
= TRUE
; break;
8462 case 'm': ++p
; sec
= TRUE
; count
*= 60; break;
8463 case 'h': ++p
; sec
= TRUE
; count
*= 60 * 60; break;
8468 EMSG2(_(e_invarg2
), eap
->arg
);
8470 undo_time(eap
->cmdidx
== CMD_earlier
? -count
: count
, sec
, FALSE
);
8474 * ":redir": start/stop redirection.
8482 char_u
*arg
= eap
->arg
;
8484 if (STRICMP(eap
->arg
, "END") == 0)
8498 arg
= skipwhite(arg
);
8502 /* Expand environment variables and "~/". */
8503 fname
= expand_env_save(arg
);
8511 browseFile
= do_browse(BROWSE_SAVE
,
8512 (char_u
*)_("Save Redirection"),
8513 fname
, NULL
, NULL
, BROWSE_FILTER_ALL_FILES
, curbuf
);
8514 if (browseFile
== NULL
)
8515 return; /* operation cancelled */
8518 eap
->forceit
= TRUE
; /* since dialog already asked */
8522 redir_fd
= open_exfile(fname
, eap
->forceit
, mode
);
8526 else if (*arg
== '@')
8528 /* redirect to a register a-z (resp. A-Z for appending) */
8531 if (ASCII_ISALPHA(*arg
)
8532 # ifdef FEAT_CLIPBOARD
8539 if (*arg
== '>' && arg
[1] == '>') /* append */
8543 /* Can use both "@a" and "@a>". */
8546 /* Make register empty when not using @A-@Z and the
8547 * command is valid. */
8548 if (*arg
== NUL
&& !isupper(redir_reg
))
8549 write_reg_contents(redir_reg
, (char_u
*)"", -1, FALSE
);
8555 EMSG2(_(e_invarg2
), eap
->arg
);
8558 else if (*arg
== '=' && arg
[1] == '>')
8562 /* redirect to a variable */
8574 if (var_redir_start(skipwhite(arg
), append
) == OK
)
8579 /* TODO: redirect to a buffer */
8582 EMSG2(_(e_invarg2
), eap
->arg
);
8585 /* Make sure redirection is not off. Can happen for cmdline completion
8586 * that indirectly invokes a command to catch its output. */
8587 if (redir_fd
!= NULL
8589 || redir_reg
|| redir_vname
8596 * ":redraw": force redraw
8602 int r
= RedrawingDisabled
;
8605 RedrawingDisabled
= 0;
8608 update_screen(eap
->forceit
? CLEAR
:
8610 VIsual_active
? INVERTED
:
8617 RedrawingDisabled
= r
;
8620 /* Reset msg_didout, so that a message that's there is overwritten. */
8628 * ":redrawstatus": force redraw of status line(s)
8631 ex_redrawstatus(eap
)
8632 exarg_T
*eap UNUSED
;
8634 #if defined(FEAT_WINDOWS)
8635 int r
= RedrawingDisabled
;
8638 RedrawingDisabled
= 0;
8641 status_redraw_all();
8643 status_redraw_curbuf();
8646 VIsual_active
? INVERTED
:
8649 RedrawingDisabled
= r
;
8658 if (redir_fd
!= NULL
)
8673 #if defined(FEAT_SESSION) && defined(USE_CRNL)
8674 # define MKSESSION_NL
8675 static int mksession_nl
= FALSE
; /* use NL only in put_eol() */
8679 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8689 char_u
*browseFile
= NULL
;
8692 int view_session
= FALSE
;
8693 int using_vdir
= FALSE
; /* using 'viewdir'? */
8694 char_u
*viewFile
= NULL
;
8698 if (eap
->cmdidx
== CMD_mksession
|| eap
->cmdidx
== CMD_mkview
)
8701 view_session
= TRUE
;
8711 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8712 if (eap
->cmdidx
== CMD_mkview
8713 && (*eap
->arg
== NUL
8714 || (vim_isdigit(*eap
->arg
) && eap
->arg
[1] == NUL
)))
8716 eap
->forceit
= TRUE
;
8717 fname
= get_view_file(*eap
->arg
);
8725 if (*eap
->arg
!= NUL
)
8727 else if (eap
->cmdidx
== CMD_mkvimrc
)
8728 fname
= (char_u
*)VIMRC_FILE
;
8730 else if (eap
->cmdidx
== CMD_mksession
)
8731 fname
= (char_u
*)SESSION_FILE
;
8734 fname
= (char_u
*)EXRC_FILE
;
8739 browseFile
= do_browse(BROWSE_SAVE
,
8740 # ifdef FEAT_SESSION
8741 eap
->cmdidx
== CMD_mkview
? (char_u
*)_("Save View") :
8742 eap
->cmdidx
== CMD_mksession
? (char_u
*)_("Save Session") :
8744 (char_u
*)_("Save Setup"),
8745 fname
, (char_u
*)"vim", NULL
, BROWSE_FILTER_MACROS
, NULL
);
8746 if (browseFile
== NULL
)
8749 eap
->forceit
= TRUE
; /* since dialog already asked */
8753 #if defined(FEAT_SESSION) && defined(vim_mkdir)
8754 /* When using 'viewdir' may have to create the directory. */
8755 if (using_vdir
&& !mch_isdir(p_vdir
))
8756 vim_mkdir_emsg(p_vdir
, 0755);
8759 fd
= open_exfile(fname
, eap
->forceit
, WRITEBIN
);
8763 if (eap
->cmdidx
== CMD_mkview
)
8766 flagp
= &ssop_flags
;
8770 /* "unix" in 'sessionoptions': use NL line separator */
8771 if (view_session
&& (*flagp
& SSOP_UNIX
))
8772 mksession_nl
= TRUE
;
8775 /* Write the version command for :mkvimrc */
8776 if (eap
->cmdidx
== CMD_mkvimrc
)
8777 (void)put_line(fd
, "version 6.0");
8780 if (eap
->cmdidx
== CMD_mksession
)
8782 if (put_line(fd
, "let SessionLoad = 1") == FAIL
)
8786 if (eap
->cmdidx
!= CMD_mkview
)
8789 /* Write setting 'compatible' first, because it has side effects.
8790 * For that same reason only do it when needed. */
8792 (void)put_line(fd
, "if !&cp | set cp | endif");
8794 (void)put_line(fd
, "if &cp | set nocp | endif");
8799 || (eap
->cmdidx
== CMD_mksession
8800 && (*flagp
& SSOP_OPTIONS
)))
8802 failed
|= (makemap(fd
, NULL
) == FAIL
8803 || makeset(fd
, OPT_GLOBAL
, FALSE
) == FAIL
);
8806 if (!failed
&& view_session
)
8808 if (put_line(fd
, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL
)
8810 if (eap
->cmdidx
== CMD_mksession
)
8812 char_u dirnow
[MAXPATHL
]; /* current directory */
8815 * Change to session file's dir.
8817 if (mch_dirname(dirnow
, MAXPATHL
) == FAIL
8818 || mch_chdir((char *)dirnow
) != 0)
8820 if (*dirnow
!= NUL
&& (ssop_flags
& SSOP_SESDIR
))
8822 if (vim_chdirfile(fname
) == OK
)
8823 shorten_fnames(TRUE
);
8825 else if (*dirnow
!= NUL
8826 && (ssop_flags
& SSOP_CURDIR
) && globaldir
!= NULL
)
8828 if (mch_chdir((char *)globaldir
) == 0)
8829 shorten_fnames(TRUE
);
8832 failed
|= (makeopens(fd
, dirnow
) == FAIL
);
8834 /* restore original dir */
8835 if (*dirnow
!= NUL
&& ((ssop_flags
& SSOP_SESDIR
)
8836 || ((ssop_flags
& SSOP_CURDIR
) && globaldir
!= NULL
)))
8838 if (mch_chdir((char *)dirnow
) != 0)
8839 EMSG(_(e_prev_dir
));
8840 shorten_fnames(TRUE
);
8845 failed
|= (put_view(fd
, curwin
, !using_vdir
, flagp
,
8848 if (put_line(fd
, "let &so = s:so_save | let &siso = s:siso_save")
8851 if (put_line(fd
, "doautoall SessionLoadPost") == FAIL
)
8853 if (eap
->cmdidx
== CMD_mksession
)
8855 if (put_line(fd
, "unlet SessionLoad") == FAIL
)
8860 if (put_line(fd
, "\" vim: set ft=vim :") == FAIL
)
8863 failed
|= fclose(fd
);
8867 #if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8868 else if (eap
->cmdidx
== CMD_mksession
)
8870 /* successful session write - set this_session var */
8871 char_u tbuf
[MAXPATHL
];
8873 if (vim_FullName(fname
, tbuf
, MAXPATHL
, FALSE
) == OK
)
8874 set_vim_var_string(VV_THIS_SESSION
, tbuf
, -1);
8878 mksession_nl
= FALSE
;
8884 vim_free(browseFile
);
8891 #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8894 vim_mkdir_emsg(name
, prot
)
8898 if (vim_mkdir(name
, prot
) != 0)
8900 EMSG2(_("E739: Cannot create directory: %s"), name
);
8908 * Open a file for writing for an Ex command, with some checks.
8909 * Return file descriptor, or NULL on failure.
8912 open_exfile(fname
, forceit
, mode
)
8915 char *mode
; /* "w" for create new file or "a" for append */
8920 /* with Unix it is possible to open a directory */
8921 if (mch_isdir(fname
))
8923 EMSG2(_(e_isadir2
), fname
);
8927 if (!forceit
&& *mode
!= 'a' && vim_fexists(fname
))
8929 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname
);
8933 if ((fd
= mch_fopen((char *)fname
, mode
)) == NULL
)
8934 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname
);
8948 if (*eap
->arg
== NUL
) /* No argument? */
8950 else if (eap
->arg
[1] != NUL
) /* more than one character? */
8951 EMSG(_(e_trailing
));
8954 pos
= curwin
->w_cursor
; /* save curwin->w_cursor */
8955 curwin
->w_cursor
.lnum
= eap
->line2
;
8956 beginline(BL_WHITE
| BL_FIX
);
8957 if (setmark(*eap
->arg
) == FAIL
) /* set mark */
8958 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8959 curwin
->w_cursor
= pos
; /* restore curwin->w_cursor */
8964 * Update w_topline, w_leftcol and the cursor position.
8967 update_topline_cursor()
8969 check_cursor(); /* put cursor on valid line */
8971 if (!curwin
->w_p_wrap
)
8976 #ifdef FEAT_EX_EXTRA
8978 * ":normal[!] {commands}": Execute normal mode commands.
8984 int save_msg_scroll
= msg_scroll
;
8985 int save_restart_edit
= restart_edit
;
8986 int save_msg_didout
= msg_didout
;
8987 int save_State
= State
;
8989 int save_insertmode
= p_im
;
8990 int save_finish_op
= finish_op
;
8991 int save_opcount
= opcount
;
8998 if (ex_normal_lock
> 0)
9003 if (ex_normal_busy
>= p_mmd
)
9005 EMSG(_("E192: Recursive use of :normal too deep"));
9010 msg_scroll
= FALSE
; /* no msg scrolling in Normal mode */
9011 restart_edit
= 0; /* don't go to Insert mode */
9012 p_im
= FALSE
; /* don't use 'insertmode' */
9016 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
9017 * this for the K_SPECIAL leading byte, otherwise special keys will not
9024 /* Count the number of characters to be escaped. */
9025 for (p
= eap
->arg
; *p
!= NUL
; ++p
)
9028 if (*p
== CSI
) /* leadbyte CSI */
9031 for (l
= (*mb_ptr2len
)(p
) - 1; l
> 0; --l
)
9032 if (*++p
== K_SPECIAL
/* trailbyte K_SPECIAL or CSI */
9041 arg
= alloc((unsigned)(STRLEN(eap
->arg
) + len
+ 1));
9045 for (p
= eap
->arg
; *p
!= NUL
; ++p
)
9051 arg
[len
++] = KS_EXTRA
;
9052 arg
[len
++] = (int)KE_CSI
;
9055 for (l
= (*mb_ptr2len
)(p
) - 1; l
> 0; --l
)
9058 if (*p
== K_SPECIAL
)
9060 arg
[len
++] = KS_SPECIAL
;
9061 arg
[len
++] = KE_FILLER
;
9066 arg
[len
++] = KS_EXTRA
;
9067 arg
[len
++] = (int)KE_CSI
;
9079 * Save the current typeahead. This is required to allow using ":normal"
9080 * from an event handler and makes sure we don't hang when the argument
9081 * ends with half a command.
9083 save_typeahead(&tabuf
);
9084 if (tabuf
.typebuf_valid
)
9087 * Repeat the :normal command for each line in the range. When no
9088 * range given, execute it just once, without positioning the cursor
9093 if (eap
->addr_count
!= 0)
9095 curwin
->w_cursor
.lnum
= eap
->line1
++;
9096 curwin
->w_cursor
.col
= 0;
9103 eap
->arg
, eap
->forceit
? REMAP_NONE
: REMAP_YES
, FALSE
);
9105 while (eap
->addr_count
> 0 && eap
->line1
<= eap
->line2
&& !got_int
);
9108 /* Might not return to the main loop when in an event handler. */
9109 update_topline_cursor();
9111 /* Restore the previous typeahead. */
9112 restore_typeahead(&tabuf
);
9115 msg_scroll
= save_msg_scroll
;
9116 restart_edit
= save_restart_edit
;
9117 p_im
= save_insertmode
;
9118 finish_op
= save_finish_op
;
9119 opcount
= save_opcount
;
9120 msg_didout
|= save_msg_didout
; /* don't reset msg_didout now */
9122 /* Restore the state (needed when called from a function executed for
9131 * ":startinsert", ":startreplace" and ":startgreplace"
9139 coladvance((colnr_T
)MAXCOL
);
9140 curwin
->w_curswant
= MAXCOL
;
9141 curwin
->w_set_curswant
= FALSE
;
9144 /* Ignore the command when already in Insert mode. Inserting an
9145 * expression register that invokes a function can do this. */
9149 if (eap
->cmdidx
== CMD_startinsert
)
9151 else if (eap
->cmdidx
== CMD_startreplace
)
9158 if (eap
->cmdidx
== CMD_startinsert
)
9160 curwin
->w_curswant
= 0; /* avoid MAXCOL */
9169 exarg_T
*eap UNUSED
;
9172 stop_insert_mode
= TRUE
;
9176 #if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9178 * Execute normal mode command "cmd".
9179 * "remap" can be REMAP_NONE or REMAP_YES.
9182 exec_normal_cmd(cmd
, remap
, silent
)
9190 * Stuff the argument into the typeahead buffer.
9191 * Execute normal_cmd() until there is no typeahead left.
9195 ins_typebuf(cmd
, remap
, 0, TRUE
, silent
);
9196 while ((!stuff_empty() || (!typebuf_typed() && typebuf
.tb_len
> 0))
9199 update_topline_cursor();
9200 normal_cmd(&oa
, FALSE
); /* execute a Normal mode cmd */
9210 find_pattern_in_path(NULL
, 0, 0, FALSE
, FALSE
, CHECK_PATH
, 1L,
9211 eap
->forceit
? ACTION_SHOW_ALL
: ACTION_SHOW
,
9212 (linenr_T
)1, (linenr_T
)MAXLNUM
);
9215 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9223 g_do_tagpreview
= p_pvh
;
9225 g_do_tagpreview
= 0;
9238 switch (cmdnames
[eap
->cmdidx
].cmd_name
[2])
9240 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9241 if (cmdnames
[eap
->cmdidx
].cmd_name
[0] == 'p')
9242 action
= ACTION_GOTO
;
9244 action
= ACTION_SHOW
;
9246 case 'i': /* ":ilist" and ":dlist" */
9247 action
= ACTION_SHOW_ALL
;
9249 case 'u': /* ":ijump" and ":djump" */
9250 action
= ACTION_GOTO
;
9252 default: /* ":isplit" and ":dsplit" */
9253 action
= ACTION_SPLIT
;
9258 if (vim_isdigit(*eap
->arg
)) /* get count */
9260 n
= getdigits(&eap
->arg
);
9261 eap
->arg
= skipwhite(eap
->arg
);
9263 if (*eap
->arg
== '/') /* Match regexp, not just whole words */
9267 p
= skip_regexp(eap
->arg
, '/', p_magic
, NULL
);
9273 /* Check for trailing illegal characters */
9274 if (!ends_excmd(*p
))
9275 eap
->errmsg
= e_trailing
;
9277 eap
->nextcmd
= check_nextcmd(p
);
9281 find_pattern_in_path(eap
->arg
, 0, (int)STRLEN(eap
->arg
),
9282 whole
, !eap
->forceit
,
9283 *eap
->cmd
== 'd' ? FIND_DEFINE
: FIND_ANY
,
9284 n
, action
, eap
->line1
, eap
->line2
);
9290 # ifdef FEAT_QUICKFIX
9292 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9298 g_do_tagpreview
= p_pvh
;
9299 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
+ 1);
9309 win_T
*curwin_save
= curwin
;
9311 g_do_tagpreview
= p_pvh
;
9312 prepare_tagpreview(TRUE
);
9313 keep_help_flag
= curwin_save
->w_buffer
->b_help
;
9314 do_exedit(eap
, NULL
);
9315 keep_help_flag
= FALSE
;
9316 if (curwin
!= curwin_save
&& win_valid(curwin_save
))
9318 /* Return cursor to where we were */
9320 redraw_later(VALID
);
9321 win_enter(curwin_save
, TRUE
);
9323 g_do_tagpreview
= 0;
9328 * ":stag", ":stselect" and ":stjump".
9334 postponed_split
= -1;
9335 postponed_split_flags
= cmdmod
.split
;
9336 postponed_split_tab
= cmdmod
.tab
;
9337 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
+ 1);
9338 postponed_split_flags
= 0;
9339 postponed_split_tab
= 0;
9344 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9350 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
);
9354 ex_tag_cmd(eap
, name
)
9362 case 'j': cmd
= DT_JUMP
; /* ":tjump" */
9364 case 's': cmd
= DT_SELECT
; /* ":tselect" */
9366 case 'p': cmd
= DT_PREV
; /* ":tprevious" */
9368 case 'N': cmd
= DT_PREV
; /* ":tNext" */
9370 case 'n': cmd
= DT_NEXT
; /* ":tnext" */
9372 case 'o': cmd
= DT_POP
; /* ":pop" */
9374 case 'f': /* ":tfirst" */
9375 case 'r': cmd
= DT_FIRST
; /* ":trewind" */
9377 case 'l': cmd
= DT_LAST
; /* ":tlast" */
9379 default: /* ":tag" */
9381 if (p_cst
&& *eap
->arg
!= NUL
)
9393 #ifndef FEAT_QUICKFIX
9401 do_tag(eap
->arg
, cmd
, eap
->addr_count
> 0 ? (int)eap
->line2
: 1,
9402 eap
->forceit
, TRUE
);
9406 * Check "str" for starting with a special cmdline variable.
9407 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9408 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9411 find_cmdline_var(src
, usedlen
)
9417 static char *(spec_str
[]) = {
9422 "<cword>", /* cursor word */
9423 #define SPEC_CWORD 2
9424 "<cWORD>", /* cursor WORD */
9425 #define SPEC_CCWORD 3
9426 "<cfile>", /* cursor path name */
9427 #define SPEC_CFILE 4
9428 "<sfile>", /* ":so" file name */
9429 #define SPEC_SFILE 5
9431 "<afile>", /* autocommand file name */
9432 # define SPEC_AFILE 6
9433 "<abuf>", /* autocommand buffer number */
9434 # define SPEC_ABUF 7
9435 "<amatch>", /* autocommand match name */
9436 # define SPEC_AMATCH 8
9438 #ifdef FEAT_CLIENTSERVER
9440 # define SPEC_CLIENT 9
9444 for (i
= 0; i
< (int)(sizeof(spec_str
) / sizeof(char *)); ++i
)
9446 len
= (int)STRLEN(spec_str
[i
]);
9447 if (STRNCMP(src
, spec_str
[i
], len
) == 0)
9457 * Evaluate cmdline variables.
9459 * change '%' to curbuf->b_ffname
9460 * '#' to curwin->w_altfile
9461 * '<cword>' to word under the cursor
9462 * '<cWORD>' to WORD under the cursor
9463 * '<cfile>' to path name under the cursor
9464 * '<sfile>' to sourced file name
9465 * '<afile>' to file name for autocommand
9466 * '<abuf>' to buffer number for autocommand
9467 * '<amatch>' to matching name for autocommand
9469 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9470 * "" for error without a message) and NULL is returned.
9471 * Returns an allocated string if a valid match was found.
9472 * Returns NULL if no match was found. "usedlen" then still contains the
9473 * number of characters to skip.
9476 eval_vars(src
, srcstart
, usedlen
, lnump
, errormsg
, escaped
)
9477 char_u
*src
; /* pointer into commandline */
9478 char_u
*srcstart
; /* beginning of valid memory for src */
9479 int *usedlen
; /* characters after src that are used */
9480 linenr_T
*lnump
; /* line number for :e command, or NULL */
9481 char_u
**errormsg
; /* pointer to error message */
9482 int *escaped
; /* return value has escaped white space (can
9488 char_u
*resultbuf
= NULL
;
9491 int valid
= VALID_HEAD
+ VALID_PATH
; /* assume valid result */
9493 #ifdef FEAT_MODIFY_FNAME
9494 int skip_mod
= FALSE
;
9497 #if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9502 if (escaped
!= NULL
)
9506 * Check if there is something to do.
9508 spec_idx
= find_cmdline_var(src
, usedlen
);
9509 if (spec_idx
< 0) /* no match */
9516 * Skip when preceded with a backslash "\%" and "\#".
9517 * Note: In "\\%" the % is also not recognized!
9519 if (src
> srcstart
&& src
[-1] == '\\')
9522 STRMOVE(src
- 1, src
); /* remove backslash */
9527 * word or WORD under cursor
9529 if (spec_idx
== SPEC_CWORD
|| spec_idx
== SPEC_CCWORD
)
9531 resultlen
= find_ident_under_cursor(&result
, spec_idx
== SPEC_CWORD
?
9532 (FIND_IDENT
|FIND_STRING
) : FIND_STRING
);
9535 *errormsg
= (char_u
*)"";
9541 * '#': Alternate file name
9542 * '%': Current file name
9543 * File name under the cursor
9544 * File name for autocommand
9545 * and following modifiers
9551 case SPEC_PERC
: /* '%': current file */
9552 if (curbuf
->b_fname
== NULL
)
9554 result
= (char_u
*)"";
9555 valid
= 0; /* Must have ":p:h" to be valid */
9559 /* Always use the full path for RISC OS if possible. */
9560 result
= curbuf
->b_ffname
;
9562 result
= curbuf
->b_fname
;
9564 result
= curbuf
->b_fname
;
9568 case SPEC_HASH
: /* '#' or "#99": alternate file */
9569 if (src
[1] == '#') /* "##": the argument list */
9574 if (escaped
!= NULL
)
9576 #ifdef FEAT_MODIFY_FNAME
9582 if (*s
== '<') /* "#<99" uses v:oldfiles */
9584 i
= (int)getdigits(&s
);
9585 *usedlen
= (int)(s
- src
); /* length of what we expand */
9591 /* Should we give an error message for #<text? */
9596 result
= list_find_str(get_vim_var_list(VV_OLDFILES
),
9600 *errormsg
= (char_u
*)"";
9604 *errormsg
= (char_u
*)_("E809: #< is not available without the +eval feature");
9610 buf
= buflist_findnr(i
);
9613 *errormsg
= (char_u
*)_("E194: No alternate file name to substitute for '#'");
9618 if (buf
->b_fname
== NULL
)
9620 result
= (char_u
*)"";
9621 valid
= 0; /* Must have ":p:h" to be valid */
9624 result
= buf
->b_fname
;
9628 #ifdef FEAT_SEARCHPATH
9629 case SPEC_CFILE
: /* file name under cursor */
9630 result
= file_name_at_cursor(FNAME_MESS
|FNAME_HYP
, 1L, NULL
);
9633 *errormsg
= (char_u
*)"";
9636 resultbuf
= result
; /* remember allocated string */
9641 case SPEC_AFILE
: /* file name for autocommand */
9642 result
= autocmd_fname
;
9643 if (result
!= NULL
&& !autocmd_fname_full
)
9645 /* Still need to turn the fname into a full path. It is
9646 * postponed to avoid a delay when <afile> is not used. */
9647 autocmd_fname_full
= TRUE
;
9648 result
= FullName_save(autocmd_fname
, FALSE
);
9649 vim_free(autocmd_fname
);
9650 autocmd_fname
= result
;
9654 *errormsg
= (char_u
*)_("E495: no autocommand file name to substitute for \"<afile>\"");
9657 result
= shorten_fname1(result
);
9660 case SPEC_ABUF
: /* buffer number for autocommand */
9661 if (autocmd_bufnr
<= 0)
9663 *errormsg
= (char_u
*)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9666 sprintf((char *)strbuf
, "%d", autocmd_bufnr
);
9670 case SPEC_AMATCH
: /* match name for autocommand */
9671 result
= autocmd_match
;
9674 *errormsg
= (char_u
*)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9680 case SPEC_SFILE
: /* file name for ":so" command */
9681 result
= sourcing_name
;
9684 *errormsg
= (char_u
*)_("E498: no :source file name to substitute for \"<sfile>\"");
9688 #if defined(FEAT_CLIENTSERVER)
9689 case SPEC_CLIENT
: /* Source of last submitted input */
9690 sprintf((char *)strbuf
, PRINTF_HEX_LONG_U
,
9691 (long_u
)clientWindow
);
9697 resultlen
= (int)STRLEN(result
); /* length of new string */
9698 if (src
[*usedlen
] == '<') /* remove the file name extension */
9702 if ((s
= vim_strrchr(result
, '/')) != NULL
&& s
>= gettail(result
))
9704 if ((s
= vim_strrchr(result
, '.')) != NULL
&& s
>= gettail(result
))
9706 resultlen
= (int)(s
- result
);
9708 #ifdef FEAT_MODIFY_FNAME
9711 valid
|= modify_fname(src
, usedlen
, &result
, &resultbuf
,
9715 *errormsg
= (char_u
*)"";
9722 if (resultlen
== 0 || valid
!= VALID_HEAD
+ VALID_PATH
)
9724 if (valid
!= VALID_HEAD
+ VALID_PATH
)
9725 /* xgettext:no-c-format */
9726 *errormsg
= (char_u
*)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9728 *errormsg
= (char_u
*)_("E500: Evaluates to an empty string");
9732 result
= vim_strnsave(result
, resultlen
);
9733 vim_free(resultbuf
);
9738 * Concatenate all files in the argument list, separated by spaces, and return
9739 * it in one allocated string.
9740 * Spaces and backslashes in the file names are escaped with a backslash.
9741 * Returns NULL when out of memory.
9748 char_u
*retval
= NULL
;
9752 * Do this loop two times:
9753 * first time: compute the total length
9754 * second time: concatenate the names
9759 for (idx
= 0; idx
< ARGCOUNT
; ++idx
)
9761 p
= alist_name(&ARGLIST
[idx
]);
9766 /* insert a space in between names */
9771 for ( ; *p
!= NUL
; ++p
)
9773 if (*p
== ' ' || *p
== '\\')
9775 /* insert a backslash */
9787 /* second time: break here */
9794 /* allocate memory */
9795 retval
= alloc((unsigned)len
+ 1);
9803 #if defined(FEAT_AUTOCMD) || defined(PROTO)
9805 * Expand the <sfile> string in "arg".
9807 * Returns an allocated string, or NULL for any error.
9821 result
= vim_strsave(arg
);
9825 for (p
= result
; *p
; )
9827 if (STRNCMP(p
, "<sfile>", 7) != 0)
9831 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
9832 repl
= eval_vars(p
, result
, &srclen
, NULL
, &errormsg
, NULL
);
9833 if (errormsg
!= NULL
)
9840 if (repl
== NULL
) /* no match (cannot happen) */
9845 len
= (int)STRLEN(result
) - srclen
+ (int)STRLEN(repl
) + 1;
9846 newres
= alloc(len
);
9853 mch_memmove(newres
, result
, (size_t)(p
- result
));
9854 STRCPY(newres
+ (p
- result
), repl
);
9855 len
= (int)STRLEN(newres
);
9856 STRCAT(newres
, p
+ srclen
);
9860 p
= newres
+ len
; /* continue after the match */
9869 static int ses_winsizes
__ARGS((FILE *fd
, int restore_size
,
9870 win_T
*tab_firstwin
));
9871 static int ses_win_rec
__ARGS((FILE *fd
, frame_T
*fr
));
9872 static frame_T
*ses_skipframe
__ARGS((frame_T
*fr
));
9873 static int ses_do_frame
__ARGS((frame_T
*fr
));
9874 static int ses_do_win
__ARGS((win_T
*wp
));
9875 static int ses_arglist
__ARGS((FILE *fd
, char *cmd
, garray_T
*gap
, int fullname
, unsigned *flagp
));
9876 static int ses_put_fname
__ARGS((FILE *fd
, char_u
*name
, unsigned *flagp
));
9877 static int ses_fname
__ARGS((FILE *fd
, buf_T
*buf
, unsigned *flagp
));
9880 * Write openfile commands for the current buffers to an .exrc file.
9881 * Return FAIL on error, OK otherwise.
9884 makeopens(fd
, dirnow
)
9886 char_u
*dirnow
; /* Current directory name */
9889 int only_save_windows
= TRUE
;
9892 int restore_size
= TRUE
;
9895 win_T
*edited_win
= NULL
;
9897 win_T
*tab_firstwin
;
9898 frame_T
*tab_topframe
;
9899 int cur_arg_idx
= 0;
9900 int next_arg_idx
= 0;
9902 if (ssop_flags
& SSOP_BUFFERS
)
9903 only_save_windows
= FALSE
; /* Save ALL buffers */
9906 * Begin by setting the this_session variable, and then other
9907 * sessionable variables.
9910 if (put_line(fd
, "let v:this_session=expand(\"<sfile>:p\")") == FAIL
)
9912 if (ssop_flags
& SSOP_GLOBALS
)
9913 if (store_session_globals(fd
) == FAIL
)
9918 * Close all windows but one.
9920 if (put_line(fd
, "silent only") == FAIL
)
9924 * Now a :cd command to the session directory or the current directory
9926 if (ssop_flags
& SSOP_SESDIR
)
9928 if (put_line(fd
, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9932 else if (ssop_flags
& SSOP_CURDIR
)
9934 sname
= home_replace_save(NULL
, globaldir
!= NULL
? globaldir
: dirnow
);
9936 || fputs("cd ", fd
) < 0
9937 || ses_put_fname(fd
, sname
, &ssop_flags
) == FAIL
9938 || put_eol(fd
) == FAIL
)
9947 * If there is an empty, unnamed buffer we will wipe it out later.
9948 * Remember the buffer number.
9950 if (put_line(fd
, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL
)
9952 if (put_line(fd
, " let s:wipebuf = bufnr('%')") == FAIL
)
9954 if (put_line(fd
, "endif") == FAIL
)
9958 * Now save the current files, current buffer first.
9960 if (put_line(fd
, "set shortmess=aoO") == FAIL
)
9963 /* Now put the other buffers into the buffer list */
9964 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
9966 if (!(only_save_windows
&& buf
->b_nwindows
== 0)
9967 && !(buf
->b_help
&& !(ssop_flags
& SSOP_HELP
))
9968 && buf
->b_fname
!= NULL
9971 if (fprintf(fd
, "badd +%ld ", buf
->b_wininfo
== NULL
? 1L
9972 : buf
->b_wininfo
->wi_fpos
.lnum
) < 0
9973 || ses_fname(fd
, buf
, &ssop_flags
) == FAIL
)
9978 /* the global argument list */
9979 if (ses_arglist(fd
, "args", &global_alist
.al_ga
,
9980 !(ssop_flags
& SSOP_CURDIR
), &ssop_flags
) == FAIL
)
9983 if (ssop_flags
& SSOP_RESIZE
)
9985 /* Note: after the restore we still check it worked!*/
9986 if (fprintf(fd
, "set lines=%ld columns=%ld" , Rows
, Columns
) < 0
9987 || put_eol(fd
) == FAIL
)
9989 #ifdef FEAT_FULLSCREEN
9990 /* fullscreen needs to be set after lines and columns */
9993 if (fprintf(fd
, "set fullscreen") < 0 || put_eol(fd
) == FAIL
)
10000 if (gui
.in_use
&& (ssop_flags
& SSOP_WINPOS
))
10004 if (gui_mch_get_winpos(&x
, &y
) == OK
)
10006 /* Note: after the restore we still check it worked!*/
10007 if (fprintf(fd
, "winpos %d %d", x
, y
) < 0 || put_eol(fd
) == FAIL
)
10014 * May repeat putting Windows for each tab, when "tabpages" is in
10015 * 'sessionoptions'.
10016 * Don't use goto_tabpage(), it may change directory and trigger
10019 tab_firstwin
= firstwin
; /* first window in tab page "tabnr" */
10020 tab_topframe
= topframe
;
10021 for (tabnr
= 1; ; ++tabnr
)
10023 int need_tabnew
= FALSE
;
10025 if ((ssop_flags
& SSOP_TABPAGES
))
10027 tabpage_T
*tp
= find_tabpage(tabnr
);
10030 break; /* done all tab pages */
10033 tab_firstwin
= firstwin
;
10034 tab_topframe
= topframe
;
10038 tab_firstwin
= tp
->tp_firstwin
;
10039 tab_topframe
= tp
->tp_topframe
;
10042 need_tabnew
= TRUE
;
10046 * Before creating the window layout, try loading one file. If this
10047 * is aborted we don't end up with a number of useless windows.
10048 * This may have side effects! (e.g., compressed or network file).
10050 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
10053 && wp
->w_buffer
->b_ffname
!= NULL
10054 && !wp
->w_buffer
->b_help
10055 #ifdef FEAT_QUICKFIX
10056 && !bt_nofile(wp
->w_buffer
)
10060 if (fputs(need_tabnew
? "tabedit " : "edit ", fd
) < 0
10061 || ses_fname(fd
, wp
->w_buffer
, &ssop_flags
) == FAIL
)
10063 need_tabnew
= FALSE
;
10064 if (!wp
->w_arg_idx_invalid
)
10070 /* If no file got edited create an empty tab page. */
10071 if (need_tabnew
&& put_line(fd
, "tabnew") == FAIL
)
10075 * Save current window layout.
10077 if (put_line(fd
, "set splitbelow splitright") == FAIL
)
10079 if (ses_win_rec(fd
, tab_topframe
) == FAIL
)
10081 if (!p_sb
&& put_line(fd
, "set nosplitbelow") == FAIL
)
10083 if (!p_spr
&& put_line(fd
, "set nosplitright") == FAIL
)
10087 * Check if window sizes can be restored (no windows omitted).
10088 * Remember the window number of the current window after restoring.
10091 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= W_NEXT(wp
))
10093 if (ses_do_win(wp
))
10096 restore_size
= FALSE
;
10101 /* Go to the first window. */
10102 if (put_line(fd
, "wincmd t") == FAIL
)
10106 * If more than one window, see if sizes can be restored.
10107 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
10108 * resized when moving between windows.
10109 * Do this before restoring the view, so that the topline and the
10110 * cursor can be set. This is done again below.
10112 if (put_line(fd
, "set winheight=1 winwidth=1") == FAIL
)
10114 if (nr
> 1 && ses_winsizes(fd
, restore_size
, tab_firstwin
) == FAIL
)
10118 * Restore the view of the window (options, file, cursor, etc.).
10120 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
10122 if (!ses_do_win(wp
))
10124 if (put_view(fd
, wp
, wp
!= edited_win
, &ssop_flags
,
10125 cur_arg_idx
) == FAIL
)
10127 if (nr
> 1 && put_line(fd
, "wincmd w") == FAIL
)
10129 next_arg_idx
= wp
->w_arg_idx
;
10132 /* The argument index in the first tab page is zero, need to set it in
10133 * each window. For further tab pages it's the window where we do
10135 cur_arg_idx
= next_arg_idx
;
10138 * Restore cursor to the current window if it's not the first one.
10140 if (cnr
> 1 && (fprintf(fd
, "%dwincmd w", cnr
) < 0
10141 || put_eol(fd
) == FAIL
))
10145 * Restore window sizes again after jumping around in windows, because
10146 * the current window has a minimum size while others may not.
10148 if (nr
> 1 && ses_winsizes(fd
, restore_size
, tab_firstwin
) == FAIL
)
10151 /* Don't continue in another tab page when doing only the current one
10152 * or when at the last tab page. */
10153 if (!(ssop_flags
& SSOP_TABPAGES
))
10157 if (ssop_flags
& SSOP_TABPAGES
)
10159 if (fprintf(fd
, "tabnext %d", tabpage_index(curtab
)) < 0
10160 || put_eol(fd
) == FAIL
)
10165 * Wipe out an empty unnamed buffer we started in.
10167 if (put_line(fd
, "if exists('s:wipebuf')") == FAIL
)
10169 if (put_line(fd
, " silent exe 'bwipe ' . s:wipebuf") == FAIL
)
10171 if (put_line(fd
, "endif") == FAIL
)
10173 if (put_line(fd
, "unlet! s:wipebuf") == FAIL
)
10176 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10177 if (fprintf(fd
, "set winheight=%ld winwidth=%ld shortmess=%s",
10178 p_wh
, p_wiw
, p_shm
) < 0 || put_eol(fd
) == FAIL
)
10182 * Lastly, execute the x.vim file if it exists.
10184 if (put_line(fd
, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10185 || put_line(fd
, "if file_readable(s:sx)") == FAIL
10186 || put_line(fd
, " exe \"source \" . fnameescape(s:sx)") == FAIL
10187 || put_line(fd
, "endif") == FAIL
)
10194 ses_winsizes(fd
, restore_size
, tab_firstwin
)
10197 win_T
*tab_firstwin
;
10202 if (restore_size
&& (ssop_flags
& SSOP_WINSIZE
))
10204 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
10206 if (!ses_do_win(wp
))
10210 /* restore height when not full height */
10211 if (wp
->w_height
+ wp
->w_status_height
< topframe
->fr_height
10213 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10214 n
, (long)wp
->w_height
, Rows
/ 2, Rows
) < 0
10215 || put_eol(fd
) == FAIL
))
10218 /* restore width when not full width */
10219 if (wp
->w_width
< Columns
&& (fprintf(fd
,
10220 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10221 n
, (long)wp
->w_width
, Columns
/ 2, Columns
) < 0
10222 || put_eol(fd
) == FAIL
))
10228 /* Just equalise window sizes */
10229 if (put_line(fd
, "wincmd =") == FAIL
)
10236 * Write commands to "fd" to recursively create windows for frame "fr",
10237 * horizontally and vertically split.
10238 * After the commands the last window in the frame is the current window.
10239 * Returns FAIL when writing the commands to "fd" fails.
10242 ses_win_rec(fd
, fr
)
10249 if (fr
->fr_layout
!= FR_LEAF
)
10251 /* Find first frame that's not skipped and then create a window for
10252 * each following one (first frame is already there). */
10253 frc
= ses_skipframe(fr
->fr_child
);
10255 while ((frc
= ses_skipframe(frc
->fr_next
)) != NULL
)
10257 /* Make window as big as possible so that we have lots of room
10259 if (put_line(fd
, "wincmd _ | wincmd |") == FAIL
10260 || put_line(fd
, fr
->fr_layout
== FR_COL
10261 ? "split" : "vsplit") == FAIL
)
10266 /* Go back to the first window. */
10267 if (count
> 0 && (fprintf(fd
, fr
->fr_layout
== FR_COL
10268 ? "%dwincmd k" : "%dwincmd h", count
) < 0
10269 || put_eol(fd
) == FAIL
))
10272 /* Recursively create frames/windows in each window of this column or
10274 frc
= ses_skipframe(fr
->fr_child
);
10275 while (frc
!= NULL
)
10277 ses_win_rec(fd
, frc
);
10278 frc
= ses_skipframe(frc
->fr_next
);
10279 /* Go to next window. */
10280 if (frc
!= NULL
&& put_line(fd
, "wincmd w") == FAIL
)
10288 * Skip frames that don't contain windows we want to save in the Session.
10289 * Returns NULL when there none.
10297 for (frc
= fr
; frc
!= NULL
; frc
= frc
->fr_next
)
10298 if (ses_do_frame(frc
))
10304 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10313 if (fr
->fr_layout
== FR_LEAF
)
10314 return ses_do_win(fr
->fr_win
);
10315 for (frc
= fr
->fr_child
; frc
!= NULL
; frc
= frc
->fr_next
)
10316 if (ses_do_frame(frc
))
10322 * Return non-zero if window "wp" is to be stored in the Session.
10328 if (wp
->w_buffer
->b_fname
== NULL
10329 #ifdef FEAT_QUICKFIX
10330 /* When 'buftype' is "nofile" can't restore the window contents. */
10331 || bt_nofile(wp
->w_buffer
)
10334 return (ssop_flags
& SSOP_BLANK
);
10335 if (wp
->w_buffer
->b_help
)
10336 return (ssop_flags
& SSOP_HELP
);
10341 * Write commands to "fd" to restore the view of a window.
10342 * Caller must make sure 'scrolloff' is zero.
10345 put_view(fd
, wp
, add_edit
, flagp
, current_arg_idx
)
10348 int add_edit
; /* add ":edit" command to view */
10349 unsigned *flagp
; /* vop_flags or ssop_flags */
10350 int current_arg_idx
; /* current argument index of the window, use
10353 win_T
*save_curwin
;
10356 int did_next
= FALSE
;
10358 /* Always restore cursor position for ":mksession". For ":mkview" only
10359 * when 'viewoptions' contains "cursor". */
10360 do_cursor
= (flagp
== &ssop_flags
|| *flagp
& SSOP_CURSOR
);
10363 * Local argument list.
10365 if (wp
->w_alist
== &global_alist
)
10367 if (put_line(fd
, "argglobal") == FAIL
)
10372 if (ses_arglist(fd
, "arglocal", &wp
->w_alist
->al_ga
,
10373 flagp
== &vop_flags
10374 || !(*flagp
& SSOP_CURDIR
)
10375 || wp
->w_localdir
!= NULL
, flagp
) == FAIL
)
10379 /* Only when part of a session: restore the argument index. Some
10380 * arguments may have been deleted, check if the index is valid. */
10381 if (wp
->w_arg_idx
!= current_arg_idx
&& wp
->w_arg_idx
<= WARGCOUNT(wp
)
10382 && flagp
== &ssop_flags
)
10384 if (fprintf(fd
, "%ldargu", (long)wp
->w_arg_idx
+ 1) < 0
10385 || put_eol(fd
) == FAIL
)
10390 /* Edit the file. Skip this when ":next" already did it. */
10391 if (add_edit
&& (!did_next
|| wp
->w_arg_idx_invalid
))
10396 if (wp
->w_buffer
->b_ffname
!= NULL
10397 #ifdef FEAT_QUICKFIX
10398 && !bt_nofile(wp
->w_buffer
)
10403 * Editing a file in this buffer: use ":edit file".
10404 * This may have side effects! (e.g., compressed or network file).
10406 if (fputs("edit ", fd
) < 0
10407 || ses_fname(fd
, wp
->w_buffer
, flagp
) == FAIL
)
10412 /* No file in this buffer, just make it empty. */
10413 if (put_line(fd
, "enew") == FAIL
)
10415 #ifdef FEAT_QUICKFIX
10416 if (wp
->w_buffer
->b_ffname
!= NULL
)
10418 /* The buffer does have a name, but it's not a file name. */
10419 if (fputs("file ", fd
) < 0
10420 || ses_fname(fd
, wp
->w_buffer
, flagp
) == FAIL
)
10429 * Local mappings and abbreviations.
10431 if ((*flagp
& (SSOP_OPTIONS
| SSOP_LOCALOPTIONS
))
10432 && makemap(fd
, wp
->w_buffer
) == FAIL
)
10436 * Local options. Need to go to the window temporarily.
10437 * Store only local values when using ":mkview" and when ":mksession" is
10438 * used and 'sessionoptions' doesn't include "options".
10439 * Some folding options are always stored when "folds" is included,
10440 * otherwise the folds would not be restored correctly.
10442 save_curwin
= curwin
;
10444 curbuf
= curwin
->w_buffer
;
10445 if (*flagp
& (SSOP_OPTIONS
| SSOP_LOCALOPTIONS
))
10446 f
= makeset(fd
, OPT_LOCAL
,
10447 flagp
== &vop_flags
|| !(*flagp
& SSOP_OPTIONS
));
10448 #ifdef FEAT_FOLDING
10449 else if (*flagp
& SSOP_FOLDS
)
10450 f
= makefoldset(fd
);
10454 curwin
= save_curwin
;
10455 curbuf
= curwin
->w_buffer
;
10459 #ifdef FEAT_FOLDING
10461 * Save Folds when 'buftype' is empty and for help files.
10463 if ((*flagp
& SSOP_FOLDS
)
10464 && wp
->w_buffer
->b_ffname
!= NULL
10465 # ifdef FEAT_QUICKFIX
10466 && (*wp
->w_buffer
->b_p_bt
== NUL
|| wp
->w_buffer
->b_help
)
10470 if (put_folds(fd
, wp
) == FAIL
)
10476 * Set the cursor after creating folds, since that moves the cursor.
10481 /* Restore the cursor line in the file and relatively in the
10482 * window. Don't use "G", it changes the jumplist. */
10483 if (fprintf(fd
, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10484 (long)wp
->w_cursor
.lnum
,
10485 (long)(wp
->w_cursor
.lnum
- wp
->w_topline
),
10486 (long)wp
->w_height
/ 2, (long)wp
->w_height
) < 0
10487 || put_eol(fd
) == FAIL
10488 || put_line(fd
, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10489 || put_line(fd
, "exe s:l") == FAIL
10490 || put_line(fd
, "normal! zt") == FAIL
10491 || fprintf(fd
, "%ld", (long)wp
->w_cursor
.lnum
) < 0
10492 || put_eol(fd
) == FAIL
)
10494 /* Restore the cursor column and left offset when not wrapping. */
10495 if (wp
->w_cursor
.col
== 0)
10497 if (put_line(fd
, "normal! 0") == FAIL
)
10502 if (!wp
->w_p_wrap
&& wp
->w_leftcol
> 0 && wp
->w_width
> 0)
10505 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10506 (long)wp
->w_cursor
.col
,
10507 (long)(wp
->w_cursor
.col
- wp
->w_leftcol
),
10508 (long)wp
->w_width
/ 2, (long)wp
->w_width
) < 0
10509 || put_eol(fd
) == FAIL
10510 || put_line(fd
, "if s:c > 0") == FAIL
10512 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10513 (long)wp
->w_cursor
.col
) < 0
10514 || put_eol(fd
) == FAIL
10515 || put_line(fd
, "else") == FAIL
10516 || fprintf(fd
, " normal! 0%dl", wp
->w_cursor
.col
) < 0
10517 || put_eol(fd
) == FAIL
10518 || put_line(fd
, "endif") == FAIL
)
10523 if (fprintf(fd
, "normal! 0%dl", wp
->w_cursor
.col
) < 0
10524 || put_eol(fd
) == FAIL
)
10533 if (wp
->w_localdir
!= NULL
)
10535 if (fputs("lcd ", fd
) < 0
10536 || ses_put_fname(fd
, wp
->w_localdir
, flagp
) == FAIL
10537 || put_eol(fd
) == FAIL
)
10546 * Write an argument list to the session file.
10547 * Returns FAIL if writing fails.
10550 ses_arglist(fd
, cmd
, gap
, fullname
, flagp
)
10554 int fullname
; /* TRUE: use full path name */
10558 char_u buf
[MAXPATHL
];
10561 if (gap
->ga_len
== 0)
10562 return put_line(fd
, "silent! argdel *");
10563 if (fputs(cmd
, fd
) < 0)
10565 for (i
= 0; i
< gap
->ga_len
; ++i
)
10567 /* NULL file names are skipped (only happens when out of memory). */
10568 s
= alist_name(&((aentry_T
*)gap
->ga_data
)[i
]);
10573 (void)vim_FullName(s
, buf
, MAXPATHL
, FALSE
);
10576 if (fputs(" ", fd
) < 0 || ses_put_fname(fd
, s
, flagp
) == FAIL
)
10580 return put_eol(fd
);
10584 * Write a buffer name to the session file.
10585 * Also ends the line.
10586 * Returns FAIL if writing fails.
10589 ses_fname(fd
, buf
, flagp
)
10596 /* Use the short file name if the current directory is known at the time
10597 * the session file will be sourced.
10598 * Don't do this for ":mkview", we don't know the current directory.
10599 * Don't do this after ":lcd", we don't keep track of what the current
10601 if (buf
->b_sfname
!= NULL
10602 && flagp
== &ssop_flags
10603 && (ssop_flags
& (SSOP_CURDIR
| SSOP_SESDIR
))
10605 name
= buf
->b_sfname
;
10607 name
= buf
->b_ffname
;
10608 if (ses_put_fname(fd
, name
, flagp
) == FAIL
|| put_eol(fd
) == FAIL
)
10614 * Write a file name to the session file.
10615 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10617 * Returns FAIL if writing fails.
10620 ses_put_fname(fd
, name
, flagp
)
10629 sname
= home_replace_save(NULL
, name
);
10632 while (*name
!= NUL
)
10638 if (has_mbyte
&& (l
= (*mb_ptr2len
)(name
)) > 1)
10640 /* copy a multibyte char */
10643 if (putc(*name
, fd
) != *name
)
10652 if (c
== '\\' && (*flagp
& SSOP_SLASH
))
10653 /* change a backslash to a forward slash */
10655 else if ((vim_strchr(escape_chars
, c
) != NULL
10656 #ifdef BACKSLASH_IN_FILENAME
10659 ) || c
== '#' || c
== '%')
10661 /* escape a special character with a backslash */
10662 if (putc('\\', fd
) != '\\')
10665 if (putc(c
, fd
) != c
)
10681 fname
= get_view_file(*eap
->arg
);
10684 do_source(fname
, FALSE
, DOSO_NONE
);
10690 * Get the name of the view file for the current buffer.
10701 if (curbuf
->b_ffname
== NULL
)
10706 sname
= home_replace_save(NULL
, curbuf
->b_ffname
);
10711 * We want a file name without separators, because we're not going to make
10713 * "normal" path separator -> "=+"
10715 * ":" path separator -> "=-"
10717 for (p
= sname
; *p
; ++p
)
10718 if (*p
== '=' || vim_ispathsep(*p
))
10720 retval
= alloc((unsigned)(STRLEN(sname
) + len
+ STRLEN(p_vdir
) + 9));
10721 if (retval
!= NULL
)
10723 STRCPY(retval
, p_vdir
);
10724 add_pathsep(retval
);
10725 s
= retval
+ STRLEN(retval
);
10726 for (p
= sname
; *p
; ++p
)
10733 else if (vim_ispathsep(*p
))
10736 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
10756 #endif /* FEAT_SESSION */
10759 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10760 * Return FAIL for a write error.
10769 # ifdef MKSESSION_NL
10772 (putc('\r', fd
) < 0)) ||
10774 (putc('\n', fd
) < 0))
10780 * Write a line to "fd".
10781 * Return FAIL for a write error.
10788 if (fputs(s
, fd
) < 0 || put_eol(fd
) == FAIL
)
10793 #ifdef FEAT_VIMINFO
10795 * ":rviminfo" and ":wviminfo".
10801 char_u
*save_viminfo
;
10803 save_viminfo
= p_viminfo
;
10804 if (*p_viminfo
== NUL
)
10805 p_viminfo
= (char_u
*)"'100";
10806 if (eap
->cmdidx
== CMD_rviminfo
)
10808 if (read_viminfo(eap
->arg
, VIF_WANT_INFO
| VIF_WANT_MARKS
10809 | (eap
->forceit
? VIF_FORCEIT
: 0)) == FAIL
)
10810 EMSG(_("E195: Cannot open viminfo file for reading"));
10813 write_viminfo(eap
->arg
, eap
->forceit
);
10814 p_viminfo
= save_viminfo
;
10818 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
10820 * Make a dialog message in "buff[IOSIZE]".
10821 * "format" must contain "%s".
10824 dialog_msg(buff
, format
, fname
)
10830 fname
= (char_u
*)_("Untitled");
10831 vim_snprintf((char *)buff
, IOSIZE
, format
, fname
);
10836 * ":behave {mswin,xterm}"
10842 if (STRCMP(eap
->arg
, "mswin") == 0)
10844 set_option_value((char_u
*)"selection", 0L, (char_u
*)"exclusive", 0);
10845 set_option_value((char_u
*)"selectmode", 0L, (char_u
*)"mouse,key", 0);
10846 set_option_value((char_u
*)"mousemodel", 0L, (char_u
*)"popup", 0);
10847 set_option_value((char_u
*)"keymodel", 0L,
10848 (char_u
*)"startsel,stopsel", 0);
10850 else if (STRCMP(eap
->arg
, "xterm") == 0)
10852 set_option_value((char_u
*)"selection", 0L, (char_u
*)"inclusive", 0);
10853 set_option_value((char_u
*)"selectmode", 0L, (char_u
*)"", 0);
10854 set_option_value((char_u
*)"mousemodel", 0L, (char_u
*)"extend", 0);
10855 set_option_value((char_u
*)"keymodel", 0L, (char_u
*)"", 0);
10858 EMSG2(_(e_invarg2
), eap
->arg
);
10861 #ifdef FEAT_AUTOCMD
10862 static int filetype_detect
= FALSE
;
10863 static int filetype_plugin
= FALSE
;
10864 static int filetype_indent
= FALSE
;
10867 * ":filetype [plugin] [indent] {on,off,detect}"
10868 * on: Load the filetype.vim file to install autocommands for file types.
10869 * off: Load the ftoff.vim file to remove all autocommands for file types.
10870 * plugin on: load filetype.vim and ftplugin.vim
10871 * plugin off: load ftplugof.vim
10872 * indent on: load filetype.vim and indent.vim
10873 * indent off: load indoff.vim
10879 char_u
*arg
= eap
->arg
;
10880 int plugin
= FALSE
;
10881 int indent
= FALSE
;
10883 if (*eap
->arg
== NUL
)
10885 /* Print current status. */
10886 smsg((char_u
*)"filetype detection:%s plugin:%s indent:%s",
10887 filetype_detect
? "ON" : "OFF",
10888 filetype_plugin
? (filetype_detect
? "ON" : "(on)") : "OFF",
10889 filetype_indent
? (filetype_detect
? "ON" : "(on)") : "OFF");
10893 /* Accept "plugin" and "indent" in any order. */
10896 if (STRNCMP(arg
, "plugin", 6) == 0)
10899 arg
= skipwhite(arg
+ 6);
10902 if (STRNCMP(arg
, "indent", 6) == 0)
10905 arg
= skipwhite(arg
+ 6);
10910 if (STRCMP(arg
, "on") == 0 || STRCMP(arg
, "detect") == 0)
10912 if (*arg
== 'o' || !filetype_detect
)
10914 source_runtime((char_u
*)FILETYPE_FILE
, TRUE
);
10915 filetype_detect
= TRUE
;
10918 source_runtime((char_u
*)FTPLUGIN_FILE
, TRUE
);
10919 filetype_plugin
= TRUE
;
10923 source_runtime((char_u
*)INDENT_FILE
, TRUE
);
10924 filetype_indent
= TRUE
;
10929 (void)do_doautocmd((char_u
*)"filetypedetect BufRead", TRUE
);
10933 else if (STRCMP(arg
, "off") == 0)
10935 if (plugin
|| indent
)
10939 source_runtime((char_u
*)FTPLUGOF_FILE
, TRUE
);
10940 filetype_plugin
= FALSE
;
10944 source_runtime((char_u
*)INDOFF_FILE
, TRUE
);
10945 filetype_indent
= FALSE
;
10950 source_runtime((char_u
*)FTOFF_FILE
, TRUE
);
10951 filetype_detect
= FALSE
;
10955 EMSG2(_(e_invarg2
), arg
);
10959 * ":setfiletype {name}"
10962 ex_setfiletype(eap
)
10966 set_option_value((char_u
*)"filetype", 0L, eap
->arg
, OPT_LOCAL
);
10972 exarg_T
*eap UNUSED
;
10974 #ifdef FEAT_DIGRAPHS
10975 if (*eap
->arg
!= NUL
)
10976 putdigraph(eap
->arg
);
10980 EMSG(_("E196: No digraphs in this version"));
10990 if (eap
->cmdidx
== CMD_setlocal
)
10992 else if (eap
->cmdidx
== CMD_setglobal
)
10993 flags
= OPT_GLOBAL
;
10994 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10995 if (cmdmod
.browse
&& flags
== 0)
10999 (void)do_set(eap
->arg
, flags
);
11002 #ifdef FEAT_SEARCH_EXTRA
11008 exarg_T
*eap UNUSED
;
11010 no_hlsearch
= TRUE
;
11011 redraw_all_later(SOME_VALID
);
11015 * ":[N]match {group} {pattern}"
11016 * Sets nextcmd to the start of the next command, if any. Also called when
11017 * skipping commands to find the next command.
11029 if (eap
->line2
<= 3)
11037 /* First clear any old pattern. */
11039 match_delete(curwin
, id
, FALSE
);
11041 if (ends_excmd(*eap
->arg
))
11043 else if ((STRNICMP(eap
->arg
, "none", 4) == 0
11044 && (vim_iswhite(eap
->arg
[4]) || ends_excmd(eap
->arg
[4]))))
11045 end
= eap
->arg
+ 4;
11048 p
= skiptowhite(eap
->arg
);
11050 g
= vim_strnsave(eap
->arg
, (int)(p
- eap
->arg
));
11054 /* There must be two arguments. */
11055 EMSG2(_(e_invarg2
), eap
->arg
);
11058 end
= skip_regexp(p
+ 1, *p
, TRUE
, NULL
);
11061 if (*end
!= NUL
&& !ends_excmd(*skipwhite(end
+ 1)))
11063 eap
->errmsg
= e_trailing
;
11068 EMSG2(_(e_invarg2
), p
);
11074 match_add(curwin
, g
, p
+ 1, 10, id
);
11079 eap
->nextcmd
= find_nextcmd(end
);
11085 * ":X": Get crypt key
11089 exarg_T
*eap UNUSED
;
11091 (void)get_crypt_key(TRUE
, TRUE
);
11095 #ifdef FEAT_FOLDING
11100 if (foldManualAllowed(TRUE
))
11101 foldCreate(eap
->line1
, eap
->line2
);
11108 opFoldRange(eap
->line1
, eap
->line2
, eap
->cmdidx
== CMD_foldopen
,
11109 eap
->forceit
, FALSE
);
11118 /* First set the marks for all lines closed/open. */
11119 for (lnum
= eap
->line1
; lnum
<= eap
->line2
; ++lnum
)
11120 if (hasFolding(lnum
, NULL
, NULL
) == (eap
->cmdidx
== CMD_folddoclosed
))
11121 ml_setmarked(lnum
);
11123 /* Execute the command on the marked lines. */
11124 global_exe(eap
->arg
);
11125 ml_clearmarked(); /* clear rest of the marks */