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.
17 # include <fcntl.h> /* for chdir() */
20 static int quitmore
= 0;
21 static int ex_pressedreturn
= FALSE
;
23 # define ex_hardcopy ex_ni
29 char_u
*uc_name
; /* The command name */
30 long_u uc_argt
; /* The argument type */
31 char_u
*uc_rep
; /* The command's replacement string */
32 long uc_def
; /* The default value for a range/count */
33 scid_T uc_scriptID
; /* SID where the command was defined */
34 int uc_compl
; /* completion type */
35 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
36 char_u
*uc_compl_arg
; /* completion argument if any */
40 #define UC_BUFFER 1 /* -buffer: local to current buffer */
42 static garray_T ucmds
= {0, 0, sizeof(ucmd_T
), 4, NULL
};
44 #define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
45 #define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
47 static void do_ucmd
__ARGS((exarg_T
*eap
));
48 static void ex_command
__ARGS((exarg_T
*eap
));
49 static void ex_delcommand
__ARGS((exarg_T
*eap
));
50 # ifdef FEAT_CMDL_COMPL
51 static char_u
*get_user_command_name
__ARGS((int idx
));
55 # define ex_command ex_ni
56 # define ex_comclear ex_ni
57 # define ex_delcommand ex_ni
61 static char_u
*do_one_cmd
__ARGS((char_u
**, int, struct condstack
*, char_u
*(*fgetline
)(int, void *, int), void *cookie
));
63 static char_u
*do_one_cmd
__ARGS((char_u
**, int, char_u
*(*fgetline
)(int, void *, int), void *cookie
));
64 static int if_level
= 0; /* depth in :if */
66 static char_u
*find_command
__ARGS((exarg_T
*eap
, int *full
));
68 static void ex_abbreviate
__ARGS((exarg_T
*eap
));
69 static void ex_map
__ARGS((exarg_T
*eap
));
70 static void ex_unmap
__ARGS((exarg_T
*eap
));
71 static void ex_mapclear
__ARGS((exarg_T
*eap
));
72 static void ex_abclear
__ARGS((exarg_T
*eap
));
74 # define ex_emenu ex_ni
75 # define ex_menu ex_ni
76 # define ex_menutranslate ex_ni
79 static void ex_autocmd
__ARGS((exarg_T
*eap
));
80 static void ex_doautocmd
__ARGS((exarg_T
*eap
));
82 # define ex_autocmd ex_ni
83 # define ex_doautocmd ex_ni
84 # define ex_doautoall ex_ni
87 static void ex_bunload
__ARGS((exarg_T
*eap
));
88 static void ex_buffer
__ARGS((exarg_T
*eap
));
89 static void ex_bmodified
__ARGS((exarg_T
*eap
));
90 static void ex_bnext
__ARGS((exarg_T
*eap
));
91 static void ex_bprevious
__ARGS((exarg_T
*eap
));
92 static void ex_brewind
__ARGS((exarg_T
*eap
));
93 static void ex_blast
__ARGS((exarg_T
*eap
));
95 # define ex_bunload ex_ni
96 # define ex_buffer ex_ni
97 # define ex_bmodified ex_ni
98 # define ex_bnext ex_ni
99 # define ex_bprevious ex_ni
100 # define ex_brewind ex_ni
101 # define ex_blast ex_ni
102 # define buflist_list ex_ni
103 # define ex_checktime ex_ni
105 #if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
106 # define ex_buffer_all ex_ni
108 static char_u
*getargcmd
__ARGS((char_u
**));
109 static char_u
*skip_cmd_arg
__ARGS((char_u
*p
, int rembs
));
110 static int getargopt
__ARGS((exarg_T
*eap
));
111 #ifndef FEAT_QUICKFIX
112 # define ex_make ex_ni
113 # define ex_cbuffer ex_ni
115 # define ex_cnext ex_ni
116 # define ex_cfile ex_ni
117 # define qf_list ex_ni
118 # define qf_age ex_ni
119 # define ex_helpgrep ex_ni
120 # define ex_vimgrep ex_ni
122 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
123 # define ex_cclose ex_ni
124 # define ex_copen ex_ni
125 # define ex_cwindow ex_ni
127 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
128 # define ex_cexpr ex_ni
131 static int check_more
__ARGS((int, int));
132 static linenr_T get_address
__ARGS((char_u
**, int skip
, int to_other_file
));
133 static void get_flags
__ARGS((exarg_T
*eap
));
134 #if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
135 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
136 # define HAVE_EX_SCRIPT_NI
137 static void ex_script_ni
__ARGS((exarg_T
*eap
));
139 static char_u
*invalid_range
__ARGS((exarg_T
*eap
));
140 static void correct_range
__ARGS((exarg_T
*eap
));
142 static char_u
*replace_makeprg
__ARGS((exarg_T
*eap
, char_u
*p
, char_u
**cmdlinep
));
144 static char_u
*repl_cmdline
__ARGS((exarg_T
*eap
, char_u
*src
, int srclen
, char_u
*repl
, char_u
**cmdlinep
));
145 static void ex_highlight
__ARGS((exarg_T
*eap
));
146 static void ex_colorscheme
__ARGS((exarg_T
*eap
));
147 static void ex_quit
__ARGS((exarg_T
*eap
));
148 static void ex_cquit
__ARGS((exarg_T
*eap
));
149 static void ex_quit_all
__ARGS((exarg_T
*eap
));
151 static void ex_close
__ARGS((exarg_T
*eap
));
152 static void ex_win_close
__ARGS((int forceit
, win_T
*win
, tabpage_T
*tp
));
153 static void ex_only
__ARGS((exarg_T
*eap
));
154 static void ex_resize
__ARGS((exarg_T
*eap
));
155 static void ex_stag
__ARGS((exarg_T
*eap
));
156 static void ex_tabclose
__ARGS((exarg_T
*eap
));
157 static void ex_tabonly
__ARGS((exarg_T
*eap
));
158 static void ex_tabnext
__ARGS((exarg_T
*eap
));
159 static void ex_tabmove
__ARGS((exarg_T
*eap
));
160 static void ex_tabs
__ARGS((exarg_T
*eap
));
162 # define ex_close ex_ni
163 # define ex_only ex_ni
164 # define ex_all ex_ni
165 # define ex_resize ex_ni
166 # define ex_splitview ex_ni
167 # define ex_stag ex_ni
168 # define ex_tabnext ex_ni
169 # define ex_tabmove ex_ni
170 # define ex_tabs ex_ni
171 # define ex_tabclose ex_ni
172 # define ex_tabonly ex_ni
174 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
175 static void ex_pclose
__ARGS((exarg_T
*eap
));
176 static void ex_ptag
__ARGS((exarg_T
*eap
));
177 static void ex_pedit
__ARGS((exarg_T
*eap
));
179 # define ex_pclose ex_ni
180 # define ex_ptag ex_ni
181 # define ex_pedit ex_ni
183 static void ex_hide
__ARGS((exarg_T
*eap
));
184 static void ex_stop
__ARGS((exarg_T
*eap
));
185 static void ex_exit
__ARGS((exarg_T
*eap
));
186 static void ex_print
__ARGS((exarg_T
*eap
));
188 static void ex_goto
__ARGS((exarg_T
*eap
));
190 # define ex_goto ex_ni
192 static void ex_shell
__ARGS((exarg_T
*eap
));
193 static void ex_preserve
__ARGS((exarg_T
*eap
));
194 static void ex_recover
__ARGS((exarg_T
*eap
));
195 #ifndef FEAT_LISTCMDS
196 # define ex_argedit ex_ni
197 # define ex_argadd ex_ni
198 # define ex_argdelete ex_ni
199 # define ex_listdo ex_ni
201 static void ex_mode
__ARGS((exarg_T
*eap
));
202 static void ex_wrongmodifier
__ARGS((exarg_T
*eap
));
203 static void ex_find
__ARGS((exarg_T
*eap
));
204 static void ex_open
__ARGS((exarg_T
*eap
));
205 static void ex_edit
__ARGS((exarg_T
*eap
));
206 #if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
207 # define ex_drop ex_ni
210 # define ex_gui ex_nogui
211 static void ex_nogui
__ARGS((exarg_T
*eap
));
213 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
214 static void ex_tearoff
__ARGS((exarg_T
*eap
));
216 # define ex_tearoff ex_ni
218 #if defined(FEAT_MENU) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
219 || defined(FEAT_GUI_MACVIM))
220 static void ex_popup
__ARGS((exarg_T
*eap
));
222 # define ex_popup ex_ni
224 #ifndef FEAT_GUI_MSWIN
225 # define ex_simalt ex_ni
227 #if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
228 # define gui_mch_find_dialog ex_ni
229 # define gui_mch_replace_dialog ex_ni
231 #if !defined(FEAT_GUI_GTK)
232 # define ex_helpfind ex_ni
235 # define do_cscope ex_ni
236 # define do_scscope ex_ni
237 # define do_cstag ex_ni
240 # define ex_syntax ex_ni
243 # define ex_spell ex_ni
244 # define ex_mkspell ex_ni
245 # define ex_spelldump ex_ni
246 # define ex_spellinfo ex_ni
247 # define ex_spellrepall ex_ni
249 #ifndef FEAT_MZSCHEME
250 # define ex_mzscheme ex_script_ni
251 # define ex_mzfile ex_ni
254 # define ex_perl ex_script_ni
255 # define ex_perldo ex_ni
258 # define ex_python ex_script_ni
259 # define ex_pyfile ex_ni
262 # define ex_tcl ex_script_ni
263 # define ex_tcldo ex_ni
264 # define ex_tclfile ex_ni
267 # define ex_ruby ex_script_ni
268 # define ex_rubydo ex_ni
269 # define ex_rubyfile ex_ni
272 # define ex_sniff ex_ni
275 # define ex_loadkeymap ex_ni
277 static void ex_swapname
__ARGS((exarg_T
*eap
));
278 static void ex_syncbind
__ARGS((exarg_T
*eap
));
279 static void ex_read
__ARGS((exarg_T
*eap
));
280 static void ex_pwd
__ARGS((exarg_T
*eap
));
281 static void ex_equal
__ARGS((exarg_T
*eap
));
282 static void ex_sleep
__ARGS((exarg_T
*eap
));
283 static void do_exmap
__ARGS((exarg_T
*eap
, int isabbrev
));
284 static void ex_winsize
__ARGS((exarg_T
*eap
));
286 static void ex_wincmd
__ARGS((exarg_T
*eap
));
288 # define ex_wincmd ex_ni
290 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
291 static void ex_winpos
__ARGS((exarg_T
*eap
));
293 # define ex_winpos ex_ni
295 static void ex_operators
__ARGS((exarg_T
*eap
));
296 static void ex_put
__ARGS((exarg_T
*eap
));
297 static void ex_copymove
__ARGS((exarg_T
*eap
));
298 static void ex_may_print
__ARGS((exarg_T
*eap
));
299 static void ex_submagic
__ARGS((exarg_T
*eap
));
300 static void ex_join
__ARGS((exarg_T
*eap
));
301 static void ex_at
__ARGS((exarg_T
*eap
));
302 static void ex_bang
__ARGS((exarg_T
*eap
));
303 static void ex_undo
__ARGS((exarg_T
*eap
));
304 static void ex_redo
__ARGS((exarg_T
*eap
));
305 static void ex_later
__ARGS((exarg_T
*eap
));
306 static void ex_redir
__ARGS((exarg_T
*eap
));
307 static void ex_redraw
__ARGS((exarg_T
*eap
));
308 static void ex_redrawstatus
__ARGS((exarg_T
*eap
));
309 static void close_redir
__ARGS((void));
310 static void ex_mkrc
__ARGS((exarg_T
*eap
));
311 static void ex_mark
__ARGS((exarg_T
*eap
));
313 static char_u
*uc_fun_cmd
__ARGS((void));
314 static char_u
*find_ucmd
__ARGS((exarg_T
*eap
, char_u
*p
, int *full
, expand_T
*xp
, int *compl));
317 static void ex_normal
__ARGS((exarg_T
*eap
));
318 static void ex_startinsert
__ARGS((exarg_T
*eap
));
319 static void ex_stopinsert
__ARGS((exarg_T
*eap
));
321 # define ex_normal ex_ni
322 # define ex_align ex_ni
323 # define ex_retab ex_ni
324 # define ex_startinsert ex_ni
325 # define ex_stopinsert ex_ni
326 # define ex_helptags ex_ni
327 # define ex_sort ex_ni
330 static void ex_checkpath
__ARGS((exarg_T
*eap
));
331 static void ex_findpat
__ARGS((exarg_T
*eap
));
333 # define ex_findpat ex_ni
334 # define ex_checkpath ex_ni
336 #if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
337 static void ex_psearch
__ARGS((exarg_T
*eap
));
339 # define ex_psearch ex_ni
341 static void ex_tag
__ARGS((exarg_T
*eap
));
342 static void ex_tag_cmd
__ARGS((exarg_T
*eap
, char_u
*name
));
344 # define ex_scriptnames ex_ni
345 # define ex_finish ex_ni
346 # define ex_echo ex_ni
347 # define ex_echohl ex_ni
348 # define ex_execute ex_ni
349 # define ex_call ex_ni
351 # define ex_endif ex_ni
352 # define ex_else ex_ni
353 # define ex_while ex_ni
354 # define ex_for ex_ni
355 # define ex_continue ex_ni
356 # define ex_break ex_ni
357 # define ex_endwhile ex_ni
358 # define ex_endfor ex_ni
359 # define ex_throw ex_ni
360 # define ex_try ex_ni
361 # define ex_catch ex_ni
362 # define ex_finally ex_ni
363 # define ex_endtry ex_ni
364 # define ex_endfunction ex_ni
365 # define ex_let ex_ni
366 # define ex_unlet ex_ni
367 # define ex_lockvar ex_ni
368 # define ex_unlockvar ex_ni
369 # define ex_function ex_ni
370 # define ex_delfunction ex_ni
371 # define ex_return ex_ni
373 static char_u
*arg_all
__ARGS((void));
375 static int makeopens
__ARGS((FILE *fd
, char_u
*dirnow
));
376 static int put_view
__ARGS((FILE *fd
, win_T
*wp
, int add_edit
, unsigned *flagp
, int current_arg_idx
));
377 static void ex_loadview
__ARGS((exarg_T
*eap
));
378 static char_u
*get_view_file
__ARGS((int c
));
379 static int did_lcd
; /* whether ":lcd" was produced for a session */
381 # define ex_loadview ex_ni
384 # define ex_compiler ex_ni
387 static void ex_viminfo
__ARGS((exarg_T
*eap
));
389 # define ex_viminfo ex_ni
391 static void ex_behave
__ARGS((exarg_T
*eap
));
393 static void ex_filetype
__ARGS((exarg_T
*eap
));
394 static void ex_setfiletype
__ARGS((exarg_T
*eap
));
396 # define ex_filetype ex_ni
397 # define ex_setfiletype ex_ni
400 # define ex_diffoff ex_ni
401 # define ex_diffpatch ex_ni
402 # define ex_diffgetput ex_ni
403 # define ex_diffsplit ex_ni
404 # define ex_diffthis ex_ni
405 # define ex_diffupdate ex_ni
407 static void ex_digraphs
__ARGS((exarg_T
*eap
));
408 static void ex_set
__ARGS((exarg_T
*eap
));
409 #if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
410 # define ex_options ex_ni
412 #ifdef FEAT_SEARCH_EXTRA
413 static void ex_nohlsearch
__ARGS((exarg_T
*eap
));
414 static void ex_match
__ARGS((exarg_T
*eap
));
416 # define ex_nohlsearch ex_ni
417 # define ex_match ex_ni
420 static void ex_X
__ARGS((exarg_T
*eap
));
425 static void ex_fold
__ARGS((exarg_T
*eap
));
426 static void ex_foldopen
__ARGS((exarg_T
*eap
));
427 static void ex_folddo
__ARGS((exarg_T
*eap
));
429 # define ex_fold ex_ni
430 # define ex_foldopen ex_ni
431 # define ex_folddo ex_ni
433 #if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
434 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
435 # define ex_language ex_ni
438 # define ex_sign ex_ni
440 #ifndef FEAT_SUN_WORKSHOP
441 # define ex_wsverb ex_ni
443 #ifndef FEAT_NETBEANS_INTG
444 # define ex_nbkey ex_ni
448 # define ex_debug ex_ni
449 # define ex_breakadd ex_ni
450 # define ex_debuggreedy ex_ni
451 # define ex_breakdel ex_ni
452 # define ex_breaklist ex_ni
456 # define ex_history ex_ni
458 #ifndef FEAT_JUMPLIST
459 # define ex_jumps ex_ni
460 # define ex_changes ex_ni
464 # define ex_profile ex_ni
467 #ifndef FEAT_GUI_MACVIM
468 # define ex_macaction ex_ni
469 # define ex_macmenukey ex_ni
473 * Declare cmdnames[].
475 #define DO_DECLARE_EXCMD
479 * Table used to quickly search for a command, based on its first character.
481 static cmdidx_T cmdidxs
[27] =
512 static char_u dollar_command
[2] = {'$', 0};
516 /* Struct for storing a line inside a while/for loop */
519 char_u
*line
; /* command line */
520 linenr_T lnum
; /* sourcing_lnum of the line */
524 * Structure used to store info for line position in a while or for loop.
525 * This is required, because do_one_cmd() may invoke ex_function(), which
526 * reads more lines that may come from the while/for loop.
530 garray_T
*lines_gap
; /* growarray with line info */
531 int current_line
; /* last read line from growarray */
532 int repeating
; /* TRUE when looping a second time */
533 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
534 char_u
*(*getline
) __ARGS((int, void *, int));
538 static char_u
*get_loop_line
__ARGS((int c
, void *cookie
, int indent
));
539 static int store_loop_line
__ARGS((garray_T
*gap
, char_u
*line
));
540 static void free_cmdlines
__ARGS((garray_T
*gap
));
542 /* Struct to save a few things while debugging. Used in do_cmdline() only. */
547 except_T
*caught_stack
;
548 char_u
*vv_exception
;
549 char_u
*vv_throwpoint
;
555 except_T
*current_exception
;
558 static void save_dbg_stuff
__ARGS((struct dbg_stuff
*dsp
));
559 static void restore_dbg_stuff
__ARGS((struct dbg_stuff
*dsp
));
563 struct dbg_stuff
*dsp
;
565 dsp
->trylevel
= trylevel
; trylevel
= 0;
566 dsp
->force_abort
= force_abort
; force_abort
= FALSE
;
567 dsp
->caught_stack
= caught_stack
; caught_stack
= NULL
;
568 dsp
->vv_exception
= v_exception(NULL
);
569 dsp
->vv_throwpoint
= v_throwpoint(NULL
);
571 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
572 dsp
->did_emsg
= did_emsg
; did_emsg
= FALSE
;
573 dsp
->got_int
= got_int
; got_int
= FALSE
;
574 dsp
->did_throw
= did_throw
; did_throw
= FALSE
;
575 dsp
->need_rethrow
= need_rethrow
; need_rethrow
= FALSE
;
576 dsp
->check_cstack
= check_cstack
; check_cstack
= FALSE
;
577 dsp
->current_exception
= current_exception
; current_exception
= NULL
;
581 restore_dbg_stuff(dsp
)
582 struct dbg_stuff
*dsp
;
584 suppress_errthrow
= FALSE
;
585 trylevel
= dsp
->trylevel
;
586 force_abort
= dsp
->force_abort
;
587 caught_stack
= dsp
->caught_stack
;
588 (void)v_exception(dsp
->vv_exception
);
589 (void)v_throwpoint(dsp
->vv_throwpoint
);
590 did_emsg
= dsp
->did_emsg
;
591 got_int
= dsp
->got_int
;
592 did_throw
= dsp
->did_throw
;
593 need_rethrow
= dsp
->need_rethrow
;
594 check_cstack
= dsp
->check_cstack
;
595 current_exception
= dsp
->current_exception
;
601 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
606 int improved
; /* TRUE for "improved Ex" mode */
614 exmode_active
= EXMODE_VIM
;
616 exmode_active
= EXMODE_NORMAL
;
619 /* When using ":global /pat/ visual" and then "Q" we return to continue
620 * the :global command. */
624 save_msg_scroll
= msg_scroll
;
625 ++RedrawingDisabled
; /* don't redisplay the window */
626 ++no_wait_return
; /* don't wait for return */
628 /* Ignore scrollbar and mouse events in Ex mode */
632 want_sniff_request
= 0; /* No K_SNIFF wanted */
635 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
636 while (exmode_active
)
639 /* Check for a ":normal" command and no more characters left. */
640 if (ex_normal_busy
> 0 && typebuf
.tb_len
== 0)
642 exmode_active
= FALSE
;
647 need_wait_return
= FALSE
;
648 ex_pressedreturn
= FALSE
;
649 ex_no_reprint
= FALSE
;
650 changedtick
= curbuf
->b_changedtick
;
651 prev_msg_row
= msg_row
;
652 prev_line
= curwin
->w_cursor
.lnum
;
654 ProcessSniffRequests();
658 cmdline_row
= msg_row
;
659 do_cmdline(NULL
, getexline
, NULL
, 0);
662 do_cmdline(NULL
, getexmodeline
, NULL
, DOCMD_NOWAIT
);
663 lines_left
= Rows
- 1;
665 if ((prev_line
!= curwin
->w_cursor
.lnum
666 || changedtick
!= curbuf
->b_changedtick
) && !ex_no_reprint
)
668 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
672 if (ex_pressedreturn
)
674 /* go up one line, to overwrite the ":<CR>" line, so the
675 * output doesn't contain empty lines. */
676 msg_row
= prev_msg_row
;
677 if (prev_msg_row
== Rows
- 1)
681 print_line_no_prefix(curwin
->w_cursor
.lnum
, FALSE
, FALSE
);
685 else if (ex_pressedreturn
&& !ex_no_reprint
) /* must be at EOF */
687 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
690 EMSG(_("E501: At end-of-file"));
699 update_screen(CLEAR
);
700 need_wait_return
= FALSE
;
701 msg_scroll
= save_msg_scroll
;
705 * Execute a simple command line. Used for translated commands like "*".
711 return do_cmdline(cmd
, NULL
, NULL
,
712 DOCMD_VERBOSE
|DOCMD_NOWAIT
|DOCMD_KEYTYPED
);
716 * do_cmdline(): execute one Ex command line
718 * 1. Execute "cmdline" when it is not NULL.
719 * If "cmdline" is NULL, or more lines are needed, getline() is used.
720 * 2. Split up in parts separated with '|'.
722 * This function can be called recursively!
725 * DOCMD_VERBOSE - The command will be included in the error message.
726 * DOCMD_NOWAIT - Don't call wait_return() and friends.
727 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
728 * DOCMD_KEYTYPED - Don't reset KeyTyped.
729 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
730 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
732 * return FAIL if cmdline could not be executed, OK otherwise
735 do_cmdline(cmdline
, getline
, cookie
, flags
)
737 char_u
*(*getline
) __ARGS((int, void *, int));
738 void *cookie
; /* argument for getline() */
741 char_u
*next_cmdline
; /* next cmd to execute */
742 char_u
*cmdline_copy
= NULL
; /* copy of cmd line */
743 int used_getline
= FALSE
; /* used "getline" to obtain command */
744 static int recursive
= 0; /* recursive depth */
745 int msg_didout_before_start
= 0;
746 int count
= 0; /* line number count */
747 int did_inc
= FALSE
; /* incremented RedrawingDisabled */
750 struct condstack cstack
; /* conditional stack */
751 garray_T lines_ga
; /* keep lines for ":while"/":for" */
752 int current_line
= 0; /* active line in lines_ga */
753 char_u
*fname
= NULL
; /* function or script name */
754 linenr_T
*breakpoint
= NULL
; /* ptr to breakpoint field in cookie */
755 int *dbg_tick
= NULL
; /* ptr to dbg_tick field in cookie */
756 struct dbg_stuff debug_saved
; /* saved things for debug mode */
757 int initial_trylevel
;
758 struct msglist
**saved_msg_list
= NULL
;
759 struct msglist
*private_msg_list
;
761 /* "getline" and "cookie" passed to do_one_cmd() */
762 char_u
*(*cmd_getline
) __ARGS((int, void *, int));
764 struct loop_cookie cmd_loop_cookie
;
768 # define cmd_getline getline
769 # define cmd_cookie cookie
771 static int call_depth
= 0; /* recursiveness */
774 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
775 * location for storing error messages to be converted to an exception.
776 * This ensures that the do_errthrow() call in do_one_cmd() does not
777 * combine the messages stored by an earlier invocation of do_one_cmd()
778 * with the command name of the later one. This would happen when
779 * BufWritePost autocommands are executed after a write error. */
780 saved_msg_list
= msg_list
;
781 msg_list
= &private_msg_list
;
782 private_msg_list
= NULL
;
785 /* It's possible to create an endless loop with ":execute", catch that
786 * here. The value of 200 allows nested function calls, ":source", etc. */
787 if (call_depth
== 200)
789 EMSG(_("E169: Command too recursive"));
791 /* When converting to an exception, we do not include the command name
792 * since this is not an error of the specific command. */
793 do_errthrow((struct condstack
*)NULL
, (char_u
*)NULL
);
794 msg_list
= saved_msg_list
;
802 cstack
.cs_looplevel
= 0;
803 cstack
.cs_trylevel
= 0;
804 cstack
.cs_emsg_silent_list
= NULL
;
805 cstack
.cs_lflags
= 0;
806 ga_init2(&lines_ga
, (int)sizeof(wcmd_T
), 10);
808 real_cookie
= getline_cookie(getline
, cookie
);
810 /* Inside a function use a higher nesting level. */
811 getline_is_func
= getline_equal(getline
, cookie
, get_func_line
);
812 if (getline_is_func
&& ex_nesting_level
== func_level(real_cookie
))
815 /* Get the function or script name and the address where the next breakpoint
816 * line and the debug tick for a function or script are stored. */
819 fname
= func_name(real_cookie
);
820 breakpoint
= func_breakpoint(real_cookie
);
821 dbg_tick
= func_dbg_tick(real_cookie
);
823 else if (getline_equal(getline
, cookie
, getsourceline
))
825 fname
= sourcing_name
;
826 breakpoint
= source_breakpoint(real_cookie
);
827 dbg_tick
= source_dbg_tick(real_cookie
);
831 * Initialize "force_abort" and "suppress_errthrow" at the top level.
836 suppress_errthrow
= FALSE
;
840 * If requested, store and reset the global values controlling the
841 * exception handling (used when debugging). Otherwise clear it to avoid
842 * a bogus compiler warning when the optimizer uses inline functions...
844 if (flags
& DOCMD_EXCRESET
)
845 save_dbg_stuff(&debug_saved
);
847 memset(&debug_saved
, 0, 1);
849 initial_trylevel
= trylevel
;
852 * "did_throw" will be set to TRUE when an exception is being thrown.
857 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
858 * cancel the whole command line, and any if/endif or loop.
859 * If force_abort is set, we cancel everything.
864 * KeyTyped is only set when calling vgetc(). Reset it here when not
865 * calling vgetc() (sourced command lines).
867 if (!(flags
& DOCMD_KEYTYPED
) && !getline_equal(getline
, cookie
, getexline
))
871 * Continue executing command lines:
872 * - when inside an ":if", ":while" or ":for"
873 * - for multiple commands on one line, separated with '|'
874 * - when repeating until there are no more lines (for ":source")
876 next_cmdline
= cmdline
;
880 getline_is_func
= getline_equal(getline
, cookie
, get_func_line
);
883 /* stop skipping cmds for an error msg after all endif/while/for */
884 if (next_cmdline
== NULL
888 && !(getline_is_func
&& func_has_abort(real_cookie
))
894 * 1. If repeating a line in a loop, get a line from lines_ga.
895 * 2. If no line given: Get an allocated line with getline().
896 * 3. If a line is given: Make a copy, so we can mess with it.
900 /* 1. If repeating, get a previous line from lines_ga. */
901 if (cstack
.cs_looplevel
> 0 && current_line
< lines_ga
.ga_len
)
903 /* Each '|' separated command is stored separately in lines_ga, to
904 * be able to jump to it. Don't use next_cmdline now. */
905 vim_free(cmdline_copy
);
908 /* Check if a function has returned or, unless it has an unclosed
909 * try conditional, aborted. */
913 if (do_profiling
== PROF_YES
)
914 func_line_end(real_cookie
);
916 if (func_has_ended(real_cookie
))
923 else if (do_profiling
== PROF_YES
924 && getline_equal(getline
, cookie
, getsourceline
))
928 /* Check if a sourced file hit a ":finish" command. */
929 if (source_finished(getline
, cookie
))
935 /* If breakpoints have been added/deleted need to check for it. */
936 if (breakpoint
!= NULL
&& dbg_tick
!= NULL
937 && *dbg_tick
!= debug_tick
)
939 *breakpoint
= dbg_find_breakpoint(
940 getline_equal(getline
, cookie
, getsourceline
),
941 fname
, sourcing_lnum
);
942 *dbg_tick
= debug_tick
;
945 next_cmdline
= ((wcmd_T
*)(lines_ga
.ga_data
))[current_line
].line
;
946 sourcing_lnum
= ((wcmd_T
*)(lines_ga
.ga_data
))[current_line
].lnum
;
948 /* Did we encounter a breakpoint? */
949 if (breakpoint
!= NULL
&& *breakpoint
!= 0
950 && *breakpoint
<= sourcing_lnum
)
952 dbg_breakpoint(fname
, sourcing_lnum
);
953 /* Find next breakpoint. */
954 *breakpoint
= dbg_find_breakpoint(
955 getline_equal(getline
, cookie
, getsourceline
),
956 fname
, sourcing_lnum
);
957 *dbg_tick
= debug_tick
;
960 if (do_profiling
== PROF_YES
)
963 func_line_start(real_cookie
);
964 else if (getline_equal(getline
, cookie
, getsourceline
))
970 if (cstack
.cs_looplevel
> 0)
972 /* Inside a while/for loop we need to store the lines and use them
973 * again. Pass a different "getline" function to do_one_cmd()
974 * below, so that it stores lines in or reads them from
975 * "lines_ga". Makes it possible to define a function inside a
977 cmd_getline
= get_loop_line
;
978 cmd_cookie
= (void *)&cmd_loop_cookie
;
979 cmd_loop_cookie
.lines_gap
= &lines_ga
;
980 cmd_loop_cookie
.current_line
= current_line
;
981 cmd_loop_cookie
.getline
= getline
;
982 cmd_loop_cookie
.cookie
= cookie
;
983 cmd_loop_cookie
.repeating
= (current_line
< lines_ga
.ga_len
);
987 cmd_getline
= getline
;
992 /* 2. If no line given, get an allocated line with getline(). */
993 if (next_cmdline
== NULL
)
996 * Need to set msg_didout for the first line after an ":if",
997 * otherwise the ":if" will be overwritten.
999 if (count
== 1 && getline_equal(getline
, cookie
, getexline
))
1001 if (getline
== NULL
|| (next_cmdline
= getline(':', cookie
,
1003 cstack
.cs_idx
< 0 ? 0 : (cstack
.cs_idx
+ 1) * 2
1009 /* Don't call wait_return for aborted command line. The NULL
1010 * returned for the end of a sourced file or executed function
1011 * doesn't do this. */
1012 if (KeyTyped
&& !(flags
& DOCMD_REPEAT
))
1013 need_wait_return
= FALSE
;
1017 used_getline
= TRUE
;
1020 * Keep the first typed line. Clear it when more lines are typed.
1022 if (flags
& DOCMD_KEEPLINE
)
1024 vim_free(repeat_cmdline
);
1026 repeat_cmdline
= vim_strsave(next_cmdline
);
1028 repeat_cmdline
= NULL
;
1032 /* 3. Make a copy of the command so we can mess with it. */
1033 else if (cmdline_copy
== NULL
)
1035 next_cmdline
= vim_strsave(next_cmdline
);
1036 if (next_cmdline
== NULL
)
1038 EMSG(_(e_outofmem
));
1043 cmdline_copy
= next_cmdline
;
1047 * Save the current line when inside a ":while" or ":for", and when
1048 * the command looks like a ":while" or ":for", because we may need it
1049 * later. When there is a '|' and another command, it is stored
1050 * separately, because we need to be able to jump back to it from an
1051 * :endwhile/:endfor.
1053 if (current_line
== lines_ga
.ga_len
1054 && (cstack
.cs_looplevel
|| has_loop_cmd(next_cmdline
)))
1056 if (store_loop_line(&lines_ga
, next_cmdline
) == FAIL
)
1068 * All output from the commands is put below each other, without
1069 * waiting for a return. Don't do this when executing commands
1070 * from a script or when being called recursive (e.g. for ":e
1073 if (!(flags
& DOCMD_NOWAIT
) && !recursive
)
1075 msg_didout_before_start
= msg_didout
;
1076 msg_didany
= FALSE
; /* no output yet */
1078 msg_scroll
= TRUE
; /* put messages below each other */
1079 ++no_wait_return
; /* dont wait for return until finished */
1080 ++RedrawingDisabled
;
1085 if (p_verbose
>= 15 && sourcing_name
!= NULL
)
1088 verbose_enter_scroll();
1090 smsg((char_u
*)_("line %ld: %s"),
1091 (long)sourcing_lnum
, cmdline_copy
);
1092 if (msg_silent
== 0)
1093 msg_puts((char_u
*)"\n"); /* don't overwrite this */
1095 verbose_leave_scroll();
1100 * 2. Execute one '|' separated command.
1101 * do_one_cmd() will return NULL if there is no trailing '|'.
1102 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1105 next_cmdline
= do_one_cmd(&cmdline_copy
, flags
& DOCMD_VERBOSE
,
1109 cmd_getline
, cmd_cookie
);
1113 if (cmd_cookie
== (void *)&cmd_loop_cookie
)
1114 /* Use "current_line" from "cmd_loop_cookie", it may have been
1115 * incremented when defining a function. */
1116 current_line
= cmd_loop_cookie
.current_line
;
1119 if (next_cmdline
== NULL
)
1121 vim_free(cmdline_copy
);
1122 cmdline_copy
= NULL
;
1125 * If the command was typed, remember it for the ':' register.
1126 * Do this AFTER executing the command to make :@: work.
1128 if (getline_equal(getline
, cookie
, getexline
)
1129 && new_last_cmdline
!= NULL
)
1131 vim_free(last_cmdline
);
1132 last_cmdline
= new_last_cmdline
;
1133 new_last_cmdline
= NULL
;
1139 /* need to copy the command after the '|' to cmdline_copy, for the
1140 * next do_one_cmd() */
1141 mch_memmove(cmdline_copy
, next_cmdline
, STRLEN(next_cmdline
) + 1);
1142 next_cmdline
= cmdline_copy
;
1147 /* reset did_emsg for a function that is not aborted by an error */
1148 if (did_emsg
&& !force_abort
1149 && getline_equal(getline
, cookie
, get_func_line
)
1150 && !func_has_abort(real_cookie
))
1153 if (cstack
.cs_looplevel
> 0)
1158 * An ":endwhile", ":endfor" and ":continue" is handled here.
1159 * If we were executing commands, jump back to the ":while" or
1161 * If we were not executing commands, decrement cs_looplevel.
1163 if (cstack
.cs_lflags
& (CSL_HAD_CONT
| CSL_HAD_ENDLOOP
))
1165 cstack
.cs_lflags
&= ~(CSL_HAD_CONT
| CSL_HAD_ENDLOOP
);
1167 /* Jump back to the matching ":while" or ":for". Be careful
1168 * not to use a cs_line[] from an entry that isn't a ":while"
1169 * or ":for": It would make "current_line" invalid and can
1171 if (!did_emsg
&& !got_int
&& !did_throw
1172 && cstack
.cs_idx
>= 0
1173 && (cstack
.cs_flags
[cstack
.cs_idx
]
1174 & (CSF_WHILE
| CSF_FOR
))
1175 && cstack
.cs_line
[cstack
.cs_idx
] >= 0
1176 && (cstack
.cs_flags
[cstack
.cs_idx
] & CSF_ACTIVE
))
1178 current_line
= cstack
.cs_line
[cstack
.cs_idx
];
1179 /* remember we jumped there */
1180 cstack
.cs_lflags
|= CSL_HAD_LOOP
;
1181 line_breakcheck(); /* check if CTRL-C typed */
1183 /* Check for the next breakpoint at or after the ":while"
1185 if (breakpoint
!= NULL
)
1187 *breakpoint
= dbg_find_breakpoint(
1188 getline_equal(getline
, cookie
, getsourceline
),
1190 ((wcmd_T
*)lines_ga
.ga_data
)[current_line
].lnum
-1);
1191 *dbg_tick
= debug_tick
;
1196 /* can only get here with ":endwhile" or ":endfor" */
1197 if (cstack
.cs_idx
>= 0)
1198 rewind_conditionals(&cstack
, cstack
.cs_idx
- 1,
1199 CSF_WHILE
| CSF_FOR
, &cstack
.cs_looplevel
);
1204 * For a ":while" or ":for" we need to remember the line number.
1206 else if (cstack
.cs_lflags
& CSL_HAD_LOOP
)
1208 cstack
.cs_lflags
&= ~CSL_HAD_LOOP
;
1209 cstack
.cs_line
[cstack
.cs_idx
] = current_line
- 1;
1214 * When not inside any ":while" loop, clear remembered lines.
1216 if (cstack
.cs_looplevel
== 0)
1218 if (lines_ga
.ga_len
> 0)
1221 ((wcmd_T
*)lines_ga
.ga_data
)[lines_ga
.ga_len
- 1].lnum
;
1222 free_cmdlines(&lines_ga
);
1228 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1229 * being restored at the ":endtry". Reset them here and set the
1230 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1231 * This includes the case where a missing ":endif", ":endwhile" or
1232 * ":endfor" was detected by the ":finally" itself.
1234 if (cstack
.cs_lflags
& CSL_HAD_FINA
)
1236 cstack
.cs_lflags
&= ~CSL_HAD_FINA
;
1237 report_make_pending(cstack
.cs_pending
[cstack
.cs_idx
]
1238 & (CSTP_ERROR
| CSTP_INTERRUPT
| CSTP_THROW
),
1239 did_throw
? (void *)current_exception
: NULL
);
1240 did_emsg
= got_int
= did_throw
= FALSE
;
1241 cstack
.cs_flags
[cstack
.cs_idx
] |= CSF_ACTIVE
| CSF_FINALLY
;
1244 /* Update global "trylevel" for recursive calls to do_cmdline() from
1245 * within this loop. */
1246 trylevel
= initial_trylevel
+ cstack
.cs_trylevel
;
1249 * If the outermost try conditional (across function calls and sourced
1250 * files) is aborted because of an error, an interrupt, or an uncaught
1251 * exception, cancel everything. If it is left normally, reset
1252 * force_abort to get the non-EH compatible abortion behavior for
1253 * the rest of the script.
1255 if (trylevel
== 0 && !did_emsg
&& !got_int
&& !did_throw
)
1256 force_abort
= FALSE
;
1258 /* Convert an interrupt to an exception if appropriate. */
1259 (void)do_intthrow(&cstack
);
1260 #endif /* FEAT_EVAL */
1264 * Continue executing command lines when:
1265 * - no CTRL-C typed, no aborting error, no exception thrown or try
1266 * conditionals need to be checked for executing finally clauses or
1267 * catching an interrupt exception
1268 * - didn't get an error message or lines are not typed
1269 * - there is a command after '|', inside a :if, :while, :for or :try, or
1270 * looping for ":source" command or function call.
1274 || (did_emsg
&& force_abort
) || did_throw
1278 && cstack
.cs_trylevel
== 0
1281 && !(did_emsg
&& used_getline
1282 && (getline_equal(getline
, cookie
, getexmodeline
)
1283 || getline_equal(getline
, cookie
, getexline
)))
1284 && (next_cmdline
!= NULL
1286 || cstack
.cs_idx
>= 0
1288 || (flags
& DOCMD_REPEAT
)));
1290 vim_free(cmdline_copy
);
1292 free_cmdlines(&lines_ga
);
1293 ga_clear(&lines_ga
);
1295 if (cstack
.cs_idx
>= 0)
1298 * If a sourced file or executed function ran to its end, report the
1299 * unclosed conditional.
1301 if (!got_int
&& !did_throw
1302 && ((getline_equal(getline
, cookie
, getsourceline
)
1303 && !source_finished(getline
, cookie
))
1304 || (getline_equal(getline
, cookie
, get_func_line
)
1305 && !func_has_ended(real_cookie
))))
1307 if (cstack
.cs_flags
[cstack
.cs_idx
] & CSF_TRY
)
1309 else if (cstack
.cs_flags
[cstack
.cs_idx
] & CSF_WHILE
)
1310 EMSG(_(e_endwhile
));
1311 else if (cstack
.cs_flags
[cstack
.cs_idx
] & CSF_FOR
)
1318 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1319 * ":endtry" in a sourced file or executed function. If the try
1320 * conditional is in its finally clause, ignore anything pending.
1321 * If it is in a catch clause, finish the caught exception.
1322 * Also cleanup any "cs_forinfo" structures.
1326 int idx
= cleanup_conditionals(&cstack
, 0, TRUE
);
1329 --idx
; /* remove try block not in its finally clause */
1330 rewind_conditionals(&cstack
, idx
, CSF_WHILE
| CSF_FOR
,
1331 &cstack
.cs_looplevel
);
1333 while (cstack
.cs_idx
>= 0);
1334 trylevel
= initial_trylevel
;
1337 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1338 * lack was reported above and the error message is to be converted to an
1339 * exception, do this now after rewinding the cstack. */
1340 do_errthrow(&cstack
, getline_equal(getline
, cookie
, get_func_line
)
1341 ? (char_u
*)"endfunction" : (char_u
*)NULL
);
1346 * When an exception is being thrown out of the outermost try
1347 * conditional, discard the uncaught exception, disable the conversion
1348 * of interrupts or errors to exceptions, and ensure that no more
1349 * commands are executed.
1354 char_u
*saved_sourcing_name
;
1355 int saved_sourcing_lnum
;
1356 struct msglist
*messages
= NULL
, *next
;
1359 * If the uncaught exception is a user exception, report it as an
1360 * error. If it is an error exception, display the saved error
1361 * message now. For an interrupt exception, do nothing; the
1362 * interrupt message is given elsewhere.
1364 switch (current_exception
->type
)
1367 vim_snprintf((char *)IObuff
, IOSIZE
,
1368 _("E605: Exception not caught: %s"),
1369 current_exception
->value
);
1370 p
= vim_strsave(IObuff
);
1373 messages
= current_exception
->messages
;
1374 current_exception
->messages
= NULL
;
1379 p
= vim_strsave((char_u
*)_(e_internal
));
1382 saved_sourcing_name
= sourcing_name
;
1383 saved_sourcing_lnum
= sourcing_lnum
;
1384 sourcing_name
= current_exception
->throw_name
;
1385 sourcing_lnum
= current_exception
->throw_lnum
;
1386 current_exception
->throw_name
= NULL
;
1388 discard_current_exception(); /* uses IObuff if 'verbose' */
1389 suppress_errthrow
= TRUE
;
1392 if (messages
!= NULL
)
1396 next
= messages
->next
;
1397 emsg(messages
->msg
);
1398 vim_free(messages
->msg
);
1402 while (messages
!= NULL
);
1409 vim_free(sourcing_name
);
1410 sourcing_name
= saved_sourcing_name
;
1411 sourcing_lnum
= saved_sourcing_lnum
;
1415 * On an interrupt or an aborting error not converted to an exception,
1416 * disable the conversion of errors to exceptions. (Interrupts are not
1417 * converted any more, here.) This enables also the interrupt message
1418 * when force_abort is set and did_emsg unset in case of an interrupt
1419 * from a finally clause after an error.
1421 else if (got_int
|| (did_emsg
&& force_abort
))
1422 suppress_errthrow
= TRUE
;
1426 * The current cstack will be freed when do_cmdline() returns. An uncaught
1427 * exception will have to be rethrown in the previous cstack. If a function
1428 * has just returned or a script file was just finished and the previous
1429 * cstack belongs to the same function or, respectively, script file, it
1430 * will have to be checked for finally clauses to be executed due to the
1431 * ":return" or ":finish". This is done in do_one_cmd().
1434 need_rethrow
= TRUE
;
1435 if ((getline_equal(getline
, cookie
, getsourceline
)
1436 && ex_nesting_level
> source_level(real_cookie
))
1437 || (getline_equal(getline
, cookie
, get_func_line
)
1438 && ex_nesting_level
> func_level(real_cookie
) + 1))
1441 check_cstack
= TRUE
;
1445 /* When leaving a function, reduce nesting level. */
1446 if (getline_equal(getline
, cookie
, get_func_line
))
1449 * Go to debug mode when returning from a function in which we are
1452 if ((getline_equal(getline
, cookie
, getsourceline
)
1453 || getline_equal(getline
, cookie
, get_func_line
))
1454 && ex_nesting_level
+ 1 <= debug_break_level
)
1455 do_debug(getline_equal(getline
, cookie
, getsourceline
)
1456 ? (char_u
*)_("End of sourced file")
1457 : (char_u
*)_("End of function"));
1461 * Restore the exception environment (done after returning from the
1464 if (flags
& DOCMD_EXCRESET
)
1465 restore_dbg_stuff(&debug_saved
);
1467 msg_list
= saved_msg_list
;
1468 #endif /* FEAT_EVAL */
1471 * If there was too much output to fit on the command line, ask the user to
1472 * hit return before redrawing the screen. With the ":global" command we do
1473 * this only once after the command is finished.
1477 --RedrawingDisabled
;
1482 * When just finished an ":if"-":else" which was typed, no need to
1483 * wait for hit-return. Also for an error situation.
1487 || (did_endif
&& KeyTyped
&& !did_emsg
)
1491 need_wait_return
= FALSE
;
1492 msg_didany
= FALSE
; /* don't wait when restarting edit */
1494 else if (need_wait_return
)
1497 * The msg_start() above clears msg_didout. The wait_return we do
1498 * here should not overwrite the command that may be shown before
1501 msg_didout
|= msg_didout_before_start
;
1508 * Reset if_level, in case a sourced script file contains more ":if" than
1509 * ":endif" (could be ":if x | foo | endif").
1520 * Obtain a line when inside a ":while" or ":for" loop.
1523 get_loop_line(c
, cookie
, indent
)
1528 struct loop_cookie
*cp
= (struct loop_cookie
*)cookie
;
1532 if (cp
->current_line
+ 1 >= cp
->lines_gap
->ga_len
)
1535 return NULL
; /* trying to read past ":endwhile"/":endfor" */
1537 /* First time inside the ":while"/":for": get line normally. */
1538 if (cp
->getline
== NULL
)
1539 line
= getcmdline(c
, 0L, indent
);
1541 line
= cp
->getline(c
, cp
->cookie
, indent
);
1542 if (line
!= NULL
&& store_loop_line(cp
->lines_gap
, line
) == OK
)
1550 wp
= (wcmd_T
*)(cp
->lines_gap
->ga_data
) + cp
->current_line
;
1551 sourcing_lnum
= wp
->lnum
;
1552 return vim_strsave(wp
->line
);
1556 * Store a line in "gap" so that a ":while" loop can execute it again.
1559 store_loop_line(gap
, line
)
1563 if (ga_grow(gap
, 1) == FAIL
)
1565 ((wcmd_T
*)(gap
->ga_data
))[gap
->ga_len
].line
= vim_strsave(line
);
1566 ((wcmd_T
*)(gap
->ga_data
))[gap
->ga_len
].lnum
= sourcing_lnum
;
1572 * Free the lines stored for a ":while" or ":for" loop.
1578 while (gap
->ga_len
> 0)
1580 vim_free(((wcmd_T
*)(gap
->ga_data
))[gap
->ga_len
- 1].line
);
1587 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1588 * "func". * Otherwise return TRUE when "fgetline" equals "func".
1592 getline_equal(fgetline
, cookie
, func
)
1593 char_u
*(*fgetline
) __ARGS((int, void *, int));
1594 void *cookie
; /* argument for fgetline() */
1595 char_u
*(*func
) __ARGS((int, void *, int));
1598 char_u
*(*gp
) __ARGS((int, void *, int));
1599 struct loop_cookie
*cp
;
1601 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1602 * function that's originally used to obtain the lines. This may be
1603 * nested several levels. */
1605 cp
= (struct loop_cookie
*)cookie
;
1606 while (gp
== get_loop_line
)
1613 return fgetline
== func
;
1617 #if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1619 * If "fgetline" is get_loop_line(), return the cookie used by the original
1620 * getline function. Otherwise return "cookie".
1624 getline_cookie(fgetline
, cookie
)
1625 char_u
*(*fgetline
) __ARGS((int, void *, int));
1626 void *cookie
; /* argument for fgetline() */
1629 char_u
*(*gp
) __ARGS((int, void *, int));
1630 struct loop_cookie
*cp
;
1632 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1633 * cookie that's originally used to obtain the lines. This may be nested
1634 * several levels. */
1636 cp
= (struct loop_cookie
*)cookie
;
1637 while (gp
== get_loop_line
)
1650 * Execute one Ex command.
1652 * If 'sourcing' is TRUE, the command will be included in the error message.
1654 * 1. skip comment lines and leading space
1655 * 2. handle command modifiers
1658 * 5. parse arguments
1659 * 6. switch on command name
1661 * Note: "fgetline" can be NULL.
1663 * This function may be called recursively!
1665 #if (_MSC_VER == 1200)
1667 * Avoid optimisation bug in VC++ version 6.0
1669 #pragma optimize( "g", off )
1672 do_one_cmd(cmdlinep
, sourcing
,
1680 struct condstack
*cstack
;
1682 char_u
*(*fgetline
) __ARGS((int, void *, int));
1683 void *cookie
; /* argument for fgetline() */
1688 char_u
*errormsg
= NULL
; /* error message */
1689 exarg_T ea
; /* Ex command arguments */
1690 long verbose_save
= -1;
1691 int save_msg_scroll
= 0;
1693 int did_esilent
= 0;
1695 int did_sandbox
= FALSE
;
1697 cmdmod_T save_cmdmod
;
1698 int ni
; /* set when Not Implemented */
1700 vim_memset(&ea
, 0, sizeof(ea
));
1707 /* when not editing the last file :q has to be typed twice */
1710 /* avoid that a function call in 'statusline' does this */
1711 && !getline_equal(fgetline
, cookie
, get_func_line
)
1717 * Reset browse, confirm, etc.. They are restored when returning, for
1720 save_cmdmod
= cmdmod
;
1721 vim_memset(&cmdmod
, 0, sizeof(cmdmod
));
1723 /* "#!anything" is handled like a comment. */
1724 if ((*cmdlinep
)[0] == '#' && (*cmdlinep
)[1] == '!')
1728 * Repeat until no more command modifiers are found.
1734 * 1. skip comment lines and leading white space and colons
1736 while (*ea
.cmd
== ' ' || *ea
.cmd
== '\t' || *ea
.cmd
== ':')
1739 /* in ex mode, an empty line works like :+ */
1740 if (*ea
.cmd
== NUL
&& exmode_active
1741 && (getline_equal(fgetline
, cookie
, getexmodeline
)
1742 || getline_equal(fgetline
, cookie
, getexline
))
1743 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
1745 ea
.cmd
= (char_u
*)"+";
1746 ex_pressedreturn
= TRUE
;
1749 /* ignore comment and empty lines */
1754 ex_pressedreturn
= TRUE
;
1759 * 2. handle command modifiers.
1762 if (VIM_ISDIGIT(*ea
.cmd
))
1763 p
= skipwhite(skipdigits(ea
.cmd
));
1766 /* When adding an entry, also modify cmd_exists(). */
1767 case 'a': if (!checkforcmd(&ea
.cmd
, "aboveleft", 3))
1770 cmdmod
.split
|= WSP_ABOVE
;
1774 case 'b': if (checkforcmd(&ea
.cmd
, "belowright", 3))
1777 cmdmod
.split
|= WSP_BELOW
;
1781 if (checkforcmd(&ea
.cmd
, "browse", 3))
1784 cmdmod
.browse
= TRUE
;
1788 if (!checkforcmd(&ea
.cmd
, "botright", 2))
1791 cmdmod
.split
|= WSP_BOT
;
1795 case 'c': if (!checkforcmd(&ea
.cmd
, "confirm", 4))
1797 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1798 cmdmod
.confirm
= TRUE
;
1802 case 'k': if (checkforcmd(&ea
.cmd
, "keepmarks", 3))
1804 cmdmod
.keepmarks
= TRUE
;
1807 if (checkforcmd(&ea
.cmd
, "keepalt", 5))
1809 cmdmod
.keepalt
= TRUE
;
1812 if (!checkforcmd(&ea
.cmd
, "keepjumps", 5))
1814 cmdmod
.keepjumps
= TRUE
;
1817 /* ":hide" and ":hide | cmd" are not modifiers */
1818 case 'h': if (p
!= ea
.cmd
|| !checkforcmd(&p
, "hide", 3)
1819 || *p
== NUL
|| ends_excmd(*p
))
1825 case 'l': if (checkforcmd(&ea
.cmd
, "lockmarks", 3))
1827 cmdmod
.lockmarks
= TRUE
;
1831 if (!checkforcmd(&ea
.cmd
, "leftabove", 5))
1834 cmdmod
.split
|= WSP_ABOVE
;
1838 case 'n': if (!checkforcmd(&ea
.cmd
, "noautocmd", 3))
1841 if (cmdmod
.save_ei
== NULL
)
1843 /* Set 'eventignore' to "all". Restore the
1844 * existing option value later. */
1845 cmdmod
.save_ei
= vim_strsave(p_ei
);
1846 set_string_option_direct((char_u
*)"ei", -1,
1847 (char_u
*)"all", OPT_FREE
, SID_NONE
);
1852 case 'r': if (!checkforcmd(&ea
.cmd
, "rightbelow", 6))
1855 cmdmod
.split
|= WSP_BELOW
;
1859 case 's': if (checkforcmd(&ea
.cmd
, "sandbox", 3))
1868 if (!checkforcmd(&ea
.cmd
, "silent", 3))
1872 save_msg_scroll
= msg_scroll
;
1873 if (*ea
.cmd
== '!' && !vim_iswhite(ea
.cmd
[-1]))
1875 /* ":silent!", but not "silent !cmd" */
1876 ea
.cmd
= skipwhite(ea
.cmd
+ 1);
1882 case 't': if (checkforcmd(&p
, "tab", 3))
1885 if (vim_isdigit(*ea
.cmd
))
1886 cmdmod
.tab
= atoi((char *)ea
.cmd
) + 1;
1888 cmdmod
.tab
= tabpage_index(curtab
) + 1;
1893 if (!checkforcmd(&ea
.cmd
, "topleft", 2))
1896 cmdmod
.split
|= WSP_TOP
;
1900 case 'v': if (checkforcmd(&ea
.cmd
, "vertical", 4))
1902 #ifdef FEAT_VERTSPLIT
1903 cmdmod
.split
|= WSP_VERT
;
1907 if (!checkforcmd(&p
, "verbose", 4))
1909 if (verbose_save
< 0)
1910 verbose_save
= p_verbose
;
1911 if (vim_isdigit(*ea
.cmd
))
1912 p_verbose
= atoi((char *)ea
.cmd
);
1922 ea
.skip
= did_emsg
|| got_int
|| did_throw
|| (cstack
->cs_idx
>= 0
1923 && !(cstack
->cs_flags
[cstack
->cs_idx
] & CSF_ACTIVE
));
1925 ea
.skip
= (if_level
> 0);
1929 # ifdef FEAT_PROFILE
1930 /* Count this line for profiling if ea.skip is FALSE. */
1931 if (do_profiling
== PROF_YES
&& !ea
.skip
)
1933 if (getline_equal(fgetline
, cookie
, get_func_line
))
1934 func_line_exec(getline_cookie(fgetline
, cookie
));
1935 else if (getline_equal(fgetline
, cookie
, getsourceline
))
1940 /* May go to debug mode. If this happens and the ">quit" debug command is
1941 * used, throw an interrupt exception and skip the next command. */
1942 dbg_check_breakpoint(&ea
);
1943 if (!ea
.skip
&& got_int
)
1946 (void)do_intthrow(cstack
);
1951 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1957 * 'x [+-NUM] (where x denotes a currently defined mark)
1962 * The ea.cmd pointer is updated to point to the first character following the
1963 * range spec. If an initial address is found, but no second, the upper bound
1964 * is equal to the lower.
1967 /* repeat for all ',' or ';' separated addresses */
1970 ea
.line1
= ea
.line2
;
1971 ea
.line2
= curwin
->w_cursor
.lnum
; /* default is current line number */
1972 ea
.cmd
= skipwhite(ea
.cmd
);
1973 lnum
= get_address(&ea
.cmd
, ea
.skip
, ea
.addr_count
== 0);
1974 if (ea
.cmd
== NULL
) /* error detected */
1976 if (lnum
== MAXLNUM
)
1978 if (*ea
.cmd
== '%') /* '%' - all lines */
1982 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
1985 /* '*' - visual area */
1986 else if (*ea
.cmd
== '*' && vim_strchr(p_cpo
, CPO_STAR
) == NULL
)
1993 fp
= getmark('<', FALSE
);
1994 if (check_mark(fp
) == FAIL
)
1996 ea
.line1
= fp
->lnum
;
1997 fp
= getmark('>', FALSE
);
1998 if (check_mark(fp
) == FAIL
)
2000 ea
.line2
= fp
->lnum
;
2012 curwin
->w_cursor
.lnum
= ea
.line2
;
2014 else if (*ea
.cmd
!= ',')
2019 /* One address given: set start and end lines */
2020 if (ea
.addr_count
== 1)
2022 ea
.line1
= ea
.line2
;
2023 /* ... but only implicit: really no address given */
2024 if (lnum
== MAXLNUM
)
2028 /* Don't leave the cursor on an illegal line (caused by ';') */
2029 check_cursor_lnum();
2036 * Skip ':' and any white space
2038 ea
.cmd
= skipwhite(ea
.cmd
);
2039 while (*ea
.cmd
== ':')
2040 ea
.cmd
= skipwhite(ea
.cmd
+ 1);
2043 * If we got a line, but no command, then go to the line.
2044 * If we find a '|' or '\n' we set ea.nextcmd.
2046 if (*ea
.cmd
== NUL
|| *ea
.cmd
== '"' ||
2047 (ea
.nextcmd
= check_nextcmd(ea
.cmd
)) != NULL
)
2050 * strange vi behaviour:
2051 * ":3" jumps to line 3
2052 * ":3|..." prints line 3
2053 * ":|" prints current line
2055 if (ea
.skip
) /* skip this if inside :if */
2057 if (*ea
.cmd
== '|' || (exmode_active
&& ea
.line1
!= ea
.line2
))
2059 ea
.cmdidx
= CMD_print
;
2060 ea
.argt
= RANGE
+COUNT
+TRLBAR
;
2061 if ((errormsg
= invalid_range(&ea
)) == NULL
)
2067 else if (ea
.addr_count
!= 0)
2069 if (ea
.line2
> curbuf
->b_ml
.ml_line_count
)
2071 /* With '-' in 'cpoptions' a line number past the file is an
2072 * error, otherwise put it at the end of the file. */
2073 if (vim_strchr(p_cpo
, CPO_MINUS
) != NULL
)
2076 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2080 errormsg
= (char_u
*)_(e_invrange
);
2084 curwin
->w_cursor
.lnum
= 1;
2086 curwin
->w_cursor
.lnum
= ea
.line2
;
2087 beginline(BL_SOL
| BL_FIX
);
2093 /* Find the command and let "p" point to after it. */
2094 p
= find_command(&ea
, NULL
);
2096 #ifdef FEAT_USR_CMDS
2100 errormsg
= (char_u
*)_("E464: Ambiguous use of user-defined command");
2103 /* Check for wrong commands. */
2104 if (*p
== '!' && ea
.cmd
[1] == 0151 && ea
.cmd
[0] == 78)
2106 errormsg
= uc_fun_cmd();
2110 if (ea
.cmdidx
== CMD_SIZE
)
2114 STRCPY(IObuff
, _("E492: Not an editor command"));
2117 STRCAT(IObuff
, ": ");
2118 STRNCAT(IObuff
, *cmdlinep
, 40);
2126 #ifdef FEAT_USR_CMDS
2127 !USER_CMDIDX(ea
.cmdidx
) &&
2129 (cmdnames
[ea
.cmdidx
].cmd_func
== ex_ni
2130 #ifdef HAVE_EX_SCRIPT_NI
2131 || cmdnames
[ea
.cmdidx
].cmd_func
== ex_script_ni
2137 * When the expression evaluation is disabled, recognize the ":if" and
2138 * ":endif" commands and ignore everything in between it.
2140 if (ea
.cmdidx
== CMD_if
)
2144 if (ea
.cmdidx
== CMD_endif
)
2151 if (*p
== '!' && ea
.cmdidx
!= CMD_substitute
) /* forced commands */
2160 * 5. parse arguments
2162 #ifdef FEAT_USR_CMDS
2163 if (!USER_CMDIDX(ea
.cmdidx
))
2165 ea
.argt
= (long)cmdnames
[(int)ea
.cmdidx
].cmd_argt
;
2170 if (sandbox
!= 0 && !(ea
.argt
& SBOXOK
))
2172 /* Command not allowed in sandbox. */
2173 errormsg
= (char_u
*)_(e_sandbox
);
2177 if (!curbuf
->b_p_ma
&& (ea
.argt
& MODIFY
))
2179 /* Command not allowed in non-'modifiable' buffer */
2180 errormsg
= (char_u
*)_(e_modifiable
);
2184 if (text_locked() && !(ea
.argt
& CMDWIN
)
2185 # ifdef FEAT_USR_CMDS
2186 && !USER_CMDIDX(ea
.cmdidx
)
2190 /* Command not allowed when editing the command line. */
2192 if (cmdwin_type
!= 0)
2193 errormsg
= (char_u
*)_(e_cmdwin
);
2196 errormsg
= (char_u
*)_(e_secure
);
2200 /* Disallow editing another buffer when "curbuf_lock" is set.
2201 * Do allow ":edit" (check for argument later).
2202 * Do allow ":checktime" (it's postponed). */
2203 if (!(ea
.argt
& CMDWIN
)
2204 && ea
.cmdidx
!= CMD_edit
2205 && ea
.cmdidx
!= CMD_checktime
2206 # ifdef FEAT_USR_CMDS
2207 && !USER_CMDIDX(ea
.cmdidx
)
2213 if (!ni
&& !(ea
.argt
& RANGE
) && ea
.addr_count
> 0)
2215 /* no range allowed */
2216 errormsg
= (char_u
*)_(e_norange
);
2221 if (!ni
&& !(ea
.argt
& BANG
) && ea
.forceit
) /* no <!> allowed */
2223 errormsg
= (char_u
*)_(e_nobang
);
2228 * Don't complain about the range if it is not used
2229 * (could happen if line_count is accidentally set to 0).
2231 if (!ea
.skip
&& !ni
)
2234 * If the range is backwards, ask for confirmation and, if given, swap
2235 * ea.line1 & ea.line2 so it's forwards again.
2236 * When global command is busy, don't ask, will fail below.
2238 if (!global_busy
&& ea
.line1
> ea
.line2
)
2240 if (msg_silent
== 0)
2242 if (sourcing
|| exmode_active
)
2244 errormsg
= (char_u
*)_("E493: Backwards range given");
2247 if (ask_yesno((char_u
*)
2248 _("Backwards range given, OK to swap"), FALSE
) != 'y')
2252 ea
.line1
= ea
.line2
;
2255 if ((errormsg
= invalid_range(&ea
)) != NULL
)
2259 if ((ea
.argt
& NOTADR
) && ea
.addr_count
== 0) /* default is 1, not cursor */
2265 if (((ea
.argt
& WHOLEFOLD
) || ea
.addr_count
>= 2) && !global_busy
)
2267 /* Put the first line at the start of a closed fold, put the last line
2268 * at the end of a closed fold. */
2269 (void)hasFolding(ea
.line1
, &ea
.line1
, NULL
);
2270 (void)hasFolding(ea
.line2
, NULL
, &ea
.line2
);
2274 #ifdef FEAT_QUICKFIX
2276 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
2277 * option here, so things like % get expanded.
2279 p
= replace_makeprg(&ea
, p
, cmdlinep
);
2285 * Skip to start of argument.
2286 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2288 if (ea
.cmdidx
== CMD_bang
)
2291 ea
.arg
= skipwhite(p
);
2294 * Check for "++opt=val" argument.
2295 * Must be first, allow ":w ++enc=utf8 !cmd"
2297 if (ea
.argt
& ARGOPT
)
2298 while (ea
.arg
[0] == '+' && ea
.arg
[1] == '+')
2299 if (getargopt(&ea
) == FAIL
&& !ni
)
2301 errormsg
= (char_u
*)_(e_invarg
);
2305 if (ea
.cmdidx
== CMD_write
|| ea
.cmdidx
== CMD_update
)
2307 if (*ea
.arg
== '>') /* append */
2309 if (*++ea
.arg
!= '>') /* typed wrong */
2311 errormsg
= (char_u
*)_("E494: Use w or w>>");
2314 ea
.arg
= skipwhite(ea
.arg
+ 1);
2317 else if (*ea
.arg
== '!' && ea
.cmdidx
== CMD_write
) /* :w !filter */
2320 ea
.usefilter
= TRUE
;
2324 if (ea
.cmdidx
== CMD_read
)
2328 ea
.usefilter
= TRUE
; /* :r! filter if ea.forceit */
2331 else if (*ea
.arg
== '!') /* :r !filter */
2334 ea
.usefilter
= TRUE
;
2338 if (ea
.cmdidx
== CMD_lshift
|| ea
.cmdidx
== CMD_rshift
)
2341 while (*ea
.arg
== *ea
.cmd
) /* count number of '>' or '<' */
2346 ea
.arg
= skipwhite(ea
.arg
);
2350 * Check for "+command" argument, before checking for next command.
2351 * Don't do this for ":read !cmd" and ":write !cmd".
2353 if ((ea
.argt
& EDITCMD
) && !ea
.usefilter
)
2354 ea
.do_ecmd_cmd
= getargcmd(&ea
.arg
);
2357 * Check for '|' to separate commands and '"' to start comments.
2358 * Don't do this for ":read !cmd" and ":write !cmd".
2360 if ((ea
.argt
& TRLBAR
) && !ea
.usefilter
)
2361 separate_nextcmd(&ea
);
2364 * Check for <newline> to end a shell command.
2365 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2368 else if (ea
.cmdidx
== CMD_bang
2369 || ea
.cmdidx
== CMD_global
2370 || ea
.cmdidx
== CMD_vglobal
2373 for (p
= ea
.arg
; *p
; ++p
)
2375 /* Remove one backslash before a newline, so that it's possible to
2376 * pass a newline to the shell and also a newline that is preceded
2377 * with a backslash. This makes it impossible to end a shell
2378 * command in a backslash, but that doesn't appear useful.
2379 * Halving the number of backslashes is incompatible with previous
2381 if (*p
== '\\' && p
[1] == '\n')
2382 mch_memmove(p
, p
+ 1, STRLEN(p
));
2383 else if (*p
== '\n')
2392 if ((ea
.argt
& DFLALL
) && ea
.addr_count
== 0)
2395 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2398 /* accept numbered register only when no count allowed (:put) */
2399 if ( (ea
.argt
& REGSTR
)
2401 #ifdef FEAT_USR_CMDS
2402 && valid_yank_reg(*ea
.arg
, (ea
.cmdidx
!= CMD_put
2403 && USER_CMDIDX(ea
.cmdidx
)))
2404 /* Do not allow register = for user commands */
2405 && (!USER_CMDIDX(ea
.cmdidx
) || *ea
.arg
!= '=')
2407 && valid_yank_reg(*ea
.arg
, ea
.cmdidx
!= CMD_put
)
2409 && !((ea
.argt
& COUNT
) && VIM_ISDIGIT(*ea
.arg
)))
2411 ea
.regname
= *ea
.arg
++;
2413 /* for '=' register: accept the rest of the line as an expression */
2414 if (ea
.arg
[-1] == '=' && ea
.arg
[0] != NUL
)
2416 set_expr_line(vim_strsave(ea
.arg
));
2417 ea
.arg
+= STRLEN(ea
.arg
);
2420 ea
.arg
= skipwhite(ea
.arg
);
2424 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2425 * count, it's a buffer name.
2427 if ((ea
.argt
& COUNT
) && VIM_ISDIGIT(*ea
.arg
)
2428 && (!(ea
.argt
& BUFNAME
) || *(p
= skipdigits(ea
.arg
)) == NUL
2429 || vim_iswhite(*p
)))
2431 n
= getdigits(&ea
.arg
);
2432 ea
.arg
= skipwhite(ea
.arg
);
2433 if (n
<= 0 && !ni
&& (ea
.argt
& ZEROR
) == 0)
2435 errormsg
= (char_u
*)_(e_zerocount
);
2438 if (ea
.argt
& NOTADR
) /* e.g. :buffer 2, :sleep 3 */
2441 if (ea
.addr_count
== 0)
2446 ea
.line1
= ea
.line2
;
2450 * Be vi compatible: no error message for out of range.
2452 if (ea
.line2
> curbuf
->b_ml
.ml_line_count
)
2453 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2458 * Check for flags: 'l', 'p' and '#'.
2460 if (ea
.argt
& EXFLAGS
)
2462 /* no arguments allowed */
2463 if (!ni
&& !(ea
.argt
& EXTRA
) && *ea
.arg
!= NUL
2464 && *ea
.arg
!= '"' && (*ea
.arg
!= '|' || (ea
.argt
& TRLBAR
) == 0))
2466 errormsg
= (char_u
*)_(e_trailing
);
2470 if (!ni
&& (ea
.argt
& NEEDARG
) && *ea
.arg
== NUL
)
2472 errormsg
= (char_u
*)_(e_argreq
);
2478 * Skip the command when it's not going to be executed.
2479 * The commands like :if, :endif, etc. always need to be executed.
2480 * Also make an exception for commands that handle a trailing command
2487 /* commands that need evaluation */
2503 /* Commands that handle '|' themselves. Check: A command should
2504 * either have the TRLBAR flag, appear in this list or appear in
2505 * the list at ":help :bar". */
2508 case CMD_belowright
:
2513 case CMD_delfunction
:
2541 case CMD_rightbelow
:
2546 case CMD_substitute
:
2558 default: goto doend
;
2563 if (ea
.argt
& XFILE
)
2565 if (expand_filename(&ea
, cmdlinep
, &errormsg
) == FAIL
)
2569 #ifdef FEAT_LISTCMDS
2571 * Accept buffer name. Cannot be used at the same time with a buffer
2572 * number. Don't do this for a user command.
2574 if ((ea
.argt
& BUFNAME
) && *ea
.arg
!= NUL
&& ea
.addr_count
== 0
2575 # ifdef FEAT_USR_CMDS
2576 && !USER_CMDIDX(ea
.cmdidx
)
2581 * :bdelete, :bwipeout and :bunload take several arguments, separated
2582 * by spaces: find next space (skipping over escaped characters).
2583 * The others take one argument: ignore trailing spaces.
2585 if (ea
.cmdidx
== CMD_bdelete
|| ea
.cmdidx
== CMD_bwipeout
2586 || ea
.cmdidx
== CMD_bunload
)
2587 p
= skiptowhite_esc(ea
.arg
);
2590 p
= ea
.arg
+ STRLEN(ea
.arg
);
2591 while (p
> ea
.arg
&& vim_iswhite(p
[-1]))
2594 ea
.line2
= buflist_findpat(ea
.arg
, p
, (ea
.argt
& BUFUNL
) != 0, FALSE
);
2595 if (ea
.line2
< 0) /* failed */
2598 ea
.arg
= skipwhite(p
);
2603 * 6. switch on command name
2605 * The "ea" structure holds the arguments that can be used.
2607 ea
.cmdlinep
= cmdlinep
;
2608 ea
.getline
= fgetline
;
2614 #ifdef FEAT_USR_CMDS
2615 if (USER_CMDIDX(ea
.cmdidx
))
2618 * Execute a user-defined command.
2626 * Call the function to execute the command.
2629 (cmdnames
[ea
.cmdidx
].cmd_func
)(&ea
);
2630 if (ea
.errmsg
!= NULL
)
2631 errormsg
= (char_u
*)_(ea
.errmsg
);
2636 * If the command just executed called do_cmdline(), any throw or ":return"
2637 * or ":finish" encountered there must also check the cstack of the still
2638 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2639 * exception, or reanimate a returned function or finished script file and
2640 * return or finish it again.
2644 else if (check_cstack
)
2646 if (source_finished(fgetline
, cookie
))
2647 do_finish(&ea
, TRUE
);
2648 else if (getline_equal(fgetline
, cookie
, get_func_line
)
2649 && current_func_returned())
2650 do_return(&ea
, TRUE
, FALSE
, NULL
);
2652 need_rethrow
= check_cstack
= FALSE
;
2656 if (curwin
->w_cursor
.lnum
== 0) /* can happen with zero line number */
2657 curwin
->w_cursor
.lnum
= 1;
2659 if (errormsg
!= NULL
&& *errormsg
!= NUL
&& !did_emsg
)
2663 if (errormsg
!= IObuff
)
2665 STRCPY(IObuff
, errormsg
);
2668 STRCAT(errormsg
, ": ");
2669 STRNCAT(errormsg
, *cmdlinep
, IOSIZE
- STRLEN(IObuff
) - 1);
2675 (ea
.cmdidx
!= CMD_SIZE
2676 # ifdef FEAT_USR_CMDS
2677 && !USER_CMDIDX(ea
.cmdidx
)
2679 ) ? cmdnames
[(int)ea
.cmdidx
].cmd_name
: (char_u
*)NULL
);
2682 if (verbose_save
>= 0)
2683 p_verbose
= verbose_save
;
2685 if (cmdmod
.save_ei
!= NULL
)
2687 /* Restore 'eventignore' to the value before ":noautocmd". */
2688 set_string_option_direct((char_u
*)"ei", -1, cmdmod
.save_ei
,
2689 OPT_FREE
, SID_NONE
);
2690 free_string_option(cmdmod
.save_ei
);
2694 cmdmod
= save_cmdmod
;
2698 /* messages could be enabled for a serious error, need to check if the
2699 * counters don't become negative */
2700 msg_silent
-= did_silent
;
2703 emsg_silent
-= did_esilent
;
2704 if (emsg_silent
< 0)
2706 /* Restore msg_scroll, it's set by file I/O commands, even when no
2707 * message is actually displayed. */
2708 msg_scroll
= save_msg_scroll
;
2716 if (ea
.nextcmd
&& *ea
.nextcmd
== NUL
) /* not really a next command */
2725 #if (_MSC_VER == 1200)
2726 #pragma optimize( "", on )
2730 * Check for an Ex command with optional tail.
2731 * If there is a match advance "pp" to the argument and return TRUE.
2734 checkforcmd(pp
, cmd
, len
)
2735 char_u
**pp
; /* start of command */
2736 char *cmd
; /* name of command */
2737 int len
; /* required length */
2741 for (i
= 0; cmd
[i
] != NUL
; ++i
)
2742 if (cmd
[i
] != (*pp
)[i
])
2744 if (i
>= len
&& !isalpha((*pp
)[i
]))
2746 *pp
= skipwhite(*pp
+ i
);
2753 * Find an Ex command by its name, either built-in or user.
2754 * Start of the name can be found at eap->cmd.
2755 * Returns pointer to char after the command name.
2756 * "full" is set to TRUE if the whole command name matched.
2757 * Returns NULL for an ambiguous user command.
2761 find_command(eap
, full
)
2770 * Isolate the command and search for it in the command table.
2772 * - the 'k' command can directly be followed by any character.
2773 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2774 * but :sre[wind] is another command, as are :scrip[tnames],
2775 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
2776 * - the "d" command can directly be followed by 'l' or 'p' flag.
2781 eap
->cmdidx
= CMD_k
;
2784 else if (p
[0] == 's'
2785 && ((p
[1] == 'c' && p
[2] != 's' && p
[2] != 'r'
2786 && p
[3] != 'i' && p
[4] != 'p')
2788 || (p
[1] == 'i' && p
[2] != 'm' && p
[2] != 'l' && p
[2] != 'g')
2790 || (p
[1] == 'r' && p
[2] != 'e')))
2792 eap
->cmdidx
= CMD_substitute
;
2797 while (ASCII_ISALPHA(*p
))
2799 /* check for non-alpha command */
2800 if (p
== eap
->cmd
&& vim_strchr((char_u
*)"@*!=><&~#", *p
) != NULL
)
2802 len
= (int)(p
- eap
->cmd
);
2803 if (*eap
->cmd
== 'd' && (p
[-1] == 'l' || p
[-1] == 'p'))
2805 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2806 * :delete with the 'l' flag. Same for 'p'. */
2807 for (i
= 0; i
< len
; ++i
)
2808 if (eap
->cmd
[i
] != "delete"[i
])
2814 eap
->flags
|= EXFLAG_LIST
;
2816 eap
->flags
|= EXFLAG_PRINT
;
2820 if (ASCII_ISLOWER(*eap
->cmd
))
2821 eap
->cmdidx
= cmdidxs
[CharOrdLow(*eap
->cmd
)];
2823 eap
->cmdidx
= cmdidxs
[26];
2825 for ( ; (int)eap
->cmdidx
< (int)CMD_SIZE
;
2826 eap
->cmdidx
= (cmdidx_T
)((int)eap
->cmdidx
+ 1))
2827 if (STRNCMP(cmdnames
[(int)eap
->cmdidx
].cmd_name
, (char *)eap
->cmd
,
2832 && cmdnames
[(int)eap
->cmdidx
].cmd_name
[len
] == NUL
)
2838 #ifdef FEAT_USR_CMDS
2839 /* Look for a user defined command as a last resort */
2840 if (eap
->cmdidx
== CMD_SIZE
&& *eap
->cmd
>= 'A' && *eap
->cmd
<= 'Z')
2842 /* User defined commands may contain digits. */
2843 while (ASCII_ISALNUM(*p
))
2845 p
= find_ucmd(eap
, p
, full
, NULL
, NULL
);
2849 eap
->cmdidx
= CMD_SIZE
;
2855 #ifdef FEAT_USR_CMDS
2857 * Search for a user command that matches "eap->cmd".
2858 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2859 * Return a pointer to just after the command.
2860 * Return NULL if there is no matching command.
2863 find_ucmd(eap
, p
, full
, xp
, compl)
2865 char_u
*p
; /* end of the command (possibly including count) */
2866 int *full
; /* set to TRUE for a full match */
2867 expand_T
*xp
; /* used for completion, NULL otherwise */
2868 int *compl; /* completion flags or NULL */
2870 int len
= (int)(p
- eap
->cmd
);
2871 int j
, k
, matchlen
= 0;
2874 int possible
= FALSE
;
2875 char_u
*cp
, *np
; /* Point into typed cmd and test name */
2877 int amb_local
= FALSE
; /* Found ambiguous buffer-local command,
2878 only full match global is accepted. */
2881 * Look for buffer-local user commands first, then global ones.
2883 gap
= &curbuf
->b_ucmds
;
2886 for (j
= 0; j
< gap
->ga_len
; ++j
)
2888 uc
= USER_CMD_GA(gap
, j
);
2892 while (k
< len
&& *np
!= NUL
&& *cp
++ == *np
++)
2894 if (k
== len
|| (*np
== NUL
&& vim_isdigit(eap
->cmd
[k
])))
2896 /* If finding a second match, the command is ambiguous. But
2897 * not if a buffer-local command wasn't a full match and a
2898 * global command is a full match. */
2899 if (k
== len
&& found
&& *np
!= NUL
)
2906 if (!found
|| (k
== len
&& *np
== NUL
))
2908 /* If we matched up to a digit, then there could
2909 * be another command including the digit that we
2910 * should use instead.
2918 eap
->cmdidx
= CMD_USER
;
2920 eap
->cmdidx
= CMD_USER_BUF
;
2921 eap
->argt
= (long)uc
->uc_argt
;
2924 # ifdef FEAT_CMDL_COMPL
2926 *compl = uc
->uc_compl
;
2930 xp
->xp_arg
= uc
->uc_compl_arg
;
2931 xp
->xp_scriptID
= uc
->uc_scriptID
;
2935 /* Do not search for further abbreviations
2936 * if this is an exact match. */
2938 if (k
== len
&& *np
== NUL
)
2949 /* Stop if we found a full match or searched all. */
2950 if (j
< gap
->ga_len
|| gap
== &ucmds
)
2955 /* Only found ambiguous matches. */
2959 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
2963 /* The match we found may be followed immediately by a number. Move "p"
2964 * back to point to it. */
2965 if (found
|| possible
)
2966 return p
+ (matchlen
- len
);
2971 #if defined(FEAT_EVAL) || defined(PROTO)
2972 static struct cmdmod
2976 int has_count
; /* :123verbose :3tab */
2978 {"aboveleft", 3, FALSE
},
2979 {"belowright", 3, FALSE
},
2980 {"botright", 2, FALSE
},
2981 {"browse", 3, FALSE
},
2982 {"confirm", 4, FALSE
},
2984 {"keepalt", 5, FALSE
},
2985 {"keepjumps", 5, FALSE
},
2986 {"keepmarks", 3, FALSE
},
2987 {"leftabove", 5, FALSE
},
2988 {"lockmarks", 3, FALSE
},
2989 {"rightbelow", 6, FALSE
},
2990 {"sandbox", 3, FALSE
},
2991 {"silent", 3, FALSE
},
2993 {"topleft", 2, FALSE
},
2994 {"verbose", 4, TRUE
},
2995 {"vertical", 4, FALSE
},
2999 * Return length of a command modifier (including optional count).
3000 * Return zero when it's not a modifier.
3009 if (VIM_ISDIGIT(*cmd
))
3010 p
= skipwhite(skipdigits(cmd
));
3011 for (i
= 0; i
< sizeof(cmdmods
) / sizeof(struct cmdmod
); ++i
)
3013 for (j
= 0; p
[j
] != NUL
; ++j
)
3014 if (p
[j
] != cmdmods
[i
].name
[j
])
3016 if (!isalpha(p
[j
]) && j
>= cmdmods
[i
].minlen
3017 && (p
== cmd
|| cmdmods
[i
].has_count
))
3018 return j
+ (p
- cmd
);
3024 * Return > 0 if an Ex command "name" exists.
3025 * Return 2 if there is an exact match.
3026 * Return 3 if there is an ambiguous match.
3038 /* Check command modifiers. */
3039 for (i
= 0; i
< sizeof(cmdmods
) / sizeof(struct cmdmod
); ++i
)
3041 for (j
= 0; name
[j
] != NUL
; ++j
)
3042 if (name
[j
] != cmdmods
[i
].name
[j
])
3044 if (name
[j
] == NUL
&& j
>= cmdmods
[i
].minlen
)
3045 return (cmdmods
[i
].name
[j
] == NUL
? 2 : 1);
3048 /* Check built-in commands and user defined commands.
3049 * For ":2match" and ":3match" we need to skip the number. */
3050 ea
.cmd
= (*name
== '2' || *name
== '3') ? name
+ 1 : name
;
3051 ea
.cmdidx
= (cmdidx_T
)0;
3052 p
= find_command(&ea
, &full
);
3055 if (vim_isdigit(*name
) && ea
.cmdidx
!= CMD_match
)
3057 if (*skipwhite(p
) != NUL
)
3058 return 0; /* trailing garbage */
3059 return (ea
.cmdidx
== CMD_SIZE
? 0 : (full
? 2 : 1));
3064 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3065 * we don't need/want deleted. Maybe this could be done better if we didn't
3066 * repeat all this stuff. The only problem is that they may not stay
3067 * perfectly compatible with each other, but then the command line syntax
3068 * probably won't change that much -- webb.
3071 set_one_cmd_context(xp
, buff
)
3073 char_u
*buff
; /* buffer for command string */
3079 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3080 int compl = EXPAND_NOTHING
;
3082 #ifdef FEAT_CMDL_COMPL
3085 int forceit
= FALSE
;
3086 int usefilter
= FALSE
; /* filter instead of file name */
3089 xp
->xp_pattern
= buff
;
3090 xp
->xp_context
= EXPAND_COMMANDS
; /* Default until we get past command */
3094 * 2. skip comment lines and leading space, colons or bars
3096 for (cmd
= buff
; vim_strchr((char_u
*)" \t:|", *cmd
) != NULL
; cmd
++)
3098 xp
->xp_pattern
= cmd
;
3102 if (*cmd
== '"') /* ignore comment lines */
3104 xp
->xp_context
= EXPAND_NOTHING
;
3109 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3111 cmd
= skip_range(cmd
, &xp
->xp_context
);
3116 xp
->xp_pattern
= cmd
;
3121 xp
->xp_context
= EXPAND_NOTHING
;
3125 if (*cmd
== '|' || *cmd
== '\n')
3126 return cmd
+ 1; /* There's another command */
3129 * Isolate the command and search for it in the command table.
3131 * - the 'k' command can directly be followed by any character, but
3132 * do accept "keepmarks", "keepalt" and "keepjumps".
3133 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3135 if (*cmd
== 'k' && cmd
[1] != 'e')
3143 while (ASCII_ISALPHA(*p
) || *p
== '*') /* Allow * wild card */
3145 /* check for non-alpha command */
3146 if (p
== cmd
&& vim_strchr((char_u
*)"@*!=><&~#", *p
) != NULL
)
3148 len
= (int)(p
- cmd
);
3152 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
3155 for (ea
.cmdidx
= (cmdidx_T
)0; (int)ea
.cmdidx
< (int)CMD_SIZE
;
3156 ea
.cmdidx
= (cmdidx_T
)((int)ea
.cmdidx
+ 1))
3157 if (STRNCMP(cmdnames
[(int)ea
.cmdidx
].cmd_name
, cmd
, (size_t)len
) == 0)
3160 #ifdef FEAT_USR_CMDS
3161 if (cmd
[0] >= 'A' && cmd
[0] <= 'Z')
3163 while (ASCII_ISALNUM(*p
) || *p
== '*') /* Allow * wild card */
3165 len
= (int)(p
- cmd
);
3171 * If the cursor is touching the command, and it ends in an alpha-numeric
3172 * character, complete the command name.
3174 if (*p
== NUL
&& ASCII_ISALNUM(p
[-1]))
3177 if (ea
.cmdidx
== CMD_SIZE
)
3179 if (*cmd
== 's' && vim_strchr((char_u
*)"cgriI", cmd
[1]) != NULL
)
3181 ea
.cmdidx
= CMD_substitute
;
3184 #ifdef FEAT_USR_CMDS
3185 else if (cmd
[0] >= 'A' && cmd
[0] <= 'Z')
3188 p
= find_ucmd(&ea
, p
, NULL
, xp
,
3189 # if defined(FEAT_CMDL_COMPL)
3196 ea
.cmdidx
= CMD_SIZE
; /* ambiguous user command */
3200 if (ea
.cmdidx
== CMD_SIZE
)
3202 /* Not still touching the command and it was an illegal one */
3203 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
3207 xp
->xp_context
= EXPAND_NOTHING
; /* Default now that we're past command */
3209 if (*p
== '!') /* forced commands */
3216 * 5. parse arguments
3218 #ifdef FEAT_USR_CMDS
3219 if (!USER_CMDIDX(ea
.cmdidx
))
3221 ea
.argt
= (long)cmdnames
[(int)ea
.cmdidx
].cmd_argt
;
3225 if (ea
.cmdidx
== CMD_write
|| ea
.cmdidx
== CMD_update
)
3227 if (*arg
== '>') /* append */
3231 arg
= skipwhite(arg
);
3233 else if (*arg
== '!' && ea
.cmdidx
== CMD_write
) /* :w !filter */
3240 if (ea
.cmdidx
== CMD_read
)
3242 usefilter
= forceit
; /* :r! filter if forced */
3243 if (*arg
== '!') /* :r !filter */
3250 if (ea
.cmdidx
== CMD_lshift
|| ea
.cmdidx
== CMD_rshift
)
3252 while (*arg
== *cmd
) /* allow any number of '>' or '<' */
3254 arg
= skipwhite(arg
);
3257 /* Does command allow "+command"? */
3258 if ((ea
.argt
& EDITCMD
) && !usefilter
&& *arg
== '+')
3260 /* Check if we're in the +command */
3262 arg
= skip_cmd_arg(arg
, FALSE
);
3264 /* Still touching the command after '+'? */
3268 /* Skip space(s) after +command to get to the real argument */
3269 arg
= skipwhite(arg
);
3273 * Check for '|' to separate commands and '"' to start comments.
3274 * Don't do this for ":read !cmd" and ":write !cmd".
3276 if ((ea
.argt
& TRLBAR
) && !usefilter
)
3279 /* ":redir @" is not the start of a comment */
3280 if (ea
.cmdidx
== CMD_redir
&& p
[0] == '@' && p
[1] == '"')
3289 else if ( (*p
== '"' && !(ea
.argt
& NOTRLCOM
))
3290 || *p
== '|' || *p
== '\n')
3292 if (*(p
- 1) != '\\')
3294 if (*p
== '|' || *p
== '\n')
3296 return NULL
; /* It's a comment */
3303 /* no arguments allowed */
3304 if (!(ea
.argt
& EXTRA
) && *arg
!= NUL
&&
3305 vim_strchr((char_u
*)"|\"", *arg
) == NULL
)
3308 /* Find start of last argument (argument just before cursor): */
3309 p
= buff
+ STRLEN(buff
);
3310 while (p
!= arg
&& *p
!= ' ' && *p
!= TAB
)
3312 if (*p
== ' ' || *p
== TAB
)
3316 if (ea
.argt
& XFILE
)
3319 int in_quote
= FALSE
;
3320 char_u
*bow
= NULL
; /* Beginning of word */
3323 * Allow spaces within back-quotes to count as part of the argument
3326 xp
->xp_pattern
= skipwhite(arg
);
3336 if (c
== '\\' && p
[1] != NUL
)
3345 in_quote
= !in_quote
;
3347 /* An argument can contain just about everything, except
3348 * characters that end the command and white space. */
3349 else if (c
== '|' || c
== '\n' || c
== '"' || (vim_iswhite(c
)
3350 #ifdef SPACE_IN_FILENAME
3351 && (!(ea
.argt
& NOSPC
) || usefilter
)
3363 if (c
== '`' || vim_isfilec_or_wc(c
))
3367 len
= (*mb_ptr2len
)(p
);
3383 * If we are still inside the quotes, and we passed a space, just
3384 * expand from there.
3386 if (bow
!= NULL
&& in_quote
)
3387 xp
->xp_pattern
= bow
;
3388 xp
->xp_context
= EXPAND_FILES
;
3390 #ifndef BACKSLASH_IN_FILENAME
3391 /* For a shell command more chars need to be escaped. */
3392 if (usefilter
|| ea
.cmdidx
== CMD_bang
)
3394 xp
->xp_shell
= TRUE
;
3396 /* When still after the command name expand executables. */
3397 if (xp
->xp_pattern
== skipwhite(arg
))
3398 xp
->xp_context
= EXPAND_SHELLCMD
;
3402 /* Check for environment variable */
3403 if (*xp
->xp_pattern
== '$'
3404 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3405 || *xp
->xp_pattern
== '%'
3409 for (p
= xp
->xp_pattern
+ 1; *p
!= NUL
; ++p
)
3414 xp
->xp_context
= EXPAND_ENV_VARS
;
3416 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3417 /* Avoid that the assignment uses EXPAND_FILES again. */
3418 if (compl != EXPAND_USER_DEFINED
&& compl != EXPAND_USER_LIST
)
3419 compl = EXPAND_ENV_VARS
;
3426 * 6. switch on command name
3434 if (xp
->xp_context
== EXPAND_FILES
)
3435 xp
->xp_context
= EXPAND_DIRECTORIES
;
3438 xp
->xp_context
= EXPAND_HELP
;
3439 xp
->xp_pattern
= arg
;
3442 /* Command modifiers: return the argument.
3443 * Also for commands with an argument that is a command. */
3446 case CMD_belowright
:
3452 case CMD_folddoclosed
:
3453 case CMD_folddoopen
:
3460 case CMD_rightbelow
:
3470 #ifdef FEAT_CMDL_COMPL
3471 # ifdef FEAT_SEARCH_EXTRA
3473 if (*arg
== NUL
|| !ends_excmd(*arg
))
3475 /* also complete "None" */
3476 set_context_in_echohl_cmd(xp
, arg
);
3477 arg
= skipwhite(skiptowhite(arg
));
3480 xp
->xp_context
= EXPAND_NOTHING
;
3481 arg
= skip_regexp(arg
+ 1, *arg
, p_magic
, NULL
);
3484 return find_nextcmd(arg
);
3488 * All completion for the +cmdline_compl feature goes here.
3491 # ifdef FEAT_USR_CMDS
3493 /* Check for attributes */
3496 arg
++; /* Skip "-" */
3497 p
= skiptowhite(arg
);
3500 /* Cursor is still in the attribute */
3501 p
= vim_strchr(arg
, '=');
3504 /* No "=", so complete attribute names */
3505 xp
->xp_context
= EXPAND_USER_CMD_FLAGS
;
3506 xp
->xp_pattern
= arg
;
3510 /* For the -complete and -nargs attributes, we complete
3511 * their arguments as well.
3513 if (STRNICMP(arg
, "complete", p
- arg
) == 0)
3515 xp
->xp_context
= EXPAND_USER_COMPLETE
;
3516 xp
->xp_pattern
= p
+ 1;
3519 else if (STRNICMP(arg
, "nargs", p
- arg
) == 0)
3521 xp
->xp_context
= EXPAND_USER_NARGS
;
3522 xp
->xp_pattern
= p
+ 1;
3530 /* After the attributes comes the new command name */
3531 p
= skiptowhite(arg
);
3534 xp
->xp_context
= EXPAND_USER_COMMANDS
;
3535 xp
->xp_pattern
= arg
;
3539 /* And finally comes a normal command */
3540 return skipwhite(p
);
3542 case CMD_delcommand
:
3543 xp
->xp_context
= EXPAND_USER_COMMANDS
;
3544 xp
->xp_pattern
= arg
;
3550 delim
= *arg
; /* get the delimiter */
3552 ++arg
; /* skip delimiter if there is one */
3554 while (arg
[0] != NUL
&& arg
[0] != delim
)
3556 if (arg
[0] == '\\' && arg
[1] != NUL
)
3564 case CMD_substitute
:
3568 /* skip "from" part */
3570 arg
= skip_regexp(arg
, delim
, p_magic
, NULL
);
3572 /* skip "to" part */
3573 while (arg
[0] != NUL
&& arg
[0] != delim
)
3575 if (arg
[0] == '\\' && arg
[1] != NUL
)
3579 if (arg
[0] != NUL
) /* skip delimiter */
3581 while (arg
[0] && vim_strchr((char_u
*)"|\"#", arg
[0]) == NULL
)
3595 arg
= skipwhite(skipdigits(arg
)); /* skip count */
3596 if (*arg
== '/') /* Match regexp, not just whole words */
3598 for (++arg
; *arg
&& *arg
!= '/'; arg
++)
3599 if (*arg
== '\\' && arg
[1] != NUL
)
3603 arg
= skipwhite(arg
+ 1);
3605 /* Check for trailing illegal characters */
3606 if (*arg
&& vim_strchr((char_u
*)"|\"\n", *arg
) == NULL
)
3607 xp
->xp_context
= EXPAND_NOTHING
;
3615 return set_context_in_autocmd(xp
, arg
, FALSE
);
3618 return set_context_in_autocmd(xp
, arg
, TRUE
);
3621 set_context_in_set_cmd(xp
, arg
, 0);
3624 set_context_in_set_cmd(xp
, arg
, OPT_GLOBAL
);
3627 set_context_in_set_cmd(xp
, arg
, OPT_LOCAL
);
3640 xp
->xp_context
= EXPAND_TAGS_LISTFILES
;
3642 xp
->xp_context
= EXPAND_TAGS
;
3643 xp
->xp_pattern
= arg
;
3646 xp
->xp_context
= EXPAND_AUGROUP
;
3647 xp
->xp_pattern
= arg
;
3651 set_context_in_syntax_cmd(xp
, arg
);
3667 set_context_for_expression(xp
, arg
, ea
.cmdidx
);
3671 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3672 arg
= xp
->xp_pattern
+ 1;
3673 xp
->xp_context
= EXPAND_USER_VARS
;
3674 xp
->xp_pattern
= arg
;
3678 case CMD_delfunction
:
3679 xp
->xp_context
= EXPAND_USER_FUNC
;
3680 xp
->xp_pattern
= arg
;
3684 set_context_in_echohl_cmd(xp
, arg
);
3688 set_context_in_highlight_cmd(xp
, arg
);
3690 #ifdef FEAT_LISTCMDS
3694 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3695 arg
= xp
->xp_pattern
+ 1;
3700 xp
->xp_context
= EXPAND_BUFFERS
;
3701 xp
->xp_pattern
= arg
;
3704 #ifdef FEAT_USR_CMDS
3707 if (compl != EXPAND_NOTHING
)
3709 /* XFILE: file names are handled above */
3710 if (!(ea
.argt
& XFILE
))
3713 if (compl == EXPAND_MENUS
)
3714 return set_context_in_menu_cmd(xp
, cmd
, arg
, forceit
);
3716 if (compl == EXPAND_COMMANDS
)
3718 if (compl == EXPAND_MAPPINGS
)
3719 return set_context_in_map_cmd(xp
, (char_u
*)"map",
3720 arg
, forceit
, FALSE
, FALSE
, CMD_map
);
3721 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3722 arg
= xp
->xp_pattern
+ 1;
3723 xp
->xp_pattern
= arg
;
3725 xp
->xp_context
= compl;
3729 case CMD_map
: case CMD_noremap
:
3730 case CMD_nmap
: case CMD_nnoremap
:
3731 case CMD_vmap
: case CMD_vnoremap
:
3732 case CMD_omap
: case CMD_onoremap
:
3733 case CMD_imap
: case CMD_inoremap
:
3734 case CMD_cmap
: case CMD_cnoremap
:
3735 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3736 FALSE
, FALSE
, ea
.cmdidx
);
3743 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3744 FALSE
, TRUE
, ea
.cmdidx
);
3745 case CMD_abbreviate
: case CMD_noreabbrev
:
3746 case CMD_cabbrev
: case CMD_cnoreabbrev
:
3747 case CMD_iabbrev
: case CMD_inoreabbrev
:
3748 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3749 TRUE
, FALSE
, ea
.cmdidx
);
3750 case CMD_unabbreviate
:
3753 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3754 TRUE
, TRUE
, ea
.cmdidx
);
3756 case CMD_menu
: case CMD_noremenu
: case CMD_unmenu
:
3757 case CMD_amenu
: case CMD_anoremenu
: case CMD_aunmenu
:
3758 case CMD_nmenu
: case CMD_nnoremenu
: case CMD_nunmenu
:
3759 case CMD_vmenu
: case CMD_vnoremenu
: case CMD_vunmenu
:
3760 case CMD_omenu
: case CMD_onoremenu
: case CMD_ounmenu
:
3761 case CMD_imenu
: case CMD_inoremenu
: case CMD_iunmenu
:
3762 case CMD_cmenu
: case CMD_cnoremenu
: case CMD_cunmenu
:
3763 case CMD_tmenu
: case CMD_tunmenu
:
3764 case CMD_popup
: case CMD_tearoff
: case CMD_emenu
:
3765 #ifdef FEAT_GUI_MACVIM
3766 case CMD_macmenukey
:
3768 return set_context_in_menu_cmd(xp
, cmd
, arg
, forceit
);
3771 case CMD_colorscheme
:
3772 xp
->xp_context
= EXPAND_COLORS
;
3773 xp
->xp_pattern
= arg
;
3777 xp
->xp_context
= EXPAND_COMPILER
;
3778 xp
->xp_pattern
= arg
;
3781 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3782 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3784 if (*skiptowhite(arg
) == NUL
)
3786 xp
->xp_context
= EXPAND_LANGUAGE
;
3787 xp
->xp_pattern
= arg
;
3790 xp
->xp_context
= EXPAND_NOTHING
;
3794 #endif /* FEAT_CMDL_COMPL */
3803 * skip a range specifier of the form: addr [,addr] [;addr] ..
3805 * Backslashed delimiters after / or ? will be skipped, and commands will
3806 * not be expanded between /'s and ?'s or after "'".
3808 * Also skip white space and ":" characters.
3809 * Returns the "cmd" pointer advanced to beyond the range.
3812 skip_range(cmd
, ctx
)
3814 int *ctx
; /* pointer to xp_context or NULL */
3818 while (vim_strchr((char_u
*)" \t0123456789.$%'/?-+,;", *cmd
) != NULL
)
3822 if (*++cmd
== NUL
&& ctx
!= NULL
)
3823 *ctx
= EXPAND_NOTHING
;
3825 else if (*cmd
== '/' || *cmd
== '?')
3828 while (*cmd
!= NUL
&& *cmd
!= delim
)
3829 if (*cmd
++ == '\\' && *cmd
!= NUL
)
3831 if (*cmd
== NUL
&& ctx
!= NULL
)
3832 *ctx
= EXPAND_NOTHING
;
3838 /* Skip ":" and white space. */
3840 cmd
= skipwhite(cmd
+ 1);
3846 * get a single EX address
3848 * Set ptr to the next character after the part that was interpreted.
3849 * Set ptr to NULL when an error is encountered.
3851 * Return MAXLNUM when no Ex address was found.
3854 get_address(ptr
, skip
, to_other_file
)
3856 int skip
; /* only skip the address, don't use it */
3857 int to_other_file
; /* flag: may jump to other file */
3867 cmd
= skipwhite(*ptr
);
3873 case '.': /* '.' - Cursor position */
3875 lnum
= curwin
->w_cursor
.lnum
;
3878 case '$': /* '$' - last line */
3880 lnum
= curbuf
->b_ml
.ml_line_count
;
3883 case '\'': /* ''' - mark */
3893 /* Only accept a mark in another file when it is
3894 * used by itself: ":'M". */
3895 fp
= getmark(*cmd
, to_other_file
&& cmd
[1] == NUL
);
3897 if (fp
== (pos_T
*)-1)
3898 /* Jumped to another file. */
3899 lnum
= curwin
->w_cursor
.lnum
;
3902 if (check_mark(fp
) == FAIL
)
3913 case '?': /* '/' or '?' - search */
3915 if (skip
) /* skip "/pat/" */
3917 cmd
= skip_regexp(cmd
, c
, (int)p_magic
, NULL
);
3923 pos
= curwin
->w_cursor
; /* save curwin->w_cursor */
3925 * When '/' or '?' follows another address, start
3928 if (lnum
!= MAXLNUM
)
3929 curwin
->w_cursor
.lnum
= lnum
;
3931 * Start a forward search at the end of the line.
3932 * Start a backward search at the start of the line.
3933 * This makes sure we never match in the current
3934 * line, and can match anywhere in the
3935 * next/previous line.
3938 curwin
->w_cursor
.col
= MAXCOL
;
3940 curwin
->w_cursor
.col
= 0;
3942 if (!do_search(NULL
, c
, cmd
, 1L,
3943 SEARCH_HIS
+ SEARCH_MSG
+ SEARCH_START
,
3946 curwin
->w_cursor
= pos
;
3950 lnum
= curwin
->w_cursor
.lnum
;
3951 curwin
->w_cursor
= pos
;
3952 /* adjust command string pointer */
3953 cmd
+= searchcmdlen
;
3957 case '\\': /* "\?", "\/" or "\&", repeat search */
3961 else if (*cmd
== '?' || *cmd
== '/')
3965 EMSG(_(e_backslash
));
3973 * When search follows another address, start from
3976 if (lnum
!= MAXLNUM
)
3979 pos
.lnum
= curwin
->w_cursor
.lnum
;
3982 * Start the search just like for the above
3989 if (searchit(curwin
, curbuf
, &pos
,
3990 *cmd
== '?' ? BACKWARD
: FORWARD
,
3992 SEARCH_MSG
+ SEARCH_START
,
3993 i
, (linenr_T
)0, NULL
) != FAIL
)
4005 if (VIM_ISDIGIT(*cmd
)) /* absolute line number */
4006 lnum
= getdigits(&cmd
);
4011 cmd
= skipwhite(cmd
);
4012 if (*cmd
!= '-' && *cmd
!= '+' && !VIM_ISDIGIT(*cmd
))
4015 if (lnum
== MAXLNUM
)
4016 lnum
= curwin
->w_cursor
.lnum
; /* "+1" is same as ".+1" */
4017 if (VIM_ISDIGIT(*cmd
))
4018 i
= '+'; /* "number" is same as "+number" */
4021 if (!VIM_ISDIGIT(*cmd
)) /* '+' is '+1', but '+0' is not '+1' */
4024 n
= getdigits(&cmd
);
4030 } while (*cmd
== '/' || *cmd
== '?');
4038 * Get flags from an Ex command argument.
4044 while (vim_strchr((char_u
*)"lp#", *eap
->arg
) != NULL
)
4046 if (*eap
->arg
== 'l')
4047 eap
->flags
|= EXFLAG_LIST
;
4048 else if (*eap
->arg
== 'p')
4049 eap
->flags
|= EXFLAG_PRINT
;
4051 eap
->flags
|= EXFLAG_NR
;
4052 eap
->arg
= skipwhite(eap
->arg
+ 1);
4057 * Function called for command which is Not Implemented. NI!
4064 eap
->errmsg
= (char_u
*)N_("E319: Sorry, the command is not available in this version");
4067 #ifdef HAVE_EX_SCRIPT_NI
4069 * Function called for script command which is Not Implemented. NI!
4070 * Skips over ":perl <<EOF" constructs.
4079 vim_free(script_get(eap
, eap
->arg
));
4084 * Check range in Ex command for validity.
4085 * Return NULL when valid, error message when invalid.
4093 || eap
->line1
> eap
->line2
4094 || ((eap
->argt
& RANGE
)
4095 && !(eap
->argt
& NOTADR
)
4096 && eap
->line2
> curbuf
->b_ml
.ml_line_count
4098 + (eap
->cmdidx
== CMD_diffget
)
4101 return (char_u
*)_(e_invrange
);
4106 * Correct the range for zero line number, if required.
4112 if (!(eap
->argt
& ZEROR
)) /* zero in range not allowed */
4114 if (eap
->line1
== 0)
4116 if (eap
->line2
== 0)
4121 #ifdef FEAT_QUICKFIX
4122 static char_u
*skip_grep_pat
__ARGS((exarg_T
*eap
));
4125 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4126 * pattern. Otherwise return eap->arg.
4132 char_u
*p
= eap
->arg
;
4134 if (*p
!= NUL
&& (eap
->cmdidx
== CMD_vimgrep
|| eap
->cmdidx
== CMD_lvimgrep
4135 || eap
->cmdidx
== CMD_vimgrepadd
4136 || eap
->cmdidx
== CMD_lvimgrepadd
4137 || grep_internal(eap
->cmdidx
)))
4139 p
= skip_vimgrep_pat(p
, NULL
, NULL
);
4147 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4148 * in the command line, so that things like % get expanded.
4151 replace_makeprg(eap
, p
, cmdlinep
)
4156 char_u
*new_cmdline
;
4164 * Don't do it when ":vimgrep" is used for ":grep".
4166 if ((eap
->cmdidx
== CMD_make
|| eap
->cmdidx
== CMD_lmake
4167 || eap
->cmdidx
== CMD_grep
|| eap
->cmdidx
== CMD_lgrep
4168 || eap
->cmdidx
== CMD_grepadd
4169 || eap
->cmdidx
== CMD_lgrepadd
)
4170 && !grep_internal(eap
->cmdidx
))
4172 if (eap
->cmdidx
== CMD_grep
|| eap
->cmdidx
== CMD_lgrep
4173 || eap
->cmdidx
== CMD_grepadd
|| eap
->cmdidx
== CMD_lgrepadd
)
4175 if (*curbuf
->b_p_gp
== NUL
)
4178 program
= curbuf
->b_p_gp
;
4182 if (*curbuf
->b_p_mp
== NUL
)
4185 program
= curbuf
->b_p_mp
;
4190 if ((pos
= (char_u
*)strstr((char *)program
, "$*")) != NULL
)
4192 /* replace $* by given arguments */
4194 while ((pos
= (char_u
*)strstr((char *)pos
+ 2, "$*")) != NULL
)
4196 len
= (int)STRLEN(p
);
4197 new_cmdline
= alloc((int)(STRLEN(program
) + i
* (len
- 2) + 1));
4198 if (new_cmdline
== NULL
)
4199 return NULL
; /* out of memory */
4201 while ((pos
= (char_u
*)strstr((char *)program
, "$*")) != NULL
)
4203 i
= (int)(pos
- program
);
4204 STRNCPY(ptr
, program
, i
);
4205 STRCPY(ptr
+= i
, p
);
4209 STRCPY(ptr
, program
);
4213 new_cmdline
= alloc((int)(STRLEN(program
) + STRLEN(p
) + 2));
4214 if (new_cmdline
== NULL
)
4215 return NULL
; /* out of memory */
4216 STRCPY(new_cmdline
, program
);
4217 STRCAT(new_cmdline
, " ");
4218 STRCAT(new_cmdline
, p
);
4222 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4223 vim_free(*cmdlinep
);
4224 *cmdlinep
= new_cmdline
;
4232 * Expand file name in Ex command argument.
4233 * Return FAIL for failure, OK otherwise.
4236 expand_filename(eap
, cmdlinep
, errormsgp
)
4241 int has_wildcards
; /* need to expand wildcards */
4248 #ifdef FEAT_QUICKFIX
4249 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4250 p
= skip_grep_pat(eap
);
4256 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4257 * the file name contains a wildcard it should not cause expanding.
4258 * (it will be expanded anyway if there is a wildcard before replacing).
4260 has_wildcards
= mch_has_wildcard(p
);
4264 /* Skip over `=expr`, wildcards in it are not expanded. */
4265 if (p
[0] == '`' && p
[1] == '=')
4268 (void)skip_expr(&p
);
4275 * Quick check if this cannot be the start of a special string.
4276 * Also removes backslash before '%', '#' and '<'.
4278 if (vim_strchr((char_u
*)"%#<", *p
) == NULL
)
4285 * Try to find a match at this position.
4287 repl
= eval_vars(p
, eap
->arg
, &srclen
, &(eap
->do_ecmd_lnum
),
4288 errormsgp
, &escaped
);
4289 if (*errormsgp
!= NULL
) /* error detected */
4291 if (repl
== NULL
) /* no match found */
4297 /* Wildcards won't be expanded below, the replacement is taken
4298 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4299 if (vim_strchr(repl
, '$') != NULL
|| vim_strchr(repl
, '~') != NULL
)
4303 repl
= expand_env_save(repl
);
4307 /* Need to escape white space et al. with a backslash.
4308 * Don't do this for:
4309 * - replacement that already has been escaped: "##"
4310 * - shell commands (may have to use quotes instead).
4311 * - non-unix systems when there is a single argument (spaces don't
4312 * separate arguments then).
4316 && eap
->cmdidx
!= CMD_bang
4317 && eap
->cmdidx
!= CMD_make
4318 && eap
->cmdidx
!= CMD_lmake
4319 && eap
->cmdidx
!= CMD_grep
4320 && eap
->cmdidx
!= CMD_lgrep
4321 && eap
->cmdidx
!= CMD_grepadd
4322 && eap
->cmdidx
!= CMD_lgrepadd
4324 && !(eap
->argt
& NOSPC
)
4329 #ifdef BACKSLASH_IN_FILENAME
4330 /* Don't escape a backslash here, because rem_backslash() doesn't
4331 * remove it later. */
4332 static char_u
*nobslash
= (char_u
*)" \t\"|";
4333 # define ESCAPE_CHARS nobslash
4335 # define ESCAPE_CHARS escape_chars
4338 for (l
= repl
; *l
; ++l
)
4339 if (vim_strchr(ESCAPE_CHARS
, *l
) != NULL
)
4341 l
= vim_strsave_escaped(repl
, ESCAPE_CHARS
);
4351 /* For a shell command a '!' must be escaped. */
4352 if ((eap
->usefilter
|| eap
->cmdidx
== CMD_bang
)
4353 && vim_strpbrk(repl
, (char_u
*)"!&;()<>") != NULL
)
4357 l
= vim_strsave_escaped(repl
, (char_u
*)"!&;()<>");
4362 /* For a sh-like shell escape "!" another time. */
4363 if (strstr((char *)p_sh
, "sh") != NULL
)
4365 l
= vim_strsave_escaped(repl
, (char_u
*)"!");
4375 p
= repl_cmdline(eap
, p
, srclen
, repl
, cmdlinep
);
4382 * One file argument: Expand wildcards.
4383 * Don't do this with ":r !command" or ":w !command".
4385 if ((eap
->argt
& NOSPC
) && !eap
->usefilter
)
4388 * May do this twice:
4389 * 1. Replace environment variables.
4390 * 2. Replace any other wildcards, remove backslashes.
4392 for (n
= 1; n
<= 2; ++n
)
4398 * Only for Unix we check for more than one file name.
4399 * For other systems spaces are considered to be part
4401 * Only check here if there is no wildcard, otherwise
4402 * ExpandOne() will check for errors. This allows
4403 * ":e `ls ve*.c`" on Unix.
4406 for (p
= eap
->arg
; *p
; ++p
)
4408 /* skip escaped characters */
4409 if (p
[1] && (*p
== '\\' || *p
== Ctrl_V
))
4411 else if (vim_iswhite(*p
))
4413 *errormsgp
= (char_u
*)_("E172: Only one file name allowed");
4420 * Halve the number of backslashes (this is Vi compatible).
4421 * For Unix and OS/2, when wildcards are expanded, this is
4422 * done by ExpandOne() below.
4424 #if defined(UNIX) || defined(OS2)
4427 backslash_halve(eap
->arg
);
4435 * First loop: May expand environment variables. This
4436 * can be done much faster with expand_env() than with
4437 * something else (e.g., calling a shell).
4438 * After expanding environment variables, check again
4439 * if there are still wildcards present.
4441 if (vim_strchr(eap
->arg
, '$') != NULL
4442 || vim_strchr(eap
->arg
, '~') != NULL
)
4444 expand_env_esc(eap
->arg
, NameBuff
, MAXPATHL
,
4446 has_wildcards
= mch_has_wildcard(NameBuff
);
4457 xpc
.xp_context
= EXPAND_FILES
;
4458 p
= ExpandOne(&xpc
, eap
->arg
, NULL
,
4459 WILD_LIST_NOTFOUND
|WILD_ADD_SLASH
,
4466 (void)repl_cmdline(eap
, eap
->arg
, (int)STRLEN(eap
->arg
),
4468 if (n
== 2) /* p came from ExpandOne() */
4478 * Replace part of the command line, keeping eap->cmd, eap->arg and
4479 * eap->nextcmd correct.
4480 * "src" points to the part that is to be replaced, of length "srclen".
4481 * "repl" is the replacement string.
4482 * Returns a pointer to the character after the replaced string.
4483 * Returns NULL for failure.
4486 repl_cmdline(eap
, src
, srclen
, repl
, cmdlinep
)
4495 char_u
*new_cmdline
;
4498 * The new command line is build in new_cmdline[].
4499 * First allocate it.
4500 * Careful: a "+cmd" argument may have been NUL terminated.
4502 len
= (int)STRLEN(repl
);
4503 i
= (int)(src
- *cmdlinep
) + (int)STRLEN(src
+ srclen
) + len
+ 3;
4504 if (eap
->nextcmd
!= NULL
)
4505 i
+= (int)STRLEN(eap
->nextcmd
);/* add space for next command */
4506 if ((new_cmdline
= alloc((unsigned)i
)) == NULL
)
4507 return NULL
; /* out of memory! */
4510 * Copy the stuff before the expanded part.
4511 * Copy the expanded stuff.
4512 * Copy what came after the expanded part.
4513 * Copy the next commands, if there are any.
4515 i
= (int)(src
- *cmdlinep
); /* length of part before match */
4516 mch_memmove(new_cmdline
, *cmdlinep
, (size_t)i
);
4518 mch_memmove(new_cmdline
+ i
, repl
, (size_t)len
);
4519 i
+= len
; /* remember the end of the string */
4520 STRCPY(new_cmdline
+ i
, src
+ srclen
);
4521 src
= new_cmdline
+ i
; /* remember where to continue */
4523 if (eap
->nextcmd
!= NULL
) /* append next command */
4525 i
= (int)STRLEN(new_cmdline
) + 1;
4526 STRCPY(new_cmdline
+ i
, eap
->nextcmd
);
4527 eap
->nextcmd
= new_cmdline
+ i
;
4529 eap
->cmd
= new_cmdline
+ (eap
->cmd
- *cmdlinep
);
4530 eap
->arg
= new_cmdline
+ (eap
->arg
- *cmdlinep
);
4531 if (eap
->do_ecmd_cmd
!= NULL
&& eap
->do_ecmd_cmd
!= dollar_command
)
4532 eap
->do_ecmd_cmd
= new_cmdline
+ (eap
->do_ecmd_cmd
- *cmdlinep
);
4533 vim_free(*cmdlinep
);
4534 *cmdlinep
= new_cmdline
;
4540 * Check for '|' to separate commands and '"' to start comments.
4543 separate_nextcmd(eap
)
4548 #ifdef FEAT_QUICKFIX
4549 p
= skip_grep_pat(eap
);
4554 for ( ; *p
; mb_ptr_adv(p
))
4558 if (eap
->argt
& (USECTRLV
| XFILE
))
4559 ++p
; /* skip CTRL-V and next char */
4561 /* remove CTRL-V and skip next char */
4562 mch_memmove(p
, p
+ 1, STRLEN(p
));
4563 if (*p
== NUL
) /* stop at NUL after CTRL-V */
4568 /* Skip over `=expr` when wildcards are expanded. */
4569 else if (p
[0] == '`' && p
[1] == '=' && (eap
->argt
& XFILE
))
4572 (void)skip_expr(&p
);
4576 /* Check for '"': start of comment or '|': next command */
4577 /* :@" and :*" do not start a comment!
4578 * :redir @" doesn't either. */
4579 else if ((*p
== '"' && !(eap
->argt
& NOTRLCOM
)
4580 && ((eap
->cmdidx
!= CMD_at
&& eap
->cmdidx
!= CMD_star
)
4582 && (eap
->cmdidx
!= CMD_redir
4583 || p
!= eap
->arg
+ 1 || p
[-1] != '@'))
4584 || *p
== '|' || *p
== '\n')
4587 * We remove the '\' before the '|', unless USECTRLV is used
4588 * AND 'b' is present in 'cpoptions'.
4590 if ((vim_strchr(p_cpo
, CPO_BAR
) == NULL
4591 || !(eap
->argt
& USECTRLV
)) && *(p
- 1) == '\\')
4593 mch_memmove(p
- 1, p
, STRLEN(p
) + 1); /* remove the '\' */
4598 eap
->nextcmd
= check_nextcmd(p
);
4605 if (!(eap
->argt
& NOTRLCOM
)) /* remove trailing spaces */
4606 del_trailing_spaces(eap
->arg
);
4610 * get + command from ex argument
4616 char_u
*arg
= *argp
;
4617 char_u
*command
= NULL
;
4619 if (*arg
== '+') /* +[command] */
4622 if (vim_isspace(*arg
))
4623 command
= dollar_command
;
4627 arg
= skip_cmd_arg(command
, TRUE
);
4629 *arg
++ = NUL
; /* terminate command with NUL */
4632 arg
= skipwhite(arg
); /* skip over spaces */
4639 * Find end of "+command" argument. Skip over "\ " and "\\".
4642 skip_cmd_arg(p
, rembs
)
4644 int rembs
; /* TRUE to halve the number of backslashes */
4646 while (*p
&& !vim_isspace(*p
))
4648 if (*p
== '\\' && p
[1] != NUL
)
4651 mch_memmove(p
, p
+ 1, STRLEN(p
));
4661 * Get "++opt=arg" argument.
4662 * Return FAIL or OK.
4668 char_u
*arg
= eap
->arg
+ 2;
4674 /* ":edit ++[no]bin[ary] file" */
4675 if (STRNCMP(arg
, "bin", 3) == 0 || STRNCMP(arg
, "nobin", 5) == 0)
4680 eap
->force_bin
= FORCE_NOBIN
;
4683 eap
->force_bin
= FORCE_BIN
;
4684 if (!checkforcmd(&arg
, "binary", 3))
4686 eap
->arg
= skipwhite(arg
);
4690 /* ":read ++edit file" */
4691 if (STRNCMP(arg
, "edit", 4) == 0)
4693 eap
->read_edit
= TRUE
;
4694 eap
->arg
= skipwhite(arg
+ 4);
4698 if (STRNCMP(arg
, "ff", 2) == 0)
4701 pp
= &eap
->force_ff
;
4703 else if (STRNCMP(arg
, "fileformat", 10) == 0)
4706 pp
= &eap
->force_ff
;
4709 else if (STRNCMP(arg
, "enc", 3) == 0)
4712 pp
= &eap
->force_enc
;
4714 else if (STRNCMP(arg
, "encoding", 8) == 0)
4717 pp
= &eap
->force_enc
;
4719 else if (STRNCMP(arg
, "bad", 3) == 0)
4722 pp
= &eap
->bad_char
;
4726 if (pp
== NULL
|| *arg
!= '=')
4730 *pp
= (int)(arg
- eap
->cmd
);
4731 arg
= skip_cmd_arg(arg
, FALSE
);
4732 eap
->arg
= skipwhite(arg
);
4736 if (pp
== &eap
->force_ff
)
4739 if (check_ff_value(eap
->cmd
+ eap
->force_ff
) == FAIL
)
4743 else if (pp
== &eap
->force_enc
)
4745 /* Make 'fileencoding' lower case. */
4746 for (p
= eap
->cmd
+ eap
->force_enc
; *p
!= NUL
; ++p
)
4747 *p
= TOLOWER_ASC(*p
);
4751 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4753 p
= eap
->cmd
+ eap
->bad_char
;
4754 if (STRICMP(p
, "keep") == 0)
4755 eap
->bad_char
= BAD_KEEP
;
4756 else if (STRICMP(p
, "drop") == 0)
4757 eap
->bad_char
= BAD_DROP
;
4758 else if (MB_BYTE2LEN(*p
) == 1 && p
[1] == NUL
)
4769 * ":abbreviate" and friends.
4775 do_exmap(eap
, TRUE
); /* almost the same as mapping */
4779 * ":map" and friends.
4786 * If we are sourcing .exrc or .vimrc in current directory we
4787 * print the mappings for security reasons.
4792 msg_outtrans(eap
->cmd
);
4795 do_exmap(eap
, FALSE
);
4799 * ":unmap" and friends.
4805 do_exmap(eap
, FALSE
);
4809 * ":mapclear" and friends.
4815 map_clear(eap
->cmd
, eap
->arg
, eap
->forceit
, FALSE
);
4819 * ":abclear" and friends.
4825 map_clear(eap
->cmd
, eap
->arg
, TRUE
, TRUE
);
4834 * Disallow auto commands from .exrc and .vimrc in current
4835 * directory for security reasons.
4840 eap
->errmsg
= e_curdir
;
4842 else if (eap
->cmdidx
== CMD_autocmd
)
4843 do_autocmd(eap
->arg
, eap
->forceit
);
4845 do_augroup(eap
->arg
, eap
->forceit
);
4849 * ":doautocmd": Apply the automatic commands to the current buffer.
4855 (void)do_doautocmd(eap
->arg
, TRUE
);
4860 #ifdef FEAT_LISTCMDS
4862 * :[N]bunload[!] [N] [bufname] unload buffer
4863 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4864 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4870 eap
->errmsg
= do_bufdel(
4871 eap
->cmdidx
== CMD_bdelete
? DOBUF_DEL
4872 : eap
->cmdidx
== CMD_bwipeout
? DOBUF_WIPE
4873 : DOBUF_UNLOAD
, eap
->arg
,
4874 eap
->addr_count
, (int)eap
->line1
, (int)eap
->line2
, eap
->forceit
);
4878 * :[N]buffer [N] to buffer N
4879 * :[N]sbuffer [N] to buffer N
4886 eap
->errmsg
= e_trailing
;
4889 if (eap
->addr_count
== 0) /* default is current buffer */
4890 goto_buffer(eap
, DOBUF_CURRENT
, FORWARD
, 0);
4892 goto_buffer(eap
, DOBUF_FIRST
, FORWARD
, (int)eap
->line2
);
4897 * :[N]bmodified [N] to next mod. buffer
4898 * :[N]sbmodified [N] to next mod. buffer
4904 goto_buffer(eap
, DOBUF_MOD
, FORWARD
, (int)eap
->line2
);
4908 * :[N]bnext [N] to next buffer
4909 * :[N]sbnext [N] split and to next buffer
4915 goto_buffer(eap
, DOBUF_CURRENT
, FORWARD
, (int)eap
->line2
);
4919 * :[N]bNext [N] to previous buffer
4920 * :[N]bprevious [N] to previous buffer
4921 * :[N]sbNext [N] split and to previous buffer
4922 * :[N]sbprevious [N] split and to previous buffer
4928 goto_buffer(eap
, DOBUF_CURRENT
, BACKWARD
, (int)eap
->line2
);
4932 * :brewind to first buffer
4933 * :bfirst to first buffer
4934 * :sbrewind split and to first buffer
4935 * :sbfirst split and to first buffer
4941 goto_buffer(eap
, DOBUF_FIRST
, FORWARD
, 0);
4945 * :blast to last buffer
4946 * :sblast split and to last buffer
4952 goto_buffer(eap
, DOBUF_LAST
, BACKWARD
, 0);
4960 return (c
== NUL
|| c
== '|' || c
== '"' || c
== '\n');
4963 #if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4966 * Return the next command, after the first '|' or '\n'.
4967 * Return NULL if not found.
4973 while (*p
!= '|' && *p
!= '\n')
4984 * Check if *p is a separator between Ex commands.
4985 * Return NULL if it isn't, (p + 1) if it is.
4992 if (*p
== '|' || *p
== '\n')
4999 * - if there are more files to edit
5000 * - and this is the last window
5001 * - and forceit not used
5002 * - and not repeated twice on a row
5003 * return FAIL and give error message if 'message' TRUE
5004 * return OK otherwise
5007 check_more(message
, forceit
)
5008 int message
; /* when FALSE check only, no messages */
5011 int n
= ARGCOUNT
- curwin
->w_arg_idx
- 1;
5013 if (!forceit
&& only_one_window()
5014 && ARGCOUNT
> 1 && !arg_had_last
&& n
>= 0 && quitmore
== 0)
5018 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5019 if ((p_confirm
|| cmdmod
.confirm
) && curbuf
->b_fname
!= NULL
)
5021 char_u buff
[IOSIZE
];
5024 STRCPY(buff
, _("1 more file to edit. Quit anyway?"));
5026 vim_snprintf((char *)buff
, IOSIZE
,
5027 _("%d more files to edit. Quit anyway?"), n
);
5028 if (vim_dialog_yesno(VIM_QUESTION
, NULL
, buff
, 1) == VIM_YES
)
5034 EMSG(_("E173: 1 more file to edit"));
5036 EMSGN(_("E173: %ld more files to edit"), n
);
5037 quitmore
= 2; /* next try to quit is allowed */
5044 #ifdef FEAT_CMDL_COMPL
5046 * Function given to ExpandGeneric() to obtain the list of command names.
5050 get_command_name(xp
, idx
)
5054 if (idx
>= (int)CMD_SIZE
)
5055 # ifdef FEAT_USR_CMDS
5056 return get_user_command_name(idx
);
5060 return cmdnames
[idx
].cmd_name
;
5064 #if defined(FEAT_USR_CMDS) || defined(PROTO)
5065 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
));
5066 static void uc_list
__ARGS((char_u
*name
, size_t name_len
));
5067 static int uc_scan_attr
__ARGS((char_u
*attr
, size_t len
, long *argt
, long *def
, int *flags
, int *compl, char_u
**compl_arg
));
5068 static char_u
*uc_split_args
__ARGS((char_u
*arg
, size_t *lenp
));
5069 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
));
5072 uc_add_command(name
, name_len
, rep
, argt
, def
, flags
, compl, compl_arg
, force
)
5087 char_u
*rep_buf
= NULL
;
5090 replace_termcodes(rep
, &rep_buf
, FALSE
, FALSE
, FALSE
);
5091 if (rep_buf
== NULL
)
5093 /* Can't replace termcodes - try using the string as is */
5094 rep_buf
= vim_strsave(rep
);
5096 /* Give up if out of memory */
5097 if (rep_buf
== NULL
)
5101 /* get address of growarray: global or in curbuf */
5102 if (flags
& UC_BUFFER
)
5104 gap
= &curbuf
->b_ucmds
;
5105 if (gap
->ga_itemsize
== 0)
5106 ga_init2(gap
, (int)sizeof(ucmd_T
), 4);
5111 /* Search for the command in the already defined commands. */
5112 for (i
= 0; i
< gap
->ga_len
; ++i
)
5116 cmd
= USER_CMD_GA(gap
, i
);
5117 len
= STRLEN(cmd
->uc_name
);
5118 cmp
= STRNCMP(name
, cmd
->uc_name
, name_len
);
5123 else if (name_len
> len
)
5131 EMSG(_("E174: Command already exists: add ! to replace it"));
5135 vim_free(cmd
->uc_rep
);
5140 /* Stop as soon as we pass the name to add */
5145 /* Extend the array unless we're replacing an existing command */
5148 if (ga_grow(gap
, 1) != OK
)
5150 if ((p
= vim_strnsave(name
, (int)name_len
)) == NULL
)
5153 cmd
= USER_CMD_GA(gap
, i
);
5154 mch_memmove(cmd
+ 1, cmd
, (gap
->ga_len
- i
) * sizeof(ucmd_T
));
5161 cmd
->uc_rep
= rep_buf
;
5162 cmd
->uc_argt
= argt
;
5164 cmd
->uc_compl
= compl;
5166 cmd
->uc_scriptID
= current_SID
;
5167 # ifdef FEAT_CMDL_COMPL
5168 cmd
->uc_compl_arg
= compl_arg
;
5176 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5177 vim_free(compl_arg
);
5183 * List of names for completion for ":command" with the EXPAND_ flag.
5184 * Must be alphabetical for completion.
5190 } command_complete
[] =
5192 {EXPAND_AUGROUP
, "augroup"},
5193 {EXPAND_BUFFERS
, "buffer"},
5194 {EXPAND_COMMANDS
, "command"},
5195 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5196 {EXPAND_USER_DEFINED
, "custom"},
5197 {EXPAND_USER_LIST
, "customlist"},
5199 {EXPAND_DIRECTORIES
, "dir"},
5200 {EXPAND_ENV_VARS
, "environment"},
5201 {EXPAND_EVENTS
, "event"},
5202 {EXPAND_EXPRESSION
, "expression"},
5203 {EXPAND_FILES
, "file"},
5204 {EXPAND_FUNCTIONS
, "function"},
5205 {EXPAND_HELP
, "help"},
5206 {EXPAND_HIGHLIGHT
, "highlight"},
5207 {EXPAND_MAPPINGS
, "mapping"},
5208 {EXPAND_MENUS
, "menu"},
5209 {EXPAND_SETTINGS
, "option"},
5210 {EXPAND_SHELLCMD
, "shellcmd"},
5211 {EXPAND_TAGS
, "tag"},
5212 {EXPAND_TAGS_LISTFILES
, "tag_listfiles"},
5213 {EXPAND_USER_VARS
, "var"},
5218 uc_list(name
, name_len
)
5229 gap
= &curbuf
->b_ucmds
;
5232 for (i
= 0; i
< gap
->ga_len
; ++i
)
5234 cmd
= USER_CMD_GA(gap
, i
);
5235 a
= (long)cmd
->uc_argt
;
5237 /* Skip commands which don't match the requested prefix */
5238 if (STRNCMP(name
, cmd
->uc_name
, name_len
) != 0)
5241 /* Put out the title first time */
5243 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5250 msg_putchar(a
& BANG
? '!' : ' ');
5251 msg_putchar(a
& REGSTR
? '"' : ' ');
5252 msg_putchar(gap
!= &ucmds
? 'b' : ' ');
5255 msg_outtrans_attr(cmd
->uc_name
, hl_attr(HLF_D
));
5256 len
= (int)STRLEN(cmd
->uc_name
) + 4;
5266 switch ((int)(a
& (EXTRA
|NOSPC
|NEEDARG
)))
5268 case 0: IObuff
[len
++] = '0'; break;
5269 case (EXTRA
): IObuff
[len
++] = '*'; break;
5270 case (EXTRA
|NOSPC
): IObuff
[len
++] = '?'; break;
5271 case (EXTRA
|NEEDARG
): IObuff
[len
++] = '+'; break;
5272 case (EXTRA
|NOSPC
|NEEDARG
): IObuff
[len
++] = '1'; break;
5276 IObuff
[len
++] = ' ';
5280 if (a
& (RANGE
|COUNT
))
5285 sprintf((char *)IObuff
+ len
, "%ldc", cmd
->uc_def
);
5286 len
+= (int)STRLEN(IObuff
+ len
);
5288 else if (a
& DFLALL
)
5289 IObuff
[len
++] = '%';
5290 else if (cmd
->uc_def
>= 0)
5293 sprintf((char *)IObuff
+ len
, "%ld", cmd
->uc_def
);
5294 len
+= (int)STRLEN(IObuff
+ len
);
5297 IObuff
[len
++] = '.';
5301 IObuff
[len
++] = ' ';
5305 for (j
= 0; command_complete
[j
].expand
!= 0; ++j
)
5306 if (command_complete
[j
].expand
== cmd
->uc_compl
)
5308 STRCPY(IObuff
+ len
, command_complete
[j
].name
);
5309 len
+= (int)STRLEN(IObuff
+ len
);
5314 IObuff
[len
++] = ' ';
5318 msg_outtrans(IObuff
);
5320 msg_outtrans_special(cmd
->uc_rep
, FALSE
);
5323 last_set_msg(cmd
->uc_scriptID
);
5330 if (gap
== &ucmds
|| i
< gap
->ga_len
)
5336 MSG(_("No user-defined commands found"));
5342 static char_u fcmd
[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5343 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5344 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5348 for (i
= 0; fcmd
[i
]; ++i
)
5349 IObuff
[i
] = fcmd
[i
] - 0x40;
5355 uc_scan_attr(attr
, len
, argt
, def
, flags
, compl, compl_arg
)
5368 EMSG(_("E175: No attribute specified"));
5372 /* First, try the simple attributes (no arguments) */
5373 if (STRNICMP(attr
, "bang", len
) == 0)
5375 else if (STRNICMP(attr
, "buffer", len
) == 0)
5376 *flags
|= UC_BUFFER
;
5377 else if (STRNICMP(attr
, "register", len
) == 0)
5379 else if (STRNICMP(attr
, "bar", len
) == 0)
5386 size_t attrlen
= len
;
5388 /* Look for the attribute name - which is the part before any '=' */
5389 for (i
= 0; i
< (int)len
; ++i
)
5394 vallen
= len
- i
- 1;
5400 if (STRNICMP(attr
, "nargs", attrlen
) == 0)
5405 /* Do nothing - this is the default */;
5406 else if (*val
== '1')
5407 *argt
|= (EXTRA
| NOSPC
| NEEDARG
);
5408 else if (*val
== '*')
5410 else if (*val
== '?')
5411 *argt
|= (EXTRA
| NOSPC
);
5412 else if (*val
== '+')
5413 *argt
|= (EXTRA
| NEEDARG
);
5420 EMSG(_("E176: Invalid number of arguments"));
5424 else if (STRNICMP(attr
, "range", attrlen
) == 0)
5427 if (vallen
== 1 && *val
== '%')
5429 else if (val
!= NULL
)
5435 EMSG(_("E177: Count cannot be specified twice"));
5439 *def
= getdigits(&p
);
5440 *argt
|= (ZEROR
| NOTADR
);
5442 if (p
!= val
+ vallen
|| vallen
== 0)
5445 EMSG(_("E178: Invalid default value for count"));
5450 else if (STRNICMP(attr
, "count", attrlen
) == 0)
5452 *argt
|= (COUNT
| ZEROR
| RANGE
| NOTADR
);
5460 *def
= getdigits(&p
);
5462 if (p
!= val
+ vallen
)
5469 else if (STRNICMP(attr
, "complete", attrlen
) == 0)
5473 EMSG(_("E179: argument required for -complete"));
5477 if (parse_compl_arg(val
, (int)vallen
, compl, argt
, compl_arg
)
5483 char_u ch
= attr
[len
];
5485 EMSG2(_("E181: Invalid attribute: %s"), attr
);
5504 int compl = EXPAND_NOTHING
;
5505 char_u
*compl_arg
= NULL
;
5506 int has_attr
= (eap
->arg
[0] == '-');
5510 /* Check for attributes */
5514 end
= skiptowhite(p
);
5515 if (uc_scan_attr(p
, end
- p
, &argt
, &def
, &flags
, &compl, &compl_arg
)
5521 /* Get the name (if any) and skip to the following argument */
5523 if (ASCII_ISALPHA(*p
))
5524 while (ASCII_ISALNUM(*p
))
5526 if (!ends_excmd(*p
) && !vim_iswhite(*p
))
5528 EMSG(_("E182: Invalid command name"));
5533 /* If there is nothing after the name, and no attributes were specified,
5534 * we are listing commands
5537 if (!has_attr
&& ends_excmd(*p
))
5539 uc_list(name
, end
- name
);
5541 else if (!ASCII_ISUPPER(*name
))
5543 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5547 uc_add_command(name
, end
- name
, p
, argt
, def
, flags
, compl, compl_arg
,
5553 * Clear all user commands, global and for current buffer.
5561 uc_clear(&curbuf
->b_ucmds
);
5565 * Clear all user commands for "gap".
5574 for (i
= 0; i
< gap
->ga_len
; ++i
)
5576 cmd
= USER_CMD_GA(gap
, i
);
5577 vim_free(cmd
->uc_name
);
5578 vim_free(cmd
->uc_rep
);
5579 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5580 vim_free(cmd
->uc_compl_arg
);
5595 gap
= &curbuf
->b_ucmds
;
5598 for (i
= 0; i
< gap
->ga_len
; ++i
)
5600 cmd
= USER_CMD_GA(gap
, i
);
5601 cmp
= STRCMP(eap
->arg
, cmd
->uc_name
);
5605 if (gap
== &ucmds
|| cmp
== 0)
5612 EMSG2(_("E184: No such user-defined command: %s"), eap
->arg
);
5616 vim_free(cmd
->uc_name
);
5617 vim_free(cmd
->uc_rep
);
5618 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5619 vim_free(cmd
->uc_compl_arg
);
5624 if (i
< gap
->ga_len
)
5625 mch_memmove(cmd
, cmd
+ 1, (gap
->ga_len
- i
) * sizeof(ucmd_T
));
5629 * split and quote args for <f-args>
5632 uc_split_args(arg
, lenp
)
5641 /* Precalculate length */
5643 len
= 2; /* Initial and final quotes */
5647 if (p
[0] == '\\' && p
[1] == '\\')
5652 else if (p
[0] == '\\' && vim_iswhite(p
[1]))
5657 else if (*p
== '\\' || *p
== '"')
5662 else if (vim_iswhite(*p
))
5676 buf
= alloc(len
+ 1);
5688 if (p
[0] == '\\' && p
[1] == '\\')
5694 else if (p
[0] == '\\' && vim_iswhite(p
[1]))
5699 else if (*p
== '\\' || *p
== '"')
5704 else if (vim_iswhite(*p
))
5726 * Check for a <> code in a user command.
5727 * "code" points to the '<'. "len" the length of the <> (inclusive).
5728 * "buf" is where the result is to be added.
5729 * "split_buf" points to a buffer used for splitting, caller should free it.
5730 * "split_len" is the length of what "split_buf" contains.
5731 * Returns the length of the replacement, which has been added to "buf".
5732 * Returns -1 if there was no match, and only the "<" has been copied.
5735 uc_check_code(code
, len
, buf
, cmd
, eap
, split_buf
, split_len
)
5739 ucmd_T
*cmd
; /* the user command we're expanding */
5740 exarg_T
*eap
; /* ex arguments */
5745 char_u
*p
= code
+ 1;
5748 enum { ct_ARGS
, ct_BANG
, ct_COUNT
, ct_LINE1
, ct_LINE2
, ct_REGISTER
,
5749 ct_LT
, ct_NONE
} type
= ct_NONE
;
5751 if ((vim_strchr((char_u
*)"qQfF", *p
) != NULL
) && p
[1] == '-')
5753 quote
= (*p
== 'q' || *p
== 'Q') ? 1 : 2;
5761 else if (STRNICMP(p
, "args>", l
) == 0)
5763 else if (STRNICMP(p
, "bang>", l
) == 0)
5765 else if (STRNICMP(p
, "count>", l
) == 0)
5767 else if (STRNICMP(p
, "line1>", l
) == 0)
5769 else if (STRNICMP(p
, "line2>", l
) == 0)
5771 else if (STRNICMP(p
, "lt>", l
) == 0)
5773 else if (STRNICMP(p
, "reg>", l
) == 0 || STRNICMP(p
, "register>", l
) == 0)
5779 /* Simple case first */
5780 if (*eap
->arg
== NUL
)
5793 /* When specified there is a single argument don't split it.
5794 * Works for ":Cmd %" when % is "a b c". */
5795 if ((eap
->argt
& NOSPC
) && quote
== 2)
5800 case 0: /* No quoting, no splitting */
5801 result
= STRLEN(eap
->arg
);
5803 STRCPY(buf
, eap
->arg
);
5805 case 1: /* Quote, but don't split */
5806 result
= STRLEN(eap
->arg
) + 2;
5807 for (p
= eap
->arg
; *p
; ++p
)
5809 if (*p
== '\\' || *p
== '"')
5816 for (p
= eap
->arg
; *p
; ++p
)
5818 if (*p
== '\\' || *p
== '"')
5826 case 2: /* Quote and split (<f-args>) */
5827 /* This is hard, so only do it once, and cache the result */
5828 if (*split_buf
== NULL
)
5829 *split_buf
= uc_split_args(eap
->arg
, split_len
);
5831 result
= *split_len
;
5832 if (buf
!= NULL
&& result
!= 0)
5833 STRCPY(buf
, *split_buf
);
5840 result
= eap
->forceit
? 1 : 0;
5859 long num
= (type
== ct_LINE1
) ? eap
->line1
:
5860 (type
== ct_LINE2
) ? eap
->line2
:
5861 (eap
->addr_count
> 0) ? eap
->line2
: cmd
->uc_def
;
5864 sprintf(num_buf
, "%ld", num
);
5865 num_len
= STRLEN(num_buf
);
5875 STRCPY(buf
, num_buf
);
5885 result
= eap
->regname
? 1 : 0;
5893 *buf
++ = eap
->regname
;
5906 /* Not recognized: just copy the '<' and return -1. */
5907 result
= (size_t)-1;
5928 size_t split_len
= 0;
5929 char_u
*split_buf
= NULL
;
5932 scid_T save_current_SID
= current_SID
;
5935 if (eap
->cmdidx
== CMD_USER
)
5936 cmd
= USER_CMD(eap
->useridx
);
5938 cmd
= USER_CMD_GA(&curbuf
->b_ucmds
, eap
->useridx
);
5941 * Replace <> in the command by the arguments.
5949 while ((start
= vim_strchr(p
, '<')) != NULL
5950 && (end
= vim_strchr(start
+ 1, '>')) != NULL
)
5952 /* Include the '>' */
5955 /* Take everything up to the '<' */
5961 mch_memmove(q
, p
, len
);
5965 len
= uc_check_code(start
, end
- start
, q
, cmd
, eap
,
5966 &split_buf
, &split_len
);
5967 if (len
== (size_t)-1)
5969 /* no match, continue after '<' */
5980 if (buf
!= NULL
) /* second time here, finished */
5986 totlen
+= STRLEN(p
); /* Add on the trailing characters */
5987 buf
= alloc((unsigned)(totlen
+ 1));
5990 vim_free(split_buf
);
5996 current_SID
= cmd
->uc_scriptID
;
5998 (void)do_cmdline(buf
, eap
->getline
, eap
->cookie
,
5999 DOCMD_VERBOSE
|DOCMD_NOWAIT
|DOCMD_KEYTYPED
);
6001 current_SID
= save_current_SID
;
6004 vim_free(split_buf
);
6007 # if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6009 get_user_command_name(idx
)
6012 return get_user_commands(NULL
, idx
- (int)CMD_SIZE
);
6016 * Function given to ExpandGeneric() to obtain the list of user command names.
6020 get_user_commands(xp
, idx
)
6024 if (idx
< curbuf
->b_ucmds
.ga_len
)
6025 return USER_CMD_GA(&curbuf
->b_ucmds
, idx
)->uc_name
;
6026 idx
-= curbuf
->b_ucmds
.ga_len
;
6027 if (idx
< ucmds
.ga_len
)
6028 return USER_CMD(idx
)->uc_name
;
6033 * Function given to ExpandGeneric() to obtain the list of user command
6038 get_user_cmd_flags(xp
, idx
)
6042 static char *user_cmd_flags
[] =
6043 {"bang", "bar", "buffer", "complete", "count",
6044 "nargs", "range", "register"};
6046 if (idx
>= sizeof(user_cmd_flags
) / sizeof(user_cmd_flags
[0]))
6048 return (char_u
*)user_cmd_flags
[idx
];
6052 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6056 get_user_cmd_nargs(xp
, idx
)
6060 static char *user_cmd_nargs
[] = {"0", "1", "*", "?", "+"};
6062 if (idx
>= sizeof(user_cmd_nargs
) / sizeof(user_cmd_nargs
[0]))
6064 return (char_u
*)user_cmd_nargs
[idx
];
6068 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6072 get_user_cmd_complete(xp
, idx
)
6076 return (char_u
*)command_complete
[idx
].name
;
6078 # endif /* FEAT_CMDL_COMPL */
6080 #endif /* FEAT_USR_CMDS */
6082 #if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6084 * Parse a completion argument "value[vallen]".
6085 * The detected completion goes in "*complp", argument type in "*argt".
6086 * When there is an argument, for function and user defined completion, it's
6087 * copied to allocated memory and stored in "*compl_arg".
6088 * Returns FAIL if something is wrong.
6091 parse_compl_arg(value
, vallen
, complp
, argt
, compl_arg
)
6101 int valend
= vallen
;
6103 /* Look for any argument part - which is the part after any ',' */
6104 for (i
= 0; i
< vallen
; ++i
)
6106 if (value
[i
] == ',')
6108 arg
= &value
[i
+ 1];
6109 arglen
= vallen
- i
- 1;
6115 for (i
= 0; command_complete
[i
].expand
!= 0; ++i
)
6117 if ((int)STRLEN(command_complete
[i
].name
) == valend
6118 && STRNCMP(value
, command_complete
[i
].name
, valend
) == 0)
6120 *complp
= command_complete
[i
].expand
;
6121 if (command_complete
[i
].expand
== EXPAND_BUFFERS
)
6123 else if (command_complete
[i
].expand
== EXPAND_DIRECTORIES
6124 || command_complete
[i
].expand
== EXPAND_FILES
)
6130 if (command_complete
[i
].expand
== 0)
6132 EMSG2(_("E180: Invalid complete value: %s"), value
);
6136 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6137 if (*complp
!= EXPAND_USER_DEFINED
&& *complp
!= EXPAND_USER_LIST
6143 EMSG(_("E468: Completion argument only allowed for custom completion"));
6147 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6148 if ((*complp
== EXPAND_USER_DEFINED
|| *complp
== EXPAND_USER_LIST
)
6151 EMSG(_("E467: Custom completion requires a function argument"));
6156 *compl_arg
= vim_strnsave(arg
, (int)arglen
);
6166 if (load_colors(eap
->arg
) == FAIL
)
6167 EMSG2(_("E185: Cannot find color scheme %s"), eap
->arg
);
6174 if (*eap
->arg
== NUL
&& eap
->cmd
[2] == '!')
6175 MSG(_("Greetings, Vim user!"));
6176 do_highlight(eap
->arg
, eap
->forceit
, FALSE
);
6181 * Call this function if we thought we were going to exit, but we won't
6182 * (because of an error). May need to restore the terminal mode.
6188 settmode(TMODE_RAW
);
6192 * ":quit": quit current window, quit Vim if closed the last window.
6199 if (cmdwin_type
!= 0)
6201 cmdwin_result
= Ctrl_C
;
6205 /* Don't quit while editing the command line. */
6212 if (curbuf_locked())
6216 #ifdef FEAT_NETBEANS_INTG
6217 netbeansForcedQuit
= eap
->forceit
;
6221 * If there are more files or windows we won't exit.
6223 if (check_more(FALSE
, eap
->forceit
) == OK
&& only_one_window())
6226 && check_changed(curbuf
, p_awa
, FALSE
, eap
->forceit
, FALSE
))
6227 || check_more(TRUE
, eap
->forceit
) == FAIL
6228 || (only_one_window() && check_changed_any(eap
->forceit
)))
6235 if (only_one_window()) /* quit last window */
6240 need_mouse_correct
= TRUE
;
6242 /* close window; may free buffer */
6243 win_close(curwin
, !P_HID(curwin
->w_buffer
) || eap
->forceit
);
6256 getout(1); /* this does not always pass on the exit code to the Manx
6261 * ":qall": try to quit all windows
6268 if (cmdwin_type
!= 0)
6271 cmdwin_result
= K_XF1
; /* ex_window() takes care of this */
6273 cmdwin_result
= K_XF2
;
6278 /* Don't quit while editing the command line. */
6285 if (curbuf_locked())
6290 if (eap
->forceit
|| !check_changed_any(FALSE
))
6295 #if defined(FEAT_WINDOWS) || defined(PROTO)
6297 * ":close": close current window, unless it is the last one
6304 if (cmdwin_type
!= 0)
6305 cmdwin_result
= K_IGNORE
;
6313 ex_win_close(eap
->forceit
, curwin
, NULL
);
6316 # ifdef FEAT_QUICKFIX
6318 * ":pclose": Close any preview window.
6326 for (win
= firstwin
; win
!= NULL
; win
= win
->w_next
)
6329 ex_win_close(eap
->forceit
, win
, NULL
);
6336 * Close window "win" and take care of handling closing the last window for a
6340 ex_win_close(forceit
, win
, tp
)
6343 tabpage_T
*tp
; /* NULL or the tab page "win" is in */
6346 buf_T
*buf
= win
->w_buffer
;
6348 need_hide
= (bufIsChanged(buf
) && buf
->b_nwindows
<= 1);
6349 if (need_hide
&& !P_HID(buf
) && !forceit
)
6351 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
6352 if ((p_confirm
|| cmdmod
.confirm
) && p_write
)
6354 dialog_changed(buf
, FALSE
);
6355 if (buf_valid(buf
) && bufIsChanged(buf
))
6362 EMSG(_(e_nowrtmsg
));
6368 need_mouse_correct
= TRUE
;
6371 /* free buffer when not hiding it or when it's a scratch buffer */
6373 win_close(win
, !need_hide
&& !P_HID(buf
));
6375 win_close_othertab(win
, !need_hide
&& !P_HID(buf
), tp
);
6379 * ":tabclose": close current tab page, unless it is the last one.
6380 * ":tabclose N": close tab page N.
6389 if (cmdwin_type
!= 0)
6390 cmdwin_result
= K_IGNORE
;
6393 if (first_tabpage
->tp_next
== NULL
)
6394 EMSG(_("E784: Cannot close last tab page"));
6397 if (eap
->addr_count
> 0)
6399 tp
= find_tabpage((int)eap
->line2
);
6407 tabpage_close_other(tp
, eap
->forceit
);
6416 tabpage_close(eap
->forceit
);
6421 * ":tabonly": close all tab pages except the current one
6431 if (cmdwin_type
!= 0)
6432 cmdwin_result
= K_IGNORE
;
6435 if (first_tabpage
->tp_next
== NULL
)
6436 MSG(_("Already only one tab page"));
6439 /* Repeat this up to a 1000 times, because autocommands may mess
6441 for (done
= 0; done
< 1000; ++done
)
6443 for (tp
= first_tabpage
; tp
!= NULL
; tp
= tp
->tp_next
)
6444 if (tp
->tp_topframe
!= topframe
)
6446 tabpage_close_other(tp
, eap
->forceit
);
6447 /* if we failed to close it quit */
6448 if (valid_tabpage(tp
))
6450 /* start over, "tp" is now invalid */
6453 if (first_tabpage
->tp_next
== NULL
)
6460 * Close the current tab page.
6463 tabpage_close(forceit
)
6466 /* First close all the windows but the current one. If that worked then
6467 * close the last window in this tab, that will close it. */
6468 if (lastwin
!= firstwin
)
6469 close_others(TRUE
, forceit
);
6470 if (lastwin
== firstwin
)
6471 ex_win_close(forceit
, curwin
, NULL
);
6473 need_mouse_correct
= TRUE
;
6478 * Close tab page "tp", which is not the current tab page.
6479 * Note that autocommands may make "tp" invalid.
6480 * Also takes care of the tab pages line disappearing when closing the
6481 * last-but-one tab page.
6484 tabpage_close_other(tp
, forceit
)
6490 int h
= tabline_height();
6492 /* Limit to 1000 windows, autocommands may add a window while we close
6493 * one. OK, so I'm paranoid... */
6494 while (++done
< 1000)
6496 wp
= tp
->tp_firstwin
;
6497 ex_win_close(forceit
, wp
, tp
);
6499 /* Autocommands may delete the tab page under our fingers and we may
6500 * fail to close a window with a modified buffer. */
6501 if (!valid_tabpage(tp
) || tp
->tp_firstwin
== wp
)
6505 redraw_tabline
= TRUE
;
6506 if (h
!= tabline_height())
6518 need_mouse_correct
= TRUE
;
6520 close_others(TRUE
, eap
->forceit
);
6524 * ":all" and ":sall".
6525 * Also used for ":tab drop file ..." after setting the argument list.
6531 if (eap
->addr_count
== 0)
6533 do_arg_all((int)eap
->line2
, eap
->forceit
, eap
->cmdidx
== CMD_drop
);
6535 #endif /* FEAT_WINDOWS */
6541 if (*eap
->arg
!= NUL
&& check_nextcmd(eap
->arg
) == NULL
)
6542 eap
->errmsg
= e_invarg
;
6545 /* ":hide" or ":hide | cmd": hide current window */
6546 eap
->nextcmd
= check_nextcmd(eap
->arg
);
6551 need_mouse_correct
= TRUE
;
6553 win_close(curwin
, FALSE
); /* don't free buffer */
6560 * ":stop" and ":suspend": Suspend Vim.
6567 * Disallow suspending for "rvim".
6569 if (!check_restricted()
6572 * Check if external commands are allowed now.
6574 && can_end_termcap_mode(TRUE
)
6580 windgoto((int)Rows
- 1, 0);
6584 out_flush(); /* needed for SUN to restore xterm buffer */
6586 mch_restore_title(3); /* restore window titles */
6588 ui_suspend(); /* call machine specific function */
6591 resettitle(); /* force updating the title */
6594 scroll_start(); /* scroll screen before redrawing */
6595 redraw_later_clear();
6596 shell_resized(); /* may have resized window */
6601 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6608 if (cmdwin_type
!= 0)
6610 cmdwin_result
= Ctrl_C
;
6614 /* Don't quit while editing the command line. */
6621 if (curbuf_locked())
6626 * if more files or windows we won't exit
6628 if (check_more(FALSE
, eap
->forceit
) == OK
&& only_one_window())
6630 if ( ((eap
->cmdidx
== CMD_wq
6631 || curbufIsChanged())
6632 && do_write(eap
) == FAIL
)
6633 || check_more(TRUE
, eap
->forceit
) == FAIL
6634 || (only_one_window() && check_changed_any(eap
->forceit
)))
6641 if (only_one_window()) /* quit last window, exit Vim */
6646 need_mouse_correct
= TRUE
;
6648 /* quit current window, may free buffer */
6649 win_close(curwin
, !P_HID(curwin
->w_buffer
));
6655 * ":print", ":list", ":number".
6661 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
6662 EMSG(_(e_emptybuf
));
6665 for ( ;!got_int
; ui_breakcheck())
6667 print_line(eap
->line1
,
6668 (eap
->cmdidx
== CMD_number
|| eap
->cmdidx
== CMD_pound
6669 || (eap
->flags
& EXFLAG_NR
)),
6670 eap
->cmdidx
== CMD_list
|| (eap
->flags
& EXFLAG_LIST
));
6671 if (++eap
->line1
> eap
->line2
)
6673 out_flush(); /* show one line at a time */
6676 /* put cursor at last line */
6677 curwin
->w_cursor
.lnum
= eap
->line2
;
6678 beginline(BL_SOL
| BL_FIX
);
6681 ex_no_reprint
= TRUE
;
6689 goto_byte(eap
->line2
);
6704 #if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6705 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
6706 || defined(FEAT_GUI_MSWIN) \
6707 || defined(FEAT_GUI_MAC) \
6709 || defined(FEAT_GUI_MACVIM)
6712 * Handle a file drop. The code is here because a drop is *nearly* like an
6713 * :args command, but not quite (we have a list of exact filenames, so we
6714 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6715 * code is very similar to :args and hence needs access to a lot of the static
6716 * functions in this file.
6718 * The list should be allocated using alloc(), as should each item in the
6719 * list. This function takes over responsibility for freeing the list.
6721 * XXX The list is made into the argument list. This is freed using
6722 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6723 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6724 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6725 * file functionality is (currently) not in EMX this is not presently a
6729 handle_drop(filec
, filev
, split
)
6730 int filec
; /* the number of files dropped */
6731 char_u
**filev
; /* the list of files dropped */
6732 int split
; /* force splitting the window */
6735 int save_msg_scroll
= msg_scroll
;
6737 /* Postpone this while editing the command line. */
6741 if (curbuf_locked())
6745 /* Check whether the current buffer is changed. If so, we will need
6746 * to split the current window or data could be lost.
6747 * We don't need to check if the 'hidden' option is set, as in this
6748 * case the buffer won't be lost.
6750 if (!P_HID(curbuf
) && !split
)
6753 split
= check_changed(curbuf
, TRUE
, FALSE
, FALSE
, FALSE
);
6758 # ifdef FEAT_WINDOWS
6759 if (win_split(0, 0) == FAIL
)
6761 # ifdef FEAT_SCROLLBIND
6762 curwin
->w_p_scb
= FALSE
;
6765 /* When splitting the window, create a new alist. Otherwise the
6766 * existing one is overwritten. */
6767 alist_unlink(curwin
->w_alist
);
6770 return; /* can't split, always fail */
6775 * Set up the new argument list.
6777 alist_set(ALIST(curwin
), filec
, filev
, FALSE
, NULL
, 0);
6780 * Move to the first file.
6782 /* Fake up a minimal "next" command for do_argfile() */
6783 vim_memset(&ea
, 0, sizeof(ea
));
6784 ea
.cmd
= (char_u
*)"next";
6787 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6788 * mode that is not needed here. */
6789 need_start_insertmode
= FALSE
;
6791 /* Restore msg_scroll, otherwise a following command may cause scrolling
6792 * unexpectedly. The screen will be redrawn by the caller, thus
6793 * msg_scroll being set by displaying a message is irrelevant. */
6794 msg_scroll
= save_msg_scroll
;
6799 * Clear an argument list: free all file names and reset it to zero entries.
6805 while (--al
->al_ga
.ga_len
>= 0)
6806 vim_free(AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fname
);
6807 ga_clear(&al
->al_ga
);
6811 * Init an argument list.
6817 ga_init2(&al
->al_ga
, (int)sizeof(aentry_T
), 5);
6820 #if defined(FEAT_WINDOWS) || defined(PROTO)
6823 * Remove a reference from an argument list.
6824 * Ignored when the argument list is the global one.
6825 * If the argument list is no longer used by any window, free it.
6831 if (al
!= &global_alist
&& --al
->al_refcount
<= 0)
6838 # if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6840 * Create a new argument list and use it for the current window.
6845 curwin
->w_alist
= (alist_T
*)alloc((unsigned)sizeof(alist_T
));
6846 if (curwin
->w_alist
== NULL
)
6848 curwin
->w_alist
= &global_alist
;
6849 ++global_alist
.al_refcount
;
6853 curwin
->w_alist
->al_refcount
= 1;
6854 alist_init(curwin
->w_alist
);
6860 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6862 * Expand the file names in the global argument list.
6863 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6864 * numbers to be re-used.
6867 alist_expand(fnum_list
, fnum_len
)
6871 char_u
**old_arg_files
;
6873 char_u
**new_arg_files
;
6874 int new_arg_file_count
;
6875 char_u
*save_p_su
= p_su
;
6878 /* Don't use 'suffixes' here. This should work like the shell did the
6879 * expansion. Also, the vimrc file isn't read yet, thus the user
6880 * can't set the options. */
6881 p_su
= empty_option
;
6882 old_arg_files
= (char_u
**)alloc((unsigned)(sizeof(char_u
*) * GARGCOUNT
));
6883 if (old_arg_files
!= NULL
)
6885 for (i
= 0; i
< GARGCOUNT
; ++i
)
6886 old_arg_files
[i
] = vim_strsave(GARGLIST
[i
].ae_fname
);
6887 old_arg_count
= GARGCOUNT
;
6888 if (expand_wildcards(old_arg_count
, old_arg_files
,
6889 &new_arg_file_count
, &new_arg_files
,
6890 EW_FILE
|EW_NOTFOUND
|EW_ADDSLASH
) == OK
6891 && new_arg_file_count
> 0)
6893 alist_set(&global_alist
, new_arg_file_count
, new_arg_files
,
6894 TRUE
, fnum_list
, fnum_len
);
6895 FreeWild(old_arg_count
, old_arg_files
);
6903 * Set the argument list for the current window.
6904 * Takes over the allocated files[] and the allocated fnames in it.
6907 alist_set(al
, count
, files
, use_curbuf
, fnum_list
, fnum_len
)
6918 if (ga_grow(&al
->al_ga
, count
) == OK
)
6920 for (i
= 0; i
< count
; ++i
)
6924 /* When adding many buffers this can take a long time. Allow
6925 * interrupting here. */
6927 vim_free(files
[i
++]);
6931 /* May set buffer name of a buffer previously used for the
6932 * argument list, so that it's re-used by alist_add. */
6933 if (fnum_list
!= NULL
&& i
< fnum_len
)
6934 buf_set_name(fnum_list
[i
], files
[i
]);
6936 alist_add(al
, files
[i
], use_curbuf
? 2 : 1);
6942 FreeWild(count
, files
);
6944 if (al
== &global_alist
)
6946 arg_had_last
= FALSE
;
6950 * Add file "fname" to argument list "al".
6951 * "fname" must have been allocated and "al" must have been checked for room.
6954 alist_add(al
, fname
, set_fnum
)
6957 int set_fnum
; /* 1: set buffer number; 2: re-use curbuf */
6959 if (fname
== NULL
) /* don't add NULL file names */
6961 #ifdef BACKSLASH_IN_FILENAME
6962 slash_adjust(fname
);
6964 AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fname
= fname
;
6966 AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fnum
=
6967 buflist_add(fname
, BLN_LISTED
| (set_fnum
== 2 ? BLN_CURBUF
: 0));
6971 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6973 * Adjust slashes in file names. Called after 'shellslash' was set.
6976 alist_slash_adjust()
6979 # ifdef FEAT_WINDOWS
6984 for (i
= 0; i
< GARGCOUNT
; ++i
)
6985 if (GARGLIST
[i
].ae_fname
!= NULL
)
6986 slash_adjust(GARGLIST
[i
].ae_fname
);
6987 # ifdef FEAT_WINDOWS
6988 FOR_ALL_TAB_WINDOWS(tp
, wp
)
6989 if (wp
->w_alist
!= &global_alist
)
6990 for (i
= 0; i
< WARGCOUNT(wp
); ++i
)
6991 if (WARGLIST(wp
)[i
].ae_fname
!= NULL
)
6992 slash_adjust(WARGLIST(wp
)[i
].ae_fname
);
7005 curbuf
->b_flags
|= BF_PRESERVED
;
7006 ml_preserve(curbuf
, TRUE
);
7016 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7017 recoverymode
= TRUE
;
7018 if (!check_changed(curbuf
, p_awa
, TRUE
, eap
->forceit
, FALSE
)
7019 && (*eap
->arg
== NUL
7020 || setfname(curbuf
, eap
->arg
, NULL
, TRUE
) == OK
))
7022 recoverymode
= FALSE
;
7026 * Command modifier used in a wrong way.
7029 ex_wrongmodifier(eap
)
7032 eap
->errmsg
= e_invcmd
;
7037 * :sview [+command] file split window with new file, read-only
7038 * :split [[+command] file] split window with current or new file
7039 * :vsplit [[+command] file] split window vertically with current or new file
7040 * :new [[+command] file] split window with no or new file
7041 * :vnew [[+command] file] split vertically window with no or new file
7042 * :sfind [+command] file split window with file in 'path'
7044 * :tabedit open new Tab page with empty window
7045 * :tabedit [+command] file open new Tab page and edit "file"
7046 * :tabnew [[+command] file] just like :tabedit
7047 * :tabfind [+command] file open new Tab page and find "file"
7053 win_T
*old_curwin
= curwin
;
7054 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7055 char_u
*fname
= NULL
;
7058 int browse_flag
= cmdmod
.browse
;
7061 # ifndef FEAT_VERTSPLIT
7062 if (eap
->cmdidx
== CMD_vsplit
|| eap
->cmdidx
== CMD_vnew
)
7070 need_mouse_correct
= TRUE
;
7073 # ifdef FEAT_QUICKFIX
7074 /* A ":split" in the quickfix window works like ":new". Don't want two
7075 * quickfix windows. */
7076 if (bt_quickfix(curbuf
))
7078 if (eap
->cmdidx
== CMD_split
)
7079 eap
->cmdidx
= CMD_new
;
7080 # ifdef FEAT_VERTSPLIT
7081 if (eap
->cmdidx
== CMD_vsplit
)
7082 eap
->cmdidx
= CMD_vnew
;
7087 # ifdef FEAT_SEARCHPATH
7088 if (eap
->cmdidx
== CMD_sfind
|| eap
->cmdidx
== CMD_tabfind
)
7090 fname
= find_file_in_path(eap
->arg
, (int)STRLEN(eap
->arg
),
7091 FNAME_MESS
, TRUE
, curbuf
->b_ffname
);
7102 # ifdef FEAT_VERTSPLIT
7103 && eap
->cmdidx
!= CMD_vnew
7105 && eap
->cmdidx
!= CMD_new
)
7111 au_has_group((char_u
*)"FileExplorer"))
7113 /* No browsing supported but we do have the file explorer:
7114 * Edit the directory. */
7115 if (*eap
->arg
== NUL
|| !mch_isdir(eap
->arg
))
7116 eap
->arg
= (char_u
*)".";
7120 fname
= do_browse(0, (char_u
*)_("Edit File in new window"),
7121 eap
->arg
, NULL
, NULL
, NULL
, curbuf
);
7127 cmdmod
.browse
= FALSE
; /* Don't browse again in do_ecmd(). */
7131 * Either open new tab page or split the window.
7133 if (eap
->cmdidx
== CMD_tabedit
7134 || eap
->cmdidx
== CMD_tabfind
7135 || eap
->cmdidx
== CMD_tabnew
)
7137 if (win_new_tabpage(cmdmod
.tab
!= 0 ? cmdmod
.tab
7138 : eap
->addr_count
== 0 ? 0
7139 : (int)eap
->line2
+ 1) != FAIL
)
7141 do_exedit(eap
, old_curwin
);
7143 /* set the alternate buffer for the window we came from */
7144 if (curwin
!= old_curwin
7145 && win_valid(old_curwin
)
7146 && old_curwin
->w_buffer
!= curbuf
7148 old_curwin
->w_alt_fnum
= curbuf
->b_fnum
;
7151 else if (win_split(eap
->addr_count
> 0 ? (int)eap
->line2
: 0,
7152 *eap
->cmd
== 'v' ? WSP_VERT
: 0) != FAIL
)
7154 # ifdef FEAT_SCROLLBIND
7155 /* Reset 'scrollbind' when editing another file, but keep it when
7156 * doing ":split" without arguments. */
7157 if (*eap
->arg
!= NUL
7162 curwin
->w_p_scb
= FALSE
;
7164 do_check_scrollbind(FALSE
);
7166 do_exedit(eap
, old_curwin
);
7170 cmdmod
.browse
= browse_flag
;
7173 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7179 #if defined(FEAT_MOUSE) || defined(PROTO)
7181 * Open a new tab page.
7188 vim_memset(&ea
, 0, sizeof(ea
));
7189 ea
.cmdidx
= CMD_tabnew
;
7190 ea
.cmd
= (char_u
*)"tabn";
7191 ea
.arg
= (char_u
*)"";
7203 switch (eap
->cmdidx
)
7212 case CMD_tabprevious
:
7214 goto_tabpage(eap
->addr_count
== 0 ? -1 : -(int)eap
->line2
);
7216 default: /* CMD_tabnext */
7217 goto_tabpage(eap
->addr_count
== 0 ? 0 : (int)eap
->line2
);
7229 tabpage_move(eap
->addr_count
== 0 ? 9999 : (int)eap
->line2
);
7233 * :tabs command: List tabs and their contents.
7246 for (tp
= first_tabpage
; tp
!= NULL
&& !got_int
; tp
= tp
->tp_next
)
7249 vim_snprintf((char *)IObuff
, IOSIZE
, _("Tab page %d"), tabcount
++);
7250 msg_outtrans_attr(IObuff
, hl_attr(HLF_T
));
7251 out_flush(); /* output one line at a time */
7257 wp
= tp
->tp_firstwin
;
7258 for ( ; wp
!= NULL
&& !got_int
; wp
= wp
->w_next
)
7261 msg_putchar(wp
== curwin
? '>' : ' ');
7263 msg_putchar(bufIsChanged(wp
->w_buffer
) ? '+' : ' ');
7265 if (buf_spname(wp
->w_buffer
) != NULL
)
7266 STRCPY(IObuff
, buf_spname(wp
->w_buffer
));
7268 home_replace(wp
->w_buffer
, wp
->w_buffer
->b_fname
,
7269 IObuff
, IOSIZE
, TRUE
);
7270 msg_outtrans(IObuff
);
7271 out_flush(); /* output one line at a time */
7277 #endif /* FEAT_WINDOWS */
7280 * ":mode": Set screen mode.
7281 * If no argument given, just get the screen size and redraw.
7287 if (*eap
->arg
== NUL
)
7290 mch_screenmode(eap
->arg
);
7296 * set, increment or decrement current window height
7305 if (eap
->addr_count
> 0)
7308 for (wp
= firstwin
; wp
->w_next
!= NULL
&& --n
> 0; wp
= wp
->w_next
)
7313 need_mouse_correct
= TRUE
;
7315 n
= atol((char *)eap
->arg
);
7316 #ifdef FEAT_VERTSPLIT
7317 if (cmdmod
.split
& WSP_VERT
)
7319 if (*eap
->arg
== '-' || *eap
->arg
== '+')
7320 n
+= W_WIDTH(curwin
);
7321 else if (n
== 0 && eap
->arg
[0] == NUL
) /* default is very wide */
7323 win_setwidth_win((int)n
, wp
);
7328 if (*eap
->arg
== '-' || *eap
->arg
== '+')
7329 n
+= curwin
->w_height
;
7330 else if (n
== 0 && eap
->arg
[0] == NUL
) /* default is very wide */
7332 win_setheight_win((int)n
, wp
);
7338 * ":find [+command] <file>" command.
7344 #ifdef FEAT_SEARCHPATH
7348 fname
= find_file_in_path(eap
->arg
, (int)STRLEN(eap
->arg
), FNAME_MESS
,
7349 TRUE
, curbuf
->b_ffname
);
7350 if (eap
->addr_count
> 0)
7352 /* Repeat finding the file "count" times. This matters when it
7353 * appears several times in the path. */
7355 while (fname
!= NULL
&& --count
> 0)
7358 fname
= find_file_in_path(NULL
, 0, FNAME_MESS
,
7359 FALSE
, curbuf
->b_ffname
);
7367 do_exedit(eap
, NULL
);
7368 #ifdef FEAT_SEARCHPATH
7375 * ":open" simulation: for now just work like ":visual".
7381 regmatch_T regmatch
;
7384 curwin
->w_cursor
.lnum
= eap
->line2
;
7385 beginline(BL_SOL
| BL_FIX
);
7386 if (*eap
->arg
== '/')
7388 /* ":open /pattern/": put cursor in column found with pattern */
7390 p
= skip_regexp(eap
->arg
, '/', p_magic
, NULL
);
7392 regmatch
.regprog
= vim_regcomp(eap
->arg
, p_magic
? RE_MAGIC
: 0);
7393 if (regmatch
.regprog
!= NULL
)
7395 regmatch
.rm_ic
= p_ic
;
7396 p
= ml_get_curline();
7397 if (vim_regexec(®match
, p
, (colnr_T
)0))
7398 curwin
->w_cursor
.col
= (colnr_T
)(regmatch
.startp
[0] - p
);
7401 vim_free(regmatch
.regprog
);
7403 /* Move to the NUL, ignore any other arguments. */
7404 eap
->arg
+= STRLEN(eap
->arg
);
7408 eap
->cmdidx
= CMD_visual
;
7409 do_exedit(eap
, NULL
);
7413 * ":edit", ":badd", ":visual".
7419 do_exedit(eap
, NULL
);
7423 * ":edit <file>" command and alikes.
7427 do_exedit(eap
, old_curwin
)
7429 win_T
*old_curwin
; /* curwin before doing a split or NULL */
7435 int exmode_was
= exmode_active
;
7438 * ":vi" command ends Ex mode.
7440 if (exmode_active
&& (eap
->cmdidx
== CMD_visual
7441 || eap
->cmdidx
== CMD_view
))
7443 exmode_active
= FALSE
;
7444 if (*eap
->arg
== NUL
)
7446 /* Special case: ":global/pat/visual\NLvi-commands" */
7449 int rd
= RedrawingDisabled
;
7450 int nwr
= no_wait_return
;
7451 int ms
= msg_scroll
;
7453 int he
= hold_gui_events
;
7456 if (eap
->nextcmd
!= NULL
)
7458 stuffReadbuff(eap
->nextcmd
);
7459 eap
->nextcmd
= NULL
;
7462 if (exmode_was
!= EXMODE_VIM
)
7463 settmode(TMODE_RAW
);
7464 RedrawingDisabled
= 0;
7466 need_wait_return
= FALSE
;
7469 hold_gui_events
= 0;
7471 must_redraw
= CLEAR
;
7473 main_loop(FALSE
, TRUE
);
7475 RedrawingDisabled
= rd
;
7476 no_wait_return
= nwr
;
7479 hold_gui_events
= he
;
7486 if ((eap
->cmdidx
== CMD_new
7487 || eap
->cmdidx
== CMD_tabnew
7488 || eap
->cmdidx
== CMD_tabedit
7489 #ifdef FEAT_VERTSPLIT
7490 || eap
->cmdidx
== CMD_vnew
7492 ) && *eap
->arg
== NUL
)
7494 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
7496 (void)do_ecmd(0, NULL
, NULL
, eap
, ECMD_ONE
,
7497 ECMD_HIDE
+ (eap
->forceit
? ECMD_FORCEIT
: 0));
7499 else if ((eap
->cmdidx
!= CMD_split
7500 #ifdef FEAT_VERTSPLIT
7501 && eap
->cmdidx
!= CMD_vsplit
7511 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7512 * can bring us here, others are stopped earlier. */
7513 if (*eap
->arg
!= NUL
&& curbuf_locked())
7517 if (eap
->cmdidx
== CMD_view
|| eap
->cmdidx
== CMD_sview
)
7518 readonlymode
= TRUE
;
7519 else if (eap
->cmdidx
== CMD_enew
)
7520 readonlymode
= FALSE
; /* 'readonly' doesn't make sense in an
7523 if (do_ecmd(0, (eap
->cmdidx
== CMD_enew
? NULL
: eap
->arg
),
7525 /* ":edit" goes to first line if Vi compatible */
7526 (*eap
->arg
== NUL
&& eap
->do_ecmd_lnum
== 0
7527 && vim_strchr(p_cpo
, CPO_GOTO1
) != NULL
)
7528 ? ECMD_ONE
: eap
->do_ecmd_lnum
,
7529 (P_HID(curbuf
) ? ECMD_HIDE
: 0)
7530 + (eap
->forceit
? ECMD_FORCEIT
: 0)
7531 #ifdef FEAT_LISTCMDS
7532 + (eap
->cmdidx
== CMD_badd
? ECMD_ADDBUF
: 0 )
7536 /* Editing the file failed. If the window was split, close it. */
7538 if (old_curwin
!= NULL
)
7540 need_hide
= (curbufIsChanged() && curbuf
->b_nwindows
<= 1);
7541 if (!need_hide
|| P_HID(curbuf
))
7543 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7546 /* Reset the error/interrupt/exception state here so that
7547 * aborting() returns FALSE when closing a window. */
7551 need_mouse_correct
= TRUE
;
7553 win_close(curwin
, !need_hide
&& !P_HID(curbuf
));
7555 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7556 /* Restore the error/interrupt/exception state if not
7557 * discarded by a new aborting error, interrupt, or
7558 * uncaught exception. */
7565 else if (readonlymode
&& curbuf
->b_nwindows
== 1)
7567 /* When editing an already visited buffer, 'readonly' won't be set
7568 * but the previous value is kept. With ":view" and ":sview" we
7569 * want the file to be readonly, except when another window is
7570 * editing the same buffer. */
7571 curbuf
->b_p_ro
= TRUE
;
7577 if (eap
->do_ecmd_cmd
!= NULL
)
7578 do_cmdline_cmd(eap
->do_ecmd_cmd
);
7580 n
= curwin
->w_arg_idx_invalid
;
7582 check_arg_idx(curwin
);
7584 if (n
!= curwin
->w_arg_idx_invalid
)
7591 * if ":split file" worked, set alternate file name in old window to new
7594 if (old_curwin
!= NULL
7596 && curwin
!= old_curwin
7597 && win_valid(old_curwin
)
7598 && old_curwin
->w_buffer
!= curbuf
7600 old_curwin
->w_alt_fnum
= curbuf
->b_fnum
;
7603 ex_no_reprint
= TRUE
;
7608 * ":gui" and ":gvim" when there is no GUI.
7614 eap
->errmsg
= e_nogvim
;
7618 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7623 gui_make_tearoff(eap
->arg
);
7627 #if defined(FEAT_MENU) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
7628 || defined(FEAT_GUI_MACVIM))
7633 gui_make_popup(eap
->arg
, eap
->forceit
);
7642 if (curbuf
->b_ml
.ml_mfp
== NULL
|| curbuf
->b_ml
.ml_mfp
->mf_fname
== NULL
)
7643 MSG(_("No swap file"));
7645 msg(curbuf
->b_ml
.ml_mfp
->mf_fname
);
7649 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7651 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7658 #ifdef FEAT_SCROLLBIND
7662 linenr_T old_linenr
= curwin
->w_cursor
.lnum
;
7667 * determine max topline
7669 if (curwin
->w_p_scb
)
7671 topline
= curwin
->w_topline
;
7672 for (wp
= firstwin
; wp
; wp
= wp
->w_next
)
7674 if (wp
->w_p_scb
&& wp
->w_buffer
)
7676 y
= wp
->w_buffer
->b_ml
.ml_line_count
- p_so
;
7691 * set all scrollbind windows to the same topline
7694 for (curwin
= firstwin
; curwin
; curwin
= curwin
->w_next
)
7696 if (curwin
->w_p_scb
)
7698 y
= topline
- curwin
->w_topline
;
7702 scrolldown(-y
, TRUE
);
7703 curwin
->w_scbind_pos
= topline
;
7704 redraw_later(VALID
);
7707 curwin
->w_redr_status
= TRUE
;
7712 if (curwin
->w_p_scb
)
7714 did_syncbind
= TRUE
;
7716 if (old_linenr
!= curwin
->w_cursor
.lnum
)
7722 ins_typebuf(ctrl_o
, REMAP_NONE
, 0, TRUE
, FALSE
);
7734 int empty
= (curbuf
->b_ml
.ml_flags
& ML_EMPTY
);
7737 if (eap
->usefilter
) /* :r!cmd */
7738 do_bang(1, eap
, FALSE
, FALSE
, TRUE
);
7741 if (u_save(eap
->line2
, (linenr_T
)(eap
->line2
+ 1)) == FAIL
)
7749 browseFile
= do_browse(0, (char_u
*)_("Append File"), eap
->arg
,
7750 NULL
, NULL
, NULL
, curbuf
);
7751 if (browseFile
!= NULL
)
7753 i
= readfile(browseFile
, NULL
,
7754 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7755 vim_free(browseFile
);
7762 if (*eap
->arg
== NUL
)
7764 if (check_fname() == FAIL
) /* check for no file name */
7766 i
= readfile(curbuf
->b_ffname
, curbuf
->b_fname
,
7767 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7771 if (vim_strchr(p_cpo
, CPO_ALTREAD
) != NULL
)
7772 (void)setaltfname(eap
->arg
, eap
->arg
, (linenr_T
)1);
7773 i
= readfile(eap
->arg
, NULL
,
7774 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7779 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7782 EMSG2(_(e_notopen
), eap
->arg
);
7786 if (empty
&& exmode_active
)
7788 /* Delete the empty line that remains. Historically ex does
7789 * this but vi doesn't. */
7790 if (eap
->line2
== 0)
7791 lnum
= curbuf
->b_ml
.ml_line_count
;
7794 if (*ml_get(lnum
) == NUL
&& u_savedel(lnum
, 1L) == OK
)
7796 ml_delete(lnum
, FALSE
);
7797 deleted_lines_mark(lnum
, 1L);
7798 if (curwin
->w_cursor
.lnum
> 1
7799 && curwin
->w_cursor
.lnum
>= lnum
)
7800 --curwin
->w_cursor
.lnum
;
7803 redraw_curbuf_later(VALID
);
7808 static char_u
*prev_dir
= NULL
;
7810 #if defined(EXITFREE) || defined(PROTO)
7821 * ":cd", ":lcd", ":chdir" and ":lchdir".
7831 #if !defined(UNIX) && !defined(VMS)
7832 /* for non-UNIX ":cd" means: print current directory */
7833 if (*new_dir
== NUL
)
7838 if (vim_strchr(p_cpo
, CPO_CHDIR
) != NULL
&& curbufIsChanged()
7841 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
7845 /* ":cd -": Change to previous directory */
7846 if (STRCMP(new_dir
, "-") == 0)
7848 if (prev_dir
== NULL
)
7850 EMSG(_("E186: No previous directory"));
7856 /* Save current directory for next ":cd -" */
7858 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7859 prev_dir
= vim_strsave(NameBuff
);
7863 #if defined(UNIX) || defined(VMS)
7864 /* for UNIX ":cd" means: go to home directory */
7865 if (*new_dir
== NUL
)
7867 /* use NameBuff for home directory name */
7871 p
= mch_getenv((char_u
*)"SYS$LOGIN");
7872 if (p
== NULL
|| *p
== NUL
) /* empty is the same as not set */
7875 vim_strncpy(NameBuff
, p
, MAXPATHL
- 1);
7877 expand_env((char_u
*)"$HOME", NameBuff
, MAXPATHL
);
7882 if (new_dir
== NULL
|| vim_chdir(new_dir
))
7886 vim_free(curwin
->w_localdir
);
7887 if (eap
->cmdidx
== CMD_lcd
|| eap
->cmdidx
== CMD_lchdir
)
7889 /* If still in global directory, need to remember current
7890 * directory as global directory. */
7891 if (globaldir
== NULL
&& prev_dir
!= NULL
)
7892 globaldir
= vim_strsave(prev_dir
);
7893 /* Remember this local directory for the window. */
7894 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7895 curwin
->w_localdir
= vim_strsave(NameBuff
);
7899 /* We are now in the global directory, no need to remember its
7901 vim_free(globaldir
);
7903 curwin
->w_localdir
= NULL
;
7906 shorten_fnames(TRUE
);
7908 /* Echo the new current directory if the command was typed. */
7924 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7926 #ifdef BACKSLASH_IN_FILENAME
7927 slash_adjust(NameBuff
);
7932 EMSG(_("E187: Unknown"));
7942 smsg((char_u
*)"%ld", (long)eap
->line2
);
7955 n
= W_WINROW(curwin
) + curwin
->w_wrow
- msg_scrolled
;
7957 windgoto((int)n
, curwin
->w_wcol
);
7964 case NUL
: len
*= 1000L; break;
7965 default: EMSG2(_(e_invarg2
), eap
->arg
); return;
7971 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7981 for (done
= 0; !got_int
&& done
< msec
; done
+= 1000L)
7983 ui_delay(msec
- done
> 1000L ? 1000L : msec
- done
, TRUE
);
7989 do_exmap(eap
, isabbrev
)
7997 mode
= get_map_mode(&cmdp
, eap
->forceit
|| isabbrev
);
7999 switch (do_map((*cmdp
== 'n') ? 2 : (*cmdp
== 'u'),
8000 eap
->arg
, mode
, isabbrev
))
8002 case 1: EMSG(_(e_invarg
));
8004 case 2: EMSG(isabbrev
? _(e_noabbr
) : _(e_nomap
));
8010 * ":winsize" command (obsolete).
8017 char_u
*arg
= eap
->arg
;
8020 w
= getdigits(&arg
);
8021 arg
= skipwhite(arg
);
8023 h
= getdigits(&arg
);
8024 if (*p
!= NUL
&& *arg
== NUL
)
8025 set_shellsize(w
, h
, TRUE
);
8027 EMSG(_("E465: :winsize requires two number arguments"));
8038 if (*eap
->arg
== 'g' || *eap
->arg
== Ctrl_G
)
8040 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8041 if (eap
->arg
[1] == NUL
)
8046 xchar
= eap
->arg
[1];
8052 eap
->nextcmd
= check_nextcmd(p
);
8054 if (*p
!= NUL
&& *p
!= '"' && eap
->nextcmd
== NULL
)
8058 /* Pass flags on for ":vertical wincmd ]". */
8059 postponed_split_flags
= cmdmod
.split
;
8060 postponed_split_tab
= cmdmod
.tab
;
8061 do_window(*eap
->arg
, eap
->addr_count
> 0 ? eap
->line2
: 0L, xchar
);
8062 postponed_split_flags
= 0;
8063 postponed_split_tab
= 0;
8068 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
8077 char_u
*arg
= eap
->arg
;
8082 # if defined(FEAT_GUI) || defined(MSWIN)
8084 if (gui
.in_use
&& gui_mch_get_winpos(&x
, &y
) != FAIL
)
8086 if (mch_get_winpos(&x
, &y
) != FAIL
)
8089 sprintf((char *)IObuff
, _("Window position: X %d, Y %d"), x
, y
);
8094 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8098 x
= getdigits(&arg
);
8099 arg
= skipwhite(arg
);
8101 y
= getdigits(&arg
);
8102 if (*p
== NUL
|| *arg
!= NUL
)
8104 EMSG(_("E466: :winpos requires two number arguments"));
8109 gui_mch_set_winpos(x
, y
);
8110 else if (gui
.starting
)
8112 /* Remember the coordinates for when the window is opened. */
8116 # ifdef HAVE_TGETENT
8121 mch_set_winpos(x
, y
);
8124 # ifdef HAVE_TGETENT
8126 term_set_winpos(x
, y
);
8133 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8142 oa
.regname
= eap
->regname
;
8143 oa
.start
.lnum
= eap
->line1
;
8144 oa
.end
.lnum
= eap
->line2
;
8145 oa
.line_count
= eap
->line2
- eap
->line1
+ 1;
8146 oa
.motion_type
= MLINE
;
8147 #ifdef FEAT_VIRTUALEDIT
8150 if (eap
->cmdidx
!= CMD_yank
) /* position cursor for undo */
8153 curwin
->w_cursor
.lnum
= eap
->line1
;
8154 beginline(BL_SOL
| BL_FIX
);
8157 switch (eap
->cmdidx
)
8160 oa
.op_type
= OP_DELETE
;
8165 oa
.op_type
= OP_YANK
;
8166 (void)op_yank(&oa
, FALSE
, TRUE
);
8169 default: /* CMD_rshift or CMD_lshift */
8170 if ((eap
->cmdidx
== CMD_rshift
)
8171 #ifdef FEAT_RIGHTLEFT
8175 oa
.op_type
= OP_RSHIFT
;
8177 oa
.op_type
= OP_LSHIFT
;
8178 op_shift(&oa
, FALSE
, eap
->amount
);
8181 #ifdef FEAT_VIRTUALEDIT
8194 /* ":0put" works like ":1put!". */
8195 if (eap
->line2
== 0)
8198 eap
->forceit
= TRUE
;
8200 curwin
->w_cursor
.lnum
= eap
->line2
;
8201 do_put(eap
->regname
, eap
->forceit
? BACKWARD
: FORWARD
, 1L,
8202 PUT_LINE
|PUT_CURSLINE
);
8206 * Handle ":copy" and ":move".
8214 n
= get_address(&eap
->arg
, FALSE
, FALSE
);
8215 if (eap
->arg
== NULL
) /* error detected */
8217 eap
->nextcmd
= NULL
;
8223 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8225 if (n
== MAXLNUM
|| n
< 0 || n
> curbuf
->b_ml
.ml_line_count
)
8231 if (eap
->cmdidx
== CMD_move
)
8233 if (do_move(eap
->line1
, eap
->line2
, n
) == FAIL
)
8237 ex_copy(eap
->line1
, eap
->line2
, n
);
8239 beginline(BL_SOL
| BL_FIX
);
8244 * Print the current line if flags were given to the Ex command.
8250 if (eap
->flags
!= 0)
8252 print_line(curwin
->w_cursor
.lnum
, (eap
->flags
& EXFLAG_NR
),
8253 (eap
->flags
& EXFLAG_LIST
));
8254 ex_no_reprint
= TRUE
;
8259 * ":smagic" and ":snomagic".
8265 int magic_save
= p_magic
;
8267 p_magic
= (eap
->cmdidx
== CMD_smagic
);
8269 p_magic
= magic_save
;
8279 curwin
->w_cursor
.lnum
= eap
->line1
;
8280 if (eap
->line1
== eap
->line2
)
8282 if (eap
->addr_count
>= 2) /* :2,2join does nothing */
8284 if (eap
->line2
== curbuf
->b_ml
.ml_line_count
)
8291 do_do_join(eap
->line2
- eap
->line1
+ 1, !eap
->forceit
);
8292 beginline(BL_WHITE
| BL_FIX
);
8297 * ":[addr]@r" or ":[addr]*r": execute register
8305 curwin
->w_cursor
.lnum
= eap
->line2
;
8307 #ifdef USE_ON_FLY_SCROLL
8308 dont_scroll
= TRUE
; /* disallow scrolling here */
8311 /* get the register name. No name means to use the previous one */
8313 if (c
== NUL
|| (c
== '*' && *eap
->cmd
== '*'))
8315 /* Put the register in the typeahead buffer with the "silent" flag. */
8316 if (do_execreg(c
, TRUE
, vim_strchr(p_cpo
, CPO_EXECBUF
) != NULL
, TRUE
)
8323 int save_efr
= exec_from_reg
;
8325 exec_from_reg
= TRUE
;
8328 * Execute from the typeahead buffer.
8329 * Originally this didn't check for the typeahead buffer to be empty,
8330 * thus could read more Ex commands from stdin. It's not clear why,
8331 * it is certainly unexpected.
8333 while ((!stuff_empty() || typebuf
.tb_len
> 0) && vpeekc() == ':')
8334 (void)do_cmdline(NULL
, getexline
, NULL
, DOCMD_NOWAIT
|DOCMD_VERBOSE
);
8336 exec_from_reg
= save_efr
;
8347 do_bang(eap
->addr_count
, eap
, eap
->forceit
, TRUE
, TRUE
);
8358 if (eap
->addr_count
== 1) /* :undo 123 */
8359 undo_time(eap
->line2
, FALSE
, TRUE
);
8376 * ":earlier" and ":later".
8385 char_u
*p
= eap
->arg
;
8389 else if (isdigit(*p
))
8391 count
= getdigits(&p
);
8394 case 's': ++p
; sec
= TRUE
; break;
8395 case 'm': ++p
; sec
= TRUE
; count
*= 60; break;
8396 case 'h': ++p
; sec
= TRUE
; count
*= 60 * 60; break;
8401 EMSG2(_(e_invarg2
), eap
->arg
);
8403 undo_time(eap
->cmdidx
== CMD_earlier
? -count
: count
, sec
, FALSE
);
8407 * ":redir": start/stop redirection.
8415 char_u
*arg
= eap
->arg
;
8417 if (STRICMP(eap
->arg
, "END") == 0)
8431 arg
= skipwhite(arg
);
8435 /* Expand environment variables and "~/". */
8436 fname
= expand_env_save(arg
);
8444 browseFile
= do_browse(BROWSE_SAVE
,
8445 (char_u
*)_("Save Redirection"),
8446 fname
, NULL
, NULL
, BROWSE_FILTER_ALL_FILES
, curbuf
);
8447 if (browseFile
== NULL
)
8448 return; /* operation cancelled */
8451 eap
->forceit
= TRUE
; /* since dialog already asked */
8455 redir_fd
= open_exfile(fname
, eap
->forceit
, mode
);
8459 else if (*arg
== '@')
8461 /* redirect to a register a-z (resp. A-Z for appending) */
8464 if (ASCII_ISALPHA(*arg
)
8465 # ifdef FEAT_CLIPBOARD
8472 if (*arg
== '>' && arg
[1] == '>') /* append */
8476 /* Can use both "@a" and "@a>". */
8479 /* Make register empty when not using @A-@Z and the
8480 * command is valid. */
8481 if (*arg
== NUL
&& !isupper(redir_reg
))
8482 write_reg_contents(redir_reg
, (char_u
*)"", -1, FALSE
);
8488 EMSG2(_(e_invarg2
), eap
->arg
);
8491 else if (*arg
== '=' && arg
[1] == '>')
8495 /* redirect to a variable */
8507 if (var_redir_start(skipwhite(arg
), append
) == OK
)
8512 /* TODO: redirect to a buffer */
8515 EMSG2(_(e_invarg2
), eap
->arg
);
8518 /* Make sure redirection is not off. Can happen for cmdline completion
8519 * that indirectly invokes a command to catch its output. */
8520 if (redir_fd
!= NULL
8522 || redir_reg
|| redir_vname
8529 * ":redraw": force redraw
8535 int r
= RedrawingDisabled
;
8538 RedrawingDisabled
= 0;
8541 update_screen(eap
->forceit
? CLEAR
:
8543 VIsual_active
? INVERTED
:
8550 RedrawingDisabled
= r
;
8553 /* Reset msg_didout, so that a message that's there is overwritten. */
8561 * ":redrawstatus": force redraw of status line(s)
8565 ex_redrawstatus(eap
)
8568 #if defined(FEAT_WINDOWS)
8569 int r
= RedrawingDisabled
;
8572 RedrawingDisabled
= 0;
8575 status_redraw_all();
8577 status_redraw_curbuf();
8580 VIsual_active
? INVERTED
:
8583 RedrawingDisabled
= r
;
8592 if (redir_fd
!= NULL
)
8607 #if defined(FEAT_SESSION) && defined(USE_CRNL)
8608 # define MKSESSION_NL
8609 static int mksession_nl
= FALSE
; /* use NL only in put_eol() */
8613 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8623 char_u
*browseFile
= NULL
;
8626 int view_session
= FALSE
;
8627 int using_vdir
= FALSE
; /* using 'viewdir'? */
8628 char_u
*viewFile
= NULL
;
8632 if (eap
->cmdidx
== CMD_mksession
|| eap
->cmdidx
== CMD_mkview
)
8635 view_session
= TRUE
;
8645 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8646 if (eap
->cmdidx
== CMD_mkview
8647 && (*eap
->arg
== NUL
8648 || (vim_isdigit(*eap
->arg
) && eap
->arg
[1] == NUL
)))
8650 eap
->forceit
= TRUE
;
8651 fname
= get_view_file(*eap
->arg
);
8659 if (*eap
->arg
!= NUL
)
8661 else if (eap
->cmdidx
== CMD_mkvimrc
)
8662 fname
= (char_u
*)VIMRC_FILE
;
8664 else if (eap
->cmdidx
== CMD_mksession
)
8665 fname
= (char_u
*)SESSION_FILE
;
8668 fname
= (char_u
*)EXRC_FILE
;
8673 browseFile
= do_browse(BROWSE_SAVE
,
8674 # ifdef FEAT_SESSION
8675 eap
->cmdidx
== CMD_mkview
? (char_u
*)_("Save View") :
8676 eap
->cmdidx
== CMD_mksession
? (char_u
*)_("Save Session") :
8678 (char_u
*)_("Save Setup"),
8679 fname
, (char_u
*)"vim", NULL
, BROWSE_FILTER_MACROS
, NULL
);
8680 if (browseFile
== NULL
)
8683 eap
->forceit
= TRUE
; /* since dialog already asked */
8687 #if defined(FEAT_SESSION) && defined(vim_mkdir)
8688 /* When using 'viewdir' may have to create the directory. */
8689 if (using_vdir
&& !mch_isdir(p_vdir
))
8690 vim_mkdir_emsg(p_vdir
, 0755);
8693 fd
= open_exfile(fname
, eap
->forceit
, WRITEBIN
);
8697 if (eap
->cmdidx
== CMD_mkview
)
8700 flagp
= &ssop_flags
;
8704 /* "unix" in 'sessionoptions': use NL line separator */
8705 if (view_session
&& (*flagp
& SSOP_UNIX
))
8706 mksession_nl
= TRUE
;
8709 /* Write the version command for :mkvimrc */
8710 if (eap
->cmdidx
== CMD_mkvimrc
)
8711 (void)put_line(fd
, "version 6.0");
8714 if (eap
->cmdidx
== CMD_mksession
)
8716 if (put_line(fd
, "let SessionLoad = 1") == FAIL
)
8720 if (eap
->cmdidx
!= CMD_mkview
)
8723 /* Write setting 'compatible' first, because it has side effects.
8724 * For that same reason only do it when needed. */
8726 (void)put_line(fd
, "if !&cp | set cp | endif");
8728 (void)put_line(fd
, "if &cp | set nocp | endif");
8733 || (eap
->cmdidx
== CMD_mksession
8734 && (*flagp
& SSOP_OPTIONS
)))
8736 failed
|= (makemap(fd
, NULL
) == FAIL
8737 || makeset(fd
, OPT_GLOBAL
, FALSE
) == FAIL
);
8740 if (!failed
&& view_session
)
8742 if (put_line(fd
, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL
)
8744 if (eap
->cmdidx
== CMD_mksession
)
8746 char_u dirnow
[MAXPATHL
]; /* current directory */
8749 * Change to session file's dir.
8751 if (mch_dirname(dirnow
, MAXPATHL
) == FAIL
8752 || mch_chdir((char *)dirnow
) != 0)
8754 if (*dirnow
!= NUL
&& (ssop_flags
& SSOP_SESDIR
))
8756 if (vim_chdirfile(fname
) == OK
)
8757 shorten_fnames(TRUE
);
8759 else if (*dirnow
!= NUL
8760 && (ssop_flags
& SSOP_CURDIR
) && globaldir
!= NULL
)
8762 (void)mch_chdir((char *)globaldir
);
8763 shorten_fnames(TRUE
);
8766 failed
|= (makeopens(fd
, dirnow
) == FAIL
);
8768 /* restore original dir */
8769 if (*dirnow
!= NUL
&& ((ssop_flags
& SSOP_SESDIR
)
8770 || ((ssop_flags
& SSOP_CURDIR
) && globaldir
!= NULL
)))
8772 if (mch_chdir((char *)dirnow
) != 0)
8773 EMSG(_(e_prev_dir
));
8774 shorten_fnames(TRUE
);
8779 failed
|= (put_view(fd
, curwin
, !using_vdir
, flagp
,
8782 if (put_line(fd
, "let &so = s:so_save | let &siso = s:siso_save")
8785 if (put_line(fd
, "doautoall SessionLoadPost") == FAIL
)
8787 if (eap
->cmdidx
== CMD_mksession
)
8789 if (put_line(fd
, "unlet SessionLoad") == FAIL
)
8794 if (put_line(fd
, "\" vim: set ft=vim :") == FAIL
)
8797 failed
|= fclose(fd
);
8801 #if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8802 else if (eap
->cmdidx
== CMD_mksession
)
8804 /* successful session write - set this_session var */
8805 char_u tbuf
[MAXPATHL
];
8807 if (vim_FullName(fname
, tbuf
, MAXPATHL
, FALSE
) == OK
)
8808 set_vim_var_string(VV_THIS_SESSION
, tbuf
, -1);
8812 mksession_nl
= FALSE
;
8818 vim_free(browseFile
);
8825 #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8829 vim_mkdir_emsg(name
, prot
)
8833 if (vim_mkdir(name
, prot
) != 0)
8835 EMSG2(_("E739: Cannot create directory: %s"), name
);
8843 * Open a file for writing for an Ex command, with some checks.
8844 * Return file descriptor, or NULL on failure.
8847 open_exfile(fname
, forceit
, mode
)
8850 char *mode
; /* "w" for create new file or "a" for append */
8855 /* with Unix it is possible to open a directory */
8856 if (mch_isdir(fname
))
8858 EMSG2(_(e_isadir2
), fname
);
8862 if (!forceit
&& *mode
!= 'a' && vim_fexists(fname
))
8864 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname
);
8868 if ((fd
= mch_fopen((char *)fname
, mode
)) == NULL
)
8869 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname
);
8883 if (*eap
->arg
== NUL
) /* No argument? */
8885 else if (eap
->arg
[1] != NUL
) /* more than one character? */
8886 EMSG(_(e_trailing
));
8889 pos
= curwin
->w_cursor
; /* save curwin->w_cursor */
8890 curwin
->w_cursor
.lnum
= eap
->line2
;
8891 beginline(BL_WHITE
| BL_FIX
);
8892 if (setmark(*eap
->arg
) == FAIL
) /* set mark */
8893 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8894 curwin
->w_cursor
= pos
; /* restore curwin->w_cursor */
8899 * Update w_topline, w_leftcol and the cursor position.
8902 update_topline_cursor()
8904 check_cursor(); /* put cursor on valid line */
8906 if (!curwin
->w_p_wrap
)
8911 #ifdef FEAT_EX_EXTRA
8913 * ":normal[!] {commands}": Execute normal mode commands.
8919 int save_msg_scroll
= msg_scroll
;
8920 int save_restart_edit
= restart_edit
;
8921 int save_msg_didout
= msg_didout
;
8922 int save_State
= State
;
8924 int save_insertmode
= p_im
;
8925 int save_finish_op
= finish_op
;
8932 if (ex_normal_lock
> 0)
8937 if (ex_normal_busy
>= p_mmd
)
8939 EMSG(_("E192: Recursive use of :normal too deep"));
8944 msg_scroll
= FALSE
; /* no msg scrolling in Normal mode */
8945 restart_edit
= 0; /* don't go to Insert mode */
8946 p_im
= FALSE
; /* don't use 'insertmode' */
8950 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8951 * this for the K_SPECIAL leading byte, otherwise special keys will not
8958 /* Count the number of characters to be escaped. */
8959 for (p
= eap
->arg
; *p
!= NUL
; ++p
)
8962 if (*p
== CSI
) /* leadbyte CSI */
8965 for (l
= (*mb_ptr2len
)(p
) - 1; l
> 0; --l
)
8966 if (*++p
== K_SPECIAL
/* trailbyte K_SPECIAL or CSI */
8975 arg
= alloc((unsigned)(STRLEN(eap
->arg
) + len
+ 1));
8979 for (p
= eap
->arg
; *p
!= NUL
; ++p
)
8985 arg
[len
++] = KS_EXTRA
;
8986 arg
[len
++] = (int)KE_CSI
;
8989 for (l
= (*mb_ptr2len
)(p
) - 1; l
> 0; --l
)
8992 if (*p
== K_SPECIAL
)
8994 arg
[len
++] = KS_SPECIAL
;
8995 arg
[len
++] = KE_FILLER
;
9000 arg
[len
++] = KS_EXTRA
;
9001 arg
[len
++] = (int)KE_CSI
;
9013 * Save the current typeahead. This is required to allow using ":normal"
9014 * from an event handler and makes sure we don't hang when the argument
9015 * ends with half a command.
9017 save_typeahead(&tabuf
);
9018 if (tabuf
.typebuf_valid
)
9021 * Repeat the :normal command for each line in the range. When no
9022 * range given, execute it just once, without positioning the cursor
9027 if (eap
->addr_count
!= 0)
9029 curwin
->w_cursor
.lnum
= eap
->line1
++;
9030 curwin
->w_cursor
.col
= 0;
9037 eap
->arg
, eap
->forceit
? REMAP_NONE
: REMAP_YES
, FALSE
);
9039 while (eap
->addr_count
> 0 && eap
->line1
<= eap
->line2
&& !got_int
);
9042 /* Might not return to the main loop when in an event handler. */
9043 update_topline_cursor();
9045 /* Restore the previous typeahead. */
9046 restore_typeahead(&tabuf
);
9049 msg_scroll
= save_msg_scroll
;
9050 restart_edit
= save_restart_edit
;
9051 p_im
= save_insertmode
;
9052 finish_op
= save_finish_op
;
9053 msg_didout
|= save_msg_didout
; /* don't reset msg_didout now */
9055 /* Restore the state (needed when called from a function executed for
9064 * ":startinsert", ":startreplace" and ":startgreplace"
9072 coladvance((colnr_T
)MAXCOL
);
9073 curwin
->w_curswant
= MAXCOL
;
9074 curwin
->w_set_curswant
= FALSE
;
9077 /* Ignore the command when already in Insert mode. Inserting an
9078 * expression register that invokes a function can do this. */
9082 if (eap
->cmdidx
== CMD_startinsert
)
9084 else if (eap
->cmdidx
== CMD_startreplace
)
9091 if (eap
->cmdidx
== CMD_startinsert
)
9093 curwin
->w_curswant
= 0; /* avoid MAXCOL */
9106 stop_insert_mode
= TRUE
;
9110 #if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9112 * Execute normal mode command "cmd".
9113 * "remap" can be REMAP_NONE or REMAP_YES.
9116 exec_normal_cmd(cmd
, remap
, silent
)
9124 * Stuff the argument into the typeahead buffer.
9125 * Execute normal_cmd() until there is no typeahead left.
9129 ins_typebuf(cmd
, remap
, 0, TRUE
, silent
);
9130 while ((!stuff_empty() || (!typebuf_typed() && typebuf
.tb_len
> 0))
9133 update_topline_cursor();
9134 normal_cmd(&oa
, FALSE
); /* execute a Normal mode cmd */
9144 find_pattern_in_path(NULL
, 0, 0, FALSE
, FALSE
, CHECK_PATH
, 1L,
9145 eap
->forceit
? ACTION_SHOW_ALL
: ACTION_SHOW
,
9146 (linenr_T
)1, (linenr_T
)MAXLNUM
);
9149 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9157 g_do_tagpreview
= p_pvh
;
9159 g_do_tagpreview
= 0;
9172 switch (cmdnames
[eap
->cmdidx
].cmd_name
[2])
9174 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9175 if (cmdnames
[eap
->cmdidx
].cmd_name
[0] == 'p')
9176 action
= ACTION_GOTO
;
9178 action
= ACTION_SHOW
;
9180 case 'i': /* ":ilist" and ":dlist" */
9181 action
= ACTION_SHOW_ALL
;
9183 case 'u': /* ":ijump" and ":djump" */
9184 action
= ACTION_GOTO
;
9186 default: /* ":isplit" and ":dsplit" */
9187 action
= ACTION_SPLIT
;
9192 if (vim_isdigit(*eap
->arg
)) /* get count */
9194 n
= getdigits(&eap
->arg
);
9195 eap
->arg
= skipwhite(eap
->arg
);
9197 if (*eap
->arg
== '/') /* Match regexp, not just whole words */
9201 p
= skip_regexp(eap
->arg
, '/', p_magic
, NULL
);
9207 /* Check for trailing illegal characters */
9208 if (!ends_excmd(*p
))
9209 eap
->errmsg
= e_trailing
;
9211 eap
->nextcmd
= check_nextcmd(p
);
9215 find_pattern_in_path(eap
->arg
, 0, (int)STRLEN(eap
->arg
),
9216 whole
, !eap
->forceit
,
9217 *eap
->cmd
== 'd' ? FIND_DEFINE
: FIND_ANY
,
9218 n
, action
, eap
->line1
, eap
->line2
);
9224 # ifdef FEAT_QUICKFIX
9226 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9232 g_do_tagpreview
= p_pvh
;
9233 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
+ 1);
9243 win_T
*curwin_save
= curwin
;
9245 g_do_tagpreview
= p_pvh
;
9246 prepare_tagpreview(TRUE
);
9247 keep_help_flag
= curwin_save
->w_buffer
->b_help
;
9248 do_exedit(eap
, NULL
);
9249 keep_help_flag
= FALSE
;
9250 if (curwin
!= curwin_save
&& win_valid(curwin_save
))
9252 /* Return cursor to where we were */
9254 redraw_later(VALID
);
9255 win_enter(curwin_save
, TRUE
);
9257 g_do_tagpreview
= 0;
9262 * ":stag", ":stselect" and ":stjump".
9268 postponed_split
= -1;
9269 postponed_split_flags
= cmdmod
.split
;
9270 postponed_split_tab
= cmdmod
.tab
;
9271 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
+ 1);
9272 postponed_split_flags
= 0;
9273 postponed_split_tab
= 0;
9278 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9284 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
);
9288 ex_tag_cmd(eap
, name
)
9296 case 'j': cmd
= DT_JUMP
; /* ":tjump" */
9298 case 's': cmd
= DT_SELECT
; /* ":tselect" */
9300 case 'p': cmd
= DT_PREV
; /* ":tprevious" */
9302 case 'N': cmd
= DT_PREV
; /* ":tNext" */
9304 case 'n': cmd
= DT_NEXT
; /* ":tnext" */
9306 case 'o': cmd
= DT_POP
; /* ":pop" */
9308 case 'f': /* ":tfirst" */
9309 case 'r': cmd
= DT_FIRST
; /* ":trewind" */
9311 case 'l': cmd
= DT_LAST
; /* ":tlast" */
9313 default: /* ":tag" */
9327 #ifndef FEAT_QUICKFIX
9335 do_tag(eap
->arg
, cmd
, eap
->addr_count
> 0 ? (int)eap
->line2
: 1,
9336 eap
->forceit
, TRUE
);
9340 * Evaluate cmdline variables.
9342 * change '%' to curbuf->b_ffname
9343 * '#' to curwin->w_altfile
9344 * '<cword>' to word under the cursor
9345 * '<cWORD>' to WORD under the cursor
9346 * '<cfile>' to path name under the cursor
9347 * '<sfile>' to sourced file name
9348 * '<afile>' to file name for autocommand
9349 * '<abuf>' to buffer number for autocommand
9350 * '<amatch>' to matching name for autocommand
9352 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9353 * "" for error without a message) and NULL is returned.
9354 * Returns an allocated string if a valid match was found.
9355 * Returns NULL if no match was found. "usedlen" then still contains the
9356 * number of characters to skip.
9359 eval_vars(src
, srcstart
, usedlen
, lnump
, errormsg
, escaped
)
9360 char_u
*src
; /* pointer into commandline */
9361 char_u
*srcstart
; /* beginning of valid memory for src */
9362 int *usedlen
; /* characters after src that are used */
9363 linenr_T
*lnump
; /* line number for :e command, or NULL */
9364 char_u
**errormsg
; /* pointer to error message */
9365 int *escaped
; /* return value has escaped white space (can
9371 char_u
*resultbuf
= NULL
;
9374 int valid
= VALID_HEAD
+ VALID_PATH
; /* assume valid result */
9376 #ifdef FEAT_MODIFY_FNAME
9377 int skip_mod
= FALSE
;
9379 static char *(spec_str
[]) =
9385 "<cword>", /* cursor word */
9386 #define SPEC_CWORD 2
9387 "<cWORD>", /* cursor WORD */
9388 #define SPEC_CCWORD 3
9389 "<cfile>", /* cursor path name */
9390 #define SPEC_CFILE 4
9391 "<sfile>", /* ":so" file name */
9392 #define SPEC_SFILE 5
9394 "<afile>", /* autocommand file name */
9395 # define SPEC_AFILE 6
9396 "<abuf>", /* autocommand buffer number */
9397 # define SPEC_ABUF 7
9398 "<amatch>", /* autocommand match name */
9399 # define SPEC_AMATCH 8
9401 #ifdef FEAT_CLIENTSERVER
9403 # define SPEC_CLIENT 9
9406 #define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9408 #if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9413 if (escaped
!= NULL
)
9417 * Check if there is something to do.
9419 for (spec_idx
= 0; spec_idx
< SPEC_COUNT
; ++spec_idx
)
9421 *usedlen
= (int)STRLEN(spec_str
[spec_idx
]);
9422 if (STRNCMP(src
, spec_str
[spec_idx
], *usedlen
) == 0)
9425 if (spec_idx
== SPEC_COUNT
) /* no match */
9432 * Skip when preceded with a backslash "\%" and "\#".
9433 * Note: In "\\%" the % is also not recognized!
9435 if (src
> srcstart
&& src
[-1] == '\\')
9438 mch_memmove(src
- 1, src
, STRLEN(src
) + 1); /* remove backslash */
9443 * word or WORD under cursor
9445 if (spec_idx
== SPEC_CWORD
|| spec_idx
== SPEC_CCWORD
)
9447 resultlen
= find_ident_under_cursor(&result
, spec_idx
== SPEC_CWORD
?
9448 (FIND_IDENT
|FIND_STRING
) : FIND_STRING
);
9451 *errormsg
= (char_u
*)"";
9457 * '#': Alternate file name
9458 * '%': Current file name
9459 * File name under the cursor
9460 * File name for autocommand
9461 * and following modifiers
9467 case SPEC_PERC
: /* '%': current file */
9468 if (curbuf
->b_fname
== NULL
)
9470 result
= (char_u
*)"";
9471 valid
= 0; /* Must have ":p:h" to be valid */
9475 /* Always use the full path for RISC OS if possible. */
9476 result
= curbuf
->b_ffname
;
9478 result
= curbuf
->b_fname
;
9480 result
= curbuf
->b_fname
;
9484 case SPEC_HASH
: /* '#' or "#99": alternate file */
9485 if (src
[1] == '#') /* "##": the argument list */
9490 if (escaped
!= NULL
)
9492 #ifdef FEAT_MODIFY_FNAME
9498 i
= (int)getdigits(&s
);
9499 *usedlen
= (int)(s
- src
); /* length of what we expand */
9501 buf
= buflist_findnr(i
);
9504 *errormsg
= (char_u
*)_("E194: No alternate file name to substitute for '#'");
9509 if (buf
->b_fname
== NULL
)
9511 result
= (char_u
*)"";
9512 valid
= 0; /* Must have ":p:h" to be valid */
9515 result
= buf
->b_fname
;
9518 #ifdef FEAT_SEARCHPATH
9519 case SPEC_CFILE
: /* file name under cursor */
9520 result
= file_name_at_cursor(FNAME_MESS
|FNAME_HYP
, 1L, NULL
);
9523 *errormsg
= (char_u
*)"";
9526 resultbuf
= result
; /* remember allocated string */
9531 case SPEC_AFILE
: /* file name for autocommand */
9532 result
= autocmd_fname
;
9535 *errormsg
= (char_u
*)_("E495: no autocommand file name to substitute for \"<afile>\"");
9538 result
= shorten_fname1(result
);
9541 case SPEC_ABUF
: /* buffer number for autocommand */
9542 if (autocmd_bufnr
<= 0)
9544 *errormsg
= (char_u
*)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9547 sprintf((char *)strbuf
, "%d", autocmd_bufnr
);
9551 case SPEC_AMATCH
: /* match name for autocommand */
9552 result
= autocmd_match
;
9555 *errormsg
= (char_u
*)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9561 case SPEC_SFILE
: /* file name for ":so" command */
9562 result
= sourcing_name
;
9565 *errormsg
= (char_u
*)_("E498: no :source file name to substitute for \"<sfile>\"");
9569 #if defined(FEAT_CLIENTSERVER)
9570 case SPEC_CLIENT
: /* Source of last submitted input */
9571 sprintf((char *)strbuf
, PRINTF_HEX_LONG_U
,
9572 (long_u
)clientWindow
);
9578 resultlen
= (int)STRLEN(result
); /* length of new string */
9579 if (src
[*usedlen
] == '<') /* remove the file name extension */
9583 if ((s
= vim_strrchr(result
, '/')) != NULL
&& s
>= gettail(result
))
9585 if ((s
= vim_strrchr(result
, '.')) != NULL
&& s
>= gettail(result
))
9587 resultlen
= (int)(s
- result
);
9589 #ifdef FEAT_MODIFY_FNAME
9592 valid
|= modify_fname(src
, usedlen
, &result
, &resultbuf
,
9596 *errormsg
= (char_u
*)"";
9603 if (resultlen
== 0 || valid
!= VALID_HEAD
+ VALID_PATH
)
9605 if (valid
!= VALID_HEAD
+ VALID_PATH
)
9606 /* xgettext:no-c-format */
9607 *errormsg
= (char_u
*)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9609 *errormsg
= (char_u
*)_("E500: Evaluates to an empty string");
9613 result
= vim_strnsave(result
, resultlen
);
9614 vim_free(resultbuf
);
9619 * Concatenate all files in the argument list, separated by spaces, and return
9620 * it in one allocated string.
9621 * Spaces and backslashes in the file names are escaped with a backslash.
9622 * Returns NULL when out of memory.
9629 char_u
*retval
= NULL
;
9633 * Do this loop two times:
9634 * first time: compute the total length
9635 * second time: concatenate the names
9640 for (idx
= 0; idx
< ARGCOUNT
; ++idx
)
9642 p
= alist_name(&ARGLIST
[idx
]);
9647 /* insert a space in between names */
9652 for ( ; *p
!= NUL
; ++p
)
9654 if (*p
== ' ' || *p
== '\\')
9656 /* insert a backslash */
9668 /* second time: break here */
9675 /* allocate memory */
9676 retval
= alloc(len
+ 1);
9684 #if defined(FEAT_AUTOCMD) || defined(PROTO)
9686 * Expand the <sfile> string in "arg".
9688 * Returns an allocated string, or NULL for any error.
9702 result
= vim_strsave(arg
);
9706 for (p
= result
; *p
; )
9708 if (STRNCMP(p
, "<sfile>", 7) != 0)
9712 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
9713 repl
= eval_vars(p
, result
, &srclen
, NULL
, &errormsg
, NULL
);
9714 if (errormsg
!= NULL
)
9721 if (repl
== NULL
) /* no match (cannot happen) */
9726 len
= (int)STRLEN(result
) - srclen
+ (int)STRLEN(repl
) + 1;
9727 newres
= alloc(len
);
9734 mch_memmove(newres
, result
, (size_t)(p
- result
));
9735 STRCPY(newres
+ (p
- result
), repl
);
9736 len
= (int)STRLEN(newres
);
9737 STRCAT(newres
, p
+ srclen
);
9741 p
= newres
+ len
; /* continue after the match */
9750 static int ses_winsizes
__ARGS((FILE *fd
, int restore_size
,
9751 win_T
*tab_firstwin
));
9752 static int ses_win_rec
__ARGS((FILE *fd
, frame_T
*fr
));
9753 static frame_T
*ses_skipframe
__ARGS((frame_T
*fr
));
9754 static int ses_do_frame
__ARGS((frame_T
*fr
));
9755 static int ses_do_win
__ARGS((win_T
*wp
));
9756 static int ses_arglist
__ARGS((FILE *fd
, char *cmd
, garray_T
*gap
, int fullname
, unsigned *flagp
));
9757 static int ses_put_fname
__ARGS((FILE *fd
, char_u
*name
, unsigned *flagp
));
9758 static int ses_fname
__ARGS((FILE *fd
, buf_T
*buf
, unsigned *flagp
));
9761 * Write openfile commands for the current buffers to an .exrc file.
9762 * Return FAIL on error, OK otherwise.
9765 makeopens(fd
, dirnow
)
9767 char_u
*dirnow
; /* Current directory name */
9770 int only_save_windows
= TRUE
;
9773 int restore_size
= TRUE
;
9776 win_T
*edited_win
= NULL
;
9778 win_T
*tab_firstwin
;
9779 frame_T
*tab_topframe
;
9780 int cur_arg_idx
= 0;
9781 int next_arg_idx
= 0;
9783 if (ssop_flags
& SSOP_BUFFERS
)
9784 only_save_windows
= FALSE
; /* Save ALL buffers */
9787 * Begin by setting the this_session variable, and then other
9788 * sessionable variables.
9791 if (put_line(fd
, "let v:this_session=expand(\"<sfile>:p\")") == FAIL
)
9793 if (ssop_flags
& SSOP_GLOBALS
)
9794 if (store_session_globals(fd
) == FAIL
)
9799 * Close all windows but one.
9801 if (put_line(fd
, "silent only") == FAIL
)
9805 * Now a :cd command to the session directory or the current directory
9807 if (ssop_flags
& SSOP_SESDIR
)
9809 if (put_line(fd
, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9813 else if (ssop_flags
& SSOP_CURDIR
)
9815 sname
= home_replace_save(NULL
, globaldir
!= NULL
? globaldir
: dirnow
);
9817 || fputs("cd ", fd
) < 0
9818 || ses_put_fname(fd
, sname
, &ssop_flags
) == FAIL
9819 || put_eol(fd
) == FAIL
)
9828 * If there is an empty, unnamed buffer we will wipe it out later.
9829 * Remember the buffer number.
9831 if (put_line(fd
, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL
)
9833 if (put_line(fd
, " let s:wipebuf = bufnr('%')") == FAIL
)
9835 if (put_line(fd
, "endif") == FAIL
)
9839 * Now save the current files, current buffer first.
9841 if (put_line(fd
, "set shortmess=aoO") == FAIL
)
9844 /* Now put the other buffers into the buffer list */
9845 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
9847 if (!(only_save_windows
&& buf
->b_nwindows
== 0)
9848 && !(buf
->b_help
&& !(ssop_flags
& SSOP_HELP
))
9849 && buf
->b_fname
!= NULL
9852 if (fprintf(fd
, "badd +%ld ", buf
->b_wininfo
== NULL
? 1L
9853 : buf
->b_wininfo
->wi_fpos
.lnum
) < 0
9854 || ses_fname(fd
, buf
, &ssop_flags
) == FAIL
)
9859 /* the global argument list */
9860 if (ses_arglist(fd
, "args", &global_alist
.al_ga
,
9861 !(ssop_flags
& SSOP_CURDIR
), &ssop_flags
) == FAIL
)
9864 if (ssop_flags
& SSOP_RESIZE
)
9866 /* Note: after the restore we still check it worked!*/
9867 if (fprintf(fd
, "set lines=%ld columns=%ld" , Rows
, Columns
) < 0
9868 || put_eol(fd
) == FAIL
)
9873 if (gui
.in_use
&& (ssop_flags
& SSOP_WINPOS
))
9877 if (gui_mch_get_winpos(&x
, &y
) == OK
)
9879 /* Note: after the restore we still check it worked!*/
9880 if (fprintf(fd
, "winpos %d %d", x
, y
) < 0 || put_eol(fd
) == FAIL
)
9887 * May repeat putting Windows for each tab, when "tabpages" is in
9889 * Don't use goto_tabpage(), it may change directory and trigger
9892 tab_firstwin
= firstwin
; /* first window in tab page "tabnr" */
9893 tab_topframe
= topframe
;
9894 for (tabnr
= 1; ; ++tabnr
)
9896 int need_tabnew
= FALSE
;
9898 if ((ssop_flags
& SSOP_TABPAGES
))
9900 tabpage_T
*tp
= find_tabpage(tabnr
);
9903 break; /* done all tab pages */
9906 tab_firstwin
= firstwin
;
9907 tab_topframe
= topframe
;
9911 tab_firstwin
= tp
->tp_firstwin
;
9912 tab_topframe
= tp
->tp_topframe
;
9919 * Before creating the window layout, try loading one file. If this
9920 * is aborted we don't end up with a number of useless windows.
9921 * This may have side effects! (e.g., compressed or network file).
9923 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
9926 && wp
->w_buffer
->b_ffname
!= NULL
9927 && !wp
->w_buffer
->b_help
9928 #ifdef FEAT_QUICKFIX
9929 && !bt_nofile(wp
->w_buffer
)
9933 if (fputs(need_tabnew
? "tabedit " : "edit ", fd
) < 0
9934 || ses_fname(fd
, wp
->w_buffer
, &ssop_flags
) == FAIL
)
9936 need_tabnew
= FALSE
;
9937 if (!wp
->w_arg_idx_invalid
)
9943 /* If no file got edited create an empty tab page. */
9944 if (need_tabnew
&& put_line(fd
, "tabnew") == FAIL
)
9948 * Save current window layout.
9950 if (put_line(fd
, "set splitbelow splitright") == FAIL
)
9952 if (ses_win_rec(fd
, tab_topframe
) == FAIL
)
9954 if (!p_sb
&& put_line(fd
, "set nosplitbelow") == FAIL
)
9956 if (!p_spr
&& put_line(fd
, "set nosplitright") == FAIL
)
9960 * Check if window sizes can be restored (no windows omitted).
9961 * Remember the window number of the current window after restoring.
9964 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= W_NEXT(wp
))
9969 restore_size
= FALSE
;
9974 /* Go to the first window. */
9975 if (put_line(fd
, "wincmd t") == FAIL
)
9979 * If more than one window, see if sizes can be restored.
9980 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
9981 * resized when moving between windows.
9982 * Do this before restoring the view, so that the topline and the
9983 * cursor can be set. This is done again below.
9985 if (put_line(fd
, "set winheight=1 winwidth=1") == FAIL
)
9987 if (nr
> 1 && ses_winsizes(fd
, restore_size
, tab_firstwin
) == FAIL
)
9991 * Restore the view of the window (options, file, cursor, etc.).
9993 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
9995 if (!ses_do_win(wp
))
9997 if (put_view(fd
, wp
, wp
!= edited_win
, &ssop_flags
,
9998 cur_arg_idx
) == FAIL
)
10000 if (nr
> 1 && put_line(fd
, "wincmd w") == FAIL
)
10002 next_arg_idx
= wp
->w_arg_idx
;
10005 /* The argument index in the first tab page is zero, need to set it in
10006 * each window. For further tab pages it's the window where we do
10008 cur_arg_idx
= next_arg_idx
;
10011 * Restore cursor to the current window if it's not the first one.
10013 if (cnr
> 1 && (fprintf(fd
, "%dwincmd w", cnr
) < 0
10014 || put_eol(fd
) == FAIL
))
10018 * Restore window sizes again after jumping around in windows, because
10019 * the current window has a minimum size while others may not.
10021 if (nr
> 1 && ses_winsizes(fd
, restore_size
, tab_firstwin
) == FAIL
)
10024 /* Don't continue in another tab page when doing only the current one
10025 * or when at the last tab page. */
10026 if (!(ssop_flags
& SSOP_TABPAGES
))
10030 if (ssop_flags
& SSOP_TABPAGES
)
10032 if (fprintf(fd
, "tabnext %d", tabpage_index(curtab
)) < 0
10033 || put_eol(fd
) == FAIL
)
10038 * Wipe out an empty unnamed buffer we started in.
10040 if (put_line(fd
, "if exists('s:wipebuf')") == FAIL
)
10042 if (put_line(fd
, " silent exe 'bwipe ' . s:wipebuf") == FAIL
)
10044 if (put_line(fd
, "endif") == FAIL
)
10046 if (put_line(fd
, "unlet! s:wipebuf") == FAIL
)
10049 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10050 if (fprintf(fd
, "set winheight=%ld winwidth=%ld shortmess=%s",
10051 p_wh
, p_wiw
, p_shm
) < 0 || put_eol(fd
) == FAIL
)
10055 * Lastly, execute the x.vim file if it exists.
10057 if (put_line(fd
, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10058 || put_line(fd
, "if file_readable(s:sx)") == FAIL
10059 || put_line(fd
, " exe \"source \" . s:sx") == FAIL
10060 || put_line(fd
, "endif") == FAIL
)
10067 ses_winsizes(fd
, restore_size
, tab_firstwin
)
10070 win_T
*tab_firstwin
;
10075 if (restore_size
&& (ssop_flags
& SSOP_WINSIZE
))
10077 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
10079 if (!ses_do_win(wp
))
10083 /* restore height when not full height */
10084 if (wp
->w_height
+ wp
->w_status_height
< topframe
->fr_height
10086 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10087 n
, (long)wp
->w_height
, Rows
/ 2, Rows
) < 0
10088 || put_eol(fd
) == FAIL
))
10091 /* restore width when not full width */
10092 if (wp
->w_width
< Columns
&& (fprintf(fd
,
10093 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10094 n
, (long)wp
->w_width
, Columns
/ 2, Columns
) < 0
10095 || put_eol(fd
) == FAIL
))
10101 /* Just equalise window sizes */
10102 if (put_line(fd
, "wincmd =") == FAIL
)
10109 * Write commands to "fd" to recursively create windows for frame "fr",
10110 * horizontally and vertically split.
10111 * After the commands the last window in the frame is the current window.
10112 * Returns FAIL when writing the commands to "fd" fails.
10115 ses_win_rec(fd
, fr
)
10122 if (fr
->fr_layout
!= FR_LEAF
)
10124 /* Find first frame that's not skipped and then create a window for
10125 * each following one (first frame is already there). */
10126 frc
= ses_skipframe(fr
->fr_child
);
10128 while ((frc
= ses_skipframe(frc
->fr_next
)) != NULL
)
10130 /* Make window as big as possible so that we have lots of room
10132 if (put_line(fd
, "wincmd _ | wincmd |") == FAIL
10133 || put_line(fd
, fr
->fr_layout
== FR_COL
10134 ? "split" : "vsplit") == FAIL
)
10139 /* Go back to the first window. */
10140 if (count
> 0 && (fprintf(fd
, fr
->fr_layout
== FR_COL
10141 ? "%dwincmd k" : "%dwincmd h", count
) < 0
10142 || put_eol(fd
) == FAIL
))
10145 /* Recursively create frames/windows in each window of this column or
10147 frc
= ses_skipframe(fr
->fr_child
);
10148 while (frc
!= NULL
)
10150 ses_win_rec(fd
, frc
);
10151 frc
= ses_skipframe(frc
->fr_next
);
10152 /* Go to next window. */
10153 if (frc
!= NULL
&& put_line(fd
, "wincmd w") == FAIL
)
10161 * Skip frames that don't contain windows we want to save in the Session.
10162 * Returns NULL when there none.
10170 for (frc
= fr
; frc
!= NULL
; frc
= frc
->fr_next
)
10171 if (ses_do_frame(frc
))
10177 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10186 if (fr
->fr_layout
== FR_LEAF
)
10187 return ses_do_win(fr
->fr_win
);
10188 for (frc
= fr
->fr_child
; frc
!= NULL
; frc
= frc
->fr_next
)
10189 if (ses_do_frame(frc
))
10195 * Return non-zero if window "wp" is to be stored in the Session.
10201 if (wp
->w_buffer
->b_fname
== NULL
10202 #ifdef FEAT_QUICKFIX
10203 /* When 'buftype' is "nofile" can't restore the window contents. */
10204 || bt_nofile(wp
->w_buffer
)
10207 return (ssop_flags
& SSOP_BLANK
);
10208 if (wp
->w_buffer
->b_help
)
10209 return (ssop_flags
& SSOP_HELP
);
10214 * Write commands to "fd" to restore the view of a window.
10215 * Caller must make sure 'scrolloff' is zero.
10218 put_view(fd
, wp
, add_edit
, flagp
, current_arg_idx
)
10221 int add_edit
; /* add ":edit" command to view */
10222 unsigned *flagp
; /* vop_flags or ssop_flags */
10223 int current_arg_idx
; /* current argument index of the window, use
10226 win_T
*save_curwin
;
10229 int did_next
= FALSE
;
10231 /* Always restore cursor position for ":mksession". For ":mkview" only
10232 * when 'viewoptions' contains "cursor". */
10233 do_cursor
= (flagp
== &ssop_flags
|| *flagp
& SSOP_CURSOR
);
10236 * Local argument list.
10238 if (wp
->w_alist
== &global_alist
)
10240 if (put_line(fd
, "argglobal") == FAIL
)
10245 if (ses_arglist(fd
, "arglocal", &wp
->w_alist
->al_ga
,
10246 flagp
== &vop_flags
10247 || !(*flagp
& SSOP_CURDIR
)
10248 || wp
->w_localdir
!= NULL
, flagp
) == FAIL
)
10252 /* Only when part of a session: restore the argument index. Some
10253 * arguments may have been deleted, check if the index is valid. */
10254 if (wp
->w_arg_idx
!= current_arg_idx
&& wp
->w_arg_idx
<= WARGCOUNT(wp
)
10255 && flagp
== &ssop_flags
)
10257 if (fprintf(fd
, "%ldargu", (long)wp
->w_arg_idx
+ 1) < 0
10258 || put_eol(fd
) == FAIL
)
10263 /* Edit the file. Skip this when ":next" already did it. */
10264 if (add_edit
&& (!did_next
|| wp
->w_arg_idx_invalid
))
10269 if (wp
->w_buffer
->b_ffname
!= NULL
10270 #ifdef FEAT_QUICKFIX
10271 && !bt_nofile(wp
->w_buffer
)
10276 * Editing a file in this buffer: use ":edit file".
10277 * This may have side effects! (e.g., compressed or network file).
10279 if (fputs("edit ", fd
) < 0
10280 || ses_fname(fd
, wp
->w_buffer
, flagp
) == FAIL
)
10285 /* No file in this buffer, just make it empty. */
10286 if (put_line(fd
, "enew") == FAIL
)
10288 #ifdef FEAT_QUICKFIX
10289 if (wp
->w_buffer
->b_ffname
!= NULL
)
10291 /* The buffer does have a name, but it's not a file name. */
10292 if (fputs("file ", fd
) < 0
10293 || ses_fname(fd
, wp
->w_buffer
, flagp
) == FAIL
)
10302 * Local mappings and abbreviations.
10304 if ((*flagp
& (SSOP_OPTIONS
| SSOP_LOCALOPTIONS
))
10305 && makemap(fd
, wp
->w_buffer
) == FAIL
)
10309 * Local options. Need to go to the window temporarily.
10310 * Store only local values when using ":mkview" and when ":mksession" is
10311 * used and 'sessionoptions' doesn't include "options".
10312 * Some folding options are always stored when "folds" is included,
10313 * otherwise the folds would not be restored correctly.
10315 save_curwin
= curwin
;
10317 curbuf
= curwin
->w_buffer
;
10318 if (*flagp
& (SSOP_OPTIONS
| SSOP_LOCALOPTIONS
))
10319 f
= makeset(fd
, OPT_LOCAL
,
10320 flagp
== &vop_flags
|| !(*flagp
& SSOP_OPTIONS
));
10321 #ifdef FEAT_FOLDING
10322 else if (*flagp
& SSOP_FOLDS
)
10323 f
= makefoldset(fd
);
10327 curwin
= save_curwin
;
10328 curbuf
= curwin
->w_buffer
;
10332 #ifdef FEAT_FOLDING
10334 * Save Folds when 'buftype' is empty and for help files.
10336 if ((*flagp
& SSOP_FOLDS
)
10337 && wp
->w_buffer
->b_ffname
!= NULL
10338 # ifdef FEAT_QUICKFIX
10339 && (*wp
->w_buffer
->b_p_bt
== NUL
|| wp
->w_buffer
->b_help
)
10343 if (put_folds(fd
, wp
) == FAIL
)
10349 * Set the cursor after creating folds, since that moves the cursor.
10354 /* Restore the cursor line in the file and relatively in the
10355 * window. Don't use "G", it changes the jumplist. */
10356 if (fprintf(fd
, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10357 (long)wp
->w_cursor
.lnum
,
10358 (long)(wp
->w_cursor
.lnum
- wp
->w_topline
),
10359 (long)wp
->w_height
/ 2, (long)wp
->w_height
) < 0
10360 || put_eol(fd
) == FAIL
10361 || put_line(fd
, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10362 || put_line(fd
, "exe s:l") == FAIL
10363 || put_line(fd
, "normal! zt") == FAIL
10364 || fprintf(fd
, "%ld", (long)wp
->w_cursor
.lnum
) < 0
10365 || put_eol(fd
) == FAIL
)
10367 /* Restore the cursor column and left offset when not wrapping. */
10368 if (wp
->w_cursor
.col
== 0)
10370 if (put_line(fd
, "normal! 0") == FAIL
)
10375 if (!wp
->w_p_wrap
&& wp
->w_leftcol
> 0 && wp
->w_width
> 0)
10378 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10379 (long)wp
->w_cursor
.col
,
10380 (long)(wp
->w_cursor
.col
- wp
->w_leftcol
),
10381 (long)wp
->w_width
/ 2, (long)wp
->w_width
) < 0
10382 || put_eol(fd
) == FAIL
10383 || put_line(fd
, "if s:c > 0") == FAIL
10385 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10386 (long)wp
->w_cursor
.col
) < 0
10387 || put_eol(fd
) == FAIL
10388 || put_line(fd
, "else") == FAIL
10389 || fprintf(fd
, " normal! 0%dl", wp
->w_cursor
.col
) < 0
10390 || put_eol(fd
) == FAIL
10391 || put_line(fd
, "endif") == FAIL
)
10396 if (fprintf(fd
, "normal! 0%dl", wp
->w_cursor
.col
) < 0
10397 || put_eol(fd
) == FAIL
)
10406 if (wp
->w_localdir
!= NULL
)
10408 if (fputs("lcd ", fd
) < 0
10409 || ses_put_fname(fd
, wp
->w_localdir
, flagp
) == FAIL
10410 || put_eol(fd
) == FAIL
)
10419 * Write an argument list to the session file.
10420 * Returns FAIL if writing fails.
10423 ses_arglist(fd
, cmd
, gap
, fullname
, flagp
)
10427 int fullname
; /* TRUE: use full path name */
10431 char_u buf
[MAXPATHL
];
10434 if (gap
->ga_len
== 0)
10435 return put_line(fd
, "silent! argdel *");
10436 if (fputs(cmd
, fd
) < 0)
10438 for (i
= 0; i
< gap
->ga_len
; ++i
)
10440 /* NULL file names are skipped (only happens when out of memory). */
10441 s
= alist_name(&((aentry_T
*)gap
->ga_data
)[i
]);
10446 (void)vim_FullName(s
, buf
, MAXPATHL
, FALSE
);
10449 if (fputs(" ", fd
) < 0 || ses_put_fname(fd
, s
, flagp
) == FAIL
)
10453 return put_eol(fd
);
10457 * Write a buffer name to the session file.
10458 * Also ends the line.
10459 * Returns FAIL if writing fails.
10462 ses_fname(fd
, buf
, flagp
)
10469 /* Use the short file name if the current directory is known at the time
10470 * the session file will be sourced.
10471 * Don't do this for ":mkview", we don't know the current directory.
10472 * Don't do this after ":lcd", we don't keep track of what the current
10474 if (buf
->b_sfname
!= NULL
10475 && flagp
== &ssop_flags
10476 && (ssop_flags
& (SSOP_CURDIR
| SSOP_SESDIR
))
10478 name
= buf
->b_sfname
;
10480 name
= buf
->b_ffname
;
10481 if (ses_put_fname(fd
, name
, flagp
) == FAIL
|| put_eol(fd
) == FAIL
)
10487 * Write a file name to the session file.
10488 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10490 * Returns FAIL if writing fails.
10493 ses_put_fname(fd
, name
, flagp
)
10502 sname
= home_replace_save(NULL
, name
);
10505 while (*name
!= NUL
)
10511 if (has_mbyte
&& (l
= (*mb_ptr2len
)(name
)) > 1)
10513 /* copy a multibyte char */
10516 if (putc(*name
, fd
) != *name
)
10525 if (c
== '\\' && (*flagp
& SSOP_SLASH
))
10526 /* change a backslash to a forward slash */
10528 else if ((vim_strchr(escape_chars
, c
) != NULL
10529 #ifdef BACKSLASH_IN_FILENAME
10532 ) || c
== '#' || c
== '%')
10534 /* escape a special character with a backslash */
10535 if (putc('\\', fd
) != '\\')
10538 if (putc(c
, fd
) != c
)
10554 fname
= get_view_file(*eap
->arg
);
10557 do_source(fname
, FALSE
, DOSO_NONE
);
10563 * Get the name of the view file for the current buffer.
10574 if (curbuf
->b_ffname
== NULL
)
10579 sname
= home_replace_save(NULL
, curbuf
->b_ffname
);
10584 * We want a file name without separators, because we're not going to make
10586 * "normal" path separator -> "=+"
10588 * ":" path separator -> "=-"
10590 for (p
= sname
; *p
; ++p
)
10591 if (*p
== '=' || vim_ispathsep(*p
))
10593 retval
= alloc((unsigned)(STRLEN(sname
) + len
+ STRLEN(p_vdir
) + 9));
10594 if (retval
!= NULL
)
10596 STRCPY(retval
, p_vdir
);
10597 add_pathsep(retval
);
10598 s
= retval
+ STRLEN(retval
);
10599 for (p
= sname
; *p
; ++p
)
10606 else if (vim_ispathsep(*p
))
10609 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
10629 #endif /* FEAT_SESSION */
10632 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10633 * Return FAIL for a write error.
10642 # ifdef MKSESSION_NL
10645 (putc('\r', fd
) < 0)) ||
10647 (putc('\n', fd
) < 0))
10653 * Write a line to "fd".
10654 * Return FAIL for a write error.
10661 if (fputs(s
, fd
) < 0 || put_eol(fd
) == FAIL
)
10666 #ifdef FEAT_VIMINFO
10668 * ":rviminfo" and ":wviminfo".
10674 char_u
*save_viminfo
;
10676 save_viminfo
= p_viminfo
;
10677 if (*p_viminfo
== NUL
)
10678 p_viminfo
= (char_u
*)"'100";
10679 if (eap
->cmdidx
== CMD_rviminfo
)
10681 if (read_viminfo(eap
->arg
, TRUE
, TRUE
, eap
->forceit
) == FAIL
)
10682 EMSG(_("E195: Cannot open viminfo file for reading"));
10685 write_viminfo(eap
->arg
, eap
->forceit
);
10686 p_viminfo
= save_viminfo
;
10690 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
10692 * Make a dialog message in "buff[IOSIZE]".
10693 * "format" must contain "%s".
10696 dialog_msg(buff
, format
, fname
)
10702 fname
= (char_u
*)_("Untitled");
10703 vim_snprintf((char *)buff
, IOSIZE
, format
, fname
);
10708 * ":behave {mswin,xterm}"
10714 if (STRCMP(eap
->arg
, "mswin") == 0)
10716 set_option_value((char_u
*)"selection", 0L, (char_u
*)"exclusive", 0);
10717 set_option_value((char_u
*)"selectmode", 0L, (char_u
*)"mouse,key", 0);
10718 set_option_value((char_u
*)"mousemodel", 0L, (char_u
*)"popup", 0);
10719 set_option_value((char_u
*)"keymodel", 0L,
10720 (char_u
*)"startsel,stopsel", 0);
10722 else if (STRCMP(eap
->arg
, "xterm") == 0)
10724 set_option_value((char_u
*)"selection", 0L, (char_u
*)"inclusive", 0);
10725 set_option_value((char_u
*)"selectmode", 0L, (char_u
*)"", 0);
10726 set_option_value((char_u
*)"mousemodel", 0L, (char_u
*)"extend", 0);
10727 set_option_value((char_u
*)"keymodel", 0L, (char_u
*)"", 0);
10730 EMSG2(_(e_invarg2
), eap
->arg
);
10733 #ifdef FEAT_AUTOCMD
10734 static int filetype_detect
= FALSE
;
10735 static int filetype_plugin
= FALSE
;
10736 static int filetype_indent
= FALSE
;
10739 * ":filetype [plugin] [indent] {on,off,detect}"
10740 * on: Load the filetype.vim file to install autocommands for file types.
10741 * off: Load the ftoff.vim file to remove all autocommands for file types.
10742 * plugin on: load filetype.vim and ftplugin.vim
10743 * plugin off: load ftplugof.vim
10744 * indent on: load filetype.vim and indent.vim
10745 * indent off: load indoff.vim
10751 char_u
*arg
= eap
->arg
;
10752 int plugin
= FALSE
;
10753 int indent
= FALSE
;
10755 if (*eap
->arg
== NUL
)
10757 /* Print current status. */
10758 smsg((char_u
*)"filetype detection:%s plugin:%s indent:%s",
10759 filetype_detect
? "ON" : "OFF",
10760 filetype_plugin
? (filetype_detect
? "ON" : "(on)") : "OFF",
10761 filetype_indent
? (filetype_detect
? "ON" : "(on)") : "OFF");
10765 /* Accept "plugin" and "indent" in any order. */
10768 if (STRNCMP(arg
, "plugin", 6) == 0)
10771 arg
= skipwhite(arg
+ 6);
10774 if (STRNCMP(arg
, "indent", 6) == 0)
10777 arg
= skipwhite(arg
+ 6);
10782 if (STRCMP(arg
, "on") == 0 || STRCMP(arg
, "detect") == 0)
10784 if (*arg
== 'o' || !filetype_detect
)
10786 source_runtime((char_u
*)FILETYPE_FILE
, TRUE
);
10787 filetype_detect
= TRUE
;
10790 source_runtime((char_u
*)FTPLUGIN_FILE
, TRUE
);
10791 filetype_plugin
= TRUE
;
10795 source_runtime((char_u
*)INDENT_FILE
, TRUE
);
10796 filetype_indent
= TRUE
;
10801 (void)do_doautocmd((char_u
*)"filetypedetect BufRead", TRUE
);
10805 else if (STRCMP(arg
, "off") == 0)
10807 if (plugin
|| indent
)
10811 source_runtime((char_u
*)FTPLUGOF_FILE
, TRUE
);
10812 filetype_plugin
= FALSE
;
10816 source_runtime((char_u
*)INDOFF_FILE
, TRUE
);
10817 filetype_indent
= FALSE
;
10822 source_runtime((char_u
*)FTOFF_FILE
, TRUE
);
10823 filetype_detect
= FALSE
;
10827 EMSG2(_(e_invarg2
), arg
);
10831 * ":setfiletype {name}"
10834 ex_setfiletype(eap
)
10838 set_option_value((char_u
*)"filetype", 0L, eap
->arg
, OPT_LOCAL
);
10847 #ifdef FEAT_DIGRAPHS
10848 if (*eap
->arg
!= NUL
)
10849 putdigraph(eap
->arg
);
10853 EMSG(_("E196: No digraphs in this version"));
10863 if (eap
->cmdidx
== CMD_setlocal
)
10865 else if (eap
->cmdidx
== CMD_setglobal
)
10866 flags
= OPT_GLOBAL
;
10867 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10868 if (cmdmod
.browse
&& flags
== 0)
10872 (void)do_set(eap
->arg
, flags
);
10875 #ifdef FEAT_SEARCH_EXTRA
10884 no_hlsearch
= TRUE
;
10885 redraw_all_later(SOME_VALID
);
10889 * ":[N]match {group} {pattern}"
10890 * Sets nextcmd to the start of the next command, if any. Also called when
10891 * skipping commands to find the next command.
10903 if (eap
->line2
<= 3)
10911 /* First clear any old pattern. */
10913 match_delete(curwin
, id
, FALSE
);
10915 if (ends_excmd(*eap
->arg
))
10917 else if ((STRNICMP(eap
->arg
, "none", 4) == 0
10918 && (vim_iswhite(eap
->arg
[4]) || ends_excmd(eap
->arg
[4]))))
10919 end
= eap
->arg
+ 4;
10922 p
= skiptowhite(eap
->arg
);
10924 g
= vim_strnsave(eap
->arg
, (int)(p
- eap
->arg
));
10928 /* There must be two arguments. */
10929 EMSG2(_(e_invarg2
), eap
->arg
);
10932 end
= skip_regexp(p
+ 1, *p
, TRUE
, NULL
);
10935 if (*end
!= NUL
&& !ends_excmd(*skipwhite(end
+ 1)))
10937 eap
->errmsg
= e_trailing
;
10942 EMSG2(_(e_invarg2
), p
);
10948 match_add(curwin
, g
, p
+ 1, 10, id
);
10953 eap
->nextcmd
= find_nextcmd(end
);
10959 * ":X": Get crypt key
10966 (void)get_crypt_key(TRUE
, TRUE
);
10970 #ifdef FEAT_FOLDING
10975 if (foldManualAllowed(TRUE
))
10976 foldCreate(eap
->line1
, eap
->line2
);
10983 opFoldRange(eap
->line1
, eap
->line2
, eap
->cmdidx
== CMD_foldopen
,
10984 eap
->forceit
, FALSE
);
10993 /* First set the marks for all lines closed/open. */
10994 for (lnum
= eap
->line1
; lnum
<= eap
->line2
; ++lnum
)
10995 if (hasFolding(lnum
, NULL
, NULL
) == (eap
->cmdidx
== CMD_folddoclosed
))
10996 ml_setmarked(lnum
);
10998 /* Execute the command on the marked lines. */
10999 global_exe(eap
->arg
);
11000 ml_clearmarked(); /* clear rest of the marks */