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".
1582 getline_equal(fgetline
, cookie
, func
)
1583 char_u
*(*fgetline
) __ARGS((int, void *, int));
1584 void *cookie UNUSED
; /* argument for fgetline() */
1585 char_u
*(*func
) __ARGS((int, void *, int));
1588 char_u
*(*gp
) __ARGS((int, void *, int));
1589 struct loop_cookie
*cp
;
1591 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1592 * function that's originally used to obtain the lines. This may be
1593 * nested several levels. */
1595 cp
= (struct loop_cookie
*)cookie
;
1596 while (gp
== get_loop_line
)
1603 return fgetline
== func
;
1607 #if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1609 * If "fgetline" is get_loop_line(), return the cookie used by the original
1610 * getline function. Otherwise return "cookie".
1613 getline_cookie(fgetline
, cookie
)
1614 char_u
*(*fgetline
) __ARGS((int, void *, int)) UNUSED
;
1615 void *cookie
; /* argument for fgetline() */
1618 char_u
*(*gp
) __ARGS((int, void *, int));
1619 struct loop_cookie
*cp
;
1621 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
1622 * cookie that's originally used to obtain the lines. This may be nested
1623 * several levels. */
1625 cp
= (struct loop_cookie
*)cookie
;
1626 while (gp
== get_loop_line
)
1639 * Execute one Ex command.
1641 * If 'sourcing' is TRUE, the command will be included in the error message.
1643 * 1. skip comment lines and leading space
1644 * 2. handle command modifiers
1647 * 5. parse arguments
1648 * 6. switch on command name
1650 * Note: "fgetline" can be NULL.
1652 * This function may be called recursively!
1654 #if (_MSC_VER == 1200)
1656 * Avoid optimisation bug in VC++ version 6.0
1658 #pragma optimize( "g", off )
1661 do_one_cmd(cmdlinep
, sourcing
,
1669 struct condstack
*cstack
;
1671 char_u
*(*fgetline
) __ARGS((int, void *, int));
1672 void *cookie
; /* argument for fgetline() */
1677 char_u
*errormsg
= NULL
; /* error message */
1678 exarg_T ea
; /* Ex command arguments */
1679 long verbose_save
= -1;
1680 int save_msg_scroll
= 0;
1682 int did_esilent
= 0;
1684 int did_sandbox
= FALSE
;
1686 cmdmod_T save_cmdmod
;
1687 int ni
; /* set when Not Implemented */
1689 vim_memset(&ea
, 0, sizeof(ea
));
1696 /* when not editing the last file :q has to be typed twice */
1699 /* avoid that a function call in 'statusline' does this */
1700 && !getline_equal(fgetline
, cookie
, get_func_line
)
1706 * Reset browse, confirm, etc.. They are restored when returning, for
1709 save_cmdmod
= cmdmod
;
1710 vim_memset(&cmdmod
, 0, sizeof(cmdmod
));
1712 /* "#!anything" is handled like a comment. */
1713 if ((*cmdlinep
)[0] == '#' && (*cmdlinep
)[1] == '!')
1717 * Repeat until no more command modifiers are found.
1723 * 1. skip comment lines and leading white space and colons
1725 while (*ea
.cmd
== ' ' || *ea
.cmd
== '\t' || *ea
.cmd
== ':')
1728 /* in ex mode, an empty line works like :+ */
1729 if (*ea
.cmd
== NUL
&& exmode_active
1730 && (getline_equal(fgetline
, cookie
, getexmodeline
)
1731 || getline_equal(fgetline
, cookie
, getexline
))
1732 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
1734 ea
.cmd
= (char_u
*)"+";
1735 ex_pressedreturn
= TRUE
;
1738 /* ignore comment and empty lines */
1743 ex_pressedreturn
= TRUE
;
1748 * 2. handle command modifiers.
1751 if (VIM_ISDIGIT(*ea
.cmd
))
1752 p
= skipwhite(skipdigits(ea
.cmd
));
1755 /* When adding an entry, also modify cmd_exists(). */
1756 case 'a': if (!checkforcmd(&ea
.cmd
, "aboveleft", 3))
1759 cmdmod
.split
|= WSP_ABOVE
;
1763 case 'b': if (checkforcmd(&ea
.cmd
, "belowright", 3))
1766 cmdmod
.split
|= WSP_BELOW
;
1770 if (checkforcmd(&ea
.cmd
, "browse", 3))
1772 #ifdef FEAT_BROWSE_CMD
1773 cmdmod
.browse
= TRUE
;
1777 if (!checkforcmd(&ea
.cmd
, "botright", 2))
1780 cmdmod
.split
|= WSP_BOT
;
1784 case 'c': if (!checkforcmd(&ea
.cmd
, "confirm", 4))
1786 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1787 cmdmod
.confirm
= TRUE
;
1791 case 'k': if (checkforcmd(&ea
.cmd
, "keepmarks", 3))
1793 cmdmod
.keepmarks
= TRUE
;
1796 if (checkforcmd(&ea
.cmd
, "keepalt", 5))
1798 cmdmod
.keepalt
= TRUE
;
1801 if (!checkforcmd(&ea
.cmd
, "keepjumps", 5))
1803 cmdmod
.keepjumps
= TRUE
;
1806 /* ":hide" and ":hide | cmd" are not modifiers */
1807 case 'h': if (p
!= ea
.cmd
|| !checkforcmd(&p
, "hide", 3)
1808 || *p
== NUL
|| ends_excmd(*p
))
1814 case 'l': if (checkforcmd(&ea
.cmd
, "lockmarks", 3))
1816 cmdmod
.lockmarks
= TRUE
;
1820 if (!checkforcmd(&ea
.cmd
, "leftabove", 5))
1823 cmdmod
.split
|= WSP_ABOVE
;
1827 case 'n': if (!checkforcmd(&ea
.cmd
, "noautocmd", 3))
1830 if (cmdmod
.save_ei
== NULL
)
1832 /* Set 'eventignore' to "all". Restore the
1833 * existing option value later. */
1834 cmdmod
.save_ei
= vim_strsave(p_ei
);
1835 set_string_option_direct((char_u
*)"ei", -1,
1836 (char_u
*)"all", OPT_FREE
, SID_NONE
);
1841 case 'r': if (!checkforcmd(&ea
.cmd
, "rightbelow", 6))
1844 cmdmod
.split
|= WSP_BELOW
;
1848 case 's': if (checkforcmd(&ea
.cmd
, "sandbox", 3))
1857 if (!checkforcmd(&ea
.cmd
, "silent", 3))
1861 save_msg_scroll
= msg_scroll
;
1862 if (*ea
.cmd
== '!' && !vim_iswhite(ea
.cmd
[-1]))
1864 /* ":silent!", but not "silent !cmd" */
1865 ea
.cmd
= skipwhite(ea
.cmd
+ 1);
1871 case 't': if (checkforcmd(&p
, "tab", 3))
1874 if (vim_isdigit(*ea
.cmd
))
1875 cmdmod
.tab
= atoi((char *)ea
.cmd
) + 1;
1877 cmdmod
.tab
= tabpage_index(curtab
) + 1;
1882 if (!checkforcmd(&ea
.cmd
, "topleft", 2))
1885 cmdmod
.split
|= WSP_TOP
;
1889 case 'v': if (checkforcmd(&ea
.cmd
, "vertical", 4))
1891 #ifdef FEAT_VERTSPLIT
1892 cmdmod
.split
|= WSP_VERT
;
1896 if (!checkforcmd(&p
, "verbose", 4))
1898 if (verbose_save
< 0)
1899 verbose_save
= p_verbose
;
1900 if (vim_isdigit(*ea
.cmd
))
1901 p_verbose
= atoi((char *)ea
.cmd
);
1911 ea
.skip
= did_emsg
|| got_int
|| did_throw
|| (cstack
->cs_idx
>= 0
1912 && !(cstack
->cs_flags
[cstack
->cs_idx
] & CSF_ACTIVE
));
1914 ea
.skip
= (if_level
> 0);
1918 # ifdef FEAT_PROFILE
1919 /* Count this line for profiling if ea.skip is FALSE. */
1920 if (do_profiling
== PROF_YES
&& !ea
.skip
)
1922 if (getline_equal(fgetline
, cookie
, get_func_line
))
1923 func_line_exec(getline_cookie(fgetline
, cookie
));
1924 else if (getline_equal(fgetline
, cookie
, getsourceline
))
1929 /* May go to debug mode. If this happens and the ">quit" debug command is
1930 * used, throw an interrupt exception and skip the next command. */
1931 dbg_check_breakpoint(&ea
);
1932 if (!ea
.skip
&& got_int
)
1935 (void)do_intthrow(cstack
);
1940 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1946 * 'x [+-NUM] (where x denotes a currently defined mark)
1951 * The ea.cmd pointer is updated to point to the first character following the
1952 * range spec. If an initial address is found, but no second, the upper bound
1953 * is equal to the lower.
1956 /* repeat for all ',' or ';' separated addresses */
1959 ea
.line1
= ea
.line2
;
1960 ea
.line2
= curwin
->w_cursor
.lnum
; /* default is current line number */
1961 ea
.cmd
= skipwhite(ea
.cmd
);
1962 lnum
= get_address(&ea
.cmd
, ea
.skip
, ea
.addr_count
== 0);
1963 if (ea
.cmd
== NULL
) /* error detected */
1965 if (lnum
== MAXLNUM
)
1967 if (*ea
.cmd
== '%') /* '%' - all lines */
1971 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
1974 /* '*' - visual area */
1975 else if (*ea
.cmd
== '*' && vim_strchr(p_cpo
, CPO_STAR
) == NULL
)
1982 fp
= getmark('<', FALSE
);
1983 if (check_mark(fp
) == FAIL
)
1985 ea
.line1
= fp
->lnum
;
1986 fp
= getmark('>', FALSE
);
1987 if (check_mark(fp
) == FAIL
)
1989 ea
.line2
= fp
->lnum
;
2001 curwin
->w_cursor
.lnum
= ea
.line2
;
2003 else if (*ea
.cmd
!= ',')
2008 /* One address given: set start and end lines */
2009 if (ea
.addr_count
== 1)
2011 ea
.line1
= ea
.line2
;
2012 /* ... but only implicit: really no address given */
2013 if (lnum
== MAXLNUM
)
2017 /* Don't leave the cursor on an illegal line (caused by ';') */
2018 check_cursor_lnum();
2025 * Skip ':' and any white space
2027 ea
.cmd
= skipwhite(ea
.cmd
);
2028 while (*ea
.cmd
== ':')
2029 ea
.cmd
= skipwhite(ea
.cmd
+ 1);
2032 * If we got a line, but no command, then go to the line.
2033 * If we find a '|' or '\n' we set ea.nextcmd.
2035 if (*ea
.cmd
== NUL
|| *ea
.cmd
== '"' ||
2036 (ea
.nextcmd
= check_nextcmd(ea
.cmd
)) != NULL
)
2039 * strange vi behaviour:
2040 * ":3" jumps to line 3
2041 * ":3|..." prints line 3
2042 * ":|" prints current line
2044 if (ea
.skip
) /* skip this if inside :if */
2046 if (*ea
.cmd
== '|' || (exmode_active
&& ea
.line1
!= ea
.line2
))
2048 ea
.cmdidx
= CMD_print
;
2049 ea
.argt
= RANGE
+COUNT
+TRLBAR
;
2050 if ((errormsg
= invalid_range(&ea
)) == NULL
)
2056 else if (ea
.addr_count
!= 0)
2058 if (ea
.line2
> curbuf
->b_ml
.ml_line_count
)
2060 /* With '-' in 'cpoptions' a line number past the file is an
2061 * error, otherwise put it at the end of the file. */
2062 if (vim_strchr(p_cpo
, CPO_MINUS
) != NULL
)
2065 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2069 errormsg
= (char_u
*)_(e_invrange
);
2073 curwin
->w_cursor
.lnum
= 1;
2075 curwin
->w_cursor
.lnum
= ea
.line2
;
2076 beginline(BL_SOL
| BL_FIX
);
2082 /* Find the command and let "p" point to after it. */
2083 p
= find_command(&ea
, NULL
);
2085 #ifdef FEAT_USR_CMDS
2089 errormsg
= (char_u
*)_("E464: Ambiguous use of user-defined command");
2092 /* Check for wrong commands. */
2093 if (*p
== '!' && ea
.cmd
[1] == 0151 && ea
.cmd
[0] == 78)
2095 errormsg
= uc_fun_cmd();
2099 if (ea
.cmdidx
== CMD_SIZE
)
2103 STRCPY(IObuff
, _("E492: Not an editor command"));
2106 STRCAT(IObuff
, ": ");
2107 STRNCAT(IObuff
, *cmdlinep
, 40);
2115 #ifdef FEAT_USR_CMDS
2116 !USER_CMDIDX(ea
.cmdidx
) &&
2118 (cmdnames
[ea
.cmdidx
].cmd_func
== ex_ni
2119 #ifdef HAVE_EX_SCRIPT_NI
2120 || cmdnames
[ea
.cmdidx
].cmd_func
== ex_script_ni
2126 * When the expression evaluation is disabled, recognize the ":if" and
2127 * ":endif" commands and ignore everything in between it.
2129 if (ea
.cmdidx
== CMD_if
)
2133 if (ea
.cmdidx
== CMD_endif
)
2140 /* forced commands */
2141 if (*p
== '!' && ea
.cmdidx
!= CMD_substitute
2142 && ea
.cmdidx
!= CMD_smagic
&& ea
.cmdidx
!= CMD_snomagic
)
2151 * 5. parse arguments
2153 #ifdef FEAT_USR_CMDS
2154 if (!USER_CMDIDX(ea
.cmdidx
))
2156 ea
.argt
= (long)cmdnames
[(int)ea
.cmdidx
].cmd_argt
;
2161 if (sandbox
!= 0 && !(ea
.argt
& SBOXOK
))
2163 /* Command not allowed in sandbox. */
2164 errormsg
= (char_u
*)_(e_sandbox
);
2168 if (!curbuf
->b_p_ma
&& (ea
.argt
& MODIFY
))
2170 /* Command not allowed in non-'modifiable' buffer */
2171 errormsg
= (char_u
*)_(e_modifiable
);
2175 if (text_locked() && !(ea
.argt
& CMDWIN
)
2176 # ifdef FEAT_USR_CMDS
2177 && !USER_CMDIDX(ea
.cmdidx
)
2181 /* Command not allowed when editing the command line. */
2183 if (cmdwin_type
!= 0)
2184 errormsg
= (char_u
*)_(e_cmdwin
);
2187 errormsg
= (char_u
*)_(e_secure
);
2191 /* Disallow editing another buffer when "curbuf_lock" is set.
2192 * Do allow ":edit" (check for argument later).
2193 * Do allow ":checktime" (it's postponed). */
2194 if (!(ea
.argt
& CMDWIN
)
2195 && ea
.cmdidx
!= CMD_edit
2196 && ea
.cmdidx
!= CMD_checktime
2197 # ifdef FEAT_USR_CMDS
2198 && !USER_CMDIDX(ea
.cmdidx
)
2204 if (!ni
&& !(ea
.argt
& RANGE
) && ea
.addr_count
> 0)
2206 /* no range allowed */
2207 errormsg
= (char_u
*)_(e_norange
);
2212 if (!ni
&& !(ea
.argt
& BANG
) && ea
.forceit
) /* no <!> allowed */
2214 errormsg
= (char_u
*)_(e_nobang
);
2219 * Don't complain about the range if it is not used
2220 * (could happen if line_count is accidentally set to 0).
2222 if (!ea
.skip
&& !ni
)
2225 * If the range is backwards, ask for confirmation and, if given, swap
2226 * ea.line1 & ea.line2 so it's forwards again.
2227 * When global command is busy, don't ask, will fail below.
2229 if (!global_busy
&& ea
.line1
> ea
.line2
)
2231 if (msg_silent
== 0)
2233 if (sourcing
|| exmode_active
)
2235 errormsg
= (char_u
*)_("E493: Backwards range given");
2238 if (ask_yesno((char_u
*)
2239 _("Backwards range given, OK to swap"), FALSE
) != 'y')
2243 ea
.line1
= ea
.line2
;
2246 if ((errormsg
= invalid_range(&ea
)) != NULL
)
2250 if ((ea
.argt
& NOTADR
) && ea
.addr_count
== 0) /* default is 1, not cursor */
2256 if (((ea
.argt
& WHOLEFOLD
) || ea
.addr_count
>= 2) && !global_busy
)
2258 /* Put the first line at the start of a closed fold, put the last line
2259 * at the end of a closed fold. */
2260 (void)hasFolding(ea
.line1
, &ea
.line1
, NULL
);
2261 (void)hasFolding(ea
.line2
, NULL
, &ea
.line2
);
2265 #ifdef FEAT_QUICKFIX
2267 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
2268 * option here, so things like % get expanded.
2270 p
= replace_makeprg(&ea
, p
, cmdlinep
);
2276 * Skip to start of argument.
2277 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2279 if (ea
.cmdidx
== CMD_bang
)
2282 ea
.arg
= skipwhite(p
);
2285 * Check for "++opt=val" argument.
2286 * Must be first, allow ":w ++enc=utf8 !cmd"
2288 if (ea
.argt
& ARGOPT
)
2289 while (ea
.arg
[0] == '+' && ea
.arg
[1] == '+')
2290 if (getargopt(&ea
) == FAIL
&& !ni
)
2292 errormsg
= (char_u
*)_(e_invarg
);
2296 if (ea
.cmdidx
== CMD_write
|| ea
.cmdidx
== CMD_update
)
2298 if (*ea
.arg
== '>') /* append */
2300 if (*++ea
.arg
!= '>') /* typed wrong */
2302 errormsg
= (char_u
*)_("E494: Use w or w>>");
2305 ea
.arg
= skipwhite(ea
.arg
+ 1);
2308 else if (*ea
.arg
== '!' && ea
.cmdidx
== CMD_write
) /* :w !filter */
2311 ea
.usefilter
= TRUE
;
2315 if (ea
.cmdidx
== CMD_read
)
2319 ea
.usefilter
= TRUE
; /* :r! filter if ea.forceit */
2322 else if (*ea
.arg
== '!') /* :r !filter */
2325 ea
.usefilter
= TRUE
;
2329 if (ea
.cmdidx
== CMD_lshift
|| ea
.cmdidx
== CMD_rshift
)
2332 while (*ea
.arg
== *ea
.cmd
) /* count number of '>' or '<' */
2337 ea
.arg
= skipwhite(ea
.arg
);
2341 * Check for "+command" argument, before checking for next command.
2342 * Don't do this for ":read !cmd" and ":write !cmd".
2344 if ((ea
.argt
& EDITCMD
) && !ea
.usefilter
)
2345 ea
.do_ecmd_cmd
= getargcmd(&ea
.arg
);
2348 * Check for '|' to separate commands and '"' to start comments.
2349 * Don't do this for ":read !cmd" and ":write !cmd".
2351 if ((ea
.argt
& TRLBAR
) && !ea
.usefilter
)
2352 separate_nextcmd(&ea
);
2355 * Check for <newline> to end a shell command.
2356 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2359 else if (ea
.cmdidx
== CMD_bang
2360 || ea
.cmdidx
== CMD_global
2361 || ea
.cmdidx
== CMD_vglobal
2364 for (p
= ea
.arg
; *p
; ++p
)
2366 /* Remove one backslash before a newline, so that it's possible to
2367 * pass a newline to the shell and also a newline that is preceded
2368 * with a backslash. This makes it impossible to end a shell
2369 * command in a backslash, but that doesn't appear useful.
2370 * Halving the number of backslashes is incompatible with previous
2372 if (*p
== '\\' && p
[1] == '\n')
2374 else if (*p
== '\n')
2383 if ((ea
.argt
& DFLALL
) && ea
.addr_count
== 0)
2386 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2389 /* accept numbered register only when no count allowed (:put) */
2390 if ( (ea
.argt
& REGSTR
)
2392 #ifdef FEAT_USR_CMDS
2393 && valid_yank_reg(*ea
.arg
, (ea
.cmdidx
!= CMD_put
2394 && USER_CMDIDX(ea
.cmdidx
)))
2395 /* Do not allow register = for user commands */
2396 && (!USER_CMDIDX(ea
.cmdidx
) || *ea
.arg
!= '=')
2398 && valid_yank_reg(*ea
.arg
, ea
.cmdidx
!= CMD_put
)
2400 && !((ea
.argt
& COUNT
) && VIM_ISDIGIT(*ea
.arg
)))
2402 ea
.regname
= *ea
.arg
++;
2404 /* for '=' register: accept the rest of the line as an expression */
2405 if (ea
.arg
[-1] == '=' && ea
.arg
[0] != NUL
)
2407 set_expr_line(vim_strsave(ea
.arg
));
2408 ea
.arg
+= STRLEN(ea
.arg
);
2411 ea
.arg
= skipwhite(ea
.arg
);
2415 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2416 * count, it's a buffer name.
2418 if ((ea
.argt
& COUNT
) && VIM_ISDIGIT(*ea
.arg
)
2419 && (!(ea
.argt
& BUFNAME
) || *(p
= skipdigits(ea
.arg
)) == NUL
2420 || vim_iswhite(*p
)))
2422 n
= getdigits(&ea
.arg
);
2423 ea
.arg
= skipwhite(ea
.arg
);
2424 if (n
<= 0 && !ni
&& (ea
.argt
& ZEROR
) == 0)
2426 errormsg
= (char_u
*)_(e_zerocount
);
2429 if (ea
.argt
& NOTADR
) /* e.g. :buffer 2, :sleep 3 */
2432 if (ea
.addr_count
== 0)
2437 ea
.line1
= ea
.line2
;
2441 * Be vi compatible: no error message for out of range.
2443 if (ea
.line2
> curbuf
->b_ml
.ml_line_count
)
2444 ea
.line2
= curbuf
->b_ml
.ml_line_count
;
2449 * Check for flags: 'l', 'p' and '#'.
2451 if (ea
.argt
& EXFLAGS
)
2453 /* no arguments allowed */
2454 if (!ni
&& !(ea
.argt
& EXTRA
) && *ea
.arg
!= NUL
2455 && *ea
.arg
!= '"' && (*ea
.arg
!= '|' || (ea
.argt
& TRLBAR
) == 0))
2457 errormsg
= (char_u
*)_(e_trailing
);
2461 if (!ni
&& (ea
.argt
& NEEDARG
) && *ea
.arg
== NUL
)
2463 errormsg
= (char_u
*)_(e_argreq
);
2469 * Skip the command when it's not going to be executed.
2470 * The commands like :if, :endif, etc. always need to be executed.
2471 * Also make an exception for commands that handle a trailing command
2478 /* commands that need evaluation */
2494 /* Commands that handle '|' themselves. Check: A command should
2495 * either have the TRLBAR flag, appear in this list or appear in
2496 * the list at ":help :bar". */
2499 case CMD_belowright
:
2504 case CMD_delfunction
:
2532 case CMD_rightbelow
:
2537 case CMD_substitute
:
2549 default: goto doend
;
2554 if (ea
.argt
& XFILE
)
2556 if (expand_filename(&ea
, cmdlinep
, &errormsg
) == FAIL
)
2560 #ifdef FEAT_LISTCMDS
2562 * Accept buffer name. Cannot be used at the same time with a buffer
2563 * number. Don't do this for a user command.
2565 if ((ea
.argt
& BUFNAME
) && *ea
.arg
!= NUL
&& ea
.addr_count
== 0
2566 # ifdef FEAT_USR_CMDS
2567 && !USER_CMDIDX(ea
.cmdidx
)
2572 * :bdelete, :bwipeout and :bunload take several arguments, separated
2573 * by spaces: find next space (skipping over escaped characters).
2574 * The others take one argument: ignore trailing spaces.
2576 if (ea
.cmdidx
== CMD_bdelete
|| ea
.cmdidx
== CMD_bwipeout
2577 || ea
.cmdidx
== CMD_bunload
)
2578 p
= skiptowhite_esc(ea
.arg
);
2581 p
= ea
.arg
+ STRLEN(ea
.arg
);
2582 while (p
> ea
.arg
&& vim_iswhite(p
[-1]))
2585 ea
.line2
= buflist_findpat(ea
.arg
, p
, (ea
.argt
& BUFUNL
) != 0, FALSE
);
2586 if (ea
.line2
< 0) /* failed */
2589 ea
.arg
= skipwhite(p
);
2594 * 6. switch on command name
2596 * The "ea" structure holds the arguments that can be used.
2598 ea
.cmdlinep
= cmdlinep
;
2599 ea
.getline
= fgetline
;
2605 #ifdef FEAT_USR_CMDS
2606 if (USER_CMDIDX(ea
.cmdidx
))
2609 * Execute a user-defined command.
2617 * Call the function to execute the command.
2620 (cmdnames
[ea
.cmdidx
].cmd_func
)(&ea
);
2621 if (ea
.errmsg
!= NULL
)
2622 errormsg
= (char_u
*)_(ea
.errmsg
);
2627 * If the command just executed called do_cmdline(), any throw or ":return"
2628 * or ":finish" encountered there must also check the cstack of the still
2629 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2630 * exception, or reanimate a returned function or finished script file and
2631 * return or finish it again.
2635 else if (check_cstack
)
2637 if (source_finished(fgetline
, cookie
))
2638 do_finish(&ea
, TRUE
);
2639 else if (getline_equal(fgetline
, cookie
, get_func_line
)
2640 && current_func_returned())
2641 do_return(&ea
, TRUE
, FALSE
, NULL
);
2643 need_rethrow
= check_cstack
= FALSE
;
2647 if (curwin
->w_cursor
.lnum
== 0) /* can happen with zero line number */
2648 curwin
->w_cursor
.lnum
= 1;
2650 if (errormsg
!= NULL
&& *errormsg
!= NUL
&& !did_emsg
)
2654 if (errormsg
!= IObuff
)
2656 STRCPY(IObuff
, errormsg
);
2659 STRCAT(errormsg
, ": ");
2660 STRNCAT(errormsg
, *cmdlinep
, IOSIZE
- STRLEN(IObuff
) - 1);
2666 (ea
.cmdidx
!= CMD_SIZE
2667 # ifdef FEAT_USR_CMDS
2668 && !USER_CMDIDX(ea
.cmdidx
)
2670 ) ? cmdnames
[(int)ea
.cmdidx
].cmd_name
: (char_u
*)NULL
);
2673 if (verbose_save
>= 0)
2674 p_verbose
= verbose_save
;
2676 if (cmdmod
.save_ei
!= NULL
)
2678 /* Restore 'eventignore' to the value before ":noautocmd". */
2679 set_string_option_direct((char_u
*)"ei", -1, cmdmod
.save_ei
,
2680 OPT_FREE
, SID_NONE
);
2681 free_string_option(cmdmod
.save_ei
);
2685 cmdmod
= save_cmdmod
;
2689 /* messages could be enabled for a serious error, need to check if the
2690 * counters don't become negative */
2691 msg_silent
-= did_silent
;
2694 emsg_silent
-= did_esilent
;
2695 if (emsg_silent
< 0)
2697 /* Restore msg_scroll, it's set by file I/O commands, even when no
2698 * message is actually displayed. */
2699 msg_scroll
= save_msg_scroll
;
2701 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
2702 * somewhere in the line. Put it back in the first column. */
2712 if (ea
.nextcmd
&& *ea
.nextcmd
== NUL
) /* not really a next command */
2721 #if (_MSC_VER == 1200)
2722 #pragma optimize( "", on )
2726 * Check for an Ex command with optional tail.
2727 * If there is a match advance "pp" to the argument and return TRUE.
2730 checkforcmd(pp
, cmd
, len
)
2731 char_u
**pp
; /* start of command */
2732 char *cmd
; /* name of command */
2733 int len
; /* required length */
2737 for (i
= 0; cmd
[i
] != NUL
; ++i
)
2738 if (((char_u
*)cmd
)[i
] != (*pp
)[i
])
2740 if (i
>= len
&& !isalpha((*pp
)[i
]))
2742 *pp
= skipwhite(*pp
+ i
);
2749 * Find an Ex command by its name, either built-in or user.
2750 * Start of the name can be found at eap->cmd.
2751 * Returns pointer to char after the command name.
2752 * "full" is set to TRUE if the whole command name matched.
2753 * Returns NULL for an ambiguous user command.
2756 find_command(eap
, full
)
2765 * Isolate the command and search for it in the command table.
2767 * - the 'k' command can directly be followed by any character.
2768 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2769 * but :sre[wind] is another command, as are :scrip[tnames],
2770 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
2771 * - the "d" command can directly be followed by 'l' or 'p' flag.
2776 eap
->cmdidx
= CMD_k
;
2779 else if (p
[0] == 's'
2780 && ((p
[1] == 'c' && p
[2] != 's' && p
[2] != 'r'
2781 && p
[3] != 'i' && p
[4] != 'p')
2783 || (p
[1] == 'i' && p
[2] != 'm' && p
[2] != 'l' && p
[2] != 'g')
2785 || (p
[1] == 'r' && p
[2] != 'e')))
2787 eap
->cmdidx
= CMD_substitute
;
2792 while (ASCII_ISALPHA(*p
))
2794 /* check for non-alpha command */
2795 if (p
== eap
->cmd
&& vim_strchr((char_u
*)"@*!=><&~#", *p
) != NULL
)
2797 len
= (int)(p
- eap
->cmd
);
2798 if (*eap
->cmd
== 'd' && (p
[-1] == 'l' || p
[-1] == 'p'))
2800 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2801 * :delete with the 'l' flag. Same for 'p'. */
2802 for (i
= 0; i
< len
; ++i
)
2803 if (eap
->cmd
[i
] != ((char_u
*)"delete")[i
])
2809 eap
->flags
|= EXFLAG_LIST
;
2811 eap
->flags
|= EXFLAG_PRINT
;
2815 if (ASCII_ISLOWER(*eap
->cmd
))
2816 eap
->cmdidx
= cmdidxs
[CharOrdLow(*eap
->cmd
)];
2818 eap
->cmdidx
= cmdidxs
[26];
2820 for ( ; (int)eap
->cmdidx
< (int)CMD_SIZE
;
2821 eap
->cmdidx
= (cmdidx_T
)((int)eap
->cmdidx
+ 1))
2822 if (STRNCMP(cmdnames
[(int)eap
->cmdidx
].cmd_name
, (char *)eap
->cmd
,
2827 && cmdnames
[(int)eap
->cmdidx
].cmd_name
[len
] == NUL
)
2833 #ifdef FEAT_USR_CMDS
2834 /* Look for a user defined command as a last resort */
2835 if (eap
->cmdidx
== CMD_SIZE
&& *eap
->cmd
>= 'A' && *eap
->cmd
<= 'Z')
2837 /* User defined commands may contain digits. */
2838 while (ASCII_ISALNUM(*p
))
2840 p
= find_ucmd(eap
, p
, full
, NULL
, NULL
);
2844 eap
->cmdidx
= CMD_SIZE
;
2850 #ifdef FEAT_USR_CMDS
2852 * Search for a user command that matches "eap->cmd".
2853 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2854 * Return a pointer to just after the command.
2855 * Return NULL if there is no matching command.
2858 find_ucmd(eap
, p
, full
, xp
, compl)
2860 char_u
*p
; /* end of the command (possibly including count) */
2861 int *full
; /* set to TRUE for a full match */
2862 expand_T
*xp
; /* used for completion, NULL otherwise */
2863 int *compl; /* completion flags or NULL */
2865 int len
= (int)(p
- eap
->cmd
);
2866 int j
, k
, matchlen
= 0;
2869 int possible
= FALSE
;
2870 char_u
*cp
, *np
; /* Point into typed cmd and test name */
2872 int amb_local
= FALSE
; /* Found ambiguous buffer-local command,
2873 only full match global is accepted. */
2876 * Look for buffer-local user commands first, then global ones.
2878 gap
= &curbuf
->b_ucmds
;
2881 for (j
= 0; j
< gap
->ga_len
; ++j
)
2883 uc
= USER_CMD_GA(gap
, j
);
2887 while (k
< len
&& *np
!= NUL
&& *cp
++ == *np
++)
2889 if (k
== len
|| (*np
== NUL
&& vim_isdigit(eap
->cmd
[k
])))
2891 /* If finding a second match, the command is ambiguous. But
2892 * not if a buffer-local command wasn't a full match and a
2893 * global command is a full match. */
2894 if (k
== len
&& found
&& *np
!= NUL
)
2901 if (!found
|| (k
== len
&& *np
== NUL
))
2903 /* If we matched up to a digit, then there could
2904 * be another command including the digit that we
2905 * should use instead.
2913 eap
->cmdidx
= CMD_USER
;
2915 eap
->cmdidx
= CMD_USER_BUF
;
2916 eap
->argt
= (long)uc
->uc_argt
;
2919 # ifdef FEAT_CMDL_COMPL
2921 *compl = uc
->uc_compl
;
2925 xp
->xp_arg
= uc
->uc_compl_arg
;
2926 xp
->xp_scriptID
= uc
->uc_scriptID
;
2930 /* Do not search for further abbreviations
2931 * if this is an exact match. */
2933 if (k
== len
&& *np
== NUL
)
2944 /* Stop if we found a full match or searched all. */
2945 if (j
< gap
->ga_len
|| gap
== &ucmds
)
2950 /* Only found ambiguous matches. */
2954 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
2958 /* The match we found may be followed immediately by a number. Move "p"
2959 * back to point to it. */
2960 if (found
|| possible
)
2961 return p
+ (matchlen
- len
);
2966 #if defined(FEAT_EVAL) || defined(PROTO)
2967 static struct cmdmod
2971 int has_count
; /* :123verbose :3tab */
2973 {"aboveleft", 3, FALSE
},
2974 {"belowright", 3, FALSE
},
2975 {"botright", 2, FALSE
},
2976 {"browse", 3, FALSE
},
2977 {"confirm", 4, FALSE
},
2979 {"keepalt", 5, FALSE
},
2980 {"keepjumps", 5, FALSE
},
2981 {"keepmarks", 3, FALSE
},
2982 {"leftabove", 5, FALSE
},
2983 {"lockmarks", 3, FALSE
},
2984 {"noautocmd", 3, FALSE
},
2985 {"rightbelow", 6, FALSE
},
2986 {"sandbox", 3, FALSE
},
2987 {"silent", 3, FALSE
},
2989 {"topleft", 2, FALSE
},
2990 {"verbose", 4, TRUE
},
2991 {"vertical", 4, FALSE
},
2995 * Return length of a command modifier (including optional count).
2996 * Return zero when it's not a modifier.
3005 if (VIM_ISDIGIT(*cmd
))
3006 p
= skipwhite(skipdigits(cmd
));
3007 for (i
= 0; i
< (int)(sizeof(cmdmods
) / sizeof(struct cmdmod
)); ++i
)
3009 for (j
= 0; p
[j
] != NUL
; ++j
)
3010 if (p
[j
] != cmdmods
[i
].name
[j
])
3012 if (!isalpha(p
[j
]) && j
>= cmdmods
[i
].minlen
3013 && (p
== cmd
|| cmdmods
[i
].has_count
))
3014 return j
+ (int)(p
- cmd
);
3020 * Return > 0 if an Ex command "name" exists.
3021 * Return 2 if there is an exact match.
3022 * Return 3 if there is an ambiguous match.
3034 /* Check command modifiers. */
3035 for (i
= 0; i
< (int)(sizeof(cmdmods
) / sizeof(struct cmdmod
)); ++i
)
3037 for (j
= 0; name
[j
] != NUL
; ++j
)
3038 if (name
[j
] != cmdmods
[i
].name
[j
])
3040 if (name
[j
] == NUL
&& j
>= cmdmods
[i
].minlen
)
3041 return (cmdmods
[i
].name
[j
] == NUL
? 2 : 1);
3044 /* Check built-in commands and user defined commands.
3045 * For ":2match" and ":3match" we need to skip the number. */
3046 ea
.cmd
= (*name
== '2' || *name
== '3') ? name
+ 1 : name
;
3047 ea
.cmdidx
= (cmdidx_T
)0;
3048 p
= find_command(&ea
, &full
);
3051 if (vim_isdigit(*name
) && ea
.cmdidx
!= CMD_match
)
3053 if (*skipwhite(p
) != NUL
)
3054 return 0; /* trailing garbage */
3055 return (ea
.cmdidx
== CMD_SIZE
? 0 : (full
? 2 : 1));
3060 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3061 * we don't need/want deleted. Maybe this could be done better if we didn't
3062 * repeat all this stuff. The only problem is that they may not stay
3063 * perfectly compatible with each other, but then the command line syntax
3064 * probably won't change that much -- webb.
3067 set_one_cmd_context(xp
, buff
)
3069 char_u
*buff
; /* buffer for command string */
3075 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3076 int compl = EXPAND_NOTHING
;
3078 #ifdef FEAT_CMDL_COMPL
3081 int forceit
= FALSE
;
3082 int usefilter
= FALSE
; /* filter instead of file name */
3085 xp
->xp_pattern
= buff
;
3086 xp
->xp_context
= EXPAND_COMMANDS
; /* Default until we get past command */
3090 * 2. skip comment lines and leading space, colons or bars
3092 for (cmd
= buff
; vim_strchr((char_u
*)" \t:|", *cmd
) != NULL
; cmd
++)
3094 xp
->xp_pattern
= cmd
;
3098 if (*cmd
== '"') /* ignore comment lines */
3100 xp
->xp_context
= EXPAND_NOTHING
;
3105 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3107 cmd
= skip_range(cmd
, &xp
->xp_context
);
3112 xp
->xp_pattern
= cmd
;
3117 xp
->xp_context
= EXPAND_NOTHING
;
3121 if (*cmd
== '|' || *cmd
== '\n')
3122 return cmd
+ 1; /* There's another command */
3125 * Isolate the command and search for it in the command table.
3127 * - the 'k' command can directly be followed by any character, but
3128 * do accept "keepmarks", "keepalt" and "keepjumps".
3129 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3131 if (*cmd
== 'k' && cmd
[1] != 'e')
3139 while (ASCII_ISALPHA(*p
) || *p
== '*') /* Allow * wild card */
3141 /* check for non-alpha command */
3142 if (p
== cmd
&& vim_strchr((char_u
*)"@*!=><&~#", *p
) != NULL
)
3144 len
= (int)(p
- cmd
);
3148 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
3151 for (ea
.cmdidx
= (cmdidx_T
)0; (int)ea
.cmdidx
< (int)CMD_SIZE
;
3152 ea
.cmdidx
= (cmdidx_T
)((int)ea
.cmdidx
+ 1))
3153 if (STRNCMP(cmdnames
[(int)ea
.cmdidx
].cmd_name
, cmd
, (size_t)len
) == 0)
3156 #ifdef FEAT_USR_CMDS
3157 if (cmd
[0] >= 'A' && cmd
[0] <= 'Z')
3159 while (ASCII_ISALNUM(*p
) || *p
== '*') /* Allow * wild card */
3161 len
= (int)(p
- cmd
);
3167 * If the cursor is touching the command, and it ends in an alpha-numeric
3168 * character, complete the command name.
3170 if (*p
== NUL
&& ASCII_ISALNUM(p
[-1]))
3173 if (ea
.cmdidx
== CMD_SIZE
)
3175 if (*cmd
== 's' && vim_strchr((char_u
*)"cgriI", cmd
[1]) != NULL
)
3177 ea
.cmdidx
= CMD_substitute
;
3180 #ifdef FEAT_USR_CMDS
3181 else if (cmd
[0] >= 'A' && cmd
[0] <= 'Z')
3184 p
= find_ucmd(&ea
, p
, NULL
, xp
,
3185 # if defined(FEAT_CMDL_COMPL)
3192 ea
.cmdidx
= CMD_SIZE
; /* ambiguous user command */
3196 if (ea
.cmdidx
== CMD_SIZE
)
3198 /* Not still touching the command and it was an illegal one */
3199 xp
->xp_context
= EXPAND_UNSUCCESSFUL
;
3203 xp
->xp_context
= EXPAND_NOTHING
; /* Default now that we're past command */
3205 if (*p
== '!') /* forced commands */
3212 * 5. parse arguments
3214 #ifdef FEAT_USR_CMDS
3215 if (!USER_CMDIDX(ea
.cmdidx
))
3217 ea
.argt
= (long)cmdnames
[(int)ea
.cmdidx
].cmd_argt
;
3221 if (ea
.cmdidx
== CMD_write
|| ea
.cmdidx
== CMD_update
)
3223 if (*arg
== '>') /* append */
3227 arg
= skipwhite(arg
);
3229 else if (*arg
== '!' && ea
.cmdidx
== CMD_write
) /* :w !filter */
3236 if (ea
.cmdidx
== CMD_read
)
3238 usefilter
= forceit
; /* :r! filter if forced */
3239 if (*arg
== '!') /* :r !filter */
3246 if (ea
.cmdidx
== CMD_lshift
|| ea
.cmdidx
== CMD_rshift
)
3248 while (*arg
== *cmd
) /* allow any number of '>' or '<' */
3250 arg
= skipwhite(arg
);
3253 /* Does command allow "+command"? */
3254 if ((ea
.argt
& EDITCMD
) && !usefilter
&& *arg
== '+')
3256 /* Check if we're in the +command */
3258 arg
= skip_cmd_arg(arg
, FALSE
);
3260 /* Still touching the command after '+'? */
3264 /* Skip space(s) after +command to get to the real argument */
3265 arg
= skipwhite(arg
);
3269 * Check for '|' to separate commands and '"' to start comments.
3270 * Don't do this for ":read !cmd" and ":write !cmd".
3272 if ((ea
.argt
& TRLBAR
) && !usefilter
)
3275 /* ":redir @" is not the start of a comment */
3276 if (ea
.cmdidx
== CMD_redir
&& p
[0] == '@' && p
[1] == '"')
3285 else if ( (*p
== '"' && !(ea
.argt
& NOTRLCOM
))
3286 || *p
== '|' || *p
== '\n')
3288 if (*(p
- 1) != '\\')
3290 if (*p
== '|' || *p
== '\n')
3292 return NULL
; /* It's a comment */
3299 /* no arguments allowed */
3300 if (!(ea
.argt
& EXTRA
) && *arg
!= NUL
&&
3301 vim_strchr((char_u
*)"|\"", *arg
) == NULL
)
3304 /* Find start of last argument (argument just before cursor): */
3305 p
= buff
+ STRLEN(buff
);
3306 while (p
!= arg
&& *p
!= ' ' && *p
!= TAB
)
3308 if (*p
== ' ' || *p
== TAB
)
3312 if (ea
.argt
& XFILE
)
3315 int in_quote
= FALSE
;
3316 char_u
*bow
= NULL
; /* Beginning of word */
3319 * Allow spaces within back-quotes to count as part of the argument
3322 xp
->xp_pattern
= skipwhite(arg
);
3332 if (c
== '\\' && p
[1] != NUL
)
3341 in_quote
= !in_quote
;
3343 /* An argument can contain just about everything, except
3344 * characters that end the command and white space. */
3345 else if (c
== '|' || c
== '\n' || c
== '"' || (vim_iswhite(c
)
3346 #ifdef SPACE_IN_FILENAME
3347 && (!(ea
.argt
& NOSPC
) || usefilter
)
3351 len
= 0; /* avoid getting stuck when space is in 'isfname' */
3360 if (c
== '`' || vim_isfilec_or_wc(c
))
3364 len
= (*mb_ptr2len
)(p
);
3380 * If we are still inside the quotes, and we passed a space, just
3381 * expand from there.
3383 if (bow
!= NULL
&& in_quote
)
3384 xp
->xp_pattern
= bow
;
3385 xp
->xp_context
= EXPAND_FILES
;
3387 #ifndef BACKSLASH_IN_FILENAME
3388 /* For a shell command more chars need to be escaped. */
3389 if (usefilter
|| ea
.cmdidx
== CMD_bang
)
3391 xp
->xp_shell
= TRUE
;
3393 /* When still after the command name expand executables. */
3394 if (xp
->xp_pattern
== skipwhite(arg
))
3395 xp
->xp_context
= EXPAND_SHELLCMD
;
3399 /* Check for environment variable */
3400 if (*xp
->xp_pattern
== '$'
3401 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3402 || *xp
->xp_pattern
== '%'
3406 for (p
= xp
->xp_pattern
+ 1; *p
!= NUL
; ++p
)
3411 xp
->xp_context
= EXPAND_ENV_VARS
;
3413 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3414 /* Avoid that the assignment uses EXPAND_FILES again. */
3415 if (compl != EXPAND_USER_DEFINED
&& compl != EXPAND_USER_LIST
)
3416 compl = EXPAND_ENV_VARS
;
3423 * 6. switch on command name
3431 if (xp
->xp_context
== EXPAND_FILES
)
3432 xp
->xp_context
= EXPAND_DIRECTORIES
;
3435 xp
->xp_context
= EXPAND_HELP
;
3436 xp
->xp_pattern
= arg
;
3439 /* Command modifiers: return the argument.
3440 * Also for commands with an argument that is a command. */
3443 case CMD_belowright
:
3449 case CMD_folddoclosed
:
3450 case CMD_folddoopen
:
3457 case CMD_rightbelow
:
3467 #ifdef FEAT_CMDL_COMPL
3468 # ifdef FEAT_SEARCH_EXTRA
3470 if (*arg
== NUL
|| !ends_excmd(*arg
))
3472 /* also complete "None" */
3473 set_context_in_echohl_cmd(xp
, arg
);
3474 arg
= skipwhite(skiptowhite(arg
));
3477 xp
->xp_context
= EXPAND_NOTHING
;
3478 arg
= skip_regexp(arg
+ 1, *arg
, p_magic
, NULL
);
3481 return find_nextcmd(arg
);
3485 * All completion for the +cmdline_compl feature goes here.
3488 # ifdef FEAT_USR_CMDS
3490 /* Check for attributes */
3493 arg
++; /* Skip "-" */
3494 p
= skiptowhite(arg
);
3497 /* Cursor is still in the attribute */
3498 p
= vim_strchr(arg
, '=');
3501 /* No "=", so complete attribute names */
3502 xp
->xp_context
= EXPAND_USER_CMD_FLAGS
;
3503 xp
->xp_pattern
= arg
;
3507 /* For the -complete and -nargs attributes, we complete
3508 * their arguments as well.
3510 if (STRNICMP(arg
, "complete", p
- arg
) == 0)
3512 xp
->xp_context
= EXPAND_USER_COMPLETE
;
3513 xp
->xp_pattern
= p
+ 1;
3516 else if (STRNICMP(arg
, "nargs", p
- arg
) == 0)
3518 xp
->xp_context
= EXPAND_USER_NARGS
;
3519 xp
->xp_pattern
= p
+ 1;
3527 /* After the attributes comes the new command name */
3528 p
= skiptowhite(arg
);
3531 xp
->xp_context
= EXPAND_USER_COMMANDS
;
3532 xp
->xp_pattern
= arg
;
3536 /* And finally comes a normal command */
3537 return skipwhite(p
);
3539 case CMD_delcommand
:
3540 xp
->xp_context
= EXPAND_USER_COMMANDS
;
3541 xp
->xp_pattern
= arg
;
3547 delim
= *arg
; /* get the delimiter */
3549 ++arg
; /* skip delimiter if there is one */
3551 while (arg
[0] != NUL
&& arg
[0] != delim
)
3553 if (arg
[0] == '\\' && arg
[1] != NUL
)
3561 case CMD_substitute
:
3565 /* skip "from" part */
3567 arg
= skip_regexp(arg
, delim
, p_magic
, NULL
);
3569 /* skip "to" part */
3570 while (arg
[0] != NUL
&& arg
[0] != delim
)
3572 if (arg
[0] == '\\' && arg
[1] != NUL
)
3576 if (arg
[0] != NUL
) /* skip delimiter */
3578 while (arg
[0] && vim_strchr((char_u
*)"|\"#", arg
[0]) == NULL
)
3592 arg
= skipwhite(skipdigits(arg
)); /* skip count */
3593 if (*arg
== '/') /* Match regexp, not just whole words */
3595 for (++arg
; *arg
&& *arg
!= '/'; arg
++)
3596 if (*arg
== '\\' && arg
[1] != NUL
)
3600 arg
= skipwhite(arg
+ 1);
3602 /* Check for trailing illegal characters */
3603 if (*arg
&& vim_strchr((char_u
*)"|\"\n", *arg
) == NULL
)
3604 xp
->xp_context
= EXPAND_NOTHING
;
3612 return set_context_in_autocmd(xp
, arg
, FALSE
);
3616 return set_context_in_autocmd(xp
, arg
, TRUE
);
3619 set_context_in_set_cmd(xp
, arg
, 0);
3622 set_context_in_set_cmd(xp
, arg
, OPT_GLOBAL
);
3625 set_context_in_set_cmd(xp
, arg
, OPT_LOCAL
);
3638 xp
->xp_context
= EXPAND_TAGS_LISTFILES
;
3640 xp
->xp_context
= EXPAND_TAGS
;
3641 xp
->xp_pattern
= arg
;
3644 xp
->xp_context
= EXPAND_AUGROUP
;
3645 xp
->xp_pattern
= arg
;
3649 set_context_in_syntax_cmd(xp
, arg
);
3665 set_context_for_expression(xp
, arg
, ea
.cmdidx
);
3669 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3670 arg
= xp
->xp_pattern
+ 1;
3671 xp
->xp_context
= EXPAND_USER_VARS
;
3672 xp
->xp_pattern
= arg
;
3676 case CMD_delfunction
:
3677 xp
->xp_context
= EXPAND_USER_FUNC
;
3678 xp
->xp_pattern
= arg
;
3682 set_context_in_echohl_cmd(xp
, arg
);
3686 set_context_in_highlight_cmd(xp
, arg
);
3692 set_context_in_cscope_cmd(xp
, arg
, ea
.cmdidx
);
3697 set_context_in_sign_cmd(xp
, arg
);
3700 #ifdef FEAT_LISTCMDS
3704 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3705 arg
= xp
->xp_pattern
+ 1;
3710 xp
->xp_context
= EXPAND_BUFFERS
;
3711 xp
->xp_pattern
= arg
;
3714 #ifdef FEAT_USR_CMDS
3717 if (compl != EXPAND_NOTHING
)
3719 /* XFILE: file names are handled above */
3720 if (!(ea
.argt
& XFILE
))
3723 if (compl == EXPAND_MENUS
)
3724 return set_context_in_menu_cmd(xp
, cmd
, arg
, forceit
);
3726 if (compl == EXPAND_COMMANDS
)
3728 if (compl == EXPAND_MAPPINGS
)
3729 return set_context_in_map_cmd(xp
, (char_u
*)"map",
3730 arg
, forceit
, FALSE
, FALSE
, CMD_map
);
3731 while ((xp
->xp_pattern
= vim_strchr(arg
, ' ')) != NULL
)
3732 arg
= xp
->xp_pattern
+ 1;
3733 xp
->xp_pattern
= arg
;
3735 xp
->xp_context
= compl;
3739 case CMD_map
: case CMD_noremap
:
3740 case CMD_nmap
: case CMD_nnoremap
:
3741 case CMD_vmap
: case CMD_vnoremap
:
3742 case CMD_omap
: case CMD_onoremap
:
3743 case CMD_imap
: case CMD_inoremap
:
3744 case CMD_cmap
: case CMD_cnoremap
:
3745 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3746 FALSE
, FALSE
, ea
.cmdidx
);
3753 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3754 FALSE
, TRUE
, ea
.cmdidx
);
3755 case CMD_abbreviate
: case CMD_noreabbrev
:
3756 case CMD_cabbrev
: case CMD_cnoreabbrev
:
3757 case CMD_iabbrev
: case CMD_inoreabbrev
:
3758 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3759 TRUE
, FALSE
, ea
.cmdidx
);
3760 case CMD_unabbreviate
:
3763 return set_context_in_map_cmd(xp
, cmd
, arg
, forceit
,
3764 TRUE
, TRUE
, ea
.cmdidx
);
3766 case CMD_menu
: case CMD_noremenu
: case CMD_unmenu
:
3767 case CMD_amenu
: case CMD_anoremenu
: case CMD_aunmenu
:
3768 case CMD_nmenu
: case CMD_nnoremenu
: case CMD_nunmenu
:
3769 case CMD_vmenu
: case CMD_vnoremenu
: case CMD_vunmenu
:
3770 case CMD_omenu
: case CMD_onoremenu
: case CMD_ounmenu
:
3771 case CMD_imenu
: case CMD_inoremenu
: case CMD_iunmenu
:
3772 case CMD_cmenu
: case CMD_cnoremenu
: case CMD_cunmenu
:
3773 case CMD_tmenu
: case CMD_tunmenu
:
3774 case CMD_popup
: case CMD_tearoff
: case CMD_emenu
:
3775 return set_context_in_menu_cmd(xp
, cmd
, arg
, forceit
);
3778 case CMD_colorscheme
:
3779 xp
->xp_context
= EXPAND_COLORS
;
3780 xp
->xp_pattern
= arg
;
3784 xp
->xp_context
= EXPAND_COMPILER
;
3785 xp
->xp_pattern
= arg
;
3788 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3789 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3791 if (*skiptowhite(arg
) == NUL
)
3793 xp
->xp_context
= EXPAND_LANGUAGE
;
3794 xp
->xp_pattern
= arg
;
3797 xp
->xp_context
= EXPAND_NOTHING
;
3801 #endif /* FEAT_CMDL_COMPL */
3810 * skip a range specifier of the form: addr [,addr] [;addr] ..
3812 * Backslashed delimiters after / or ? will be skipped, and commands will
3813 * not be expanded between /'s and ?'s or after "'".
3815 * Also skip white space and ":" characters.
3816 * Returns the "cmd" pointer advanced to beyond the range.
3819 skip_range(cmd
, ctx
)
3821 int *ctx
; /* pointer to xp_context or NULL */
3825 while (vim_strchr((char_u
*)" \t0123456789.$%'/?-+,;", *cmd
) != NULL
)
3829 if (*++cmd
== NUL
&& ctx
!= NULL
)
3830 *ctx
= EXPAND_NOTHING
;
3832 else if (*cmd
== '/' || *cmd
== '?')
3835 while (*cmd
!= NUL
&& *cmd
!= delim
)
3836 if (*cmd
++ == '\\' && *cmd
!= NUL
)
3838 if (*cmd
== NUL
&& ctx
!= NULL
)
3839 *ctx
= EXPAND_NOTHING
;
3845 /* Skip ":" and white space. */
3847 cmd
= skipwhite(cmd
+ 1);
3853 * get a single EX address
3855 * Set ptr to the next character after the part that was interpreted.
3856 * Set ptr to NULL when an error is encountered.
3858 * Return MAXLNUM when no Ex address was found.
3861 get_address(ptr
, skip
, to_other_file
)
3863 int skip
; /* only skip the address, don't use it */
3864 int to_other_file
; /* flag: may jump to other file */
3874 cmd
= skipwhite(*ptr
);
3880 case '.': /* '.' - Cursor position */
3882 lnum
= curwin
->w_cursor
.lnum
;
3885 case '$': /* '$' - last line */
3887 lnum
= curbuf
->b_ml
.ml_line_count
;
3890 case '\'': /* ''' - mark */
3900 /* Only accept a mark in another file when it is
3901 * used by itself: ":'M". */
3902 fp
= getmark(*cmd
, to_other_file
&& cmd
[1] == NUL
);
3904 if (fp
== (pos_T
*)-1)
3905 /* Jumped to another file. */
3906 lnum
= curwin
->w_cursor
.lnum
;
3909 if (check_mark(fp
) == FAIL
)
3920 case '?': /* '/' or '?' - search */
3922 if (skip
) /* skip "/pat/" */
3924 cmd
= skip_regexp(cmd
, c
, (int)p_magic
, NULL
);
3930 pos
= curwin
->w_cursor
; /* save curwin->w_cursor */
3932 * When '/' or '?' follows another address, start
3935 if (lnum
!= MAXLNUM
)
3936 curwin
->w_cursor
.lnum
= lnum
;
3938 * Start a forward search at the end of the line.
3939 * Start a backward search at the start of the line.
3940 * This makes sure we never match in the current
3941 * line, and can match anywhere in the
3942 * next/previous line.
3945 curwin
->w_cursor
.col
= MAXCOL
;
3947 curwin
->w_cursor
.col
= 0;
3949 if (!do_search(NULL
, c
, cmd
, 1L,
3950 SEARCH_HIS
| SEARCH_MSG
, NULL
))
3952 curwin
->w_cursor
= pos
;
3956 lnum
= curwin
->w_cursor
.lnum
;
3957 curwin
->w_cursor
= pos
;
3958 /* adjust command string pointer */
3959 cmd
+= searchcmdlen
;
3963 case '\\': /* "\?", "\/" or "\&", repeat search */
3967 else if (*cmd
== '?' || *cmd
== '/')
3971 EMSG(_(e_backslash
));
3979 * When search follows another address, start from
3982 if (lnum
!= MAXLNUM
)
3985 pos
.lnum
= curwin
->w_cursor
.lnum
;
3988 * Start the search just like for the above
3995 if (searchit(curwin
, curbuf
, &pos
,
3996 *cmd
== '?' ? BACKWARD
: FORWARD
,
3997 (char_u
*)"", 1L, SEARCH_MSG
,
3998 i
, (linenr_T
)0, NULL
) != FAIL
)
4010 if (VIM_ISDIGIT(*cmd
)) /* absolute line number */
4011 lnum
= getdigits(&cmd
);
4016 cmd
= skipwhite(cmd
);
4017 if (*cmd
!= '-' && *cmd
!= '+' && !VIM_ISDIGIT(*cmd
))
4020 if (lnum
== MAXLNUM
)
4021 lnum
= curwin
->w_cursor
.lnum
; /* "+1" is same as ".+1" */
4022 if (VIM_ISDIGIT(*cmd
))
4023 i
= '+'; /* "number" is same as "+number" */
4026 if (!VIM_ISDIGIT(*cmd
)) /* '+' is '+1', but '+0' is not '+1' */
4029 n
= getdigits(&cmd
);
4035 } while (*cmd
== '/' || *cmd
== '?');
4043 * Get flags from an Ex command argument.
4049 while (vim_strchr((char_u
*)"lp#", *eap
->arg
) != NULL
)
4051 if (*eap
->arg
== 'l')
4052 eap
->flags
|= EXFLAG_LIST
;
4053 else if (*eap
->arg
== 'p')
4054 eap
->flags
|= EXFLAG_PRINT
;
4056 eap
->flags
|= EXFLAG_NR
;
4057 eap
->arg
= skipwhite(eap
->arg
+ 1);
4062 * Function called for command which is Not Implemented. NI!
4069 eap
->errmsg
= (char_u
*)N_("E319: Sorry, the command is not available in this version");
4072 #ifdef HAVE_EX_SCRIPT_NI
4074 * Function called for script command which is Not Implemented. NI!
4075 * Skips over ":perl <<EOF" constructs.
4084 vim_free(script_get(eap
, eap
->arg
));
4089 * Check range in Ex command for validity.
4090 * Return NULL when valid, error message when invalid.
4098 || eap
->line1
> eap
->line2
4099 || ((eap
->argt
& RANGE
)
4100 && !(eap
->argt
& NOTADR
)
4101 && eap
->line2
> curbuf
->b_ml
.ml_line_count
4103 + (eap
->cmdidx
== CMD_diffget
)
4106 return (char_u
*)_(e_invrange
);
4111 * Correct the range for zero line number, if required.
4117 if (!(eap
->argt
& ZEROR
)) /* zero in range not allowed */
4119 if (eap
->line1
== 0)
4121 if (eap
->line2
== 0)
4126 #ifdef FEAT_QUICKFIX
4127 static char_u
*skip_grep_pat
__ARGS((exarg_T
*eap
));
4130 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4131 * pattern. Otherwise return eap->arg.
4137 char_u
*p
= eap
->arg
;
4139 if (*p
!= NUL
&& (eap
->cmdidx
== CMD_vimgrep
|| eap
->cmdidx
== CMD_lvimgrep
4140 || eap
->cmdidx
== CMD_vimgrepadd
4141 || eap
->cmdidx
== CMD_lvimgrepadd
4142 || grep_internal(eap
->cmdidx
)))
4144 p
= skip_vimgrep_pat(p
, NULL
, NULL
);
4152 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4153 * in the command line, so that things like % get expanded.
4156 replace_makeprg(eap
, p
, cmdlinep
)
4161 char_u
*new_cmdline
;
4169 * Don't do it when ":vimgrep" is used for ":grep".
4171 if ((eap
->cmdidx
== CMD_make
|| eap
->cmdidx
== CMD_lmake
4172 || eap
->cmdidx
== CMD_grep
|| eap
->cmdidx
== CMD_lgrep
4173 || eap
->cmdidx
== CMD_grepadd
4174 || eap
->cmdidx
== CMD_lgrepadd
)
4175 && !grep_internal(eap
->cmdidx
))
4177 if (eap
->cmdidx
== CMD_grep
|| eap
->cmdidx
== CMD_lgrep
4178 || eap
->cmdidx
== CMD_grepadd
|| eap
->cmdidx
== CMD_lgrepadd
)
4180 if (*curbuf
->b_p_gp
== NUL
)
4183 program
= curbuf
->b_p_gp
;
4187 if (*curbuf
->b_p_mp
== NUL
)
4190 program
= curbuf
->b_p_mp
;
4195 if ((pos
= (char_u
*)strstr((char *)program
, "$*")) != NULL
)
4197 /* replace $* by given arguments */
4199 while ((pos
= (char_u
*)strstr((char *)pos
+ 2, "$*")) != NULL
)
4201 len
= (int)STRLEN(p
);
4202 new_cmdline
= alloc((int)(STRLEN(program
) + i
* (len
- 2) + 1));
4203 if (new_cmdline
== NULL
)
4204 return NULL
; /* out of memory */
4206 while ((pos
= (char_u
*)strstr((char *)program
, "$*")) != NULL
)
4208 i
= (int)(pos
- program
);
4209 STRNCPY(ptr
, program
, i
);
4210 STRCPY(ptr
+= i
, p
);
4214 STRCPY(ptr
, program
);
4218 new_cmdline
= alloc((int)(STRLEN(program
) + STRLEN(p
) + 2));
4219 if (new_cmdline
== NULL
)
4220 return NULL
; /* out of memory */
4221 STRCPY(new_cmdline
, program
);
4222 STRCAT(new_cmdline
, " ");
4223 STRCAT(new_cmdline
, p
);
4227 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4228 vim_free(*cmdlinep
);
4229 *cmdlinep
= new_cmdline
;
4237 * Expand file name in Ex command argument.
4238 * Return FAIL for failure, OK otherwise.
4241 expand_filename(eap
, cmdlinep
, errormsgp
)
4246 int has_wildcards
; /* need to expand wildcards */
4253 #ifdef FEAT_QUICKFIX
4254 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4255 p
= skip_grep_pat(eap
);
4261 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4262 * the file name contains a wildcard it should not cause expanding.
4263 * (it will be expanded anyway if there is a wildcard before replacing).
4265 has_wildcards
= mch_has_wildcard(p
);
4269 /* Skip over `=expr`, wildcards in it are not expanded. */
4270 if (p
[0] == '`' && p
[1] == '=')
4273 (void)skip_expr(&p
);
4280 * Quick check if this cannot be the start of a special string.
4281 * Also removes backslash before '%', '#' and '<'.
4283 if (vim_strchr((char_u
*)"%#<", *p
) == NULL
)
4290 * Try to find a match at this position.
4292 repl
= eval_vars(p
, eap
->arg
, &srclen
, &(eap
->do_ecmd_lnum
),
4293 errormsgp
, &escaped
);
4294 if (*errormsgp
!= NULL
) /* error detected */
4296 if (repl
== NULL
) /* no match found */
4302 /* Wildcards won't be expanded below, the replacement is taken
4303 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4304 if (vim_strchr(repl
, '$') != NULL
|| vim_strchr(repl
, '~') != NULL
)
4308 repl
= expand_env_save(repl
);
4312 /* Need to escape white space et al. with a backslash.
4313 * Don't do this for:
4314 * - replacement that already has been escaped: "##"
4315 * - shell commands (may have to use quotes instead).
4316 * - non-unix systems when there is a single argument (spaces don't
4317 * separate arguments then).
4321 && eap
->cmdidx
!= CMD_bang
4322 && eap
->cmdidx
!= CMD_make
4323 && eap
->cmdidx
!= CMD_lmake
4324 && eap
->cmdidx
!= CMD_grep
4325 && eap
->cmdidx
!= CMD_lgrep
4326 && eap
->cmdidx
!= CMD_grepadd
4327 && eap
->cmdidx
!= CMD_lgrepadd
4329 && !(eap
->argt
& NOSPC
)
4334 #ifdef BACKSLASH_IN_FILENAME
4335 /* Don't escape a backslash here, because rem_backslash() doesn't
4336 * remove it later. */
4337 static char_u
*nobslash
= (char_u
*)" \t\"|";
4338 # define ESCAPE_CHARS nobslash
4340 # define ESCAPE_CHARS escape_chars
4343 for (l
= repl
; *l
; ++l
)
4344 if (vim_strchr(ESCAPE_CHARS
, *l
) != NULL
)
4346 l
= vim_strsave_escaped(repl
, ESCAPE_CHARS
);
4356 /* For a shell command a '!' must be escaped. */
4357 if ((eap
->usefilter
|| eap
->cmdidx
== CMD_bang
)
4358 && vim_strpbrk(repl
, (char_u
*)"!&;()<>") != NULL
)
4362 l
= vim_strsave_escaped(repl
, (char_u
*)"!&;()<>");
4367 /* For a sh-like shell escape "!" another time. */
4368 if (strstr((char *)p_sh
, "sh") != NULL
)
4370 l
= vim_strsave_escaped(repl
, (char_u
*)"!");
4380 p
= repl_cmdline(eap
, p
, srclen
, repl
, cmdlinep
);
4387 * One file argument: Expand wildcards.
4388 * Don't do this with ":r !command" or ":w !command".
4390 if ((eap
->argt
& NOSPC
) && !eap
->usefilter
)
4393 * May do this twice:
4394 * 1. Replace environment variables.
4395 * 2. Replace any other wildcards, remove backslashes.
4397 for (n
= 1; n
<= 2; ++n
)
4403 * Only for Unix we check for more than one file name.
4404 * For other systems spaces are considered to be part
4406 * Only check here if there is no wildcard, otherwise
4407 * ExpandOne() will check for errors. This allows
4408 * ":e `ls ve*.c`" on Unix.
4411 for (p
= eap
->arg
; *p
; ++p
)
4413 /* skip escaped characters */
4414 if (p
[1] && (*p
== '\\' || *p
== Ctrl_V
))
4416 else if (vim_iswhite(*p
))
4418 *errormsgp
= (char_u
*)_("E172: Only one file name allowed");
4425 * Halve the number of backslashes (this is Vi compatible).
4426 * For Unix and OS/2, when wildcards are expanded, this is
4427 * done by ExpandOne() below.
4429 #if defined(UNIX) || defined(OS2)
4432 backslash_halve(eap
->arg
);
4440 * First loop: May expand environment variables. This
4441 * can be done much faster with expand_env() than with
4442 * something else (e.g., calling a shell).
4443 * After expanding environment variables, check again
4444 * if there are still wildcards present.
4446 if (vim_strchr(eap
->arg
, '$') != NULL
4447 || vim_strchr(eap
->arg
, '~') != NULL
)
4449 expand_env_esc(eap
->arg
, NameBuff
, MAXPATHL
,
4451 has_wildcards
= mch_has_wildcard(NameBuff
);
4462 xpc
.xp_context
= EXPAND_FILES
;
4463 p
= ExpandOne(&xpc
, eap
->arg
, NULL
,
4464 WILD_LIST_NOTFOUND
|WILD_ADD_SLASH
,
4471 (void)repl_cmdline(eap
, eap
->arg
, (int)STRLEN(eap
->arg
),
4473 if (n
== 2) /* p came from ExpandOne() */
4483 * Replace part of the command line, keeping eap->cmd, eap->arg and
4484 * eap->nextcmd correct.
4485 * "src" points to the part that is to be replaced, of length "srclen".
4486 * "repl" is the replacement string.
4487 * Returns a pointer to the character after the replaced string.
4488 * Returns NULL for failure.
4491 repl_cmdline(eap
, src
, srclen
, repl
, cmdlinep
)
4500 char_u
*new_cmdline
;
4503 * The new command line is build in new_cmdline[].
4504 * First allocate it.
4505 * Careful: a "+cmd" argument may have been NUL terminated.
4507 len
= (int)STRLEN(repl
);
4508 i
= (int)(src
- *cmdlinep
) + (int)STRLEN(src
+ srclen
) + len
+ 3;
4509 if (eap
->nextcmd
!= NULL
)
4510 i
+= (int)STRLEN(eap
->nextcmd
);/* add space for next command */
4511 if ((new_cmdline
= alloc((unsigned)i
)) == NULL
)
4512 return NULL
; /* out of memory! */
4515 * Copy the stuff before the expanded part.
4516 * Copy the expanded stuff.
4517 * Copy what came after the expanded part.
4518 * Copy the next commands, if there are any.
4520 i
= (int)(src
- *cmdlinep
); /* length of part before match */
4521 mch_memmove(new_cmdline
, *cmdlinep
, (size_t)i
);
4523 mch_memmove(new_cmdline
+ i
, repl
, (size_t)len
);
4524 i
+= len
; /* remember the end of the string */
4525 STRCPY(new_cmdline
+ i
, src
+ srclen
);
4526 src
= new_cmdline
+ i
; /* remember where to continue */
4528 if (eap
->nextcmd
!= NULL
) /* append next command */
4530 i
= (int)STRLEN(new_cmdline
) + 1;
4531 STRCPY(new_cmdline
+ i
, eap
->nextcmd
);
4532 eap
->nextcmd
= new_cmdline
+ i
;
4534 eap
->cmd
= new_cmdline
+ (eap
->cmd
- *cmdlinep
);
4535 eap
->arg
= new_cmdline
+ (eap
->arg
- *cmdlinep
);
4536 if (eap
->do_ecmd_cmd
!= NULL
&& eap
->do_ecmd_cmd
!= dollar_command
)
4537 eap
->do_ecmd_cmd
= new_cmdline
+ (eap
->do_ecmd_cmd
- *cmdlinep
);
4538 vim_free(*cmdlinep
);
4539 *cmdlinep
= new_cmdline
;
4545 * Check for '|' to separate commands and '"' to start comments.
4548 separate_nextcmd(eap
)
4553 #ifdef FEAT_QUICKFIX
4554 p
= skip_grep_pat(eap
);
4559 for ( ; *p
; mb_ptr_adv(p
))
4563 if (eap
->argt
& (USECTRLV
| XFILE
))
4564 ++p
; /* skip CTRL-V and next char */
4566 /* remove CTRL-V and skip next char */
4568 if (*p
== NUL
) /* stop at NUL after CTRL-V */
4573 /* Skip over `=expr` when wildcards are expanded. */
4574 else if (p
[0] == '`' && p
[1] == '=' && (eap
->argt
& XFILE
))
4577 (void)skip_expr(&p
);
4581 /* Check for '"': start of comment or '|': next command */
4582 /* :@" and :*" do not start a comment!
4583 * :redir @" doesn't either. */
4584 else if ((*p
== '"' && !(eap
->argt
& NOTRLCOM
)
4585 && ((eap
->cmdidx
!= CMD_at
&& eap
->cmdidx
!= CMD_star
)
4587 && (eap
->cmdidx
!= CMD_redir
4588 || p
!= eap
->arg
+ 1 || p
[-1] != '@'))
4589 || *p
== '|' || *p
== '\n')
4592 * We remove the '\' before the '|', unless USECTRLV is used
4593 * AND 'b' is present in 'cpoptions'.
4595 if ((vim_strchr(p_cpo
, CPO_BAR
) == NULL
4596 || !(eap
->argt
& USECTRLV
)) && *(p
- 1) == '\\')
4598 STRMOVE(p
- 1, p
); /* remove the '\' */
4603 eap
->nextcmd
= check_nextcmd(p
);
4610 if (!(eap
->argt
& NOTRLCOM
)) /* remove trailing spaces */
4611 del_trailing_spaces(eap
->arg
);
4615 * get + command from ex argument
4621 char_u
*arg
= *argp
;
4622 char_u
*command
= NULL
;
4624 if (*arg
== '+') /* +[command] */
4627 if (vim_isspace(*arg
))
4628 command
= dollar_command
;
4632 arg
= skip_cmd_arg(command
, TRUE
);
4634 *arg
++ = NUL
; /* terminate command with NUL */
4637 arg
= skipwhite(arg
); /* skip over spaces */
4644 * Find end of "+command" argument. Skip over "\ " and "\\".
4647 skip_cmd_arg(p
, rembs
)
4649 int rembs
; /* TRUE to halve the number of backslashes */
4651 while (*p
&& !vim_isspace(*p
))
4653 if (*p
== '\\' && p
[1] != NUL
)
4666 * Get "++opt=arg" argument.
4667 * Return FAIL or OK.
4673 char_u
*arg
= eap
->arg
+ 2;
4679 /* ":edit ++[no]bin[ary] file" */
4680 if (STRNCMP(arg
, "bin", 3) == 0 || STRNCMP(arg
, "nobin", 5) == 0)
4685 eap
->force_bin
= FORCE_NOBIN
;
4688 eap
->force_bin
= FORCE_BIN
;
4689 if (!checkforcmd(&arg
, "binary", 3))
4691 eap
->arg
= skipwhite(arg
);
4695 /* ":read ++edit file" */
4696 if (STRNCMP(arg
, "edit", 4) == 0)
4698 eap
->read_edit
= TRUE
;
4699 eap
->arg
= skipwhite(arg
+ 4);
4703 if (STRNCMP(arg
, "ff", 2) == 0)
4706 pp
= &eap
->force_ff
;
4708 else if (STRNCMP(arg
, "fileformat", 10) == 0)
4711 pp
= &eap
->force_ff
;
4714 else if (STRNCMP(arg
, "enc", 3) == 0)
4717 pp
= &eap
->force_enc
;
4719 else if (STRNCMP(arg
, "encoding", 8) == 0)
4722 pp
= &eap
->force_enc
;
4724 else if (STRNCMP(arg
, "bad", 3) == 0)
4727 pp
= &eap
->bad_char
;
4731 if (pp
== NULL
|| *arg
!= '=')
4735 *pp
= (int)(arg
- eap
->cmd
);
4736 arg
= skip_cmd_arg(arg
, FALSE
);
4737 eap
->arg
= skipwhite(arg
);
4741 if (pp
== &eap
->force_ff
)
4744 if (check_ff_value(eap
->cmd
+ eap
->force_ff
) == FAIL
)
4748 else if (pp
== &eap
->force_enc
)
4750 /* Make 'fileencoding' lower case. */
4751 for (p
= eap
->cmd
+ eap
->force_enc
; *p
!= NUL
; ++p
)
4752 *p
= TOLOWER_ASC(*p
);
4756 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4758 p
= eap
->cmd
+ eap
->bad_char
;
4759 if (STRICMP(p
, "keep") == 0)
4760 eap
->bad_char
= BAD_KEEP
;
4761 else if (STRICMP(p
, "drop") == 0)
4762 eap
->bad_char
= BAD_DROP
;
4763 else if (MB_BYTE2LEN(*p
) == 1 && p
[1] == NUL
)
4774 * ":abbreviate" and friends.
4780 do_exmap(eap
, TRUE
); /* almost the same as mapping */
4784 * ":map" and friends.
4791 * If we are sourcing .exrc or .vimrc in current directory we
4792 * print the mappings for security reasons.
4797 msg_outtrans(eap
->cmd
);
4800 do_exmap(eap
, FALSE
);
4804 * ":unmap" and friends.
4810 do_exmap(eap
, FALSE
);
4814 * ":mapclear" and friends.
4820 map_clear(eap
->cmd
, eap
->arg
, eap
->forceit
, FALSE
);
4824 * ":abclear" and friends.
4830 map_clear(eap
->cmd
, eap
->arg
, TRUE
, TRUE
);
4839 * Disallow auto commands from .exrc and .vimrc in current
4840 * directory for security reasons.
4845 eap
->errmsg
= e_curdir
;
4847 else if (eap
->cmdidx
== CMD_autocmd
)
4848 do_autocmd(eap
->arg
, eap
->forceit
);
4850 do_augroup(eap
->arg
, eap
->forceit
);
4854 * ":doautocmd": Apply the automatic commands to the current buffer.
4860 (void)do_doautocmd(eap
->arg
, TRUE
);
4865 #ifdef FEAT_LISTCMDS
4867 * :[N]bunload[!] [N] [bufname] unload buffer
4868 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4869 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4875 eap
->errmsg
= do_bufdel(
4876 eap
->cmdidx
== CMD_bdelete
? DOBUF_DEL
4877 : eap
->cmdidx
== CMD_bwipeout
? DOBUF_WIPE
4878 : DOBUF_UNLOAD
, eap
->arg
,
4879 eap
->addr_count
, (int)eap
->line1
, (int)eap
->line2
, eap
->forceit
);
4883 * :[N]buffer [N] to buffer N
4884 * :[N]sbuffer [N] to buffer N
4891 eap
->errmsg
= e_trailing
;
4894 if (eap
->addr_count
== 0) /* default is current buffer */
4895 goto_buffer(eap
, DOBUF_CURRENT
, FORWARD
, 0);
4897 goto_buffer(eap
, DOBUF_FIRST
, FORWARD
, (int)eap
->line2
);
4902 * :[N]bmodified [N] to next mod. buffer
4903 * :[N]sbmodified [N] to next mod. buffer
4909 goto_buffer(eap
, DOBUF_MOD
, FORWARD
, (int)eap
->line2
);
4913 * :[N]bnext [N] to next buffer
4914 * :[N]sbnext [N] split and to next buffer
4920 goto_buffer(eap
, DOBUF_CURRENT
, FORWARD
, (int)eap
->line2
);
4924 * :[N]bNext [N] to previous buffer
4925 * :[N]bprevious [N] to previous buffer
4926 * :[N]sbNext [N] split and to previous buffer
4927 * :[N]sbprevious [N] split and to previous buffer
4933 goto_buffer(eap
, DOBUF_CURRENT
, BACKWARD
, (int)eap
->line2
);
4937 * :brewind to first buffer
4938 * :bfirst to first buffer
4939 * :sbrewind split and to first buffer
4940 * :sbfirst split and to first buffer
4946 goto_buffer(eap
, DOBUF_FIRST
, FORWARD
, 0);
4950 * :blast to last buffer
4951 * :sblast split and to last buffer
4957 goto_buffer(eap
, DOBUF_LAST
, BACKWARD
, 0);
4965 return (c
== NUL
|| c
== '|' || c
== '"' || c
== '\n');
4968 #if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4971 * Return the next command, after the first '|' or '\n'.
4972 * Return NULL if not found.
4978 while (*p
!= '|' && *p
!= '\n')
4989 * Check if *p is a separator between Ex commands.
4990 * Return NULL if it isn't, (p + 1) if it is.
4997 if (*p
== '|' || *p
== '\n')
5004 * - if there are more files to edit
5005 * - and this is the last window
5006 * - and forceit not used
5007 * - and not repeated twice on a row
5008 * return FAIL and give error message if 'message' TRUE
5009 * return OK otherwise
5012 check_more(message
, forceit
)
5013 int message
; /* when FALSE check only, no messages */
5016 int n
= ARGCOUNT
- curwin
->w_arg_idx
- 1;
5018 if (!forceit
&& only_one_window()
5019 && ARGCOUNT
> 1 && !arg_had_last
&& n
>= 0 && quitmore
== 0)
5023 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5024 if ((p_confirm
|| cmdmod
.confirm
) && curbuf
->b_fname
!= NULL
)
5026 char_u buff
[IOSIZE
];
5029 STRCPY(buff
, _("1 more file to edit. Quit anyway?"));
5031 vim_snprintf((char *)buff
, IOSIZE
,
5032 _("%d more files to edit. Quit anyway?"), n
);
5033 if (vim_dialog_yesno(VIM_QUESTION
, NULL
, buff
, 1) == VIM_YES
)
5039 EMSG(_("E173: 1 more file to edit"));
5041 EMSGN(_("E173: %ld more files to edit"), n
);
5042 quitmore
= 2; /* next try to quit is allowed */
5049 #ifdef FEAT_CMDL_COMPL
5051 * Function given to ExpandGeneric() to obtain the list of command names.
5054 get_command_name(xp
, idx
)
5055 expand_T
*xp UNUSED
;
5058 if (idx
>= (int)CMD_SIZE
)
5059 # ifdef FEAT_USR_CMDS
5060 return get_user_command_name(idx
);
5064 return cmdnames
[idx
].cmd_name
;
5068 #if defined(FEAT_USR_CMDS) || defined(PROTO)
5069 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
));
5070 static void uc_list
__ARGS((char_u
*name
, size_t name_len
));
5071 static int uc_scan_attr
__ARGS((char_u
*attr
, size_t len
, long *argt
, long *def
, int *flags
, int *compl, char_u
**compl_arg
));
5072 static char_u
*uc_split_args
__ARGS((char_u
*arg
, size_t *lenp
));
5073 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
));
5076 uc_add_command(name
, name_len
, rep
, argt
, def
, flags
, compl, compl_arg
, force
)
5091 char_u
*rep_buf
= NULL
;
5094 replace_termcodes(rep
, &rep_buf
, FALSE
, FALSE
, FALSE
);
5095 if (rep_buf
== NULL
)
5097 /* Can't replace termcodes - try using the string as is */
5098 rep_buf
= vim_strsave(rep
);
5100 /* Give up if out of memory */
5101 if (rep_buf
== NULL
)
5105 /* get address of growarray: global or in curbuf */
5106 if (flags
& UC_BUFFER
)
5108 gap
= &curbuf
->b_ucmds
;
5109 if (gap
->ga_itemsize
== 0)
5110 ga_init2(gap
, (int)sizeof(ucmd_T
), 4);
5115 /* Search for the command in the already defined commands. */
5116 for (i
= 0; i
< gap
->ga_len
; ++i
)
5120 cmd
= USER_CMD_GA(gap
, i
);
5121 len
= STRLEN(cmd
->uc_name
);
5122 cmp
= STRNCMP(name
, cmd
->uc_name
, name_len
);
5127 else if (name_len
> len
)
5135 EMSG(_("E174: Command already exists: add ! to replace it"));
5139 vim_free(cmd
->uc_rep
);
5141 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5142 vim_free(cmd
->uc_compl_arg
);
5143 cmd
->uc_compl_arg
= NULL
;
5148 /* Stop as soon as we pass the name to add */
5153 /* Extend the array unless we're replacing an existing command */
5156 if (ga_grow(gap
, 1) != OK
)
5158 if ((p
= vim_strnsave(name
, (int)name_len
)) == NULL
)
5161 cmd
= USER_CMD_GA(gap
, i
);
5162 mch_memmove(cmd
+ 1, cmd
, (gap
->ga_len
- i
) * sizeof(ucmd_T
));
5169 cmd
->uc_rep
= rep_buf
;
5170 cmd
->uc_argt
= argt
;
5172 cmd
->uc_compl
= compl;
5174 cmd
->uc_scriptID
= current_SID
;
5175 # ifdef FEAT_CMDL_COMPL
5176 cmd
->uc_compl_arg
= compl_arg
;
5184 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5185 vim_free(compl_arg
);
5191 * List of names for completion for ":command" with the EXPAND_ flag.
5192 * Must be alphabetical for completion.
5198 } command_complete
[] =
5200 {EXPAND_AUGROUP
, "augroup"},
5201 {EXPAND_BUFFERS
, "buffer"},
5202 {EXPAND_COMMANDS
, "command"},
5203 #if defined(FEAT_CSCOPE)
5204 {EXPAND_CSCOPE
, "cscope"},
5206 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5207 {EXPAND_USER_DEFINED
, "custom"},
5208 {EXPAND_USER_LIST
, "customlist"},
5210 {EXPAND_DIRECTORIES
, "dir"},
5211 {EXPAND_ENV_VARS
, "environment"},
5212 {EXPAND_EVENTS
, "event"},
5213 {EXPAND_EXPRESSION
, "expression"},
5214 {EXPAND_FILES
, "file"},
5215 {EXPAND_FUNCTIONS
, "function"},
5216 {EXPAND_HELP
, "help"},
5217 {EXPAND_HIGHLIGHT
, "highlight"},
5218 {EXPAND_MAPPINGS
, "mapping"},
5219 {EXPAND_MENUS
, "menu"},
5220 {EXPAND_SETTINGS
, "option"},
5221 {EXPAND_SHELLCMD
, "shellcmd"},
5222 #if defined(FEAT_SIGNS)
5223 {EXPAND_SIGN
, "sign"},
5225 {EXPAND_TAGS
, "tag"},
5226 {EXPAND_TAGS_LISTFILES
, "tag_listfiles"},
5227 {EXPAND_USER_VARS
, "var"},
5232 uc_list(name
, name_len
)
5243 gap
= &curbuf
->b_ucmds
;
5246 for (i
= 0; i
< gap
->ga_len
; ++i
)
5248 cmd
= USER_CMD_GA(gap
, i
);
5249 a
= (long)cmd
->uc_argt
;
5251 /* Skip commands which don't match the requested prefix */
5252 if (STRNCMP(name
, cmd
->uc_name
, name_len
) != 0)
5255 /* Put out the title first time */
5257 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5264 msg_putchar(a
& BANG
? '!' : ' ');
5265 msg_putchar(a
& REGSTR
? '"' : ' ');
5266 msg_putchar(gap
!= &ucmds
? 'b' : ' ');
5269 msg_outtrans_attr(cmd
->uc_name
, hl_attr(HLF_D
));
5270 len
= (int)STRLEN(cmd
->uc_name
) + 4;
5280 switch ((int)(a
& (EXTRA
|NOSPC
|NEEDARG
)))
5282 case 0: IObuff
[len
++] = '0'; break;
5283 case (EXTRA
): IObuff
[len
++] = '*'; break;
5284 case (EXTRA
|NOSPC
): IObuff
[len
++] = '?'; break;
5285 case (EXTRA
|NEEDARG
): IObuff
[len
++] = '+'; break;
5286 case (EXTRA
|NOSPC
|NEEDARG
): IObuff
[len
++] = '1'; break;
5290 IObuff
[len
++] = ' ';
5294 if (a
& (RANGE
|COUNT
))
5299 sprintf((char *)IObuff
+ len
, "%ldc", cmd
->uc_def
);
5300 len
+= (int)STRLEN(IObuff
+ len
);
5302 else if (a
& DFLALL
)
5303 IObuff
[len
++] = '%';
5304 else if (cmd
->uc_def
>= 0)
5307 sprintf((char *)IObuff
+ len
, "%ld", cmd
->uc_def
);
5308 len
+= (int)STRLEN(IObuff
+ len
);
5311 IObuff
[len
++] = '.';
5315 IObuff
[len
++] = ' ';
5319 for (j
= 0; command_complete
[j
].expand
!= 0; ++j
)
5320 if (command_complete
[j
].expand
== cmd
->uc_compl
)
5322 STRCPY(IObuff
+ len
, command_complete
[j
].name
);
5323 len
+= (int)STRLEN(IObuff
+ len
);
5328 IObuff
[len
++] = ' ';
5332 msg_outtrans(IObuff
);
5334 msg_outtrans_special(cmd
->uc_rep
, FALSE
);
5337 last_set_msg(cmd
->uc_scriptID
);
5344 if (gap
== &ucmds
|| i
< gap
->ga_len
)
5350 MSG(_("No user-defined commands found"));
5356 static char_u fcmd
[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5357 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5358 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5362 for (i
= 0; fcmd
[i
]; ++i
)
5363 IObuff
[i
] = fcmd
[i
] - 0x40;
5369 uc_scan_attr(attr
, len
, argt
, def
, flags
, compl, compl_arg
)
5382 EMSG(_("E175: No attribute specified"));
5386 /* First, try the simple attributes (no arguments) */
5387 if (STRNICMP(attr
, "bang", len
) == 0)
5389 else if (STRNICMP(attr
, "buffer", len
) == 0)
5390 *flags
|= UC_BUFFER
;
5391 else if (STRNICMP(attr
, "register", len
) == 0)
5393 else if (STRNICMP(attr
, "bar", len
) == 0)
5400 size_t attrlen
= len
;
5402 /* Look for the attribute name - which is the part before any '=' */
5403 for (i
= 0; i
< (int)len
; ++i
)
5408 vallen
= len
- i
- 1;
5414 if (STRNICMP(attr
, "nargs", attrlen
) == 0)
5419 /* Do nothing - this is the default */;
5420 else if (*val
== '1')
5421 *argt
|= (EXTRA
| NOSPC
| NEEDARG
);
5422 else if (*val
== '*')
5424 else if (*val
== '?')
5425 *argt
|= (EXTRA
| NOSPC
);
5426 else if (*val
== '+')
5427 *argt
|= (EXTRA
| NEEDARG
);
5434 EMSG(_("E176: Invalid number of arguments"));
5438 else if (STRNICMP(attr
, "range", attrlen
) == 0)
5441 if (vallen
== 1 && *val
== '%')
5443 else if (val
!= NULL
)
5449 EMSG(_("E177: Count cannot be specified twice"));
5453 *def
= getdigits(&p
);
5454 *argt
|= (ZEROR
| NOTADR
);
5456 if (p
!= val
+ vallen
|| vallen
== 0)
5459 EMSG(_("E178: Invalid default value for count"));
5464 else if (STRNICMP(attr
, "count", attrlen
) == 0)
5466 *argt
|= (COUNT
| ZEROR
| RANGE
| NOTADR
);
5474 *def
= getdigits(&p
);
5476 if (p
!= val
+ vallen
)
5483 else if (STRNICMP(attr
, "complete", attrlen
) == 0)
5487 EMSG(_("E179: argument required for -complete"));
5491 if (parse_compl_arg(val
, (int)vallen
, compl, argt
, compl_arg
)
5497 char_u ch
= attr
[len
];
5499 EMSG2(_("E181: Invalid attribute: %s"), attr
);
5521 int compl = EXPAND_NOTHING
;
5522 char_u
*compl_arg
= NULL
;
5523 int has_attr
= (eap
->arg
[0] == '-');
5527 /* Check for attributes */
5531 end
= skiptowhite(p
);
5532 if (uc_scan_attr(p
, end
- p
, &argt
, &def
, &flags
, &compl, &compl_arg
)
5538 /* Get the name (if any) and skip to the following argument */
5540 if (ASCII_ISALPHA(*p
))
5541 while (ASCII_ISALNUM(*p
))
5543 if (!ends_excmd(*p
) && !vim_iswhite(*p
))
5545 EMSG(_("E182: Invalid command name"));
5550 /* If there is nothing after the name, and no attributes were specified,
5551 * we are listing commands
5554 if (!has_attr
&& ends_excmd(*p
))
5556 uc_list(name
, end
- name
);
5558 else if (!ASCII_ISUPPER(*name
))
5560 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5564 uc_add_command(name
, end
- name
, p
, argt
, def
, flags
, compl, compl_arg
,
5570 * Clear all user commands, global and for current buffer.
5574 exarg_T
*eap UNUSED
;
5577 uc_clear(&curbuf
->b_ucmds
);
5581 * Clear all user commands for "gap".
5590 for (i
= 0; i
< gap
->ga_len
; ++i
)
5592 cmd
= USER_CMD_GA(gap
, i
);
5593 vim_free(cmd
->uc_name
);
5594 vim_free(cmd
->uc_rep
);
5595 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5596 vim_free(cmd
->uc_compl_arg
);
5611 gap
= &curbuf
->b_ucmds
;
5614 for (i
= 0; i
< gap
->ga_len
; ++i
)
5616 cmd
= USER_CMD_GA(gap
, i
);
5617 cmp
= STRCMP(eap
->arg
, cmd
->uc_name
);
5621 if (gap
== &ucmds
|| cmp
== 0)
5628 EMSG2(_("E184: No such user-defined command: %s"), eap
->arg
);
5632 vim_free(cmd
->uc_name
);
5633 vim_free(cmd
->uc_rep
);
5634 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5635 vim_free(cmd
->uc_compl_arg
);
5640 if (i
< gap
->ga_len
)
5641 mch_memmove(cmd
, cmd
+ 1, (gap
->ga_len
- i
) * sizeof(ucmd_T
));
5645 * split and quote args for <f-args>
5648 uc_split_args(arg
, lenp
)
5657 /* Precalculate length */
5659 len
= 2; /* Initial and final quotes */
5663 if (p
[0] == '\\' && p
[1] == '\\')
5668 else if (p
[0] == '\\' && vim_iswhite(p
[1]))
5673 else if (*p
== '\\' || *p
== '"')
5678 else if (vim_iswhite(*p
))
5692 buf
= alloc(len
+ 1);
5704 if (p
[0] == '\\' && p
[1] == '\\')
5710 else if (p
[0] == '\\' && vim_iswhite(p
[1]))
5715 else if (*p
== '\\' || *p
== '"')
5720 else if (vim_iswhite(*p
))
5742 * Check for a <> code in a user command.
5743 * "code" points to the '<'. "len" the length of the <> (inclusive).
5744 * "buf" is where the result is to be added.
5745 * "split_buf" points to a buffer used for splitting, caller should free it.
5746 * "split_len" is the length of what "split_buf" contains.
5747 * Returns the length of the replacement, which has been added to "buf".
5748 * Returns -1 if there was no match, and only the "<" has been copied.
5751 uc_check_code(code
, len
, buf
, cmd
, eap
, split_buf
, split_len
)
5755 ucmd_T
*cmd
; /* the user command we're expanding */
5756 exarg_T
*eap
; /* ex arguments */
5761 char_u
*p
= code
+ 1;
5764 enum { ct_ARGS
, ct_BANG
, ct_COUNT
, ct_LINE1
, ct_LINE2
, ct_REGISTER
,
5765 ct_LT
, ct_NONE
} type
= ct_NONE
;
5767 if ((vim_strchr((char_u
*)"qQfF", *p
) != NULL
) && p
[1] == '-')
5769 quote
= (*p
== 'q' || *p
== 'Q') ? 1 : 2;
5777 else if (STRNICMP(p
, "args>", l
) == 0)
5779 else if (STRNICMP(p
, "bang>", l
) == 0)
5781 else if (STRNICMP(p
, "count>", l
) == 0)
5783 else if (STRNICMP(p
, "line1>", l
) == 0)
5785 else if (STRNICMP(p
, "line2>", l
) == 0)
5787 else if (STRNICMP(p
, "lt>", l
) == 0)
5789 else if (STRNICMP(p
, "reg>", l
) == 0 || STRNICMP(p
, "register>", l
) == 0)
5795 /* Simple case first */
5796 if (*eap
->arg
== NUL
)
5809 /* When specified there is a single argument don't split it.
5810 * Works for ":Cmd %" when % is "a b c". */
5811 if ((eap
->argt
& NOSPC
) && quote
== 2)
5816 case 0: /* No quoting, no splitting */
5817 result
= STRLEN(eap
->arg
);
5819 STRCPY(buf
, eap
->arg
);
5821 case 1: /* Quote, but don't split */
5822 result
= STRLEN(eap
->arg
) + 2;
5823 for (p
= eap
->arg
; *p
; ++p
)
5825 if (*p
== '\\' || *p
== '"')
5832 for (p
= eap
->arg
; *p
; ++p
)
5834 if (*p
== '\\' || *p
== '"')
5842 case 2: /* Quote and split (<f-args>) */
5843 /* This is hard, so only do it once, and cache the result */
5844 if (*split_buf
== NULL
)
5845 *split_buf
= uc_split_args(eap
->arg
, split_len
);
5847 result
= *split_len
;
5848 if (buf
!= NULL
&& result
!= 0)
5849 STRCPY(buf
, *split_buf
);
5856 result
= eap
->forceit
? 1 : 0;
5875 long num
= (type
== ct_LINE1
) ? eap
->line1
:
5876 (type
== ct_LINE2
) ? eap
->line2
:
5877 (eap
->addr_count
> 0) ? eap
->line2
: cmd
->uc_def
;
5880 sprintf(num_buf
, "%ld", num
);
5881 num_len
= STRLEN(num_buf
);
5891 STRCPY(buf
, num_buf
);
5901 result
= eap
->regname
? 1 : 0;
5909 *buf
++ = eap
->regname
;
5922 /* Not recognized: just copy the '<' and return -1. */
5923 result
= (size_t)-1;
5945 size_t split_len
= 0;
5946 char_u
*split_buf
= NULL
;
5949 scid_T save_current_SID
= current_SID
;
5952 if (eap
->cmdidx
== CMD_USER
)
5953 cmd
= USER_CMD(eap
->useridx
);
5955 cmd
= USER_CMD_GA(&curbuf
->b_ucmds
, eap
->useridx
);
5958 * Replace <> in the command by the arguments.
5959 * First round: "buf" is NULL, compute length, allocate "buf".
5960 * Second round: copy result into "buf".
5965 p
= cmd
->uc_rep
; /* source */
5966 q
= buf
; /* destination */
5971 start
= vim_strchr(p
, '<');
5973 end
= vim_strchr(start
+ 1, '>');
5976 ksp
= vim_strchr(p
, K_SPECIAL
);
5977 if (ksp
!= NULL
&& (start
== NULL
|| ksp
< start
|| end
== NULL
)
5978 && ((ksp
[1] == KS_SPECIAL
&& ksp
[2] == KE_FILLER
)
5980 || (ksp
[1] == KS_EXTRA
&& ksp
[2] == (int)KE_CSI
)
5984 /* K_SPECIAL han been put in the buffer as K_SPECIAL
5985 * KS_SPECIAL KE_FILLER, like for mappings, but
5986 * do_cmdline() doesn't handle that, so convert it back.
5987 * Also change K_SPECIAL KS_EXTRA KE_CSI into CSI. */
5991 mch_memmove(q
, p
, len
);
5994 *q
++ = ksp
[1] == KS_SPECIAL
? K_SPECIAL
: CSI
;
6000 /* break if there no <item> is found */
6001 if (start
== NULL
|| end
== NULL
)
6004 /* Include the '>' */
6007 /* Take everything up to the '<' */
6013 mch_memmove(q
, p
, len
);
6017 len
= uc_check_code(start
, end
- start
, q
, cmd
, eap
,
6018 &split_buf
, &split_len
);
6019 if (len
== (size_t)-1)
6021 /* no match, continue after '<' */
6032 if (buf
!= NULL
) /* second time here, finished */
6038 totlen
+= STRLEN(p
); /* Add on the trailing characters */
6039 buf
= alloc((unsigned)(totlen
+ 1));
6042 vim_free(split_buf
);
6048 current_SID
= cmd
->uc_scriptID
;
6050 (void)do_cmdline(buf
, eap
->getline
, eap
->cookie
,
6051 DOCMD_VERBOSE
|DOCMD_NOWAIT
|DOCMD_KEYTYPED
);
6053 current_SID
= save_current_SID
;
6056 vim_free(split_buf
);
6059 # if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6061 get_user_command_name(idx
)
6064 return get_user_commands(NULL
, idx
- (int)CMD_SIZE
);
6068 * Function given to ExpandGeneric() to obtain the list of user command names.
6071 get_user_commands(xp
, idx
)
6072 expand_T
*xp UNUSED
;
6075 if (idx
< curbuf
->b_ucmds
.ga_len
)
6076 return USER_CMD_GA(&curbuf
->b_ucmds
, idx
)->uc_name
;
6077 idx
-= curbuf
->b_ucmds
.ga_len
;
6078 if (idx
< ucmds
.ga_len
)
6079 return USER_CMD(idx
)->uc_name
;
6084 * Function given to ExpandGeneric() to obtain the list of user command
6088 get_user_cmd_flags(xp
, idx
)
6089 expand_T
*xp UNUSED
;
6092 static char *user_cmd_flags
[] =
6093 {"bang", "bar", "buffer", "complete", "count",
6094 "nargs", "range", "register"};
6096 if (idx
>= (int)(sizeof(user_cmd_flags
) / sizeof(user_cmd_flags
[0])))
6098 return (char_u
*)user_cmd_flags
[idx
];
6102 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6105 get_user_cmd_nargs(xp
, idx
)
6106 expand_T
*xp UNUSED
;
6109 static char *user_cmd_nargs
[] = {"0", "1", "*", "?", "+"};
6111 if (idx
>= (int)(sizeof(user_cmd_nargs
) / sizeof(user_cmd_nargs
[0])))
6113 return (char_u
*)user_cmd_nargs
[idx
];
6117 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6120 get_user_cmd_complete(xp
, idx
)
6121 expand_T
*xp UNUSED
;
6124 return (char_u
*)command_complete
[idx
].name
;
6126 # endif /* FEAT_CMDL_COMPL */
6128 #endif /* FEAT_USR_CMDS */
6130 #if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6132 * Parse a completion argument "value[vallen]".
6133 * The detected completion goes in "*complp", argument type in "*argt".
6134 * When there is an argument, for function and user defined completion, it's
6135 * copied to allocated memory and stored in "*compl_arg".
6136 * Returns FAIL if something is wrong.
6139 parse_compl_arg(value
, vallen
, complp
, argt
, compl_arg
)
6149 int valend
= vallen
;
6151 /* Look for any argument part - which is the part after any ',' */
6152 for (i
= 0; i
< vallen
; ++i
)
6154 if (value
[i
] == ',')
6156 arg
= &value
[i
+ 1];
6157 arglen
= vallen
- i
- 1;
6163 for (i
= 0; command_complete
[i
].expand
!= 0; ++i
)
6165 if ((int)STRLEN(command_complete
[i
].name
) == valend
6166 && STRNCMP(value
, command_complete
[i
].name
, valend
) == 0)
6168 *complp
= command_complete
[i
].expand
;
6169 if (command_complete
[i
].expand
== EXPAND_BUFFERS
)
6171 else if (command_complete
[i
].expand
== EXPAND_DIRECTORIES
6172 || command_complete
[i
].expand
== EXPAND_FILES
)
6178 if (command_complete
[i
].expand
== 0)
6180 EMSG2(_("E180: Invalid complete value: %s"), value
);
6184 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6185 if (*complp
!= EXPAND_USER_DEFINED
&& *complp
!= EXPAND_USER_LIST
6191 EMSG(_("E468: Completion argument only allowed for custom completion"));
6195 # if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6196 if ((*complp
== EXPAND_USER_DEFINED
|| *complp
== EXPAND_USER_LIST
)
6199 EMSG(_("E467: Custom completion requires a function argument"));
6204 *compl_arg
= vim_strnsave(arg
, (int)arglen
);
6214 if (load_colors(eap
->arg
) == FAIL
)
6215 EMSG2(_("E185: Cannot find color scheme %s"), eap
->arg
);
6222 if (*eap
->arg
== NUL
&& eap
->cmd
[2] == '!')
6223 MSG(_("Greetings, Vim user!"));
6224 do_highlight(eap
->arg
, eap
->forceit
, FALSE
);
6229 * Call this function if we thought we were going to exit, but we won't
6230 * (because of an error). May need to restore the terminal mode.
6236 settmode(TMODE_RAW
);
6240 * ":quit": quit current window, quit Vim if closed the last window.
6247 if (cmdwin_type
!= 0)
6249 cmdwin_result
= Ctrl_C
;
6253 /* Don't quit while editing the command line. */
6260 if (curbuf_locked())
6264 #ifdef FEAT_NETBEANS_INTG
6265 netbeansForcedQuit
= eap
->forceit
;
6269 * If there are more files or windows we won't exit.
6271 if (check_more(FALSE
, eap
->forceit
) == OK
&& only_one_window())
6274 && check_changed(curbuf
, p_awa
, FALSE
, eap
->forceit
, FALSE
))
6275 || check_more(TRUE
, eap
->forceit
) == FAIL
6276 || (only_one_window() && check_changed_any(eap
->forceit
)))
6283 if (only_one_window()) /* quit last window */
6288 need_mouse_correct
= TRUE
;
6290 /* close window; may free buffer */
6291 win_close(curwin
, !P_HID(curwin
->w_buffer
) || eap
->forceit
);
6301 exarg_T
*eap UNUSED
;
6303 getout(1); /* this does not always pass on the exit code to the Manx
6308 * ":qall": try to quit all windows
6315 if (cmdwin_type
!= 0)
6318 cmdwin_result
= K_XF1
; /* ex_window() takes care of this */
6320 cmdwin_result
= K_XF2
;
6325 /* Don't quit while editing the command line. */
6332 if (curbuf_locked())
6337 if (eap
->forceit
|| !check_changed_any(FALSE
))
6342 #if defined(FEAT_WINDOWS) || defined(PROTO)
6344 * ":close": close current window, unless it is the last one
6351 if (cmdwin_type
!= 0)
6352 cmdwin_result
= K_IGNORE
;
6360 ex_win_close(eap
->forceit
, curwin
, NULL
);
6363 # ifdef FEAT_QUICKFIX
6365 * ":pclose": Close any preview window.
6373 for (win
= firstwin
; win
!= NULL
; win
= win
->w_next
)
6376 ex_win_close(eap
->forceit
, win
, NULL
);
6383 * Close window "win" and take care of handling closing the last window for a
6387 ex_win_close(forceit
, win
, tp
)
6390 tabpage_T
*tp
; /* NULL or the tab page "win" is in */
6393 buf_T
*buf
= win
->w_buffer
;
6395 need_hide
= (bufIsChanged(buf
) && buf
->b_nwindows
<= 1);
6396 if (need_hide
&& !P_HID(buf
) && !forceit
)
6398 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
6399 if ((p_confirm
|| cmdmod
.confirm
) && p_write
)
6401 dialog_changed(buf
, FALSE
);
6402 if (buf_valid(buf
) && bufIsChanged(buf
))
6409 EMSG(_(e_nowrtmsg
));
6415 need_mouse_correct
= TRUE
;
6418 /* free buffer when not hiding it or when it's a scratch buffer */
6420 win_close(win
, !need_hide
&& !P_HID(buf
));
6422 win_close_othertab(win
, !need_hide
&& !P_HID(buf
), tp
);
6426 * ":tabclose": close current tab page, unless it is the last one.
6427 * ":tabclose N": close tab page N.
6436 if (cmdwin_type
!= 0)
6437 cmdwin_result
= K_IGNORE
;
6440 if (first_tabpage
->tp_next
== NULL
)
6441 EMSG(_("E784: Cannot close last tab page"));
6444 if (eap
->addr_count
> 0)
6446 tp
= find_tabpage((int)eap
->line2
);
6454 tabpage_close_other(tp
, eap
->forceit
);
6463 tabpage_close(eap
->forceit
);
6468 * ":tabonly": close all tab pages except the current one
6478 if (cmdwin_type
!= 0)
6479 cmdwin_result
= K_IGNORE
;
6482 if (first_tabpage
->tp_next
== NULL
)
6483 MSG(_("Already only one tab page"));
6486 /* Repeat this up to a 1000 times, because autocommands may mess
6488 for (done
= 0; done
< 1000; ++done
)
6490 for (tp
= first_tabpage
; tp
!= NULL
; tp
= tp
->tp_next
)
6491 if (tp
->tp_topframe
!= topframe
)
6493 tabpage_close_other(tp
, eap
->forceit
);
6494 /* if we failed to close it quit */
6495 if (valid_tabpage(tp
))
6497 /* start over, "tp" is now invalid */
6500 if (first_tabpage
->tp_next
== NULL
)
6507 * Close the current tab page.
6510 tabpage_close(forceit
)
6513 /* First close all the windows but the current one. If that worked then
6514 * close the last window in this tab, that will close it. */
6515 if (lastwin
!= firstwin
)
6516 close_others(TRUE
, forceit
);
6517 if (lastwin
== firstwin
)
6518 ex_win_close(forceit
, curwin
, NULL
);
6520 need_mouse_correct
= TRUE
;
6525 * Close tab page "tp", which is not the current tab page.
6526 * Note that autocommands may make "tp" invalid.
6527 * Also takes care of the tab pages line disappearing when closing the
6528 * last-but-one tab page.
6531 tabpage_close_other(tp
, forceit
)
6537 int h
= tabline_height();
6539 /* Limit to 1000 windows, autocommands may add a window while we close
6540 * one. OK, so I'm paranoid... */
6541 while (++done
< 1000)
6543 wp
= tp
->tp_firstwin
;
6544 ex_win_close(forceit
, wp
, tp
);
6546 /* Autocommands may delete the tab page under our fingers and we may
6547 * fail to close a window with a modified buffer. */
6548 if (!valid_tabpage(tp
) || tp
->tp_firstwin
== wp
)
6552 redraw_tabline
= TRUE
;
6553 if (h
!= tabline_height())
6565 need_mouse_correct
= TRUE
;
6567 close_others(TRUE
, eap
->forceit
);
6571 * ":all" and ":sall".
6572 * Also used for ":tab drop file ..." after setting the argument list.
6578 if (eap
->addr_count
== 0)
6580 do_arg_all((int)eap
->line2
, eap
->forceit
, eap
->cmdidx
== CMD_drop
);
6582 #endif /* FEAT_WINDOWS */
6588 if (*eap
->arg
!= NUL
&& check_nextcmd(eap
->arg
) == NULL
)
6589 eap
->errmsg
= e_invarg
;
6592 /* ":hide" or ":hide | cmd": hide current window */
6593 eap
->nextcmd
= check_nextcmd(eap
->arg
);
6598 need_mouse_correct
= TRUE
;
6600 win_close(curwin
, FALSE
); /* don't free buffer */
6607 * ":stop" and ":suspend": Suspend Vim.
6614 * Disallow suspending for "rvim".
6616 if (!check_restricted()
6619 * Check if external commands are allowed now.
6621 && can_end_termcap_mode(TRUE
)
6627 windgoto((int)Rows
- 1, 0);
6631 out_flush(); /* needed for SUN to restore xterm buffer */
6633 mch_restore_title(3); /* restore window titles */
6635 ui_suspend(); /* call machine specific function */
6638 resettitle(); /* force updating the title */
6641 scroll_start(); /* scroll screen before redrawing */
6642 redraw_later_clear();
6643 shell_resized(); /* may have resized window */
6648 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6655 if (cmdwin_type
!= 0)
6657 cmdwin_result
= Ctrl_C
;
6661 /* Don't quit while editing the command line. */
6668 if (curbuf_locked())
6673 * if more files or windows we won't exit
6675 if (check_more(FALSE
, eap
->forceit
) == OK
&& only_one_window())
6677 if ( ((eap
->cmdidx
== CMD_wq
6678 || curbufIsChanged())
6679 && do_write(eap
) == FAIL
)
6680 || check_more(TRUE
, eap
->forceit
) == FAIL
6681 || (only_one_window() && check_changed_any(eap
->forceit
)))
6688 if (only_one_window()) /* quit last window, exit Vim */
6693 need_mouse_correct
= TRUE
;
6695 /* quit current window, may free buffer */
6696 win_close(curwin
, !P_HID(curwin
->w_buffer
));
6702 * ":print", ":list", ":number".
6708 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
6709 EMSG(_(e_emptybuf
));
6712 for ( ;!got_int
; ui_breakcheck())
6714 print_line(eap
->line1
,
6715 (eap
->cmdidx
== CMD_number
|| eap
->cmdidx
== CMD_pound
6716 || (eap
->flags
& EXFLAG_NR
)),
6717 eap
->cmdidx
== CMD_list
|| (eap
->flags
& EXFLAG_LIST
));
6718 if (++eap
->line1
> eap
->line2
)
6720 out_flush(); /* show one line at a time */
6723 /* put cursor at last line */
6724 curwin
->w_cursor
.lnum
= eap
->line2
;
6725 beginline(BL_SOL
| BL_FIX
);
6728 ex_no_reprint
= TRUE
;
6736 goto_byte(eap
->line2
);
6745 exarg_T
*eap UNUSED
;
6750 #if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6751 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
6752 || defined(FEAT_GUI_MSWIN) \
6753 || defined(FEAT_GUI_MAC) \
6757 * Handle a file drop. The code is here because a drop is *nearly* like an
6758 * :args command, but not quite (we have a list of exact filenames, so we
6759 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6760 * code is very similar to :args and hence needs access to a lot of the static
6761 * functions in this file.
6763 * The list should be allocated using alloc(), as should each item in the
6764 * list. This function takes over responsibility for freeing the list.
6766 * XXX The list is made into the argument list. This is freed using
6767 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6768 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6769 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6770 * file functionality is (currently) not in EMX this is not presently a
6774 handle_drop(filec
, filev
, split
)
6775 int filec
; /* the number of files dropped */
6776 char_u
**filev
; /* the list of files dropped */
6777 int split
; /* force splitting the window */
6780 int save_msg_scroll
= msg_scroll
;
6782 /* Postpone this while editing the command line. */
6786 if (curbuf_locked())
6789 /* When the screen is being updated we should not change buffers and
6790 * windows structures, it may cause freed memory to be used. */
6791 if (updating_screen
)
6794 /* Check whether the current buffer is changed. If so, we will need
6795 * to split the current window or data could be lost.
6796 * We don't need to check if the 'hidden' option is set, as in this
6797 * case the buffer won't be lost.
6799 if (!P_HID(curbuf
) && !split
)
6802 split
= check_changed(curbuf
, TRUE
, FALSE
, FALSE
, FALSE
);
6807 # ifdef FEAT_WINDOWS
6808 if (win_split(0, 0) == FAIL
)
6810 # ifdef FEAT_SCROLLBIND
6811 curwin
->w_p_scb
= FALSE
;
6814 /* When splitting the window, create a new alist. Otherwise the
6815 * existing one is overwritten. */
6816 alist_unlink(curwin
->w_alist
);
6819 return; /* can't split, always fail */
6824 * Set up the new argument list.
6826 alist_set(ALIST(curwin
), filec
, filev
, FALSE
, NULL
, 0);
6829 * Move to the first file.
6831 /* Fake up a minimal "next" command for do_argfile() */
6832 vim_memset(&ea
, 0, sizeof(ea
));
6833 ea
.cmd
= (char_u
*)"next";
6836 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6837 * mode that is not needed here. */
6838 need_start_insertmode
= FALSE
;
6840 /* Restore msg_scroll, otherwise a following command may cause scrolling
6841 * unexpectedly. The screen will be redrawn by the caller, thus
6842 * msg_scroll being set by displaying a message is irrelevant. */
6843 msg_scroll
= save_msg_scroll
;
6848 * Clear an argument list: free all file names and reset it to zero entries.
6854 while (--al
->al_ga
.ga_len
>= 0)
6855 vim_free(AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fname
);
6856 ga_clear(&al
->al_ga
);
6860 * Init an argument list.
6866 ga_init2(&al
->al_ga
, (int)sizeof(aentry_T
), 5);
6869 #if defined(FEAT_WINDOWS) || defined(PROTO)
6872 * Remove a reference from an argument list.
6873 * Ignored when the argument list is the global one.
6874 * If the argument list is no longer used by any window, free it.
6880 if (al
!= &global_alist
&& --al
->al_refcount
<= 0)
6887 # if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6889 * Create a new argument list and use it for the current window.
6894 curwin
->w_alist
= (alist_T
*)alloc((unsigned)sizeof(alist_T
));
6895 if (curwin
->w_alist
== NULL
)
6897 curwin
->w_alist
= &global_alist
;
6898 ++global_alist
.al_refcount
;
6902 curwin
->w_alist
->al_refcount
= 1;
6903 alist_init(curwin
->w_alist
);
6909 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6911 * Expand the file names in the global argument list.
6912 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6913 * numbers to be re-used.
6916 alist_expand(fnum_list
, fnum_len
)
6920 char_u
**old_arg_files
;
6922 char_u
**new_arg_files
;
6923 int new_arg_file_count
;
6924 char_u
*save_p_su
= p_su
;
6927 /* Don't use 'suffixes' here. This should work like the shell did the
6928 * expansion. Also, the vimrc file isn't read yet, thus the user
6929 * can't set the options. */
6930 p_su
= empty_option
;
6931 old_arg_files
= (char_u
**)alloc((unsigned)(sizeof(char_u
*) * GARGCOUNT
));
6932 if (old_arg_files
!= NULL
)
6934 for (i
= 0; i
< GARGCOUNT
; ++i
)
6935 old_arg_files
[i
] = vim_strsave(GARGLIST
[i
].ae_fname
);
6936 old_arg_count
= GARGCOUNT
;
6937 if (expand_wildcards(old_arg_count
, old_arg_files
,
6938 &new_arg_file_count
, &new_arg_files
,
6939 EW_FILE
|EW_NOTFOUND
|EW_ADDSLASH
) == OK
6940 && new_arg_file_count
> 0)
6942 alist_set(&global_alist
, new_arg_file_count
, new_arg_files
,
6943 TRUE
, fnum_list
, fnum_len
);
6944 FreeWild(old_arg_count
, old_arg_files
);
6952 * Set the argument list for the current window.
6953 * Takes over the allocated files[] and the allocated fnames in it.
6956 alist_set(al
, count
, files
, use_curbuf
, fnum_list
, fnum_len
)
6967 if (ga_grow(&al
->al_ga
, count
) == OK
)
6969 for (i
= 0; i
< count
; ++i
)
6973 /* When adding many buffers this can take a long time. Allow
6974 * interrupting here. */
6976 vim_free(files
[i
++]);
6980 /* May set buffer name of a buffer previously used for the
6981 * argument list, so that it's re-used by alist_add. */
6982 if (fnum_list
!= NULL
&& i
< fnum_len
)
6983 buf_set_name(fnum_list
[i
], files
[i
]);
6985 alist_add(al
, files
[i
], use_curbuf
? 2 : 1);
6991 FreeWild(count
, files
);
6993 if (al
== &global_alist
)
6995 arg_had_last
= FALSE
;
6999 * Add file "fname" to argument list "al".
7000 * "fname" must have been allocated and "al" must have been checked for room.
7003 alist_add(al
, fname
, set_fnum
)
7006 int set_fnum
; /* 1: set buffer number; 2: re-use curbuf */
7008 if (fname
== NULL
) /* don't add NULL file names */
7010 #ifdef BACKSLASH_IN_FILENAME
7011 slash_adjust(fname
);
7013 AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fname
= fname
;
7015 AARGLIST(al
)[al
->al_ga
.ga_len
].ae_fnum
=
7016 buflist_add(fname
, BLN_LISTED
| (set_fnum
== 2 ? BLN_CURBUF
: 0));
7020 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7022 * Adjust slashes in file names. Called after 'shellslash' was set.
7025 alist_slash_adjust()
7028 # ifdef FEAT_WINDOWS
7033 for (i
= 0; i
< GARGCOUNT
; ++i
)
7034 if (GARGLIST
[i
].ae_fname
!= NULL
)
7035 slash_adjust(GARGLIST
[i
].ae_fname
);
7036 # ifdef FEAT_WINDOWS
7037 FOR_ALL_TAB_WINDOWS(tp
, wp
)
7038 if (wp
->w_alist
!= &global_alist
)
7039 for (i
= 0; i
< WARGCOUNT(wp
); ++i
)
7040 if (WARGLIST(wp
)[i
].ae_fname
!= NULL
)
7041 slash_adjust(WARGLIST(wp
)[i
].ae_fname
);
7051 exarg_T
*eap UNUSED
;
7053 curbuf
->b_flags
|= BF_PRESERVED
;
7054 ml_preserve(curbuf
, TRUE
);
7064 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7065 recoverymode
= TRUE
;
7066 if (!check_changed(curbuf
, p_awa
, TRUE
, eap
->forceit
, FALSE
)
7067 && (*eap
->arg
== NUL
7068 || setfname(curbuf
, eap
->arg
, NULL
, TRUE
) == OK
))
7070 recoverymode
= FALSE
;
7074 * Command modifier used in a wrong way.
7077 ex_wrongmodifier(eap
)
7080 eap
->errmsg
= e_invcmd
;
7085 * :sview [+command] file split window with new file, read-only
7086 * :split [[+command] file] split window with current or new file
7087 * :vsplit [[+command] file] split window vertically with current or new file
7088 * :new [[+command] file] split window with no or new file
7089 * :vnew [[+command] file] split vertically window with no or new file
7090 * :sfind [+command] file split window with file in 'path'
7092 * :tabedit open new Tab page with empty window
7093 * :tabedit [+command] file open new Tab page and edit "file"
7094 * :tabnew [[+command] file] just like :tabedit
7095 * :tabfind [+command] file open new Tab page and find "file"
7101 win_T
*old_curwin
= curwin
;
7102 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7103 char_u
*fname
= NULL
;
7106 int browse_flag
= cmdmod
.browse
;
7109 # ifndef FEAT_VERTSPLIT
7110 if (eap
->cmdidx
== CMD_vsplit
|| eap
->cmdidx
== CMD_vnew
)
7118 need_mouse_correct
= TRUE
;
7121 # ifdef FEAT_QUICKFIX
7122 /* A ":split" in the quickfix window works like ":new". Don't want two
7123 * quickfix windows. But it's OK when doing ":tab split". */
7124 if (bt_quickfix(curbuf
) && cmdmod
.tab
== 0)
7126 if (eap
->cmdidx
== CMD_split
)
7127 eap
->cmdidx
= CMD_new
;
7128 # ifdef FEAT_VERTSPLIT
7129 if (eap
->cmdidx
== CMD_vsplit
)
7130 eap
->cmdidx
= CMD_vnew
;
7135 # ifdef FEAT_SEARCHPATH
7136 if (eap
->cmdidx
== CMD_sfind
|| eap
->cmdidx
== CMD_tabfind
)
7138 fname
= find_file_in_path(eap
->arg
, (int)STRLEN(eap
->arg
),
7139 FNAME_MESS
, TRUE
, curbuf
->b_ffname
);
7150 # ifdef FEAT_VERTSPLIT
7151 && eap
->cmdidx
!= CMD_vnew
7153 && eap
->cmdidx
!= CMD_new
)
7155 # ifdef FEAT_AUTOCMD
7160 au_has_group((char_u
*)"FileExplorer"))
7162 /* No browsing supported but we do have the file explorer:
7163 * Edit the directory. */
7164 if (*eap
->arg
== NUL
|| !mch_isdir(eap
->arg
))
7165 eap
->arg
= (char_u
*)".";
7170 fname
= do_browse(0, (char_u
*)_("Edit File in new window"),
7171 eap
->arg
, NULL
, NULL
, NULL
, curbuf
);
7177 cmdmod
.browse
= FALSE
; /* Don't browse again in do_ecmd(). */
7181 * Either open new tab page or split the window.
7183 if (eap
->cmdidx
== CMD_tabedit
7184 || eap
->cmdidx
== CMD_tabfind
7185 || eap
->cmdidx
== CMD_tabnew
)
7187 if (win_new_tabpage(cmdmod
.tab
!= 0 ? cmdmod
.tab
7188 : eap
->addr_count
== 0 ? 0
7189 : (int)eap
->line2
+ 1) != FAIL
)
7191 do_exedit(eap
, old_curwin
);
7193 /* set the alternate buffer for the window we came from */
7194 if (curwin
!= old_curwin
7195 && win_valid(old_curwin
)
7196 && old_curwin
->w_buffer
!= curbuf
7198 old_curwin
->w_alt_fnum
= curbuf
->b_fnum
;
7201 else if (win_split(eap
->addr_count
> 0 ? (int)eap
->line2
: 0,
7202 *eap
->cmd
== 'v' ? WSP_VERT
: 0) != FAIL
)
7204 # ifdef FEAT_SCROLLBIND
7205 /* Reset 'scrollbind' when editing another file, but keep it when
7206 * doing ":split" without arguments. */
7207 if (*eap
->arg
!= NUL
7212 curwin
->w_p_scb
= FALSE
;
7214 do_check_scrollbind(FALSE
);
7216 do_exedit(eap
, old_curwin
);
7220 cmdmod
.browse
= browse_flag
;
7223 # if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
7230 * Open a new tab page.
7237 vim_memset(&ea
, 0, sizeof(ea
));
7238 ea
.cmdidx
= CMD_tabnew
;
7239 ea
.cmd
= (char_u
*)"tabn";
7240 ea
.arg
= (char_u
*)"";
7251 switch (eap
->cmdidx
)
7260 case CMD_tabprevious
:
7262 goto_tabpage(eap
->addr_count
== 0 ? -1 : -(int)eap
->line2
);
7264 default: /* CMD_tabnext */
7265 goto_tabpage(eap
->addr_count
== 0 ? 0 : (int)eap
->line2
);
7277 tabpage_move(eap
->addr_count
== 0 ? 9999 : (int)eap
->line2
);
7281 * :tabs command: List tabs and their contents.
7285 exarg_T
*eap UNUSED
;
7293 for (tp
= first_tabpage
; tp
!= NULL
&& !got_int
; tp
= tp
->tp_next
)
7296 vim_snprintf((char *)IObuff
, IOSIZE
, _("Tab page %d"), tabcount
++);
7297 msg_outtrans_attr(IObuff
, hl_attr(HLF_T
));
7298 out_flush(); /* output one line at a time */
7304 wp
= tp
->tp_firstwin
;
7305 for ( ; wp
!= NULL
&& !got_int
; wp
= wp
->w_next
)
7308 msg_putchar(wp
== curwin
? '>' : ' ');
7310 msg_putchar(bufIsChanged(wp
->w_buffer
) ? '+' : ' ');
7312 if (buf_spname(wp
->w_buffer
) != NULL
)
7313 STRCPY(IObuff
, buf_spname(wp
->w_buffer
));
7315 home_replace(wp
->w_buffer
, wp
->w_buffer
->b_fname
,
7316 IObuff
, IOSIZE
, TRUE
);
7317 msg_outtrans(IObuff
);
7318 out_flush(); /* output one line at a time */
7324 #endif /* FEAT_WINDOWS */
7327 * ":mode": Set screen mode.
7328 * If no argument given, just get the screen size and redraw.
7334 if (*eap
->arg
== NUL
)
7337 mch_screenmode(eap
->arg
);
7343 * set, increment or decrement current window height
7352 if (eap
->addr_count
> 0)
7355 for (wp
= firstwin
; wp
->w_next
!= NULL
&& --n
> 0; wp
= wp
->w_next
)
7360 need_mouse_correct
= TRUE
;
7362 n
= atol((char *)eap
->arg
);
7363 #ifdef FEAT_VERTSPLIT
7364 if (cmdmod
.split
& WSP_VERT
)
7366 if (*eap
->arg
== '-' || *eap
->arg
== '+')
7367 n
+= W_WIDTH(curwin
);
7368 else if (n
== 0 && eap
->arg
[0] == NUL
) /* default is very wide */
7370 win_setwidth_win((int)n
, wp
);
7375 if (*eap
->arg
== '-' || *eap
->arg
== '+')
7376 n
+= curwin
->w_height
;
7377 else if (n
== 0 && eap
->arg
[0] == NUL
) /* default is very wide */
7379 win_setheight_win((int)n
, wp
);
7385 * ":find [+command] <file>" command.
7391 #ifdef FEAT_SEARCHPATH
7395 fname
= find_file_in_path(eap
->arg
, (int)STRLEN(eap
->arg
), FNAME_MESS
,
7396 TRUE
, curbuf
->b_ffname
);
7397 if (eap
->addr_count
> 0)
7399 /* Repeat finding the file "count" times. This matters when it
7400 * appears several times in the path. */
7402 while (fname
!= NULL
&& --count
> 0)
7405 fname
= find_file_in_path(NULL
, 0, FNAME_MESS
,
7406 FALSE
, curbuf
->b_ffname
);
7414 do_exedit(eap
, NULL
);
7415 #ifdef FEAT_SEARCHPATH
7422 * ":open" simulation: for now just work like ":visual".
7428 regmatch_T regmatch
;
7431 curwin
->w_cursor
.lnum
= eap
->line2
;
7432 beginline(BL_SOL
| BL_FIX
);
7433 if (*eap
->arg
== '/')
7435 /* ":open /pattern/": put cursor in column found with pattern */
7437 p
= skip_regexp(eap
->arg
, '/', p_magic
, NULL
);
7439 regmatch
.regprog
= vim_regcomp(eap
->arg
, p_magic
? RE_MAGIC
: 0);
7440 if (regmatch
.regprog
!= NULL
)
7442 regmatch
.rm_ic
= p_ic
;
7443 p
= ml_get_curline();
7444 if (vim_regexec(®match
, p
, (colnr_T
)0))
7445 curwin
->w_cursor
.col
= (colnr_T
)(regmatch
.startp
[0] - p
);
7448 vim_free(regmatch
.regprog
);
7450 /* Move to the NUL, ignore any other arguments. */
7451 eap
->arg
+= STRLEN(eap
->arg
);
7455 eap
->cmdidx
= CMD_visual
;
7456 do_exedit(eap
, NULL
);
7460 * ":edit", ":badd", ":visual".
7466 do_exedit(eap
, NULL
);
7470 * ":edit <file>" command and alikes.
7473 do_exedit(eap
, old_curwin
)
7475 win_T
*old_curwin
; /* curwin before doing a split or NULL */
7481 int exmode_was
= exmode_active
;
7484 * ":vi" command ends Ex mode.
7486 if (exmode_active
&& (eap
->cmdidx
== CMD_visual
7487 || eap
->cmdidx
== CMD_view
))
7489 exmode_active
= FALSE
;
7490 if (*eap
->arg
== NUL
)
7492 /* Special case: ":global/pat/visual\NLvi-commands" */
7495 int rd
= RedrawingDisabled
;
7496 int nwr
= no_wait_return
;
7497 int ms
= msg_scroll
;
7499 int he
= hold_gui_events
;
7502 if (eap
->nextcmd
!= NULL
)
7504 stuffReadbuff(eap
->nextcmd
);
7505 eap
->nextcmd
= NULL
;
7508 if (exmode_was
!= EXMODE_VIM
)
7509 settmode(TMODE_RAW
);
7510 RedrawingDisabled
= 0;
7512 need_wait_return
= FALSE
;
7515 hold_gui_events
= 0;
7517 must_redraw
= CLEAR
;
7519 main_loop(FALSE
, TRUE
);
7521 RedrawingDisabled
= rd
;
7522 no_wait_return
= nwr
;
7525 hold_gui_events
= he
;
7532 if ((eap
->cmdidx
== CMD_new
7533 || eap
->cmdidx
== CMD_tabnew
7534 || eap
->cmdidx
== CMD_tabedit
7535 #ifdef FEAT_VERTSPLIT
7536 || eap
->cmdidx
== CMD_vnew
7538 ) && *eap
->arg
== NUL
)
7540 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
7542 (void)do_ecmd(0, NULL
, NULL
, eap
, ECMD_ONE
,
7543 ECMD_HIDE
+ (eap
->forceit
? ECMD_FORCEIT
: 0),
7544 old_curwin
== NULL
? curwin
: NULL
);
7546 else if ((eap
->cmdidx
!= CMD_split
7547 #ifdef FEAT_VERTSPLIT
7548 && eap
->cmdidx
!= CMD_vsplit
7558 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7559 * can bring us here, others are stopped earlier. */
7560 if (*eap
->arg
!= NUL
&& curbuf_locked())
7564 if (eap
->cmdidx
== CMD_view
|| eap
->cmdidx
== CMD_sview
)
7565 readonlymode
= TRUE
;
7566 else if (eap
->cmdidx
== CMD_enew
)
7567 readonlymode
= FALSE
; /* 'readonly' doesn't make sense in an
7570 if (do_ecmd(0, (eap
->cmdidx
== CMD_enew
? NULL
: eap
->arg
),
7572 /* ":edit" goes to first line if Vi compatible */
7573 (*eap
->arg
== NUL
&& eap
->do_ecmd_lnum
== 0
7574 && vim_strchr(p_cpo
, CPO_GOTO1
) != NULL
)
7575 ? ECMD_ONE
: eap
->do_ecmd_lnum
,
7576 (P_HID(curbuf
) ? ECMD_HIDE
: 0)
7577 + (eap
->forceit
? ECMD_FORCEIT
: 0)
7578 #ifdef FEAT_LISTCMDS
7579 + (eap
->cmdidx
== CMD_badd
? ECMD_ADDBUF
: 0 )
7581 , old_curwin
== NULL
? curwin
: NULL
) == FAIL
)
7583 /* Editing the file failed. If the window was split, close it. */
7585 if (old_curwin
!= NULL
)
7587 need_hide
= (curbufIsChanged() && curbuf
->b_nwindows
<= 1);
7588 if (!need_hide
|| P_HID(curbuf
))
7590 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7593 /* Reset the error/interrupt/exception state here so that
7594 * aborting() returns FALSE when closing a window. */
7598 need_mouse_correct
= TRUE
;
7600 win_close(curwin
, !need_hide
&& !P_HID(curbuf
));
7602 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7603 /* Restore the error/interrupt/exception state if not
7604 * discarded by a new aborting error, interrupt, or
7605 * uncaught exception. */
7612 else if (readonlymode
&& curbuf
->b_nwindows
== 1)
7614 /* When editing an already visited buffer, 'readonly' won't be set
7615 * but the previous value is kept. With ":view" and ":sview" we
7616 * want the file to be readonly, except when another window is
7617 * editing the same buffer. */
7618 curbuf
->b_p_ro
= TRUE
;
7624 if (eap
->do_ecmd_cmd
!= NULL
)
7625 do_cmdline_cmd(eap
->do_ecmd_cmd
);
7627 n
= curwin
->w_arg_idx_invalid
;
7629 check_arg_idx(curwin
);
7631 if (n
!= curwin
->w_arg_idx_invalid
)
7638 * if ":split file" worked, set alternate file name in old window to new
7641 if (old_curwin
!= NULL
7643 && curwin
!= old_curwin
7644 && win_valid(old_curwin
)
7645 && old_curwin
->w_buffer
!= curbuf
7647 old_curwin
->w_alt_fnum
= curbuf
->b_fnum
;
7650 ex_no_reprint
= TRUE
;
7655 * ":gui" and ":gvim" when there is no GUI.
7661 eap
->errmsg
= e_nogvim
;
7665 #if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7670 gui_make_tearoff(eap
->arg
);
7674 #if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
7679 gui_make_popup(eap
->arg
, eap
->forceit
);
7685 exarg_T
*eap UNUSED
;
7687 if (curbuf
->b_ml
.ml_mfp
== NULL
|| curbuf
->b_ml
.ml_mfp
->mf_fname
== NULL
)
7688 MSG(_("No swap file"));
7690 msg(curbuf
->b_ml
.ml_mfp
->mf_fname
);
7694 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7696 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7700 exarg_T
*eap UNUSED
;
7702 #ifdef FEAT_SCROLLBIND
7706 linenr_T old_linenr
= curwin
->w_cursor
.lnum
;
7711 * determine max topline
7713 if (curwin
->w_p_scb
)
7715 topline
= curwin
->w_topline
;
7716 for (wp
= firstwin
; wp
; wp
= wp
->w_next
)
7718 if (wp
->w_p_scb
&& wp
->w_buffer
)
7720 y
= wp
->w_buffer
->b_ml
.ml_line_count
- p_so
;
7735 * set all scrollbind windows to the same topline
7738 for (curwin
= firstwin
; curwin
; curwin
= curwin
->w_next
)
7740 if (curwin
->w_p_scb
)
7742 y
= topline
- curwin
->w_topline
;
7746 scrolldown(-y
, TRUE
);
7747 curwin
->w_scbind_pos
= topline
;
7748 redraw_later(VALID
);
7751 curwin
->w_redr_status
= TRUE
;
7756 if (curwin
->w_p_scb
)
7758 did_syncbind
= TRUE
;
7760 if (old_linenr
!= curwin
->w_cursor
.lnum
)
7766 ins_typebuf(ctrl_o
, REMAP_NONE
, 0, TRUE
, FALSE
);
7778 int empty
= (curbuf
->b_ml
.ml_flags
& ML_EMPTY
);
7781 if (eap
->usefilter
) /* :r!cmd */
7782 do_bang(1, eap
, FALSE
, FALSE
, TRUE
);
7785 if (u_save(eap
->line2
, (linenr_T
)(eap
->line2
+ 1)) == FAIL
)
7793 browseFile
= do_browse(0, (char_u
*)_("Append File"), eap
->arg
,
7794 NULL
, NULL
, NULL
, curbuf
);
7795 if (browseFile
!= NULL
)
7797 i
= readfile(browseFile
, NULL
,
7798 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7799 vim_free(browseFile
);
7806 if (*eap
->arg
== NUL
)
7808 if (check_fname() == FAIL
) /* check for no file name */
7810 i
= readfile(curbuf
->b_ffname
, curbuf
->b_fname
,
7811 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7815 if (vim_strchr(p_cpo
, CPO_ALTREAD
) != NULL
)
7816 (void)setaltfname(eap
->arg
, eap
->arg
, (linenr_T
)1);
7817 i
= readfile(eap
->arg
, NULL
,
7818 eap
->line2
, (linenr_T
)0, (linenr_T
)MAXLNUM
, eap
, 0);
7823 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7826 EMSG2(_(e_notopen
), eap
->arg
);
7830 if (empty
&& exmode_active
)
7832 /* Delete the empty line that remains. Historically ex does
7833 * this but vi doesn't. */
7834 if (eap
->line2
== 0)
7835 lnum
= curbuf
->b_ml
.ml_line_count
;
7838 if (*ml_get(lnum
) == NUL
&& u_savedel(lnum
, 1L) == OK
)
7840 ml_delete(lnum
, FALSE
);
7841 deleted_lines_mark(lnum
, 1L);
7842 if (curwin
->w_cursor
.lnum
> 1
7843 && curwin
->w_cursor
.lnum
>= lnum
)
7844 --curwin
->w_cursor
.lnum
;
7847 redraw_curbuf_later(VALID
);
7852 static char_u
*prev_dir
= NULL
;
7854 #if defined(EXITFREE) || defined(PROTO)
7861 vim_free(globaldir
);
7868 * ":cd", ":lcd", ":chdir" and ":lchdir".
7878 #if !defined(UNIX) && !defined(VMS)
7879 /* for non-UNIX ":cd" means: print current directory */
7880 if (*new_dir
== NUL
)
7886 if (allbuf_locked())
7889 if (vim_strchr(p_cpo
, CPO_CHDIR
) != NULL
&& curbufIsChanged()
7892 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
7896 /* ":cd -": Change to previous directory */
7897 if (STRCMP(new_dir
, "-") == 0)
7899 if (prev_dir
== NULL
)
7901 EMSG(_("E186: No previous directory"));
7907 /* Save current directory for next ":cd -" */
7909 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7910 prev_dir
= vim_strsave(NameBuff
);
7914 #if defined(UNIX) || defined(VMS)
7915 /* for UNIX ":cd" means: go to home directory */
7916 if (*new_dir
== NUL
)
7918 /* use NameBuff for home directory name */
7922 p
= mch_getenv((char_u
*)"SYS$LOGIN");
7923 if (p
== NULL
|| *p
== NUL
) /* empty is the same as not set */
7926 vim_strncpy(NameBuff
, p
, MAXPATHL
- 1);
7928 expand_env((char_u
*)"$HOME", NameBuff
, MAXPATHL
);
7933 if (new_dir
== NULL
|| vim_chdir(new_dir
))
7937 vim_free(curwin
->w_localdir
);
7938 if (eap
->cmdidx
== CMD_lcd
|| eap
->cmdidx
== CMD_lchdir
)
7940 /* If still in global directory, need to remember current
7941 * directory as global directory. */
7942 if (globaldir
== NULL
&& prev_dir
!= NULL
)
7943 globaldir
= vim_strsave(prev_dir
);
7944 /* Remember this local directory for the window. */
7945 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7946 curwin
->w_localdir
= vim_strsave(NameBuff
);
7950 /* We are now in the global directory, no need to remember its
7952 vim_free(globaldir
);
7954 curwin
->w_localdir
= NULL
;
7957 shorten_fnames(TRUE
);
7959 /* Echo the new current directory if the command was typed. */
7972 exarg_T
*eap UNUSED
;
7974 if (mch_dirname(NameBuff
, MAXPATHL
) == OK
)
7976 #ifdef BACKSLASH_IN_FILENAME
7977 slash_adjust(NameBuff
);
7982 EMSG(_("E187: Unknown"));
7992 smsg((char_u
*)"%ld", (long)eap
->line2
);
8005 n
= W_WINROW(curwin
) + curwin
->w_wrow
- msg_scrolled
;
8007 windgoto((int)n
, curwin
->w_wcol
);
8014 case NUL
: len
*= 1000L; break;
8015 default: EMSG2(_(e_invarg2
), eap
->arg
); return;
8021 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
8031 for (done
= 0; !got_int
&& done
< msec
; done
+= 1000L)
8033 ui_delay(msec
- done
> 1000L ? 1000L : msec
- done
, TRUE
);
8039 do_exmap(eap
, isabbrev
)
8047 mode
= get_map_mode(&cmdp
, eap
->forceit
|| isabbrev
);
8049 switch (do_map((*cmdp
== 'n') ? 2 : (*cmdp
== 'u'),
8050 eap
->arg
, mode
, isabbrev
))
8052 case 1: EMSG(_(e_invarg
));
8054 case 2: EMSG(isabbrev
? _(e_noabbr
) : _(e_nomap
));
8060 * ":winsize" command (obsolete).
8067 char_u
*arg
= eap
->arg
;
8070 w
= getdigits(&arg
);
8071 arg
= skipwhite(arg
);
8073 h
= getdigits(&arg
);
8074 if (*p
!= NUL
&& *arg
== NUL
)
8075 set_shellsize(w
, h
, TRUE
);
8077 EMSG(_("E465: :winsize requires two number arguments"));
8088 if (*eap
->arg
== 'g' || *eap
->arg
== Ctrl_G
)
8090 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8091 if (eap
->arg
[1] == NUL
)
8096 xchar
= eap
->arg
[1];
8102 eap
->nextcmd
= check_nextcmd(p
);
8104 if (*p
!= NUL
&& *p
!= '"' && eap
->nextcmd
== NULL
)
8108 /* Pass flags on for ":vertical wincmd ]". */
8109 postponed_split_flags
= cmdmod
.split
;
8110 postponed_split_tab
= cmdmod
.tab
;
8111 do_window(*eap
->arg
, eap
->addr_count
> 0 ? eap
->line2
: 0L, xchar
);
8112 postponed_split_flags
= 0;
8113 postponed_split_tab
= 0;
8118 #if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
8127 char_u
*arg
= eap
->arg
;
8132 # if defined(FEAT_GUI) || defined(MSWIN)
8134 if (gui
.in_use
&& gui_mch_get_winpos(&x
, &y
) != FAIL
)
8136 if (mch_get_winpos(&x
, &y
) != FAIL
)
8139 sprintf((char *)IObuff
, _("Window position: X %d, Y %d"), x
, y
);
8144 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8148 x
= getdigits(&arg
);
8149 arg
= skipwhite(arg
);
8151 y
= getdigits(&arg
);
8152 if (*p
== NUL
|| *arg
!= NUL
)
8154 EMSG(_("E466: :winpos requires two number arguments"));
8159 gui_mch_set_winpos(x
, y
);
8160 else if (gui
.starting
)
8162 /* Remember the coordinates for when the window is opened. */
8166 # ifdef HAVE_TGETENT
8171 mch_set_winpos(x
, y
);
8174 # ifdef HAVE_TGETENT
8176 term_set_winpos(x
, y
);
8183 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8192 oa
.regname
= eap
->regname
;
8193 oa
.start
.lnum
= eap
->line1
;
8194 oa
.end
.lnum
= eap
->line2
;
8195 oa
.line_count
= eap
->line2
- eap
->line1
+ 1;
8196 oa
.motion_type
= MLINE
;
8197 #ifdef FEAT_VIRTUALEDIT
8200 if (eap
->cmdidx
!= CMD_yank
) /* position cursor for undo */
8203 curwin
->w_cursor
.lnum
= eap
->line1
;
8204 beginline(BL_SOL
| BL_FIX
);
8207 switch (eap
->cmdidx
)
8210 oa
.op_type
= OP_DELETE
;
8215 oa
.op_type
= OP_YANK
;
8216 (void)op_yank(&oa
, FALSE
, TRUE
);
8219 default: /* CMD_rshift or CMD_lshift */
8220 if ((eap
->cmdidx
== CMD_rshift
)
8221 #ifdef FEAT_RIGHTLEFT
8225 oa
.op_type
= OP_RSHIFT
;
8227 oa
.op_type
= OP_LSHIFT
;
8228 op_shift(&oa
, FALSE
, eap
->amount
);
8231 #ifdef FEAT_VIRTUALEDIT
8244 /* ":0put" works like ":1put!". */
8245 if (eap
->line2
== 0)
8248 eap
->forceit
= TRUE
;
8250 curwin
->w_cursor
.lnum
= eap
->line2
;
8251 do_put(eap
->regname
, eap
->forceit
? BACKWARD
: FORWARD
, 1L,
8252 PUT_LINE
|PUT_CURSLINE
);
8256 * Handle ":copy" and ":move".
8264 n
= get_address(&eap
->arg
, FALSE
, FALSE
);
8265 if (eap
->arg
== NULL
) /* error detected */
8267 eap
->nextcmd
= NULL
;
8273 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8275 if (n
== MAXLNUM
|| n
< 0 || n
> curbuf
->b_ml
.ml_line_count
)
8281 if (eap
->cmdidx
== CMD_move
)
8283 if (do_move(eap
->line1
, eap
->line2
, n
) == FAIL
)
8287 ex_copy(eap
->line1
, eap
->line2
, n
);
8289 beginline(BL_SOL
| BL_FIX
);
8294 * Print the current line if flags were given to the Ex command.
8300 if (eap
->flags
!= 0)
8302 print_line(curwin
->w_cursor
.lnum
, (eap
->flags
& EXFLAG_NR
),
8303 (eap
->flags
& EXFLAG_LIST
));
8304 ex_no_reprint
= TRUE
;
8309 * ":smagic" and ":snomagic".
8315 int magic_save
= p_magic
;
8317 p_magic
= (eap
->cmdidx
== CMD_smagic
);
8319 p_magic
= magic_save
;
8329 curwin
->w_cursor
.lnum
= eap
->line1
;
8330 if (eap
->line1
== eap
->line2
)
8332 if (eap
->addr_count
>= 2) /* :2,2join does nothing */
8334 if (eap
->line2
== curbuf
->b_ml
.ml_line_count
)
8341 do_do_join(eap
->line2
- eap
->line1
+ 1, !eap
->forceit
);
8342 beginline(BL_WHITE
| BL_FIX
);
8347 * ":[addr]@r" or ":[addr]*r": execute register
8355 curwin
->w_cursor
.lnum
= eap
->line2
;
8357 #ifdef USE_ON_FLY_SCROLL
8358 dont_scroll
= TRUE
; /* disallow scrolling here */
8361 /* get the register name. No name means to use the previous one */
8363 if (c
== NUL
|| (c
== '*' && *eap
->cmd
== '*'))
8365 /* Put the register in the typeahead buffer with the "silent" flag. */
8366 if (do_execreg(c
, TRUE
, vim_strchr(p_cpo
, CPO_EXECBUF
) != NULL
, TRUE
)
8373 int save_efr
= exec_from_reg
;
8375 exec_from_reg
= TRUE
;
8378 * Execute from the typeahead buffer.
8379 * Originally this didn't check for the typeahead buffer to be empty,
8380 * thus could read more Ex commands from stdin. It's not clear why,
8381 * it is certainly unexpected.
8383 while ((!stuff_empty() || typebuf
.tb_len
> 0) && vpeekc() == ':')
8384 (void)do_cmdline(NULL
, getexline
, NULL
, DOCMD_NOWAIT
|DOCMD_VERBOSE
);
8386 exec_from_reg
= save_efr
;
8397 do_bang(eap
->addr_count
, eap
, eap
->forceit
, TRUE
, TRUE
);
8405 exarg_T
*eap UNUSED
;
8407 if (eap
->addr_count
== 1) /* :undo 123 */
8408 undo_time(eap
->line2
, FALSE
, TRUE
);
8418 exarg_T
*eap UNUSED
;
8424 * ":earlier" and ":later".
8432 char_u
*p
= eap
->arg
;
8436 else if (isdigit(*p
))
8438 count
= getdigits(&p
);
8441 case 's': ++p
; sec
= TRUE
; break;
8442 case 'm': ++p
; sec
= TRUE
; count
*= 60; break;
8443 case 'h': ++p
; sec
= TRUE
; count
*= 60 * 60; break;
8448 EMSG2(_(e_invarg2
), eap
->arg
);
8450 undo_time(eap
->cmdidx
== CMD_earlier
? -count
: count
, sec
, FALSE
);
8454 * ":redir": start/stop redirection.
8462 char_u
*arg
= eap
->arg
;
8464 if (STRICMP(eap
->arg
, "END") == 0)
8478 arg
= skipwhite(arg
);
8482 /* Expand environment variables and "~/". */
8483 fname
= expand_env_save(arg
);
8491 browseFile
= do_browse(BROWSE_SAVE
,
8492 (char_u
*)_("Save Redirection"),
8493 fname
, NULL
, NULL
, BROWSE_FILTER_ALL_FILES
, curbuf
);
8494 if (browseFile
== NULL
)
8495 return; /* operation cancelled */
8498 eap
->forceit
= TRUE
; /* since dialog already asked */
8502 redir_fd
= open_exfile(fname
, eap
->forceit
, mode
);
8506 else if (*arg
== '@')
8508 /* redirect to a register a-z (resp. A-Z for appending) */
8511 if (ASCII_ISALPHA(*arg
)
8512 # ifdef FEAT_CLIPBOARD
8519 if (*arg
== '>' && arg
[1] == '>') /* append */
8523 /* Can use both "@a" and "@a>". */
8526 /* Make register empty when not using @A-@Z and the
8527 * command is valid. */
8528 if (*arg
== NUL
&& !isupper(redir_reg
))
8529 write_reg_contents(redir_reg
, (char_u
*)"", -1, FALSE
);
8535 EMSG2(_(e_invarg2
), eap
->arg
);
8538 else if (*arg
== '=' && arg
[1] == '>')
8542 /* redirect to a variable */
8554 if (var_redir_start(skipwhite(arg
), append
) == OK
)
8559 /* TODO: redirect to a buffer */
8562 EMSG2(_(e_invarg2
), eap
->arg
);
8565 /* Make sure redirection is not off. Can happen for cmdline completion
8566 * that indirectly invokes a command to catch its output. */
8567 if (redir_fd
!= NULL
8569 || redir_reg
|| redir_vname
8576 * ":redraw": force redraw
8582 int r
= RedrawingDisabled
;
8585 RedrawingDisabled
= 0;
8588 update_screen(eap
->forceit
? CLEAR
:
8590 VIsual_active
? INVERTED
:
8597 RedrawingDisabled
= r
;
8600 /* Reset msg_didout, so that a message that's there is overwritten. */
8608 * ":redrawstatus": force redraw of status line(s)
8611 ex_redrawstatus(eap
)
8612 exarg_T
*eap UNUSED
;
8614 #if defined(FEAT_WINDOWS)
8615 int r
= RedrawingDisabled
;
8618 RedrawingDisabled
= 0;
8621 status_redraw_all();
8623 status_redraw_curbuf();
8626 VIsual_active
? INVERTED
:
8629 RedrawingDisabled
= r
;
8638 if (redir_fd
!= NULL
)
8653 #if defined(FEAT_SESSION) && defined(USE_CRNL)
8654 # define MKSESSION_NL
8655 static int mksession_nl
= FALSE
; /* use NL only in put_eol() */
8659 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8669 char_u
*browseFile
= NULL
;
8672 int view_session
= FALSE
;
8673 int using_vdir
= FALSE
; /* using 'viewdir'? */
8674 char_u
*viewFile
= NULL
;
8678 if (eap
->cmdidx
== CMD_mksession
|| eap
->cmdidx
== CMD_mkview
)
8681 view_session
= TRUE
;
8691 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8692 if (eap
->cmdidx
== CMD_mkview
8693 && (*eap
->arg
== NUL
8694 || (vim_isdigit(*eap
->arg
) && eap
->arg
[1] == NUL
)))
8696 eap
->forceit
= TRUE
;
8697 fname
= get_view_file(*eap
->arg
);
8705 if (*eap
->arg
!= NUL
)
8707 else if (eap
->cmdidx
== CMD_mkvimrc
)
8708 fname
= (char_u
*)VIMRC_FILE
;
8710 else if (eap
->cmdidx
== CMD_mksession
)
8711 fname
= (char_u
*)SESSION_FILE
;
8714 fname
= (char_u
*)EXRC_FILE
;
8719 browseFile
= do_browse(BROWSE_SAVE
,
8720 # ifdef FEAT_SESSION
8721 eap
->cmdidx
== CMD_mkview
? (char_u
*)_("Save View") :
8722 eap
->cmdidx
== CMD_mksession
? (char_u
*)_("Save Session") :
8724 (char_u
*)_("Save Setup"),
8725 fname
, (char_u
*)"vim", NULL
, BROWSE_FILTER_MACROS
, NULL
);
8726 if (browseFile
== NULL
)
8729 eap
->forceit
= TRUE
; /* since dialog already asked */
8733 #if defined(FEAT_SESSION) && defined(vim_mkdir)
8734 /* When using 'viewdir' may have to create the directory. */
8735 if (using_vdir
&& !mch_isdir(p_vdir
))
8736 vim_mkdir_emsg(p_vdir
, 0755);
8739 fd
= open_exfile(fname
, eap
->forceit
, WRITEBIN
);
8743 if (eap
->cmdidx
== CMD_mkview
)
8746 flagp
= &ssop_flags
;
8750 /* "unix" in 'sessionoptions': use NL line separator */
8751 if (view_session
&& (*flagp
& SSOP_UNIX
))
8752 mksession_nl
= TRUE
;
8755 /* Write the version command for :mkvimrc */
8756 if (eap
->cmdidx
== CMD_mkvimrc
)
8757 (void)put_line(fd
, "version 6.0");
8760 if (eap
->cmdidx
== CMD_mksession
)
8762 if (put_line(fd
, "let SessionLoad = 1") == FAIL
)
8766 if (eap
->cmdidx
!= CMD_mkview
)
8769 /* Write setting 'compatible' first, because it has side effects.
8770 * For that same reason only do it when needed. */
8772 (void)put_line(fd
, "if !&cp | set cp | endif");
8774 (void)put_line(fd
, "if &cp | set nocp | endif");
8779 || (eap
->cmdidx
== CMD_mksession
8780 && (*flagp
& SSOP_OPTIONS
)))
8782 failed
|= (makemap(fd
, NULL
) == FAIL
8783 || makeset(fd
, OPT_GLOBAL
, FALSE
) == FAIL
);
8786 if (!failed
&& view_session
)
8788 if (put_line(fd
, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL
)
8790 if (eap
->cmdidx
== CMD_mksession
)
8792 char_u dirnow
[MAXPATHL
]; /* current directory */
8795 * Change to session file's dir.
8797 if (mch_dirname(dirnow
, MAXPATHL
) == FAIL
8798 || mch_chdir((char *)dirnow
) != 0)
8800 if (*dirnow
!= NUL
&& (ssop_flags
& SSOP_SESDIR
))
8802 if (vim_chdirfile(fname
) == OK
)
8803 shorten_fnames(TRUE
);
8805 else if (*dirnow
!= NUL
8806 && (ssop_flags
& SSOP_CURDIR
) && globaldir
!= NULL
)
8808 if (mch_chdir((char *)globaldir
) == 0)
8809 shorten_fnames(TRUE
);
8812 failed
|= (makeopens(fd
, dirnow
) == FAIL
);
8814 /* restore original dir */
8815 if (*dirnow
!= NUL
&& ((ssop_flags
& SSOP_SESDIR
)
8816 || ((ssop_flags
& SSOP_CURDIR
) && globaldir
!= NULL
)))
8818 if (mch_chdir((char *)dirnow
) != 0)
8819 EMSG(_(e_prev_dir
));
8820 shorten_fnames(TRUE
);
8825 failed
|= (put_view(fd
, curwin
, !using_vdir
, flagp
,
8828 if (put_line(fd
, "let &so = s:so_save | let &siso = s:siso_save")
8831 if (put_line(fd
, "doautoall SessionLoadPost") == FAIL
)
8833 if (eap
->cmdidx
== CMD_mksession
)
8835 if (put_line(fd
, "unlet SessionLoad") == FAIL
)
8840 if (put_line(fd
, "\" vim: set ft=vim :") == FAIL
)
8843 failed
|= fclose(fd
);
8847 #if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8848 else if (eap
->cmdidx
== CMD_mksession
)
8850 /* successful session write - set this_session var */
8851 char_u tbuf
[MAXPATHL
];
8853 if (vim_FullName(fname
, tbuf
, MAXPATHL
, FALSE
) == OK
)
8854 set_vim_var_string(VV_THIS_SESSION
, tbuf
, -1);
8858 mksession_nl
= FALSE
;
8864 vim_free(browseFile
);
8871 #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8874 vim_mkdir_emsg(name
, prot
)
8878 if (vim_mkdir(name
, prot
) != 0)
8880 EMSG2(_("E739: Cannot create directory: %s"), name
);
8888 * Open a file for writing for an Ex command, with some checks.
8889 * Return file descriptor, or NULL on failure.
8892 open_exfile(fname
, forceit
, mode
)
8895 char *mode
; /* "w" for create new file or "a" for append */
8900 /* with Unix it is possible to open a directory */
8901 if (mch_isdir(fname
))
8903 EMSG2(_(e_isadir2
), fname
);
8907 if (!forceit
&& *mode
!= 'a' && vim_fexists(fname
))
8909 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname
);
8913 if ((fd
= mch_fopen((char *)fname
, mode
)) == NULL
)
8914 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname
);
8928 if (*eap
->arg
== NUL
) /* No argument? */
8930 else if (eap
->arg
[1] != NUL
) /* more than one character? */
8931 EMSG(_(e_trailing
));
8934 pos
= curwin
->w_cursor
; /* save curwin->w_cursor */
8935 curwin
->w_cursor
.lnum
= eap
->line2
;
8936 beginline(BL_WHITE
| BL_FIX
);
8937 if (setmark(*eap
->arg
) == FAIL
) /* set mark */
8938 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8939 curwin
->w_cursor
= pos
; /* restore curwin->w_cursor */
8944 * Update w_topline, w_leftcol and the cursor position.
8947 update_topline_cursor()
8949 check_cursor(); /* put cursor on valid line */
8951 if (!curwin
->w_p_wrap
)
8956 #ifdef FEAT_EX_EXTRA
8958 * ":normal[!] {commands}": Execute normal mode commands.
8964 int save_msg_scroll
= msg_scroll
;
8965 int save_restart_edit
= restart_edit
;
8966 int save_msg_didout
= msg_didout
;
8967 int save_State
= State
;
8969 int save_insertmode
= p_im
;
8970 int save_finish_op
= finish_op
;
8971 int save_opcount
= opcount
;
8978 if (ex_normal_lock
> 0)
8983 if (ex_normal_busy
>= p_mmd
)
8985 EMSG(_("E192: Recursive use of :normal too deep"));
8990 msg_scroll
= FALSE
; /* no msg scrolling in Normal mode */
8991 restart_edit
= 0; /* don't go to Insert mode */
8992 p_im
= FALSE
; /* don't use 'insertmode' */
8996 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8997 * this for the K_SPECIAL leading byte, otherwise special keys will not
9004 /* Count the number of characters to be escaped. */
9005 for (p
= eap
->arg
; *p
!= NUL
; ++p
)
9008 if (*p
== CSI
) /* leadbyte CSI */
9011 for (l
= (*mb_ptr2len
)(p
) - 1; l
> 0; --l
)
9012 if (*++p
== K_SPECIAL
/* trailbyte K_SPECIAL or CSI */
9021 arg
= alloc((unsigned)(STRLEN(eap
->arg
) + len
+ 1));
9025 for (p
= eap
->arg
; *p
!= NUL
; ++p
)
9031 arg
[len
++] = KS_EXTRA
;
9032 arg
[len
++] = (int)KE_CSI
;
9035 for (l
= (*mb_ptr2len
)(p
) - 1; l
> 0; --l
)
9038 if (*p
== K_SPECIAL
)
9040 arg
[len
++] = KS_SPECIAL
;
9041 arg
[len
++] = KE_FILLER
;
9046 arg
[len
++] = KS_EXTRA
;
9047 arg
[len
++] = (int)KE_CSI
;
9059 * Save the current typeahead. This is required to allow using ":normal"
9060 * from an event handler and makes sure we don't hang when the argument
9061 * ends with half a command.
9063 save_typeahead(&tabuf
);
9064 if (tabuf
.typebuf_valid
)
9067 * Repeat the :normal command for each line in the range. When no
9068 * range given, execute it just once, without positioning the cursor
9073 if (eap
->addr_count
!= 0)
9075 curwin
->w_cursor
.lnum
= eap
->line1
++;
9076 curwin
->w_cursor
.col
= 0;
9083 eap
->arg
, eap
->forceit
? REMAP_NONE
: REMAP_YES
, FALSE
);
9085 while (eap
->addr_count
> 0 && eap
->line1
<= eap
->line2
&& !got_int
);
9088 /* Might not return to the main loop when in an event handler. */
9089 update_topline_cursor();
9091 /* Restore the previous typeahead. */
9092 restore_typeahead(&tabuf
);
9095 msg_scroll
= save_msg_scroll
;
9096 restart_edit
= save_restart_edit
;
9097 p_im
= save_insertmode
;
9098 finish_op
= save_finish_op
;
9099 opcount
= save_opcount
;
9100 msg_didout
|= save_msg_didout
; /* don't reset msg_didout now */
9102 /* Restore the state (needed when called from a function executed for
9111 * ":startinsert", ":startreplace" and ":startgreplace"
9119 coladvance((colnr_T
)MAXCOL
);
9120 curwin
->w_curswant
= MAXCOL
;
9121 curwin
->w_set_curswant
= FALSE
;
9124 /* Ignore the command when already in Insert mode. Inserting an
9125 * expression register that invokes a function can do this. */
9129 if (eap
->cmdidx
== CMD_startinsert
)
9131 else if (eap
->cmdidx
== CMD_startreplace
)
9138 if (eap
->cmdidx
== CMD_startinsert
)
9140 curwin
->w_curswant
= 0; /* avoid MAXCOL */
9149 exarg_T
*eap UNUSED
;
9152 stop_insert_mode
= TRUE
;
9156 #if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9158 * Execute normal mode command "cmd".
9159 * "remap" can be REMAP_NONE or REMAP_YES.
9162 exec_normal_cmd(cmd
, remap
, silent
)
9170 * Stuff the argument into the typeahead buffer.
9171 * Execute normal_cmd() until there is no typeahead left.
9175 ins_typebuf(cmd
, remap
, 0, TRUE
, silent
);
9176 while ((!stuff_empty() || (!typebuf_typed() && typebuf
.tb_len
> 0))
9179 update_topline_cursor();
9180 normal_cmd(&oa
, FALSE
); /* execute a Normal mode cmd */
9190 find_pattern_in_path(NULL
, 0, 0, FALSE
, FALSE
, CHECK_PATH
, 1L,
9191 eap
->forceit
? ACTION_SHOW_ALL
: ACTION_SHOW
,
9192 (linenr_T
)1, (linenr_T
)MAXLNUM
);
9195 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9203 g_do_tagpreview
= p_pvh
;
9205 g_do_tagpreview
= 0;
9218 switch (cmdnames
[eap
->cmdidx
].cmd_name
[2])
9220 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9221 if (cmdnames
[eap
->cmdidx
].cmd_name
[0] == 'p')
9222 action
= ACTION_GOTO
;
9224 action
= ACTION_SHOW
;
9226 case 'i': /* ":ilist" and ":dlist" */
9227 action
= ACTION_SHOW_ALL
;
9229 case 'u': /* ":ijump" and ":djump" */
9230 action
= ACTION_GOTO
;
9232 default: /* ":isplit" and ":dsplit" */
9233 action
= ACTION_SPLIT
;
9238 if (vim_isdigit(*eap
->arg
)) /* get count */
9240 n
= getdigits(&eap
->arg
);
9241 eap
->arg
= skipwhite(eap
->arg
);
9243 if (*eap
->arg
== '/') /* Match regexp, not just whole words */
9247 p
= skip_regexp(eap
->arg
, '/', p_magic
, NULL
);
9253 /* Check for trailing illegal characters */
9254 if (!ends_excmd(*p
))
9255 eap
->errmsg
= e_trailing
;
9257 eap
->nextcmd
= check_nextcmd(p
);
9261 find_pattern_in_path(eap
->arg
, 0, (int)STRLEN(eap
->arg
),
9262 whole
, !eap
->forceit
,
9263 *eap
->cmd
== 'd' ? FIND_DEFINE
: FIND_ANY
,
9264 n
, action
, eap
->line1
, eap
->line2
);
9270 # ifdef FEAT_QUICKFIX
9272 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9278 g_do_tagpreview
= p_pvh
;
9279 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
+ 1);
9289 win_T
*curwin_save
= curwin
;
9291 g_do_tagpreview
= p_pvh
;
9292 prepare_tagpreview(TRUE
);
9293 keep_help_flag
= curwin_save
->w_buffer
->b_help
;
9294 do_exedit(eap
, NULL
);
9295 keep_help_flag
= FALSE
;
9296 if (curwin
!= curwin_save
&& win_valid(curwin_save
))
9298 /* Return cursor to where we were */
9300 redraw_later(VALID
);
9301 win_enter(curwin_save
, TRUE
);
9303 g_do_tagpreview
= 0;
9308 * ":stag", ":stselect" and ":stjump".
9314 postponed_split
= -1;
9315 postponed_split_flags
= cmdmod
.split
;
9316 postponed_split_tab
= cmdmod
.tab
;
9317 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
+ 1);
9318 postponed_split_flags
= 0;
9319 postponed_split_tab
= 0;
9324 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9330 ex_tag_cmd(eap
, cmdnames
[eap
->cmdidx
].cmd_name
);
9334 ex_tag_cmd(eap
, name
)
9342 case 'j': cmd
= DT_JUMP
; /* ":tjump" */
9344 case 's': cmd
= DT_SELECT
; /* ":tselect" */
9346 case 'p': cmd
= DT_PREV
; /* ":tprevious" */
9348 case 'N': cmd
= DT_PREV
; /* ":tNext" */
9350 case 'n': cmd
= DT_NEXT
; /* ":tnext" */
9352 case 'o': cmd
= DT_POP
; /* ":pop" */
9354 case 'f': /* ":tfirst" */
9355 case 'r': cmd
= DT_FIRST
; /* ":trewind" */
9357 case 'l': cmd
= DT_LAST
; /* ":tlast" */
9359 default: /* ":tag" */
9361 if (p_cst
&& *eap
->arg
!= NUL
)
9373 #ifndef FEAT_QUICKFIX
9381 do_tag(eap
->arg
, cmd
, eap
->addr_count
> 0 ? (int)eap
->line2
: 1,
9382 eap
->forceit
, TRUE
);
9386 * Check "str" for starting with a special cmdline variable.
9387 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9388 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9391 find_cmdline_var(src
, usedlen
)
9397 static char *(spec_str
[]) = {
9402 "<cword>", /* cursor word */
9403 #define SPEC_CWORD 2
9404 "<cWORD>", /* cursor WORD */
9405 #define SPEC_CCWORD 3
9406 "<cfile>", /* cursor path name */
9407 #define SPEC_CFILE 4
9408 "<sfile>", /* ":so" file name */
9409 #define SPEC_SFILE 5
9411 "<afile>", /* autocommand file name */
9412 # define SPEC_AFILE 6
9413 "<abuf>", /* autocommand buffer number */
9414 # define SPEC_ABUF 7
9415 "<amatch>", /* autocommand match name */
9416 # define SPEC_AMATCH 8
9418 #ifdef FEAT_CLIENTSERVER
9420 # define SPEC_CLIENT 9
9424 for (i
= 0; i
< (int)(sizeof(spec_str
) / sizeof(char *)); ++i
)
9426 len
= (int)STRLEN(spec_str
[i
]);
9427 if (STRNCMP(src
, spec_str
[i
], len
) == 0)
9437 * Evaluate cmdline variables.
9439 * change '%' to curbuf->b_ffname
9440 * '#' to curwin->w_altfile
9441 * '<cword>' to word under the cursor
9442 * '<cWORD>' to WORD under the cursor
9443 * '<cfile>' to path name under the cursor
9444 * '<sfile>' to sourced file name
9445 * '<afile>' to file name for autocommand
9446 * '<abuf>' to buffer number for autocommand
9447 * '<amatch>' to matching name for autocommand
9449 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9450 * "" for error without a message) and NULL is returned.
9451 * Returns an allocated string if a valid match was found.
9452 * Returns NULL if no match was found. "usedlen" then still contains the
9453 * number of characters to skip.
9456 eval_vars(src
, srcstart
, usedlen
, lnump
, errormsg
, escaped
)
9457 char_u
*src
; /* pointer into commandline */
9458 char_u
*srcstart
; /* beginning of valid memory for src */
9459 int *usedlen
; /* characters after src that are used */
9460 linenr_T
*lnump
; /* line number for :e command, or NULL */
9461 char_u
**errormsg
; /* pointer to error message */
9462 int *escaped
; /* return value has escaped white space (can
9468 char_u
*resultbuf
= NULL
;
9471 int valid
= VALID_HEAD
+ VALID_PATH
; /* assume valid result */
9473 #ifdef FEAT_MODIFY_FNAME
9474 int skip_mod
= FALSE
;
9477 #if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9482 if (escaped
!= NULL
)
9486 * Check if there is something to do.
9488 spec_idx
= find_cmdline_var(src
, usedlen
);
9489 if (spec_idx
< 0) /* no match */
9496 * Skip when preceded with a backslash "\%" and "\#".
9497 * Note: In "\\%" the % is also not recognized!
9499 if (src
> srcstart
&& src
[-1] == '\\')
9502 STRMOVE(src
- 1, src
); /* remove backslash */
9507 * word or WORD under cursor
9509 if (spec_idx
== SPEC_CWORD
|| spec_idx
== SPEC_CCWORD
)
9511 resultlen
= find_ident_under_cursor(&result
, spec_idx
== SPEC_CWORD
?
9512 (FIND_IDENT
|FIND_STRING
) : FIND_STRING
);
9515 *errormsg
= (char_u
*)"";
9521 * '#': Alternate file name
9522 * '%': Current file name
9523 * File name under the cursor
9524 * File name for autocommand
9525 * and following modifiers
9531 case SPEC_PERC
: /* '%': current file */
9532 if (curbuf
->b_fname
== NULL
)
9534 result
= (char_u
*)"";
9535 valid
= 0; /* Must have ":p:h" to be valid */
9539 /* Always use the full path for RISC OS if possible. */
9540 result
= curbuf
->b_ffname
;
9542 result
= curbuf
->b_fname
;
9544 result
= curbuf
->b_fname
;
9548 case SPEC_HASH
: /* '#' or "#99": alternate file */
9549 if (src
[1] == '#') /* "##": the argument list */
9554 if (escaped
!= NULL
)
9556 #ifdef FEAT_MODIFY_FNAME
9562 if (*s
== '<') /* "#<99" uses v:oldfiles */
9564 i
= (int)getdigits(&s
);
9565 *usedlen
= (int)(s
- src
); /* length of what we expand */
9571 /* Should we give an error message for #<text? */
9576 result
= list_find_str(get_vim_var_list(VV_OLDFILES
),
9580 *errormsg
= (char_u
*)"";
9584 *errormsg
= (char_u
*)_("E809: #< is not available without the +eval feature");
9590 buf
= buflist_findnr(i
);
9593 *errormsg
= (char_u
*)_("E194: No alternate file name to substitute for '#'");
9598 if (buf
->b_fname
== NULL
)
9600 result
= (char_u
*)"";
9601 valid
= 0; /* Must have ":p:h" to be valid */
9604 result
= buf
->b_fname
;
9608 #ifdef FEAT_SEARCHPATH
9609 case SPEC_CFILE
: /* file name under cursor */
9610 result
= file_name_at_cursor(FNAME_MESS
|FNAME_HYP
, 1L, NULL
);
9613 *errormsg
= (char_u
*)"";
9616 resultbuf
= result
; /* remember allocated string */
9621 case SPEC_AFILE
: /* file name for autocommand */
9622 result
= autocmd_fname
;
9623 if (result
!= NULL
&& !autocmd_fname_full
)
9625 /* Still need to turn the fname into a full path. It is
9626 * postponed to avoid a delay when <afile> is not used. */
9627 autocmd_fname_full
= TRUE
;
9628 result
= FullName_save(autocmd_fname
, FALSE
);
9629 vim_free(autocmd_fname
);
9630 autocmd_fname
= result
;
9634 *errormsg
= (char_u
*)_("E495: no autocommand file name to substitute for \"<afile>\"");
9637 result
= shorten_fname1(result
);
9640 case SPEC_ABUF
: /* buffer number for autocommand */
9641 if (autocmd_bufnr
<= 0)
9643 *errormsg
= (char_u
*)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9646 sprintf((char *)strbuf
, "%d", autocmd_bufnr
);
9650 case SPEC_AMATCH
: /* match name for autocommand */
9651 result
= autocmd_match
;
9654 *errormsg
= (char_u
*)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9660 case SPEC_SFILE
: /* file name for ":so" command */
9661 result
= sourcing_name
;
9664 *errormsg
= (char_u
*)_("E498: no :source file name to substitute for \"<sfile>\"");
9668 #if defined(FEAT_CLIENTSERVER)
9669 case SPEC_CLIENT
: /* Source of last submitted input */
9670 sprintf((char *)strbuf
, PRINTF_HEX_LONG_U
,
9671 (long_u
)clientWindow
);
9677 resultlen
= (int)STRLEN(result
); /* length of new string */
9678 if (src
[*usedlen
] == '<') /* remove the file name extension */
9682 if ((s
= vim_strrchr(result
, '/')) != NULL
&& s
>= gettail(result
))
9684 if ((s
= vim_strrchr(result
, '.')) != NULL
&& s
>= gettail(result
))
9686 resultlen
= (int)(s
- result
);
9688 #ifdef FEAT_MODIFY_FNAME
9691 valid
|= modify_fname(src
, usedlen
, &result
, &resultbuf
,
9695 *errormsg
= (char_u
*)"";
9702 if (resultlen
== 0 || valid
!= VALID_HEAD
+ VALID_PATH
)
9704 if (valid
!= VALID_HEAD
+ VALID_PATH
)
9705 /* xgettext:no-c-format */
9706 *errormsg
= (char_u
*)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9708 *errormsg
= (char_u
*)_("E500: Evaluates to an empty string");
9712 result
= vim_strnsave(result
, resultlen
);
9713 vim_free(resultbuf
);
9718 * Concatenate all files in the argument list, separated by spaces, and return
9719 * it in one allocated string.
9720 * Spaces and backslashes in the file names are escaped with a backslash.
9721 * Returns NULL when out of memory.
9728 char_u
*retval
= NULL
;
9732 * Do this loop two times:
9733 * first time: compute the total length
9734 * second time: concatenate the names
9739 for (idx
= 0; idx
< ARGCOUNT
; ++idx
)
9741 p
= alist_name(&ARGLIST
[idx
]);
9746 /* insert a space in between names */
9751 for ( ; *p
!= NUL
; ++p
)
9753 if (*p
== ' ' || *p
== '\\')
9755 /* insert a backslash */
9767 /* second time: break here */
9774 /* allocate memory */
9775 retval
= alloc((unsigned)len
+ 1);
9783 #if defined(FEAT_AUTOCMD) || defined(PROTO)
9785 * Expand the <sfile> string in "arg".
9787 * Returns an allocated string, or NULL for any error.
9801 result
= vim_strsave(arg
);
9805 for (p
= result
; *p
; )
9807 if (STRNCMP(p
, "<sfile>", 7) != 0)
9811 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
9812 repl
= eval_vars(p
, result
, &srclen
, NULL
, &errormsg
, NULL
);
9813 if (errormsg
!= NULL
)
9820 if (repl
== NULL
) /* no match (cannot happen) */
9825 len
= (int)STRLEN(result
) - srclen
+ (int)STRLEN(repl
) + 1;
9826 newres
= alloc(len
);
9833 mch_memmove(newres
, result
, (size_t)(p
- result
));
9834 STRCPY(newres
+ (p
- result
), repl
);
9835 len
= (int)STRLEN(newres
);
9836 STRCAT(newres
, p
+ srclen
);
9840 p
= newres
+ len
; /* continue after the match */
9849 static int ses_winsizes
__ARGS((FILE *fd
, int restore_size
,
9850 win_T
*tab_firstwin
));
9851 static int ses_win_rec
__ARGS((FILE *fd
, frame_T
*fr
));
9852 static frame_T
*ses_skipframe
__ARGS((frame_T
*fr
));
9853 static int ses_do_frame
__ARGS((frame_T
*fr
));
9854 static int ses_do_win
__ARGS((win_T
*wp
));
9855 static int ses_arglist
__ARGS((FILE *fd
, char *cmd
, garray_T
*gap
, int fullname
, unsigned *flagp
));
9856 static int ses_put_fname
__ARGS((FILE *fd
, char_u
*name
, unsigned *flagp
));
9857 static int ses_fname
__ARGS((FILE *fd
, buf_T
*buf
, unsigned *flagp
));
9860 * Write openfile commands for the current buffers to an .exrc file.
9861 * Return FAIL on error, OK otherwise.
9864 makeopens(fd
, dirnow
)
9866 char_u
*dirnow
; /* Current directory name */
9869 int only_save_windows
= TRUE
;
9872 int restore_size
= TRUE
;
9875 win_T
*edited_win
= NULL
;
9877 win_T
*tab_firstwin
;
9878 frame_T
*tab_topframe
;
9879 int cur_arg_idx
= 0;
9880 int next_arg_idx
= 0;
9882 if (ssop_flags
& SSOP_BUFFERS
)
9883 only_save_windows
= FALSE
; /* Save ALL buffers */
9886 * Begin by setting the this_session variable, and then other
9887 * sessionable variables.
9890 if (put_line(fd
, "let v:this_session=expand(\"<sfile>:p\")") == FAIL
)
9892 if (ssop_flags
& SSOP_GLOBALS
)
9893 if (store_session_globals(fd
) == FAIL
)
9898 * Close all windows but one.
9900 if (put_line(fd
, "silent only") == FAIL
)
9904 * Now a :cd command to the session directory or the current directory
9906 if (ssop_flags
& SSOP_SESDIR
)
9908 if (put_line(fd
, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9912 else if (ssop_flags
& SSOP_CURDIR
)
9914 sname
= home_replace_save(NULL
, globaldir
!= NULL
? globaldir
: dirnow
);
9916 || fputs("cd ", fd
) < 0
9917 || ses_put_fname(fd
, sname
, &ssop_flags
) == FAIL
9918 || put_eol(fd
) == FAIL
)
9927 * If there is an empty, unnamed buffer we will wipe it out later.
9928 * Remember the buffer number.
9930 if (put_line(fd
, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL
)
9932 if (put_line(fd
, " let s:wipebuf = bufnr('%')") == FAIL
)
9934 if (put_line(fd
, "endif") == FAIL
)
9938 * Now save the current files, current buffer first.
9940 if (put_line(fd
, "set shortmess=aoO") == FAIL
)
9943 /* Now put the other buffers into the buffer list */
9944 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
9946 if (!(only_save_windows
&& buf
->b_nwindows
== 0)
9947 && !(buf
->b_help
&& !(ssop_flags
& SSOP_HELP
))
9948 && buf
->b_fname
!= NULL
9951 if (fprintf(fd
, "badd +%ld ", buf
->b_wininfo
== NULL
? 1L
9952 : buf
->b_wininfo
->wi_fpos
.lnum
) < 0
9953 || ses_fname(fd
, buf
, &ssop_flags
) == FAIL
)
9958 /* the global argument list */
9959 if (ses_arglist(fd
, "args", &global_alist
.al_ga
,
9960 !(ssop_flags
& SSOP_CURDIR
), &ssop_flags
) == FAIL
)
9963 if (ssop_flags
& SSOP_RESIZE
)
9965 /* Note: after the restore we still check it worked!*/
9966 if (fprintf(fd
, "set lines=%ld columns=%ld" , Rows
, Columns
) < 0
9967 || put_eol(fd
) == FAIL
)
9972 if (gui
.in_use
&& (ssop_flags
& SSOP_WINPOS
))
9976 if (gui_mch_get_winpos(&x
, &y
) == OK
)
9978 /* Note: after the restore we still check it worked!*/
9979 if (fprintf(fd
, "winpos %d %d", x
, y
) < 0 || put_eol(fd
) == FAIL
)
9986 * May repeat putting Windows for each tab, when "tabpages" is in
9988 * Don't use goto_tabpage(), it may change directory and trigger
9991 tab_firstwin
= firstwin
; /* first window in tab page "tabnr" */
9992 tab_topframe
= topframe
;
9993 for (tabnr
= 1; ; ++tabnr
)
9995 int need_tabnew
= FALSE
;
9997 if ((ssop_flags
& SSOP_TABPAGES
))
9999 tabpage_T
*tp
= find_tabpage(tabnr
);
10002 break; /* done all tab pages */
10005 tab_firstwin
= firstwin
;
10006 tab_topframe
= topframe
;
10010 tab_firstwin
= tp
->tp_firstwin
;
10011 tab_topframe
= tp
->tp_topframe
;
10014 need_tabnew
= TRUE
;
10018 * Before creating the window layout, try loading one file. If this
10019 * is aborted we don't end up with a number of useless windows.
10020 * This may have side effects! (e.g., compressed or network file).
10022 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
10025 && wp
->w_buffer
->b_ffname
!= NULL
10026 && !wp
->w_buffer
->b_help
10027 #ifdef FEAT_QUICKFIX
10028 && !bt_nofile(wp
->w_buffer
)
10032 if (fputs(need_tabnew
? "tabedit " : "edit ", fd
) < 0
10033 || ses_fname(fd
, wp
->w_buffer
, &ssop_flags
) == FAIL
)
10035 need_tabnew
= FALSE
;
10036 if (!wp
->w_arg_idx_invalid
)
10042 /* If no file got edited create an empty tab page. */
10043 if (need_tabnew
&& put_line(fd
, "tabnew") == FAIL
)
10047 * Save current window layout.
10049 if (put_line(fd
, "set splitbelow splitright") == FAIL
)
10051 if (ses_win_rec(fd
, tab_topframe
) == FAIL
)
10053 if (!p_sb
&& put_line(fd
, "set nosplitbelow") == FAIL
)
10055 if (!p_spr
&& put_line(fd
, "set nosplitright") == FAIL
)
10059 * Check if window sizes can be restored (no windows omitted).
10060 * Remember the window number of the current window after restoring.
10063 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= W_NEXT(wp
))
10065 if (ses_do_win(wp
))
10068 restore_size
= FALSE
;
10073 /* Go to the first window. */
10074 if (put_line(fd
, "wincmd t") == FAIL
)
10078 * If more than one window, see if sizes can be restored.
10079 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
10080 * resized when moving between windows.
10081 * Do this before restoring the view, so that the topline and the
10082 * cursor can be set. This is done again below.
10084 if (put_line(fd
, "set winheight=1 winwidth=1") == FAIL
)
10086 if (nr
> 1 && ses_winsizes(fd
, restore_size
, tab_firstwin
) == FAIL
)
10090 * Restore the view of the window (options, file, cursor, etc.).
10092 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
10094 if (!ses_do_win(wp
))
10096 if (put_view(fd
, wp
, wp
!= edited_win
, &ssop_flags
,
10097 cur_arg_idx
) == FAIL
)
10099 if (nr
> 1 && put_line(fd
, "wincmd w") == FAIL
)
10101 next_arg_idx
= wp
->w_arg_idx
;
10104 /* The argument index in the first tab page is zero, need to set it in
10105 * each window. For further tab pages it's the window where we do
10107 cur_arg_idx
= next_arg_idx
;
10110 * Restore cursor to the current window if it's not the first one.
10112 if (cnr
> 1 && (fprintf(fd
, "%dwincmd w", cnr
) < 0
10113 || put_eol(fd
) == FAIL
))
10117 * Restore window sizes again after jumping around in windows, because
10118 * the current window has a minimum size while others may not.
10120 if (nr
> 1 && ses_winsizes(fd
, restore_size
, tab_firstwin
) == FAIL
)
10123 /* Don't continue in another tab page when doing only the current one
10124 * or when at the last tab page. */
10125 if (!(ssop_flags
& SSOP_TABPAGES
))
10129 if (ssop_flags
& SSOP_TABPAGES
)
10131 if (fprintf(fd
, "tabnext %d", tabpage_index(curtab
)) < 0
10132 || put_eol(fd
) == FAIL
)
10137 * Wipe out an empty unnamed buffer we started in.
10139 if (put_line(fd
, "if exists('s:wipebuf')") == FAIL
)
10141 if (put_line(fd
, " silent exe 'bwipe ' . s:wipebuf") == FAIL
)
10143 if (put_line(fd
, "endif") == FAIL
)
10145 if (put_line(fd
, "unlet! s:wipebuf") == FAIL
)
10148 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10149 if (fprintf(fd
, "set winheight=%ld winwidth=%ld shortmess=%s",
10150 p_wh
, p_wiw
, p_shm
) < 0 || put_eol(fd
) == FAIL
)
10154 * Lastly, execute the x.vim file if it exists.
10156 if (put_line(fd
, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10157 || put_line(fd
, "if file_readable(s:sx)") == FAIL
10158 || put_line(fd
, " exe \"source \" . fnameescape(s:sx)") == FAIL
10159 || put_line(fd
, "endif") == FAIL
)
10166 ses_winsizes(fd
, restore_size
, tab_firstwin
)
10169 win_T
*tab_firstwin
;
10174 if (restore_size
&& (ssop_flags
& SSOP_WINSIZE
))
10176 for (wp
= tab_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
10178 if (!ses_do_win(wp
))
10182 /* restore height when not full height */
10183 if (wp
->w_height
+ wp
->w_status_height
< topframe
->fr_height
10185 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10186 n
, (long)wp
->w_height
, Rows
/ 2, Rows
) < 0
10187 || put_eol(fd
) == FAIL
))
10190 /* restore width when not full width */
10191 if (wp
->w_width
< Columns
&& (fprintf(fd
,
10192 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10193 n
, (long)wp
->w_width
, Columns
/ 2, Columns
) < 0
10194 || put_eol(fd
) == FAIL
))
10200 /* Just equalise window sizes */
10201 if (put_line(fd
, "wincmd =") == FAIL
)
10208 * Write commands to "fd" to recursively create windows for frame "fr",
10209 * horizontally and vertically split.
10210 * After the commands the last window in the frame is the current window.
10211 * Returns FAIL when writing the commands to "fd" fails.
10214 ses_win_rec(fd
, fr
)
10221 if (fr
->fr_layout
!= FR_LEAF
)
10223 /* Find first frame that's not skipped and then create a window for
10224 * each following one (first frame is already there). */
10225 frc
= ses_skipframe(fr
->fr_child
);
10227 while ((frc
= ses_skipframe(frc
->fr_next
)) != NULL
)
10229 /* Make window as big as possible so that we have lots of room
10231 if (put_line(fd
, "wincmd _ | wincmd |") == FAIL
10232 || put_line(fd
, fr
->fr_layout
== FR_COL
10233 ? "split" : "vsplit") == FAIL
)
10238 /* Go back to the first window. */
10239 if (count
> 0 && (fprintf(fd
, fr
->fr_layout
== FR_COL
10240 ? "%dwincmd k" : "%dwincmd h", count
) < 0
10241 || put_eol(fd
) == FAIL
))
10244 /* Recursively create frames/windows in each window of this column or
10246 frc
= ses_skipframe(fr
->fr_child
);
10247 while (frc
!= NULL
)
10249 ses_win_rec(fd
, frc
);
10250 frc
= ses_skipframe(frc
->fr_next
);
10251 /* Go to next window. */
10252 if (frc
!= NULL
&& put_line(fd
, "wincmd w") == FAIL
)
10260 * Skip frames that don't contain windows we want to save in the Session.
10261 * Returns NULL when there none.
10269 for (frc
= fr
; frc
!= NULL
; frc
= frc
->fr_next
)
10270 if (ses_do_frame(frc
))
10276 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10285 if (fr
->fr_layout
== FR_LEAF
)
10286 return ses_do_win(fr
->fr_win
);
10287 for (frc
= fr
->fr_child
; frc
!= NULL
; frc
= frc
->fr_next
)
10288 if (ses_do_frame(frc
))
10294 * Return non-zero if window "wp" is to be stored in the Session.
10300 if (wp
->w_buffer
->b_fname
== NULL
10301 #ifdef FEAT_QUICKFIX
10302 /* When 'buftype' is "nofile" can't restore the window contents. */
10303 || bt_nofile(wp
->w_buffer
)
10306 return (ssop_flags
& SSOP_BLANK
);
10307 if (wp
->w_buffer
->b_help
)
10308 return (ssop_flags
& SSOP_HELP
);
10313 * Write commands to "fd" to restore the view of a window.
10314 * Caller must make sure 'scrolloff' is zero.
10317 put_view(fd
, wp
, add_edit
, flagp
, current_arg_idx
)
10320 int add_edit
; /* add ":edit" command to view */
10321 unsigned *flagp
; /* vop_flags or ssop_flags */
10322 int current_arg_idx
; /* current argument index of the window, use
10325 win_T
*save_curwin
;
10328 int did_next
= FALSE
;
10330 /* Always restore cursor position for ":mksession". For ":mkview" only
10331 * when 'viewoptions' contains "cursor". */
10332 do_cursor
= (flagp
== &ssop_flags
|| *flagp
& SSOP_CURSOR
);
10335 * Local argument list.
10337 if (wp
->w_alist
== &global_alist
)
10339 if (put_line(fd
, "argglobal") == FAIL
)
10344 if (ses_arglist(fd
, "arglocal", &wp
->w_alist
->al_ga
,
10345 flagp
== &vop_flags
10346 || !(*flagp
& SSOP_CURDIR
)
10347 || wp
->w_localdir
!= NULL
, flagp
) == FAIL
)
10351 /* Only when part of a session: restore the argument index. Some
10352 * arguments may have been deleted, check if the index is valid. */
10353 if (wp
->w_arg_idx
!= current_arg_idx
&& wp
->w_arg_idx
<= WARGCOUNT(wp
)
10354 && flagp
== &ssop_flags
)
10356 if (fprintf(fd
, "%ldargu", (long)wp
->w_arg_idx
+ 1) < 0
10357 || put_eol(fd
) == FAIL
)
10362 /* Edit the file. Skip this when ":next" already did it. */
10363 if (add_edit
&& (!did_next
|| wp
->w_arg_idx_invalid
))
10368 if (wp
->w_buffer
->b_ffname
!= NULL
10369 #ifdef FEAT_QUICKFIX
10370 && !bt_nofile(wp
->w_buffer
)
10375 * Editing a file in this buffer: use ":edit file".
10376 * This may have side effects! (e.g., compressed or network file).
10378 if (fputs("edit ", fd
) < 0
10379 || ses_fname(fd
, wp
->w_buffer
, flagp
) == FAIL
)
10384 /* No file in this buffer, just make it empty. */
10385 if (put_line(fd
, "enew") == FAIL
)
10387 #ifdef FEAT_QUICKFIX
10388 if (wp
->w_buffer
->b_ffname
!= NULL
)
10390 /* The buffer does have a name, but it's not a file name. */
10391 if (fputs("file ", fd
) < 0
10392 || ses_fname(fd
, wp
->w_buffer
, flagp
) == FAIL
)
10401 * Local mappings and abbreviations.
10403 if ((*flagp
& (SSOP_OPTIONS
| SSOP_LOCALOPTIONS
))
10404 && makemap(fd
, wp
->w_buffer
) == FAIL
)
10408 * Local options. Need to go to the window temporarily.
10409 * Store only local values when using ":mkview" and when ":mksession" is
10410 * used and 'sessionoptions' doesn't include "options".
10411 * Some folding options are always stored when "folds" is included,
10412 * otherwise the folds would not be restored correctly.
10414 save_curwin
= curwin
;
10416 curbuf
= curwin
->w_buffer
;
10417 if (*flagp
& (SSOP_OPTIONS
| SSOP_LOCALOPTIONS
))
10418 f
= makeset(fd
, OPT_LOCAL
,
10419 flagp
== &vop_flags
|| !(*flagp
& SSOP_OPTIONS
));
10420 #ifdef FEAT_FOLDING
10421 else if (*flagp
& SSOP_FOLDS
)
10422 f
= makefoldset(fd
);
10426 curwin
= save_curwin
;
10427 curbuf
= curwin
->w_buffer
;
10431 #ifdef FEAT_FOLDING
10433 * Save Folds when 'buftype' is empty and for help files.
10435 if ((*flagp
& SSOP_FOLDS
)
10436 && wp
->w_buffer
->b_ffname
!= NULL
10437 # ifdef FEAT_QUICKFIX
10438 && (*wp
->w_buffer
->b_p_bt
== NUL
|| wp
->w_buffer
->b_help
)
10442 if (put_folds(fd
, wp
) == FAIL
)
10448 * Set the cursor after creating folds, since that moves the cursor.
10453 /* Restore the cursor line in the file and relatively in the
10454 * window. Don't use "G", it changes the jumplist. */
10455 if (fprintf(fd
, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10456 (long)wp
->w_cursor
.lnum
,
10457 (long)(wp
->w_cursor
.lnum
- wp
->w_topline
),
10458 (long)wp
->w_height
/ 2, (long)wp
->w_height
) < 0
10459 || put_eol(fd
) == FAIL
10460 || put_line(fd
, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10461 || put_line(fd
, "exe s:l") == FAIL
10462 || put_line(fd
, "normal! zt") == FAIL
10463 || fprintf(fd
, "%ld", (long)wp
->w_cursor
.lnum
) < 0
10464 || put_eol(fd
) == FAIL
)
10466 /* Restore the cursor column and left offset when not wrapping. */
10467 if (wp
->w_cursor
.col
== 0)
10469 if (put_line(fd
, "normal! 0") == FAIL
)
10474 if (!wp
->w_p_wrap
&& wp
->w_leftcol
> 0 && wp
->w_width
> 0)
10477 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10478 (long)wp
->w_cursor
.col
,
10479 (long)(wp
->w_cursor
.col
- wp
->w_leftcol
),
10480 (long)wp
->w_width
/ 2, (long)wp
->w_width
) < 0
10481 || put_eol(fd
) == FAIL
10482 || put_line(fd
, "if s:c > 0") == FAIL
10484 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10485 (long)wp
->w_cursor
.col
) < 0
10486 || put_eol(fd
) == FAIL
10487 || put_line(fd
, "else") == FAIL
10488 || fprintf(fd
, " normal! 0%dl", wp
->w_cursor
.col
) < 0
10489 || put_eol(fd
) == FAIL
10490 || put_line(fd
, "endif") == FAIL
)
10495 if (fprintf(fd
, "normal! 0%dl", wp
->w_cursor
.col
) < 0
10496 || put_eol(fd
) == FAIL
)
10505 if (wp
->w_localdir
!= NULL
)
10507 if (fputs("lcd ", fd
) < 0
10508 || ses_put_fname(fd
, wp
->w_localdir
, flagp
) == FAIL
10509 || put_eol(fd
) == FAIL
)
10518 * Write an argument list to the session file.
10519 * Returns FAIL if writing fails.
10522 ses_arglist(fd
, cmd
, gap
, fullname
, flagp
)
10526 int fullname
; /* TRUE: use full path name */
10530 char_u buf
[MAXPATHL
];
10533 if (gap
->ga_len
== 0)
10534 return put_line(fd
, "silent! argdel *");
10535 if (fputs(cmd
, fd
) < 0)
10537 for (i
= 0; i
< gap
->ga_len
; ++i
)
10539 /* NULL file names are skipped (only happens when out of memory). */
10540 s
= alist_name(&((aentry_T
*)gap
->ga_data
)[i
]);
10545 (void)vim_FullName(s
, buf
, MAXPATHL
, FALSE
);
10548 if (fputs(" ", fd
) < 0 || ses_put_fname(fd
, s
, flagp
) == FAIL
)
10552 return put_eol(fd
);
10556 * Write a buffer name to the session file.
10557 * Also ends the line.
10558 * Returns FAIL if writing fails.
10561 ses_fname(fd
, buf
, flagp
)
10568 /* Use the short file name if the current directory is known at the time
10569 * the session file will be sourced.
10570 * Don't do this for ":mkview", we don't know the current directory.
10571 * Don't do this after ":lcd", we don't keep track of what the current
10573 if (buf
->b_sfname
!= NULL
10574 && flagp
== &ssop_flags
10575 && (ssop_flags
& (SSOP_CURDIR
| SSOP_SESDIR
))
10577 name
= buf
->b_sfname
;
10579 name
= buf
->b_ffname
;
10580 if (ses_put_fname(fd
, name
, flagp
) == FAIL
|| put_eol(fd
) == FAIL
)
10586 * Write a file name to the session file.
10587 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10589 * Returns FAIL if writing fails.
10592 ses_put_fname(fd
, name
, flagp
)
10601 sname
= home_replace_save(NULL
, name
);
10604 while (*name
!= NUL
)
10610 if (has_mbyte
&& (l
= (*mb_ptr2len
)(name
)) > 1)
10612 /* copy a multibyte char */
10615 if (putc(*name
, fd
) != *name
)
10624 if (c
== '\\' && (*flagp
& SSOP_SLASH
))
10625 /* change a backslash to a forward slash */
10627 else if ((vim_strchr(escape_chars
, c
) != NULL
10628 #ifdef BACKSLASH_IN_FILENAME
10631 ) || c
== '#' || c
== '%')
10633 /* escape a special character with a backslash */
10634 if (putc('\\', fd
) != '\\')
10637 if (putc(c
, fd
) != c
)
10653 fname
= get_view_file(*eap
->arg
);
10656 do_source(fname
, FALSE
, DOSO_NONE
);
10662 * Get the name of the view file for the current buffer.
10673 if (curbuf
->b_ffname
== NULL
)
10678 sname
= home_replace_save(NULL
, curbuf
->b_ffname
);
10683 * We want a file name without separators, because we're not going to make
10685 * "normal" path separator -> "=+"
10687 * ":" path separator -> "=-"
10689 for (p
= sname
; *p
; ++p
)
10690 if (*p
== '=' || vim_ispathsep(*p
))
10692 retval
= alloc((unsigned)(STRLEN(sname
) + len
+ STRLEN(p_vdir
) + 9));
10693 if (retval
!= NULL
)
10695 STRCPY(retval
, p_vdir
);
10696 add_pathsep(retval
);
10697 s
= retval
+ STRLEN(retval
);
10698 for (p
= sname
; *p
; ++p
)
10705 else if (vim_ispathsep(*p
))
10708 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
10728 #endif /* FEAT_SESSION */
10731 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10732 * Return FAIL for a write error.
10741 # ifdef MKSESSION_NL
10744 (putc('\r', fd
) < 0)) ||
10746 (putc('\n', fd
) < 0))
10752 * Write a line to "fd".
10753 * Return FAIL for a write error.
10760 if (fputs(s
, fd
) < 0 || put_eol(fd
) == FAIL
)
10765 #ifdef FEAT_VIMINFO
10767 * ":rviminfo" and ":wviminfo".
10773 char_u
*save_viminfo
;
10775 save_viminfo
= p_viminfo
;
10776 if (*p_viminfo
== NUL
)
10777 p_viminfo
= (char_u
*)"'100";
10778 if (eap
->cmdidx
== CMD_rviminfo
)
10780 if (read_viminfo(eap
->arg
, VIF_WANT_INFO
| VIF_WANT_MARKS
10781 | (eap
->forceit
? VIF_FORCEIT
: 0)) == FAIL
)
10782 EMSG(_("E195: Cannot open viminfo file for reading"));
10785 write_viminfo(eap
->arg
, eap
->forceit
);
10786 p_viminfo
= save_viminfo
;
10790 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
10792 * Make a dialog message in "buff[IOSIZE]".
10793 * "format" must contain "%s".
10796 dialog_msg(buff
, format
, fname
)
10802 fname
= (char_u
*)_("Untitled");
10803 vim_snprintf((char *)buff
, IOSIZE
, format
, fname
);
10808 * ":behave {mswin,xterm}"
10814 if (STRCMP(eap
->arg
, "mswin") == 0)
10816 set_option_value((char_u
*)"selection", 0L, (char_u
*)"exclusive", 0);
10817 set_option_value((char_u
*)"selectmode", 0L, (char_u
*)"mouse,key", 0);
10818 set_option_value((char_u
*)"mousemodel", 0L, (char_u
*)"popup", 0);
10819 set_option_value((char_u
*)"keymodel", 0L,
10820 (char_u
*)"startsel,stopsel", 0);
10822 else if (STRCMP(eap
->arg
, "xterm") == 0)
10824 set_option_value((char_u
*)"selection", 0L, (char_u
*)"inclusive", 0);
10825 set_option_value((char_u
*)"selectmode", 0L, (char_u
*)"", 0);
10826 set_option_value((char_u
*)"mousemodel", 0L, (char_u
*)"extend", 0);
10827 set_option_value((char_u
*)"keymodel", 0L, (char_u
*)"", 0);
10830 EMSG2(_(e_invarg2
), eap
->arg
);
10833 #ifdef FEAT_AUTOCMD
10834 static int filetype_detect
= FALSE
;
10835 static int filetype_plugin
= FALSE
;
10836 static int filetype_indent
= FALSE
;
10839 * ":filetype [plugin] [indent] {on,off,detect}"
10840 * on: Load the filetype.vim file to install autocommands for file types.
10841 * off: Load the ftoff.vim file to remove all autocommands for file types.
10842 * plugin on: load filetype.vim and ftplugin.vim
10843 * plugin off: load ftplugof.vim
10844 * indent on: load filetype.vim and indent.vim
10845 * indent off: load indoff.vim
10851 char_u
*arg
= eap
->arg
;
10852 int plugin
= FALSE
;
10853 int indent
= FALSE
;
10855 if (*eap
->arg
== NUL
)
10857 /* Print current status. */
10858 smsg((char_u
*)"filetype detection:%s plugin:%s indent:%s",
10859 filetype_detect
? "ON" : "OFF",
10860 filetype_plugin
? (filetype_detect
? "ON" : "(on)") : "OFF",
10861 filetype_indent
? (filetype_detect
? "ON" : "(on)") : "OFF");
10865 /* Accept "plugin" and "indent" in any order. */
10868 if (STRNCMP(arg
, "plugin", 6) == 0)
10871 arg
= skipwhite(arg
+ 6);
10874 if (STRNCMP(arg
, "indent", 6) == 0)
10877 arg
= skipwhite(arg
+ 6);
10882 if (STRCMP(arg
, "on") == 0 || STRCMP(arg
, "detect") == 0)
10884 if (*arg
== 'o' || !filetype_detect
)
10886 source_runtime((char_u
*)FILETYPE_FILE
, TRUE
);
10887 filetype_detect
= TRUE
;
10890 source_runtime((char_u
*)FTPLUGIN_FILE
, TRUE
);
10891 filetype_plugin
= TRUE
;
10895 source_runtime((char_u
*)INDENT_FILE
, TRUE
);
10896 filetype_indent
= TRUE
;
10901 (void)do_doautocmd((char_u
*)"filetypedetect BufRead", TRUE
);
10905 else if (STRCMP(arg
, "off") == 0)
10907 if (plugin
|| indent
)
10911 source_runtime((char_u
*)FTPLUGOF_FILE
, TRUE
);
10912 filetype_plugin
= FALSE
;
10916 source_runtime((char_u
*)INDOFF_FILE
, TRUE
);
10917 filetype_indent
= FALSE
;
10922 source_runtime((char_u
*)FTOFF_FILE
, TRUE
);
10923 filetype_detect
= FALSE
;
10927 EMSG2(_(e_invarg2
), arg
);
10931 * ":setfiletype {name}"
10934 ex_setfiletype(eap
)
10938 set_option_value((char_u
*)"filetype", 0L, eap
->arg
, OPT_LOCAL
);
10944 exarg_T
*eap UNUSED
;
10946 #ifdef FEAT_DIGRAPHS
10947 if (*eap
->arg
!= NUL
)
10948 putdigraph(eap
->arg
);
10952 EMSG(_("E196: No digraphs in this version"));
10962 if (eap
->cmdidx
== CMD_setlocal
)
10964 else if (eap
->cmdidx
== CMD_setglobal
)
10965 flags
= OPT_GLOBAL
;
10966 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10967 if (cmdmod
.browse
&& flags
== 0)
10971 (void)do_set(eap
->arg
, flags
);
10974 #ifdef FEAT_SEARCH_EXTRA
10980 exarg_T
*eap UNUSED
;
10982 no_hlsearch
= TRUE
;
10983 redraw_all_later(SOME_VALID
);
10987 * ":[N]match {group} {pattern}"
10988 * Sets nextcmd to the start of the next command, if any. Also called when
10989 * skipping commands to find the next command.
11001 if (eap
->line2
<= 3)
11009 /* First clear any old pattern. */
11011 match_delete(curwin
, id
, FALSE
);
11013 if (ends_excmd(*eap
->arg
))
11015 else if ((STRNICMP(eap
->arg
, "none", 4) == 0
11016 && (vim_iswhite(eap
->arg
[4]) || ends_excmd(eap
->arg
[4]))))
11017 end
= eap
->arg
+ 4;
11020 p
= skiptowhite(eap
->arg
);
11022 g
= vim_strnsave(eap
->arg
, (int)(p
- eap
->arg
));
11026 /* There must be two arguments. */
11027 EMSG2(_(e_invarg2
), eap
->arg
);
11030 end
= skip_regexp(p
+ 1, *p
, TRUE
, NULL
);
11033 if (*end
!= NUL
&& !ends_excmd(*skipwhite(end
+ 1)))
11035 eap
->errmsg
= e_trailing
;
11040 EMSG2(_(e_invarg2
), p
);
11046 match_add(curwin
, g
, p
+ 1, 10, id
);
11051 eap
->nextcmd
= find_nextcmd(end
);
11057 * ":X": Get crypt key
11061 exarg_T
*eap UNUSED
;
11063 (void)get_crypt_key(TRUE
, TRUE
);
11067 #ifdef FEAT_FOLDING
11072 if (foldManualAllowed(TRUE
))
11073 foldCreate(eap
->line1
, eap
->line2
);
11080 opFoldRange(eap
->line1
, eap
->line2
, eap
->cmdidx
== CMD_foldopen
,
11081 eap
->forceit
, FALSE
);
11090 /* First set the marks for all lines closed/open. */
11091 for (lnum
= eap
->line1
; lnum
<= eap
->line2
; ++lnum
)
11092 if (hasFolding(lnum
, NULL
, NULL
) == (eap
->cmdidx
== CMD_folddoclosed
))
11093 ml_setmarked(lnum
);
11095 /* Execute the command on the marked lines. */
11096 global_exe(eap
->arg
);
11097 ml_clearmarked(); /* clear rest of the marks */