1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
11 * ex_docmd.c: functions for executing an Ex command line.
16 static int quitmore
= 0;
17 static int ex_pressedreturn
= FALSE
;
19 # define ex_hardcopy ex_ni
25 char_u
*uc_name
; /* The command name */
26 long_u uc_argt
; /* The argument type */
27 char_u
*uc_rep
; /* The command's replacement string */
28 long uc_def
; /* The default value for a range/count */
29 scid_T uc_scriptID
; /* SID where the command was defined */
30 int uc_compl
; /* completion type */
31 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
32 char_u
*uc_compl_arg
; /* completion argument if any */
36 #define UC_BUFFER 1 /* -buffer: local to current buffer */
38 static garray_T ucmds
= {0, 0, sizeof(ucmd_T
), 4, NULL
};
40 #define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
41 #define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
43 static void do_ucmd
__ARGS((exarg_T
*eap
));
44 static void ex_command
__ARGS((exarg_T
*eap
));
45 static void ex_delcommand
__ARGS((exarg_T
*eap
));
46 # ifdef FEAT_CMDL_COMPL
47 static char_u
*get_user_command_name
__ARGS((int idx
));
51 # define ex_command ex_ni
52 # define ex_comclear ex_ni
53 # define ex_delcommand ex_ni
57 static char_u
*do_one_cmd
__ARGS((char_u
**, int, struct condstack
*, char_u
*(*fgetline
)(int, void *, int), void *cookie
));
59 static char_u
*do_one_cmd
__ARGS((char_u
**, int, char_u
*(*fgetline
)(int, void *, int), void *cookie
));
60 static int if_level
= 0; /* depth in :if */
62 static char_u
*find_command
__ARGS((exarg_T
*eap
, int *full
));
64 static void ex_abbreviate
__ARGS((exarg_T
*eap
));
65 static void ex_map
__ARGS((exarg_T
*eap
));
66 static void ex_unmap
__ARGS((exarg_T
*eap
));
67 static void ex_mapclear
__ARGS((exarg_T
*eap
));
68 static void ex_abclear
__ARGS((exarg_T
*eap
));
70 # define ex_emenu ex_ni
71 # define ex_menu ex_ni
72 # define ex_menutranslate ex_ni
75 static void ex_autocmd
__ARGS((exarg_T
*eap
));
76 static void ex_doautocmd
__ARGS((exarg_T
*eap
));
78 # define ex_autocmd ex_ni
79 # define ex_doautocmd ex_ni
80 # define ex_doautoall ex_ni
83 static void ex_bunload
__ARGS((exarg_T
*eap
));
84 static void ex_buffer
__ARGS((exarg_T
*eap
));
85 static void ex_bmodified
__ARGS((exarg_T
*eap
));
86 static void ex_bnext
__ARGS((exarg_T
*eap
));
87 static void ex_bprevious
__ARGS((exarg_T
*eap
));
88 static void ex_brewind
__ARGS((exarg_T
*eap
));
89 static void ex_blast
__ARGS((exarg_T
*eap
));
91 # define ex_bunload ex_ni
92 # define ex_buffer ex_ni
93 # define ex_bmodified ex_ni
94 # define ex_bnext ex_ni
95 # define ex_bprevious ex_ni
96 # define ex_brewind ex_ni
97 # define ex_blast ex_ni
98 # define buflist_list ex_ni
99 # define ex_checktime ex_ni
101 #if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
102 # define ex_buffer_all ex_ni
104 static char_u
*getargcmd
__ARGS((char_u
**));
105 static char_u
*skip_cmd_arg
__ARGS((char_u
*p
, int rembs
));
106 static int getargopt
__ARGS((exarg_T
*eap
));
107 #ifndef FEAT_QUICKFIX
108 # define ex_make ex_ni
109 # define ex_cbuffer ex_ni
111 # define ex_cnext ex_ni
112 # define ex_cfile ex_ni
113 # define qf_list ex_ni
114 # define qf_age ex_ni
115 # define ex_helpgrep ex_ni
116 # define ex_vimgrep ex_ni
118 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
119 # define ex_cclose ex_ni
120 # define ex_copen ex_ni
121 # define ex_cwindow ex_ni
123 #if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
124 # define ex_cexpr ex_ni
127 static int check_more
__ARGS((int, int));
128 static linenr_T get_address
__ARGS((char_u
**, int skip
, int to_other_file
));
129 static void get_flags
__ARGS((exarg_T
*eap
));
130 #if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
131 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
132 # define HAVE_EX_SCRIPT_NI
133 static void ex_script_ni
__ARGS((exarg_T
*eap
));
135 static char_u
*invalid_range
__ARGS((exarg_T
*eap
));
136 static void correct_range
__ARGS((exarg_T
*eap
));
138 static char_u
*replace_makeprg
__ARGS((exarg_T
*eap
, char_u
*p
, char_u
**cmdlinep
));
140 static char_u
*repl_cmdline
__ARGS((exarg_T
*eap
, char_u
*src
, int srclen
, char_u
*repl
, char_u
**cmdlinep
));
141 static void ex_highlight
__ARGS((exarg_T
*eap
));
142 static void ex_colorscheme
__ARGS((exarg_T
*eap
));
143 static void ex_quit
__ARGS((exarg_T
*eap
));
144 static void ex_cquit
__ARGS((exarg_T
*eap
));
145 static void ex_quit_all
__ARGS((exarg_T
*eap
));
147 static void ex_close
__ARGS((exarg_T
*eap
));
148 static void ex_win_close
__ARGS((int forceit
, win_T
*win
, tabpage_T
*tp
));
149 static void ex_only
__ARGS((exarg_T
*eap
));
150 static void ex_resize
__ARGS((exarg_T
*eap
));
151 static void ex_stag
__ARGS((exarg_T
*eap
));
152 static void ex_tabclose
__ARGS((exarg_T
*eap
));
153 static void ex_tabonly
__ARGS((exarg_T
*eap
));
154 static void ex_tabnext
__ARGS((exarg_T
*eap
));
155 static void ex_tabmove
__ARGS((exarg_T
*eap
));
156 static void ex_tabs
__ARGS((exarg_T
*eap
));
158 # define ex_close ex_ni
159 # define ex_only ex_ni
160 # define ex_all ex_ni
161 # define ex_resize ex_ni
162 # define ex_splitview ex_ni
163 # define ex_stag ex_ni
164 # define ex_tabnext ex_ni
165 # define ex_tabmove ex_ni
166 # define ex_tabs ex_ni
167 # define ex_tabclose ex_ni
168 # define ex_tabonly ex_ni
170 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
171 static void ex_pclose
__ARGS((exarg_T
*eap
));
172 static void ex_ptag
__ARGS((exarg_T
*eap
));
173 static void ex_pedit
__ARGS((exarg_T
*eap
));
175 # define ex_pclose ex_ni
176 # define ex_ptag ex_ni
177 # define ex_pedit ex_ni
179 static void ex_hide
__ARGS((exarg_T
*eap
));
180 static void ex_stop
__ARGS((exarg_T
*eap
));
181 static void ex_exit
__ARGS((exarg_T
*eap
));
182 static void ex_print
__ARGS((exarg_T
*eap
));
184 static void ex_goto
__ARGS((exarg_T
*eap
));
186 # define ex_goto ex_ni
188 static void ex_shell
__ARGS((exarg_T
*eap
));
189 static void ex_preserve
__ARGS((exarg_T
*eap
));
190 static void ex_recover
__ARGS((exarg_T
*eap
));
191 #ifndef FEAT_LISTCMDS
192 # define ex_argedit ex_ni
193 # define ex_argadd ex_ni
194 # define ex_argdelete ex_ni
195 # define ex_listdo ex_ni
197 static void ex_mode
__ARGS((exarg_T
*eap
));
198 static void ex_wrongmodifier
__ARGS((exarg_T
*eap
));
199 static void ex_find
__ARGS((exarg_T
*eap
));
200 static void ex_open
__ARGS((exarg_T
*eap
));
201 static void ex_edit
__ARGS((exarg_T
*eap
));
202 #if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
203 # define ex_drop ex_ni
206 # define ex_gui ex_nogui
207 static void ex_nogui
__ARGS((exarg_T
*eap
));
209 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
210 static void ex_tearoff
__ARGS((exarg_T
*eap
));
212 # define ex_tearoff ex_ni
214 #if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
215 static void ex_popup
__ARGS((exarg_T
*eap
));
217 # define ex_popup ex_ni
219 #ifndef FEAT_GUI_MSWIN
220 # define ex_simalt ex_ni
222 #if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
223 # define gui_mch_find_dialog ex_ni
224 # define gui_mch_replace_dialog ex_ni
226 #if !defined(FEAT_GUI_GTK)
227 # define ex_helpfind ex_ni
230 # define do_cscope ex_ni
231 # define do_scscope ex_ni
232 # define do_cstag ex_ni
235 # define ex_syntax ex_ni
238 # define ex_spell ex_ni
239 # define ex_mkspell ex_ni
240 # define ex_spelldump ex_ni
241 # define ex_spellinfo ex_ni
242 # define ex_spellrepall ex_ni
244 #ifndef FEAT_MZSCHEME
245 # define ex_mzscheme ex_script_ni
246 # define ex_mzfile ex_ni
249 # define ex_perl ex_script_ni
250 # define ex_perldo ex_ni
253 # define ex_python ex_script_ni
254 # define ex_pyfile ex_ni
257 # define ex_tcl ex_script_ni
258 # define ex_tcldo ex_ni
259 # define ex_tclfile ex_ni
262 # define ex_ruby ex_script_ni
263 # define ex_rubydo ex_ni
264 # define ex_rubyfile ex_ni
267 # define ex_sniff ex_ni
270 # define ex_loadkeymap ex_ni
272 static void ex_swapname
__ARGS((exarg_T
*eap
));
273 static void ex_syncbind
__ARGS((exarg_T
*eap
));
274 static void ex_read
__ARGS((exarg_T
*eap
));
275 static void ex_pwd
__ARGS((exarg_T
*eap
));
276 static void ex_equal
__ARGS((exarg_T
*eap
));
277 static void ex_sleep
__ARGS((exarg_T
*eap
));
278 static void do_exmap
__ARGS((exarg_T
*eap
, int isabbrev
));
279 static void ex_winsize
__ARGS((exarg_T
*eap
));
281 static void ex_wincmd
__ARGS((exarg_T
*eap
));
283 # define ex_wincmd ex_ni
285 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
286 static void ex_winpos
__ARGS((exarg_T
*eap
));
288 # define ex_winpos ex_ni
290 static void ex_operators
__ARGS((exarg_T
*eap
));
291 static void ex_put
__ARGS((exarg_T
*eap
));
292 static void ex_copymove
__ARGS((exarg_T
*eap
));
293 static void ex_may_print
__ARGS((exarg_T
*eap
));
294 static void ex_submagic
__ARGS((exarg_T
*eap
));
295 static void ex_join
__ARGS((exarg_T
*eap
));
296 static void ex_at
__ARGS((exarg_T
*eap
));
297 static void ex_bang
__ARGS((exarg_T
*eap
));
298 static void ex_undo
__ARGS((exarg_T
*eap
));
299 static void ex_redo
__ARGS((exarg_T
*eap
));
300 static void ex_later
__ARGS((exarg_T
*eap
));
301 static void ex_redir
__ARGS((exarg_T
*eap
));
302 static void ex_redraw
__ARGS((exarg_T
*eap
));
303 static void ex_redrawstatus
__ARGS((exarg_T
*eap
));
304 static void close_redir
__ARGS((void));
305 static void ex_mkrc
__ARGS((exarg_T
*eap
));
306 static void ex_mark
__ARGS((exarg_T
*eap
));
308 static char_u
*uc_fun_cmd
__ARGS((void));
309 static char_u
*find_ucmd
__ARGS((exarg_T
*eap
, char_u
*p
, int *full
, expand_T
*xp
, int *compl));
312 static void ex_normal
__ARGS((exarg_T
*eap
));
313 static void ex_startinsert
__ARGS((exarg_T
*eap
));
314 static void ex_stopinsert
__ARGS((exarg_T
*eap
));
316 # define ex_normal ex_ni
317 # define ex_align ex_ni
318 # define ex_retab ex_ni
319 # define ex_startinsert ex_ni
320 # define ex_stopinsert ex_ni
321 # define ex_helptags ex_ni
322 # define ex_sort ex_ni
325 static void ex_checkpath
__ARGS((exarg_T
*eap
));
326 static void ex_findpat
__ARGS((exarg_T
*eap
));
328 # define ex_findpat ex_ni
329 # define ex_checkpath ex_ni
331 #if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
332 static void ex_psearch
__ARGS((exarg_T
*eap
));
334 # define ex_psearch ex_ni
336 static void ex_tag
__ARGS((exarg_T
*eap
));
337 static void ex_tag_cmd
__ARGS((exarg_T
*eap
, char_u
*name
));
339 # define ex_scriptnames ex_ni
340 # define ex_finish ex_ni
341 # define ex_echo ex_ni
342 # define ex_echohl ex_ni
343 # define ex_execute ex_ni
344 # define ex_call ex_ni
346 # define ex_endif ex_ni
347 # define ex_else ex_ni
348 # define ex_while ex_ni
349 # define ex_for ex_ni
350 # define ex_continue ex_ni
351 # define ex_break ex_ni
352 # define ex_endwhile ex_ni
353 # define ex_endfor ex_ni
354 # define ex_throw ex_ni
355 # define ex_try ex_ni
356 # define ex_catch ex_ni
357 # define ex_finally ex_ni
358 # define ex_endtry ex_ni
359 # define ex_endfunction ex_ni
360 # define ex_let ex_ni
361 # define ex_unlet ex_ni
362 # define ex_lockvar ex_ni
363 # define ex_unlockvar ex_ni
364 # define ex_function ex_ni
365 # define ex_delfunction ex_ni
366 # define ex_return ex_ni
367 # define ex_oldfiles ex_ni
369 static char_u
*arg_all
__ARGS((void));
371 static int makeopens
__ARGS((FILE *fd
, char_u
*dirnow
));
372 static int put_view
__ARGS((FILE *fd
, win_T
*wp
, int add_edit
, unsigned *flagp
, int current_arg_idx
));
373 static void ex_loadview
__ARGS((exarg_T
*eap
));
374 static char_u
*get_view_file
__ARGS((int c
));
375 static int did_lcd
; /* whether ":lcd" was produced for a session */
377 # define ex_loadview ex_ni
380 # define ex_compiler ex_ni
383 static void ex_viminfo
__ARGS((exarg_T
*eap
));
385 # define ex_viminfo ex_ni
387 static void ex_behave
__ARGS((exarg_T
*eap
));
389 static void ex_filetype
__ARGS((exarg_T
*eap
));
390 static void ex_setfiletype
__ARGS((exarg_T
*eap
));
392 # define ex_filetype ex_ni
393 # define ex_setfiletype ex_ni
396 # define ex_diffoff ex_ni
397 # define ex_diffpatch ex_ni
398 # define ex_diffgetput ex_ni
399 # define ex_diffsplit ex_ni
400 # define ex_diffthis ex_ni
401 # define ex_diffupdate ex_ni
403 static void ex_digraphs
__ARGS((exarg_T
*eap
));
404 static void ex_set
__ARGS((exarg_T
*eap
));
405 #if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
406 # define ex_options ex_ni
408 #ifdef FEAT_SEARCH_EXTRA
409 static void ex_nohlsearch
__ARGS((exarg_T
*eap
));
410 static void ex_match
__ARGS((exarg_T
*eap
));
412 # define ex_nohlsearch ex_ni
413 # define ex_match ex_ni
416 static void ex_X
__ARGS((exarg_T
*eap
));
421 static void ex_fold
__ARGS((exarg_T
*eap
));
422 static void ex_foldopen
__ARGS((exarg_T
*eap
));
423 static void ex_folddo
__ARGS((exarg_T
*eap
));
425 # define ex_fold ex_ni
426 # define ex_foldopen ex_ni
427 # define ex_folddo ex_ni
429 #if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
430 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
431 # define ex_language ex_ni
434 # define ex_sign ex_ni
436 #ifndef FEAT_SUN_WORKSHOP
437 # define ex_wsverb ex_ni
439 #ifndef FEAT_NETBEANS_INTG
440 # define ex_nbkey ex_ni
444 # define ex_debug ex_ni
445 # define ex_breakadd ex_ni
446 # define ex_debuggreedy ex_ni
447 # define ex_breakdel ex_ni
448 # define ex_breaklist ex_ni
452 # define ex_history ex_ni
454 #ifndef FEAT_JUMPLIST
455 # define ex_jumps ex_ni
456 # define ex_changes ex_ni
460 # define ex_profile ex_ni
464 * Declare cmdnames[].
466 #define DO_DECLARE_EXCMD
470 * Table used to quickly search for a command, based on its first character.
472 static cmdidx_T cmdidxs
[27] =
503 static char_u dollar_command
[2] = {'$', 0};
507 /* Struct for storing a line inside a while/for loop */
510 char_u
*line
; /* command line */
511 linenr_T lnum
; /* sourcing_lnum of the line */
515 * Structure used to store info for line position in a while or for loop.
516 * This is required, because do_one_cmd() may invoke ex_function(), which
517 * reads more lines that may come from the while/for loop.
521 garray_T
*lines_gap
; /* growarray with line info */
522 int current_line
; /* last read line from growarray */
523 int repeating
; /* TRUE when looping a second time */
524 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
525 char_u
*(*getline
) __ARGS((int, void *, int));
529 static char_u
*get_loop_line
__ARGS((int c
, void *cookie
, int indent
));
530 static int store_loop_line
__ARGS((garray_T
*gap
, char_u
*line
));
531 static void free_cmdlines
__ARGS((garray_T
*gap
));
533 /* Struct to save a few things while debugging. Used in do_cmdline() only. */
538 except_T
*caught_stack
;
539 char_u
*vv_exception
;
540 char_u
*vv_throwpoint
;
546 except_T
*current_exception
;
549 static void save_dbg_stuff
__ARGS((struct dbg_stuff
*dsp
));
550 static void restore_dbg_stuff
__ARGS((struct dbg_stuff
*dsp
));
554 struct dbg_stuff
*dsp
;
556 dsp
->trylevel
= trylevel
; trylevel
= 0;
557 dsp
->force_abort
= force_abort
; force_abort
= FALSE
;
558 dsp
->caught_stack
= caught_stack
; caught_stack
= NULL
;
559 dsp
->vv_exception
= v_exception(NULL
);
560 dsp
->vv_throwpoint
= v_throwpoint(NULL
);
562 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
563 dsp
->did_emsg
= did_emsg
; did_emsg
= FALSE
;
564 dsp
->got_int
= got_int
; got_int
= FALSE
;
565 dsp
->did_throw
= did_throw
; did_throw
= FALSE
;
566 dsp
->need_rethrow
= need_rethrow
; need_rethrow
= FALSE
;
567 dsp
->check_cstack
= check_cstack
; check_cstack
= FALSE
;
568 dsp
->current_exception
= current_exception
; current_exception
= NULL
;
572 restore_dbg_stuff(dsp
)
573 struct dbg_stuff
*dsp
;
575 suppress_errthrow
= FALSE
;
576 trylevel
= dsp
->trylevel
;
577 force_abort
= dsp
->force_abort
;
578 caught_stack
= dsp
->caught_stack
;
579 (void)v_exception(dsp
->vv_exception
);
580 (void)v_throwpoint(dsp
->vv_throwpoint
);
581 did_emsg
= dsp
->did_emsg
;
582 got_int
= dsp
->got_int
;
583 did_throw
= dsp
->did_throw
;
584 need_rethrow
= dsp
->need_rethrow
;
585 check_cstack
= dsp
->check_cstack
;
586 current_exception
= dsp
->current_exception
;
592 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
597 int improved
; /* TRUE for "improved Ex" mode */
605 exmode_active
= EXMODE_VIM
;
607 exmode_active
= EXMODE_NORMAL
;
610 /* When using ":global /pat/ visual" and then "Q" we return to continue
611 * the :global command. */
615 save_msg_scroll
= msg_scroll
;
616 ++RedrawingDisabled
; /* don't redisplay the window */
617 ++no_wait_return
; /* don't wait for return */
619 /* Ignore scrollbar and mouse events in Ex mode */
623 want_sniff_request
= 0; /* No K_SNIFF wanted */
626 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
627 while (exmode_active
)
630 /* Check for a ":normal" command and no more characters left. */
631 if (ex_normal_busy
> 0 && typebuf
.tb_len
== 0)
633 exmode_active
= FALSE
;
638 need_wait_return
= FALSE
;
639 ex_pressedreturn
= FALSE
;
640 ex_no_reprint
= FALSE
;
641 changedtick
= curbuf
->b_changedtick
;
642 prev_msg_row
= msg_row
;
643 prev_line
= curwin
->w_cursor
.lnum
;
645 ProcessSniffRequests();
649 cmdline_row
= msg_row
;
650 do_cmdline(NULL
, getexline
, NULL
, 0);
653 do_cmdline(NULL
, getexmodeline
, NULL
, DOCMD_NOWAIT
);
654 lines_left
= Rows
- 1;
656 if ((prev_line
!= curwin
->w_cursor
.lnum
657 || changedtick
!= curbuf
->b_changedtick
) && !ex_no_reprint
)
659 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
663 if (ex_pressedreturn
)
665 /* go up one line, to overwrite the ":<CR>" line, so the
666 * output doesn't contain empty lines. */
667 msg_row
= prev_msg_row
;
668 if (prev_msg_row
== Rows
- 1)
672 print_line_no_prefix(curwin
->w_cursor
.lnum
, FALSE
, FALSE
);
676 else if (ex_pressedreturn
&& !ex_no_reprint
) /* must be at EOF */
678 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
681 EMSG(_("E501: At end-of-file"));
690 update_screen(CLEAR
);
691 need_wait_return
= FALSE
;
692 msg_scroll
= save_msg_scroll
;
696 * Execute a simple command line. Used for translated commands like "*".
702 return do_cmdline(cmd
, NULL
, NULL
,
703 DOCMD_VERBOSE
|DOCMD_NOWAIT
|DOCMD_KEYTYPED
);
707 * do_cmdline(): execute one Ex command line
709 * 1. Execute "cmdline" when it is not NULL.
710 * If "cmdline" is NULL, or more lines are needed, getline() is used.
711 * 2. Split up in parts separated with '|'.
713 * This function can be called recursively!
716 * DOCMD_VERBOSE - The command will be included in the error message.
717 * DOCMD_NOWAIT - Don't call wait_return() and friends.
718 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
719 * DOCMD_KEYTYPED - Don't reset KeyTyped.
720 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
721 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
723 * return FAIL if cmdline could not be executed, OK otherwise
726 do_cmdline(cmdline
, getline
, cookie
, flags
)
728 char_u
*(*getline
) __ARGS((int, void *, int));
729 void *cookie
; /* argument for getline() */
732 char_u
*next_cmdline
; /* next cmd to execute */
733 char_u
*cmdline_copy
= NULL
; /* copy of cmd line */
734 int used_getline
= FALSE
; /* used "getline" to obtain command */
735 static int recursive
= 0; /* recursive depth */
736 int msg_didout_before_start
= 0;
737 int count
= 0; /* line number count */
738 int did_inc
= FALSE
; /* incremented RedrawingDisabled */
741 struct condstack cstack
; /* conditional stack */
742 garray_T lines_ga
; /* keep lines for ":while"/":for" */
743 int current_line
= 0; /* active line in lines_ga */
744 char_u
*fname
= NULL
; /* function or script name */
745 linenr_T
*breakpoint
= NULL
; /* ptr to breakpoint field in cookie */
746 int *dbg_tick
= NULL
; /* ptr to dbg_tick field in cookie */
747 struct dbg_stuff debug_saved
; /* saved things for debug mode */
748 int initial_trylevel
;
749 struct msglist
**saved_msg_list
= NULL
;
750 struct msglist
*private_msg_list
;
752 /* "getline" and "cookie" passed to do_one_cmd() */
753 char_u
*(*cmd_getline
) __ARGS((int, void *, int));
755 struct loop_cookie cmd_loop_cookie
;
759 # define cmd_getline getline
760 # define cmd_cookie cookie
762 static int call_depth
= 0; /* recursiveness */
765 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
766 * location for storing error messages to be converted to an exception.
767 * This ensures that the do_errthrow() call in do_one_cmd() does not
768 * combine the messages stored by an earlier invocation of do_one_cmd()
769 * with the command name of the later one. This would happen when
770 * BufWritePost autocommands are executed after a write error. */
771 saved_msg_list
= msg_list
;
772 msg_list
= &private_msg_list
;
773 private_msg_list
= NULL
;
776 /* It's possible to create an endless loop with ":execute", catch that
777 * here. The value of 200 allows nested function calls, ":source", etc. */
778 if (call_depth
== 200)
780 EMSG(_("E169: Command too recursive"));
782 /* When converting to an exception, we do not include the command name
783 * since this is not an error of the specific command. */
784 do_errthrow((struct condstack
*)NULL
, (char_u
*)NULL
);
785 msg_list
= saved_msg_list
;
793 cstack
.cs_looplevel
= 0;
794 cstack
.cs_trylevel
= 0;
795 cstack
.cs_emsg_silent_list
= NULL
;
796 cstack
.cs_lflags
= 0;
797 ga_init2(&lines_ga
, (int)sizeof(wcmd_T
), 10);
799 real_cookie
= getline_cookie(getline
, cookie
);
801 /* Inside a function use a higher nesting level. */
802 getline_is_func
= getline_equal(getline
, cookie
, get_func_line
);
803 if (getline_is_func
&& ex_nesting_level
== func_level(real_cookie
))
806 /* Get the function or script name and the address where the next breakpoint
807 * line and the debug tick for a function or script are stored. */
810 fname
= func_name(real_cookie
);
811 breakpoint
= func_breakpoint(real_cookie
);
812 dbg_tick
= func_dbg_tick(real_cookie
);
814 else if (getline_equal(getline
, cookie
, getsourceline
))
816 fname
= sourcing_name
;
817 breakpoint
= source_breakpoint(real_cookie
);
818 dbg_tick
= source_dbg_tick(real_cookie
);
822 * Initialize "force_abort" and "suppress_errthrow" at the top level.
827 suppress_errthrow
= FALSE
;
831 * If requested, store and reset the global values controlling the
832 * exception handling (used when debugging). Otherwise clear it to avoid
833 * a bogus compiler warning when the optimizer uses inline functions...
835 if (flags
& DOCMD_EXCRESET
)
836 save_dbg_stuff(&debug_saved
);
838 memset(&debug_saved
, 0, 1);
840 initial_trylevel
= trylevel
;
843 * "did_throw" will be set to TRUE when an exception is being thrown.
848 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
849 * cancel the whole command line, and any if/endif or loop.
850 * If force_abort is set, we cancel everything.
855 * KeyTyped is only set when calling vgetc(). Reset it here when not
856 * calling vgetc() (sourced command lines).
858 if (!(flags
& DOCMD_KEYTYPED
) && !getline_equal(getline
, cookie
, getexline
))
862 * Continue executing command lines:
863 * - when inside an ":if", ":while" or ":for"
864 * - for multiple commands on one line, separated with '|'
865 * - when repeating until there are no more lines (for ":source")
867 next_cmdline
= cmdline
;
871 getline_is_func
= getline_equal(getline
, cookie
, get_func_line
);
874 /* stop skipping cmds for an error msg after all endif/while/for */
875 if (next_cmdline
== NULL
879 && !(getline_is_func
&& func_has_abort(real_cookie
))
885 * 1. If repeating a line in a loop, get a line from lines_ga.
886 * 2. If no line given: Get an allocated line with getline().
887 * 3. If a line is given: Make a copy, so we can mess with it.
891 /* 1. If repeating, get a previous line from lines_ga. */
892 if (cstack
.cs_looplevel
> 0 && current_line
< lines_ga
.ga_len
)
894 /* Each '|' separated command is stored separately in lines_ga, to
895 * be able to jump to it. Don't use next_cmdline now. */
896 vim_free(cmdline_copy
);
899 /* Check if a function has returned or, unless it has an unclosed
900 * try conditional, aborted. */
904 if (do_profiling
== PROF_YES
)
905 func_line_end(real_cookie
);
907 if (func_has_ended(real_cookie
))
914 else if (do_profiling
== PROF_YES
915 && getline_equal(getline
, cookie
, getsourceline
))
919 /* Check if a sourced file hit a ":finish" command. */
920 if (source_finished(getline
, cookie
))
926 /* If breakpoints have been added/deleted need to check for it. */
927 if (breakpoint
!= NULL
&& dbg_tick
!= NULL
928 && *dbg_tick
!= debug_tick
)
930 *breakpoint
= dbg_find_breakpoint(
931 getline_equal(getline
, cookie
, getsourceline
),
932 fname
, sourcing_lnum
);
933 *dbg_tick
= debug_tick
;
936 next_cmdline
= ((wcmd_T
*)(lines_ga
.ga_data
))[current_line
].line
;
937 sourcing_lnum
= ((wcmd_T
*)(lines_ga
.ga_data
))[current_line
].lnum
;
939 /* Did we encounter a breakpoint? */
940 if (breakpoint
!= NULL
&& *breakpoint
!= 0
941 && *breakpoint
<= sourcing_lnum
)
943 dbg_breakpoint(fname
, sourcing_lnum
);
944 /* Find next breakpoint. */
945 *breakpoint
= dbg_find_breakpoint(
946 getline_equal(getline
, cookie
, getsourceline
),
947 fname
, sourcing_lnum
);
948 *dbg_tick
= debug_tick
;
951 if (do_profiling
== PROF_YES
)
954 func_line_start(real_cookie
);
955 else if (getline_equal(getline
, cookie
, getsourceline
))
961 if (cstack
.cs_looplevel
> 0)
963 /* Inside a while/for loop we need to store the lines and use them
964 * again. Pass a different "getline" function to do_one_cmd()
965 * below, so that it stores lines in or reads them from
966 * "lines_ga". Makes it possible to define a function inside a
968 cmd_getline
= get_loop_line
;
969 cmd_cookie
= (void *)&cmd_loop_cookie
;
970 cmd_loop_cookie
.lines_gap
= &lines_ga
;
971 cmd_loop_cookie
.current_line
= current_line
;
972 cmd_loop_cookie
.getline
= getline
;
973 cmd_loop_cookie
.cookie
= cookie
;
974 cmd_loop_cookie
.repeating
= (current_line
< lines_ga
.ga_len
);
978 cmd_getline
= getline
;
983 /* 2. If no line given, get an allocated line with getline(). */
984 if (next_cmdline
== NULL
)
987 * Need to set msg_didout for the first line after an ":if",
988 * otherwise the ":if" will be overwritten.
990 if (count
== 1 && getline_equal(getline
, cookie
, getexline
))
992 if (getline
== NULL
|| (next_cmdline
= getline(':', cookie
,
994 cstack
.cs_idx
< 0 ? 0 : (cstack
.cs_idx
+ 1) * 2
1000 /* Don't call wait_return for aborted command line. The NULL
1001 * returned for the end of a sourced file or executed function
1002 * doesn't do this. */
1003 if (KeyTyped
&& !(flags
& DOCMD_REPEAT
))
1004 need_wait_return
= FALSE
;
1008 used_getline
= TRUE
;
1011 * Keep the first typed line. Clear it when more lines are typed.
1013 if (flags
& DOCMD_KEEPLINE
)
1015 vim_free(repeat_cmdline
);
1017 repeat_cmdline
= vim_strsave(next_cmdline
);
1019 repeat_cmdline
= NULL
;
1023 /* 3. Make a copy of the command so we can mess with it. */
1024 else if (cmdline_copy
== NULL
)
1026 next_cmdline
= vim_strsave(next_cmdline
);
1027 if (next_cmdline
== NULL
)
1029 EMSG(_(e_outofmem
));
1034 cmdline_copy
= next_cmdline
;
1038 * Save the current line when inside a ":while" or ":for", and when
1039 * the command looks like a ":while" or ":for", because we may need it
1040 * later. When there is a '|' and another command, it is stored
1041 * separately, because we need to be able to jump back to it from an
1042 * :endwhile/:endfor.
1044 if (current_line
== lines_ga
.ga_len
1045 && (cstack
.cs_looplevel
|| has_loop_cmd(next_cmdline
)))
1047 if (store_loop_line(&lines_ga
, next_cmdline
) == FAIL
)
1059 * All output from the commands is put below each other, without
1060 * waiting for a return. Don't do this when executing commands
1061 * from a script or when being called recursive (e.g. for ":e
1064 if (!(flags
& DOCMD_NOWAIT
) && !recursive
)
1066 msg_didout_before_start
= msg_didout
;
1067 msg_didany
= FALSE
; /* no output yet */
1069 msg_scroll
= TRUE
; /* put messages below each other */
1070 ++no_wait_return
; /* dont wait for return until finished */
1071 ++RedrawingDisabled
;
1076 if (p_verbose
>= 15 && sourcing_name
!= NULL
)
1079 verbose_enter_scroll();
1081 smsg((char_u
*)_("line %ld: %s"),
1082 (long)sourcing_lnum
, cmdline_copy
);
1083 if (msg_silent
== 0)
1084 msg_puts((char_u
*)"\n"); /* don't overwrite this */
1086 verbose_leave_scroll();
1091 * 2. Execute one '|' separated command.
1092 * do_one_cmd() will return NULL if there is no trailing '|'.
1093 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1096 next_cmdline
= do_one_cmd(&cmdline_copy
, flags
& DOCMD_VERBOSE
,
1100 cmd_getline
, cmd_cookie
);
1104 if (cmd_cookie
== (void *)&cmd_loop_cookie
)
1105 /* Use "current_line" from "cmd_loop_cookie", it may have been
1106 * incremented when defining a function. */
1107 current_line
= cmd_loop_cookie
.current_line
;
1110 if (next_cmdline
== NULL
)
1112 vim_free(cmdline_copy
);
1113 cmdline_copy
= NULL
;
1116 * If the command was typed, remember it for the ':' register.
1117 * Do this AFTER executing the command to make :@: work.
1119 if (getline_equal(getline
, cookie
, getexline
)
1120 && new_last_cmdline
!= NULL
)
1122 vim_free(last_cmdline
);
1123 last_cmdline
= new_last_cmdline
;
1124 new_last_cmdline
= NULL
;
1130 /* need to copy the command after the '|' to cmdline_copy, for the
1131 * next do_one_cmd() */
1132 STRMOVE(cmdline_copy
, next_cmdline
);
1133 next_cmdline
= cmdline_copy
;
1138 /* reset did_emsg for a function that is not aborted by an error */
1139 if (did_emsg
&& !force_abort
1140 && getline_equal(getline
, cookie
, get_func_line
)
1141 && !func_has_abort(real_cookie
))
1144 if (cstack
.cs_looplevel
> 0)
1149 * An ":endwhile", ":endfor" and ":continue" is handled here.
1150 * If we were executing commands, jump back to the ":while" or
1152 * If we were not executing commands, decrement cs_looplevel.
1154 if (cstack
.cs_lflags
& (CSL_HAD_CONT
| CSL_HAD_ENDLOOP
))
1156 cstack
.cs_lflags
&= ~(CSL_HAD_CONT
| CSL_HAD_ENDLOOP
);
1158 /* Jump back to the matching ":while" or ":for". Be careful
1159 * not to use a cs_line[] from an entry that isn't a ":while"
1160 * or ":for": It would make "current_line" invalid and can
1162 if (!did_emsg
&& !got_int
&& !did_throw
1163 && cstack
.cs_idx
>= 0
1164 && (cstack
.cs_flags
[cstack
.cs_idx
]
1165 & (CSF_WHILE
| CSF_FOR
))
1166 && cstack
.cs_line
[cstack
.cs_idx
] >= 0
1167 && (cstack
.cs_flags
[cstack
.cs_idx
] & CSF_ACTIVE
))
1169 current_line
= cstack
.cs_line
[cstack
.cs_idx
];
1170 /* remember we jumped there */
1171 cstack
.cs_lflags
|= CSL_HAD_LOOP
;
1172 line_breakcheck(); /* check if CTRL-C typed */
1174 /* Check for the next breakpoint at or after the ":while"
1176 if (breakpoint
!= NULL
)
1178 *breakpoint
= dbg_find_breakpoint(
1179 getline_equal(getline
, cookie
, getsourceline
),
1181 ((wcmd_T
*)lines_ga
.ga_data
)[current_line
].lnum
-1);
1182 *dbg_tick
= debug_tick
;
1187 /* can only get here with ":endwhile" or ":endfor" */
1188 if (cstack
.cs_idx
>= 0)
1189 rewind_conditionals(&cstack
, cstack
.cs_idx
- 1,
1190 CSF_WHILE
| CSF_FOR
, &cstack
.cs_looplevel
);
1195 * For a ":while" or ":for" we need to remember the line number.
1197 else if (cstack
.cs_lflags
& CSL_HAD_LOOP
)
1199 cstack
.cs_lflags
&= ~CSL_HAD_LOOP
;
1200 cstack
.cs_line
[cstack
.cs_idx
] = current_line
- 1;
1205 * When not inside any ":while" loop, clear remembered lines.
1207 if (cstack
.cs_looplevel
== 0)
1209 if (lines_ga
.ga_len
> 0)
1212 ((wcmd_T
*)lines_ga
.ga_data
)[lines_ga
.ga_len
- 1].lnum
;
1213 free_cmdlines(&lines_ga
);
1219 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1220 * being restored at the ":endtry". Reset them here and set the
1221 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1222 * This includes the case where a missing ":endif", ":endwhile" or
1223 * ":endfor" was detected by the ":finally" itself.
1225 if (cstack
.cs_lflags
& CSL_HAD_FINA
)
1227 cstack
.cs_lflags
&= ~CSL_HAD_FINA
;
1228 report_make_pending(cstack
.cs_pending
[cstack
.cs_idx
]
1229 & (CSTP_ERROR
| CSTP_INTERRUPT
| CSTP_THROW
),
1230 did_throw
? (void *)current_exception
: NULL
);
1231 did_emsg
= got_int
= did_throw
= FALSE
;
1232 cstack
.cs_flags
[cstack
.cs_idx
] |= CSF_ACTIVE
| CSF_FINALLY
;
1235 /* Update global "trylevel" for recursive calls to do_cmdline() from
1236 * within this loop. */
1237 trylevel
= initial_trylevel
+ cstack
.cs_trylevel
;
1240 * If the outermost try conditional (across function calls and sourced
1241 * files) is aborted because of an error, an interrupt, or an uncaught
1242 * exception, cancel everything. If it is left normally, reset
1243 * force_abort to get the non-EH compatible abortion behavior for
1244 * the rest of the script.
1246 if (trylevel
== 0 && !did_emsg
&& !got_int
&& !did_throw
)
1247 force_abort
= FALSE
;
1249 /* Convert an interrupt to an exception if appropriate. */
1250 (void)do_intthrow(&cstack
);
1251 #endif /* FEAT_EVAL */
1255 * Continue executing command lines when:
1256 * - no CTRL-C typed, no aborting error, no exception thrown or try
1257 * conditionals need to be checked for executing finally clauses or
1258 * catching an interrupt exception
1259 * - didn't get an error message or lines are not typed
1260 * - there is a command after '|', inside a :if, :while, :for or :try, or
1261 * looping for ":source" command or function call.
1265 || (did_emsg
&& force_abort
) || did_throw
1269 && cstack
.cs_trylevel
== 0
1272 && !(did_emsg
&& used_getline
1273 && (getline_equal(getline
, cookie
, getexmodeline
)
1274 || getline_equal(getline
, cookie
, getexline
)))
1275 && (next_cmdline
!= NULL
1277 || cstack
.cs_idx
>= 0
1279 || (flags
& DOCMD_REPEAT
)));
1281 vim_free(cmdline_copy
);
1283 free_cmdlines(&lines_ga
);
1284 ga_clear(&lines_ga
);
1286 if (cstack
.cs_idx
>= 0)
1289 * If a sourced file or executed function ran to its end, report the
1290 * unclosed conditional.
1292 if (!got_int
&& !did_throw
1293 && ((getline_equal(getline
, cookie
, getsourceline
)
1294 && !source_finished(getline
, cookie
))
1295 || (getline_equal(getline
, cookie
, get_func_line
)
1296 && !func_has_ended(real_cookie
))))
1298 if (cstack
.cs_flags
[cstack
.cs_idx
] & CSF_TRY
)
1300 else if (cstack
.cs_flags
[cstack
.cs_idx
] & CSF_WHILE
)
1301 EMSG(_(e_endwhile
));
1302 else if (cstack
.cs_flags
[cstack
.cs_idx
] & CSF_FOR
)
1309 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1310 * ":endtry" in a sourced file or executed function. If the try
1311 * conditional is in its finally clause, ignore anything pending.
1312 * If it is in a catch clause, finish the caught exception.
1313 * Also cleanup any "cs_forinfo" structures.
1317 int idx
= cleanup_conditionals(&cstack
, 0, TRUE
);
1320 --idx
; /* remove try block not in its finally clause */
1321 rewind_conditionals(&cstack
, idx
, CSF_WHILE
| CSF_FOR
,
1322 &cstack
.cs_looplevel
);
1324 while (cstack
.cs_idx
>= 0);
1325 trylevel
= initial_trylevel
;
1328 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1329 * lack was reported above and the error message is to be converted to an
1330 * exception, do this now after rewinding the cstack. */
1331 do_errthrow(&cstack
, getline_equal(getline
, cookie
, get_func_line
)
1332 ? (char_u
*)"endfunction" : (char_u
*)NULL
);
1337 * When an exception is being thrown out of the outermost try
1338 * conditional, discard the uncaught exception, disable the conversion
1339 * of interrupts or errors to exceptions, and ensure that no more
1340 * commands are executed.
1345 char_u
*saved_sourcing_name
;
1346 int saved_sourcing_lnum
;
1347 struct msglist
*messages
= NULL
, *next
;
1350 * If the uncaught exception is a user exception, report it as an
1351 * error. If it is an error exception, display the saved error
1352 * message now. For an interrupt exception, do nothing; the
1353 * interrupt message is given elsewhere.
1355 switch (current_exception
->type
)
1358 vim_snprintf((char *)IObuff
, IOSIZE
,
1359 _("E605: Exception not caught: %s"),
1360 current_exception
->value
);
1361 p
= vim_strsave(IObuff
);
1364 messages
= current_exception
->messages
;
1365 current_exception
->messages
= NULL
;
1370 p
= vim_strsave((char_u
*)_(e_internal
));
1373 saved_sourcing_name
= sourcing_name
;
1374 saved_sourcing_lnum
= sourcing_lnum
;
1375 sourcing_name
= current_exception
->throw_name
;
1376 sourcing_lnum
= current_exception
->throw_lnum
;
1377 current_exception
->throw_name
= NULL
;
1379 discard_current_exception(); /* uses IObuff if 'verbose' */
1380 suppress_errthrow
= TRUE
;
1383 if (messages
!= NULL
)
1387 next
= messages
->next
;
1388 emsg(messages
->msg
);
1389 vim_free(messages
->msg
);
1393 while (messages
!= NULL
);
1400 vim_free(sourcing_name
);
1401 sourcing_name
= saved_sourcing_name
;
1402 sourcing_lnum
= saved_sourcing_lnum
;
1406 * On an interrupt or an aborting error not converted to an exception,
1407 * disable the conversion of errors to exceptions. (Interrupts are not
1408 * converted any more, here.) This enables also the interrupt message
1409 * when force_abort is set and did_emsg unset in case of an interrupt
1410 * from a finally clause after an error.
1412 else if (got_int
|| (did_emsg
&& force_abort
))
1413 suppress_errthrow
= TRUE
;
1417 * The current cstack will be freed when do_cmdline() returns. An uncaught
1418 * exception will have to be rethrown in the previous cstack. If a function
1419 * has just returned or a script file was just finished and the previous
1420 * cstack belongs to the same function or, respectively, script file, it
1421 * will have to be checked for finally clauses to be executed due to the
1422 * ":return" or ":finish". This is done in do_one_cmd().
1425 need_rethrow
= TRUE
;
1426 if ((getline_equal(getline
, cookie
, getsourceline
)
1427 && ex_nesting_level
> source_level(real_cookie
))
1428 || (getline_equal(getline
, cookie
, get_func_line
)
1429 && ex_nesting_level
> func_level(real_cookie
) + 1))
1432 check_cstack
= TRUE
;
1436 /* When leaving a function, reduce nesting level. */
1437 if (getline_equal(getline
, cookie
, get_func_line
))
1440 * Go to debug mode when returning from a function in which we are
1443 if ((getline_equal(getline
, cookie
, getsourceline
)
1444 || getline_equal(getline
, cookie
, get_func_line
))
1445 && ex_nesting_level
+ 1 <= debug_break_level
)
1446 do_debug(getline_equal(getline
, cookie
, getsourceline
)
1447 ? (char_u
*)_("End of sourced file")
1448 : (char_u
*)_("End of function"));
1452 * Restore the exception environment (done after returning from the
1455 if (flags
& DOCMD_EXCRESET
)
1456 restore_dbg_stuff(&debug_saved
);
1458 msg_list
= saved_msg_list
;
1459 #endif /* FEAT_EVAL */
1462 * If there was too much output to fit on the command line, ask the user to
1463 * hit return before redrawing the screen. With the ":global" command we do
1464 * this only once after the command is finished.
1468 --RedrawingDisabled
;
1473 * When just finished an ":if"-":else" which was typed, no need to
1474 * wait for hit-return. Also for an error situation.
1478 || (did_endif
&& KeyTyped
&& !did_emsg
)
1482 need_wait_return
= FALSE
;
1483 msg_didany
= FALSE
; /* don't wait when restarting edit */
1485 else if (need_wait_return
)
1488 * The msg_start() above clears msg_didout. The wait_return we do
1489 * here should not overwrite the command that may be shown before
1492 msg_didout
|= msg_didout_before_start
;
1499 * Reset if_level, in case a sourced script file contains more ":if" than
1500 * ":endif" (could be ":if x | foo | endif").
1511 * Obtain a line when inside a ":while" or ":for" loop.
1514 get_loop_line(c
, cookie
, indent
)
1519 struct loop_cookie
*cp
= (struct loop_cookie
*)cookie
;
1523 if (cp
->current_line
+ 1 >= cp
->lines_gap
->ga_len
)
1526 return NULL
; /* trying to read past ":endwhile"/":endfor" */
1528 /* First time inside the ":while"/":for": get line normally. */
1529 if (cp
->getline
== NULL
)
1530 line
= getcmdline(c
, 0L, indent
);
1532 line
= cp
->getline(c
, cp
->cookie
, indent
);
1533 if (line
!= NULL
&& store_loop_line(cp
->lines_gap
, line
) == OK
)
1541 wp
= (wcmd_T
*)(cp
->lines_gap
->ga_data
) + cp
->current_line
;
1542 sourcing_lnum
= wp
->lnum
;
1543 return vim_strsave(wp
->line
);
1547 * Store a line in "gap" so that a ":while" loop can execute it again.
1550 store_loop_line(gap
, line
)
1554 if (ga_grow(gap
, 1) == FAIL
)
1556 ((wcmd_T
*)(gap
->ga_data
))[gap
->ga_len
].line
= vim_strsave(line
);
1557 ((wcmd_T
*)(gap
->ga_data
))[gap
->ga_len
].lnum
= sourcing_lnum
;
1563 * Free the lines stored for a ":while" or ":for" loop.
1569 while (gap
->ga_len
> 0)
1571 vim_free(((wcmd_T
*)(gap
->ga_data
))[gap
->ga_len
- 1].line
);
1578 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1579 * "func". * Otherwise return TRUE when "fgetline" equals "func".
1583 getline_equal(fgetline
, cookie
, func
)
1584 char_u
*(*fgetline
) __ARGS((int, void *, int));
1585 void *cookie
; /* argument for fgetline() */
1586 char_u
*(*func
) __ARGS((int, void *, int));
1589 char_u
*(*gp
) __ARGS((int, void *, int));
1590 struct loop_cookie
*cp
;
1592 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1593 * function that's originally used to obtain the lines. This may be
1594 * nested several levels. */
1596 cp
= (struct loop_cookie
*)cookie
;
1597 while (gp
== get_loop_line
)
1604 return fgetline
== func
;
1608 #if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1610 * If "fgetline" is get_loop_line(), return the cookie used by the original
1611 * getline function. Otherwise return "cookie".
1615 getline_cookie(fgetline
, cookie
)
1616 char_u
*(*fgetline
) __ARGS((int, void *, int));
1617 void *cookie
; /* argument for fgetline() */
1620 char_u
*(*gp
) __ARGS((int, void *, int));
1621 struct loop_cookie
*cp
;
1623 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1624 * cookie that's originally used to obtain the lines. This may be nested
1625 * several levels. */
1627 cp
= (struct loop_cookie
*)cookie
;
1628 while (gp
== get_loop_line
)
1641 * Execute one Ex command.
1643 * If 'sourcing' is TRUE, the command will be included in the error message.
1645 * 1. skip comment lines and leading space
1646 * 2. handle command modifiers
1649 * 5. parse arguments
1650 * 6. switch on command name
1652 * Note: "fgetline" can be NULL.
1654 * This function may be called recursively!
1656 #if (_MSC_VER == 1200)
1658 * Avoid optimisation bug in VC++ version 6.0
1660 #pragma optimize( "g", off )
1663 do_one_cmd(cmdlinep
, sourcing
,
1671 struct condstack
*cstack
;
1673 char_u
*(*fgetline
) __ARGS((int, void *, int));
1674 void *cookie
; /* argument for fgetline() */
1679 char_u
*errormsg
= NULL
; /* error message */
1680 exarg_T ea
; /* Ex command arguments */
1681 long verbose_save
= -1;
1682 int save_msg_scroll
= 0;
1684 int did_esilent
= 0;
1686 int did_sandbox
= FALSE
;
1688 cmdmod_T save_cmdmod
;
1689 int ni
; /* set when Not Implemented */
1691 vim_memset(&ea
, 0, sizeof(ea
));
1698 /* when not editing the last file :q has to be typed twice */
1701 /* avoid that a function call in 'statusline' does this */
1702 && !getline_equal(fgetline
, cookie
, get_func_line
)
1708 * Reset browse, confirm, etc.. They are restored when returning, for
1711 save_cmdmod
= cmdmod
;
1712 vim_memset(&cmdmod
, 0, sizeof(cmdmod
));
1714 /* "#!anything" is handled like a comment. */
1715 if ((*cmdlinep
)[0] == '#' && (*cmdlinep
)[1] == '!')
1719 * Repeat until no more command modifiers are found.
1725 * 1. skip comment lines and leading white space and colons
1727 while (*ea
.cmd
== ' ' || *ea
.cmd
== '\t' || *ea
.cmd
== ':')
1730 /* in ex mode, an empty line works like :+ */
1731 if (*ea
.cmd
== NUL
&& exmode_active
1732 && (getline_equal(fgetline
, cookie
, getexmodeline
)
1733 || getline_equal(fgetline
, cookie
, getexline
))
1734 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
1736 ea
.cmd
= (char_u
*)"+";
1737 ex_pressedreturn
= TRUE
;
1740 /* ignore comment and empty lines */
1745 ex_pressedreturn
= TRUE
;
1750 * 2. handle command modifiers.
1753 if (VIM_ISDIGIT(*ea
.cmd
))
1754 p
= skipwhite(skipdigits(ea
.cmd
));
1757 /* When adding an entry, also modify cmd_exists(). */
1758 case 'a': if (!checkforcmd(&ea
.cmd
, "aboveleft", 3))
1761 cmdmod
.split
|= WSP_ABOVE
;
1765 case 'b': if (checkforcmd(&ea
.cmd
, "belowright", 3))
1768 cmdmod
.split
|= WSP_BELOW
;
1772 if (checkforcmd(&ea
.cmd
, "browse", 3))
1774 #ifdef FEAT_BROWSE_CMD
1775 cmdmod
.browse
= TRUE
;
1779 if (!checkforcmd(&ea
.cmd
, "botright", 2))
1782 cmdmod
.split
|= WSP_BOT
;
1786 case 'c': if (!checkforcmd(&ea
.cmd
, "confirm", 4))
1788 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1789 cmdmod
.confirm
= TRUE
;
1793 case 'k': if (checkforcmd(&ea
.cmd
, "keepmarks", 3))
1795 cmdmod
.keepmarks
= TRUE
;
1798 if (checkforcmd(&ea
.cmd
, "keepalt", 5))
1800 cmdmod
.keepalt
= TRUE
;
1803 if (!checkforcmd(&ea
.cmd
, "keepjumps", 5))
1805 cmdmod
.keepjumps
= TRUE
;
1808 /* ":hide" and ":hide | cmd" are not modifiers */
1809 case 'h': if (p
!= ea
.cmd
|| !checkforcmd(&p
, "hide", 3)
1810 || *p
== NUL
|| ends_excmd(*p
))
1816 case 'l': if (checkforcmd(&ea
.cmd
, "lockmarks", 3))
1818 cmdmod
.lockmarks
= TRUE
;
1822 if (!checkforcmd(&ea
.cmd
, "leftabove", 5))
1825 cmdmod
.split
|= WSP_ABOVE
;
1829 case 'n': if (!checkforcmd(&ea
.cmd
, "noautocmd", 3))
1832 if (cmdmod
.save_ei
== NULL
)
1834 /* Set 'eventignore' to "all". Restore the
1835 * existing option value later. */
1836 cmdmod
.save_ei
= vim_strsave(p_ei
);
1837 set_string_option_direct((char_u
*)"ei", -1,
1838 (char_u
*)"all", OPT_FREE
, SID_NONE
);
1843 case 'r': if (!checkforcmd(&ea
.cmd
, "rightbelow", 6))
1846 cmdmod
.split
|= WSP_BELOW
;
1850 case 's': if (checkforcmd(&ea
.cmd
, "sandbox", 3))
1859 if (!checkforcmd(&ea
.cmd
, "silent", 3))
1863 save_msg_scroll
= msg_scroll
;
1864 if (*ea
.cmd
== '!' && !vim_iswhite(ea
.cmd
[-1]))
1866 /* ":silent!", but not "silent !cmd" */
1867 ea
.cmd
= skipwhite(ea
.cmd
+ 1);
1873 case 't': if (checkforcmd(&p
, "tab", 3))
1876 if (vim_isdigit(*ea
.cmd
))
1877 cmdmod
.tab
= atoi((char *)ea
.cmd
) + 1;
1879 cmdmod
.tab
= tabpage_index(curtab
) + 1;
1884 if (!checkforcmd(&ea
.cmd
, "topleft", 2))
1887 cmdmod
.split
|= WSP_TOP
;
1891 case 'v': if (checkforcmd(&ea
.cmd
, "vertical", 4))
1893 #ifdef FEAT_VERTSPLIT
1894 cmdmod
.split
|= WSP_VERT
;
1898 if (!checkforcmd(&p
, "verbose", 4))
1900 if (verbose_save
< 0)
1901 verbose_save
= p_verbose
;
1902 if (vim_isdigit(*ea
.cmd
))
1903 p_verbose
= atoi((char *)ea
.cmd
);
1913 ea
.skip
= did_emsg
|| got_int
|| did_throw
|| (cstack
->cs_idx
>= 0
1914 && !(cstack
->cs_flags
[cstack
->cs_idx
] & CSF_ACTIVE
));
1916 ea
.skip
= (if_level
> 0);
1920 # ifdef FEAT_PROFILE
1921 /* Count this line for profiling if ea.skip is FALSE. */
1922 if (do_profiling
== PROF_YES
&& !ea
.skip
)
1924 if (getline_equal(fgetline
, cookie
, get_func_line
))
1925 func_line_exec(getline_cookie(fgetline
, cookie
));
1926 else if (getline_equal(fgetline
, cookie
, getsourceline
))
1931 /* May go to debug mode. If this happens and the ">quit" debug command is
1932 * used, throw an interrupt exception and skip the next command. */
1933 dbg_check_breakpoint(&ea
);
1934 if (!ea
.skip
&& got_int
)
1937 (void)do_intthrow(cstack
);
1942 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1948 * 'x [+-NUM] (where x denotes a currently defined mark)
1953 * The ea.cmd pointer is updated to point to the first character following the
1954 * range spec. If an initial address is found, but no second, the upper bound
1955 * is equal to the lower.
1958 /* repeat for all ',' or ';' separated addresses */
1961 ea
.line1
= ea
.line2
;
1962 ea
.line2
= curwin
->w_cursor
.lnum
; /* default is current line number */
1963 ea
.cmd
= skipwhite(ea
.cmd
);
1964 lnum
= get_address(&ea
.cmd
, ea
.skip
, ea
.addr_count
== 0);
1965 if (ea
.cmd
== NULL
) /* error detected */
1967 if (lnum
== MAXLNUM
)
1969 if (*ea
.cmd
== '%') /* '%' - all lines */
1973 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
1976 /* '*' - visual area */
1977 else if (*ea
.cmd
== '*' && vim_strchr(p_cpo
, CPO_STAR
) == NULL
)
1984 fp
= getmark('<', FALSE
);
1985 if (check_mark(fp
) == FAIL
)
1987 ea
.line1
= fp
->lnum
;
1988 fp
= getmark('>', FALSE
);
1989 if (check_mark(fp
) == FAIL
)
1991 ea
.line2
= fp
->lnum
;
2003 curwin
->w_cursor
.lnum
= ea
.line2
;
2005 else if (*ea
.cmd
!= ',')
2010 /* One address given: set start and end lines */
2011 if (ea
.addr_count
== 1)
2013 ea
.line1
= ea
.line2
;
2014 /* ... but only implicit: really no address given */
2015 if (lnum
== MAXLNUM
)
2019 /* Don't leave the cursor on an illegal line (caused by ';') */
2020 check_cursor_lnum();
2027 * Skip ':' and any white space
2029 ea
.cmd
= skipwhite(ea
.cmd
);
2030 while (*ea
.cmd
== ':')
2031 ea
.cmd
= skipwhite(ea
.cmd
+ 1);
2034 * If we got a line, but no command, then go to the line.
2035 * If we find a '|' or '\n' we set ea.nextcmd.
2037 if (*ea
.cmd
== NUL
|| *ea
.cmd
== '"' ||
2038 (ea
.nextcmd
= check_nextcmd(ea
.cmd
)) != NULL
)
2041 * strange vi behaviour:
2042 * ":3" jumps to line 3
2043 * ":3|..." prints line 3
2044 * ":|" prints current line
2046 if (ea
.skip
) /* skip this if inside :if */
2048 if (*ea
.cmd
== '|' || (exmode_active
&& ea
.line1
!= ea
.line2
))
2050 ea
.cmdidx
= CMD_print
;
2051 ea
.argt
= RANGE
+COUNT
+TRLBAR
;
2052 if ((errormsg
= invalid_range(&ea
)) == NULL
)
2058 else if (ea
.addr_count
!= 0)
2060 if (ea
.line2
> curbuf
->b_ml
.ml_line_count
)
2062 /* With '-' in 'cpoptions' a line number past the file is an
2063 * error, otherwise put it at the end of the file. */
2064 if (vim_strchr(p_cpo
, CPO_MINUS
) != NULL
)
2067 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2071 errormsg
= (char_u
*)_(e_invrange
);
2075 curwin
->w_cursor
.lnum
= 1;
2077 curwin
->w_cursor
.lnum
= ea
.line2
;
2078 beginline(BL_SOL
| BL_FIX
);
2084 /* Find the command and let "p" point to after it. */
2085 p
= find_command(&ea
, NULL
);
2087 #ifdef FEAT_USR_CMDS
2091 errormsg
= (char_u
*)_("E464: Ambiguous use of user-defined command");
2094 /* Check for wrong commands. */
2095 if (*p
== '!' && ea
.cmd
[1] == 0151 && ea
.cmd
[0] == 78)
2097 errormsg
= uc_fun_cmd();
2101 if (ea
.cmdidx
== CMD_SIZE
)
2105 STRCPY(IObuff
, _("E492: Not an editor command"));
2108 STRCAT(IObuff
, ": ");
2109 STRNCAT(IObuff
, *cmdlinep
, 40);
2117 #ifdef FEAT_USR_CMDS
2118 !USER_CMDIDX(ea
.cmdidx
) &&
2120 (cmdnames
[ea
.cmdidx
].cmd_func
== ex_ni
2121 #ifdef HAVE_EX_SCRIPT_NI
2122 || cmdnames
[ea
.cmdidx
].cmd_func
== ex_script_ni
2128 * When the expression evaluation is disabled, recognize the ":if" and
2129 * ":endif" commands and ignore everything in between it.
2131 if (ea
.cmdidx
== CMD_if
)
2135 if (ea
.cmdidx
== CMD_endif
)
2142 /* forced commands */
2143 if (*p
== '!' && ea
.cmdidx
!= CMD_substitute
2144 && ea
.cmdidx
!= CMD_smagic
&& ea
.cmdidx
!= CMD_snomagic
)
2153 * 5. parse arguments
2155 #ifdef FEAT_USR_CMDS
2156 if (!USER_CMDIDX(ea
.cmdidx
))
2158 ea
.argt
= (long)cmdnames
[(int)ea
.cmdidx
].cmd_argt
;
2163 if (sandbox
!= 0 && !(ea
.argt
& SBOXOK
))
2165 /* Command not allowed in sandbox. */
2166 errormsg
= (char_u
*)_(e_sandbox
);
2170 if (!curbuf
->b_p_ma
&& (ea
.argt
& MODIFY
))
2172 /* Command not allowed in non-'modifiable' buffer */
2173 errormsg
= (char_u
*)_(e_modifiable
);
2177 if (text_locked() && !(ea
.argt
& CMDWIN
)
2178 # ifdef FEAT_USR_CMDS
2179 && !USER_CMDIDX(ea
.cmdidx
)
2183 /* Command not allowed when editing the command line. */
2185 if (cmdwin_type
!= 0)
2186 errormsg
= (char_u
*)_(e_cmdwin
);
2189 errormsg
= (char_u
*)_(e_secure
);
2193 /* Disallow editing another buffer when "curbuf_lock" is set.
2194 * Do allow ":edit" (check for argument later).
2195 * Do allow ":checktime" (it's postponed). */
2196 if (!(ea
.argt
& CMDWIN
)
2197 && ea
.cmdidx
!= CMD_edit
2198 && ea
.cmdidx
!= CMD_checktime
2199 # ifdef FEAT_USR_CMDS
2200 && !USER_CMDIDX(ea
.cmdidx
)
2206 if (!ni
&& !(ea
.argt
& RANGE
) && ea
.addr_count
> 0)
2208 /* no range allowed */
2209 errormsg
= (char_u
*)_(e_norange
);
2214 if (!ni
&& !(ea
.argt
& BANG
) && ea
.forceit
) /* no <!> allowed */
2216 errormsg
= (char_u
*)_(e_nobang
);
2221 * Don't complain about the range if it is not used
2222 * (could happen if line_count is accidentally set to 0).
2224 if (!ea
.skip
&& !ni
)
2227 * If the range is backwards, ask for confirmation and, if given, swap
2228 * ea.line1 & ea.line2 so it's forwards again.
2229 * When global command is busy, don't ask, will fail below.
2231 if (!global_busy
&& ea
.line1
> ea
.line2
)
2233 if (msg_silent
== 0)
2235 if (sourcing
|| exmode_active
)
2237 errormsg
= (char_u
*)_("E493: Backwards range given");
2240 if (ask_yesno((char_u
*)
2241 _("Backwards range given, OK to swap"), FALSE
) != 'y')
2245 ea
.line1
= ea
.line2
;
2248 if ((errormsg
= invalid_range(&ea
)) != NULL
)
2252 if ((ea
.argt
& NOTADR
) && ea
.addr_count
== 0) /* default is 1, not cursor */
2258 if (((ea
.argt
& WHOLEFOLD
) || ea
.addr_count
>= 2) && !global_busy
)
2260 /* Put the first line at the start of a closed fold, put the last line
2261 * at the end of a closed fold. */
2262 (void)hasFolding(ea
.line1
, &ea
.line1
, NULL
);
2263 (void)hasFolding(ea
.line2
, NULL
, &ea
.line2
);
2267 #ifdef FEAT_QUICKFIX
2269 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
2270 * option here, so things like % get expanded.
2272 p
= replace_makeprg(&ea
, p
, cmdlinep
);
2278 * Skip to start of argument.
2279 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2281 if (ea
.cmdidx
== CMD_bang
)
2284 ea
.arg
= skipwhite(p
);
2287 * Check for "++opt=val" argument.
2288 * Must be first, allow ":w ++enc=utf8 !cmd"
2290 if (ea
.argt
& ARGOPT
)
2291 while (ea
.arg
[0] == '+' && ea
.arg
[1] == '+')
2292 if (getargopt(&ea
) == FAIL
&& !ni
)
2294 errormsg
= (char_u
*)_(e_invarg
);
2298 if (ea
.cmdidx
== CMD_write
|| ea
.cmdidx
== CMD_update
)
2300 if (*ea
.arg
== '>') /* append */
2302 if (*++ea
.arg
!= '>') /* typed wrong */
2304 errormsg
= (char_u
*)_("E494: Use w or w>>");
2307 ea
.arg
= skipwhite(ea
.arg
+ 1);
2310 else if (*ea
.arg
== '!' && ea
.cmdidx
== CMD_write
) /* :w !filter */
2313 ea
.usefilter
= TRUE
;
2317 if (ea
.cmdidx
== CMD_read
)
2321 ea
.usefilter
= TRUE
; /* :r! filter if ea.forceit */
2324 else if (*ea
.arg
== '!') /* :r !filter */
2327 ea
.usefilter
= TRUE
;
2331 if (ea
.cmdidx
== CMD_lshift
|| ea
.cmdidx
== CMD_rshift
)
2334 while (*ea
.arg
== *ea
.cmd
) /* count number of '>' or '<' */
2339 ea
.arg
= skipwhite(ea
.arg
);
2343 * Check for "+command" argument, before checking for next command.
2344 * Don't do this for ":read !cmd" and ":write !cmd".
2346 if ((ea
.argt
& EDITCMD
) && !ea
.usefilter
)
2347 ea
.do_ecmd_cmd
= getargcmd(&ea
.arg
);
2350 * Check for '|' to separate commands and '"' to start comments.
2351 * Don't do this for ":read !cmd" and ":write !cmd".
2353 if ((ea
.argt
& TRLBAR
) && !ea
.usefilter
)
2354 separate_nextcmd(&ea
);
2357 * Check for <newline> to end a shell command.
2358 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2361 else if (ea
.cmdidx
== CMD_bang
2362 || ea
.cmdidx
== CMD_global
2363 || ea
.cmdidx
== CMD_vglobal
2366 for (p
= ea
.arg
; *p
; ++p
)
2368 /* Remove one backslash before a newline, so that it's possible to
2369 * pass a newline to the shell and also a newline that is preceded
2370 * with a backslash. This makes it impossible to end a shell
2371 * command in a backslash, but that doesn't appear useful.
2372 * Halving the number of backslashes is incompatible with previous
2374 if (*p
== '\\' && p
[1] == '\n')
2376 else if (*p
== '\n')
2385 if ((ea
.argt
& DFLALL
) && ea
.addr_count
== 0)
2388 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2391 /* accept numbered register only when no count allowed (:put) */
2392 if ( (ea
.argt
& REGSTR
)
2394 #ifdef FEAT_USR_CMDS
2395 && valid_yank_reg(*ea
.arg
, (ea
.cmdidx
!= CMD_put
2396 && USER_CMDIDX(ea
.cmdidx
)))
2397 /* Do not allow register = for user commands */
2398 && (!USER_CMDIDX(ea
.cmdidx
) || *ea
.arg
!= '=')
2400 && valid_yank_reg(*ea
.arg
, ea
.cmdidx
!= CMD_put
)
2402 && !((ea
.argt
& COUNT
) && VIM_ISDIGIT(*ea
.arg
)))
2404 ea
.regname
= *ea
.arg
++;
2406 /* for '=' register: accept the rest of the line as an expression */
2407 if (ea
.arg
[-1] == '=' && ea
.arg
[0] != NUL
)
2409 set_expr_line(vim_strsave(ea
.arg
));
2410 ea
.arg
+= STRLEN(ea
.arg
);
2413 ea
.arg
= skipwhite(ea
.arg
);
2417 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2418 * count, it's a buffer name.
2420 if ((ea
.argt
& COUNT
) && VIM_ISDIGIT(*ea
.arg
)
2421 && (!(ea
.argt
& BUFNAME
) || *(p
= skipdigits(ea
.arg
)) == NUL
2422 || vim_iswhite(*p
)))
2424 n
= getdigits(&ea
.arg
);
2425 ea
.arg
= skipwhite(ea
.arg
);
2426 if (n
<= 0 && !ni
&& (ea
.argt
& ZEROR
) == 0)
2428 errormsg
= (char_u
*)_(e_zerocount
);
2431 if (ea
.argt
& NOTADR
) /* e.g. :buffer 2, :sleep 3 */
2434 if (ea
.addr_count
== 0)
2439 ea
.line1
= ea
.line2
;
2443 * Be vi compatible: no error message for out of range.
2445 if (ea
.line2
> curbuf
->b_ml
.ml_line_count
)
2446 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2451 * Check for flags: 'l', 'p' and '#'.
2453 if (ea
.argt
& EXFLAGS
)
2455 /* no arguments allowed */
2456 if (!ni
&& !(ea
.argt
& EXTRA
) && *ea
.arg
!= NUL
2457 && *ea
.arg
!= '"' && (*ea
.arg
!= '|' || (ea
.argt
& TRLBAR
) == 0))
2459 errormsg
= (char_u
*)_(e_trailing
);
2463 if (!ni
&& (ea
.argt
& NEEDARG
) && *ea
.arg
== NUL
)
2465 errormsg
= (char_u
*)_(e_argreq
);
2471 * Skip the command when it's not going to be executed.
2472 * The commands like :if, :endif, etc. always need to be executed.
2473 * Also make an exception for commands that handle a trailing command
2480 /* commands that need evaluation */
2496 /* Commands that handle '|' themselves. Check: A command should
2497 * either have the TRLBAR flag, appear in this list or appear in
2498 * the list at ":help :bar". */
2501 case CMD_belowright
:
2506 case CMD_delfunction
:
2534 case CMD_rightbelow
:
2539 case CMD_substitute
:
2551 default: goto doend
;
2556 if (ea
.argt
& XFILE
)
2558 if (expand_filename(&ea
, cmdlinep
, &errormsg
) == FAIL
)
2562 #ifdef FEAT_LISTCMDS
2564 * Accept buffer name. Cannot be used at the same time with a buffer
2565 * number. Don't do this for a user command.
2567 if ((ea
.argt
& BUFNAME
) && *ea
.arg
!= NUL
&& ea
.addr_count
== 0
2568 # ifdef FEAT_USR_CMDS
2569 && !USER_CMDIDX(ea
.cmdidx
)
2574 * :bdelete, :bwipeout and :bunload take several arguments, separated
2575 * by spaces: find next space (skipping over escaped characters).
2576 * The others take one argument: ignore trailing spaces.
2578 if (ea
.cmdidx
== CMD_bdelete
|| ea
.cmdidx
== CMD_bwipeout
2579 || ea
.cmdidx
== CMD_bunload
)
2580 p
= skiptowhite_esc(ea
.arg
);
2583 p
= ea
.arg
+ STRLEN(ea
.arg
);
2584 while (p
> ea
.arg
&& vim_iswhite(p
[-1]))
2587 ea
.line2
= buflist_findpat(ea
.arg
, p
, (ea
.argt
& BUFUNL
) != 0, FALSE
);
2588 if (ea
.line2
< 0) /* failed */
2591 ea
.arg
= skipwhite(p
);
2596 * 6. switch on command name
2598 * The "ea" structure holds the arguments that can be used.
2600 ea
.cmdlinep
= cmdlinep
;
2601 ea
.getline
= fgetline
;
2607 #ifdef FEAT_USR_CMDS
2608 if (USER_CMDIDX(ea
.cmdidx
))
2611 * Execute a user-defined command.
2619 * Call the function to execute the command.
2622 (cmdnames
[ea
.cmdidx
].cmd_func
)(&ea
);
2623 if (ea
.errmsg
!= NULL
)
2624 errormsg
= (char_u
*)_(ea
.errmsg
);
2629 * If the command just executed called do_cmdline(), any throw or ":return"
2630 * or ":finish" encountered there must also check the cstack of the still
2631 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2632 * exception, or reanimate a returned function or finished script file and
2633 * return or finish it again.
2637 else if (check_cstack
)
2639 if (source_finished(fgetline
, cookie
))
2640 do_finish(&ea
, TRUE
);
2641 else if (getline_equal(fgetline
, cookie
, get_func_line
)
2642 && current_func_returned())
2643 do_return(&ea
, TRUE
, FALSE
, NULL
);
2645 need_rethrow
= check_cstack
= FALSE
;
2649 if (curwin
->w_cursor
.lnum
== 0) /* can happen with zero line number */
2650 curwin
->w_cursor
.lnum
= 1;
2652 if (errormsg
!= NULL
&& *errormsg
!= NUL
&& !did_emsg
)
2656 if (errormsg
!= IObuff
)
2658 STRCPY(IObuff
, errormsg
);
2661 STRCAT(errormsg
, ": ");
2662 STRNCAT(errormsg
, *cmdlinep
, IOSIZE
- STRLEN(IObuff
) - 1);
2668 (ea
.cmdidx
!= CMD_SIZE
2669 # ifdef FEAT_USR_CMDS
2670 && !USER_CMDIDX(ea
.cmdidx
)
2672 ) ? cmdnames
[(int)ea
.cmdidx
].cmd_name
: (char_u
*)NULL
);
2675 if (verbose_save
>= 0)
2676 p_verbose
= verbose_save
;
2678 if (cmdmod
.save_ei
!= NULL
)
2680 /* Restore 'eventignore' to the value before ":noautocmd". */
2681 set_string_option_direct((char_u
*)"ei", -1, cmdmod
.save_ei
,
2682 OPT_FREE
, SID_NONE
);
2683 free_string_option(cmdmod
.save_ei
);
2687 cmdmod
= save_cmdmod
;
2691 /* messages could be enabled for a serious error, need to check if the
2692 * counters don't become negative */
2693 msg_silent
-= did_silent
;
2696 emsg_silent
-= did_esilent
;
2697 if (emsg_silent
< 0)
2699 /* Restore msg_scroll, it's set by file I/O commands, even when no
2700 * message is actually displayed. */
2701 msg_scroll
= save_msg_scroll
;
2709 if (ea
.nextcmd
&& *ea
.nextcmd
== NUL
) /* not really a next command */
2718 #if (_MSC_VER == 1200)
2719 #pragma optimize( "", on )
2723 * Check for an Ex command with optional tail.
2724 * If there is a match advance "pp" to the argument and return TRUE.
2727 checkforcmd(pp
, cmd
, len
)
2728 char_u
**pp
; /* start of command */
2729 char *cmd
; /* name of command */
2730 int len
; /* required length */
2734 for (i
= 0; cmd
[i
] != NUL
; ++i
)
2735 if (cmd
[i
] != (*pp
)[i
])
2737 if (i
>= len
&& !isalpha((*pp
)[i
]))
2739 *pp
= skipwhite(*pp
+ i
);
2746 * Find an Ex command by its name, either built-in or user.
2747 * Start of the name can be found at eap->cmd.
2748 * Returns pointer to char after the command name.
2749 * "full" is set to TRUE if the whole command name matched.
2750 * Returns NULL for an ambiguous user command.
2754 find_command(eap
, full
)
2763 * Isolate the command and search for it in the command table.
2765 * - the 'k' command can directly be followed by any character.
2766 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2767 * but :sre[wind] is another command, as are :scrip[tnames],
2768 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
2769 * - the "d" command can directly be followed by 'l' or 'p' flag.
2774 eap
->cmdidx
= CMD_k
;
2777 else if (p
[0] == 's'
2778 && ((p
[1] == 'c' && p
[2] != 's' && p
[2] != 'r'
2779 && p
[3] != 'i' && p
[4] != 'p')
2781 || (p
[1] == 'i' && p
[2] != 'm' && p
[2] != 'l' && p
[2] != 'g')
2783 || (p
[1] == 'r' && p
[2] != 'e')))
2785 eap
->cmdidx
= CMD_substitute
;
2790 while (ASCII_ISALPHA(*p
))
2792 /* check for non-alpha command */
2793 if (p
== eap
->cmd
&& vim_strchr((char_u
*)"@*!=><&~#", *p
) != NULL
)
2795 len
= (int)(p
- eap
->cmd
);
2796 if (*eap
->cmd
== 'd' && (p
[-1] == 'l' || p
[-1] == 'p'))
2798 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2799 * :delete with the 'l' flag. Same for 'p'. */
2800 for (i
= 0; i
< len
; ++i
)
2801 if (eap
->cmd
[i
] != "delete"[i
])
2807 eap
->flags
|= EXFLAG_LIST
;
2809 eap
->flags
|= EXFLAG_PRINT
;
2813 if (ASCII_ISLOWER(*eap
->cmd
))
2814 eap
->cmdidx
= cmdidxs
[CharOrdLow(*eap
->cmd
)];
2816 eap
->cmdidx
= cmdidxs
[26];
2818 for ( ; (int)eap
->cmdidx
< (int)CMD_SIZE
;
2819 eap
->cmdidx
= (cmdidx_T
)((int)eap
->cmdidx
+ 1))
2820 if (STRNCMP(cmdnames
[(int)eap
->cmdidx
].cmd_name
, (char *)eap
->cmd
,
2825 && cmdnames
[(int)eap
->cmdidx
].cmd_name
[len
] == NUL
)
2831 #ifdef FEAT_USR_CMDS
2832 /* Look for a user defined command as a last resort */
2833 if (eap
->cmdidx
== CMD_SIZE
&& *eap
->cmd
>= 'A' && *eap
->cmd
<= 'Z')
2835 /* User defined commands may contain digits. */
2836 while (ASCII_ISALNUM(*p
))
2838 p
= find_ucmd(eap
, p
, full
, NULL
, NULL
);
2842 eap
->cmdidx
= CMD_SIZE
;
2848 #ifdef FEAT_USR_CMDS
2850 * Search for a user command that matches "eap->cmd".
2851 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2852 * Return a pointer to just after the command.
2853 * Return NULL if there is no matching command.
2856 find_ucmd(eap
, p
, full
, xp
, compl)
2858 char_u
*p
; /* end of the command (possibly including count) */
2859 int *full
; /* set to TRUE for a full match */
2860 expand_T
*xp
; /* used for completion, NULL otherwise */
2861 int *compl; /* completion flags or NULL */
2863 int len
= (int)(p
- eap
->cmd
);
2864 int j
, k
, matchlen
= 0;
2867 int possible
= FALSE
;
2868 char_u
*cp
, *np
; /* Point into typed cmd and test name */
2870 int amb_local
= FALSE
; /* Found ambiguous buffer-local command,
2871 only full match global is accepted. */
2874 * Look for buffer-local user commands first, then global ones.
2876 gap
= &curbuf
->b_ucmds
;
2879 for (j
= 0; j
< gap
->ga_len
; ++j
)
2881 uc
= USER_CMD_GA(gap
, j
);
2885 while (k
< len
&& *np
!= NUL
&& *cp
++ == *np
++)
2887 if (k
== len
|| (*np
== NUL
&& vim_isdigit(eap
->cmd
[k
])))
2889 /* If finding a second match, the command is ambiguous. But
2890 * not if a buffer-local command wasn't a full match and a
2891 * global command is a full match. */
2892 if (k
== len
&& found
&& *np
!= NUL
)
2899 if (!found
|| (k
== len
&& *np
== NUL
))
2901 /* If we matched up to a digit, then there could
2902 * be another command including the digit that we
2903 * should use instead.
2911 eap
->cmdidx
= CMD_USER
;
2913 eap
->cmdidx
= CMD_USER_BUF
;
2914 eap
->argt
= (long)uc
->uc_argt
;
2917 # ifdef FEAT_CMDL_COMPL
2919 *compl = uc
->uc_compl
;
2923 xp
->xp_arg
= uc
->uc_compl_arg
;
2924 xp
->xp_scriptID
= uc
->uc_scriptID
;
2928 /* Do not search for further abbreviations
2929 * if this is an exact match. */
2931 if (k
== len
&& *np
== NUL
)
2942 /* Stop if we found a full match or searched all. */
2943 if (j
< gap
->ga_len
|| gap
== &ucmds
)
2948 /* Only found ambiguous matches. */
2952 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
2956 /* The match we found may be followed immediately by a number. Move "p"
2957 * back to point to it. */
2958 if (found
|| possible
)
2959 return p
+ (matchlen
- len
);
2964 #if defined(FEAT_EVAL) || defined(PROTO)
2965 static struct cmdmod
2969 int has_count
; /* :123verbose :3tab */
2971 {"aboveleft", 3, FALSE
},
2972 {"belowright", 3, FALSE
},
2973 {"botright", 2, FALSE
},
2974 {"browse", 3, FALSE
},
2975 {"confirm", 4, FALSE
},
2977 {"keepalt", 5, FALSE
},
2978 {"keepjumps", 5, FALSE
},
2979 {"keepmarks", 3, FALSE
},
2980 {"leftabove", 5, FALSE
},
2981 {"lockmarks", 3, FALSE
},
2982 {"noautocmd", 3, FALSE
},
2983 {"rightbelow", 6, FALSE
},
2984 {"sandbox", 3, FALSE
},
2985 {"silent", 3, FALSE
},
2987 {"topleft", 2, FALSE
},
2988 {"verbose", 4, TRUE
},
2989 {"vertical", 4, FALSE
},
2993 * Return length of a command modifier (including optional count).
2994 * Return zero when it's not a modifier.
3003 if (VIM_ISDIGIT(*cmd
))
3004 p
= skipwhite(skipdigits(cmd
));
3005 for (i
= 0; i
< sizeof(cmdmods
) / sizeof(struct cmdmod
); ++i
)
3007 for (j
= 0; p
[j
] != NUL
; ++j
)
3008 if (p
[j
] != cmdmods
[i
].name
[j
])
3010 if (!isalpha(p
[j
]) && j
>= cmdmods
[i
].minlen
3011 && (p
== cmd
|| cmdmods
[i
].has_count
))
3012 return j
+ (int)(p
- cmd
);
3018 * Return > 0 if an Ex command "name" exists.
3019 * Return 2 if there is an exact match.
3020 * Return 3 if there is an ambiguous match.
3032 /* Check command modifiers. */
3033 for (i
= 0; i
< sizeof(cmdmods
) / sizeof(struct cmdmod
); ++i
)
3035 for (j
= 0; name
[j
] != NUL
; ++j
)
3036 if (name
[j
] != cmdmods
[i
].name
[j
])
3038 if (name
[j
] == NUL
&& j
>= cmdmods
[i
].minlen
)
3039 return (cmdmods
[i
].name
[j
] == NUL
? 2 : 1);
3042 /* Check built-in commands and user defined commands.
3043 * For ":2match" and ":3match" we need to skip the number. */
3044 ea
.cmd
= (*name
== '2' || *name
== '3') ? name
+ 1 : name
;
3045 ea
.cmdidx
= (cmdidx_T
)0;
3046 p
= find_command(&ea
, &full
);
3049 if (vim_isdigit(*name
) && ea
.cmdidx
!= CMD_match
)
3051 if (*skipwhite(p
) != NUL
)
3052 return 0; /* trailing garbage */
3053 return (ea
.cmdidx
== CMD_SIZE
? 0 : (full
? 2 : 1));
3058 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3059 * we don't need/want deleted. Maybe this could be done better if we didn't
3060 * repeat all this stuff. The only problem is that they may not stay
3061 * perfectly compatible with each other, but then the command line syntax
3062 * probably won't change that much -- webb.
3065 set_one_cmd_context(xp
, buff
)
3067 char_u
*buff
; /* buffer for command string */
3073 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3074 int compl = EXPAND_NOTHING
;
3076 #ifdef FEAT_CMDL_COMPL
3079 int forceit
= FALSE
;
3080 int usefilter
= FALSE
; /* filter instead of file name */
3083 xp
->xp_pattern
= buff
;
3084 xp
->xp_context
= EXPAND_COMMANDS
; /* Default until we get past command */
3088 * 2. skip comment lines and leading space, colons or bars
3090 for (cmd
= buff
; vim_strchr((char_u
*)" \t:|", *cmd
) != NULL
; cmd
++)
3092 xp
->xp_pattern
= cmd
;
3096 if (*cmd
== '"') /* ignore comment lines */
3098 xp
->xp_context
= EXPAND_NOTHING
;
3103 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3105 cmd
= skip_range(cmd
, &xp
->xp_context
);
3110 xp
->xp_pattern
= cmd
;
3115 xp
->xp_context
= EXPAND_NOTHING
;
3119 if (*cmd
== '|' || *cmd
== '\n')
3120 return cmd
+ 1; /* There's another command */
3123 * Isolate the command and search for it in the command table.
3125 * - the 'k' command can directly be followed by any character, but
3126 * do accept "keepmarks", "keepalt" and "keepjumps".
3127 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3129 if (*cmd
== 'k' && cmd
[1] != 'e')
3137 while (ASCII_ISALPHA(*p
) || *p
== '*') /* Allow * wild card */
3139 /* check for non-alpha command */
3140 if (p
== cmd
&& vim_strchr((char_u
*)"@*!=><&~#", *p
) != NULL
)
3142 len
= (int)(p
- cmd
);
3146 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
3149 for (ea
.cmdidx
= (cmdidx_T
)0; (int)ea
.cmdidx
< (int)CMD_SIZE
;
3150 ea
.cmdidx
= (cmdidx_T
)((int)ea
.cmdidx
+ 1))
3151 if (STRNCMP(cmdnames
[(int)ea
.cmdidx
].cmd_name
, cmd
, (size_t)len
) == 0)
3154 #ifdef FEAT_USR_CMDS
3155 if (cmd
[0] >= 'A' && cmd
[0] <= 'Z')
3157 while (ASCII_ISALNUM(*p
) || *p
== '*') /* Allow * wild card */
3159 len
= (int)(p
- cmd
);
3165 * If the cursor is touching the command, and it ends in an alpha-numeric
3166 * character, complete the command name.
3168 if (*p
== NUL
&& ASCII_ISALNUM(p
[-1]))
3171 if (ea
.cmdidx
== CMD_SIZE
)
3173 if (*cmd
== 's' && vim_strchr((char_u
*)"cgriI", cmd
[1]) != NULL
)
3175 ea
.cmdidx
= CMD_substitute
;
3178 #ifdef FEAT_USR_CMDS
3179 else if (cmd
[0] >= 'A' && cmd
[0] <= 'Z')
3182 p
= find_ucmd(&ea
, p
, NULL
, xp
,
3183 # if defined(FEAT_CMDL_COMPL)
3190 ea
.cmdidx
= CMD_SIZE
; /* ambiguous user command */
3194 if (ea
.cmdidx
== CMD_SIZE
)
3196 /* Not still touching the command and it was an illegal one */
3197 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
3201 xp
->xp_context
= EXPAND_NOTHING
; /* Default now that we're past command */
3203 if (*p
== '!') /* forced commands */
3210 * 5. parse arguments
3212 #ifdef FEAT_USR_CMDS
3213 if (!USER_CMDIDX(ea
.cmdidx
))
3215 ea
.argt
= (long)cmdnames
[(int)ea
.cmdidx
].cmd_argt
;
3219 if (ea
.cmdidx
== CMD_write
|| ea
.cmdidx
== CMD_update
)
3221 if (*arg
== '>') /* append */
3225 arg
= skipwhite(arg
);
3227 else if (*arg
== '!' && ea
.cmdidx
== CMD_write
) /* :w !filter */
3234 if (ea
.cmdidx
== CMD_read
)
3236 usefilter
= forceit
; /* :r! filter if forced */
3237 if (*arg
== '!') /* :r !filter */
3244 if (ea
.cmdidx
== CMD_lshift
|| ea
.cmdidx
== CMD_rshift
)
3246 while (*arg
== *cmd
) /* allow any number of '>' or '<' */
3248 arg
= skipwhite(arg
);
3251 /* Does command allow "+command"? */
3252 if ((ea
.argt
& EDITCMD
) && !usefilter
&& *arg
== '+')
3254 /* Check if we're in the +command */
3256 arg
= skip_cmd_arg(arg
, FALSE
);
3258 /* Still touching the command after '+'? */
3262 /* Skip space(s) after +command to get to the real argument */
3263 arg
= skipwhite(arg
);
3267 * Check for '|' to separate commands and '"' to start comments.
3268 * Don't do this for ":read !cmd" and ":write !cmd".
3270 if ((ea
.argt
& TRLBAR
) && !usefilter
)
3273 /* ":redir @" is not the start of a comment */
3274 if (ea
.cmdidx
== CMD_redir
&& p
[0] == '@' && p
[1] == '"')
3283 else if ( (*p
== '"' && !(ea
.argt
& NOTRLCOM
))
3284 || *p
== '|' || *p
== '\n')
3286 if (*(p
- 1) != '\\')
3288 if (*p
== '|' || *p
== '\n')
3290 return NULL
; /* It's a comment */
3297 /* no arguments allowed */
3298 if (!(ea
.argt
& EXTRA
) && *arg
!= NUL
&&
3299 vim_strchr((char_u
*)"|\"", *arg
) == NULL
)
3302 /* Find start of last argument (argument just before cursor): */
3303 p
= buff
+ STRLEN(buff
);
3304 while (p
!= arg
&& *p
!= ' ' && *p
!= TAB
)
3306 if (*p
== ' ' || *p
== TAB
)
3310 if (ea
.argt
& XFILE
)
3313 int in_quote
= FALSE
;
3314 char_u
*bow
= NULL
; /* Beginning of word */
3317 * Allow spaces within back-quotes to count as part of the argument
3320 xp
->xp_pattern
= skipwhite(arg
);
3330 if (c
== '\\' && p
[1] != NUL
)
3339 in_quote
= !in_quote
;
3341 /* An argument can contain just about everything, except
3342 * characters that end the command and white space. */
3343 else if (c
== '|' || c
== '\n' || c
== '"' || (vim_iswhite(c
)
3344 #ifdef SPACE_IN_FILENAME
3345 && (!(ea
.argt
& NOSPC
) || usefilter
)
3349 len
= 0; /* avoid getting stuck when space is in 'isfname' */
3358 if (c
== '`' || vim_isfilec_or_wc(c
))
3362 len
= (*mb_ptr2len
)(p
);
3378 * If we are still inside the quotes, and we passed a space, just
3379 * expand from there.
3381 if (bow
!= NULL
&& in_quote
)
3382 xp
->xp_pattern
= bow
;
3383 xp
->xp_context
= EXPAND_FILES
;
3385 #ifndef BACKSLASH_IN_FILENAME
3386 /* For a shell command more chars need to be escaped. */
3387 if (usefilter
|| ea
.cmdidx
== CMD_bang
)
3389 xp
->xp_shell
= TRUE
;
3391 /* When still after the command name expand executables. */
3392 if (xp
->xp_pattern
== skipwhite(arg
))
3393 xp
->xp_context
= EXPAND_SHELLCMD
;
3397 /* Check for environment variable */
3398 if (*xp
->xp_pattern
== '$'
3399 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3400 || *xp
->xp_pattern
== '%'
3404 for (p
= xp
->xp_pattern
+ 1; *p
!= NUL
; ++p
)
3409 xp
->xp_context
= EXPAND_ENV_VARS
;
3411 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3412 /* Avoid that the assignment uses EXPAND_FILES again. */
3413 if (compl != EXPAND_USER_DEFINED
&& compl != EXPAND_USER_LIST
)
3414 compl = EXPAND_ENV_VARS
;
3421 * 6. switch on command name
3429 if (xp
->xp_context
== EXPAND_FILES
)
3430 xp
->xp_context
= EXPAND_DIRECTORIES
;
3433 xp
->xp_context
= EXPAND_HELP
;
3434 xp
->xp_pattern
= arg
;
3437 /* Command modifiers: return the argument.
3438 * Also for commands with an argument that is a command. */
3441 case CMD_belowright
:
3447 case CMD_folddoclosed
:
3448 case CMD_folddoopen
:
3455 case CMD_rightbelow
:
3465 #ifdef FEAT_CMDL_COMPL
3466 # ifdef FEAT_SEARCH_EXTRA
3468 if (*arg
== NUL
|| !ends_excmd(*arg
))
3470 /* also complete "None" */
3471 set_context_in_echohl_cmd(xp
, arg
);
3472 arg
= skipwhite(skiptowhite(arg
));
3475 xp
->xp_context
= EXPAND_NOTHING
;
3476 arg
= skip_regexp(arg
+ 1, *arg
, p_magic
, NULL
);
3479 return find_nextcmd(arg
);
3483 * All completion for the +cmdline_compl feature goes here.
3486 # ifdef FEAT_USR_CMDS
3488 /* Check for attributes */
3491 arg
++; /* Skip "-" */
3492 p
= skiptowhite(arg
);
3495 /* Cursor is still in the attribute */
3496 p
= vim_strchr(arg
, '=');
3499 /* No "=", so complete attribute names */
3500 xp
->xp_context
= EXPAND_USER_CMD_FLAGS
;
3501 xp
->xp_pattern
= arg
;
3505 /* For the -complete and -nargs attributes, we complete
3506 * their arguments as well.
3508 if (STRNICMP(arg
, "complete", p
- arg
) == 0)
3510 xp
->xp_context
= EXPAND_USER_COMPLETE
;
3511 xp
->xp_pattern
= p
+ 1;
3514 else if (STRNICMP(arg
, "nargs", p
- arg
) == 0)
3516 xp
->xp_context
= EXPAND_USER_NARGS
;
3517 xp
->xp_pattern
= p
+ 1;
3525 /* After the attributes comes the new command name */
3526 p
= skiptowhite(arg
);
3529 xp
->xp_context
= EXPAND_USER_COMMANDS
;
3530 xp
->xp_pattern
= arg
;
3534 /* And finally comes a normal command */
3535 return skipwhite(p
);
3537 case CMD_delcommand
:
3538 xp
->xp_context
= EXPAND_USER_COMMANDS
;
3539 xp
->xp_pattern
= arg
;
3545 delim
= *arg
; /* get the delimiter */
3547 ++arg
; /* skip delimiter if there is one */
3549 while (arg
[0] != NUL
&& arg
[0] != delim
)
3551 if (arg
[0] == '\\' && arg
[1] != NUL
)
3559 case CMD_substitute
:
3563 /* skip "from" part */
3565 arg
= skip_regexp(arg
, delim
, p_magic
, NULL
);
3567 /* skip "to" part */
3568 while (arg
[0] != NUL
&& arg
[0] != delim
)
3570 if (arg
[0] == '\\' && arg
[1] != NUL
)
3574 if (arg
[0] != NUL
) /* skip delimiter */
3576 while (arg
[0] && vim_strchr((char_u
*)"|\"#", arg
[0]) == NULL
)
3590 arg
= skipwhite(skipdigits(arg
)); /* skip count */
3591 if (*arg
== '/') /* Match regexp, not just whole words */
3593 for (++arg
; *arg
&& *arg
!= '/'; arg
++)
3594 if (*arg
== '\\' && arg
[1] != NUL
)
3598 arg
= skipwhite(arg
+ 1);
3600 /* Check for trailing illegal characters */
3601 if (*arg
&& vim_strchr((char_u
*)"|\"\n", *arg
) == NULL
)
3602 xp
->xp_context
= EXPAND_NOTHING
;
3610 return set_context_in_autocmd(xp
, arg
, FALSE
);
3614 return set_context_in_autocmd(xp
, arg
, TRUE
);
3617 set_context_in_set_cmd(xp
, arg
, 0);
3620 set_context_in_set_cmd(xp
, arg
, OPT_GLOBAL
);
3623 set_context_in_set_cmd(xp
, arg
, OPT_LOCAL
);
3636 xp
->xp_context
= EXPAND_TAGS_LISTFILES
;
3638 xp
->xp_context
= EXPAND_TAGS
;
3639 xp
->xp_pattern
= arg
;
3642 xp
->xp_context
= EXPAND_AUGROUP
;
3643 xp
->xp_pattern
= arg
;
3647 set_context_in_syntax_cmd(xp
, arg
);
3663 set_context_for_expression(xp
, arg
, ea
.cmdidx
);
3667 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3668 arg
= xp
->xp_pattern
+ 1;
3669 xp
->xp_context
= EXPAND_USER_VARS
;
3670 xp
->xp_pattern
= arg
;
3674 case CMD_delfunction
:
3675 xp
->xp_context
= EXPAND_USER_FUNC
;
3676 xp
->xp_pattern
= arg
;
3680 set_context_in_echohl_cmd(xp
, arg
);
3684 set_context_in_highlight_cmd(xp
, arg
);
3686 #ifdef FEAT_LISTCMDS
3690 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3691 arg
= xp
->xp_pattern
+ 1;
3696 xp
->xp_context
= EXPAND_BUFFERS
;
3697 xp
->xp_pattern
= arg
;
3700 #ifdef FEAT_USR_CMDS
3703 if (compl != EXPAND_NOTHING
)
3705 /* XFILE: file names are handled above */
3706 if (!(ea
.argt
& XFILE
))
3709 if (compl == EXPAND_MENUS
)
3710 return set_context_in_menu_cmd(xp
, cmd
, arg
, forceit
);
3712 if (compl == EXPAND_COMMANDS
)
3714 if (compl == EXPAND_MAPPINGS
)
3715 return set_context_in_map_cmd(xp
, (char_u
*)"map",
3716 arg
, forceit
, FALSE
, FALSE
, CMD_map
);
3717 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3718 arg
= xp
->xp_pattern
+ 1;
3719 xp
->xp_pattern
= arg
;
3721 xp
->xp_context
= compl;
3725 case CMD_map
: case CMD_noremap
:
3726 case CMD_nmap
: case CMD_nnoremap
:
3727 case CMD_vmap
: case CMD_vnoremap
:
3728 case CMD_omap
: case CMD_onoremap
:
3729 case CMD_imap
: case CMD_inoremap
:
3730 case CMD_cmap
: case CMD_cnoremap
:
3731 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3732 FALSE
, FALSE
, ea
.cmdidx
);
3739 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3740 FALSE
, TRUE
, ea
.cmdidx
);
3741 case CMD_abbreviate
: case CMD_noreabbrev
:
3742 case CMD_cabbrev
: case CMD_cnoreabbrev
:
3743 case CMD_iabbrev
: case CMD_inoreabbrev
:
3744 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3745 TRUE
, FALSE
, ea
.cmdidx
);
3746 case CMD_unabbreviate
:
3749 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3750 TRUE
, TRUE
, ea
.cmdidx
);
3752 case CMD_menu
: case CMD_noremenu
: case CMD_unmenu
:
3753 case CMD_amenu
: case CMD_anoremenu
: case CMD_aunmenu
:
3754 case CMD_nmenu
: case CMD_nnoremenu
: case CMD_nunmenu
:
3755 case CMD_vmenu
: case CMD_vnoremenu
: case CMD_vunmenu
:
3756 case CMD_omenu
: case CMD_onoremenu
: case CMD_ounmenu
:
3757 case CMD_imenu
: case CMD_inoremenu
: case CMD_iunmenu
:
3758 case CMD_cmenu
: case CMD_cnoremenu
: case CMD_cunmenu
:
3759 case CMD_tmenu
: case CMD_tunmenu
:
3760 case CMD_popup
: case CMD_tearoff
: case CMD_emenu
:
3761 return set_context_in_menu_cmd(xp
, cmd
, arg
, forceit
);
3764 case CMD_colorscheme
:
3765 xp
->xp_context
= EXPAND_COLORS
;
3766 xp
->xp_pattern
= arg
;
3770 xp
->xp_context
= EXPAND_COMPILER
;
3771 xp
->xp_pattern
= arg
;
3774 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3775 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3777 if (*skiptowhite(arg
) == NUL
)
3779 xp
->xp_context
= EXPAND_LANGUAGE
;
3780 xp
->xp_pattern
= arg
;
3783 xp
->xp_context
= EXPAND_NOTHING
;
3787 #endif /* FEAT_CMDL_COMPL */
3796 * skip a range specifier of the form: addr [,addr] [;addr] ..
3798 * Backslashed delimiters after / or ? will be skipped, and commands will
3799 * not be expanded between /'s and ?'s or after "'".
3801 * Also skip white space and ":" characters.
3802 * Returns the "cmd" pointer advanced to beyond the range.
3805 skip_range(cmd
, ctx
)
3807 int *ctx
; /* pointer to xp_context or NULL */
3811 while (vim_strchr((char_u
*)" \t0123456789.$%'/?-+,;", *cmd
) != NULL
)
3815 if (*++cmd
== NUL
&& ctx
!= NULL
)
3816 *ctx
= EXPAND_NOTHING
;
3818 else if (*cmd
== '/' || *cmd
== '?')
3821 while (*cmd
!= NUL
&& *cmd
!= delim
)
3822 if (*cmd
++ == '\\' && *cmd
!= NUL
)
3824 if (*cmd
== NUL
&& ctx
!= NULL
)
3825 *ctx
= EXPAND_NOTHING
;
3831 /* Skip ":" and white space. */
3833 cmd
= skipwhite(cmd
+ 1);
3839 * get a single EX address
3841 * Set ptr to the next character after the part that was interpreted.
3842 * Set ptr to NULL when an error is encountered.
3844 * Return MAXLNUM when no Ex address was found.
3847 get_address(ptr
, skip
, to_other_file
)
3849 int skip
; /* only skip the address, don't use it */
3850 int to_other_file
; /* flag: may jump to other file */
3860 cmd
= skipwhite(*ptr
);
3866 case '.': /* '.' - Cursor position */
3868 lnum
= curwin
->w_cursor
.lnum
;
3871 case '$': /* '$' - last line */
3873 lnum
= curbuf
->b_ml
.ml_line_count
;
3876 case '\'': /* ''' - mark */
3886 /* Only accept a mark in another file when it is
3887 * used by itself: ":'M". */
3888 fp
= getmark(*cmd
, to_other_file
&& cmd
[1] == NUL
);
3890 if (fp
== (pos_T
*)-1)
3891 /* Jumped to another file. */
3892 lnum
= curwin
->w_cursor
.lnum
;
3895 if (check_mark(fp
) == FAIL
)
3906 case '?': /* '/' or '?' - search */
3908 if (skip
) /* skip "/pat/" */
3910 cmd
= skip_regexp(cmd
, c
, (int)p_magic
, NULL
);
3916 pos
= curwin
->w_cursor
; /* save curwin->w_cursor */
3918 * When '/' or '?' follows another address, start
3921 if (lnum
!= MAXLNUM
)
3922 curwin
->w_cursor
.lnum
= lnum
;
3924 * Start a forward search at the end of the line.
3925 * Start a backward search at the start of the line.
3926 * This makes sure we never match in the current
3927 * line, and can match anywhere in the
3928 * next/previous line.
3931 curwin
->w_cursor
.col
= MAXCOL
;
3933 curwin
->w_cursor
.col
= 0;
3935 if (!do_search(NULL
, c
, cmd
, 1L,
3936 SEARCH_HIS
| SEARCH_MSG
, NULL
))
3938 curwin
->w_cursor
= pos
;
3942 lnum
= curwin
->w_cursor
.lnum
;
3943 curwin
->w_cursor
= pos
;
3944 /* adjust command string pointer */
3945 cmd
+= searchcmdlen
;
3949 case '\\': /* "\?", "\/" or "\&", repeat search */
3953 else if (*cmd
== '?' || *cmd
== '/')
3957 EMSG(_(e_backslash
));
3965 * When search follows another address, start from
3968 if (lnum
!= MAXLNUM
)
3971 pos
.lnum
= curwin
->w_cursor
.lnum
;
3974 * Start the search just like for the above
3981 if (searchit(curwin
, curbuf
, &pos
,
3982 *cmd
== '?' ? BACKWARD
: FORWARD
,
3983 (char_u
*)"", 1L, SEARCH_MSG
,
3984 i
, (linenr_T
)0, NULL
) != FAIL
)
3996 if (VIM_ISDIGIT(*cmd
)) /* absolute line number */
3997 lnum
= getdigits(&cmd
);
4002 cmd
= skipwhite(cmd
);
4003 if (*cmd
!= '-' && *cmd
!= '+' && !VIM_ISDIGIT(*cmd
))
4006 if (lnum
== MAXLNUM
)
4007 lnum
= curwin
->w_cursor
.lnum
; /* "+1" is same as ".+1" */
4008 if (VIM_ISDIGIT(*cmd
))
4009 i
= '+'; /* "number" is same as "+number" */
4012 if (!VIM_ISDIGIT(*cmd
)) /* '+' is '+1', but '+0' is not '+1' */
4015 n
= getdigits(&cmd
);
4021 } while (*cmd
== '/' || *cmd
== '?');
4029 * Get flags from an Ex command argument.
4035 while (vim_strchr((char_u
*)"lp#", *eap
->arg
) != NULL
)
4037 if (*eap
->arg
== 'l')
4038 eap
->flags
|= EXFLAG_LIST
;
4039 else if (*eap
->arg
== 'p')
4040 eap
->flags
|= EXFLAG_PRINT
;
4042 eap
->flags
|= EXFLAG_NR
;
4043 eap
->arg
= skipwhite(eap
->arg
+ 1);
4048 * Function called for command which is Not Implemented. NI!
4055 eap
->errmsg
= (char_u
*)N_("E319: Sorry, the command is not available in this version");
4058 #ifdef HAVE_EX_SCRIPT_NI
4060 * Function called for script command which is Not Implemented. NI!
4061 * Skips over ":perl <<EOF" constructs.
4070 vim_free(script_get(eap
, eap
->arg
));
4075 * Check range in Ex command for validity.
4076 * Return NULL when valid, error message when invalid.
4084 || eap
->line1
> eap
->line2
4085 || ((eap
->argt
& RANGE
)
4086 && !(eap
->argt
& NOTADR
)
4087 && eap
->line2
> curbuf
->b_ml
.ml_line_count
4089 + (eap
->cmdidx
== CMD_diffget
)
4092 return (char_u
*)_(e_invrange
);
4097 * Correct the range for zero line number, if required.
4103 if (!(eap
->argt
& ZEROR
)) /* zero in range not allowed */
4105 if (eap
->line1
== 0)
4107 if (eap
->line2
== 0)
4112 #ifdef FEAT_QUICKFIX
4113 static char_u
*skip_grep_pat
__ARGS((exarg_T
*eap
));
4116 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4117 * pattern. Otherwise return eap->arg.
4123 char_u
*p
= eap
->arg
;
4125 if (*p
!= NUL
&& (eap
->cmdidx
== CMD_vimgrep
|| eap
->cmdidx
== CMD_lvimgrep
4126 || eap
->cmdidx
== CMD_vimgrepadd
4127 || eap
->cmdidx
== CMD_lvimgrepadd
4128 || grep_internal(eap
->cmdidx
)))
4130 p
= skip_vimgrep_pat(p
, NULL
, NULL
);
4138 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4139 * in the command line, so that things like % get expanded.
4142 replace_makeprg(eap
, p
, cmdlinep
)
4147 char_u
*new_cmdline
;
4155 * Don't do it when ":vimgrep" is used for ":grep".
4157 if ((eap
->cmdidx
== CMD_make
|| eap
->cmdidx
== CMD_lmake
4158 || eap
->cmdidx
== CMD_grep
|| eap
->cmdidx
== CMD_lgrep
4159 || eap
->cmdidx
== CMD_grepadd
4160 || eap
->cmdidx
== CMD_lgrepadd
)
4161 && !grep_internal(eap
->cmdidx
))
4163 if (eap
->cmdidx
== CMD_grep
|| eap
->cmdidx
== CMD_lgrep
4164 || eap
->cmdidx
== CMD_grepadd
|| eap
->cmdidx
== CMD_lgrepadd
)
4166 if (*curbuf
->b_p_gp
== NUL
)
4169 program
= curbuf
->b_p_gp
;
4173 if (*curbuf
->b_p_mp
== NUL
)
4176 program
= curbuf
->b_p_mp
;
4181 if ((pos
= (char_u
*)strstr((char *)program
, "$*")) != NULL
)
4183 /* replace $* by given arguments */
4185 while ((pos
= (char_u
*)strstr((char *)pos
+ 2, "$*")) != NULL
)
4187 len
= (int)STRLEN(p
);
4188 new_cmdline
= alloc((int)(STRLEN(program
) + i
* (len
- 2) + 1));
4189 if (new_cmdline
== NULL
)
4190 return NULL
; /* out of memory */
4192 while ((pos
= (char_u
*)strstr((char *)program
, "$*")) != NULL
)
4194 i
= (int)(pos
- program
);
4195 STRNCPY(ptr
, program
, i
);
4196 STRCPY(ptr
+= i
, p
);
4200 STRCPY(ptr
, program
);
4204 new_cmdline
= alloc((int)(STRLEN(program
) + STRLEN(p
) + 2));
4205 if (new_cmdline
== NULL
)
4206 return NULL
; /* out of memory */
4207 STRCPY(new_cmdline
, program
);
4208 STRCAT(new_cmdline
, " ");
4209 STRCAT(new_cmdline
, p
);
4213 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4214 vim_free(*cmdlinep
);
4215 *cmdlinep
= new_cmdline
;
4223 * Expand file name in Ex command argument.
4224 * Return FAIL for failure, OK otherwise.
4227 expand_filename(eap
, cmdlinep
, errormsgp
)
4232 int has_wildcards
; /* need to expand wildcards */
4239 #ifdef FEAT_QUICKFIX
4240 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4241 p
= skip_grep_pat(eap
);
4247 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4248 * the file name contains a wildcard it should not cause expanding.
4249 * (it will be expanded anyway if there is a wildcard before replacing).
4251 has_wildcards
= mch_has_wildcard(p
);
4255 /* Skip over `=expr`, wildcards in it are not expanded. */
4256 if (p
[0] == '`' && p
[1] == '=')
4259 (void)skip_expr(&p
);
4266 * Quick check if this cannot be the start of a special string.
4267 * Also removes backslash before '%', '#' and '<'.
4269 if (vim_strchr((char_u
*)"%#<", *p
) == NULL
)
4276 * Try to find a match at this position.
4278 repl
= eval_vars(p
, eap
->arg
, &srclen
, &(eap
->do_ecmd_lnum
),
4279 errormsgp
, &escaped
);
4280 if (*errormsgp
!= NULL
) /* error detected */
4282 if (repl
== NULL
) /* no match found */
4288 /* Wildcards won't be expanded below, the replacement is taken
4289 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4290 if (vim_strchr(repl
, '$') != NULL
|| vim_strchr(repl
, '~') != NULL
)
4294 repl
= expand_env_save(repl
);
4298 /* Need to escape white space et al. with a backslash.
4299 * Don't do this for:
4300 * - replacement that already has been escaped: "##"
4301 * - shell commands (may have to use quotes instead).
4302 * - non-unix systems when there is a single argument (spaces don't
4303 * separate arguments then).
4307 && eap
->cmdidx
!= CMD_bang
4308 && eap
->cmdidx
!= CMD_make
4309 && eap
->cmdidx
!= CMD_lmake
4310 && eap
->cmdidx
!= CMD_grep
4311 && eap
->cmdidx
!= CMD_lgrep
4312 && eap
->cmdidx
!= CMD_grepadd
4313 && eap
->cmdidx
!= CMD_lgrepadd
4315 && !(eap
->argt
& NOSPC
)
4320 #ifdef BACKSLASH_IN_FILENAME
4321 /* Don't escape a backslash here, because rem_backslash() doesn't
4322 * remove it later. */
4323 static char_u
*nobslash
= (char_u
*)" \t\"|";
4324 # define ESCAPE_CHARS nobslash
4326 # define ESCAPE_CHARS escape_chars
4329 for (l
= repl
; *l
; ++l
)
4330 if (vim_strchr(ESCAPE_CHARS
, *l
) != NULL
)
4332 l
= vim_strsave_escaped(repl
, ESCAPE_CHARS
);
4342 /* For a shell command a '!' must be escaped. */
4343 if ((eap
->usefilter
|| eap
->cmdidx
== CMD_bang
)
4344 && vim_strpbrk(repl
, (char_u
*)"!&;()<>") != NULL
)
4348 l
= vim_strsave_escaped(repl
, (char_u
*)"!&;()<>");
4353 /* For a sh-like shell escape "!" another time. */
4354 if (strstr((char *)p_sh
, "sh") != NULL
)
4356 l
= vim_strsave_escaped(repl
, (char_u
*)"!");
4366 p
= repl_cmdline(eap
, p
, srclen
, repl
, cmdlinep
);
4373 * One file argument: Expand wildcards.
4374 * Don't do this with ":r !command" or ":w !command".
4376 if ((eap
->argt
& NOSPC
) && !eap
->usefilter
)
4379 * May do this twice:
4380 * 1. Replace environment variables.
4381 * 2. Replace any other wildcards, remove backslashes.
4383 for (n
= 1; n
<= 2; ++n
)
4389 * Only for Unix we check for more than one file name.
4390 * For other systems spaces are considered to be part
4392 * Only check here if there is no wildcard, otherwise
4393 * ExpandOne() will check for errors. This allows
4394 * ":e `ls ve*.c`" on Unix.
4397 for (p
= eap
->arg
; *p
; ++p
)
4399 /* skip escaped characters */
4400 if (p
[1] && (*p
== '\\' || *p
== Ctrl_V
))
4402 else if (vim_iswhite(*p
))
4404 *errormsgp
= (char_u
*)_("E172: Only one file name allowed");
4411 * Halve the number of backslashes (this is Vi compatible).
4412 * For Unix and OS/2, when wildcards are expanded, this is
4413 * done by ExpandOne() below.
4415 #if defined(UNIX) || defined(OS2)
4418 backslash_halve(eap
->arg
);
4426 * First loop: May expand environment variables. This
4427 * can be done much faster with expand_env() than with
4428 * something else (e.g., calling a shell).
4429 * After expanding environment variables, check again
4430 * if there are still wildcards present.
4432 if (vim_strchr(eap
->arg
, '$') != NULL
4433 || vim_strchr(eap
->arg
, '~') != NULL
)
4435 expand_env_esc(eap
->arg
, NameBuff
, MAXPATHL
,
4437 has_wildcards
= mch_has_wildcard(NameBuff
);
4448 xpc
.xp_context
= EXPAND_FILES
;
4449 p
= ExpandOne(&xpc
, eap
->arg
, NULL
,
4450 WILD_LIST_NOTFOUND
|WILD_ADD_SLASH
,
4457 (void)repl_cmdline(eap
, eap
->arg
, (int)STRLEN(eap
->arg
),
4459 if (n
== 2) /* p came from ExpandOne() */
4469 * Replace part of the command line, keeping eap->cmd, eap->arg and
4470 * eap->nextcmd correct.
4471 * "src" points to the part that is to be replaced, of length "srclen".
4472 * "repl" is the replacement string.
4473 * Returns a pointer to the character after the replaced string.
4474 * Returns NULL for failure.
4477 repl_cmdline(eap
, src
, srclen
, repl
, cmdlinep
)
4486 char_u
*new_cmdline
;
4489 * The new command line is build in new_cmdline[].
4490 * First allocate it.
4491 * Careful: a "+cmd" argument may have been NUL terminated.
4493 len
= (int)STRLEN(repl
);
4494 i
= (int)(src
- *cmdlinep
) + (int)STRLEN(src
+ srclen
) + len
+ 3;
4495 if (eap
->nextcmd
!= NULL
)
4496 i
+= (int)STRLEN(eap
->nextcmd
);/* add space for next command */
4497 if ((new_cmdline
= alloc((unsigned)i
)) == NULL
)
4498 return NULL
; /* out of memory! */
4501 * Copy the stuff before the expanded part.
4502 * Copy the expanded stuff.
4503 * Copy what came after the expanded part.
4504 * Copy the next commands, if there are any.
4506 i
= (int)(src
- *cmdlinep
); /* length of part before match */
4507 mch_memmove(new_cmdline
, *cmdlinep
, (size_t)i
);
4509 mch_memmove(new_cmdline
+ i
, repl
, (size_t)len
);
4510 i
+= len
; /* remember the end of the string */
4511 STRCPY(new_cmdline
+ i
, src
+ srclen
);
4512 src
= new_cmdline
+ i
; /* remember where to continue */
4514 if (eap
->nextcmd
!= NULL
) /* append next command */
4516 i
= (int)STRLEN(new_cmdline
) + 1;
4517 STRCPY(new_cmdline
+ i
, eap
->nextcmd
);
4518 eap
->nextcmd
= new_cmdline
+ i
;
4520 eap
->cmd
= new_cmdline
+ (eap
->cmd
- *cmdlinep
);
4521 eap
->arg
= new_cmdline
+ (eap
->arg
- *cmdlinep
);
4522 if (eap
->do_ecmd_cmd
!= NULL
&& eap
->do_ecmd_cmd
!= dollar_command
)
4523 eap
->do_ecmd_cmd
= new_cmdline
+ (eap
->do_ecmd_cmd
- *cmdlinep
);
4524 vim_free(*cmdlinep
);
4525 *cmdlinep
= new_cmdline
;
4531 * Check for '|' to separate commands and '"' to start comments.
4534 separate_nextcmd(eap
)
4539 #ifdef FEAT_QUICKFIX
4540 p
= skip_grep_pat(eap
);
4545 for ( ; *p
; mb_ptr_adv(p
))
4549 if (eap
->argt
& (USECTRLV
| XFILE
))
4550 ++p
; /* skip CTRL-V and next char */
4552 /* remove CTRL-V and skip next char */
4554 if (*p
== NUL
) /* stop at NUL after CTRL-V */
4559 /* Skip over `=expr` when wildcards are expanded. */
4560 else if (p
[0] == '`' && p
[1] == '=' && (eap
->argt
& XFILE
))
4563 (void)skip_expr(&p
);
4567 /* Check for '"': start of comment or '|': next command */
4568 /* :@" and :*" do not start a comment!
4569 * :redir @" doesn't either. */
4570 else if ((*p
== '"' && !(eap
->argt
& NOTRLCOM
)
4571 && ((eap
->cmdidx
!= CMD_at
&& eap
->cmdidx
!= CMD_star
)
4573 && (eap
->cmdidx
!= CMD_redir
4574 || p
!= eap
->arg
+ 1 || p
[-1] != '@'))
4575 || *p
== '|' || *p
== '\n')
4578 * We remove the '\' before the '|', unless USECTRLV is used
4579 * AND 'b' is present in 'cpoptions'.
4581 if ((vim_strchr(p_cpo
, CPO_BAR
) == NULL
4582 || !(eap
->argt
& USECTRLV
)) && *(p
- 1) == '\\')
4584 STRMOVE(p
- 1, p
); /* remove the '\' */
4589 eap
->nextcmd
= check_nextcmd(p
);
4596 if (!(eap
->argt
& NOTRLCOM
)) /* remove trailing spaces */
4597 del_trailing_spaces(eap
->arg
);
4601 * get + command from ex argument
4607 char_u
*arg
= *argp
;
4608 char_u
*command
= NULL
;
4610 if (*arg
== '+') /* +[command] */
4613 if (vim_isspace(*arg
))
4614 command
= dollar_command
;
4618 arg
= skip_cmd_arg(command
, TRUE
);
4620 *arg
++ = NUL
; /* terminate command with NUL */
4623 arg
= skipwhite(arg
); /* skip over spaces */
4630 * Find end of "+command" argument. Skip over "\ " and "\\".
4633 skip_cmd_arg(p
, rembs
)
4635 int rembs
; /* TRUE to halve the number of backslashes */
4637 while (*p
&& !vim_isspace(*p
))
4639 if (*p
== '\\' && p
[1] != NUL
)
4652 * Get "++opt=arg" argument.
4653 * Return FAIL or OK.
4659 char_u
*arg
= eap
->arg
+ 2;
4665 /* ":edit ++[no]bin[ary] file" */
4666 if (STRNCMP(arg
, "bin", 3) == 0 || STRNCMP(arg
, "nobin", 5) == 0)
4671 eap
->force_bin
= FORCE_NOBIN
;
4674 eap
->force_bin
= FORCE_BIN
;
4675 if (!checkforcmd(&arg
, "binary", 3))
4677 eap
->arg
= skipwhite(arg
);
4681 /* ":read ++edit file" */
4682 if (STRNCMP(arg
, "edit", 4) == 0)
4684 eap
->read_edit
= TRUE
;
4685 eap
->arg
= skipwhite(arg
+ 4);
4689 if (STRNCMP(arg
, "ff", 2) == 0)
4692 pp
= &eap
->force_ff
;
4694 else if (STRNCMP(arg
, "fileformat", 10) == 0)
4697 pp
= &eap
->force_ff
;
4700 else if (STRNCMP(arg
, "enc", 3) == 0)
4703 pp
= &eap
->force_enc
;
4705 else if (STRNCMP(arg
, "encoding", 8) == 0)
4708 pp
= &eap
->force_enc
;
4710 else if (STRNCMP(arg
, "bad", 3) == 0)
4713 pp
= &eap
->bad_char
;
4717 if (pp
== NULL
|| *arg
!= '=')
4721 *pp
= (int)(arg
- eap
->cmd
);
4722 arg
= skip_cmd_arg(arg
, FALSE
);
4723 eap
->arg
= skipwhite(arg
);
4727 if (pp
== &eap
->force_ff
)
4730 if (check_ff_value(eap
->cmd
+ eap
->force_ff
) == FAIL
)
4734 else if (pp
== &eap
->force_enc
)
4736 /* Make 'fileencoding' lower case. */
4737 for (p
= eap
->cmd
+ eap
->force_enc
; *p
!= NUL
; ++p
)
4738 *p
= TOLOWER_ASC(*p
);
4742 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4744 p
= eap
->cmd
+ eap
->bad_char
;
4745 if (STRICMP(p
, "keep") == 0)
4746 eap
->bad_char
= BAD_KEEP
;
4747 else if (STRICMP(p
, "drop") == 0)
4748 eap
->bad_char
= BAD_DROP
;
4749 else if (MB_BYTE2LEN(*p
) == 1 && p
[1] == NUL
)
4760 * ":abbreviate" and friends.
4766 do_exmap(eap
, TRUE
); /* almost the same as mapping */
4770 * ":map" and friends.
4777 * If we are sourcing .exrc or .vimrc in current directory we
4778 * print the mappings for security reasons.
4783 msg_outtrans(eap
->cmd
);
4786 do_exmap(eap
, FALSE
);
4790 * ":unmap" and friends.
4796 do_exmap(eap
, FALSE
);
4800 * ":mapclear" and friends.
4806 map_clear(eap
->cmd
, eap
->arg
, eap
->forceit
, FALSE
);
4810 * ":abclear" and friends.
4816 map_clear(eap
->cmd
, eap
->arg
, TRUE
, TRUE
);
4825 * Disallow auto commands from .exrc and .vimrc in current
4826 * directory for security reasons.
4831 eap
->errmsg
= e_curdir
;
4833 else if (eap
->cmdidx
== CMD_autocmd
)
4834 do_autocmd(eap
->arg
, eap
->forceit
);
4836 do_augroup(eap
->arg
, eap
->forceit
);
4840 * ":doautocmd": Apply the automatic commands to the current buffer.
4846 (void)do_doautocmd(eap
->arg
, TRUE
);
4851 #ifdef FEAT_LISTCMDS
4853 * :[N]bunload[!] [N] [bufname] unload buffer
4854 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4855 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4861 eap
->errmsg
= do_bufdel(
4862 eap
->cmdidx
== CMD_bdelete
? DOBUF_DEL
4863 : eap
->cmdidx
== CMD_bwipeout
? DOBUF_WIPE
4864 : DOBUF_UNLOAD
, eap
->arg
,
4865 eap
->addr_count
, (int)eap
->line1
, (int)eap
->line2
, eap
->forceit
);
4869 * :[N]buffer [N] to buffer N
4870 * :[N]sbuffer [N] to buffer N
4877 eap
->errmsg
= e_trailing
;
4880 if (eap
->addr_count
== 0) /* default is current buffer */
4881 goto_buffer(eap
, DOBUF_CURRENT
, FORWARD
, 0);
4883 goto_buffer(eap
, DOBUF_FIRST
, FORWARD
, (int)eap
->line2
);
4888 * :[N]bmodified [N] to next mod. buffer
4889 * :[N]sbmodified [N] to next mod. buffer
4895 goto_buffer(eap
, DOBUF_MOD
, FORWARD
, (int)eap
->line2
);
4899 * :[N]bnext [N] to next buffer
4900 * :[N]sbnext [N] split and to next buffer
4906 goto_buffer(eap
, DOBUF_CURRENT
, FORWARD
, (int)eap
->line2
);
4910 * :[N]bNext [N] to previous buffer
4911 * :[N]bprevious [N] to previous buffer
4912 * :[N]sbNext [N] split and to previous buffer
4913 * :[N]sbprevious [N] split and to previous buffer
4919 goto_buffer(eap
, DOBUF_CURRENT
, BACKWARD
, (int)eap
->line2
);
4923 * :brewind to first buffer
4924 * :bfirst to first buffer
4925 * :sbrewind split and to first buffer
4926 * :sbfirst split and to first buffer
4932 goto_buffer(eap
, DOBUF_FIRST
, FORWARD
, 0);
4936 * :blast to last buffer
4937 * :sblast split and to last buffer
4943 goto_buffer(eap
, DOBUF_LAST
, BACKWARD
, 0);
4951 return (c
== NUL
|| c
== '|' || c
== '"' || c
== '\n');
4954 #if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4957 * Return the next command, after the first '|' or '\n'.
4958 * Return NULL if not found.
4964 while (*p
!= '|' && *p
!= '\n')
4975 * Check if *p is a separator between Ex commands.
4976 * Return NULL if it isn't, (p + 1) if it is.
4983 if (*p
== '|' || *p
== '\n')
4990 * - if there are more files to edit
4991 * - and this is the last window
4992 * - and forceit not used
4993 * - and not repeated twice on a row
4994 * return FAIL and give error message if 'message' TRUE
4995 * return OK otherwise
4998 check_more(message
, forceit
)
4999 int message
; /* when FALSE check only, no messages */
5002 int n
= ARGCOUNT
- curwin
->w_arg_idx
- 1;
5004 if (!forceit
&& only_one_window()
5005 && ARGCOUNT
> 1 && !arg_had_last
&& n
>= 0 && quitmore
== 0)
5009 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5010 if ((p_confirm
|| cmdmod
.confirm
) && curbuf
->b_fname
!= NULL
)
5012 char_u buff
[IOSIZE
];
5015 STRCPY(buff
, _("1 more file to edit. Quit anyway?"));
5017 vim_snprintf((char *)buff
, IOSIZE
,
5018 _("%d more files to edit. Quit anyway?"), n
);
5019 if (vim_dialog_yesno(VIM_QUESTION
, NULL
, buff
, 1) == VIM_YES
)
5025 EMSG(_("E173: 1 more file to edit"));
5027 EMSGN(_("E173: %ld more files to edit"), n
);
5028 quitmore
= 2; /* next try to quit is allowed */
5035 #ifdef FEAT_CMDL_COMPL
5037 * Function given to ExpandGeneric() to obtain the list of command names.
5041 get_command_name(xp
, idx
)
5045 if (idx
>= (int)CMD_SIZE
)
5046 # ifdef FEAT_USR_CMDS
5047 return get_user_command_name(idx
);
5051 return cmdnames
[idx
].cmd_name
;
5055 #if defined(FEAT_USR_CMDS) || defined(PROTO)
5056 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
));
5057 static void uc_list
__ARGS((char_u
*name
, size_t name_len
));
5058 static int uc_scan_attr
__ARGS((char_u
*attr
, size_t len
, long *argt
, long *def
, int *flags
, int *compl, char_u
**compl_arg
));
5059 static char_u
*uc_split_args
__ARGS((char_u
*arg
, size_t *lenp
));
5060 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
));
5063 uc_add_command(name
, name_len
, rep
, argt
, def
, flags
, compl, compl_arg
, force
)
5078 char_u
*rep_buf
= NULL
;
5081 replace_termcodes(rep
, &rep_buf
, FALSE
, FALSE
, FALSE
);
5082 if (rep_buf
== NULL
)
5084 /* Can't replace termcodes - try using the string as is */
5085 rep_buf
= vim_strsave(rep
);
5087 /* Give up if out of memory */
5088 if (rep_buf
== NULL
)
5092 /* get address of growarray: global or in curbuf */
5093 if (flags
& UC_BUFFER
)
5095 gap
= &curbuf
->b_ucmds
;
5096 if (gap
->ga_itemsize
== 0)
5097 ga_init2(gap
, (int)sizeof(ucmd_T
), 4);
5102 /* Search for the command in the already defined commands. */
5103 for (i
= 0; i
< gap
->ga_len
; ++i
)
5107 cmd
= USER_CMD_GA(gap
, i
);
5108 len
= STRLEN(cmd
->uc_name
);
5109 cmp
= STRNCMP(name
, cmd
->uc_name
, name_len
);
5114 else if (name_len
> len
)
5122 EMSG(_("E174: Command already exists: add ! to replace it"));
5126 vim_free(cmd
->uc_rep
);
5131 /* Stop as soon as we pass the name to add */
5136 /* Extend the array unless we're replacing an existing command */
5139 if (ga_grow(gap
, 1) != OK
)
5141 if ((p
= vim_strnsave(name
, (int)name_len
)) == NULL
)
5144 cmd
= USER_CMD_GA(gap
, i
);
5145 mch_memmove(cmd
+ 1, cmd
, (gap
->ga_len
- i
) * sizeof(ucmd_T
));
5152 cmd
->uc_rep
= rep_buf
;
5153 cmd
->uc_argt
= argt
;
5155 cmd
->uc_compl
= compl;
5157 cmd
->uc_scriptID
= current_SID
;
5158 # ifdef FEAT_CMDL_COMPL
5159 cmd
->uc_compl_arg
= compl_arg
;
5167 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5168 vim_free(compl_arg
);
5174 * List of names for completion for ":command" with the EXPAND_ flag.
5175 * Must be alphabetical for completion.
5181 } command_complete
[] =
5183 {EXPAND_AUGROUP
, "augroup"},
5184 {EXPAND_BUFFERS
, "buffer"},
5185 {EXPAND_COMMANDS
, "command"},
5186 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5187 {EXPAND_USER_DEFINED
, "custom"},
5188 {EXPAND_USER_LIST
, "customlist"},
5190 {EXPAND_DIRECTORIES
, "dir"},
5191 {EXPAND_ENV_VARS
, "environment"},
5192 {EXPAND_EVENTS
, "event"},
5193 {EXPAND_EXPRESSION
, "expression"},
5194 {EXPAND_FILES
, "file"},
5195 {EXPAND_FUNCTIONS
, "function"},
5196 {EXPAND_HELP
, "help"},
5197 {EXPAND_HIGHLIGHT
, "highlight"},
5198 {EXPAND_MAPPINGS
, "mapping"},
5199 {EXPAND_MENUS
, "menu"},
5200 {EXPAND_SETTINGS
, "option"},
5201 {EXPAND_SHELLCMD
, "shellcmd"},
5202 {EXPAND_TAGS
, "tag"},
5203 {EXPAND_TAGS_LISTFILES
, "tag_listfiles"},
5204 {EXPAND_USER_VARS
, "var"},
5209 uc_list(name
, name_len
)
5220 gap
= &curbuf
->b_ucmds
;
5223 for (i
= 0; i
< gap
->ga_len
; ++i
)
5225 cmd
= USER_CMD_GA(gap
, i
);
5226 a
= (long)cmd
->uc_argt
;
5228 /* Skip commands which don't match the requested prefix */
5229 if (STRNCMP(name
, cmd
->uc_name
, name_len
) != 0)
5232 /* Put out the title first time */
5234 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5241 msg_putchar(a
& BANG
? '!' : ' ');
5242 msg_putchar(a
& REGSTR
? '"' : ' ');
5243 msg_putchar(gap
!= &ucmds
? 'b' : ' ');
5246 msg_outtrans_attr(cmd
->uc_name
, hl_attr(HLF_D
));
5247 len
= (int)STRLEN(cmd
->uc_name
) + 4;
5257 switch ((int)(a
& (EXTRA
|NOSPC
|NEEDARG
)))
5259 case 0: IObuff
[len
++] = '0'; break;
5260 case (EXTRA
): IObuff
[len
++] = '*'; break;
5261 case (EXTRA
|NOSPC
): IObuff
[len
++] = '?'; break;
5262 case (EXTRA
|NEEDARG
): IObuff
[len
++] = '+'; break;
5263 case (EXTRA
|NOSPC
|NEEDARG
): IObuff
[len
++] = '1'; break;
5267 IObuff
[len
++] = ' ';
5271 if (a
& (RANGE
|COUNT
))
5276 sprintf((char *)IObuff
+ len
, "%ldc", cmd
->uc_def
);
5277 len
+= (int)STRLEN(IObuff
+ len
);
5279 else if (a
& DFLALL
)
5280 IObuff
[len
++] = '%';
5281 else if (cmd
->uc_def
>= 0)
5284 sprintf((char *)IObuff
+ len
, "%ld", cmd
->uc_def
);
5285 len
+= (int)STRLEN(IObuff
+ len
);
5288 IObuff
[len
++] = '.';
5292 IObuff
[len
++] = ' ';
5296 for (j
= 0; command_complete
[j
].expand
!= 0; ++j
)
5297 if (command_complete
[j
].expand
== cmd
->uc_compl
)
5299 STRCPY(IObuff
+ len
, command_complete
[j
].name
);
5300 len
+= (int)STRLEN(IObuff
+ len
);
5305 IObuff
[len
++] = ' ';
5309 msg_outtrans(IObuff
);
5311 msg_outtrans_special(cmd
->uc_rep
, FALSE
);
5314 last_set_msg(cmd
->uc_scriptID
);
5321 if (gap
== &ucmds
|| i
< gap
->ga_len
)
5327 MSG(_("No user-defined commands found"));
5333 static char_u fcmd
[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5334 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5335 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5339 for (i
= 0; fcmd
[i
]; ++i
)
5340 IObuff
[i
] = fcmd
[i
] - 0x40;
5346 uc_scan_attr(attr
, len
, argt
, def
, flags
, compl, compl_arg
)
5359 EMSG(_("E175: No attribute specified"));
5363 /* First, try the simple attributes (no arguments) */
5364 if (STRNICMP(attr
, "bang", len
) == 0)
5366 else if (STRNICMP(attr
, "buffer", len
) == 0)
5367 *flags
|= UC_BUFFER
;
5368 else if (STRNICMP(attr
, "register", len
) == 0)
5370 else if (STRNICMP(attr
, "bar", len
) == 0)
5377 size_t attrlen
= len
;
5379 /* Look for the attribute name - which is the part before any '=' */
5380 for (i
= 0; i
< (int)len
; ++i
)
5385 vallen
= len
- i
- 1;
5391 if (STRNICMP(attr
, "nargs", attrlen
) == 0)
5396 /* Do nothing - this is the default */;
5397 else if (*val
== '1')
5398 *argt
|= (EXTRA
| NOSPC
| NEEDARG
);
5399 else if (*val
== '*')
5401 else if (*val
== '?')
5402 *argt
|= (EXTRA
| NOSPC
);
5403 else if (*val
== '+')
5404 *argt
|= (EXTRA
| NEEDARG
);
5411 EMSG(_("E176: Invalid number of arguments"));
5415 else if (STRNICMP(attr
, "range", attrlen
) == 0)
5418 if (vallen
== 1 && *val
== '%')
5420 else if (val
!= NULL
)
5426 EMSG(_("E177: Count cannot be specified twice"));
5430 *def
= getdigits(&p
);
5431 *argt
|= (ZEROR
| NOTADR
);
5433 if (p
!= val
+ vallen
|| vallen
== 0)
5436 EMSG(_("E178: Invalid default value for count"));
5441 else if (STRNICMP(attr
, "count", attrlen
) == 0)
5443 *argt
|= (COUNT
| ZEROR
| RANGE
| NOTADR
);
5451 *def
= getdigits(&p
);
5453 if (p
!= val
+ vallen
)
5460 else if (STRNICMP(attr
, "complete", attrlen
) == 0)
5464 EMSG(_("E179: argument required for -complete"));
5468 if (parse_compl_arg(val
, (int)vallen
, compl, argt
, compl_arg
)
5474 char_u ch
= attr
[len
];
5476 EMSG2(_("E181: Invalid attribute: %s"), attr
);
5495 int compl = EXPAND_NOTHING
;
5496 char_u
*compl_arg
= NULL
;
5497 int has_attr
= (eap
->arg
[0] == '-');
5501 /* Check for attributes */
5505 end
= skiptowhite(p
);
5506 if (uc_scan_attr(p
, end
- p
, &argt
, &def
, &flags
, &compl, &compl_arg
)
5512 /* Get the name (if any) and skip to the following argument */
5514 if (ASCII_ISALPHA(*p
))
5515 while (ASCII_ISALNUM(*p
))
5517 if (!ends_excmd(*p
) && !vim_iswhite(*p
))
5519 EMSG(_("E182: Invalid command name"));
5524 /* If there is nothing after the name, and no attributes were specified,
5525 * we are listing commands
5528 if (!has_attr
&& ends_excmd(*p
))
5530 uc_list(name
, end
- name
);
5532 else if (!ASCII_ISUPPER(*name
))
5534 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5538 uc_add_command(name
, end
- name
, p
, argt
, def
, flags
, compl, compl_arg
,
5544 * Clear all user commands, global and for current buffer.
5552 uc_clear(&curbuf
->b_ucmds
);
5556 * Clear all user commands for "gap".
5565 for (i
= 0; i
< gap
->ga_len
; ++i
)
5567 cmd
= USER_CMD_GA(gap
, i
);
5568 vim_free(cmd
->uc_name
);
5569 vim_free(cmd
->uc_rep
);
5570 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5571 vim_free(cmd
->uc_compl_arg
);
5586 gap
= &curbuf
->b_ucmds
;
5589 for (i
= 0; i
< gap
->ga_len
; ++i
)
5591 cmd
= USER_CMD_GA(gap
, i
);
5592 cmp
= STRCMP(eap
->arg
, cmd
->uc_name
);
5596 if (gap
== &ucmds
|| cmp
== 0)
5603 EMSG2(_("E184: No such user-defined command: %s"), eap
->arg
);
5607 vim_free(cmd
->uc_name
);
5608 vim_free(cmd
->uc_rep
);
5609 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5610 vim_free(cmd
->uc_compl_arg
);
5615 if (i
< gap
->ga_len
)
5616 mch_memmove(cmd
, cmd
+ 1, (gap
->ga_len
- i
) * sizeof(ucmd_T
));
5620 * split and quote args for <f-args>
5623 uc_split_args(arg
, lenp
)
5632 /* Precalculate length */
5634 len
= 2; /* Initial and final quotes */
5638 if (p
[0] == '\\' && p
[1] == '\\')
5643 else if (p
[0] == '\\' && vim_iswhite(p
[1]))
5648 else if (*p
== '\\' || *p
== '"')
5653 else if (vim_iswhite(*p
))
5667 buf
= alloc(len
+ 1);
5679 if (p
[0] == '\\' && p
[1] == '\\')
5685 else if (p
[0] == '\\' && vim_iswhite(p
[1]))
5690 else if (*p
== '\\' || *p
== '"')
5695 else if (vim_iswhite(*p
))
5717 * Check for a <> code in a user command.
5718 * "code" points to the '<'. "len" the length of the <> (inclusive).
5719 * "buf" is where the result is to be added.
5720 * "split_buf" points to a buffer used for splitting, caller should free it.
5721 * "split_len" is the length of what "split_buf" contains.
5722 * Returns the length of the replacement, which has been added to "buf".
5723 * Returns -1 if there was no match, and only the "<" has been copied.
5726 uc_check_code(code
, len
, buf
, cmd
, eap
, split_buf
, split_len
)
5730 ucmd_T
*cmd
; /* the user command we're expanding */
5731 exarg_T
*eap
; /* ex arguments */
5736 char_u
*p
= code
+ 1;
5739 enum { ct_ARGS
, ct_BANG
, ct_COUNT
, ct_LINE1
, ct_LINE2
, ct_REGISTER
,
5740 ct_LT
, ct_NONE
} type
= ct_NONE
;
5742 if ((vim_strchr((char_u
*)"qQfF", *p
) != NULL
) && p
[1] == '-')
5744 quote
= (*p
== 'q' || *p
== 'Q') ? 1 : 2;
5752 else if (STRNICMP(p
, "args>", l
) == 0)
5754 else if (STRNICMP(p
, "bang>", l
) == 0)
5756 else if (STRNICMP(p
, "count>", l
) == 0)
5758 else if (STRNICMP(p
, "line1>", l
) == 0)
5760 else if (STRNICMP(p
, "line2>", l
) == 0)
5762 else if (STRNICMP(p
, "lt>", l
) == 0)
5764 else if (STRNICMP(p
, "reg>", l
) == 0 || STRNICMP(p
, "register>", l
) == 0)
5770 /* Simple case first */
5771 if (*eap
->arg
== NUL
)
5784 /* When specified there is a single argument don't split it.
5785 * Works for ":Cmd %" when % is "a b c". */
5786 if ((eap
->argt
& NOSPC
) && quote
== 2)
5791 case 0: /* No quoting, no splitting */
5792 result
= STRLEN(eap
->arg
);
5794 STRCPY(buf
, eap
->arg
);
5796 case 1: /* Quote, but don't split */
5797 result
= STRLEN(eap
->arg
) + 2;
5798 for (p
= eap
->arg
; *p
; ++p
)
5800 if (*p
== '\\' || *p
== '"')
5807 for (p
= eap
->arg
; *p
; ++p
)
5809 if (*p
== '\\' || *p
== '"')
5817 case 2: /* Quote and split (<f-args>) */
5818 /* This is hard, so only do it once, and cache the result */
5819 if (*split_buf
== NULL
)
5820 *split_buf
= uc_split_args(eap
->arg
, split_len
);
5822 result
= *split_len
;
5823 if (buf
!= NULL
&& result
!= 0)
5824 STRCPY(buf
, *split_buf
);
5831 result
= eap
->forceit
? 1 : 0;
5850 long num
= (type
== ct_LINE1
) ? eap
->line1
:
5851 (type
== ct_LINE2
) ? eap
->line2
:
5852 (eap
->addr_count
> 0) ? eap
->line2
: cmd
->uc_def
;
5855 sprintf(num_buf
, "%ld", num
);
5856 num_len
= STRLEN(num_buf
);
5866 STRCPY(buf
, num_buf
);
5876 result
= eap
->regname
? 1 : 0;
5884 *buf
++ = eap
->regname
;
5897 /* Not recognized: just copy the '<' and return -1. */
5898 result
= (size_t)-1;
5919 size_t split_len
= 0;
5920 char_u
*split_buf
= NULL
;
5923 scid_T save_current_SID
= current_SID
;
5926 if (eap
->cmdidx
== CMD_USER
)
5927 cmd
= USER_CMD(eap
->useridx
);
5929 cmd
= USER_CMD_GA(&curbuf
->b_ucmds
, eap
->useridx
);
5932 * Replace <> in the command by the arguments.
5940 while ((start
= vim_strchr(p
, '<')) != NULL
5941 && (end
= vim_strchr(start
+ 1, '>')) != NULL
)
5943 /* Include the '>' */
5946 /* Take everything up to the '<' */
5952 mch_memmove(q
, p
, len
);
5956 len
= uc_check_code(start
, end
- start
, q
, cmd
, eap
,
5957 &split_buf
, &split_len
);
5958 if (len
== (size_t)-1)
5960 /* no match, continue after '<' */
5971 if (buf
!= NULL
) /* second time here, finished */
5977 totlen
+= STRLEN(p
); /* Add on the trailing characters */
5978 buf
= alloc((unsigned)(totlen
+ 1));
5981 vim_free(split_buf
);
5987 current_SID
= cmd
->uc_scriptID
;
5989 (void)do_cmdline(buf
, eap
->getline
, eap
->cookie
,
5990 DOCMD_VERBOSE
|DOCMD_NOWAIT
|DOCMD_KEYTYPED
);
5992 current_SID
= save_current_SID
;
5995 vim_free(split_buf
);
5998 # if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6000 get_user_command_name(idx
)
6003 return get_user_commands(NULL
, idx
- (int)CMD_SIZE
);
6007 * Function given to ExpandGeneric() to obtain the list of user command names.
6011 get_user_commands(xp
, idx
)
6015 if (idx
< curbuf
->b_ucmds
.ga_len
)
6016 return USER_CMD_GA(&curbuf
->b_ucmds
, idx
)->uc_name
;
6017 idx
-= curbuf
->b_ucmds
.ga_len
;
6018 if (idx
< ucmds
.ga_len
)
6019 return USER_CMD(idx
)->uc_name
;
6024 * Function given to ExpandGeneric() to obtain the list of user command
6029 get_user_cmd_flags(xp
, idx
)
6033 static char *user_cmd_flags
[] =
6034 {"bang", "bar", "buffer", "complete", "count",
6035 "nargs", "range", "register"};
6037 if (idx
>= sizeof(user_cmd_flags
) / sizeof(user_cmd_flags
[0]))
6039 return (char_u
*)user_cmd_flags
[idx
];
6043 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6047 get_user_cmd_nargs(xp
, idx
)
6051 static char *user_cmd_nargs
[] = {"0", "1", "*", "?", "+"};
6053 if (idx
>= sizeof(user_cmd_nargs
) / sizeof(user_cmd_nargs
[0]))
6055 return (char_u
*)user_cmd_nargs
[idx
];
6059 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6063 get_user_cmd_complete(xp
, idx
)
6067 return (char_u
*)command_complete
[idx
].name
;
6069 # endif /* FEAT_CMDL_COMPL */
6071 #endif /* FEAT_USR_CMDS */
6073 #if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6075 * Parse a completion argument "value[vallen]".
6076 * The detected completion goes in "*complp", argument type in "*argt".
6077 * When there is an argument, for function and user defined completion, it's
6078 * copied to allocated memory and stored in "*compl_arg".
6079 * Returns FAIL if something is wrong.
6082 parse_compl_arg(value
, vallen
, complp
, argt
, compl_arg
)
6092 int valend
= vallen
;
6094 /* Look for any argument part - which is the part after any ',' */
6095 for (i
= 0; i
< vallen
; ++i
)
6097 if (value
[i
] == ',')
6099 arg
= &value
[i
+ 1];
6100 arglen
= vallen
- i
- 1;
6106 for (i
= 0; command_complete
[i
].expand
!= 0; ++i
)
6108 if ((int)STRLEN(command_complete
[i
].name
) == valend
6109 && STRNCMP(value
, command_complete
[i
].name
, valend
) == 0)
6111 *complp
= command_complete
[i
].expand
;
6112 if (command_complete
[i
].expand
== EXPAND_BUFFERS
)
6114 else if (command_complete
[i
].expand
== EXPAND_DIRECTORIES
6115 || command_complete
[i
].expand
== EXPAND_FILES
)
6121 if (command_complete
[i
].expand
== 0)
6123 EMSG2(_("E180: Invalid complete value: %s"), value
);
6127 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6128 if (*complp
!= EXPAND_USER_DEFINED
&& *complp
!= EXPAND_USER_LIST
6134 EMSG(_("E468: Completion argument only allowed for custom completion"));
6138 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6139 if ((*complp
== EXPAND_USER_DEFINED
|| *complp
== EXPAND_USER_LIST
)
6142 EMSG(_("E467: Custom completion requires a function argument"));
6147 *compl_arg
= vim_strnsave(arg
, (int)arglen
);
6157 if (load_colors(eap
->arg
) == FAIL
)
6158 EMSG2(_("E185: Cannot find color scheme %s"), eap
->arg
);
6165 if (*eap
->arg
== NUL
&& eap
->cmd
[2] == '!')
6166 MSG(_("Greetings, Vim user!"));
6167 do_highlight(eap
->arg
, eap
->forceit
, FALSE
);
6172 * Call this function if we thought we were going to exit, but we won't
6173 * (because of an error). May need to restore the terminal mode.
6179 settmode(TMODE_RAW
);
6183 * ":quit": quit current window, quit Vim if closed the last window.
6190 if (cmdwin_type
!= 0)
6192 cmdwin_result
= Ctrl_C
;
6196 /* Don't quit while editing the command line. */
6203 if (curbuf_locked())
6207 #ifdef FEAT_NETBEANS_INTG
6208 netbeansForcedQuit
= eap
->forceit
;
6212 * If there are more files or windows we won't exit.
6214 if (check_more(FALSE
, eap
->forceit
) == OK
&& only_one_window())
6217 && check_changed(curbuf
, p_awa
, FALSE
, eap
->forceit
, FALSE
))
6218 || check_more(TRUE
, eap
->forceit
) == FAIL
6219 || (only_one_window() && check_changed_any(eap
->forceit
)))
6226 if (only_one_window()) /* quit last window */
6231 need_mouse_correct
= TRUE
;
6233 /* close window; may free buffer */
6234 win_close(curwin
, !P_HID(curwin
->w_buffer
) || eap
->forceit
);
6247 getout(1); /* this does not always pass on the exit code to the Manx
6252 * ":qall": try to quit all windows
6259 if (cmdwin_type
!= 0)
6262 cmdwin_result
= K_XF1
; /* ex_window() takes care of this */
6264 cmdwin_result
= K_XF2
;
6269 /* Don't quit while editing the command line. */
6276 if (curbuf_locked())
6281 if (eap
->forceit
|| !check_changed_any(FALSE
))
6286 #if defined(FEAT_WINDOWS) || defined(PROTO)
6288 * ":close": close current window, unless it is the last one
6295 if (cmdwin_type
!= 0)
6296 cmdwin_result
= K_IGNORE
;
6304 ex_win_close(eap
->forceit
, curwin
, NULL
);
6307 # ifdef FEAT_QUICKFIX
6309 * ":pclose": Close any preview window.
6317 for (win
= firstwin
; win
!= NULL
; win
= win
->w_next
)
6320 ex_win_close(eap
->forceit
, win
, NULL
);
6327 * Close window "win" and take care of handling closing the last window for a
6331 ex_win_close(forceit
, win
, tp
)
6334 tabpage_T
*tp
; /* NULL or the tab page "win" is in */
6337 buf_T
*buf
= win
->w_buffer
;
6339 need_hide
= (bufIsChanged(buf
) && buf
->b_nwindows
<= 1);
6340 if (need_hide
&& !P_HID(buf
) && !forceit
)
6342 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
6343 if ((p_confirm
|| cmdmod
.confirm
) && p_write
)
6345 dialog_changed(buf
, FALSE
);
6346 if (buf_valid(buf
) && bufIsChanged(buf
))
6353 EMSG(_(e_nowrtmsg
));
6359 need_mouse_correct
= TRUE
;
6362 /* free buffer when not hiding it or when it's a scratch buffer */
6364 win_close(win
, !need_hide
&& !P_HID(buf
));
6366 win_close_othertab(win
, !need_hide
&& !P_HID(buf
), tp
);
6370 * ":tabclose": close current tab page, unless it is the last one.
6371 * ":tabclose N": close tab page N.
6380 if (cmdwin_type
!= 0)
6381 cmdwin_result
= K_IGNORE
;
6384 if (first_tabpage
->tp_next
== NULL
)
6385 EMSG(_("E784: Cannot close last tab page"));
6388 if (eap
->addr_count
> 0)
6390 tp
= find_tabpage((int)eap
->line2
);
6398 tabpage_close_other(tp
, eap
->forceit
);
6407 tabpage_close(eap
->forceit
);
6412 * ":tabonly": close all tab pages except the current one
6422 if (cmdwin_type
!= 0)
6423 cmdwin_result
= K_IGNORE
;
6426 if (first_tabpage
->tp_next
== NULL
)
6427 MSG(_("Already only one tab page"));
6430 /* Repeat this up to a 1000 times, because autocommands may mess
6432 for (done
= 0; done
< 1000; ++done
)
6434 for (tp
= first_tabpage
; tp
!= NULL
; tp
= tp
->tp_next
)
6435 if (tp
->tp_topframe
!= topframe
)
6437 tabpage_close_other(tp
, eap
->forceit
);
6438 /* if we failed to close it quit */
6439 if (valid_tabpage(tp
))
6441 /* start over, "tp" is now invalid */
6444 if (first_tabpage
->tp_next
== NULL
)
6451 * Close the current tab page.
6454 tabpage_close(forceit
)
6457 /* First close all the windows but the current one. If that worked then
6458 * close the last window in this tab, that will close it. */
6459 if (lastwin
!= firstwin
)
6460 close_others(TRUE
, forceit
);
6461 if (lastwin
== firstwin
)
6462 ex_win_close(forceit
, curwin
, NULL
);
6464 need_mouse_correct
= TRUE
;
6469 * Close tab page "tp", which is not the current tab page.
6470 * Note that autocommands may make "tp" invalid.
6471 * Also takes care of the tab pages line disappearing when closing the
6472 * last-but-one tab page.
6475 tabpage_close_other(tp
, forceit
)
6481 int h
= tabline_height();
6483 /* Limit to 1000 windows, autocommands may add a window while we close
6484 * one. OK, so I'm paranoid... */
6485 while (++done
< 1000)
6487 wp
= tp
->tp_firstwin
;
6488 ex_win_close(forceit
, wp
, tp
);
6490 /* Autocommands may delete the tab page under our fingers and we may
6491 * fail to close a window with a modified buffer. */
6492 if (!valid_tabpage(tp
) || tp
->tp_firstwin
== wp
)
6496 redraw_tabline
= TRUE
;
6497 if (h
!= tabline_height())
6509 need_mouse_correct
= TRUE
;
6511 close_others(TRUE
, eap
->forceit
);
6515 * ":all" and ":sall".
6516 * Also used for ":tab drop file ..." after setting the argument list.
6522 if (eap
->addr_count
== 0)
6524 do_arg_all((int)eap
->line2
, eap
->forceit
, eap
->cmdidx
== CMD_drop
);
6526 #endif /* FEAT_WINDOWS */
6532 if (*eap
->arg
!= NUL
&& check_nextcmd(eap
->arg
) == NULL
)
6533 eap
->errmsg
= e_invarg
;
6536 /* ":hide" or ":hide | cmd": hide current window */
6537 eap
->nextcmd
= check_nextcmd(eap
->arg
);
6542 need_mouse_correct
= TRUE
;
6544 win_close(curwin
, FALSE
); /* don't free buffer */
6551 * ":stop" and ":suspend": Suspend Vim.
6558 * Disallow suspending for "rvim".
6560 if (!check_restricted()
6563 * Check if external commands are allowed now.
6565 && can_end_termcap_mode(TRUE
)
6571 windgoto((int)Rows
- 1, 0);
6575 out_flush(); /* needed for SUN to restore xterm buffer */
6577 mch_restore_title(3); /* restore window titles */
6579 ui_suspend(); /* call machine specific function */
6582 resettitle(); /* force updating the title */
6585 scroll_start(); /* scroll screen before redrawing */
6586 redraw_later_clear();
6587 shell_resized(); /* may have resized window */
6592 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6599 if (cmdwin_type
!= 0)
6601 cmdwin_result
= Ctrl_C
;
6605 /* Don't quit while editing the command line. */
6612 if (curbuf_locked())
6617 * if more files or windows we won't exit
6619 if (check_more(FALSE
, eap
->forceit
) == OK
&& only_one_window())
6621 if ( ((eap
->cmdidx
== CMD_wq
6622 || curbufIsChanged())
6623 && do_write(eap
) == FAIL
)
6624 || check_more(TRUE
, eap
->forceit
) == FAIL
6625 || (only_one_window() && check_changed_any(eap
->forceit
)))
6632 if (only_one_window()) /* quit last window, exit Vim */
6637 need_mouse_correct
= TRUE
;
6639 /* quit current window, may free buffer */
6640 win_close(curwin
, !P_HID(curwin
->w_buffer
));
6646 * ":print", ":list", ":number".
6652 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
6653 EMSG(_(e_emptybuf
));
6656 for ( ;!got_int
; ui_breakcheck())
6658 print_line(eap
->line1
,
6659 (eap
->cmdidx
== CMD_number
|| eap
->cmdidx
== CMD_pound
6660 || (eap
->flags
& EXFLAG_NR
)),
6661 eap
->cmdidx
== CMD_list
|| (eap
->flags
& EXFLAG_LIST
));
6662 if (++eap
->line1
> eap
->line2
)
6664 out_flush(); /* show one line at a time */
6667 /* put cursor at last line */
6668 curwin
->w_cursor
.lnum
= eap
->line2
;
6669 beginline(BL_SOL
| BL_FIX
);
6672 ex_no_reprint
= TRUE
;
6680 goto_byte(eap
->line2
);
6695 #if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6696 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
6697 || defined(FEAT_GUI_MSWIN) \
6698 || defined(FEAT_GUI_MAC) \
6702 * Handle a file drop. The code is here because a drop is *nearly* like an
6703 * :args command, but not quite (we have a list of exact filenames, so we
6704 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6705 * code is very similar to :args and hence needs access to a lot of the static
6706 * functions in this file.
6708 * The list should be allocated using alloc(), as should each item in the
6709 * list. This function takes over responsibility for freeing the list.
6711 * XXX The list is made into the argument list. This is freed using
6712 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6713 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6714 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6715 * file functionality is (currently) not in EMX this is not presently a
6719 handle_drop(filec
, filev
, split
)
6720 int filec
; /* the number of files dropped */
6721 char_u
**filev
; /* the list of files dropped */
6722 int split
; /* force splitting the window */
6725 int save_msg_scroll
= msg_scroll
;
6727 /* Postpone this while editing the command line. */
6731 if (curbuf_locked())
6734 /* When the screen is being updated we should not change buffers and
6735 * windows structures, it may cause freed memory to be used. */
6736 if (updating_screen
)
6739 /* Check whether the current buffer is changed. If so, we will need
6740 * to split the current window or data could be lost.
6741 * We don't need to check if the 'hidden' option is set, as in this
6742 * case the buffer won't be lost.
6744 if (!P_HID(curbuf
) && !split
)
6747 split
= check_changed(curbuf
, TRUE
, FALSE
, FALSE
, FALSE
);
6752 # ifdef FEAT_WINDOWS
6753 if (win_split(0, 0) == FAIL
)
6755 # ifdef FEAT_SCROLLBIND
6756 curwin
->w_p_scb
= FALSE
;
6759 /* When splitting the window, create a new alist. Otherwise the
6760 * existing one is overwritten. */
6761 alist_unlink(curwin
->w_alist
);
6764 return; /* can't split, always fail */
6769 * Set up the new argument list.
6771 alist_set(ALIST(curwin
), filec
, filev
, FALSE
, NULL
, 0);
6774 * Move to the first file.
6776 /* Fake up a minimal "next" command for do_argfile() */
6777 vim_memset(&ea
, 0, sizeof(ea
));
6778 ea
.cmd
= (char_u
*)"next";
6781 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6782 * mode that is not needed here. */
6783 need_start_insertmode
= FALSE
;
6785 /* Restore msg_scroll, otherwise a following command may cause scrolling
6786 * unexpectedly. The screen will be redrawn by the caller, thus
6787 * msg_scroll being set by displaying a message is irrelevant. */
6788 msg_scroll
= save_msg_scroll
;
6793 * Clear an argument list: free all file names and reset it to zero entries.
6799 while (--al
->al_ga
.ga_len
>= 0)
6800 vim_free(AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fname
);
6801 ga_clear(&al
->al_ga
);
6805 * Init an argument list.
6811 ga_init2(&al
->al_ga
, (int)sizeof(aentry_T
), 5);
6814 #if defined(FEAT_WINDOWS) || defined(PROTO)
6817 * Remove a reference from an argument list.
6818 * Ignored when the argument list is the global one.
6819 * If the argument list is no longer used by any window, free it.
6825 if (al
!= &global_alist
&& --al
->al_refcount
<= 0)
6832 # if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6834 * Create a new argument list and use it for the current window.
6839 curwin
->w_alist
= (alist_T
*)alloc((unsigned)sizeof(alist_T
));
6840 if (curwin
->w_alist
== NULL
)
6842 curwin
->w_alist
= &global_alist
;
6843 ++global_alist
.al_refcount
;
6847 curwin
->w_alist
->al_refcount
= 1;
6848 alist_init(curwin
->w_alist
);
6854 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6856 * Expand the file names in the global argument list.
6857 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6858 * numbers to be re-used.
6861 alist_expand(fnum_list
, fnum_len
)
6865 char_u
**old_arg_files
;
6867 char_u
**new_arg_files
;
6868 int new_arg_file_count
;
6869 char_u
*save_p_su
= p_su
;
6872 /* Don't use 'suffixes' here. This should work like the shell did the
6873 * expansion. Also, the vimrc file isn't read yet, thus the user
6874 * can't set the options. */
6875 p_su
= empty_option
;
6876 old_arg_files
= (char_u
**)alloc((unsigned)(sizeof(char_u
*) * GARGCOUNT
));
6877 if (old_arg_files
!= NULL
)
6879 for (i
= 0; i
< GARGCOUNT
; ++i
)
6880 old_arg_files
[i
] = vim_strsave(GARGLIST
[i
].ae_fname
);
6881 old_arg_count
= GARGCOUNT
;
6882 if (expand_wildcards(old_arg_count
, old_arg_files
,
6883 &new_arg_file_count
, &new_arg_files
,
6884 EW_FILE
|EW_NOTFOUND
|EW_ADDSLASH
) == OK
6885 && new_arg_file_count
> 0)
6887 alist_set(&global_alist
, new_arg_file_count
, new_arg_files
,
6888 TRUE
, fnum_list
, fnum_len
);
6889 FreeWild(old_arg_count
, old_arg_files
);
6897 * Set the argument list for the current window.
6898 * Takes over the allocated files[] and the allocated fnames in it.
6901 alist_set(al
, count
, files
, use_curbuf
, fnum_list
, fnum_len
)
6912 if (ga_grow(&al
->al_ga
, count
) == OK
)
6914 for (i
= 0; i
< count
; ++i
)
6918 /* When adding many buffers this can take a long time. Allow
6919 * interrupting here. */
6921 vim_free(files
[i
++]);
6925 /* May set buffer name of a buffer previously used for the
6926 * argument list, so that it's re-used by alist_add. */
6927 if (fnum_list
!= NULL
&& i
< fnum_len
)
6928 buf_set_name(fnum_list
[i
], files
[i
]);
6930 alist_add(al
, files
[i
], use_curbuf
? 2 : 1);
6936 FreeWild(count
, files
);
6938 if (al
== &global_alist
)
6940 arg_had_last
= FALSE
;
6944 * Add file "fname" to argument list "al".
6945 * "fname" must have been allocated and "al" must have been checked for room.
6948 alist_add(al
, fname
, set_fnum
)
6951 int set_fnum
; /* 1: set buffer number; 2: re-use curbuf */
6953 if (fname
== NULL
) /* don't add NULL file names */
6955 #ifdef BACKSLASH_IN_FILENAME
6956 slash_adjust(fname
);
6958 AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fname
= fname
;
6960 AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fnum
=
6961 buflist_add(fname
, BLN_LISTED
| (set_fnum
== 2 ? BLN_CURBUF
: 0));
6965 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6967 * Adjust slashes in file names. Called after 'shellslash' was set.
6970 alist_slash_adjust()
6973 # ifdef FEAT_WINDOWS
6978 for (i
= 0; i
< GARGCOUNT
; ++i
)
6979 if (GARGLIST
[i
].ae_fname
!= NULL
)
6980 slash_adjust(GARGLIST
[i
].ae_fname
);
6981 # ifdef FEAT_WINDOWS
6982 FOR_ALL_TAB_WINDOWS(tp
, wp
)
6983 if (wp
->w_alist
!= &global_alist
)
6984 for (i
= 0; i
< WARGCOUNT(wp
); ++i
)
6985 if (WARGLIST(wp
)[i
].ae_fname
!= NULL
)
6986 slash_adjust(WARGLIST(wp
)[i
].ae_fname
);
6999 curbuf
->b_flags
|= BF_PRESERVED
;
7000 ml_preserve(curbuf
, TRUE
);
7010 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7011 recoverymode
= TRUE
;
7012 if (!check_changed(curbuf
, p_awa
, TRUE
, eap
->forceit
, FALSE
)
7013 && (*eap
->arg
== NUL
7014 || setfname(curbuf
, eap
->arg
, NULL
, TRUE
) == OK
))
7016 recoverymode
= FALSE
;
7020 * Command modifier used in a wrong way.
7023 ex_wrongmodifier(eap
)
7026 eap
->errmsg
= e_invcmd
;
7031 * :sview [+command] file split window with new file, read-only
7032 * :split [[+command] file] split window with current or new file
7033 * :vsplit [[+command] file] split window vertically with current or new file
7034 * :new [[+command] file] split window with no or new file
7035 * :vnew [[+command] file] split vertically window with no or new file
7036 * :sfind [+command] file split window with file in 'path'
7038 * :tabedit open new Tab page with empty window
7039 * :tabedit [+command] file open new Tab page and edit "file"
7040 * :tabnew [[+command] file] just like :tabedit
7041 * :tabfind [+command] file open new Tab page and find "file"
7047 win_T
*old_curwin
= curwin
;
7048 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7049 char_u
*fname
= NULL
;
7052 int browse_flag
= cmdmod
.browse
;
7055 # ifndef FEAT_VERTSPLIT
7056 if (eap
->cmdidx
== CMD_vsplit
|| eap
->cmdidx
== CMD_vnew
)
7064 need_mouse_correct
= TRUE
;
7067 # ifdef FEAT_QUICKFIX
7068 /* A ":split" in the quickfix window works like ":new". Don't want two
7069 * quickfix windows. But it's OK when doing ":tab split". */
7070 if (bt_quickfix(curbuf
) && cmdmod
.tab
== 0)
7072 if (eap
->cmdidx
== CMD_split
)
7073 eap
->cmdidx
= CMD_new
;
7074 # ifdef FEAT_VERTSPLIT
7075 if (eap
->cmdidx
== CMD_vsplit
)
7076 eap
->cmdidx
= CMD_vnew
;
7081 # ifdef FEAT_SEARCHPATH
7082 if (eap
->cmdidx
== CMD_sfind
|| eap
->cmdidx
== CMD_tabfind
)
7084 fname
= find_file_in_path(eap
->arg
, (int)STRLEN(eap
->arg
),
7085 FNAME_MESS
, TRUE
, curbuf
->b_ffname
);
7096 # ifdef FEAT_VERTSPLIT
7097 && eap
->cmdidx
!= CMD_vnew
7099 && eap
->cmdidx
!= CMD_new
)
7101 # ifdef FEAT_AUTOCMD
7106 au_has_group((char_u
*)"FileExplorer"))
7108 /* No browsing supported but we do have the file explorer:
7109 * Edit the directory. */
7110 if (*eap
->arg
== NUL
|| !mch_isdir(eap
->arg
))
7111 eap
->arg
= (char_u
*)".";
7116 fname
= do_browse(0, (char_u
*)_("Edit File in new window"),
7117 eap
->arg
, NULL
, NULL
, NULL
, curbuf
);
7123 cmdmod
.browse
= FALSE
; /* Don't browse again in do_ecmd(). */
7127 * Either open new tab page or split the window.
7129 if (eap
->cmdidx
== CMD_tabedit
7130 || eap
->cmdidx
== CMD_tabfind
7131 || eap
->cmdidx
== CMD_tabnew
)
7133 if (win_new_tabpage(cmdmod
.tab
!= 0 ? cmdmod
.tab
7134 : eap
->addr_count
== 0 ? 0
7135 : (int)eap
->line2
+ 1) != FAIL
)
7137 do_exedit(eap
, old_curwin
);
7139 /* set the alternate buffer for the window we came from */
7140 if (curwin
!= old_curwin
7141 && win_valid(old_curwin
)
7142 && old_curwin
->w_buffer
!= curbuf
7144 old_curwin
->w_alt_fnum
= curbuf
->b_fnum
;
7147 else if (win_split(eap
->addr_count
> 0 ? (int)eap
->line2
: 0,
7148 *eap
->cmd
== 'v' ? WSP_VERT
: 0) != FAIL
)
7150 # ifdef FEAT_SCROLLBIND
7151 /* Reset 'scrollbind' when editing another file, but keep it when
7152 * doing ":split" without arguments. */
7153 if (*eap
->arg
!= NUL
7158 curwin
->w_p_scb
= FALSE
;
7160 do_check_scrollbind(FALSE
);
7162 do_exedit(eap
, old_curwin
);
7166 cmdmod
.browse
= browse_flag
;
7169 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7176 * Open a new tab page.
7183 vim_memset(&ea
, 0, sizeof(ea
));
7184 ea
.cmdidx
= CMD_tabnew
;
7185 ea
.cmd
= (char_u
*)"tabn";
7186 ea
.arg
= (char_u
*)"";
7197 switch (eap
->cmdidx
)
7206 case CMD_tabprevious
:
7208 goto_tabpage(eap
->addr_count
== 0 ? -1 : -(int)eap
->line2
);
7210 default: /* CMD_tabnext */
7211 goto_tabpage(eap
->addr_count
== 0 ? 0 : (int)eap
->line2
);
7223 tabpage_move(eap
->addr_count
== 0 ? 9999 : (int)eap
->line2
);
7227 * :tabs command: List tabs and their contents.
7240 for (tp
= first_tabpage
; tp
!= NULL
&& !got_int
; tp
= tp
->tp_next
)
7243 vim_snprintf((char *)IObuff
, IOSIZE
, _("Tab page %d"), tabcount
++);
7244 msg_outtrans_attr(IObuff
, hl_attr(HLF_T
));
7245 out_flush(); /* output one line at a time */
7251 wp
= tp
->tp_firstwin
;
7252 for ( ; wp
!= NULL
&& !got_int
; wp
= wp
->w_next
)
7255 msg_putchar(wp
== curwin
? '>' : ' ');
7257 msg_putchar(bufIsChanged(wp
->w_buffer
) ? '+' : ' ');
7259 if (buf_spname(wp
->w_buffer
) != NULL
)
7260 STRCPY(IObuff
, buf_spname(wp
->w_buffer
));
7262 home_replace(wp
->w_buffer
, wp
->w_buffer
->b_fname
,
7263 IObuff
, IOSIZE
, TRUE
);
7264 msg_outtrans(IObuff
);
7265 out_flush(); /* output one line at a time */
7271 #endif /* FEAT_WINDOWS */
7274 * ":mode": Set screen mode.
7275 * If no argument given, just get the screen size and redraw.
7281 if (*eap
->arg
== NUL
)
7284 mch_screenmode(eap
->arg
);
7290 * set, increment or decrement current window height
7299 if (eap
->addr_count
> 0)
7302 for (wp
= firstwin
; wp
->w_next
!= NULL
&& --n
> 0; wp
= wp
->w_next
)
7307 need_mouse_correct
= TRUE
;
7309 n
= atol((char *)eap
->arg
);
7310 #ifdef FEAT_VERTSPLIT
7311 if (cmdmod
.split
& WSP_VERT
)
7313 if (*eap
->arg
== '-' || *eap
->arg
== '+')
7314 n
+= W_WIDTH(curwin
);
7315 else if (n
== 0 && eap
->arg
[0] == NUL
) /* default is very wide */
7317 win_setwidth_win((int)n
, wp
);
7322 if (*eap
->arg
== '-' || *eap
->arg
== '+')
7323 n
+= curwin
->w_height
;
7324 else if (n
== 0 && eap
->arg
[0] == NUL
) /* default is very wide */
7326 win_setheight_win((int)n
, wp
);
7332 * ":find [+command] <file>" command.
7338 #ifdef FEAT_SEARCHPATH
7342 fname
= find_file_in_path(eap
->arg
, (int)STRLEN(eap
->arg
), FNAME_MESS
,
7343 TRUE
, curbuf
->b_ffname
);
7344 if (eap
->addr_count
> 0)
7346 /* Repeat finding the file "count" times. This matters when it
7347 * appears several times in the path. */
7349 while (fname
!= NULL
&& --count
> 0)
7352 fname
= find_file_in_path(NULL
, 0, FNAME_MESS
,
7353 FALSE
, curbuf
->b_ffname
);
7361 do_exedit(eap
, NULL
);
7362 #ifdef FEAT_SEARCHPATH
7369 * ":open" simulation: for now just work like ":visual".
7375 regmatch_T regmatch
;
7378 curwin
->w_cursor
.lnum
= eap
->line2
;
7379 beginline(BL_SOL
| BL_FIX
);
7380 if (*eap
->arg
== '/')
7382 /* ":open /pattern/": put cursor in column found with pattern */
7384 p
= skip_regexp(eap
->arg
, '/', p_magic
, NULL
);
7386 regmatch
.regprog
= vim_regcomp(eap
->arg
, p_magic
? RE_MAGIC
: 0);
7387 if (regmatch
.regprog
!= NULL
)
7389 regmatch
.rm_ic
= p_ic
;
7390 p
= ml_get_curline();
7391 if (vim_regexec(®match
, p
, (colnr_T
)0))
7392 curwin
->w_cursor
.col
= (colnr_T
)(regmatch
.startp
[0] - p
);
7395 vim_free(regmatch
.regprog
);
7397 /* Move to the NUL, ignore any other arguments. */
7398 eap
->arg
+= STRLEN(eap
->arg
);
7402 eap
->cmdidx
= CMD_visual
;
7403 do_exedit(eap
, NULL
);
7407 * ":edit", ":badd", ":visual".
7413 do_exedit(eap
, NULL
);
7417 * ":edit <file>" command and alikes.
7421 do_exedit(eap
, old_curwin
)
7423 win_T
*old_curwin
; /* curwin before doing a split or NULL */
7429 int exmode_was
= exmode_active
;
7432 * ":vi" command ends Ex mode.
7434 if (exmode_active
&& (eap
->cmdidx
== CMD_visual
7435 || eap
->cmdidx
== CMD_view
))
7437 exmode_active
= FALSE
;
7438 if (*eap
->arg
== NUL
)
7440 /* Special case: ":global/pat/visual\NLvi-commands" */
7443 int rd
= RedrawingDisabled
;
7444 int nwr
= no_wait_return
;
7445 int ms
= msg_scroll
;
7447 int he
= hold_gui_events
;
7450 if (eap
->nextcmd
!= NULL
)
7452 stuffReadbuff(eap
->nextcmd
);
7453 eap
->nextcmd
= NULL
;
7456 if (exmode_was
!= EXMODE_VIM
)
7457 settmode(TMODE_RAW
);
7458 RedrawingDisabled
= 0;
7460 need_wait_return
= FALSE
;
7463 hold_gui_events
= 0;
7465 must_redraw
= CLEAR
;
7467 main_loop(FALSE
, TRUE
);
7469 RedrawingDisabled
= rd
;
7470 no_wait_return
= nwr
;
7473 hold_gui_events
= he
;
7480 if ((eap
->cmdidx
== CMD_new
7481 || eap
->cmdidx
== CMD_tabnew
7482 || eap
->cmdidx
== CMD_tabedit
7483 #ifdef FEAT_VERTSPLIT
7484 || eap
->cmdidx
== CMD_vnew
7486 ) && *eap
->arg
== NUL
)
7488 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
7490 (void)do_ecmd(0, NULL
, NULL
, eap
, ECMD_ONE
,
7491 ECMD_HIDE
+ (eap
->forceit
? ECMD_FORCEIT
: 0),
7492 old_curwin
== NULL
? curwin
: NULL
);
7494 else if ((eap
->cmdidx
!= CMD_split
7495 #ifdef FEAT_VERTSPLIT
7496 && eap
->cmdidx
!= CMD_vsplit
7506 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7507 * can bring us here, others are stopped earlier. */
7508 if (*eap
->arg
!= NUL
&& curbuf_locked())
7512 if (eap
->cmdidx
== CMD_view
|| eap
->cmdidx
== CMD_sview
)
7513 readonlymode
= TRUE
;
7514 else if (eap
->cmdidx
== CMD_enew
)
7515 readonlymode
= FALSE
; /* 'readonly' doesn't make sense in an
7518 if (do_ecmd(0, (eap
->cmdidx
== CMD_enew
? NULL
: eap
->arg
),
7520 /* ":edit" goes to first line if Vi compatible */
7521 (*eap
->arg
== NUL
&& eap
->do_ecmd_lnum
== 0
7522 && vim_strchr(p_cpo
, CPO_GOTO1
) != NULL
)
7523 ? ECMD_ONE
: eap
->do_ecmd_lnum
,
7524 (P_HID(curbuf
) ? ECMD_HIDE
: 0)
7525 + (eap
->forceit
? ECMD_FORCEIT
: 0)
7526 #ifdef FEAT_LISTCMDS
7527 + (eap
->cmdidx
== CMD_badd
? ECMD_ADDBUF
: 0 )
7529 , old_curwin
== NULL
? curwin
: NULL
) == FAIL
)
7531 /* Editing the file failed. If the window was split, close it. */
7533 if (old_curwin
!= NULL
)
7535 need_hide
= (curbufIsChanged() && curbuf
->b_nwindows
<= 1);
7536 if (!need_hide
|| P_HID(curbuf
))
7538 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7541 /* Reset the error/interrupt/exception state here so that
7542 * aborting() returns FALSE when closing a window. */
7546 need_mouse_correct
= TRUE
;
7548 win_close(curwin
, !need_hide
&& !P_HID(curbuf
));
7550 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7551 /* Restore the error/interrupt/exception state if not
7552 * discarded by a new aborting error, interrupt, or
7553 * uncaught exception. */
7560 else if (readonlymode
&& curbuf
->b_nwindows
== 1)
7562 /* When editing an already visited buffer, 'readonly' won't be set
7563 * but the previous value is kept. With ":view" and ":sview" we
7564 * want the file to be readonly, except when another window is
7565 * editing the same buffer. */
7566 curbuf
->b_p_ro
= TRUE
;
7572 if (eap
->do_ecmd_cmd
!= NULL
)
7573 do_cmdline_cmd(eap
->do_ecmd_cmd
);
7575 n
= curwin
->w_arg_idx_invalid
;
7577 check_arg_idx(curwin
);
7579 if (n
!= curwin
->w_arg_idx_invalid
)
7586 * if ":split file" worked, set alternate file name in old window to new
7589 if (old_curwin
!= NULL
7591 && curwin
!= old_curwin
7592 && win_valid(old_curwin
)
7593 && old_curwin
->w_buffer
!= curbuf
7595 old_curwin
->w_alt_fnum
= curbuf
->b_fnum
;
7598 ex_no_reprint
= TRUE
;
7603 * ":gui" and ":gvim" when there is no GUI.
7609 eap
->errmsg
= e_nogvim
;
7613 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7618 gui_make_tearoff(eap
->arg
);
7622 #if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
7627 gui_make_popup(eap
->arg
, eap
->forceit
);
7636 if (curbuf
->b_ml
.ml_mfp
== NULL
|| curbuf
->b_ml
.ml_mfp
->mf_fname
== NULL
)
7637 MSG(_("No swap file"));
7639 msg(curbuf
->b_ml
.ml_mfp
->mf_fname
);
7643 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7645 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7652 #ifdef FEAT_SCROLLBIND
7656 linenr_T old_linenr
= curwin
->w_cursor
.lnum
;
7661 * determine max topline
7663 if (curwin
->w_p_scb
)
7665 topline
= curwin
->w_topline
;
7666 for (wp
= firstwin
; wp
; wp
= wp
->w_next
)
7668 if (wp
->w_p_scb
&& wp
->w_buffer
)
7670 y
= wp
->w_buffer
->b_ml
.ml_line_count
- p_so
;
7685 * set all scrollbind windows to the same topline
7688 for (curwin
= firstwin
; curwin
; curwin
= curwin
->w_next
)
7690 if (curwin
->w_p_scb
)
7692 y
= topline
- curwin
->w_topline
;
7696 scrolldown(-y
, TRUE
);
7697 curwin
->w_scbind_pos
= topline
;
7698 redraw_later(VALID
);
7701 curwin
->w_redr_status
= TRUE
;
7706 if (curwin
->w_p_scb
)
7708 did_syncbind
= TRUE
;
7710 if (old_linenr
!= curwin
->w_cursor
.lnum
)
7716 ins_typebuf(ctrl_o
, REMAP_NONE
, 0, TRUE
, FALSE
);
7728 int empty
= (curbuf
->b_ml
.ml_flags
& ML_EMPTY
);
7731 if (eap
->usefilter
) /* :r!cmd */
7732 do_bang(1, eap
, FALSE
, FALSE
, TRUE
);
7735 if (u_save(eap
->line2
, (linenr_T
)(eap
->line2
+ 1)) == FAIL
)
7743 browseFile
= do_browse(0, (char_u
*)_("Append File"), eap
->arg
,
7744 NULL
, NULL
, NULL
, curbuf
);
7745 if (browseFile
!= NULL
)
7747 i
= readfile(browseFile
, NULL
,
7748 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7749 vim_free(browseFile
);
7756 if (*eap
->arg
== NUL
)
7758 if (check_fname() == FAIL
) /* check for no file name */
7760 i
= readfile(curbuf
->b_ffname
, curbuf
->b_fname
,
7761 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7765 if (vim_strchr(p_cpo
, CPO_ALTREAD
) != NULL
)
7766 (void)setaltfname(eap
->arg
, eap
->arg
, (linenr_T
)1);
7767 i
= readfile(eap
->arg
, NULL
,
7768 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7773 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7776 EMSG2(_(e_notopen
), eap
->arg
);
7780 if (empty
&& exmode_active
)
7782 /* Delete the empty line that remains. Historically ex does
7783 * this but vi doesn't. */
7784 if (eap
->line2
== 0)
7785 lnum
= curbuf
->b_ml
.ml_line_count
;
7788 if (*ml_get(lnum
) == NUL
&& u_savedel(lnum
, 1L) == OK
)
7790 ml_delete(lnum
, FALSE
);
7791 deleted_lines_mark(lnum
, 1L);
7792 if (curwin
->w_cursor
.lnum
> 1
7793 && curwin
->w_cursor
.lnum
>= lnum
)
7794 --curwin
->w_cursor
.lnum
;
7797 redraw_curbuf_later(VALID
);
7802 static char_u
*prev_dir
= NULL
;
7804 #if defined(EXITFREE) || defined(PROTO)
7815 * ":cd", ":lcd", ":chdir" and ":lchdir".
7825 #if !defined(UNIX) && !defined(VMS)
7826 /* for non-UNIX ":cd" means: print current directory */
7827 if (*new_dir
== NUL
)
7832 if (vim_strchr(p_cpo
, CPO_CHDIR
) != NULL
&& curbufIsChanged()
7835 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
7839 /* ":cd -": Change to previous directory */
7840 if (STRCMP(new_dir
, "-") == 0)
7842 if (prev_dir
== NULL
)
7844 EMSG(_("E186: No previous directory"));
7850 /* Save current directory for next ":cd -" */
7852 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7853 prev_dir
= vim_strsave(NameBuff
);
7857 #if defined(UNIX) || defined(VMS)
7858 /* for UNIX ":cd" means: go to home directory */
7859 if (*new_dir
== NUL
)
7861 /* use NameBuff for home directory name */
7865 p
= mch_getenv((char_u
*)"SYS$LOGIN");
7866 if (p
== NULL
|| *p
== NUL
) /* empty is the same as not set */
7869 vim_strncpy(NameBuff
, p
, MAXPATHL
- 1);
7871 expand_env((char_u
*)"$HOME", NameBuff
, MAXPATHL
);
7876 if (new_dir
== NULL
|| vim_chdir(new_dir
))
7880 vim_free(curwin
->w_localdir
);
7881 if (eap
->cmdidx
== CMD_lcd
|| eap
->cmdidx
== CMD_lchdir
)
7883 /* If still in global directory, need to remember current
7884 * directory as global directory. */
7885 if (globaldir
== NULL
&& prev_dir
!= NULL
)
7886 globaldir
= vim_strsave(prev_dir
);
7887 /* Remember this local directory for the window. */
7888 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7889 curwin
->w_localdir
= vim_strsave(NameBuff
);
7893 /* We are now in the global directory, no need to remember its
7895 vim_free(globaldir
);
7897 curwin
->w_localdir
= NULL
;
7900 shorten_fnames(TRUE
);
7902 /* Echo the new current directory if the command was typed. */
7918 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7920 #ifdef BACKSLASH_IN_FILENAME
7921 slash_adjust(NameBuff
);
7926 EMSG(_("E187: Unknown"));
7936 smsg((char_u
*)"%ld", (long)eap
->line2
);
7949 n
= W_WINROW(curwin
) + curwin
->w_wrow
- msg_scrolled
;
7951 windgoto((int)n
, curwin
->w_wcol
);
7958 case NUL
: len
*= 1000L; break;
7959 default: EMSG2(_(e_invarg2
), eap
->arg
); return;
7965 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7975 for (done
= 0; !got_int
&& done
< msec
; done
+= 1000L)
7977 ui_delay(msec
- done
> 1000L ? 1000L : msec
- done
, TRUE
);
7983 do_exmap(eap
, isabbrev
)
7991 mode
= get_map_mode(&cmdp
, eap
->forceit
|| isabbrev
);
7993 switch (do_map((*cmdp
== 'n') ? 2 : (*cmdp
== 'u'),
7994 eap
->arg
, mode
, isabbrev
))
7996 case 1: EMSG(_(e_invarg
));
7998 case 2: EMSG(isabbrev
? _(e_noabbr
) : _(e_nomap
));
8004 * ":winsize" command (obsolete).
8011 char_u
*arg
= eap
->arg
;
8014 w
= getdigits(&arg
);
8015 arg
= skipwhite(arg
);
8017 h
= getdigits(&arg
);
8018 if (*p
!= NUL
&& *arg
== NUL
)
8019 set_shellsize(w
, h
, TRUE
);
8021 EMSG(_("E465: :winsize requires two number arguments"));
8032 if (*eap
->arg
== 'g' || *eap
->arg
== Ctrl_G
)
8034 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8035 if (eap
->arg
[1] == NUL
)
8040 xchar
= eap
->arg
[1];
8046 eap
->nextcmd
= check_nextcmd(p
);
8048 if (*p
!= NUL
&& *p
!= '"' && eap
->nextcmd
== NULL
)
8052 /* Pass flags on for ":vertical wincmd ]". */
8053 postponed_split_flags
= cmdmod
.split
;
8054 postponed_split_tab
= cmdmod
.tab
;
8055 do_window(*eap
->arg
, eap
->addr_count
> 0 ? eap
->line2
: 0L, xchar
);
8056 postponed_split_flags
= 0;
8057 postponed_split_tab
= 0;
8062 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
8071 char_u
*arg
= eap
->arg
;
8076 # if defined(FEAT_GUI) || defined(MSWIN)
8078 if (gui
.in_use
&& gui_mch_get_winpos(&x
, &y
) != FAIL
)
8080 if (mch_get_winpos(&x
, &y
) != FAIL
)
8083 sprintf((char *)IObuff
, _("Window position: X %d, Y %d"), x
, y
);
8088 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8092 x
= getdigits(&arg
);
8093 arg
= skipwhite(arg
);
8095 y
= getdigits(&arg
);
8096 if (*p
== NUL
|| *arg
!= NUL
)
8098 EMSG(_("E466: :winpos requires two number arguments"));
8103 gui_mch_set_winpos(x
, y
);
8104 else if (gui
.starting
)
8106 /* Remember the coordinates for when the window is opened. */
8110 # ifdef HAVE_TGETENT
8115 mch_set_winpos(x
, y
);
8118 # ifdef HAVE_TGETENT
8120 term_set_winpos(x
, y
);
8127 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8136 oa
.regname
= eap
->regname
;
8137 oa
.start
.lnum
= eap
->line1
;
8138 oa
.end
.lnum
= eap
->line2
;
8139 oa
.line_count
= eap
->line2
- eap
->line1
+ 1;
8140 oa
.motion_type
= MLINE
;
8141 #ifdef FEAT_VIRTUALEDIT
8144 if (eap
->cmdidx
!= CMD_yank
) /* position cursor for undo */
8147 curwin
->w_cursor
.lnum
= eap
->line1
;
8148 beginline(BL_SOL
| BL_FIX
);
8151 switch (eap
->cmdidx
)
8154 oa
.op_type
= OP_DELETE
;
8159 oa
.op_type
= OP_YANK
;
8160 (void)op_yank(&oa
, FALSE
, TRUE
);
8163 default: /* CMD_rshift or CMD_lshift */
8164 if ((eap
->cmdidx
== CMD_rshift
)
8165 #ifdef FEAT_RIGHTLEFT
8169 oa
.op_type
= OP_RSHIFT
;
8171 oa
.op_type
= OP_LSHIFT
;
8172 op_shift(&oa
, FALSE
, eap
->amount
);
8175 #ifdef FEAT_VIRTUALEDIT
8188 /* ":0put" works like ":1put!". */
8189 if (eap
->line2
== 0)
8192 eap
->forceit
= TRUE
;
8194 curwin
->w_cursor
.lnum
= eap
->line2
;
8195 do_put(eap
->regname
, eap
->forceit
? BACKWARD
: FORWARD
, 1L,
8196 PUT_LINE
|PUT_CURSLINE
);
8200 * Handle ":copy" and ":move".
8208 n
= get_address(&eap
->arg
, FALSE
, FALSE
);
8209 if (eap
->arg
== NULL
) /* error detected */
8211 eap
->nextcmd
= NULL
;
8217 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8219 if (n
== MAXLNUM
|| n
< 0 || n
> curbuf
->b_ml
.ml_line_count
)
8225 if (eap
->cmdidx
== CMD_move
)
8227 if (do_move(eap
->line1
, eap
->line2
, n
) == FAIL
)
8231 ex_copy(eap
->line1
, eap
->line2
, n
);
8233 beginline(BL_SOL
| BL_FIX
);
8238 * Print the current line if flags were given to the Ex command.
8244 if (eap
->flags
!= 0)
8246 print_line(curwin
->w_cursor
.lnum
, (eap
->flags
& EXFLAG_NR
),
8247 (eap
->flags
& EXFLAG_LIST
));
8248 ex_no_reprint
= TRUE
;
8253 * ":smagic" and ":snomagic".
8259 int magic_save
= p_magic
;
8261 p_magic
= (eap
->cmdidx
== CMD_smagic
);
8263 p_magic
= magic_save
;
8273 curwin
->w_cursor
.lnum
= eap
->line1
;
8274 if (eap
->line1
== eap
->line2
)
8276 if (eap
->addr_count
>= 2) /* :2,2join does nothing */
8278 if (eap
->line2
== curbuf
->b_ml
.ml_line_count
)
8285 do_do_join(eap
->line2
- eap
->line1
+ 1, !eap
->forceit
);
8286 beginline(BL_WHITE
| BL_FIX
);
8291 * ":[addr]@r" or ":[addr]*r": execute register
8299 curwin
->w_cursor
.lnum
= eap
->line2
;
8301 #ifdef USE_ON_FLY_SCROLL
8302 dont_scroll
= TRUE
; /* disallow scrolling here */
8305 /* get the register name. No name means to use the previous one */
8307 if (c
== NUL
|| (c
== '*' && *eap
->cmd
== '*'))
8309 /* Put the register in the typeahead buffer with the "silent" flag. */
8310 if (do_execreg(c
, TRUE
, vim_strchr(p_cpo
, CPO_EXECBUF
) != NULL
, TRUE
)
8317 int save_efr
= exec_from_reg
;
8319 exec_from_reg
= TRUE
;
8322 * Execute from the typeahead buffer.
8323 * Originally this didn't check for the typeahead buffer to be empty,
8324 * thus could read more Ex commands from stdin. It's not clear why,
8325 * it is certainly unexpected.
8327 while ((!stuff_empty() || typebuf
.tb_len
> 0) && vpeekc() == ':')
8328 (void)do_cmdline(NULL
, getexline
, NULL
, DOCMD_NOWAIT
|DOCMD_VERBOSE
);
8330 exec_from_reg
= save_efr
;
8341 do_bang(eap
->addr_count
, eap
, eap
->forceit
, TRUE
, TRUE
);
8352 if (eap
->addr_count
== 1) /* :undo 123 */
8353 undo_time(eap
->line2
, FALSE
, TRUE
);
8370 * ":earlier" and ":later".
8379 char_u
*p
= eap
->arg
;
8383 else if (isdigit(*p
))
8385 count
= getdigits(&p
);
8388 case 's': ++p
; sec
= TRUE
; break;
8389 case 'm': ++p
; sec
= TRUE
; count
*= 60; break;
8390 case 'h': ++p
; sec
= TRUE
; count
*= 60 * 60; break;
8395 EMSG2(_(e_invarg2
), eap
->arg
);
8397 undo_time(eap
->cmdidx
== CMD_earlier
? -count
: count
, sec
, FALSE
);
8401 * ":redir": start/stop redirection.
8409 char_u
*arg
= eap
->arg
;
8411 if (STRICMP(eap
->arg
, "END") == 0)
8425 arg
= skipwhite(arg
);
8429 /* Expand environment variables and "~/". */
8430 fname
= expand_env_save(arg
);
8438 browseFile
= do_browse(BROWSE_SAVE
,
8439 (char_u
*)_("Save Redirection"),
8440 fname
, NULL
, NULL
, BROWSE_FILTER_ALL_FILES
, curbuf
);
8441 if (browseFile
== NULL
)
8442 return; /* operation cancelled */
8445 eap
->forceit
= TRUE
; /* since dialog already asked */
8449 redir_fd
= open_exfile(fname
, eap
->forceit
, mode
);
8453 else if (*arg
== '@')
8455 /* redirect to a register a-z (resp. A-Z for appending) */
8458 if (ASCII_ISALPHA(*arg
)
8459 # ifdef FEAT_CLIPBOARD
8466 if (*arg
== '>' && arg
[1] == '>') /* append */
8470 /* Can use both "@a" and "@a>". */
8473 /* Make register empty when not using @A-@Z and the
8474 * command is valid. */
8475 if (*arg
== NUL
&& !isupper(redir_reg
))
8476 write_reg_contents(redir_reg
, (char_u
*)"", -1, FALSE
);
8482 EMSG2(_(e_invarg2
), eap
->arg
);
8485 else if (*arg
== '=' && arg
[1] == '>')
8489 /* redirect to a variable */
8501 if (var_redir_start(skipwhite(arg
), append
) == OK
)
8506 /* TODO: redirect to a buffer */
8509 EMSG2(_(e_invarg2
), eap
->arg
);
8512 /* Make sure redirection is not off. Can happen for cmdline completion
8513 * that indirectly invokes a command to catch its output. */
8514 if (redir_fd
!= NULL
8516 || redir_reg
|| redir_vname
8523 * ":redraw": force redraw
8529 int r
= RedrawingDisabled
;
8532 RedrawingDisabled
= 0;
8535 update_screen(eap
->forceit
? CLEAR
:
8537 VIsual_active
? INVERTED
:
8544 RedrawingDisabled
= r
;
8547 /* Reset msg_didout, so that a message that's there is overwritten. */
8555 * ":redrawstatus": force redraw of status line(s)
8559 ex_redrawstatus(eap
)
8562 #if defined(FEAT_WINDOWS)
8563 int r
= RedrawingDisabled
;
8566 RedrawingDisabled
= 0;
8569 status_redraw_all();
8571 status_redraw_curbuf();
8574 VIsual_active
? INVERTED
:
8577 RedrawingDisabled
= r
;
8586 if (redir_fd
!= NULL
)
8601 #if defined(FEAT_SESSION) && defined(USE_CRNL)
8602 # define MKSESSION_NL
8603 static int mksession_nl
= FALSE
; /* use NL only in put_eol() */
8607 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8617 char_u
*browseFile
= NULL
;
8620 int view_session
= FALSE
;
8621 int using_vdir
= FALSE
; /* using 'viewdir'? */
8622 char_u
*viewFile
= NULL
;
8626 if (eap
->cmdidx
== CMD_mksession
|| eap
->cmdidx
== CMD_mkview
)
8629 view_session
= TRUE
;
8639 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8640 if (eap
->cmdidx
== CMD_mkview
8641 && (*eap
->arg
== NUL
8642 || (vim_isdigit(*eap
->arg
) && eap
->arg
[1] == NUL
)))
8644 eap
->forceit
= TRUE
;
8645 fname
= get_view_file(*eap
->arg
);
8653 if (*eap
->arg
!= NUL
)
8655 else if (eap
->cmdidx
== CMD_mkvimrc
)
8656 fname
= (char_u
*)VIMRC_FILE
;
8658 else if (eap
->cmdidx
== CMD_mksession
)
8659 fname
= (char_u
*)SESSION_FILE
;
8662 fname
= (char_u
*)EXRC_FILE
;
8667 browseFile
= do_browse(BROWSE_SAVE
,
8668 # ifdef FEAT_SESSION
8669 eap
->cmdidx
== CMD_mkview
? (char_u
*)_("Save View") :
8670 eap
->cmdidx
== CMD_mksession
? (char_u
*)_("Save Session") :
8672 (char_u
*)_("Save Setup"),
8673 fname
, (char_u
*)"vim", NULL
, BROWSE_FILTER_MACROS
, NULL
);
8674 if (browseFile
== NULL
)
8677 eap
->forceit
= TRUE
; /* since dialog already asked */
8681 #if defined(FEAT_SESSION) && defined(vim_mkdir)
8682 /* When using 'viewdir' may have to create the directory. */
8683 if (using_vdir
&& !mch_isdir(p_vdir
))
8684 vim_mkdir_emsg(p_vdir
, 0755);
8687 fd
= open_exfile(fname
, eap
->forceit
, WRITEBIN
);
8691 if (eap
->cmdidx
== CMD_mkview
)
8694 flagp
= &ssop_flags
;
8698 /* "unix" in 'sessionoptions': use NL line separator */
8699 if (view_session
&& (*flagp
& SSOP_UNIX
))
8700 mksession_nl
= TRUE
;
8703 /* Write the version command for :mkvimrc */
8704 if (eap
->cmdidx
== CMD_mkvimrc
)
8705 (void)put_line(fd
, "version 6.0");
8708 if (eap
->cmdidx
== CMD_mksession
)
8710 if (put_line(fd
, "let SessionLoad = 1") == FAIL
)
8714 if (eap
->cmdidx
!= CMD_mkview
)
8717 /* Write setting 'compatible' first, because it has side effects.
8718 * For that same reason only do it when needed. */
8720 (void)put_line(fd
, "if !&cp | set cp | endif");
8722 (void)put_line(fd
, "if &cp | set nocp | endif");
8727 || (eap
->cmdidx
== CMD_mksession
8728 && (*flagp
& SSOP_OPTIONS
)))
8730 failed
|= (makemap(fd
, NULL
) == FAIL
8731 || makeset(fd
, OPT_GLOBAL
, FALSE
) == FAIL
);
8734 if (!failed
&& view_session
)
8736 if (put_line(fd
, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL
)
8738 if (eap
->cmdidx
== CMD_mksession
)
8740 char_u dirnow
[MAXPATHL
]; /* current directory */
8743 * Change to session file's dir.
8745 if (mch_dirname(dirnow
, MAXPATHL
) == FAIL
8746 || mch_chdir((char *)dirnow
) != 0)
8748 if (*dirnow
!= NUL
&& (ssop_flags
& SSOP_SESDIR
))
8750 if (vim_chdirfile(fname
) == OK
)
8751 shorten_fnames(TRUE
);
8753 else if (*dirnow
!= NUL
8754 && (ssop_flags
& SSOP_CURDIR
) && globaldir
!= NULL
)
8756 if (mch_chdir((char *)globaldir
) == OK
)
8757 shorten_fnames(TRUE
);
8760 failed
|= (makeopens(fd
, dirnow
) == FAIL
);
8762 /* restore original dir */
8763 if (*dirnow
!= NUL
&& ((ssop_flags
& SSOP_SESDIR
)
8764 || ((ssop_flags
& SSOP_CURDIR
) && globaldir
!= NULL
)))
8766 if (mch_chdir((char *)dirnow
) != 0)
8767 EMSG(_(e_prev_dir
));
8768 shorten_fnames(TRUE
);
8773 failed
|= (put_view(fd
, curwin
, !using_vdir
, flagp
,
8776 if (put_line(fd
, "let &so = s:so_save | let &siso = s:siso_save")
8779 if (put_line(fd
, "doautoall SessionLoadPost") == FAIL
)
8781 if (eap
->cmdidx
== CMD_mksession
)
8783 if (put_line(fd
, "unlet SessionLoad") == FAIL
)
8788 if (put_line(fd
, "\" vim: set ft=vim :") == FAIL
)
8791 failed
|= fclose(fd
);
8795 #if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8796 else if (eap
->cmdidx
== CMD_mksession
)
8798 /* successful session write - set this_session var */
8799 char_u tbuf
[MAXPATHL
];
8801 if (vim_FullName(fname
, tbuf
, MAXPATHL
, FALSE
) == OK
)
8802 set_vim_var_string(VV_THIS_SESSION
, tbuf
, -1);
8806 mksession_nl
= FALSE
;
8812 vim_free(browseFile
);
8819 #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8823 vim_mkdir_emsg(name
, prot
)
8827 if (vim_mkdir(name
, prot
) != 0)
8829 EMSG2(_("E739: Cannot create directory: %s"), name
);
8837 * Open a file for writing for an Ex command, with some checks.
8838 * Return file descriptor, or NULL on failure.
8841 open_exfile(fname
, forceit
, mode
)
8844 char *mode
; /* "w" for create new file or "a" for append */
8849 /* with Unix it is possible to open a directory */
8850 if (mch_isdir(fname
))
8852 EMSG2(_(e_isadir2
), fname
);
8856 if (!forceit
&& *mode
!= 'a' && vim_fexists(fname
))
8858 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname
);
8862 if ((fd
= mch_fopen((char *)fname
, mode
)) == NULL
)
8863 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname
);
8877 if (*eap
->arg
== NUL
) /* No argument? */
8879 else if (eap
->arg
[1] != NUL
) /* more than one character? */
8880 EMSG(_(e_trailing
));
8883 pos
= curwin
->w_cursor
; /* save curwin->w_cursor */
8884 curwin
->w_cursor
.lnum
= eap
->line2
;
8885 beginline(BL_WHITE
| BL_FIX
);
8886 if (setmark(*eap
->arg
) == FAIL
) /* set mark */
8887 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8888 curwin
->w_cursor
= pos
; /* restore curwin->w_cursor */
8893 * Update w_topline, w_leftcol and the cursor position.
8896 update_topline_cursor()
8898 check_cursor(); /* put cursor on valid line */
8900 if (!curwin
->w_p_wrap
)
8905 #ifdef FEAT_EX_EXTRA
8907 * ":normal[!] {commands}": Execute normal mode commands.
8913 int save_msg_scroll
= msg_scroll
;
8914 int save_restart_edit
= restart_edit
;
8915 int save_msg_didout
= msg_didout
;
8916 int save_State
= State
;
8918 int save_insertmode
= p_im
;
8919 int save_finish_op
= finish_op
;
8920 int save_opcount
= opcount
;
8927 if (ex_normal_lock
> 0)
8932 if (ex_normal_busy
>= p_mmd
)
8934 EMSG(_("E192: Recursive use of :normal too deep"));
8939 msg_scroll
= FALSE
; /* no msg scrolling in Normal mode */
8940 restart_edit
= 0; /* don't go to Insert mode */
8941 p_im
= FALSE
; /* don't use 'insertmode' */
8945 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8946 * this for the K_SPECIAL leading byte, otherwise special keys will not
8953 /* Count the number of characters to be escaped. */
8954 for (p
= eap
->arg
; *p
!= NUL
; ++p
)
8957 if (*p
== CSI
) /* leadbyte CSI */
8960 for (l
= (*mb_ptr2len
)(p
) - 1; l
> 0; --l
)
8961 if (*++p
== K_SPECIAL
/* trailbyte K_SPECIAL or CSI */
8970 arg
= alloc((unsigned)(STRLEN(eap
->arg
) + len
+ 1));
8974 for (p
= eap
->arg
; *p
!= NUL
; ++p
)
8980 arg
[len
++] = KS_EXTRA
;
8981 arg
[len
++] = (int)KE_CSI
;
8984 for (l
= (*mb_ptr2len
)(p
) - 1; l
> 0; --l
)
8987 if (*p
== K_SPECIAL
)
8989 arg
[len
++] = KS_SPECIAL
;
8990 arg
[len
++] = KE_FILLER
;
8995 arg
[len
++] = KS_EXTRA
;
8996 arg
[len
++] = (int)KE_CSI
;
9008 * Save the current typeahead. This is required to allow using ":normal"
9009 * from an event handler and makes sure we don't hang when the argument
9010 * ends with half a command.
9012 save_typeahead(&tabuf
);
9013 if (tabuf
.typebuf_valid
)
9016 * Repeat the :normal command for each line in the range. When no
9017 * range given, execute it just once, without positioning the cursor
9022 if (eap
->addr_count
!= 0)
9024 curwin
->w_cursor
.lnum
= eap
->line1
++;
9025 curwin
->w_cursor
.col
= 0;
9032 eap
->arg
, eap
->forceit
? REMAP_NONE
: REMAP_YES
, FALSE
);
9034 while (eap
->addr_count
> 0 && eap
->line1
<= eap
->line2
&& !got_int
);
9037 /* Might not return to the main loop when in an event handler. */
9038 update_topline_cursor();
9040 /* Restore the previous typeahead. */
9041 restore_typeahead(&tabuf
);
9044 msg_scroll
= save_msg_scroll
;
9045 restart_edit
= save_restart_edit
;
9046 p_im
= save_insertmode
;
9047 finish_op
= save_finish_op
;
9048 opcount
= save_opcount
;
9049 msg_didout
|= save_msg_didout
; /* don't reset msg_didout now */
9051 /* Restore the state (needed when called from a function executed for
9060 * ":startinsert", ":startreplace" and ":startgreplace"
9068 coladvance((colnr_T
)MAXCOL
);
9069 curwin
->w_curswant
= MAXCOL
;
9070 curwin
->w_set_curswant
= FALSE
;
9073 /* Ignore the command when already in Insert mode. Inserting an
9074 * expression register that invokes a function can do this. */
9078 if (eap
->cmdidx
== CMD_startinsert
)
9080 else if (eap
->cmdidx
== CMD_startreplace
)
9087 if (eap
->cmdidx
== CMD_startinsert
)
9089 curwin
->w_curswant
= 0; /* avoid MAXCOL */
9102 stop_insert_mode
= TRUE
;
9106 #if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9108 * Execute normal mode command "cmd".
9109 * "remap" can be REMAP_NONE or REMAP_YES.
9112 exec_normal_cmd(cmd
, remap
, silent
)
9120 * Stuff the argument into the typeahead buffer.
9121 * Execute normal_cmd() until there is no typeahead left.
9125 ins_typebuf(cmd
, remap
, 0, TRUE
, silent
);
9126 while ((!stuff_empty() || (!typebuf_typed() && typebuf
.tb_len
> 0))
9129 update_topline_cursor();
9130 normal_cmd(&oa
, FALSE
); /* execute a Normal mode cmd */
9140 find_pattern_in_path(NULL
, 0, 0, FALSE
, FALSE
, CHECK_PATH
, 1L,
9141 eap
->forceit
? ACTION_SHOW_ALL
: ACTION_SHOW
,
9142 (linenr_T
)1, (linenr_T
)MAXLNUM
);
9145 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9153 g_do_tagpreview
= p_pvh
;
9155 g_do_tagpreview
= 0;
9168 switch (cmdnames
[eap
->cmdidx
].cmd_name
[2])
9170 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9171 if (cmdnames
[eap
->cmdidx
].cmd_name
[0] == 'p')
9172 action
= ACTION_GOTO
;
9174 action
= ACTION_SHOW
;
9176 case 'i': /* ":ilist" and ":dlist" */
9177 action
= ACTION_SHOW_ALL
;
9179 case 'u': /* ":ijump" and ":djump" */
9180 action
= ACTION_GOTO
;
9182 default: /* ":isplit" and ":dsplit" */
9183 action
= ACTION_SPLIT
;
9188 if (vim_isdigit(*eap
->arg
)) /* get count */
9190 n
= getdigits(&eap
->arg
);
9191 eap
->arg
= skipwhite(eap
->arg
);
9193 if (*eap
->arg
== '/') /* Match regexp, not just whole words */
9197 p
= skip_regexp(eap
->arg
, '/', p_magic
, NULL
);
9203 /* Check for trailing illegal characters */
9204 if (!ends_excmd(*p
))
9205 eap
->errmsg
= e_trailing
;
9207 eap
->nextcmd
= check_nextcmd(p
);
9211 find_pattern_in_path(eap
->arg
, 0, (int)STRLEN(eap
->arg
),
9212 whole
, !eap
->forceit
,
9213 *eap
->cmd
== 'd' ? FIND_DEFINE
: FIND_ANY
,
9214 n
, action
, eap
->line1
, eap
->line2
);
9220 # ifdef FEAT_QUICKFIX
9222 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9228 g_do_tagpreview
= p_pvh
;
9229 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
+ 1);
9239 win_T
*curwin_save
= curwin
;
9241 g_do_tagpreview
= p_pvh
;
9242 prepare_tagpreview(TRUE
);
9243 keep_help_flag
= curwin_save
->w_buffer
->b_help
;
9244 do_exedit(eap
, NULL
);
9245 keep_help_flag
= FALSE
;
9246 if (curwin
!= curwin_save
&& win_valid(curwin_save
))
9248 /* Return cursor to where we were */
9250 redraw_later(VALID
);
9251 win_enter(curwin_save
, TRUE
);
9253 g_do_tagpreview
= 0;
9258 * ":stag", ":stselect" and ":stjump".
9264 postponed_split
= -1;
9265 postponed_split_flags
= cmdmod
.split
;
9266 postponed_split_tab
= cmdmod
.tab
;
9267 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
+ 1);
9268 postponed_split_flags
= 0;
9269 postponed_split_tab
= 0;
9274 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9280 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
);
9284 ex_tag_cmd(eap
, name
)
9292 case 'j': cmd
= DT_JUMP
; /* ":tjump" */
9294 case 's': cmd
= DT_SELECT
; /* ":tselect" */
9296 case 'p': cmd
= DT_PREV
; /* ":tprevious" */
9298 case 'N': cmd
= DT_PREV
; /* ":tNext" */
9300 case 'n': cmd
= DT_NEXT
; /* ":tnext" */
9302 case 'o': cmd
= DT_POP
; /* ":pop" */
9304 case 'f': /* ":tfirst" */
9305 case 'r': cmd
= DT_FIRST
; /* ":trewind" */
9307 case 'l': cmd
= DT_LAST
; /* ":tlast" */
9309 default: /* ":tag" */
9311 if (p_cst
&& *eap
->arg
!= NUL
)
9323 #ifndef FEAT_QUICKFIX
9331 do_tag(eap
->arg
, cmd
, eap
->addr_count
> 0 ? (int)eap
->line2
: 1,
9332 eap
->forceit
, TRUE
);
9336 * Check "str" for starting with a special cmdline variable.
9337 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9338 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9341 find_cmdline_var(src
, usedlen
)
9347 static char *(spec_str
[]) = {
9352 "<cword>", /* cursor word */
9353 #define SPEC_CWORD 2
9354 "<cWORD>", /* cursor WORD */
9355 #define SPEC_CCWORD 3
9356 "<cfile>", /* cursor path name */
9357 #define SPEC_CFILE 4
9358 "<sfile>", /* ":so" file name */
9359 #define SPEC_SFILE 5
9361 "<afile>", /* autocommand file name */
9362 # define SPEC_AFILE 6
9363 "<abuf>", /* autocommand buffer number */
9364 # define SPEC_ABUF 7
9365 "<amatch>", /* autocommand match name */
9366 # define SPEC_AMATCH 8
9368 #ifdef FEAT_CLIENTSERVER
9370 # define SPEC_CLIENT 9
9373 #define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9375 for (i
= 0; i
< SPEC_COUNT
; ++i
)
9377 len
= (int)STRLEN(spec_str
[i
]);
9378 if (STRNCMP(src
, spec_str
[i
], len
) == 0)
9388 * Evaluate cmdline variables.
9390 * change '%' to curbuf->b_ffname
9391 * '#' to curwin->w_altfile
9392 * '<cword>' to word under the cursor
9393 * '<cWORD>' to WORD under the cursor
9394 * '<cfile>' to path name under the cursor
9395 * '<sfile>' to sourced file name
9396 * '<afile>' to file name for autocommand
9397 * '<abuf>' to buffer number for autocommand
9398 * '<amatch>' to matching name for autocommand
9400 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9401 * "" for error without a message) and NULL is returned.
9402 * Returns an allocated string if a valid match was found.
9403 * Returns NULL if no match was found. "usedlen" then still contains the
9404 * number of characters to skip.
9407 eval_vars(src
, srcstart
, usedlen
, lnump
, errormsg
, escaped
)
9408 char_u
*src
; /* pointer into commandline */
9409 char_u
*srcstart
; /* beginning of valid memory for src */
9410 int *usedlen
; /* characters after src that are used */
9411 linenr_T
*lnump
; /* line number for :e command, or NULL */
9412 char_u
**errormsg
; /* pointer to error message */
9413 int *escaped
; /* return value has escaped white space (can
9419 char_u
*resultbuf
= NULL
;
9422 int valid
= VALID_HEAD
+ VALID_PATH
; /* assume valid result */
9424 #ifdef FEAT_MODIFY_FNAME
9425 int skip_mod
= FALSE
;
9428 #if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9433 if (escaped
!= NULL
)
9437 * Check if there is something to do.
9439 spec_idx
= find_cmdline_var(src
, usedlen
);
9440 if (spec_idx
< 0) /* no match */
9447 * Skip when preceded with a backslash "\%" and "\#".
9448 * Note: In "\\%" the % is also not recognized!
9450 if (src
> srcstart
&& src
[-1] == '\\')
9453 STRMOVE(src
- 1, src
); /* remove backslash */
9458 * word or WORD under cursor
9460 if (spec_idx
== SPEC_CWORD
|| spec_idx
== SPEC_CCWORD
)
9462 resultlen
= find_ident_under_cursor(&result
, spec_idx
== SPEC_CWORD
?
9463 (FIND_IDENT
|FIND_STRING
) : FIND_STRING
);
9466 *errormsg
= (char_u
*)"";
9472 * '#': Alternate file name
9473 * '%': Current file name
9474 * File name under the cursor
9475 * File name for autocommand
9476 * and following modifiers
9482 case SPEC_PERC
: /* '%': current file */
9483 if (curbuf
->b_fname
== NULL
)
9485 result
= (char_u
*)"";
9486 valid
= 0; /* Must have ":p:h" to be valid */
9490 /* Always use the full path for RISC OS if possible. */
9491 result
= curbuf
->b_ffname
;
9493 result
= curbuf
->b_fname
;
9495 result
= curbuf
->b_fname
;
9499 case SPEC_HASH
: /* '#' or "#99": alternate file */
9500 if (src
[1] == '#') /* "##": the argument list */
9505 if (escaped
!= NULL
)
9507 #ifdef FEAT_MODIFY_FNAME
9513 if (*s
== '<') /* "#<99" uses v:oldfiles */
9515 i
= (int)getdigits(&s
);
9516 *usedlen
= (int)(s
- src
); /* length of what we expand */
9522 /* Should we give an error message for #<text? */
9527 result
= list_find_str(get_vim_var_list(VV_OLDFILES
),
9531 *errormsg
= (char_u
*)"";
9535 *errormsg
= (char_u
*)_("E809: #< is not available without the +eval feature");
9541 buf
= buflist_findnr(i
);
9544 *errormsg
= (char_u
*)_("E194: No alternate file name to substitute for '#'");
9549 if (buf
->b_fname
== NULL
)
9551 result
= (char_u
*)"";
9552 valid
= 0; /* Must have ":p:h" to be valid */
9555 result
= buf
->b_fname
;
9559 #ifdef FEAT_SEARCHPATH
9560 case SPEC_CFILE
: /* file name under cursor */
9561 result
= file_name_at_cursor(FNAME_MESS
|FNAME_HYP
, 1L, NULL
);
9564 *errormsg
= (char_u
*)"";
9567 resultbuf
= result
; /* remember allocated string */
9572 case SPEC_AFILE
: /* file name for autocommand */
9573 result
= autocmd_fname
;
9574 if (result
!= NULL
&& !autocmd_fname_full
)
9576 /* Still need to turn the fname into a full path. It is
9577 * postponed to avoid a delay when <afile> is not used. */
9578 autocmd_fname_full
= TRUE
;
9579 result
= FullName_save(autocmd_fname
, FALSE
);
9580 vim_free(autocmd_fname
);
9581 autocmd_fname
= result
;
9585 *errormsg
= (char_u
*)_("E495: no autocommand file name to substitute for \"<afile>\"");
9588 result
= shorten_fname1(result
);
9591 case SPEC_ABUF
: /* buffer number for autocommand */
9592 if (autocmd_bufnr
<= 0)
9594 *errormsg
= (char_u
*)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9597 sprintf((char *)strbuf
, "%d", autocmd_bufnr
);
9601 case SPEC_AMATCH
: /* match name for autocommand */
9602 result
= autocmd_match
;
9605 *errormsg
= (char_u
*)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9611 case SPEC_SFILE
: /* file name for ":so" command */
9612 result
= sourcing_name
;
9615 *errormsg
= (char_u
*)_("E498: no :source file name to substitute for \"<sfile>\"");
9619 #if defined(FEAT_CLIENTSERVER)
9620 case SPEC_CLIENT
: /* Source of last submitted input */
9621 sprintf((char *)strbuf
, PRINTF_HEX_LONG_U
,
9622 (long_u
)clientWindow
);
9628 resultlen
= (int)STRLEN(result
); /* length of new string */
9629 if (src
[*usedlen
] == '<') /* remove the file name extension */
9633 if ((s
= vim_strrchr(result
, '/')) != NULL
&& s
>= gettail(result
))
9635 if ((s
= vim_strrchr(result
, '.')) != NULL
&& s
>= gettail(result
))
9637 resultlen
= (int)(s
- result
);
9639 #ifdef FEAT_MODIFY_FNAME
9642 valid
|= modify_fname(src
, usedlen
, &result
, &resultbuf
,
9646 *errormsg
= (char_u
*)"";
9653 if (resultlen
== 0 || valid
!= VALID_HEAD
+ VALID_PATH
)
9655 if (valid
!= VALID_HEAD
+ VALID_PATH
)
9656 /* xgettext:no-c-format */
9657 *errormsg
= (char_u
*)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9659 *errormsg
= (char_u
*)_("E500: Evaluates to an empty string");
9663 result
= vim_strnsave(result
, resultlen
);
9664 vim_free(resultbuf
);
9669 * Concatenate all files in the argument list, separated by spaces, and return
9670 * it in one allocated string.
9671 * Spaces and backslashes in the file names are escaped with a backslash.
9672 * Returns NULL when out of memory.
9679 char_u
*retval
= NULL
;
9683 * Do this loop two times:
9684 * first time: compute the total length
9685 * second time: concatenate the names
9690 for (idx
= 0; idx
< ARGCOUNT
; ++idx
)
9692 p
= alist_name(&ARGLIST
[idx
]);
9697 /* insert a space in between names */
9702 for ( ; *p
!= NUL
; ++p
)
9704 if (*p
== ' ' || *p
== '\\')
9706 /* insert a backslash */
9718 /* second time: break here */
9725 /* allocate memory */
9726 retval
= alloc(len
+ 1);
9734 #if defined(FEAT_AUTOCMD) || defined(PROTO)
9736 * Expand the <sfile> string in "arg".
9738 * Returns an allocated string, or NULL for any error.
9752 result
= vim_strsave(arg
);
9756 for (p
= result
; *p
; )
9758 if (STRNCMP(p
, "<sfile>", 7) != 0)
9762 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
9763 repl
= eval_vars(p
, result
, &srclen
, NULL
, &errormsg
, NULL
);
9764 if (errormsg
!= NULL
)
9771 if (repl
== NULL
) /* no match (cannot happen) */
9776 len
= (int)STRLEN(result
) - srclen
+ (int)STRLEN(repl
) + 1;
9777 newres
= alloc(len
);
9784 mch_memmove(newres
, result
, (size_t)(p
- result
));
9785 STRCPY(newres
+ (p
- result
), repl
);
9786 len
= (int)STRLEN(newres
);
9787 STRCAT(newres
, p
+ srclen
);
9791 p
= newres
+ len
; /* continue after the match */
9800 static int ses_winsizes
__ARGS((FILE *fd
, int restore_size
,
9801 win_T
*tab_firstwin
));
9802 static int ses_win_rec
__ARGS((FILE *fd
, frame_T
*fr
));
9803 static frame_T
*ses_skipframe
__ARGS((frame_T
*fr
));
9804 static int ses_do_frame
__ARGS((frame_T
*fr
));
9805 static int ses_do_win
__ARGS((win_T
*wp
));
9806 static int ses_arglist
__ARGS((FILE *fd
, char *cmd
, garray_T
*gap
, int fullname
, unsigned *flagp
));
9807 static int ses_put_fname
__ARGS((FILE *fd
, char_u
*name
, unsigned *flagp
));
9808 static int ses_fname
__ARGS((FILE *fd
, buf_T
*buf
, unsigned *flagp
));
9811 * Write openfile commands for the current buffers to an .exrc file.
9812 * Return FAIL on error, OK otherwise.
9815 makeopens(fd
, dirnow
)
9817 char_u
*dirnow
; /* Current directory name */
9820 int only_save_windows
= TRUE
;
9823 int restore_size
= TRUE
;
9826 win_T
*edited_win
= NULL
;
9828 win_T
*tab_firstwin
;
9829 frame_T
*tab_topframe
;
9830 int cur_arg_idx
= 0;
9831 int next_arg_idx
= 0;
9833 if (ssop_flags
& SSOP_BUFFERS
)
9834 only_save_windows
= FALSE
; /* Save ALL buffers */
9837 * Begin by setting the this_session variable, and then other
9838 * sessionable variables.
9841 if (put_line(fd
, "let v:this_session=expand(\"<sfile>:p\")") == FAIL
)
9843 if (ssop_flags
& SSOP_GLOBALS
)
9844 if (store_session_globals(fd
) == FAIL
)
9849 * Close all windows but one.
9851 if (put_line(fd
, "silent only") == FAIL
)
9855 * Now a :cd command to the session directory or the current directory
9857 if (ssop_flags
& SSOP_SESDIR
)
9859 if (put_line(fd
, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9863 else if (ssop_flags
& SSOP_CURDIR
)
9865 sname
= home_replace_save(NULL
, globaldir
!= NULL
? globaldir
: dirnow
);
9867 || fputs("cd ", fd
) < 0
9868 || ses_put_fname(fd
, sname
, &ssop_flags
) == FAIL
9869 || put_eol(fd
) == FAIL
)
9878 * If there is an empty, unnamed buffer we will wipe it out later.
9879 * Remember the buffer number.
9881 if (put_line(fd
, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL
)
9883 if (put_line(fd
, " let s:wipebuf = bufnr('%')") == FAIL
)
9885 if (put_line(fd
, "endif") == FAIL
)
9889 * Now save the current files, current buffer first.
9891 if (put_line(fd
, "set shortmess=aoO") == FAIL
)
9894 /* Now put the other buffers into the buffer list */
9895 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
9897 if (!(only_save_windows
&& buf
->b_nwindows
== 0)
9898 && !(buf
->b_help
&& !(ssop_flags
& SSOP_HELP
))
9899 && buf
->b_fname
!= NULL
9902 if (fprintf(fd
, "badd +%ld ", buf
->b_wininfo
== NULL
? 1L
9903 : buf
->b_wininfo
->wi_fpos
.lnum
) < 0
9904 || ses_fname(fd
, buf
, &ssop_flags
) == FAIL
)
9909 /* the global argument list */
9910 if (ses_arglist(fd
, "args", &global_alist
.al_ga
,
9911 !(ssop_flags
& SSOP_CURDIR
), &ssop_flags
) == FAIL
)
9914 if (ssop_flags
& SSOP_RESIZE
)
9916 /* Note: after the restore we still check it worked!*/
9917 if (fprintf(fd
, "set lines=%ld columns=%ld" , Rows
, Columns
) < 0
9918 || put_eol(fd
) == FAIL
)
9923 if (gui
.in_use
&& (ssop_flags
& SSOP_WINPOS
))
9927 if (gui_mch_get_winpos(&x
, &y
) == OK
)
9929 /* Note: after the restore we still check it worked!*/
9930 if (fprintf(fd
, "winpos %d %d", x
, y
) < 0 || put_eol(fd
) == FAIL
)
9937 * May repeat putting Windows for each tab, when "tabpages" is in
9939 * Don't use goto_tabpage(), it may change directory and trigger
9942 tab_firstwin
= firstwin
; /* first window in tab page "tabnr" */
9943 tab_topframe
= topframe
;
9944 for (tabnr
= 1; ; ++tabnr
)
9946 int need_tabnew
= FALSE
;
9948 if ((ssop_flags
& SSOP_TABPAGES
))
9950 tabpage_T
*tp
= find_tabpage(tabnr
);
9953 break; /* done all tab pages */
9956 tab_firstwin
= firstwin
;
9957 tab_topframe
= topframe
;
9961 tab_firstwin
= tp
->tp_firstwin
;
9962 tab_topframe
= tp
->tp_topframe
;
9969 * Before creating the window layout, try loading one file. If this
9970 * is aborted we don't end up with a number of useless windows.
9971 * This may have side effects! (e.g., compressed or network file).
9973 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
9976 && wp
->w_buffer
->b_ffname
!= NULL
9977 && !wp
->w_buffer
->b_help
9978 #ifdef FEAT_QUICKFIX
9979 && !bt_nofile(wp
->w_buffer
)
9983 if (fputs(need_tabnew
? "tabedit " : "edit ", fd
) < 0
9984 || ses_fname(fd
, wp
->w_buffer
, &ssop_flags
) == FAIL
)
9986 need_tabnew
= FALSE
;
9987 if (!wp
->w_arg_idx_invalid
)
9993 /* If no file got edited create an empty tab page. */
9994 if (need_tabnew
&& put_line(fd
, "tabnew") == FAIL
)
9998 * Save current window layout.
10000 if (put_line(fd
, "set splitbelow splitright") == FAIL
)
10002 if (ses_win_rec(fd
, tab_topframe
) == FAIL
)
10004 if (!p_sb
&& put_line(fd
, "set nosplitbelow") == FAIL
)
10006 if (!p_spr
&& put_line(fd
, "set nosplitright") == FAIL
)
10010 * Check if window sizes can be restored (no windows omitted).
10011 * Remember the window number of the current window after restoring.
10014 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= W_NEXT(wp
))
10016 if (ses_do_win(wp
))
10019 restore_size
= FALSE
;
10024 /* Go to the first window. */
10025 if (put_line(fd
, "wincmd t") == FAIL
)
10029 * If more than one window, see if sizes can be restored.
10030 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
10031 * resized when moving between windows.
10032 * Do this before restoring the view, so that the topline and the
10033 * cursor can be set. This is done again below.
10035 if (put_line(fd
, "set winheight=1 winwidth=1") == FAIL
)
10037 if (nr
> 1 && ses_winsizes(fd
, restore_size
, tab_firstwin
) == FAIL
)
10041 * Restore the view of the window (options, file, cursor, etc.).
10043 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
10045 if (!ses_do_win(wp
))
10047 if (put_view(fd
, wp
, wp
!= edited_win
, &ssop_flags
,
10048 cur_arg_idx
) == FAIL
)
10050 if (nr
> 1 && put_line(fd
, "wincmd w") == FAIL
)
10052 next_arg_idx
= wp
->w_arg_idx
;
10055 /* The argument index in the first tab page is zero, need to set it in
10056 * each window. For further tab pages it's the window where we do
10058 cur_arg_idx
= next_arg_idx
;
10061 * Restore cursor to the current window if it's not the first one.
10063 if (cnr
> 1 && (fprintf(fd
, "%dwincmd w", cnr
) < 0
10064 || put_eol(fd
) == FAIL
))
10068 * Restore window sizes again after jumping around in windows, because
10069 * the current window has a minimum size while others may not.
10071 if (nr
> 1 && ses_winsizes(fd
, restore_size
, tab_firstwin
) == FAIL
)
10074 /* Don't continue in another tab page when doing only the current one
10075 * or when at the last tab page. */
10076 if (!(ssop_flags
& SSOP_TABPAGES
))
10080 if (ssop_flags
& SSOP_TABPAGES
)
10082 if (fprintf(fd
, "tabnext %d", tabpage_index(curtab
)) < 0
10083 || put_eol(fd
) == FAIL
)
10088 * Wipe out an empty unnamed buffer we started in.
10090 if (put_line(fd
, "if exists('s:wipebuf')") == FAIL
)
10092 if (put_line(fd
, " silent exe 'bwipe ' . s:wipebuf") == FAIL
)
10094 if (put_line(fd
, "endif") == FAIL
)
10096 if (put_line(fd
, "unlet! s:wipebuf") == FAIL
)
10099 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10100 if (fprintf(fd
, "set winheight=%ld winwidth=%ld shortmess=%s",
10101 p_wh
, p_wiw
, p_shm
) < 0 || put_eol(fd
) == FAIL
)
10105 * Lastly, execute the x.vim file if it exists.
10107 if (put_line(fd
, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10108 || put_line(fd
, "if file_readable(s:sx)") == FAIL
10109 || put_line(fd
, " exe \"source \" . fnameescape(s:sx)") == FAIL
10110 || put_line(fd
, "endif") == FAIL
)
10117 ses_winsizes(fd
, restore_size
, tab_firstwin
)
10120 win_T
*tab_firstwin
;
10125 if (restore_size
&& (ssop_flags
& SSOP_WINSIZE
))
10127 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
10129 if (!ses_do_win(wp
))
10133 /* restore height when not full height */
10134 if (wp
->w_height
+ wp
->w_status_height
< topframe
->fr_height
10136 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10137 n
, (long)wp
->w_height
, Rows
/ 2, Rows
) < 0
10138 || put_eol(fd
) == FAIL
))
10141 /* restore width when not full width */
10142 if (wp
->w_width
< Columns
&& (fprintf(fd
,
10143 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10144 n
, (long)wp
->w_width
, Columns
/ 2, Columns
) < 0
10145 || put_eol(fd
) == FAIL
))
10151 /* Just equalise window sizes */
10152 if (put_line(fd
, "wincmd =") == FAIL
)
10159 * Write commands to "fd" to recursively create windows for frame "fr",
10160 * horizontally and vertically split.
10161 * After the commands the last window in the frame is the current window.
10162 * Returns FAIL when writing the commands to "fd" fails.
10165 ses_win_rec(fd
, fr
)
10172 if (fr
->fr_layout
!= FR_LEAF
)
10174 /* Find first frame that's not skipped and then create a window for
10175 * each following one (first frame is already there). */
10176 frc
= ses_skipframe(fr
->fr_child
);
10178 while ((frc
= ses_skipframe(frc
->fr_next
)) != NULL
)
10180 /* Make window as big as possible so that we have lots of room
10182 if (put_line(fd
, "wincmd _ | wincmd |") == FAIL
10183 || put_line(fd
, fr
->fr_layout
== FR_COL
10184 ? "split" : "vsplit") == FAIL
)
10189 /* Go back to the first window. */
10190 if (count
> 0 && (fprintf(fd
, fr
->fr_layout
== FR_COL
10191 ? "%dwincmd k" : "%dwincmd h", count
) < 0
10192 || put_eol(fd
) == FAIL
))
10195 /* Recursively create frames/windows in each window of this column or
10197 frc
= ses_skipframe(fr
->fr_child
);
10198 while (frc
!= NULL
)
10200 ses_win_rec(fd
, frc
);
10201 frc
= ses_skipframe(frc
->fr_next
);
10202 /* Go to next window. */
10203 if (frc
!= NULL
&& put_line(fd
, "wincmd w") == FAIL
)
10211 * Skip frames that don't contain windows we want to save in the Session.
10212 * Returns NULL when there none.
10220 for (frc
= fr
; frc
!= NULL
; frc
= frc
->fr_next
)
10221 if (ses_do_frame(frc
))
10227 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10236 if (fr
->fr_layout
== FR_LEAF
)
10237 return ses_do_win(fr
->fr_win
);
10238 for (frc
= fr
->fr_child
; frc
!= NULL
; frc
= frc
->fr_next
)
10239 if (ses_do_frame(frc
))
10245 * Return non-zero if window "wp" is to be stored in the Session.
10251 if (wp
->w_buffer
->b_fname
== NULL
10252 #ifdef FEAT_QUICKFIX
10253 /* When 'buftype' is "nofile" can't restore the window contents. */
10254 || bt_nofile(wp
->w_buffer
)
10257 return (ssop_flags
& SSOP_BLANK
);
10258 if (wp
->w_buffer
->b_help
)
10259 return (ssop_flags
& SSOP_HELP
);
10264 * Write commands to "fd" to restore the view of a window.
10265 * Caller must make sure 'scrolloff' is zero.
10268 put_view(fd
, wp
, add_edit
, flagp
, current_arg_idx
)
10271 int add_edit
; /* add ":edit" command to view */
10272 unsigned *flagp
; /* vop_flags or ssop_flags */
10273 int current_arg_idx
; /* current argument index of the window, use
10276 win_T
*save_curwin
;
10279 int did_next
= FALSE
;
10281 /* Always restore cursor position for ":mksession". For ":mkview" only
10282 * when 'viewoptions' contains "cursor". */
10283 do_cursor
= (flagp
== &ssop_flags
|| *flagp
& SSOP_CURSOR
);
10286 * Local argument list.
10288 if (wp
->w_alist
== &global_alist
)
10290 if (put_line(fd
, "argglobal") == FAIL
)
10295 if (ses_arglist(fd
, "arglocal", &wp
->w_alist
->al_ga
,
10296 flagp
== &vop_flags
10297 || !(*flagp
& SSOP_CURDIR
)
10298 || wp
->w_localdir
!= NULL
, flagp
) == FAIL
)
10302 /* Only when part of a session: restore the argument index. Some
10303 * arguments may have been deleted, check if the index is valid. */
10304 if (wp
->w_arg_idx
!= current_arg_idx
&& wp
->w_arg_idx
<= WARGCOUNT(wp
)
10305 && flagp
== &ssop_flags
)
10307 if (fprintf(fd
, "%ldargu", (long)wp
->w_arg_idx
+ 1) < 0
10308 || put_eol(fd
) == FAIL
)
10313 /* Edit the file. Skip this when ":next" already did it. */
10314 if (add_edit
&& (!did_next
|| wp
->w_arg_idx_invalid
))
10319 if (wp
->w_buffer
->b_ffname
!= NULL
10320 #ifdef FEAT_QUICKFIX
10321 && !bt_nofile(wp
->w_buffer
)
10326 * Editing a file in this buffer: use ":edit file".
10327 * This may have side effects! (e.g., compressed or network file).
10329 if (fputs("edit ", fd
) < 0
10330 || ses_fname(fd
, wp
->w_buffer
, flagp
) == FAIL
)
10335 /* No file in this buffer, just make it empty. */
10336 if (put_line(fd
, "enew") == FAIL
)
10338 #ifdef FEAT_QUICKFIX
10339 if (wp
->w_buffer
->b_ffname
!= NULL
)
10341 /* The buffer does have a name, but it's not a file name. */
10342 if (fputs("file ", fd
) < 0
10343 || ses_fname(fd
, wp
->w_buffer
, flagp
) == FAIL
)
10352 * Local mappings and abbreviations.
10354 if ((*flagp
& (SSOP_OPTIONS
| SSOP_LOCALOPTIONS
))
10355 && makemap(fd
, wp
->w_buffer
) == FAIL
)
10359 * Local options. Need to go to the window temporarily.
10360 * Store only local values when using ":mkview" and when ":mksession" is
10361 * used and 'sessionoptions' doesn't include "options".
10362 * Some folding options are always stored when "folds" is included,
10363 * otherwise the folds would not be restored correctly.
10365 save_curwin
= curwin
;
10367 curbuf
= curwin
->w_buffer
;
10368 if (*flagp
& (SSOP_OPTIONS
| SSOP_LOCALOPTIONS
))
10369 f
= makeset(fd
, OPT_LOCAL
,
10370 flagp
== &vop_flags
|| !(*flagp
& SSOP_OPTIONS
));
10371 #ifdef FEAT_FOLDING
10372 else if (*flagp
& SSOP_FOLDS
)
10373 f
= makefoldset(fd
);
10377 curwin
= save_curwin
;
10378 curbuf
= curwin
->w_buffer
;
10382 #ifdef FEAT_FOLDING
10384 * Save Folds when 'buftype' is empty and for help files.
10386 if ((*flagp
& SSOP_FOLDS
)
10387 && wp
->w_buffer
->b_ffname
!= NULL
10388 # ifdef FEAT_QUICKFIX
10389 && (*wp
->w_buffer
->b_p_bt
== NUL
|| wp
->w_buffer
->b_help
)
10393 if (put_folds(fd
, wp
) == FAIL
)
10399 * Set the cursor after creating folds, since that moves the cursor.
10404 /* Restore the cursor line in the file and relatively in the
10405 * window. Don't use "G", it changes the jumplist. */
10406 if (fprintf(fd
, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10407 (long)wp
->w_cursor
.lnum
,
10408 (long)(wp
->w_cursor
.lnum
- wp
->w_topline
),
10409 (long)wp
->w_height
/ 2, (long)wp
->w_height
) < 0
10410 || put_eol(fd
) == FAIL
10411 || put_line(fd
, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10412 || put_line(fd
, "exe s:l") == FAIL
10413 || put_line(fd
, "normal! zt") == FAIL
10414 || fprintf(fd
, "%ld", (long)wp
->w_cursor
.lnum
) < 0
10415 || put_eol(fd
) == FAIL
)
10417 /* Restore the cursor column and left offset when not wrapping. */
10418 if (wp
->w_cursor
.col
== 0)
10420 if (put_line(fd
, "normal! 0") == FAIL
)
10425 if (!wp
->w_p_wrap
&& wp
->w_leftcol
> 0 && wp
->w_width
> 0)
10428 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10429 (long)wp
->w_cursor
.col
,
10430 (long)(wp
->w_cursor
.col
- wp
->w_leftcol
),
10431 (long)wp
->w_width
/ 2, (long)wp
->w_width
) < 0
10432 || put_eol(fd
) == FAIL
10433 || put_line(fd
, "if s:c > 0") == FAIL
10435 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10436 (long)wp
->w_cursor
.col
) < 0
10437 || put_eol(fd
) == FAIL
10438 || put_line(fd
, "else") == FAIL
10439 || fprintf(fd
, " normal! 0%dl", wp
->w_cursor
.col
) < 0
10440 || put_eol(fd
) == FAIL
10441 || put_line(fd
, "endif") == FAIL
)
10446 if (fprintf(fd
, "normal! 0%dl", wp
->w_cursor
.col
) < 0
10447 || put_eol(fd
) == FAIL
)
10456 if (wp
->w_localdir
!= NULL
)
10458 if (fputs("lcd ", fd
) < 0
10459 || ses_put_fname(fd
, wp
->w_localdir
, flagp
) == FAIL
10460 || put_eol(fd
) == FAIL
)
10469 * Write an argument list to the session file.
10470 * Returns FAIL if writing fails.
10473 ses_arglist(fd
, cmd
, gap
, fullname
, flagp
)
10477 int fullname
; /* TRUE: use full path name */
10481 char_u buf
[MAXPATHL
];
10484 if (gap
->ga_len
== 0)
10485 return put_line(fd
, "silent! argdel *");
10486 if (fputs(cmd
, fd
) < 0)
10488 for (i
= 0; i
< gap
->ga_len
; ++i
)
10490 /* NULL file names are skipped (only happens when out of memory). */
10491 s
= alist_name(&((aentry_T
*)gap
->ga_data
)[i
]);
10496 (void)vim_FullName(s
, buf
, MAXPATHL
, FALSE
);
10499 if (fputs(" ", fd
) < 0 || ses_put_fname(fd
, s
, flagp
) == FAIL
)
10503 return put_eol(fd
);
10507 * Write a buffer name to the session file.
10508 * Also ends the line.
10509 * Returns FAIL if writing fails.
10512 ses_fname(fd
, buf
, flagp
)
10519 /* Use the short file name if the current directory is known at the time
10520 * the session file will be sourced.
10521 * Don't do this for ":mkview", we don't know the current directory.
10522 * Don't do this after ":lcd", we don't keep track of what the current
10524 if (buf
->b_sfname
!= NULL
10525 && flagp
== &ssop_flags
10526 && (ssop_flags
& (SSOP_CURDIR
| SSOP_SESDIR
))
10528 name
= buf
->b_sfname
;
10530 name
= buf
->b_ffname
;
10531 if (ses_put_fname(fd
, name
, flagp
) == FAIL
|| put_eol(fd
) == FAIL
)
10537 * Write a file name to the session file.
10538 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10540 * Returns FAIL if writing fails.
10543 ses_put_fname(fd
, name
, flagp
)
10552 sname
= home_replace_save(NULL
, name
);
10555 while (*name
!= NUL
)
10561 if (has_mbyte
&& (l
= (*mb_ptr2len
)(name
)) > 1)
10563 /* copy a multibyte char */
10566 if (putc(*name
, fd
) != *name
)
10575 if (c
== '\\' && (*flagp
& SSOP_SLASH
))
10576 /* change a backslash to a forward slash */
10578 else if ((vim_strchr(escape_chars
, c
) != NULL
10579 #ifdef BACKSLASH_IN_FILENAME
10582 ) || c
== '#' || c
== '%')
10584 /* escape a special character with a backslash */
10585 if (putc('\\', fd
) != '\\')
10588 if (putc(c
, fd
) != c
)
10604 fname
= get_view_file(*eap
->arg
);
10607 do_source(fname
, FALSE
, DOSO_NONE
);
10613 * Get the name of the view file for the current buffer.
10624 if (curbuf
->b_ffname
== NULL
)
10629 sname
= home_replace_save(NULL
, curbuf
->b_ffname
);
10634 * We want a file name without separators, because we're not going to make
10636 * "normal" path separator -> "=+"
10638 * ":" path separator -> "=-"
10640 for (p
= sname
; *p
; ++p
)
10641 if (*p
== '=' || vim_ispathsep(*p
))
10643 retval
= alloc((unsigned)(STRLEN(sname
) + len
+ STRLEN(p_vdir
) + 9));
10644 if (retval
!= NULL
)
10646 STRCPY(retval
, p_vdir
);
10647 add_pathsep(retval
);
10648 s
= retval
+ STRLEN(retval
);
10649 for (p
= sname
; *p
; ++p
)
10656 else if (vim_ispathsep(*p
))
10659 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
10679 #endif /* FEAT_SESSION */
10682 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10683 * Return FAIL for a write error.
10692 # ifdef MKSESSION_NL
10695 (putc('\r', fd
) < 0)) ||
10697 (putc('\n', fd
) < 0))
10703 * Write a line to "fd".
10704 * Return FAIL for a write error.
10711 if (fputs(s
, fd
) < 0 || put_eol(fd
) == FAIL
)
10716 #ifdef FEAT_VIMINFO
10718 * ":rviminfo" and ":wviminfo".
10724 char_u
*save_viminfo
;
10726 save_viminfo
= p_viminfo
;
10727 if (*p_viminfo
== NUL
)
10728 p_viminfo
= (char_u
*)"'100";
10729 if (eap
->cmdidx
== CMD_rviminfo
)
10731 if (read_viminfo(eap
->arg
, VIF_WANT_INFO
| VIF_WANT_MARKS
10732 | (eap
->forceit
? VIF_FORCEIT
: 0)) == FAIL
)
10733 EMSG(_("E195: Cannot open viminfo file for reading"));
10736 write_viminfo(eap
->arg
, eap
->forceit
);
10737 p_viminfo
= save_viminfo
;
10741 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
10743 * Make a dialog message in "buff[IOSIZE]".
10744 * "format" must contain "%s".
10747 dialog_msg(buff
, format
, fname
)
10753 fname
= (char_u
*)_("Untitled");
10754 vim_snprintf((char *)buff
, IOSIZE
, format
, fname
);
10759 * ":behave {mswin,xterm}"
10765 if (STRCMP(eap
->arg
, "mswin") == 0)
10767 set_option_value((char_u
*)"selection", 0L, (char_u
*)"exclusive", 0);
10768 set_option_value((char_u
*)"selectmode", 0L, (char_u
*)"mouse,key", 0);
10769 set_option_value((char_u
*)"mousemodel", 0L, (char_u
*)"popup", 0);
10770 set_option_value((char_u
*)"keymodel", 0L,
10771 (char_u
*)"startsel,stopsel", 0);
10773 else if (STRCMP(eap
->arg
, "xterm") == 0)
10775 set_option_value((char_u
*)"selection", 0L, (char_u
*)"inclusive", 0);
10776 set_option_value((char_u
*)"selectmode", 0L, (char_u
*)"", 0);
10777 set_option_value((char_u
*)"mousemodel", 0L, (char_u
*)"extend", 0);
10778 set_option_value((char_u
*)"keymodel", 0L, (char_u
*)"", 0);
10781 EMSG2(_(e_invarg2
), eap
->arg
);
10784 #ifdef FEAT_AUTOCMD
10785 static int filetype_detect
= FALSE
;
10786 static int filetype_plugin
= FALSE
;
10787 static int filetype_indent
= FALSE
;
10790 * ":filetype [plugin] [indent] {on,off,detect}"
10791 * on: Load the filetype.vim file to install autocommands for file types.
10792 * off: Load the ftoff.vim file to remove all autocommands for file types.
10793 * plugin on: load filetype.vim and ftplugin.vim
10794 * plugin off: load ftplugof.vim
10795 * indent on: load filetype.vim and indent.vim
10796 * indent off: load indoff.vim
10802 char_u
*arg
= eap
->arg
;
10803 int plugin
= FALSE
;
10804 int indent
= FALSE
;
10806 if (*eap
->arg
== NUL
)
10808 /* Print current status. */
10809 smsg((char_u
*)"filetype detection:%s plugin:%s indent:%s",
10810 filetype_detect
? "ON" : "OFF",
10811 filetype_plugin
? (filetype_detect
? "ON" : "(on)") : "OFF",
10812 filetype_indent
? (filetype_detect
? "ON" : "(on)") : "OFF");
10816 /* Accept "plugin" and "indent" in any order. */
10819 if (STRNCMP(arg
, "plugin", 6) == 0)
10822 arg
= skipwhite(arg
+ 6);
10825 if (STRNCMP(arg
, "indent", 6) == 0)
10828 arg
= skipwhite(arg
+ 6);
10833 if (STRCMP(arg
, "on") == 0 || STRCMP(arg
, "detect") == 0)
10835 if (*arg
== 'o' || !filetype_detect
)
10837 source_runtime((char_u
*)FILETYPE_FILE
, TRUE
);
10838 filetype_detect
= TRUE
;
10841 source_runtime((char_u
*)FTPLUGIN_FILE
, TRUE
);
10842 filetype_plugin
= TRUE
;
10846 source_runtime((char_u
*)INDENT_FILE
, TRUE
);
10847 filetype_indent
= TRUE
;
10852 (void)do_doautocmd((char_u
*)"filetypedetect BufRead", TRUE
);
10856 else if (STRCMP(arg
, "off") == 0)
10858 if (plugin
|| indent
)
10862 source_runtime((char_u
*)FTPLUGOF_FILE
, TRUE
);
10863 filetype_plugin
= FALSE
;
10867 source_runtime((char_u
*)INDOFF_FILE
, TRUE
);
10868 filetype_indent
= FALSE
;
10873 source_runtime((char_u
*)FTOFF_FILE
, TRUE
);
10874 filetype_detect
= FALSE
;
10878 EMSG2(_(e_invarg2
), arg
);
10882 * ":setfiletype {name}"
10885 ex_setfiletype(eap
)
10889 set_option_value((char_u
*)"filetype", 0L, eap
->arg
, OPT_LOCAL
);
10898 #ifdef FEAT_DIGRAPHS
10899 if (*eap
->arg
!= NUL
)
10900 putdigraph(eap
->arg
);
10904 EMSG(_("E196: No digraphs in this version"));
10914 if (eap
->cmdidx
== CMD_setlocal
)
10916 else if (eap
->cmdidx
== CMD_setglobal
)
10917 flags
= OPT_GLOBAL
;
10918 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10919 if (cmdmod
.browse
&& flags
== 0)
10923 (void)do_set(eap
->arg
, flags
);
10926 #ifdef FEAT_SEARCH_EXTRA
10935 no_hlsearch
= TRUE
;
10936 redraw_all_later(SOME_VALID
);
10940 * ":[N]match {group} {pattern}"
10941 * Sets nextcmd to the start of the next command, if any. Also called when
10942 * skipping commands to find the next command.
10954 if (eap
->line2
<= 3)
10962 /* First clear any old pattern. */
10964 match_delete(curwin
, id
, FALSE
);
10966 if (ends_excmd(*eap
->arg
))
10968 else if ((STRNICMP(eap
->arg
, "none", 4) == 0
10969 && (vim_iswhite(eap
->arg
[4]) || ends_excmd(eap
->arg
[4]))))
10970 end
= eap
->arg
+ 4;
10973 p
= skiptowhite(eap
->arg
);
10975 g
= vim_strnsave(eap
->arg
, (int)(p
- eap
->arg
));
10979 /* There must be two arguments. */
10980 EMSG2(_(e_invarg2
), eap
->arg
);
10983 end
= skip_regexp(p
+ 1, *p
, TRUE
, NULL
);
10986 if (*end
!= NUL
&& !ends_excmd(*skipwhite(end
+ 1)))
10988 eap
->errmsg
= e_trailing
;
10993 EMSG2(_(e_invarg2
), p
);
10999 match_add(curwin
, g
, p
+ 1, 10, id
);
11004 eap
->nextcmd
= find_nextcmd(end
);
11010 * ":X": Get crypt key
11017 (void)get_crypt_key(TRUE
, TRUE
);
11021 #ifdef FEAT_FOLDING
11026 if (foldManualAllowed(TRUE
))
11027 foldCreate(eap
->line1
, eap
->line2
);
11034 opFoldRange(eap
->line1
, eap
->line2
, eap
->cmdidx
== CMD_foldopen
,
11035 eap
->forceit
, FALSE
);
11044 /* First set the marks for all lines closed/open. */
11045 for (lnum
= eap
->line1
; lnum
<= eap
->line2
; ++lnum
)
11046 if (hasFolding(lnum
, NULL
, NULL
) == (eap
->cmdidx
== CMD_folddoclosed
))
11047 ml_setmarked(lnum
);
11049 /* Execute the command on the marked lines. */
11050 global_exe(eap
->arg
);
11051 ml_clearmarked(); /* clear rest of the marks */