blob: 6ad6fff7c50656a071f9fbe2b7f9cbb80db00931 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
Bram Moolenaarb4210b32004-06-13 14:51:16 +000010#define EXTERN
11#include "vim.h"
12
Bram Moolenaarb4210b32004-06-13 14:51:16 +000013#ifdef __CYGWIN__
14# ifndef WIN32
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000015# include <cygwin/version.h>
16# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
17 * cygwin_conv_path() */
Bram Moolenaarb4210b32004-06-13 14:51:16 +000018# endif
19# include <limits.h>
20#endif
21
Bram Moolenaar97ff9b92016-06-26 20:37:46 +020022#if defined(WIN3264) && !defined(FEAT_GUI_W32)
23# include "iscygpty.h"
24#endif
25
Bram Moolenaarc013cb62005-07-24 21:18:31 +000026/* Values for edit_type. */
27#define EDIT_NONE 0 /* no edit type yet */
28#define EDIT_FILE 1 /* file name argument[s] given, use argument list */
29#define EDIT_STDIN 2 /* read file from stdin */
30#define EDIT_TAG 3 /* tag name argument given, use tagname */
31#define EDIT_QF 4 /* start in quickfix mode */
32
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010033#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010034static int file_owned(char *fname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +000035#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010036static void mainerr(int, char_u *);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +020037# if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
38static void init_locale(void);
39# endif
40static void early_arg_scan(mparm_T *parmp);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010041#ifndef NO_VIM_MAIN
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010042static void usage(void);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010043static void parse_command_name(mparm_T *parmp);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010044static void command_line_scan(mparm_T *parmp);
45static void check_tty(mparm_T *parmp);
46static void read_stdin(void);
47static void create_windows(mparm_T *parmp);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010048static void edit_buffers(mparm_T *parmp, char_u *cwd);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010049static void exe_pre_commands(mparm_T *parmp);
50static void exe_commands(mparm_T *parmp);
51static void source_startup_scripts(mparm_T *parmp);
52static void main_start_gui(void);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010053# if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010054static void check_swap_exists_action(void);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010055# endif
Bram Moolenaar08cab962017-03-04 14:37:18 +010056# ifdef FEAT_EVAL
57static void set_progpath(char_u *argv0);
58# endif
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010059# if defined(FEAT_CLIENTSERVER) || defined(PROTO)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010060static void exec_on_server(mparm_T *parmp);
61static void prepare_server(mparm_T *parmp);
62static void cmdsrv_main(int *argc, char **argv, char_u *serverName_arg, char_u **serverStr);
63static char_u *serverMakeName(char_u *arg, char *cmd);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010064# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +000065#endif
66
67
Bram Moolenaarb4210b32004-06-13 14:51:16 +000068/*
69 * Different types of error messages.
70 */
71static char *(main_errors[]) =
72{
Bram Moolenaarc013cb62005-07-24 21:18:31 +000073 N_("Unknown option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +000074#define ME_UNKNOWN_OPTION 0
75 N_("Too many edit arguments"),
76#define ME_TOO_MANY_ARGS 1
77 N_("Argument missing after"),
78#define ME_ARG_MISSING 2
Bram Moolenaarc013cb62005-07-24 21:18:31 +000079 N_("Garbage after option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +000080#define ME_GARBAGE 3
81 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
82#define ME_EXTRA_CMD 4
83 N_("Invalid argument for"),
84#define ME_INVALID_ARG 5
85};
86
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010087#ifndef PROTO /* don't want a prototype for main() */
Bram Moolenaara6044292017-04-02 18:19:53 +020088
89/* Various parameters passed between main() and other functions. */
90static mparm_T params;
91
Bram Moolenaar8866d272012-11-28 15:55:42 +010092#ifndef NO_VIM_MAIN /* skip this for unittests */
Bram Moolenaarf9bde2b2015-04-17 22:08:16 +020093
94static char_u *start_dir = NULL; /* current working dir on startup */
95
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +020096static int has_dash_c_arg = FALSE;
97
Bram Moolenaarb4210b32004-06-13 14:51:16 +000098 int
99# ifdef VIMDLL
100_export
101# endif
102# ifdef FEAT_GUI_MSWIN
103# ifdef __BORLANDC__
104_cdecl
105# endif
106VimMain
107# else
108main
109# endif
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100110(int argc, char **argv)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000111{
Bram Moolenaar77780b62018-03-01 23:10:45 +0100112#if defined(STARTUPTIME) || defined(CLEAN_RUNTIMEPATH)
Bram Moolenaar3f269672009-11-03 11:11:11 +0000113 int i;
114#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000115
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000116 /*
117 * Do any system-specific initialisations. These can NOT use IObuff or
118 * NameBuff. Thus emsg2() cannot be called!
119 */
120 mch_early_init();
121
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100122#if defined(WIN32)
Bram Moolenaar14993322014-09-09 12:25:33 +0200123 /*
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200124 * MinGW expands command line arguments, which confuses our code to
Bram Moolenaar14993322014-09-09 12:25:33 +0200125 * convert when 'encoding' changes. Get the unexpanded arguments.
126 */
127 argc = get_cmd_argsW(&argv);
128#endif
129
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000130 /* Many variables are in "params" so that we can pass them to invoked
131 * functions without a lot of arguments. "argc" and "argv" are also
132 * copied, so that they can be changed. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000133 vim_memset(&params, 0, sizeof(params));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000134 params.argc = argc;
135 params.argv = argv;
136 params.want_full_screen = TRUE;
137#ifdef FEAT_EVAL
138 params.use_debug_break_level = -1;
139#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000140 params.window_count = -1;
Bram Moolenaar58d98232005-07-23 22:25:46 +0000141
Bram Moolenaar99685e62013-05-11 13:56:18 +0200142#ifdef FEAT_RUBY
143 {
144 int ruby_stack_start;
145 vim_ruby_init((void *)&ruby_stack_start);
146 }
147#endif
148
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000149#ifdef FEAT_TCL
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000150 vim_tcl_init(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000151#endif
152
153#ifdef MEM_PROFILE
154 atexit(vim_mem_profile_dump);
155#endif
156
157#ifdef STARTUPTIME
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200158 /* Need to find "--startuptime" before actually parsing arguments. */
Bram Moolenaar07268702018-03-01 21:57:32 +0100159 for (i = 1; i < argc - 1; ++i)
160 if (STRICMP(argv[i], "--startuptime") == 0)
Bram Moolenaar3f269672009-11-03 11:11:11 +0000161 {
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000162 time_fd = mch_fopen(argv[i + 1], "a");
Bram Moolenaar3f269672009-11-03 11:11:11 +0000163 TIME_MSG("--- VIM STARTING ---");
164 break;
165 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000166#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +0000167 starttime = time(NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000168
Bram Moolenaar07268702018-03-01 21:57:32 +0100169#ifdef CLEAN_RUNTIMEPATH
170 /* Need to find "--clean" before actually parsing arguments. */
171 for (i = 1; i < argc; ++i)
172 if (STRICMP(argv[i], "--clean") == 0)
173 {
174 params.clean = TRUE;
175 break;
176 }
177#endif
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200178 common_init(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000179
180#ifdef FEAT_CLIENTSERVER
181 /*
182 * Do the client-server stuff, unless "--servername ''" was used.
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000183 * This may exit Vim if the command was sent to the server.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000184 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000185 exec_on_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000186#endif
187
188 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000189 * Figure out the way to work from the command name argv[0].
190 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000191 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000192 parse_command_name(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000193
194 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000195 * Process the command line arguments. File names are put in the global
196 * argument list "global_alist".
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000197 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000198 command_line_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000199 TIME_MSG("parsing arguments");
200
201 /*
202 * On some systems, when we compile with the GUI, we always use it. On Mac
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000203 * there is no terminal version, and on Windows we can't fork one off with
204 * :gui.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000205 */
206#ifdef ALWAYS_USE_GUI
207 gui.starting = TRUE;
208#else
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000209# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000210 /*
211 * Check if the GUI can be started. Reset gui.starting if not.
212 * Don't know about other systems, stay on the safe side and don't check.
213 */
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000214 if (gui.starting)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000215 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000216 if (gui_init_check() == FAIL)
217 {
218 gui.starting = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000219
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000220 /* When running "evim" or "gvim -y" we need the menus, exit if we
221 * don't have them. */
222 if (params.evim_mode)
223 mch_exit(1);
224 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000225 }
226# endif
227#endif
228
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000229 if (GARGCOUNT > 0)
230 {
Bram Moolenaar53076832015-12-31 19:53:21 +0100231#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000232 /*
233 * Expand wildcards in file names.
234 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000235 if (!params.literal)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000236 {
Bram Moolenaarf6303872015-04-03 17:59:43 +0200237 start_dir = alloc(MAXPATHL);
238 if (start_dir != NULL)
239 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000240 /* Temporarily add '(' and ')' to 'isfname'. These are valid
241 * filename characters but are excluded from 'isfname' to make
242 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
243 do_cmdline_cmd((char_u *)":set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +0000244 alist_expand(NULL, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000245 do_cmdline_cmd((char_u *)":set isf&");
Bram Moolenaarf6303872015-04-03 17:59:43 +0200246 if (start_dir != NULL)
247 mch_chdir((char *)start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000248 }
249#endif
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200250 params.fname = alist_name(&GARGLIST[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000251 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000252
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100253#if defined(WIN32)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000254 {
255 extern void set_alist_count(void);
256
257 /* Remember the number of entries in the argument list. If it changes
258 * we don't react on setting 'encoding'. */
259 set_alist_count();
260 }
261#endif
262
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000263#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000264 if (GARGCOUNT == 1 && params.full_path)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000265 {
266 /*
267 * If there is one filename, fully qualified, we have very probably
268 * been invoked from explorer, so change to the file's directory.
269 * Hint: to avoid this when typing a command use a forward slash.
270 * If the cd fails, it doesn't matter.
271 */
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100272 (void)vim_chdirfile(params.fname, "drop");
Bram Moolenaarf6303872015-04-03 17:59:43 +0200273 if (start_dir != NULL)
274 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000275 }
276#endif
277 TIME_MSG("expanding arguments");
278
279#ifdef FEAT_DIFF
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000280 if (params.diff_mode && params.window_count == -1)
281 params.window_count = 0; /* open up to 3 windows */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000282#endif
283
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000284 /* Don't redraw until much later. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000285 ++RedrawingDisabled;
286
287 /*
288 * When listing swap file names, don't do cursor positioning et. al.
289 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200290 if (recoverymode && params.fname == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000291 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000292
293 /*
294 * When certain to start the GUI, don't check capabilities of terminal.
295 * For GTK we can't be sure, but when started from the desktop it doesn't
296 * make sense to try using a terminal.
297 */
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000298#if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000299 if (gui.starting
300# ifdef FEAT_GUI_GTK
301 && !isatty(2)
302# endif
303 )
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000304 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000305#endif
306
Bram Moolenaard0573012017-10-28 21:11:06 +0200307#if defined(FEAT_GUI_MAC) && defined(MACOS_X_DARWIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000308 /* When the GUI is started from Finder, need to display messages in a
309 * message box. isatty(2) returns TRUE anyway, thus we need to check the
310 * name to know we're not started from a terminal. */
311 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000312 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000313 params.want_full_screen = FALSE;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000314
315 /* Avoid always using "/" as the current directory. Note that when
316 * started from Finder the arglist will be filled later in
317 * HandleODocAE() and "fname" will be NULL. */
318 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
319 && STRCMP(NameBuff, "/") == 0)
320 {
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200321 if (params.fname != NULL)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100322 (void)vim_chdirfile(params.fname, "drop");
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000323 else
324 {
325 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
326 vim_chdir(NameBuff);
327 }
Bram Moolenaarf6303872015-04-03 17:59:43 +0200328 if (start_dir != NULL)
329 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000330 }
331 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000332#endif
333
334 /*
335 * mch_init() sets up the terminal (window) for use. This must be
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100336 * done after resetting full_screen, otherwise it may move the cursor.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000337 * Note that we may use mch_exit() before mch_init()!
338 */
339 mch_init();
340 TIME_MSG("shell init");
341
342#ifdef USE_XSMP
343 /*
344 * For want of anywhere else to do it, try to connect to xsmp here.
345 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
346 * Hijacking -X 'no X connection' to also disable XSMP connection as that
347 * has a similar delay upon failure.
348 * Only try if SESSION_MANAGER is set to something non-null.
349 */
350 if (!x_no_connect)
351 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000352 char *p = getenv("SESSION_MANAGER");
353
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000354 if (p != NULL && *p != NUL)
355 {
356 xsmp_init();
357 TIME_MSG("xsmp init");
358 }
359 }
360#endif
361
362 /*
363 * Print a warning if stdout is not a terminal.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000364 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000365 check_tty(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000366
Bram Moolenaar42b23fa2018-02-03 14:46:45 +0100367#ifdef _IOLBF
368 /* Ensure output works usefully without a tty: buffer lines instead of
369 * fully buffered. */
370 if (silent_mode)
371 setvbuf(stdout, NULL, _IOLBF, 0);
372#endif
373
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000374 /* This message comes before term inits, but after setting "silent_mode"
375 * when the input is not a tty. */
376 if (GARGCOUNT > 1 && !silent_mode)
377 printf(_("%d files to edit\n"), GARGCOUNT);
378
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000379 if (params.want_full_screen && !silent_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000380 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000381 termcapinit(params.term); /* set terminal name and get terminal
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000382 capabilities (will set full_screen) */
383 screen_start(); /* don't know where cursor is now */
384 TIME_MSG("Termcap init");
385 }
386
387 /*
388 * Set the default values for the options that use Rows and Columns.
389 */
390 ui_get_shellsize(); /* inits Rows and Columns */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000391 win_init_size();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000392#ifdef FEAT_DIFF
393 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
394 * file. There is no buffer yet though. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000395 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000396 diff_win_options(firstwin, FALSE);
397#endif
398
399 cmdline_row = Rows - p_ch;
400 msg_row = cmdline_row;
401 screenalloc(FALSE); /* allocate screen buffers */
402 set_init_2();
403 TIME_MSG("inits 2");
404
405 msg_scroll = TRUE;
406 no_wait_return = TRUE;
407
408 init_mappings(); /* set up initial mappings */
409
410 init_highlight(TRUE, FALSE); /* set the default highlight groups */
411 TIME_MSG("init highlight");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000412
413#ifdef FEAT_EVAL
414 /* Set the break level after the terminal is initialized. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000415 debug_break_level = params.use_debug_break_level;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000416#endif
417
Bram Moolenaar2e4cb3b2017-10-22 21:11:17 +0200418 /* Reset 'loadplugins' for "-u NONE" before "--cmd" arguments.
419 * Allows for setting 'loadplugins' there. */
420 if (params.use_vimrc != NULL
421 && (STRCMP(params.use_vimrc, "NONE") == 0
422 || STRCMP(params.use_vimrc, "DEFAULTS") == 0))
423 p_lpl = FALSE;
424
425 /* Execute --cmd arguments. */
426 exe_pre_commands(&params);
427
428 /* Source startup scripts. */
429 source_startup_scripts(&params);
430
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100431#ifdef FEAT_MZSCHEME
432 /*
433 * Newer version of MzScheme (Racket) require earlier (trampolined)
434 * initialisation via scheme_main_setup.
435 * Implement this by initialising it as early as possible
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200436 * and splitting off remaining Vim main into vim_main2().
Bram Moolenaar2e4cb3b2017-10-22 21:11:17 +0200437 * Do source startup scripts, so that 'mzschemedll' can be set.
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100438 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200439 return mzscheme_main();
440#else
441 return vim_main2();
Bram Moolenaar8866d272012-11-28 15:55:42 +0100442#endif
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200443}
Bram Moolenaar8866d272012-11-28 15:55:42 +0100444#endif /* NO_VIM_MAIN */
Bram Moolenaara357e442016-08-10 20:45:07 +0200445#endif /* PROTO */
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100446
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200447/*
448 * vim_main2() is needed for FEAT_MZSCHEME, but we define it always to keep
449 * things simple.
450 * It is also defined when NO_VIM_MAIN is defined, but then it's empty.
451 */
Bram Moolenaar8866d272012-11-28 15:55:42 +0100452 int
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200453vim_main2(void)
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100454{
Bram Moolenaar8866d272012-11-28 15:55:42 +0100455#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000456#ifdef FEAT_EVAL
457 /*
458 * Read all the plugin files.
459 * Only when compiled with +eval, since most plugins need it.
460 */
461 if (p_lpl)
462 {
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200463 char_u *rtp_copy = NULL;
464
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200465 /* First add all package directories to 'runtimepath', so that their
466 * autoload directories can be found. Only if not done already with a
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200467 * :packloadall command.
468 * Make a copy of 'runtimepath', so that source_runtime does not use
469 * the pack directories. */
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200470 if (!did_source_packages)
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200471 {
472 rtp_copy = vim_strsave(p_rtp);
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200473 add_pack_start_dirs();
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200474 }
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200475
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200476 source_in_path(rtp_copy == NULL ? p_rtp : rtp_copy,
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000477# ifdef VMS /* Somehow VMS doesn't handle the "**". */
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200478 (char_u *)"plugin/*.vim",
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000479# else
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200480 (char_u *)"plugin/**/*.vim",
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000481# endif
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200482 DIP_ALL | DIP_NOAFTER);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000483 TIME_MSG("loading plugins");
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200484 vim_free(rtp_copy);
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100485
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200486 /* Only source "start" packages if not done already with a :packloadall
487 * command. */
488 if (!did_source_packages)
489 load_start_packages();
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100490 TIME_MSG("loading packages");
Bram Moolenaar66459b72016-08-06 19:01:55 +0200491
492# ifdef VMS /* Somehow VMS doesn't handle the "**". */
493 source_runtime((char_u *)"plugin/*.vim", DIP_ALL | DIP_AFTER);
494# else
495 source_runtime((char_u *)"plugin/**/*.vim", DIP_ALL | DIP_AFTER);
496# endif
497 TIME_MSG("loading after plugins");
498
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000499 }
500#endif
501
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000502#ifdef FEAT_DIFF
503 /* Decide about window layout for diff mode after reading vimrc. */
504 if (params.diff_mode && params.window_layout == 0)
505 {
506 if (diffopt_horizontal())
507 params.window_layout = WIN_HOR; /* use horizontal split */
508 else
509 params.window_layout = WIN_VER; /* use vertical split */
510 }
511#endif
512
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000513 /*
514 * Recovery mode without a file name: List swap files.
515 * This uses the 'dir' option, therefore it must be after the
516 * initializations.
517 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200518 if (recoverymode && params.fname == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000519 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200520 recover_names(NULL, TRUE, 0, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000521 mch_exit(0);
522 }
523
524 /*
525 * Set a few option defaults after reading .vimrc files:
526 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
527 */
528 set_init_3();
529 TIME_MSG("inits 3");
530
531 /*
532 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
533 * Note that this overrides anything from a vimrc file.
534 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000535 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000536 p_uc = 0;
537
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000538#ifdef FEAT_GUI
539 if (gui.starting)
540 {
541#if defined(UNIX) || defined(VMS)
542 /* When something caused a message from a vimrc script, need to output
543 * an extra newline before the shell prompt. */
544 if (did_emsg || msg_didout)
545 putchar('\n');
546#endif
547
548 gui_start(); /* will set full_screen to TRUE */
549 TIME_MSG("starting GUI");
550
551 /* When running "evim" or "gvim -y" we need the menus, exit if we
552 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000553 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000554 mch_exit(1);
555 }
556#endif
557
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000558#ifdef FEAT_VIMINFO
559 /*
Bram Moolenaard812df62008-11-09 12:46:09 +0000560 * Read in registers, history etc, but not marks, from the viminfo file.
561 * This is where v:oldfiles gets filled.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000562 */
563 if (*p_viminfo != NUL)
564 {
Bram Moolenaard812df62008-11-09 12:46:09 +0000565 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000566 TIME_MSG("reading viminfo");
567 }
568#endif
Bram Moolenaar2cd36962014-01-14 12:57:05 +0100569#ifdef FEAT_EVAL
570 /* It's better to make v:oldfiles an empty list than NULL. */
571 if (get_vim_var_list(VV_OLDFILES) == NULL)
572 set_vim_var_list(VV_OLDFILES, list_alloc());
573#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000574
575#ifdef FEAT_QUICKFIX
576 /*
577 * "-q errorfile": Load the error file now.
578 * If the error file can't be read, exit before doing anything else.
579 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000580 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000581 {
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100582 char_u *enc = NULL;
583
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100584 enc = p_menc;
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000585 if (params.use_ef != NULL)
586 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000587 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200588 vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100589 if (qf_init(NULL, p_ef, p_efm, TRUE, IObuff, enc) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000590 {
591 out_char('\n');
592 mch_exit(3);
593 }
594 TIME_MSG("reading errorfile");
595 }
596#endif
597
598 /*
599 * Start putting things on the screen.
600 * Scroll screen down before drawing over it
601 * Clear screen now, so file message will not be cleared.
602 */
603 starting = NO_BUFFERS;
604 no_wait_return = FALSE;
605 if (!exmode_active)
606 msg_scroll = FALSE;
607
608#ifdef FEAT_GUI
609 /*
610 * This seems to be required to make callbacks to be called now, instead
611 * of after things have been put on the screen, which then may be deleted
612 * when getting a resize callback.
613 * For the Mac this handles putting files dropped on the Vim icon to
614 * global_alist.
615 */
616 if (gui.in_use)
617 {
Bram Moolenaarbb1969b2019-01-17 15:45:25 +0100618 gui_wait_for_chars(50L, typebuf.tb_change_cnt);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000619 TIME_MSG("GUI delay");
620 }
621#endif
622
623#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
624 qnx_clip_init();
625#endif
626
Bram Moolenaarc8bbaa32010-07-14 16:54:21 +0200627#if defined(MACOS_X) && defined(FEAT_CLIPBOARD)
628 clip_init(TRUE);
629#endif
630
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000631#ifdef FEAT_XCLIPBOARD
632 /* Start using the X clipboard, unless the GUI was started. */
633# ifdef FEAT_GUI
634 if (!gui.in_use)
635# endif
636 {
637 setup_term_clip();
638 TIME_MSG("setup clipboard");
639 }
640#endif
641
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000642#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000643 /* Prepare for being a Vim server. */
644 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000645#endif
646
647 /*
648 * If "-" argument given: Read file from stdin.
649 * Do this before starting Raw mode, because it may change things that the
650 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
651 * are the same terminal: "cat | vim -".
652 * Using autocommands here may cause trouble...
653 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000654 if (params.edit_type == EDIT_STDIN && !recoverymode)
655 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000656
657#if defined(UNIX) || defined(VMS)
658 /* When switching screens and something caused a message from a vimrc
659 * script, need to output an extra newline on exit. */
660 if ((did_emsg || msg_didout) && *T_TI != NUL)
661 newline_on_exit = TRUE;
662#endif
663
664 /*
665 * When done something that is not allowed or error message call
666 * wait_return. This must be done before starttermcap(), because it may
667 * switch to another screen. It must be done after settmode(TMODE_RAW),
668 * because we want to react on a single key stroke.
669 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000670 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000671 */
672 settmode(TMODE_RAW);
673 TIME_MSG("setting raw mode");
674
675 if (need_wait_return || msg_didany)
676 {
677 wait_return(TRUE);
678 TIME_MSG("waiting for return");
679 }
680
681 starttermcap(); /* start termcap if not done by wait_return() */
682 TIME_MSG("start termcap");
683
684#ifdef FEAT_MOUSE
685 setmouse(); /* may start using the mouse */
686#endif
687 if (scroll_region)
688 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000689 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000690
Bram Moolenaar980bab42018-08-07 22:42:53 +0200691#if defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar40385db2018-08-07 22:31:44 +0200692 term_push_title(SAVE_RESTORE_BOTH);
693#endif
694
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000695 /*
696 * Don't clear the screen when starting in Ex mode, unless using the GUI.
697 */
698 if (exmode_active
699#ifdef FEAT_GUI
700 && !gui.in_use
701#endif
702 )
703 must_redraw = CLEAR;
704 else
705 {
706 screenclear(); /* clear screen */
707 TIME_MSG("clearing screen");
708 }
709
710#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000711 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000712 {
Bram Moolenaar3a0c9082014-11-12 15:15:42 +0100713 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200714 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000715 TIME_MSG("getting crypt key");
716 }
717#endif
718
719 no_wait_return = TRUE;
720
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000721 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000722 * Create the requested number of windows and edit buffers in them.
723 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000724 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000725 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000726 TIME_MSG("opening buffers");
727
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000728#ifdef FEAT_EVAL
729 /* clear v:swapcommand */
730 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
731#endif
732
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000733 /* Ex starts at last line of the file */
734 if (exmode_active)
735 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
736
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000737 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
738 TIME_MSG("BufEnter autocommands");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000739 setpcmark();
740
741#ifdef FEAT_QUICKFIX
742 /*
743 * When started with "-q errorfile" jump to first error now.
744 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000745 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000746 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000747 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000748 TIME_MSG("jump to first error");
749 }
750#endif
751
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000752 /*
753 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000754 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000755 */
Bram Moolenaarf6303872015-04-03 17:59:43 +0200756 edit_buffers(&params, start_dir);
Bram Moolenaarf6303872015-04-03 17:59:43 +0200757 vim_free(start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000758
759#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000760 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000761 {
762 win_T *wp;
763
764 /* set options in each window for "vimdiff". */
Bram Moolenaar29323592016-07-24 22:04:11 +0200765 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000766 diff_win_options(wp, TRUE);
767 }
768#endif
769
770 /*
771 * Shorten any of the filenames, but only when absolute.
772 */
773 shorten_fnames(FALSE);
774
775 /*
776 * Need to jump to the tag before executing the '-c command'.
777 * Makes "vim -c '/return' -t main" work.
778 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000779 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000780 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000781#if defined(HAS_SWAP_EXISTS_ACTION)
782 swap_exists_did_quit = FALSE;
783#endif
784
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000785 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000786 do_cmdline_cmd(IObuff);
787 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000788
789#if defined(HAS_SWAP_EXISTS_ACTION)
790 /* If the user doesn't want to edit the file then we quit here. */
791 if (swap_exists_did_quit)
792 getout(1);
793#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000794 }
795
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000796 /* Execute any "+", "-c" and "-S" arguments. */
797 if (params.n_commands > 0)
798 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000799
Bram Moolenaar6b1da332017-06-09 21:35:47 +0200800 /* Must come before the may_req_ calls. */
801 starting = 0;
802
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100803#if defined(FEAT_TERMRESPONSE)
Bram Moolenaar976787d2017-06-04 15:45:50 +0200804 /* Must be done before redrawing, puts a few characters on the screen. */
805 may_req_ambiguous_char_width();
806#endif
807
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000808 RedrawingDisabled = 0;
809 redraw_all_later(NOT_VALID);
810 no_wait_return = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000811
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200812 /* 'autochdir' has been postponed */
Bram Moolenaar6f470022018-04-10 18:47:20 +0200813 DO_AUTOCHDIR;
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200814
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000815#ifdef FEAT_TERMRESPONSE
816 /* Requesting the termresponse is postponed until here, so that a "-c q"
817 * argument doesn't make it appear in the shell Vim was started from. */
818 may_req_termresponse();
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200819
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200820 may_req_bg_color();
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000821#endif
822
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000823 /* start in insert mode */
824 if (p_im)
825 need_start_insertmode = TRUE;
826
Bram Moolenaar14735512016-03-26 21:00:08 +0100827#ifdef FEAT_EVAL
828 set_vim_var_nr(VV_VIM_DID_ENTER, 1L);
829#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000830 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
831 TIME_MSG("VimEnter autocommands");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000832
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200833#if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD)
834 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be
835 * done after the clipboard is available and all initial commands that may
836 * modify the 'clipboard' setting have run; i.e. just before entering the
837 * main loop. */
838 {
839 int default_regname = 0;
Bram Moolenaar53076832015-12-31 19:53:21 +0100840
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200841 adjust_clip_reg(&default_regname);
842 set_reg_var(default_regname);
843 }
844#endif
845
Bram Moolenaar8a3bb562018-03-04 20:14:14 +0100846#if defined(FEAT_DIFF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000847 /* When a startup script or session file setup for diff'ing and
848 * scrollbind, sync the scrollbind now. */
849 if (curwin->w_p_diff && curwin->w_p_scb)
850 {
851 update_topline();
852 check_scrollbind((linenr_T)0, 0L);
853 TIME_MSG("diff scrollbinding");
854 }
855#endif
856
857#if defined(WIN3264) && !defined(FEAT_GUI_W32)
858 mch_set_winsize_now(); /* Allow winsize changes from now on */
859#endif
860
Bram Moolenaar4033c552017-09-16 20:54:51 +0200861#if defined(FEAT_GUI)
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000862 /* When tab pages were created, may need to update the tab pages line and
863 * scrollbars. This is skipped while creating them. */
864 if (first_tabpage->tp_next != NULL)
865 {
866 out_flush();
867 gui_init_which_components(NULL);
868 gui_update_scrollbars(TRUE);
869 }
870 need_mouse_correct = TRUE;
871#endif
872
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000873 /* If ":startinsert" command used, stuff a dummy command to be able to
874 * call normal_cmd(), which will then start Insert mode. */
875 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000876 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000877
878#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200879 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200880 {
881# ifdef FEAT_GUI
Bram Moolenaar173c9852010-09-29 17:27:01 +0200882# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar67c53842010-05-22 18:28:27 +0200883 && !defined(FEAT_GUI_W32)
884 if (gui.in_use)
885 {
886 mch_errmsg(_("netbeans is not supported with this GUI\n"));
887 mch_exit(2);
888 }
889# endif
890# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000891 /* Tell the client that it can start sending commands. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200892 netbeans_open(netbeansArg + 3, TRUE);
Bram Moolenaar67c53842010-05-22 18:28:27 +0200893 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000894#endif
895
896 TIME_MSG("before starting main loop");
897
898 /*
899 * Call the main command loop. This never returns.
Bram Moolenaar92d147b2018-07-29 17:35:23 +0200900 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000901 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000902
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200903#endif /* NO_VIM_MAIN */
904
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000905 return 0;
906}
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000907
908/*
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200909 * Initialisation shared by main() and some tests.
910 */
911 void
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200912common_init(mparm_T *paramp)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200913{
Bram Moolenaar438d1762018-09-30 17:11:48 +0200914 cmdline_init();
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200915
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200916 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200917#ifdef FEAT_EVAL
918 eval_init(); /* init global variables */
919#endif
920
921#ifdef __QNXNTO__
922 qnx_init(); /* PhAttach() for clipboard, (and gui) */
923#endif
924
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200925 /* Init the table of Normal mode commands. */
926 init_normal_cmds();
927
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200928 /*
929 * Allocate space for the generic buffers (needed for set_init_1() and
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100930 * emsg()).
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200931 */
932 if ((IObuff = alloc(IOSIZE)) == NULL
933 || (NameBuff = alloc(MAXPATHL)) == NULL)
934 mch_exit(0);
935 TIME_MSG("Allocated generic buffers");
936
937#ifdef NBDEBUG
938 /* Wait a moment for debugging NetBeans. Must be after allocating
939 * NameBuff. */
940 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
941 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
942 TIME_MSG("NetBeans debug wait");
943#endif
944
945#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
946 /*
947 * Setup to use the current locale (for ctype() and many other things).
948 * NOTE: Translated messages with encodings other than latin1 will not
949 * work until set_init_1() has been called!
950 */
951 init_locale();
952 TIME_MSG("locale set");
953#endif
954
955#ifdef FEAT_GUI
956 gui.dofork = TRUE; /* default is to use fork() */
957#endif
958
959 /*
960 * Do a first scan of the arguments in "argv[]":
961 * -display or --display
962 * --server...
963 * --socketid
964 * --windowid
965 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200966 early_arg_scan(paramp);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200967
Bram Moolenaard0573012017-10-28 21:11:06 +0200968#if defined(FEAT_GUI)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200969 /* Prepare for possibly starting GUI sometime */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200970 gui_prepare(&paramp->argc, paramp->argv);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200971 TIME_MSG("GUI prepared");
972#endif
973
974#ifdef FEAT_CLIPBOARD
975 clip_init(FALSE); /* Initialise clipboard stuff */
976 TIME_MSG("clipboard setup");
977#endif
978
979 /*
980 * Check if we have an interactive window.
981 * On the Amiga: If there is no window, we open one with a newcli command
982 * (needed for :! to * work). mch_check_win() will also handle the -d or
983 * -dev argument.
984 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +0100985 stdout_isatty = (mch_check_win(paramp->argc, paramp->argv) != FAIL);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200986 TIME_MSG("window checked");
987
988 /*
989 * Allocate the first window and buffer.
990 * Can't do anything without it, exit when it fails.
991 */
992 if (win_alloc_first() == FAIL)
993 mch_exit(0);
994
995 init_yank(); /* init yank buffers */
996
997 alist_init(&global_alist); /* Init the argument list to empty. */
998 global_alist.id = 0;
999
1000 /*
1001 * Set the default values for the options.
1002 * NOTE: Non-latin1 translated messages are working only after this,
1003 * because this is where "has_mbyte" will be set, which is used by
1004 * msg_outtrans_len_attr().
1005 * First find out the home directory, needed to expand "~" in options.
1006 */
1007 init_homedir(); /* find real value of $HOME */
Bram Moolenaar07268702018-03-01 21:57:32 +01001008 set_init_1(paramp->clean);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001009 TIME_MSG("inits 1");
1010
1011#ifdef FEAT_EVAL
1012 set_lang_var(); /* set v:lang and v:ctype */
1013#endif
Bram Moolenaar6436cd82018-12-27 00:28:33 +01001014
1015#ifdef FEAT_SIGNS
1016 init_signs();
1017#endif
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001018}
1019
1020/*
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001021 * Return TRUE when the --not-a-term argument was found.
1022 */
1023 int
1024is_not_a_term()
1025{
1026 return params.not_a_term;
1027}
1028
1029/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001030 * Main loop: Execute Normal mode commands until exiting Vim.
1031 * Also used to handle commands in the command-line window, until the window
1032 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001033 * Also used to handle ":visual" command after ":global": execute Normal mode
1034 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001035 */
1036 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001037main_loop(
1038 int cmdwin, /* TRUE when working in the command-line window */
1039 int noexmode) /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001040{
Bram Moolenaardf2c7742018-04-16 17:06:09 +02001041 oparg_T oa; /* operator arguments */
Bram Moolenaar8872ef12015-02-10 19:27:05 +01001042 volatile int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001043#ifdef FEAT_CONCEAL
Bram Moolenaar1db43b12015-07-12 16:21:23 +02001044 /* these are static to avoid a compiler warning */
1045 static linenr_T conceal_old_cursor_line = 0;
1046 static linenr_T conceal_new_cursor_line = 0;
1047 static int conceal_update_lines = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001048#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001049
1050#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1051 /* Setup to catch a terminating error from the X server. Just ignore
1052 * it, restore the state and continue. This might not always work
1053 * properly, but at least we don't exit unexpectedly when the X server
Bram Moolenaar2cd36962014-01-14 12:57:05 +01001054 * exits while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001055 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001056 {
1057 State = NORMAL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001058 VIsual_active = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001059 got_int = TRUE;
1060 need_wait_return = FALSE;
1061 global_busy = FALSE;
1062 exmode_active = 0;
1063 skip_redraw = FALSE;
1064 RedrawingDisabled = 0;
1065 no_wait_return = 0;
Bram Moolenaar7701c242011-10-04 16:43:53 +02001066 vgetc_busy = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001067# ifdef FEAT_EVAL
1068 emsg_skip = 0;
1069# endif
1070 emsg_off = 0;
1071# ifdef FEAT_MOUSE
1072 setmouse();
1073# endif
1074 settmode(TMODE_RAW);
1075 starttermcap();
1076 scroll_start();
1077 redraw_later_clear();
1078 }
1079#endif
1080
1081 clear_oparg(&oa);
1082 while (!cmdwin
1083#ifdef FEAT_CMDWIN
1084 || cmdwin_result == 0
1085#endif
1086 )
1087 {
1088 if (stuff_empty())
1089 {
1090 did_check_timestamps = FALSE;
1091 if (need_check_timestamps)
1092 check_timestamps(FALSE);
1093 if (need_wait_return) /* if wait_return still needed ... */
1094 wait_return(FALSE); /* ... call it now */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001095 if (need_start_insertmode && goto_im() && !VIsual_active)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001096 {
1097 need_start_insertmode = FALSE;
1098 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1099 /* skip the fileinfo message now, because it would be shown
1100 * after insert mode finishes! */
1101 need_fileinfo = FALSE;
1102 }
1103 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001104
1105 /* Reset "got_int" now that we got back to the main loop. Except when
1106 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1107 * the ":g" command.
1108 * For ":g/pat/vi" we reset "got_int" when used once. When used
1109 * a second time we go back to Ex mode and abort the ":g" command. */
1110 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001111 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001112 if (noexmode && global_busy && !exmode_active && previous_got_int)
1113 {
1114 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1115 * used and keep "got_int" set, so that it aborts ":g". */
1116 exmode_active = EXMODE_NORMAL;
1117 State = NORMAL;
1118 }
1119 else if (!global_busy || !exmode_active)
1120 {
1121 if (!quit_more)
1122 (void)vgetc(); /* flush all buffers */
1123 got_int = FALSE;
1124 }
1125 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001126 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001127 else
1128 previous_got_int = FALSE;
1129
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001130 if (!exmode_active)
1131 msg_scroll = FALSE;
1132 quit_more = FALSE;
1133
1134 /*
1135 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1136 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1137 * update cursor and redraw.
1138 */
1139 if (skip_redraw || exmode_active)
1140 skip_redraw = FALSE;
1141 else if (do_redraw || stuff_empty())
1142 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001143#ifdef FEAT_GUI
Bram Moolenaar92d147b2018-07-29 17:35:23 +02001144 // If ui_breakcheck() was used a resize may have been postponed.
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001145 gui_may_resize_shell();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001146#endif
Bram Moolenaar92d147b2018-07-29 17:35:23 +02001147#ifdef HAVE_DROP_FILE
1148 // If files were dropped while text was locked or the curbuf was
1149 // locked, this would be a good time to handle the drop.
1150 handle_any_postponed_drop();
1151#endif
Bram Moolenaarbbee8d52019-01-14 21:51:40 +01001152#ifdef FEAT_CONCEAL
1153 if (curwin->w_p_cole == 0)
1154 conceal_update_lines = FALSE;
1155#endif
Bram Moolenaar92d147b2018-07-29 17:35:23 +02001156
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001157 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001158 if (!finish_op && (
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001159 has_cursormoved()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001160#ifdef FEAT_CONCEAL
1161 || curwin->w_p_cole > 0
1162#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001163 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001164 && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001165 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001166 if (has_cursormoved())
1167 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1168 FALSE, curbuf);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001169# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001170 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001171 {
1172 conceal_old_cursor_line = last_cursormoved.lnum;
1173 conceal_new_cursor_line = curwin->w_cursor.lnum;
1174 conceal_update_lines = TRUE;
1175 }
1176# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001177 last_cursormoved = curwin->w_cursor;
1178 }
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001179
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001180#if defined(FEAT_CONCEAL)
1181 if (conceal_update_lines
1182 && (conceal_old_cursor_line != conceal_new_cursor_line
1183 || conceal_cursor_line(curwin)
1184 || need_cursor_line_redraw))
1185 {
1186 if (conceal_old_cursor_line != conceal_new_cursor_line
Bram Moolenaarbbee8d52019-01-14 21:51:40 +01001187 && conceal_old_cursor_line != 0
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001188 && conceal_old_cursor_line
1189 <= curbuf->b_ml.ml_line_count)
1190 redrawWinline(curwin, conceal_old_cursor_line);
1191 redrawWinline(curwin, conceal_new_cursor_line);
1192 curwin->w_valid &= ~VALID_CROW;
1193 need_cursor_line_redraw = FALSE;
1194 }
1195#endif
1196
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001197 /* Trigger TextChanged if b:changedtick differs. */
Bram Moolenaar186628f2013-03-19 13:33:23 +01001198 if (!finish_op && has_textchanged()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001199 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf))
Bram Moolenaar186628f2013-03-19 13:33:23 +01001200 {
Bram Moolenaar5a093432018-02-10 18:15:19 +01001201 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL, FALSE, curbuf);
1202 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar186628f2013-03-19 13:33:23 +01001203 }
Bram Moolenaar186628f2013-03-19 13:33:23 +01001204
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01001205#if defined(FEAT_DIFF)
Bram Moolenaare3521d92018-09-16 14:10:31 +02001206 // Updating diffs from changed() does not always work properly,
1207 // esp. updating folds. Do an update just before redrawing if
1208 // needed.
1209 if (curtab->tp_diff_update || curtab->tp_diff_invalid)
1210 {
1211 ex_diffupdate(NULL);
1212 curtab->tp_diff_update = FALSE;
1213 }
1214
Bram Moolenaar33aec762006-01-22 23:30:12 +00001215 /* Scroll-binding for diff mode may have been postponed until
1216 * here. Avoids doing it for every change. */
1217 if (diff_need_scrollbind)
1218 {
1219 check_scrollbind((linenr_T)0, 0L);
1220 diff_need_scrollbind = FALSE;
1221 }
1222#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001223#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001224 /* Include a closed fold completely in the Visual area. */
1225 foldAdjustVisual();
1226#endif
1227#ifdef FEAT_FOLDING
1228 /*
1229 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1230 * contain the cursor.
1231 * When 'foldopen' is "all", open the fold(s) under the cursor.
1232 * This may mark the window for redrawing.
1233 */
1234 if (hasAnyFolding(curwin) && !char_avail())
1235 {
1236 foldCheckClose();
1237 if (fdo_flags & FDO_ALL)
1238 foldOpenCursor();
1239 }
1240#endif
1241
1242 /*
1243 * Before redrawing, make sure w_topline is correct, and w_leftcol
1244 * if lines don't wrap, and w_skipcol if lines wrap.
1245 */
1246 update_topline();
1247 validate_cursor();
1248
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001249 if (VIsual_active)
1250 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001251 else if (must_redraw)
Bram Moolenaara338adc2018-01-31 20:51:47 +01001252 {
1253 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001254 update_screen(0);
Bram Moolenaara338adc2018-01-31 20:51:47 +01001255 mch_enable_flush();
1256 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001257 else if (redraw_cmdline || clear_cmdline)
1258 showmode();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001259 redraw_statuslines();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001260#ifdef FEAT_TITLE
1261 if (need_maketitle)
1262 maketitle();
1263#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001264#ifdef FEAT_VIMINFO
1265 curbuf->b_last_used = vim_time();
1266#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001267 /* display message after redraw */
1268 if (keep_msg != NULL)
1269 {
1270 char_u *p;
1271
1272 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001273 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1274 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001275 p = keep_msg;
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001276 msg_attr((char *)p, keep_msg_attr);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001277 vim_free(p);
1278 }
1279 if (need_fileinfo) /* show file info after redraw */
1280 {
1281 fileinfo(FALSE, TRUE, FALSE);
1282 need_fileinfo = FALSE;
1283 }
1284
1285 emsg_on_display = FALSE; /* can delete error message now */
1286 did_emsg = FALSE;
1287 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001288 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001289 showruler(FALSE);
1290
1291 setcursor();
1292 cursor_on();
1293
1294 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001295
1296#ifdef STARTUPTIME
1297 /* Now that we have drawn the first screen all the startup stuff
1298 * has been done, close any file for startup messages. */
1299 if (time_fd != NULL)
1300 {
1301 TIME_MSG("first screen update");
1302 TIME_MSG("--- VIM STARTED ---");
1303 fclose(time_fd);
1304 time_fd = NULL;
1305 }
1306#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001307 }
1308#ifdef FEAT_GUI
1309 if (need_mouse_correct)
1310 gui_mouse_correct();
1311#endif
1312
1313 /*
1314 * Update w_curswant if w_set_curswant has been set.
1315 * Postponed until here to avoid computing w_virtcol too often.
1316 */
1317 update_curswant();
1318
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001319#ifdef FEAT_EVAL
1320 /*
1321 * May perform garbage collection when waiting for a character, but
1322 * only at the very toplevel. Otherwise we may be using a List or
1323 * Dict internally somewhere.
1324 * "may_garbage_collect" is reset in vgetc() which is invoked through
1325 * do_exmode() and normal_cmd().
1326 */
1327 may_garbage_collect = (!cmdwin && !noexmode);
1328#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001329 /*
1330 * If we're invoked as ex, do a round of ex commands.
1331 * Otherwise, get and execute a normal mode command.
1332 */
1333 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001334 {
1335 if (noexmode) /* End of ":global/path/visual" commands */
1336 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001337 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001338 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001339 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001340 {
1341#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02001342 if (term_use_loop()
Bram Moolenaaraaa8a352017-08-05 20:17:00 +02001343 && oa.op_type == OP_NOP && oa.regname == NUL
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001344 && !VIsual_active
1345 && !skip_term_loop)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001346 {
1347 /* If terminal_loop() returns OK we got a key that is handled
Bram Moolenaar6d819742017-08-06 14:57:49 +02001348 * in Normal model. With FAIL we first need to position the
1349 * cursor and the screen needs to be redrawn. */
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001350 if (terminal_loop(TRUE) == OK)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001351 normal_cmd(&oa, TRUE);
1352 }
1353 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001354#endif
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001355 {
1356#ifdef FEAT_TERMINAL
1357 skip_term_loop = FALSE;
1358#endif
Bram Moolenaar423802d2017-07-30 16:52:24 +02001359 normal_cmd(&oa, TRUE);
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001360 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02001361 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001362 }
1363}
1364
1365
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001366#if defined(USE_XSMP) || defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001367/*
1368 * Exit, but leave behind swap files for modified buffers.
1369 */
1370 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001371getout_preserve_modified(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001372{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001373# if defined(SIGHUP) && defined(SIG_IGN)
1374 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1375 * makes Vim exit and then handling SIGHUP causes various reentrance
1376 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001377 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001378# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001379
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001380 ml_close_notmod(); /* close all not-modified buffers */
1381 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1382 ml_close_all(FALSE); /* close all memfiles, without deleting */
1383 getout(exitval); /* exit Vim properly */
1384}
1385#endif
1386
1387
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001388/*
1389 * Exit properly.
1390 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001391 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001392getout(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001393{
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001394 exiting = TRUE;
Bram Moolenaar0bd052b2018-03-22 20:33:56 +01001395#if defined(FEAT_JOB_CHANNEL)
1396 ch_log(NULL, "Exiting...");
1397#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001398
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001399 /* When running in Ex mode an error causes us to exit with a non-zero exit
1400 * code. POSIX requires this, although it's not 100% clear from the
1401 * standard. */
1402 if (exmode_active)
1403 exitval += ex_exitval;
1404
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001405 /* Position the cursor on the last screen line, below all the text */
1406#ifdef FEAT_GUI
1407 if (!gui.in_use)
1408#endif
1409 windgoto((int)Rows - 1, 0);
1410
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001411#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1412 /* Optionally print hashtable efficiency. */
1413 hash_debug_results();
1414#endif
1415
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001416#ifdef FEAT_GUI
1417 msg_didany = FALSE;
1418#endif
1419
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001420 if (v_dying <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001421 {
Bram Moolenaardf2c7742018-04-16 17:06:09 +02001422 tabpage_T *tp;
1423 tabpage_T *next_tp;
1424 buf_T *buf;
1425 win_T *wp;
1426
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001427 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001428 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001429 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001430 next_tp = tp->tp_next;
Bram Moolenaar29323592016-07-24 22:04:11 +02001431 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001432 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001433 if (wp->w_buffer == NULL)
1434 /* Autocmd must have close the buffer already, skip. */
1435 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001436 buf = wp->w_buffer;
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001437 if (CHANGEDTICK(buf) != -1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001438 {
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001439 bufref_T bufref;
1440
1441 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001442 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1443 buf->b_fname, FALSE, buf);
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001444 if (bufref_valid(&bufref))
1445 CHANGEDTICK(buf) = -1; /* note we did it already */
1446
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001447 /* start all over, autocommands may mess up the lists */
1448 next_tp = first_tabpage;
1449 break;
1450 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001451 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001452 }
Bram Moolenaar33aec762006-01-22 23:30:12 +00001453
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001454 /* Trigger BufUnload for buffers that are loaded */
Bram Moolenaar29323592016-07-24 22:04:11 +02001455 FOR_ALL_BUFFERS(buf)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001456 if (buf->b_ml.ml_mfp != NULL)
1457 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001458 bufref_T bufref;
1459
1460 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001461 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001462 FALSE, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001463 if (!bufref_valid(&bufref))
1464 /* autocmd deleted the buffer */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001465 break;
1466 }
1467 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1468 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001469
1470#ifdef FEAT_VIMINFO
1471 if (*p_viminfo != NUL)
1472 /* Write out the registers, history, marks etc, to the viminfo file */
1473 write_viminfo(NULL, FALSE);
1474#endif
1475
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001476 if (v_dying <= 1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001477 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001478
Bram Moolenaar05159a02005-02-26 23:04:13 +00001479#ifdef FEAT_PROFILE
1480 profile_dump();
1481#endif
1482
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001483 if (did_emsg
1484#ifdef FEAT_GUI
1485 || (gui.in_use && msg_didany && p_verbose > 0)
1486#endif
1487 )
1488 {
1489 /* give the user a chance to read the (error) message */
1490 no_wait_return = FALSE;
1491 wait_return(FALSE);
1492 }
1493
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001494 /* Position the cursor again, the autocommands may have moved it */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001495#ifdef FEAT_GUI
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001496 if (!gui.in_use)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001497#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001498 windgoto((int)Rows - 1, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001499
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001500#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar65edff82016-02-21 16:40:11 +01001501 job_stop_on_exit();
1502#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001503#ifdef FEAT_LUA
1504 lua_end();
1505#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001506#ifdef FEAT_MZSCHEME
1507 mzscheme_end();
1508#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001509#ifdef FEAT_TCL
1510 tcl_end();
1511#endif
1512#ifdef FEAT_RUBY
1513 ruby_end();
1514#endif
1515#ifdef FEAT_PYTHON
1516 python_end();
1517#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001518#ifdef FEAT_PYTHON3
1519 python3_end();
1520#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001521#ifdef FEAT_PERL
1522 perl_end();
1523#endif
1524#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1525 iconv_end();
1526#endif
1527#ifdef FEAT_NETBEANS_INTG
1528 netbeans_end();
1529#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001530#ifdef FEAT_CSCOPE
1531 cs_end();
1532#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001533#ifdef FEAT_EVAL
1534 if (garbage_collect_at_exit)
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02001535 garbage_collect(FALSE);
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001536#endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001537#if defined(WIN32)
Bram Moolenaar14993322014-09-09 12:25:33 +02001538 free_cmd_argsW();
1539#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001540
1541 mch_exit(exitval);
1542}
1543
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001544#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1545/*
1546 * Setup to use the current locale (for ctype() and many other things).
1547 */
1548 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001549init_locale(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001550{
1551 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001552
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001553# ifdef FEAT_GUI_GTK
1554 /* Tell Gtk not to change our locale settings. */
1555 gtk_disable_setlocale();
1556# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001557# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1558 /* Make sure strtod() uses a decimal point, not a comma. */
1559 setlocale(LC_NUMERIC, "C");
1560# endif
1561
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001562# ifdef WIN32
1563 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1564 * text while it's expecting text in the current locale. This call avoids
1565 * that. */
1566 setlocale(LC_CTYPE, "C");
1567# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001568
1569# ifdef FEAT_GETTEXT
1570 {
1571 int mustfree = FALSE;
1572 char_u *p;
1573
1574# ifdef DYNAMIC_GETTEXT
1575 /* Initialize the gettext library */
Bram Moolenaar286eacd2016-01-16 18:05:50 +01001576 dyn_libintl_init();
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001577# endif
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001578 /* expand_env() doesn't work yet, because g_chartab[] is not
1579 * initialized yet, call vim_getenv() directly */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001580 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1581 if (p != NULL && *p != NUL)
1582 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001583 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001584 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1585 }
1586 if (mustfree)
1587 vim_free(p);
1588 textdomain(VIMPACKAGE);
1589 }
1590# endif
1591}
1592#endif
1593
1594/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001595 * Get the name of the display, before gui_prepare() removes it from
1596 * argv[]. Used for the xterm-clipboard display.
1597 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001598 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001599 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001600 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001601early_arg_scan(mparm_T *parmp UNUSED)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001602{
Bram Moolenaar03005972008-11-20 13:12:36 +00001603#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1604 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001605 int argc = parmp->argc;
1606 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001607 int i;
1608
1609 for (i = 1; i < argc; i++)
1610 {
1611 if (STRCMP(argv[i], "--") == 0)
1612 break;
1613# ifdef FEAT_XCLIPBOARD
1614 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001615# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001616 || STRICMP(argv[i], "--display") == 0
1617# endif
1618 )
1619 {
1620 if (i == argc - 1)
1621 mainerr_arg_missing((char_u *)argv[i]);
1622 xterm_display = argv[++i];
1623 }
1624# endif
1625# ifdef FEAT_CLIENTSERVER
1626 else if (STRICMP(argv[i], "--servername") == 0)
1627 {
1628 if (i == argc - 1)
1629 mainerr_arg_missing((char_u *)argv[i]);
1630 parmp->serverName_arg = (char_u *)argv[++i];
1631 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001632 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001633 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001634 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001635 {
1636 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001637# ifdef FEAT_GUI
1638 if (strstr(argv[i], "-wait") != 0)
1639 /* don't fork() when starting the GUI to edit files ourself */
1640 gui.dofork = FALSE;
1641# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001642 }
1643# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001644
1645# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1646# ifdef FEAT_GUI_W32
1647 else if (STRICMP(argv[i], "--windowid") == 0)
1648# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001649 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001650# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001651 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001652 long_u id;
1653 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001654
1655 if (i == argc - 1)
1656 mainerr_arg_missing((char_u *)argv[i]);
1657 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001658 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001659 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001660 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001661 if (count != 1)
1662 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1663 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001664# ifdef FEAT_GUI_W32
1665 win_socket_id = id;
1666# else
1667 gtk_socket_id = id;
1668# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001669 i++;
1670 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001671# endif
1672# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001673 else if (STRICMP(argv[i], "--echo-wid") == 0)
1674 echo_wid_arg = TRUE;
1675# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001676# ifndef FEAT_NETBEANS_INTG
1677 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001678 {
1679 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1680 mch_exit(2);
1681 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001682# endif
1683
Bram Moolenaar58d98232005-07-23 22:25:46 +00001684 }
1685#endif
1686}
1687
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001688#ifndef NO_VIM_MAIN
1689/*
1690 * Get a (optional) count for a Vim argument.
1691 */
1692 static int
1693get_number_arg(
1694 char_u *p, /* pointer to argument */
1695 int *idx, /* index in argument, is incremented */
1696 int def) /* default value */
1697{
1698 if (vim_isdigit(p[*idx]))
1699 {
1700 def = atoi((char *)&(p[*idx]));
1701 while (vim_isdigit(p[*idx]))
1702 *idx = *idx + 1;
1703 }
1704 return def;
1705}
1706
1707/*
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001708 * Check for: [r][e][g][vi|vim|view][diff][ex[im]] (sort of)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001709 * If the executable name starts with "r" we disable shell commands.
1710 * If the next character is "e" we run in Easy mode.
1711 * If the next character is "g" we run the GUI version.
1712 * If the next characters are "view" we start in readonly mode.
1713 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1714 * If the next characters are "ex" we start in Ex mode. If it's followed
1715 * by "im" use improved Ex mode.
1716 */
1717 static void
1718parse_command_name(mparm_T *parmp)
1719{
1720 char_u *initstr;
1721
1722 initstr = gettail((char_u *)parmp->argv[0]);
1723
Bram Moolenaard0573012017-10-28 21:11:06 +02001724#ifdef FEAT_GUI_MAC
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001725 /* An issue has been seen when launching Vim in such a way that
1726 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1727 * executable or a symbolic link of it. Until this issue is resolved
1728 * we prohibit the GUI from being used.
1729 */
1730 if (STRCMP(initstr, parmp->argv[0]) == 0)
1731 disallow_gui = TRUE;
1732
1733 /* TODO: On MacOS X default to gui if argv[0] ends in:
1734 * /Vim.app/Contents/MacOS/Vim */
1735#endif
1736
1737#ifdef FEAT_EVAL
1738 set_vim_var_string(VV_PROGNAME, initstr, -1);
Bram Moolenaar08cab962017-03-04 14:37:18 +01001739 set_progpath((char_u *)parmp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001740#endif
1741
1742 if (TOLOWER_ASC(initstr[0]) == 'r')
1743 {
1744 restricted = TRUE;
1745 ++initstr;
1746 }
1747
1748 /* Use evim mode for "evim" and "egvim", not for "editor". */
1749 if (TOLOWER_ASC(initstr[0]) == 'e'
1750 && (TOLOWER_ASC(initstr[1]) == 'v'
1751 || TOLOWER_ASC(initstr[1]) == 'g'))
1752 {
1753#ifdef FEAT_GUI
1754 gui.starting = TRUE;
1755#endif
1756 parmp->evim_mode = TRUE;
1757 ++initstr;
1758 }
1759
1760 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1761 if (TOLOWER_ASC(initstr[0]) == 'g')
1762 {
1763 main_start_gui();
1764#ifdef FEAT_GUI
1765 ++initstr;
1766#endif
1767 }
1768
1769 if (STRNICMP(initstr, "view", 4) == 0)
1770 {
1771 readonlymode = TRUE;
1772 curbuf->b_p_ro = TRUE;
1773 p_uc = 10000; /* don't update very often */
1774 initstr += 4;
1775 }
1776 else if (STRNICMP(initstr, "vim", 3) == 0)
1777 initstr += 3;
1778
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001779 // Catch "[r][g]vimdiff" and "[r][g]viewdiff".
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001780 if (STRICMP(initstr, "diff") == 0)
1781 {
1782#ifdef FEAT_DIFF
1783 parmp->diff_mode = TRUE;
1784#else
1785 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1786 mch_errmsg("\n");
1787 mch_exit(2);
1788#endif
1789 }
1790
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001791 // Checking for "ex" here may catch some weir names, such as "vimex" or
1792 // "viewex", we assume the user knows that.
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001793 if (STRNICMP(initstr, "ex", 2) == 0)
1794 {
1795 if (STRNICMP(initstr + 2, "im", 2) == 0)
1796 exmode_active = EXMODE_VIM;
1797 else
1798 exmode_active = EXMODE_NORMAL;
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001799 change_compatible(TRUE); // set 'compatible'
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001800 }
1801}
1802
Bram Moolenaar58d98232005-07-23 22:25:46 +00001803/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001804 * Scan the command line arguments.
1805 */
1806 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001807command_line_scan(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001808{
1809 int argc = parmp->argc;
1810 char **argv = parmp->argv;
1811 int argv_idx; /* index in argv[n][] */
1812 int had_minmin = FALSE; /* found "--" argument */
1813 int want_argument; /* option argument with argument */
1814 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001815 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001816 long n;
1817
1818 --argc;
1819 ++argv;
1820 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1821 while (argc > 0)
1822 {
1823 /*
1824 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1825 */
1826 if (argv[0][0] == '+' && !had_minmin)
1827 {
1828 if (parmp->n_commands >= MAX_ARG_CMDS)
1829 mainerr(ME_EXTRA_CMD, NULL);
1830 argv_idx = -1; /* skip to next argument */
1831 if (argv[0][1] == NUL)
1832 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1833 else
1834 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1835 }
1836
1837 /*
1838 * Optional argument.
1839 */
1840 else if (argv[0][0] == '-' && !had_minmin)
1841 {
1842 want_argument = FALSE;
1843 c = argv[0][argv_idx++];
1844#ifdef VMS
1845 /*
1846 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1847 * and "-/X" as "-X".
1848 */
1849 if (c == '/')
1850 {
1851 c = argv[0][argv_idx++];
1852 c = TOUPPER_ASC(c);
1853 }
1854 else
1855 c = TOLOWER_ASC(c);
1856#endif
1857 switch (c)
1858 {
1859 case NUL: /* "vim -" read from stdin */
1860 /* "ex -" silent mode */
1861 if (exmode_active)
1862 silent_mode = TRUE;
1863 else
1864 {
1865 if (parmp->edit_type != EDIT_NONE)
1866 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1867 parmp->edit_type = EDIT_STDIN;
1868 read_cmd_fd = 2; /* read from stderr instead of stdin */
1869 }
1870 argv_idx = -1; /* skip to next argument */
1871 break;
1872
1873 case '-': /* "--" don't take any more option arguments */
1874 /* "--help" give help message */
1875 /* "--version" give version message */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001876 /* "--clean" clean context */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001877 /* "--literal" take files literally */
1878 /* "--nofork" don't fork */
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001879 /* "--not-a-term" don't warn for not a term */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001880 /* "--ttyfail" exit if not a term */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001881 /* "--noplugin[s]" skip plugins */
1882 /* "--cmd <cmd>" execute cmd before vimrc */
1883 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1884 usage();
1885 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1886 {
1887 Columns = 80; /* need to init Columns */
1888 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1889 list_version();
1890 msg_putchar('\n');
1891 msg_didout = FALSE;
1892 mch_exit(0);
1893 }
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001894 else if (STRNICMP(argv[0] + argv_idx, "clean", 5) == 0)
1895 {
1896 parmp->use_vimrc = (char_u *)"DEFAULTS";
Bram Moolenaar62dd4522018-03-14 21:20:02 +01001897#ifdef FEAT_GUI
1898 use_gvimrc = (char_u *)"NONE";
1899#endif
Bram Moolenaar07268702018-03-01 21:57:32 +01001900 parmp->clean = TRUE;
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001901 set_option_value((char_u *)"vif", 0L, (char_u *)"NONE", 0);
1902 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001903 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1904 {
Bram Moolenaar53076832015-12-31 19:53:21 +01001905#ifdef EXPAND_FILENAMES
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001906 parmp->literal = TRUE;
1907#endif
1908 }
1909 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1910 {
1911#ifdef FEAT_GUI
1912 gui.dofork = FALSE; /* don't fork() when starting GUI */
1913#endif
1914 }
1915 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1916 p_lpl = FALSE;
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001917 else if (STRNICMP(argv[0] + argv_idx, "not-a-term", 10) == 0)
1918 parmp->not_a_term = TRUE;
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001919 else if (STRNICMP(argv[0] + argv_idx, "ttyfail", 7) == 0)
1920 parmp->tty_fail = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001921 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1922 {
1923 want_argument = TRUE;
1924 argv_idx += 3;
1925 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001926 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1927 {
1928 want_argument = TRUE;
1929 argv_idx += 11;
1930 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001931#ifdef FEAT_CLIENTSERVER
1932 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1933 ; /* already processed -- no arg */
1934 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1935 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1936 {
1937 /* already processed -- snatch the following arg */
1938 if (argc > 1)
1939 {
1940 --argc;
1941 ++argv;
1942 }
1943 }
1944#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001945#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1946# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001947 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001948# else
1949 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1950# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001951 {
1952 /* already processed -- snatch the following arg */
1953 if (argc > 1)
1954 {
1955 --argc;
1956 ++argv;
1957 }
1958 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001959#endif
1960#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001961 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1962 {
1963 /* already processed, skip */
1964 }
1965#endif
1966 else
1967 {
1968 if (argv[0][argv_idx])
1969 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1970 had_minmin = TRUE;
1971 }
1972 if (!want_argument)
1973 argv_idx = -1; /* skip to next argument */
1974 break;
1975
1976 case 'A': /* "-A" start in Arabic mode */
1977#ifdef FEAT_ARABIC
1978 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1979#else
1980 mch_errmsg(_(e_noarabic));
1981 mch_exit(2);
1982#endif
1983 break;
1984
1985 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001986 /* Needs to be effective before expanding file names, because
1987 * for Win32 this makes us edit a shortcut file itself,
1988 * instead of the file it links to. */
1989 set_options_bin(curbuf->b_p_bin, 1, 0);
1990 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001991 break;
1992
1993 case 'C': /* "-C" Compatible */
1994 change_compatible(TRUE);
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02001995 has_dash_c_arg = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001996 break;
1997
1998 case 'e': /* "-e" Ex mode */
1999 exmode_active = EXMODE_NORMAL;
2000 break;
2001
2002 case 'E': /* "-E" Improved Ex mode */
2003 exmode_active = EXMODE_VIM;
2004 break;
2005
2006 case 'f': /* "-f" GUI: run in foreground. Amiga: open
2007 window directly, not with newcli */
2008#ifdef FEAT_GUI
2009 gui.dofork = FALSE; /* don't fork() when starting GUI */
2010#endif
2011 break;
2012
2013 case 'g': /* "-g" start GUI */
2014 main_start_gui();
2015 break;
2016
Bram Moolenaar14184a32019-02-16 15:10:30 +01002017 case 'F': /* "-F" was for Farsi mode */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002018 mch_errmsg(_(e_nofarsi));
2019 mch_exit(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002020 break;
2021
Bram Moolenaarc3e81692018-05-05 15:09:51 +02002022 case '?': /* "-?" give help message (for MS-Windows) */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002023 case 'h': /* "-h" give help message */
2024#ifdef FEAT_GUI_GNOME
2025 /* Tell usage() to exit for "gvim". */
2026 gui.starting = FALSE;
2027#endif
2028 usage();
2029 break;
2030
2031 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
2032#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002033 p_hkmap = TRUE;
2034 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002035#else
2036 mch_errmsg(_(e_nohebrew));
2037 mch_exit(2);
2038#endif
2039 break;
2040
2041 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
2042#ifdef FEAT_LISP
2043 set_option_value((char_u *)"lisp", 1L, NULL, 0);
2044 p_sm = TRUE;
2045#endif
2046 break;
2047
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002048 case 'M': /* "-M" no changes or writing of files */
2049 reset_modifiable();
2050 /* FALLTHROUGH */
2051
2052 case 'm': /* "-m" no writing of files */
2053 p_write = FALSE;
2054 break;
2055
2056 case 'y': /* "-y" easy mode */
2057#ifdef FEAT_GUI
2058 gui.starting = TRUE; /* start GUI a bit later */
2059#endif
2060 parmp->evim_mode = TRUE;
2061 break;
2062
2063 case 'N': /* "-N" Nocompatible */
2064 change_compatible(FALSE);
2065 break;
2066
2067 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002068#ifdef FEAT_NETBEANS_INTG
2069 /* checking for "-nb", netbeans parameters */
2070 if (argv[0][argv_idx] == 'b')
2071 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002072 netbeansArg = argv[0];
2073 argv_idx = -1; /* skip to next argument */
2074 }
2075 else
2076#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002077 parmp->no_swap_file = TRUE;
2078 break;
2079
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002080 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002081#ifdef TARGET_API_MAC_OSX
2082 /* For some reason on MacOS X, an argument like:
2083 -psn_0_10223617 is passed in when invoke from Finder
2084 or with the 'open' command */
2085 if (argv[0][argv_idx] == 's')
2086 {
2087 argv_idx = -1; /* bypass full -psn */
2088 main_start_gui();
2089 break;
2090 }
2091#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002092 /* default is 0: open window for each file */
2093 parmp->window_count = get_number_arg((char_u *)argv[0],
2094 &argv_idx, 0);
2095 parmp->window_layout = WIN_TABS;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002096 break;
2097
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002098 case 'o': /* "-o[N]" open N horizontal split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002099 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002100 parmp->window_count = get_number_arg((char_u *)argv[0],
2101 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002102 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002103 break;
2104
2105 case 'O': /* "-O[N]" open N vertical split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002106 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002107 parmp->window_count = get_number_arg((char_u *)argv[0],
2108 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002109 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002110 break;
2111
2112#ifdef FEAT_QUICKFIX
2113 case 'q': /* "-q" QuickFix mode */
2114 if (parmp->edit_type != EDIT_NONE)
2115 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2116 parmp->edit_type = EDIT_QF;
2117 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2118 {
2119 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2120 argv_idx = -1;
2121 }
2122 else if (argc > 1) /* "-q {errorfile}" */
2123 want_argument = TRUE;
2124 break;
2125#endif
2126
2127 case 'R': /* "-R" readonly mode */
2128 readonlymode = TRUE;
2129 curbuf->b_p_ro = TRUE;
2130 p_uc = 10000; /* don't update very often */
2131 break;
2132
2133 case 'r': /* "-r" recovery mode */
2134 case 'L': /* "-L" recovery mode */
2135 recoverymode = 1;
2136 break;
2137
2138 case 's':
2139 if (exmode_active) /* "-s" silent (batch) mode */
2140 silent_mode = TRUE;
2141 else /* "-s {scriptin}" read from script file */
2142 want_argument = TRUE;
2143 break;
2144
2145 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2146 if (parmp->edit_type != EDIT_NONE)
2147 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2148 parmp->edit_type = EDIT_TAG;
2149 if (argv[0][argv_idx]) /* "-t{tag}" */
2150 {
2151 parmp->tagname = (char_u *)argv[0] + argv_idx;
2152 argv_idx = -1;
2153 }
2154 else /* "-t {tag}" */
2155 want_argument = TRUE;
2156 break;
2157
2158#ifdef FEAT_EVAL
2159 case 'D': /* "-D" Debugging */
2160 parmp->use_debug_break_level = 9999;
2161 break;
2162#endif
2163#ifdef FEAT_DIFF
2164 case 'd': /* "-d" 'diff' */
2165# ifdef AMIGA
2166 /* check for "-dev {device}" */
2167 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2168 want_argument = TRUE;
2169 else
2170# endif
2171 parmp->diff_mode = TRUE;
2172 break;
2173#endif
2174 case 'V': /* "-V{N}" Verbose level */
2175 /* default is 10: a little bit verbose */
2176 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2177 if (argv[0][argv_idx] != NUL)
2178 {
2179 set_option_value((char_u *)"verbosefile", 0L,
2180 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002181 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002182 }
2183 break;
2184
2185 case 'v': /* "-v" Vi-mode (as if called "vi") */
2186 exmode_active = 0;
2187#ifdef FEAT_GUI
2188 gui.starting = FALSE; /* don't start GUI */
2189#endif
2190 break;
2191
2192 case 'w': /* "-w{number}" set window height */
2193 /* "-w {scriptout}" write to script */
2194 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2195 {
2196 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2197 set_option_value((char_u *)"window", n, NULL, 0);
2198 break;
2199 }
2200 want_argument = TRUE;
2201 break;
2202
2203#ifdef FEAT_CRYPT
2204 case 'x': /* "-x" encrypted reading/writing of files */
2205 parmp->ask_for_key = TRUE;
2206 break;
2207#endif
2208
2209 case 'X': /* "-X" don't connect to X server */
2210#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2211 x_no_connect = TRUE;
2212#endif
2213 break;
2214
2215 case 'Z': /* "-Z" restricted mode */
2216 restricted = TRUE;
2217 break;
2218
2219 case 'c': /* "-c{command}" or "-c {command}" execute
2220 command */
2221 if (argv[0][argv_idx] != NUL)
2222 {
2223 if (parmp->n_commands >= MAX_ARG_CMDS)
2224 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002225 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2226 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002227 argv_idx = -1;
2228 break;
2229 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002230 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002231 case 'S': /* "-S {file}" execute Vim script */
2232 case 'i': /* "-i {viminfo}" use for viminfo */
2233#ifndef FEAT_DIFF
2234 case 'd': /* "-d {device}" device (for Amiga) */
2235#endif
2236 case 'T': /* "-T {terminal}" terminal name */
2237 case 'u': /* "-u {vimrc}" vim inits file */
2238 case 'U': /* "-U {gvimrc}" gvim inits file */
2239 case 'W': /* "-W {scriptout}" overwrite */
2240#ifdef FEAT_GUI_W32
2241 case 'P': /* "-P {parent title}" MDI parent */
2242#endif
2243 want_argument = TRUE;
2244 break;
2245
2246 default:
2247 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2248 }
2249
2250 /*
2251 * Handle option arguments with argument.
2252 */
2253 if (want_argument)
2254 {
2255 /*
2256 * Check for garbage immediately after the option letter.
2257 */
2258 if (argv[0][argv_idx] != NUL)
2259 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2260
2261 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002262 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002263 mainerr_arg_missing((char_u *)argv[0]);
2264 ++argv;
2265 argv_idx = -1;
2266
2267 switch (c)
2268 {
2269 case 'c': /* "-c {command}" execute command */
2270 case 'S': /* "-S {file}" execute Vim script */
2271 if (parmp->n_commands >= MAX_ARG_CMDS)
2272 mainerr(ME_EXTRA_CMD, NULL);
2273 if (c == 'S')
2274 {
2275 char *a;
2276
2277 if (argc < 1)
2278 /* "-S" without argument: use default session file
2279 * name. */
2280 a = SESSION_FILE;
2281 else if (argv[0][0] == '-')
2282 {
2283 /* "-S" followed by another option: use default
2284 * session file name. */
2285 a = SESSION_FILE;
2286 ++argc;
2287 --argv;
2288 }
2289 else
2290 a = argv[0];
2291 p = alloc((unsigned)(STRLEN(a) + 4));
2292 if (p == NULL)
2293 mch_exit(2);
2294 sprintf((char *)p, "so %s", a);
2295 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2296 parmp->commands[parmp->n_commands++] = p;
2297 }
2298 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002299 parmp->commands[parmp->n_commands++] =
2300 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002301 break;
2302
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002303 case '-':
2304 if (argv[-1][2] == 'c')
2305 {
2306 /* "--cmd {command}" execute command */
2307 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2308 mainerr(ME_EXTRA_CMD, NULL);
2309 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002310 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002311 }
2312 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002313 break;
2314
2315 /* case 'd': -d {device} is handled in mch_check_win() for the
2316 * Amiga */
2317
2318#ifdef FEAT_QUICKFIX
2319 case 'q': /* "-q {errorfile}" QuickFix mode */
2320 parmp->use_ef = (char_u *)argv[0];
2321 break;
2322#endif
2323
2324 case 'i': /* "-i {viminfo}" use for viminfo */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002325 set_option_value((char_u *)"vif", 0L, (char_u *)argv[0], 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002326 break;
2327
2328 case 's': /* "-s {scriptin}" read from script file */
2329 if (scriptin[0] != NULL)
2330 {
2331scripterror:
2332 mch_errmsg(_("Attempt to open script file again: \""));
2333 mch_errmsg(argv[-1]);
2334 mch_errmsg(" ");
2335 mch_errmsg(argv[0]);
2336 mch_errmsg("\"\n");
2337 mch_exit(2);
2338 }
2339 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2340 {
2341 mch_errmsg(_("Cannot open for reading: \""));
2342 mch_errmsg(argv[0]);
2343 mch_errmsg("\"\n");
2344 mch_exit(2);
2345 }
2346 if (save_typebuf() == FAIL)
2347 mch_exit(2); /* out of memory */
2348 break;
2349
2350 case 't': /* "-t {tag}" */
2351 parmp->tagname = (char_u *)argv[0];
2352 break;
2353
2354 case 'T': /* "-T {terminal}" terminal name */
2355 /*
2356 * The -T term argument is always available and when
2357 * HAVE_TERMLIB is supported it overrides the environment
2358 * variable TERM.
2359 */
2360#ifdef FEAT_GUI
2361 if (term_is_gui((char_u *)argv[0]))
2362 gui.starting = TRUE; /* start GUI a bit later */
2363 else
2364#endif
2365 parmp->term = (char_u *)argv[0];
2366 break;
2367
2368 case 'u': /* "-u {vimrc}" vim inits file */
2369 parmp->use_vimrc = (char_u *)argv[0];
2370 break;
2371
2372 case 'U': /* "-U {gvimrc}" gvim inits file */
2373#ifdef FEAT_GUI
2374 use_gvimrc = (char_u *)argv[0];
2375#endif
2376 break;
2377
2378 case 'w': /* "-w {nr}" 'window' value */
2379 /* "-w {scriptout}" append to script file */
2380 if (vim_isdigit(*((char_u *)argv[0])))
2381 {
2382 argv_idx = 0;
2383 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2384 set_option_value((char_u *)"window", n, NULL, 0);
2385 argv_idx = -1;
2386 break;
2387 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002388 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002389 case 'W': /* "-W {scriptout}" overwrite script file */
2390 if (scriptout != NULL)
2391 goto scripterror;
2392 if ((scriptout = mch_fopen(argv[0],
2393 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2394 {
2395 mch_errmsg(_("Cannot open for script output: \""));
2396 mch_errmsg(argv[0]);
2397 mch_errmsg("\"\n");
2398 mch_exit(2);
2399 }
2400 break;
2401
2402#ifdef FEAT_GUI_W32
2403 case 'P': /* "-P {parent title}" MDI parent */
2404 gui_mch_set_parent(argv[0]);
2405 break;
2406#endif
2407 }
2408 }
2409 }
2410
2411 /*
2412 * File name argument.
2413 */
2414 else
2415 {
2416 argv_idx = -1; /* skip to next argument */
2417
2418 /* Check for only one type of editing. */
2419 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2420 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2421 parmp->edit_type = EDIT_FILE;
2422
2423#ifdef MSWIN
2424 /* Remember if the argument was a full path before changing
2425 * slashes to backslashes. */
2426 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2427 parmp->full_path = TRUE;
2428#endif
2429
2430 /* Add the file to the global argument list. */
2431 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2432 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2433 mch_exit(2);
2434#ifdef FEAT_DIFF
2435 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2436 && !mch_isdir(alist_name(&GARGLIST[0])))
2437 {
2438 char_u *r;
2439
2440 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2441 if (r != NULL)
2442 {
2443 vim_free(p);
2444 p = r;
2445 }
2446 }
2447#endif
2448#if defined(__CYGWIN32__) && !defined(WIN32)
2449 /*
2450 * If vim is invoked by non-Cygwin tools, convert away any
2451 * DOS paths, so things like .swp files are created correctly.
2452 * Look for evidence of non-Cygwin paths before we bother.
2453 * This is only for when using the Unix files.
2454 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002455 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002456 {
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002457 char posix_path[MAXPATHL];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002458
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002459# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002460 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002461# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002462 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002463# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002464 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002465 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002466 if (p == NULL)
2467 mch_exit(2);
2468 }
2469#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002470
2471#ifdef USE_FNAME_CASE
2472 /* Make the case of the file name match the actual file. */
2473 fname_case(p, 0);
2474#endif
2475
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002476 alist_add(&global_alist, p,
Bram Moolenaar53076832015-12-31 19:53:21 +01002477#ifdef EXPAND_FILENAMES
Bram Moolenaar231334e2005-07-25 20:46:57 +00002478 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002479#else
2480 2 /* add buffer number now and use curbuf */
2481#endif
2482 );
2483
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002484#if defined(WIN32)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002485 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002486 /* Remember this argument has been added to the argument list.
2487 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002488 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002489# ifdef FEAT_DIFF
2490 parmp->diff_mode
2491# else
2492 FALSE
2493# endif
2494 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002495 }
2496#endif
2497 }
2498
2499 /*
2500 * If there are no more letters after the current "-", go to next
2501 * argument. argv_idx is set to -1 when the current argument is to be
2502 * skipped.
2503 */
2504 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2505 {
2506 --argc;
2507 ++argv;
2508 argv_idx = 1;
2509 }
2510 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002511
2512#ifdef FEAT_EVAL
2513 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2514 * one. */
2515 if (parmp->n_commands > 0)
2516 {
2517 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2518 if (p != NULL)
2519 {
2520 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2521 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2522 vim_free(p);
2523 }
2524 }
2525#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002526}
2527
2528/*
2529 * Print a warning if stdout is not a terminal.
Bram Moolenaar42b23fa2018-02-03 14:46:45 +01002530 * When starting in Ex mode and commands come from a file, set silent_mode.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002531 */
2532 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002533check_tty(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002534{
2535 int input_isatty; /* is active input a terminal? */
2536
2537 input_isatty = mch_input_isatty();
2538 if (exmode_active)
2539 {
2540 if (!input_isatty)
2541 silent_mode = TRUE;
2542 }
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002543 else if (parmp->want_full_screen && (!stdout_isatty || !input_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002544#ifdef FEAT_GUI
2545 /* don't want the delay when started from the desktop */
2546 && !gui.starting
2547#endif
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01002548 && !parmp->not_a_term)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002549 {
2550#ifdef NBDEBUG
2551 /*
2552 * This shouldn't be necessary. But if I run netbeans with the log
2553 * output coming to the console and XOpenDisplay fails, I get vim
2554 * trying to start with input/output to my console tty. This fills my
2555 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002556 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002557 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002558 if (netbeans_active() && (!stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002559 {
2560 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2561 exit(1);
2562 }
2563#endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002564#if defined(WIN3264) && !defined(FEAT_GUI_W32)
2565 if (is_cygpty_used())
2566 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002567# if defined(HAVE_BIND_TEXTDOMAIN_CODESET) \
Bram Moolenaar2a027452017-09-26 19:10:37 +02002568 && defined(FEAT_GETTEXT)
2569 char *s, *tofree = NULL;
2570
2571 /* Set the encoding of the error message based on $LC_ALL or
2572 * other environment variables instead of 'encoding'.
2573 * Note that the message is shown on a Cygwin terminal (e.g.
2574 * mintty) which encoding is based on $LC_ALL or etc., not the
2575 * current codepage used by normal Win32 console programs. */
Bram Moolenaar9cf39cc2017-09-27 21:46:19 +02002576 tofree = s = (char *)enc_locale_env(NULL);
Bram Moolenaar2a027452017-09-26 19:10:37 +02002577 if (s == NULL)
2578 s = "utf-8"; /* Use "utf-8" by default. */
2579 (void)bind_textdomain_codeset(VIMPACKAGE, s);
2580 vim_free(tofree);
2581# endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002582 mch_errmsg(_("Vim: Error: This version of Vim does not run in a Cygwin terminal\n"));
2583 exit(1);
2584 }
2585#endif
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002586 if (!stdout_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002587 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2588 if (!input_isatty)
2589 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2590 out_flush();
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002591 if (parmp->tty_fail && (!stdout_isatty || !input_isatty))
2592 exit(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002593 if (scriptin[0] == NULL)
2594 ui_delay(2000L, TRUE);
2595 TIME_MSG("Warning delay");
2596 }
2597}
2598
2599/*
2600 * Read text from stdin.
2601 */
2602 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002603read_stdin(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002604{
2605 int i;
2606
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002607#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002608 /* When getting the ATTENTION prompt here, use a dialog */
2609 swap_exists_action = SEA_DIALOG;
2610#endif
2611 no_wait_return = TRUE;
2612 i = msg_didany;
2613 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002614 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002615 no_wait_return = FALSE;
2616 msg_didany = i;
2617 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002618#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002619 check_swap_exists_action();
2620#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002621#if !(defined(AMIGA) || defined(MACOS_X))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002622 /*
2623 * Close stdin and dup it from stderr. Required for GPM to work
2624 * properly, and for running external commands.
2625 * Is there any other system that cannot do this?
2626 */
2627 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02002628 vim_ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002629#endif
2630}
2631
2632/*
2633 * Create the requested number of windows and edit buffers in them.
2634 * Also does recovery if "recoverymode" set.
2635 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002636 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002637create_windows(mparm_T *parmp UNUSED)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002638{
Bram Moolenaar89d40322006-08-29 15:30:07 +00002639 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002640 int done = 0;
2641
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002642 /*
2643 * Create the number of windows that was requested.
2644 */
2645 if (parmp->window_count == -1) /* was not set */
2646 parmp->window_count = 1;
2647 if (parmp->window_count == 0)
2648 parmp->window_count = GARGCOUNT;
2649 if (parmp->window_count > 1)
2650 {
2651 /* Don't change the windows if there was a command in .vimrc that
2652 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002653 if (parmp->window_layout == 0)
2654 parmp->window_layout = WIN_HOR;
2655 if (parmp->window_layout == WIN_TABS)
2656 {
2657 parmp->window_count = make_tabpages(parmp->window_count);
2658 TIME_MSG("making tab pages");
2659 }
2660 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002661 {
2662 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002663 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002664 TIME_MSG("making windows");
2665 }
2666 else
2667 parmp->window_count = win_count();
2668 }
2669 else
2670 parmp->window_count = 1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002671
2672 if (recoverymode) /* do recover */
2673 {
2674 msg_scroll = TRUE; /* scroll message up */
2675 ml_recover();
2676 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2677 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002678 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002679 }
2680 else
2681 {
2682 /*
2683 * Open a buffer for windows that don't have one yet.
2684 * Commands in the .vimrc might have loaded a file or split the window.
2685 * Watch out for autocommands that delete a window.
2686 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002687 /*
2688 * Don't execute Win/Buf Enter/Leave autocommands here
2689 */
2690 ++autocmd_no_enter;
2691 ++autocmd_no_leave;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002692 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002693 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002694 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002695 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002696 {
2697 if (parmp->window_layout == WIN_TABS)
2698 goto_tabpage(1);
2699 else
2700 curwin = firstwin;
2701 }
2702 else if (parmp->window_layout == WIN_TABS)
2703 {
2704 if (curtab->tp_next == NULL)
2705 break;
2706 goto_tabpage(0);
2707 }
2708 else
2709 {
2710 if (curwin->w_next == NULL)
2711 break;
2712 curwin = curwin->w_next;
2713 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002714 dorewind = FALSE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002715 curbuf = curwin->w_buffer;
2716 if (curbuf->b_ml.ml_mfp == NULL)
2717 {
2718#ifdef FEAT_FOLDING
2719 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2720 if (p_fdls >= 0)
2721 curwin->w_p_fdl = p_fdls;
2722#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002723#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002724 /* When getting the ATTENTION prompt here, use a dialog */
2725 swap_exists_action = SEA_DIALOG;
2726#endif
2727 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002728
2729 /* create memfile, read file */
2730 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002731
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002732#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002733 if (swap_exists_action == SEA_QUIT)
2734 {
2735 if (got_int || only_one_window())
2736 {
2737 /* abort selected or quit and only one window */
2738 did_emsg = FALSE; /* avoid hit-enter prompt */
2739 getout(1);
2740 }
2741 /* We can't close the window, it would disturb what
2742 * happens next. Clear the file name and set the arg
2743 * index to -1 to delete it later. */
2744 setfname(curbuf, NULL, NULL, FALSE);
2745 curwin->w_arg_idx = -1;
2746 swap_exists_action = SEA_NONE;
2747 }
2748 else
2749 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002750#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00002751 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002752 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002753 ui_breakcheck();
2754 if (got_int)
2755 {
2756 (void)vgetc(); /* only break the file loading, not the rest */
2757 break;
2758 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002759 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002760 if (parmp->window_layout == WIN_TABS)
2761 goto_tabpage(1);
2762 else
2763 curwin = firstwin;
2764 curbuf = curwin->w_buffer;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002765 --autocmd_no_enter;
2766 --autocmd_no_leave;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002767 }
2768}
2769
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002770 /*
2771 * If opened more than one window, start editing files in the other
2772 * windows. make_windows() has already opened the windows.
2773 */
2774 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002775edit_buffers(
2776 mparm_T *parmp,
2777 char_u *cwd) /* current working dir */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002778{
2779 int arg_idx; /* index in argument list */
2780 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002781 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002782 win_T *win;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002783
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002784 /*
2785 * Don't execute Win/Buf Enter/Leave autocommands here
2786 */
2787 ++autocmd_no_enter;
2788 ++autocmd_no_leave;
Bram Moolenaar84212822006-11-07 21:59:47 +00002789
2790 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2791 if (curwin->w_arg_idx == -1)
2792 {
2793 win_close(curwin, TRUE);
2794 advance = FALSE;
2795 }
2796
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002797 arg_idx = 1;
2798 for (i = 1; i < parmp->window_count; ++i)
2799 {
Bram Moolenaard87c36e2015-04-03 14:56:49 +02002800 if (cwd != NULL)
2801 mch_chdir((char *)cwd);
Bram Moolenaar84212822006-11-07 21:59:47 +00002802 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2803 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002804 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002805 ++arg_idx;
2806 win_close(curwin, TRUE);
2807 advance = FALSE;
2808 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002809 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002810
Bram Moolenaar84212822006-11-07 21:59:47 +00002811 if (advance)
2812 {
2813 if (parmp->window_layout == WIN_TABS)
2814 {
2815 if (curtab->tp_next == NULL) /* just checking */
2816 break;
2817 goto_tabpage(0);
2818 }
2819 else
2820 {
2821 if (curwin->w_next == NULL) /* just checking */
2822 break;
2823 win_enter(curwin->w_next, FALSE);
2824 }
2825 }
2826 advance = TRUE;
2827
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002828 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002829 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002830 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2831 {
2832 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002833 /* Edit file from arg list, if there is one. When "Quit" selected
2834 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002835# ifdef HAS_SWAP_EXISTS_ACTION
2836 swap_exists_did_quit = FALSE;
2837# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002838 (void)do_ecmd(0, arg_idx < GARGCOUNT
2839 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002840 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002841# ifdef HAS_SWAP_EXISTS_ACTION
2842 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002843 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002844 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002845 if (got_int || only_one_window())
2846 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002847 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002848 did_emsg = FALSE; /* avoid hit-enter prompt */
2849 getout(1);
2850 }
2851 win_close(curwin, TRUE);
2852 advance = FALSE;
2853 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002854# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002855 if (arg_idx == GARGCOUNT - 1)
2856 arg_had_last = TRUE;
2857 ++arg_idx;
2858 }
2859 ui_breakcheck();
2860 if (got_int)
2861 {
2862 (void)vgetc(); /* only break the file loading, not the rest */
2863 break;
2864 }
2865 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002866
2867 if (parmp->window_layout == WIN_TABS)
2868 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002869 --autocmd_no_enter;
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002870
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002871 /* make the first window the current window */
2872 win = firstwin;
Bram Moolenaar4033c552017-09-16 20:54:51 +02002873#if defined(FEAT_QUICKFIX)
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002874 /* Avoid making a preview window the current window. */
2875 while (win->w_p_pvw)
2876 {
2877 win = win->w_next;
2878 if (win == NULL)
2879 {
2880 win = firstwin;
2881 break;
2882 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002883 }
2884#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002885 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002886
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002887 --autocmd_no_leave;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002888 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002889 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002890 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2891}
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002892
2893/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002894 * Execute the commands from --cmd arguments "cmds[cnt]".
2895 */
2896 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002897exe_pre_commands(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002898{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002899 char_u **cmds = parmp->pre_commands;
2900 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002901 int i;
2902
2903 if (cnt > 0)
2904 {
2905 curwin->w_cursor.lnum = 0; /* just in case.. */
2906 sourcing_name = (char_u *)_("pre-vimrc command line");
2907# ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002908 current_sctx.sc_sid = SID_CMDARG;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002909# endif
2910 for (i = 0; i < cnt; ++i)
2911 do_cmdline_cmd(cmds[i]);
2912 sourcing_name = NULL;
2913# ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002914 current_sctx.sc_sid = 0;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002915# endif
2916 TIME_MSG("--cmd commands");
2917 }
2918}
2919
2920/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002921 * Execute "+", "-c" and "-S" arguments.
2922 */
2923 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002924exe_commands(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002925{
2926 int i;
2927
2928 /*
2929 * We start commands on line 0, make "vim +/pat file" match a
2930 * pattern on line 1. But don't move the cursor when an autocommand
2931 * with g`" was used.
2932 */
2933 msg_scroll = TRUE;
2934 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2935 curwin->w_cursor.lnum = 0;
2936 sourcing_name = (char_u *)"command line";
2937#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002938 current_sctx.sc_sid = SID_CARG;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01002939 current_sctx.sc_seq = 0;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002940#endif
2941 for (i = 0; i < parmp->n_commands; ++i)
2942 {
2943 do_cmdline_cmd(parmp->commands[i]);
2944 if (parmp->cmds_tofree[i])
2945 vim_free(parmp->commands[i]);
2946 }
2947 sourcing_name = NULL;
2948#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002949 current_sctx.sc_sid = 0;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002950#endif
2951 if (curwin->w_cursor.lnum == 0)
2952 curwin->w_cursor.lnum = 1;
2953
2954 if (!exmode_active)
2955 msg_scroll = FALSE;
2956
2957#ifdef FEAT_QUICKFIX
2958 /* When started with "-q errorfile" jump to first error again. */
2959 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002960 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002961#endif
2962 TIME_MSG("executing command arguments");
2963}
2964
2965/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002966 * Source startup scripts.
2967 */
2968 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002969source_startup_scripts(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002970{
2971 int i;
2972
2973 /*
2974 * For "evim" source evim.vim first of all, so that the user can overrule
2975 * any things he doesn't like.
2976 */
2977 if (parmp->evim_mode)
2978 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002979 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002980 TIME_MSG("source evim file");
2981 }
2982
2983 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002984 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002985 * nothing else.
2986 */
2987 if (parmp->use_vimrc != NULL)
2988 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002989 if (STRCMP(parmp->use_vimrc, "DEFAULTS") == 0)
2990 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
2991 else if (STRCMP(parmp->use_vimrc, "NONE") == 0
Bram Moolenaar231334e2005-07-25 20:46:57 +00002992 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002993 {
2994#ifdef FEAT_GUI
2995 if (use_gvimrc == NULL) /* don't load gvimrc either */
2996 use_gvimrc = parmp->use_vimrc;
2997#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002998 }
2999 else
3000 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003001 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003002 semsg(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003003 }
3004 }
3005 else if (!silent_mode)
3006 {
3007#ifdef AMIGA
3008 struct Process *proc = (struct Process *)FindTask(0L);
3009 APTR save_winptr = proc->pr_WindowPtr;
3010
3011 /* Avoid a requester here for a volume that doesn't exist. */
3012 proc->pr_WindowPtr = (APTR)-1L;
3013#endif
3014
3015 /*
3016 * Get system wide defaults, if the file name is defined.
3017 */
3018#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003019 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003020#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00003021#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003022 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00003023#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003024
3025 /*
3026 * Try to read initialization commands from the following places:
3027 * - environment variable VIMINIT
3028 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
3029 * - second user vimrc file ($VIM/.vimrc for Dos)
3030 * - environment variable EXINIT
3031 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
3032 * - second user exrc file ($VIM/.exrc for Dos)
3033 * The first that exists is used, the rest is ignored.
3034 */
3035 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
3036 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003037 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003038#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003039 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
3040 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003041#endif
3042#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003043 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
3044 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003045#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02003046#ifdef USR_VIMRC_FILE4
3047 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
3048 DOSO_VIMRC) == FAIL
3049#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003050 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003051 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003052#ifdef USR_EXRC_FILE2
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003053 && do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003054#endif
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02003055 && !has_dash_c_arg)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003056 {
3057 /* When no .vimrc file was found: source defaults.vim. */
3058 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003059 }
3060 }
3061
3062 /*
3063 * Read initialization commands from ".vimrc" or ".exrc" in current
3064 * directory. This is only done if the 'exrc' option is set.
3065 * Because of security reasons we disallow shell and write commands
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003066 * now, except for Unix if the file is owned by the user or 'secure'
Bram Moolenaar58d98232005-07-23 22:25:46 +00003067 * option has been reset in environment of global ".exrc" or ".vimrc".
3068 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3069 * SYS_VIMRC_FILE.
3070 */
3071 if (p_exrc)
3072 {
3073#if defined(UNIX) || defined(VMS)
3074 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3075 if (!file_owned(VIMRC_FILE))
3076#endif
3077 secure = p_secure;
3078
3079 i = FAIL;
3080 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3081 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3082#ifdef USR_VIMRC_FILE2
3083 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3084 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3085#endif
3086#ifdef USR_VIMRC_FILE3
3087 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3088 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3089#endif
3090#ifdef SYS_VIMRC_FILE
3091 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3092 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3093#endif
3094 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003095 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003096
3097 if (i == FAIL)
3098 {
3099#if defined(UNIX) || defined(VMS)
3100 /* if ".exrc" is not owned by user set 'secure' mode */
3101 if (!file_owned(EXRC_FILE))
3102 secure = p_secure;
3103 else
3104 secure = 0;
3105#endif
3106 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3107 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3108#ifdef USR_EXRC_FILE2
3109 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3110 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3111#endif
3112 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003113 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003114 }
3115 }
3116 if (secure == 2)
3117 need_wait_return = TRUE;
3118 secure = 0;
3119#ifdef AMIGA
3120 proc->pr_WindowPtr = save_winptr;
3121#endif
3122 }
3123 TIME_MSG("sourcing vimrc file(s)");
3124}
3125
3126/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003127 * Setup to start using the GUI. Exit with an error when not available.
3128 */
3129 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003130main_start_gui(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003131{
3132#ifdef FEAT_GUI
3133 gui.starting = TRUE; /* start GUI a bit later */
3134#else
3135 mch_errmsg(_(e_nogvim));
3136 mch_errmsg("\n");
3137 mch_exit(2);
3138#endif
3139}
3140
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003141#endif /* NO_VIM_MAIN */
3142
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003143/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003144 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003145 * Returns FAIL if the environment variable was not executed, OK otherwise.
3146 */
3147 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003148process_env(
3149 char_u *env,
3150 int is_viminit) /* when TRUE, called for VIMINIT */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003151{
3152 char_u *initstr;
3153 char_u *save_sourcing_name;
3154 linenr_T save_sourcing_lnum;
3155#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003156 sctx_T save_current_sctx;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003157#endif
3158
3159 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3160 {
3161 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003162 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003163 save_sourcing_name = sourcing_name;
3164 save_sourcing_lnum = sourcing_lnum;
3165 sourcing_name = env;
3166 sourcing_lnum = 0;
3167#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003168 save_current_sctx = current_sctx;
3169 current_sctx.sc_sid = SID_ENV;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01003170 current_sctx.sc_seq = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003171 current_sctx.sc_lnum = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003172#endif
3173 do_cmdline_cmd(initstr);
3174 sourcing_name = save_sourcing_name;
3175 sourcing_lnum = save_sourcing_lnum;
3176#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003177 current_sctx = save_current_sctx;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003178#endif
3179 return OK;
3180 }
3181 return FAIL;
3182}
3183
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003184#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003185/*
3186 * Return TRUE if we are certain the user owns the file "fname".
3187 * Used for ".vimrc" and ".exrc".
3188 * Use both stat() and lstat() for extra security.
3189 */
3190 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003191file_owned(char *fname)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003192{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003193 stat_T s;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003194# ifdef UNIX
3195 uid_t uid = getuid();
3196# else /* VMS */
3197 uid_t uid = ((getgid() << 16) | getuid());
3198# endif
3199
3200 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3201# ifdef HAVE_LSTAT
3202 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3203# endif
3204 );
3205}
3206#endif
3207
3208/*
3209 * Give an error message main_errors["n"] and exit.
3210 */
3211 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003212mainerr(
3213 int n, /* one of the ME_ defines */
3214 char_u *str) /* extra argument or NULL */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003215{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003216#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003217 reset_signals(); /* kill us with CTRL-C here, if you like */
3218#endif
3219
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +02003220 init_longVersion();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003221 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003222 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003223 mch_errmsg(_(main_errors[n]));
3224 if (str != NULL)
3225 {
3226 mch_errmsg(": \"");
3227 mch_errmsg((char *)str);
3228 mch_errmsg("\"");
3229 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003230 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003231
3232 mch_exit(1);
3233}
3234
3235 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003236mainerr_arg_missing(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003237{
3238 mainerr(ME_ARG_MISSING, str);
3239}
3240
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003241#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003242/*
3243 * print a message with three spaces prepended and '\n' appended.
3244 */
3245 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003246main_msg(char *s)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003247{
3248 mch_msg(" ");
3249 mch_msg(s);
3250 mch_msg("\n");
3251}
3252
3253/*
3254 * Print messages for "vim -h" or "vim --help" and exit.
3255 */
3256 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003257usage(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003258{
3259 int i;
3260 static char *(use[]) =
3261 {
3262 N_("[file ..] edit specified file(s)"),
3263 N_("- read text from stdin"),
3264 N_("-t tag edit file where tag is defined"),
3265#ifdef FEAT_QUICKFIX
3266 N_("-q [errorfile] edit file with first error")
3267#endif
3268 };
3269
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003270#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003271 reset_signals(); /* kill us with CTRL-C here, if you like */
3272#endif
3273
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +02003274 init_longVersion();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003275 mch_msg(longVersion);
Bram Moolenaar32aaf5a2018-06-21 21:38:33 +02003276 mch_msg(_("\n\nUsage:"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003277 for (i = 0; ; ++i)
3278 {
3279 mch_msg(_(" vim [arguments] "));
3280 mch_msg(_(use[i]));
3281 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3282 break;
3283 mch_msg(_("\n or:"));
3284 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003285#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003286 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003287#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003288
3289 mch_msg(_("\n\nArguments:\n"));
3290 main_msg(_("--\t\t\tOnly file names after this"));
Bram Moolenaar53076832015-12-31 19:53:21 +01003291#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003292 main_msg(_("--literal\t\tDon't expand wildcards"));
3293#endif
3294#ifdef FEAT_OLE
3295 main_msg(_("-register\t\tRegister this gvim for OLE"));
3296 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3297#endif
3298#ifdef FEAT_GUI
3299 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3300 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3301#endif
3302 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3303 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003304 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003305 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3306#ifdef FEAT_DIFF
3307 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3308#endif
3309 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3310 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3311 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3312 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3313 main_msg(_("-M\t\t\tModifications in text not allowed"));
3314 main_msg(_("-b\t\t\tBinary mode"));
3315#ifdef FEAT_LISP
3316 main_msg(_("-l\t\t\tLisp mode"));
3317#endif
3318 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3319 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003320 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3321#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003322 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003323#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003324 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3325 main_msg(_("-r\t\t\tList swap files and exit"));
3326 main_msg(_("-r (with file name)\tRecover crashed session"));
3327 main_msg(_("-L\t\t\tSame as -r"));
3328#ifdef AMIGA
3329 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3330 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3331#endif
3332#ifdef FEAT_ARABIC
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02003333 main_msg(_("-A\t\t\tStart in Arabic mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003334#endif
3335#ifdef FEAT_RIGHTLEFT
3336 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3337#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003338 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01003339 main_msg(_("--not-a-term\t\tSkip warning for input/output not being a terminal"));
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01003340 main_msg(_("--ttyfail\t\tExit if input or output is not a terminal"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003341 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3342#ifdef FEAT_GUI
3343 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3344#endif
3345 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003346 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003347 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3348 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3349 main_msg(_("+\t\t\tStart at end of file"));
3350 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003351 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003352 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3353 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3354 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3355 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3356 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3357#ifdef FEAT_CRYPT
3358 main_msg(_("-x\t\t\tEdit encrypted files"));
3359#endif
3360#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3361# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3362 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3363# endif
3364 main_msg(_("-X\t\t\tDo not connect to X server"));
3365#endif
3366#ifdef FEAT_CLIENTSERVER
3367 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3368 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3369 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3370 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003371 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003372 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3373 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3374 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3375 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3376#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003377#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003378 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003379#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003380#ifdef FEAT_VIMINFO
3381 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3382#endif
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003383 main_msg(_("--clean\t\t'nocompatible', Vim defaults, no plugins, no viminfo"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003384 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3385 main_msg(_("--version\t\tPrint version information and exit"));
3386
3387#ifdef FEAT_GUI_X11
3388# ifdef FEAT_GUI_MOTIF
3389 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3390# else
3391# ifdef FEAT_GUI_ATHENA
3392# ifdef FEAT_GUI_NEXTAW
3393 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3394# else
3395 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3396# endif
3397# endif
3398# endif
3399 main_msg(_("-display <display>\tRun vim on <display>"));
3400 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003401 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3402 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3403 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3404 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3405 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3406 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3407 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3408 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3409# ifdef FEAT_GUI_ATHENA
3410 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3411# endif
3412 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3413 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3414 main_msg(_("-xrm <resource>\tSet the specified resource"));
3415#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003416#ifdef FEAT_GUI_GTK
3417 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3418 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3419 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3420 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3421 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003422 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003423 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003424 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003425#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003426#ifdef FEAT_GUI_W32
3427 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003428 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003429#endif
3430
3431#ifdef FEAT_GUI_GNOME
3432 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3433 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003434 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003435 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003436 gui.dofork = FALSE;
3437 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003438 else
3439#endif
3440 mch_exit(0);
3441}
3442
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003443#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003444/*
3445 * Check the result of the ATTENTION dialog:
3446 * When "Quit" selected, exit Vim.
3447 * When "Recover" selected, recover the file.
3448 */
3449 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003450check_swap_exists_action(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003451{
3452 if (swap_exists_action == SEA_QUIT)
3453 getout(1);
3454 handle_swap_exists(NULL);
3455}
3456#endif
3457
Bram Moolenaar08cab962017-03-04 14:37:18 +01003458#endif /* NO_VIM_MAIN */
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003459
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003460#if defined(STARTUPTIME) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003461static struct timeval prev_timeval;
3462
Bram Moolenaar3f269672009-11-03 11:11:11 +00003463# ifdef WIN3264
3464/*
3465 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3466 */
3467 static int
3468gettimeofday(struct timeval *tv, char *dummy)
3469{
3470 long t = clock();
3471 tv->tv_sec = t / CLOCKS_PER_SEC;
3472 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3473 return 0;
3474}
3475# endif
3476
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003477/*
3478 * Save the previous time before doing something that could nest.
3479 * set "*tv_rel" to the time elapsed so far.
3480 */
3481 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003482time_push(void *tv_rel, void *tv_start)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003483{
3484 *((struct timeval *)tv_rel) = prev_timeval;
3485 gettimeofday(&prev_timeval, NULL);
3486 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3487 - ((struct timeval *)tv_rel)->tv_usec;
3488 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3489 - ((struct timeval *)tv_rel)->tv_sec;
3490 if (((struct timeval *)tv_rel)->tv_usec < 0)
3491 {
3492 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3493 --((struct timeval *)tv_rel)->tv_sec;
3494 }
3495 *(struct timeval *)tv_start = prev_timeval;
3496}
3497
3498/*
3499 * Compute the previous time after doing something that could nest.
3500 * Subtract "*tp" from prev_timeval;
3501 * Note: The arguments are (void *) to avoid trouble with systems that don't
3502 * have struct timeval.
3503 */
3504 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003505time_pop(
3506 void *tp) /* actually (struct timeval *) */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003507{
3508 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3509 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3510 if (prev_timeval.tv_usec < 0)
3511 {
3512 prev_timeval.tv_usec += 1000000;
3513 --prev_timeval.tv_sec;
3514 }
3515}
3516
3517 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003518time_diff(struct timeval *then, struct timeval *now)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003519{
3520 long usec;
3521 long msec;
3522
3523 usec = now->tv_usec - then->tv_usec;
3524 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3525 usec = usec % 1000L;
3526 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3527}
3528
3529 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003530time_msg(
3531 char *mesg,
3532 void *tv_start) /* only for do_source: start time; actually
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003533 (struct timeval *) */
3534{
3535 static struct timeval start;
3536 struct timeval now;
3537
3538 if (time_fd != NULL)
3539 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003540 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003541 {
3542 gettimeofday(&start, NULL);
3543 prev_timeval = start;
3544 fprintf(time_fd, "\n\ntimes in msec\n");
3545 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3546 fprintf(time_fd, " clock elapsed: other lines\n\n");
3547 }
3548 gettimeofday(&now, NULL);
3549 time_diff(&start, &now);
3550 if (((struct timeval *)tv_start) != NULL)
3551 {
3552 fprintf(time_fd, " ");
3553 time_diff(((struct timeval *)tv_start), &now);
3554 }
3555 fprintf(time_fd, " ");
3556 time_diff(&prev_timeval, &now);
3557 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003558 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003559 }
3560}
3561
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003562#endif
3563
Bram Moolenaar595297d2017-03-04 19:11:12 +01003564#if !defined(NO_VIM_MAIN) && defined(FEAT_EVAL)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003565 static void
3566set_progpath(char_u *argv0)
3567{
3568 char_u *val = argv0;
Bram Moolenaar08cab962017-03-04 14:37:18 +01003569
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003570# if defined(WIN32)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003571 /* A relative path containing a "/" will become invalid when using ":cd",
3572 * turn it into a full path.
Bram Moolenaar066029e2017-03-05 15:19:32 +01003573 * On MS-Windows "vim" should be expanded to "vim.exe", thus always do
3574 * this. */
Bram Moolenaar066029e2017-03-05 15:19:32 +01003575 char_u *path = NULL;
3576
3577 if (mch_can_exe(argv0, &path, FALSE) && path != NULL)
3578 val = path;
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003579# else
3580 char_u buf[MAXPATHL + 1];
3581# ifdef PROC_EXE_LINK
3582 char linkbuf[MAXPATHL + 1];
3583 ssize_t len;
Bram Moolenaar066029e2017-03-05 15:19:32 +01003584
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003585 len = readlink(PROC_EXE_LINK, linkbuf, MAXPATHL);
3586 if (len > 0)
Bram Moolenaar43663192017-03-05 14:29:12 +01003587 {
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003588 linkbuf[len] = NUL;
3589 val = (char_u *)linkbuf;
Bram Moolenaar43663192017-03-05 14:29:12 +01003590 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003591# endif
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003592
3593 if (!mch_isFullName(val))
3594 {
3595 if (gettail(val) != val
3596 && vim_FullName(val, buf, MAXPATHL, TRUE) != FAIL)
3597 val = buf;
3598 }
Bram Moolenaar066029e2017-03-05 15:19:32 +01003599# endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003600
Bram Moolenaar08cab962017-03-04 14:37:18 +01003601 set_vim_var_string(VV_PROGPATH, val, -1);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003602
Bram Moolenaar066029e2017-03-05 15:19:32 +01003603# ifdef WIN32
Bram Moolenaar43663192017-03-05 14:29:12 +01003604 vim_free(path);
Bram Moolenaar066029e2017-03-05 15:19:32 +01003605# endif
Bram Moolenaar08cab962017-03-04 14:37:18 +01003606}
3607
3608#endif /* NO_VIM_MAIN */
3609
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003610#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003611
3612/*
3613 * Common code for the X command server and the Win32 command server.
3614 */
3615
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003616static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003617
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003618/*
3619 * Do the client-server stuff, unless "--servername ''" was used.
3620 */
3621 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003622exec_on_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003623{
3624 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3625 {
3626# ifdef WIN32
3627 /* Initialise the client/server messaging infrastructure. */
3628 serverInitMessaging();
3629# endif
3630
3631 /*
3632 * When a command server argument was found, execute it. This may
3633 * exit Vim when it was successful. Otherwise it's executed further
3634 * on. Remember the encoding used here in "serverStrEnc".
3635 */
3636 if (parmp->serverArg)
3637 {
3638 cmdsrv_main(&parmp->argc, parmp->argv,
3639 parmp->serverName_arg, &parmp->serverStr);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003640 parmp->serverStrEnc = vim_strsave(p_enc);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003641 }
3642
3643 /* If we're still running, get the name to register ourselves.
3644 * On Win32 can register right now, for X11 need to setup the
3645 * clipboard first, it's further down. */
3646 parmp->servername = serverMakeName(parmp->serverName_arg,
3647 parmp->argv[0]);
3648# ifdef WIN32
3649 if (parmp->servername != NULL)
3650 {
3651 serverSetName(parmp->servername);
3652 vim_free(parmp->servername);
3653 }
3654# endif
3655 }
3656}
3657
3658/*
3659 * Prepare for running as a Vim server.
3660 */
3661 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003662prepare_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003663{
3664# if defined(FEAT_X11)
3665 /*
3666 * Register for remote command execution with :serversend and --remote
3667 * unless there was a -X or a --servername '' on the command line.
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003668 * Only register nongui-vim's with an explicit --servername argument,
3669 * or when compiling with autoservername.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003670 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003671 */
3672 if (X_DISPLAY != NULL && parmp->servername != NULL && (
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003673# if defined(FEAT_AUTOSERVERNAME) || defined(FEAT_GUI)
3674 (
3675# if defined(FEAT_AUTOSERVERNAME)
3676 1
3677# else
3678 gui.in_use
3679# endif
Bram Moolenaar5f402312006-08-15 19:40:35 +00003680# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003681 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003682# endif
3683 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003684# endif
3685 parmp->serverName_arg != NULL))
3686 {
3687 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3688 vim_free(parmp->servername);
3689 TIME_MSG("register server name");
3690 }
3691 else
3692 serverDelayedStartName = parmp->servername;
3693# endif
3694
3695 /*
3696 * Execute command ourselves if we're here because the send failed (or
3697 * else we would have exited above).
3698 */
3699 if (parmp->serverStr != NULL)
3700 {
3701 char_u *p;
3702
3703 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3704 parmp->serverStr, &p));
3705 vim_free(p);
3706 }
3707}
3708
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003709 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003710cmdsrv_main(
3711 int *argc,
3712 char **argv,
3713 char_u *serverName_arg,
3714 char_u **serverStr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003715{
3716 char_u *res;
3717 int i;
3718 char_u *sname;
3719 int ret;
3720 int didone = FALSE;
3721 int exiterr = 0;
3722 char **newArgV = argv + 1;
3723 int newArgC = 1,
3724 Argc = *argc;
3725 int argtype;
3726#define ARGTYPE_OTHER 0
3727#define ARGTYPE_EDIT 1
3728#define ARGTYPE_EDIT_WAIT 2
3729#define ARGTYPE_SEND 3
3730 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003731 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003732# ifndef FEAT_X11
3733 HWND srv;
3734# else
3735 Window srv;
3736
3737 setup_term_clip();
3738# endif
3739
3740 sname = serverMakeName(serverName_arg, argv[0]);
3741 if (sname == NULL)
3742 return;
3743
3744 /*
3745 * Execute the command server related arguments and remove them
3746 * from the argc/argv array; We may have to return into main()
3747 */
3748 for (i = 1; i < Argc; i++)
3749 {
3750 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003751 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003752 {
3753 for (; i < *argc; i++)
3754 {
3755 *newArgV++ = argv[i];
3756 newArgC++;
3757 }
3758 break;
3759 }
3760
Bram Moolenaareb94e552006-03-11 21:35:11 +00003761 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003762 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003763 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3764 {
3765 char *p = argv[i] + 8;
3766
3767 argtype = ARGTYPE_EDIT;
3768 while (*p != NUL)
3769 {
3770 if (STRNICMP(p, "-wait", 5) == 0)
3771 {
3772 argtype = ARGTYPE_EDIT_WAIT;
3773 p += 5;
3774 }
3775 else if (STRNICMP(p, "-silent", 7) == 0)
3776 {
3777 silent = TRUE;
3778 p += 7;
3779 }
3780 else if (STRNICMP(p, "-tab", 4) == 0)
3781 {
3782 tabs = TRUE;
3783 p += 4;
3784 }
3785 else
3786 {
3787 argtype = ARGTYPE_OTHER;
3788 break;
3789 }
3790 }
3791 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003792 else
3793 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003794
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003795 if (argtype != ARGTYPE_OTHER)
3796 {
3797 if (i == *argc - 1)
3798 mainerr_arg_missing((char_u *)argv[i]);
3799 if (argtype == ARGTYPE_SEND)
3800 {
3801 *serverStr = (char_u *)argv[i + 1];
3802 i++;
3803 }
3804 else
3805 {
3806 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003807 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003808 if (*serverStr == NULL)
3809 {
3810 /* Probably out of memory, exit. */
3811 didone = TRUE;
3812 exiterr = 1;
3813 break;
3814 }
3815 Argc = i;
3816 }
3817# ifdef FEAT_X11
3818 if (xterm_dpy == NULL)
3819 {
3820 mch_errmsg(_("No display"));
3821 ret = -1;
3822 }
3823 else
3824 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003825 NULL, &srv, 0, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003826# else
3827 /* Win32 always works? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003828 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003829# endif
3830 if (ret < 0)
3831 {
3832 if (argtype == ARGTYPE_SEND)
3833 {
3834 /* Failed to send, abort. */
3835 mch_errmsg(_(": Send failed.\n"));
3836 didone = TRUE;
3837 exiterr = 1;
3838 }
3839 else if (!silent)
3840 /* Let vim start normally. */
3841 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3842 break;
3843 }
3844
3845# ifdef FEAT_GUI_W32
3846 /* Guess that when the server name starts with "g" it's a GUI
3847 * server, which we can bring to the foreground here.
3848 * Foreground() in the server doesn't work very well. */
3849 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3850 SetForegroundWindow(srv);
3851# endif
3852
3853 /*
3854 * For --remote-wait: Wait until the server did edit each
3855 * file. Also detect that the server no longer runs.
3856 */
3857 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3858 {
3859 int numFiles = *argc - i - 1;
3860 int j;
3861 char_u *done = alloc(numFiles);
3862 char_u *p;
3863# ifdef FEAT_GUI_W32
3864 NOTIFYICONDATA ni;
3865 int count = 0;
3866 extern HWND message_window;
3867# endif
3868
3869 if (numFiles > 0 && argv[i + 1][0] == '+')
3870 /* Skip "+cmd" argument, don't wait for it to be edited. */
3871 --numFiles;
3872
3873# ifdef FEAT_GUI_W32
3874 ni.cbSize = sizeof(ni);
3875 ni.hWnd = message_window;
3876 ni.uID = 0;
3877 ni.uFlags = NIF_ICON|NIF_TIP;
3878 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3879 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3880 Shell_NotifyIcon(NIM_ADD, &ni);
3881# endif
3882
3883 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003884 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003885 while (memchr(done, 0, numFiles) != NULL)
3886 {
3887# ifdef WIN32
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003888 p = serverGetReply(srv, NULL, TRUE, TRUE, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003889 if (p == NULL)
3890 break;
3891# else
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003892 if (serverReadReply(xterm_dpy, srv, &p, TRUE, -1) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003893 break;
3894# endif
3895 j = atoi((char *)p);
3896 if (j >= 0 && j < numFiles)
3897 {
3898# ifdef FEAT_GUI_W32
3899 ++count;
3900 sprintf(ni.szTip, _("%d of %d edited"),
3901 count, numFiles);
3902 Shell_NotifyIcon(NIM_MODIFY, &ni);
3903# endif
3904 done[j] = 1;
3905 }
3906 }
3907# ifdef FEAT_GUI_W32
3908 Shell_NotifyIcon(NIM_DELETE, &ni);
3909# endif
3910 }
3911 }
3912 else if (STRICMP(argv[i], "--remote-expr") == 0)
3913 {
3914 if (i == *argc - 1)
3915 mainerr_arg_missing((char_u *)argv[i]);
3916# ifdef WIN32
3917 /* Win32 always works? */
3918 if (serverSendToVim(sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003919 &res, NULL, 1, 0, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003920# else
3921 if (xterm_dpy == NULL)
3922 mch_errmsg(_("No display: Send expression failed.\n"));
3923 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003924 &res, NULL, 1, 0, 1, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003925# endif
3926 {
3927 if (res != NULL && *res != NUL)
3928 {
3929 /* Output error from remote */
3930 mch_errmsg((char *)res);
Bram Moolenaard23a8232018-02-10 18:45:26 +01003931 VIM_CLEAR(res);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003932 }
3933 mch_errmsg(_(": Send expression failed.\n"));
3934 }
3935 }
3936 else if (STRICMP(argv[i], "--serverlist") == 0)
3937 {
3938# ifdef WIN32
3939 /* Win32 always works? */
3940 res = serverGetVimNames();
3941# else
3942 if (xterm_dpy != NULL)
3943 res = serverGetVimNames(xterm_dpy);
3944# endif
3945 if (called_emsg)
3946 mch_errmsg("\n");
3947 }
3948 else if (STRICMP(argv[i], "--servername") == 0)
3949 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003950 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003951 i++;
3952 continue;
3953 }
3954 else
3955 {
3956 *newArgV++ = argv[i];
3957 newArgC++;
3958 continue;
3959 }
3960 didone = TRUE;
3961 if (res != NULL && *res != NUL)
3962 {
3963 mch_msg((char *)res);
3964 if (res[STRLEN(res) - 1] != '\n')
3965 mch_msg("\n");
3966 }
3967 vim_free(res);
3968 }
3969
3970 if (didone)
3971 {
3972 display_errors(); /* display any collected messages */
3973 exit(exiterr); /* Mission accomplished - get out */
3974 }
3975
3976 /* Return back into main() */
3977 *argc = newArgC;
3978 vim_free(sname);
3979}
3980
3981/*
3982 * Build a ":drop" command to send to a Vim server.
3983 */
3984 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003985build_drop_cmd(
3986 int filec,
3987 char **filev,
3988 int tabs, /* Use ":tab drop" instead of ":drop". */
3989 int sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003990{
3991 garray_T ga;
3992 int i;
3993 char_u *inicmd = NULL;
3994 char_u *p;
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003995 char_u *cdp;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003996 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003997
3998 if (filec > 0 && filev[0][0] == '+')
3999 {
4000 inicmd = (char_u *)filev[0] + 1;
4001 filev++;
4002 filec--;
4003 }
4004 /* Check if we have at least one argument. */
4005 if (filec <= 0)
4006 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004007
4008 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02004009 cwd = alloc(MAXPATHL);
4010 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004011 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004012 if (mch_dirname(cwd, MAXPATHL) != OK)
4013 {
4014 vim_free(cwd);
4015 return NULL;
4016 }
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004017 cdp = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00004018#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004019 (char_u *)"", /* rem_backslash() will tell what chars to escape */
Bram Moolenaar02b06312007-09-06 15:39:22 +00004020#else
4021 PATH_ESC_CHARS,
4022#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02004023 '\\', TRUE);
4024 vim_free(cwd);
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004025 if (cdp == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004026 return NULL;
4027 ga_init2(&ga, 1, 100);
4028 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004029 ga_concat(&ga, cdp);
Bram Moolenaareb94e552006-03-11 21:35:11 +00004030
4031 /* Call inputsave() so that a prompt for an encryption key works. */
4032 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
4033 if (tabs)
4034 ga_concat(&ga, (char_u *)"tab ");
4035 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004036 for (i = 0; i < filec; i++)
4037 {
4038 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004039 * do it again in the Vim server. On MS-Windows only escape
4040 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004041 p = vim_strsave_escaped((char_u *)filev[i],
4042#ifdef UNIX
4043 PATH_ESC_CHARS
4044#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004045 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004046#endif
4047 );
4048 if (p == NULL)
4049 {
4050 vim_free(ga.ga_data);
4051 return NULL;
4052 }
4053 ga_concat(&ga, (char_u *)" ");
4054 ga_concat(&ga, p);
4055 vim_free(p);
4056 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004057 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
4058
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004059 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
4060 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004061 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
4062
4063 /* Switch back to the correct current directory (prior to temporary path
4064 * switch) unless 'autochdir' is set, in which case it will already be
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004065 * correct after the :drop command. With line breaks and spaces:
4066 * if !exists('+acd') || !&acd
4067 * if haslocaldir()
4068 * cd -
4069 * lcd -
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004070 * elseif getcwd() ==# 'current path'
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004071 * cd -
4072 * endif
4073 * endif
4074 */
4075 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|");
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004076 ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004077 ga_concat(&ga, cdp);
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004078 ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004079 vim_free(cdp);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004080
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004081 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004082 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
4083 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004084 if (inicmd != NULL)
4085 {
4086 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
4087 * the following commands to be inserted as text. Use a "|",
4088 * hopefully "inicmd" does allow this... */
4089 ga_concat(&ga, inicmd);
4090 ga_concat(&ga, (char_u *)"|");
4091 }
4092 /* Bring the window to the foreground, goto Insert mode when 'im' set and
4093 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00004094 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004095 ga_append(&ga, NUL);
4096 return ga.ga_data;
4097}
4098
4099/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004100 * Make our basic server name: use the specified "arg" if given, otherwise use
4101 * the tail of the command "cmd" we were started with.
4102 * Return the name in allocated memory. This doesn't include a serial number.
4103 */
4104 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004105serverMakeName(char_u *arg, char *cmd)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004106{
4107 char_u *p;
4108
4109 if (arg != NULL && *arg != NUL)
4110 p = vim_strsave_up(arg);
4111 else
4112 {
4113 p = vim_strsave_up(gettail((char_u *)cmd));
4114 /* Remove .exe or .bat from the name. */
4115 if (p != NULL && vim_strchr(p, '.') != NULL)
4116 *vim_strchr(p, '.') = NUL;
4117 }
4118 return p;
4119}
4120#endif /* FEAT_CLIENTSERVER */
4121
4122#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4123/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004124 * Replace termcodes such as <CR> and insert as key presses if there is room.
4125 */
4126 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004127server_to_input_buf(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004128{
4129 char_u *ptr = NULL;
4130 char_u *cpo_save = p_cpo;
4131
4132 /* Set 'cpoptions' the way we want it.
4133 * B set - backslashes are *not* treated specially
4134 * k set - keycodes are *not* reverse-engineered
4135 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004136 * The last but one parameter of replace_termcodes() is TRUE so that the
4137 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004138 */
4139 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004140 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004141 p_cpo = cpo_save;
4142
4143 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4144 {
4145 /*
4146 * Add the string to the input stream.
4147 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4148 *
4149 * First clear typed characters from the typeahead buffer, there could
4150 * be half a mapping there. Then append to the existing string, so
4151 * that multiple commands from a client are concatenated.
4152 */
4153 if (typebuf.tb_maplen < typebuf.tb_len)
4154 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4155 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4156
4157 /* Let input_available() know we inserted text in the typeahead
4158 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004159 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004160 }
4161 vim_free((char_u *)ptr);
4162}
4163
4164/*
4165 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004166 */
4167 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004168eval_client_expr_to_string(char_u *expr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004169{
4170 char_u *res;
4171 int save_dbl = debug_break_level;
4172 int save_ro = redir_off;
Bram Moolenaar27e80c82018-10-14 21:41:01 +02004173 funccal_entry_T funccal_entry;
4174 int did_save_funccal = FALSE;
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004175
4176 /* Evaluate the expression at the toplevel, don't use variables local to
Bram Moolenaard99388b2017-10-26 14:28:32 +02004177 * the calling function. Except when in debug mode. */
4178 if (!debug_mode)
Bram Moolenaar27e80c82018-10-14 21:41:01 +02004179 {
4180 save_funccal(&funccal_entry);
4181 did_save_funccal = TRUE;
4182 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004183
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004184 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4185 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004186 debug_break_level = -1;
4187 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004188 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4189 * to be typed. Do generate errors so that try/catch works. */
4190 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004191
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004192 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004193
4194 debug_break_level = save_dbl;
4195 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004196 --emsg_silent;
4197 if (emsg_silent < 0)
4198 emsg_silent = 0;
Bram Moolenaar27e80c82018-10-14 21:41:01 +02004199 if (did_save_funccal)
4200 restore_funccal();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004201
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004202 /* A client can tell us to redraw, but not to display the cursor, so do
4203 * that here. */
4204 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01004205 out_flush_cursor(FALSE, FALSE);
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004206
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004207 return res;
4208}
4209
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004210/*
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004211 * Evaluate a command or expression sent to ourselves.
4212 */
4213 int
4214sendToLocalVim(char_u *cmd, int asExpr, char_u **result)
4215{
4216 if (asExpr)
4217 {
4218 char_u *ret;
4219
4220 ret = eval_client_expr_to_string(cmd);
4221 if (result != NULL)
4222 {
4223 if (ret == NULL)
4224 {
4225 char *err = _(e_invexprmsg);
4226 size_t len = STRLEN(cmd) + STRLEN(err) + 5;
4227 char_u *msg;
4228
Bram Moolenaar1662ce12017-03-19 21:47:50 +01004229 msg = alloc((unsigned)len);
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004230 if (msg != NULL)
4231 vim_snprintf((char *)msg, len, "%s: \"%s\"", err, cmd);
4232 *result = msg;
4233 }
4234 else
4235 *result = ret;
4236 }
4237 else
4238 vim_free(ret);
4239 return ret == NULL ? -1 : 0;
4240 }
4241 server_to_input_buf(cmd);
4242 return 0;
4243}
4244
4245/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004246 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4247 * return an allocated string. Otherwise return "data".
4248 * "*tofree" is set to the result when it needs to be freed later.
4249 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004250 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004251serverConvert(
4252 char_u *client_enc UNUSED,
4253 char_u *data,
4254 char_u **tofree)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004255{
4256 char_u *res = data;
4257
4258 *tofree = NULL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004259 if (client_enc != NULL && p_enc != NULL)
4260 {
4261 vimconv_T vimconv;
4262
4263 vimconv.vc_type = CONV_NONE;
4264 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4265 && vimconv.vc_type != CONV_NONE)
4266 {
4267 res = string_convert(&vimconv, data, NULL);
4268 if (res == NULL)
4269 res = data;
4270 else
4271 *tofree = res;
4272 }
4273 convert_setup(&vimconv, NULL, NULL);
4274 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004275 return res;
4276}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004277#endif