blob: d24eafa949e71ee85af19dae60b58652eb1ae0cc [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 Moolenaar14993322014-09-09 12:25:33 +0200122#if defined(WIN32) && defined(FEAT_MBYTE)
123 /*
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
253#if defined(WIN32) && defined(FEAT_MBYTE)
254 {
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
538#ifdef FEAT_FKMAP
539 if (curwin->w_p_rl && p_altkeymap)
540 {
541 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
542# ifdef FEAT_ARABIC
543 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
544# endif
545 p_fkmap = TRUE; /* Set the Farsi keymap mode */
546 }
547#endif
548
549#ifdef FEAT_GUI
550 if (gui.starting)
551 {
552#if defined(UNIX) || defined(VMS)
553 /* When something caused a message from a vimrc script, need to output
554 * an extra newline before the shell prompt. */
555 if (did_emsg || msg_didout)
556 putchar('\n');
557#endif
558
559 gui_start(); /* will set full_screen to TRUE */
560 TIME_MSG("starting GUI");
561
562 /* When running "evim" or "gvim -y" we need the menus, exit if we
563 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000564 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000565 mch_exit(1);
566 }
567#endif
568
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000569#ifdef FEAT_VIMINFO
570 /*
Bram Moolenaard812df62008-11-09 12:46:09 +0000571 * Read in registers, history etc, but not marks, from the viminfo file.
572 * This is where v:oldfiles gets filled.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000573 */
574 if (*p_viminfo != NUL)
575 {
Bram Moolenaard812df62008-11-09 12:46:09 +0000576 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000577 TIME_MSG("reading viminfo");
578 }
579#endif
Bram Moolenaar2cd36962014-01-14 12:57:05 +0100580#ifdef FEAT_EVAL
581 /* It's better to make v:oldfiles an empty list than NULL. */
582 if (get_vim_var_list(VV_OLDFILES) == NULL)
583 set_vim_var_list(VV_OLDFILES, list_alloc());
584#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000585
586#ifdef FEAT_QUICKFIX
587 /*
588 * "-q errorfile": Load the error file now.
589 * If the error file can't be read, exit before doing anything else.
590 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000591 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000592 {
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100593 char_u *enc = NULL;
594
595# ifdef FEAT_MBYTE
596 enc = p_menc;
597# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000598 if (params.use_ef != NULL)
599 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000600 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200601 vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100602 if (qf_init(NULL, p_ef, p_efm, TRUE, IObuff, enc) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000603 {
604 out_char('\n');
605 mch_exit(3);
606 }
607 TIME_MSG("reading errorfile");
608 }
609#endif
610
611 /*
612 * Start putting things on the screen.
613 * Scroll screen down before drawing over it
614 * Clear screen now, so file message will not be cleared.
615 */
616 starting = NO_BUFFERS;
617 no_wait_return = FALSE;
618 if (!exmode_active)
619 msg_scroll = FALSE;
620
621#ifdef FEAT_GUI
622 /*
623 * This seems to be required to make callbacks to be called now, instead
624 * of after things have been put on the screen, which then may be deleted
625 * when getting a resize callback.
626 * For the Mac this handles putting files dropped on the Vim icon to
627 * global_alist.
628 */
629 if (gui.in_use)
630 {
631# ifdef FEAT_SUN_WORKSHOP
632 if (!usingSunWorkShop)
633# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100634 gui_wait_for_chars(50L, typebuf.tb_change_cnt);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000635 TIME_MSG("GUI delay");
636 }
637#endif
638
639#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
640 qnx_clip_init();
641#endif
642
Bram Moolenaarc8bbaa32010-07-14 16:54:21 +0200643#if defined(MACOS_X) && defined(FEAT_CLIPBOARD)
644 clip_init(TRUE);
645#endif
646
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000647#ifdef FEAT_XCLIPBOARD
648 /* Start using the X clipboard, unless the GUI was started. */
649# ifdef FEAT_GUI
650 if (!gui.in_use)
651# endif
652 {
653 setup_term_clip();
654 TIME_MSG("setup clipboard");
655 }
656#endif
657
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000658#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000659 /* Prepare for being a Vim server. */
660 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000661#endif
662
663 /*
664 * If "-" argument given: Read file from stdin.
665 * Do this before starting Raw mode, because it may change things that the
666 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
667 * are the same terminal: "cat | vim -".
668 * Using autocommands here may cause trouble...
669 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000670 if (params.edit_type == EDIT_STDIN && !recoverymode)
671 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000672
673#if defined(UNIX) || defined(VMS)
674 /* When switching screens and something caused a message from a vimrc
675 * script, need to output an extra newline on exit. */
676 if ((did_emsg || msg_didout) && *T_TI != NUL)
677 newline_on_exit = TRUE;
678#endif
679
680 /*
681 * When done something that is not allowed or error message call
682 * wait_return. This must be done before starttermcap(), because it may
683 * switch to another screen. It must be done after settmode(TMODE_RAW),
684 * because we want to react on a single key stroke.
685 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000686 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000687 */
688 settmode(TMODE_RAW);
689 TIME_MSG("setting raw mode");
690
691 if (need_wait_return || msg_didany)
692 {
693 wait_return(TRUE);
694 TIME_MSG("waiting for return");
695 }
696
697 starttermcap(); /* start termcap if not done by wait_return() */
698 TIME_MSG("start termcap");
699
700#ifdef FEAT_MOUSE
701 setmouse(); /* may start using the mouse */
702#endif
703 if (scroll_region)
704 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000705 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000706
Bram Moolenaar980bab42018-08-07 22:42:53 +0200707#if defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar40385db2018-08-07 22:31:44 +0200708 term_push_title(SAVE_RESTORE_BOTH);
709#endif
710
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000711 /*
712 * Don't clear the screen when starting in Ex mode, unless using the GUI.
713 */
714 if (exmode_active
715#ifdef FEAT_GUI
716 && !gui.in_use
717#endif
718 )
719 must_redraw = CLEAR;
720 else
721 {
722 screenclear(); /* clear screen */
723 TIME_MSG("clearing screen");
724 }
725
726#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000727 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000728 {
Bram Moolenaar3a0c9082014-11-12 15:15:42 +0100729 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200730 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000731 TIME_MSG("getting crypt key");
732 }
733#endif
734
735 no_wait_return = TRUE;
736
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000737 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000738 * Create the requested number of windows and edit buffers in them.
739 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000740 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000741 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000742 TIME_MSG("opening buffers");
743
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000744#ifdef FEAT_EVAL
745 /* clear v:swapcommand */
746 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
747#endif
748
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000749 /* Ex starts at last line of the file */
750 if (exmode_active)
751 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
752
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000753 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
754 TIME_MSG("BufEnter autocommands");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000755 setpcmark();
756
757#ifdef FEAT_QUICKFIX
758 /*
759 * When started with "-q errorfile" jump to first error now.
760 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000761 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000762 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000763 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000764 TIME_MSG("jump to first error");
765 }
766#endif
767
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000768 /*
769 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000770 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000771 */
Bram Moolenaarf6303872015-04-03 17:59:43 +0200772 edit_buffers(&params, start_dir);
Bram Moolenaarf6303872015-04-03 17:59:43 +0200773 vim_free(start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000774
775#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000776 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000777 {
778 win_T *wp;
779
780 /* set options in each window for "vimdiff". */
Bram Moolenaar29323592016-07-24 22:04:11 +0200781 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000782 diff_win_options(wp, TRUE);
783 }
784#endif
785
786 /*
787 * Shorten any of the filenames, but only when absolute.
788 */
789 shorten_fnames(FALSE);
790
791 /*
792 * Need to jump to the tag before executing the '-c command'.
793 * Makes "vim -c '/return' -t main" work.
794 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000795 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000796 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000797#if defined(HAS_SWAP_EXISTS_ACTION)
798 swap_exists_did_quit = FALSE;
799#endif
800
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000801 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000802 do_cmdline_cmd(IObuff);
803 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000804
805#if defined(HAS_SWAP_EXISTS_ACTION)
806 /* If the user doesn't want to edit the file then we quit here. */
807 if (swap_exists_did_quit)
808 getout(1);
809#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000810 }
811
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000812 /* Execute any "+", "-c" and "-S" arguments. */
813 if (params.n_commands > 0)
814 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000815
Bram Moolenaar6b1da332017-06-09 21:35:47 +0200816 /* Must come before the may_req_ calls. */
817 starting = 0;
818
Bram Moolenaar976787d2017-06-04 15:45:50 +0200819#if defined(FEAT_TERMRESPONSE) && defined(FEAT_MBYTE)
820 /* Must be done before redrawing, puts a few characters on the screen. */
821 may_req_ambiguous_char_width();
822#endif
823
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000824 RedrawingDisabled = 0;
825 redraw_all_later(NOT_VALID);
826 no_wait_return = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000827
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200828 /* 'autochdir' has been postponed */
Bram Moolenaar6f470022018-04-10 18:47:20 +0200829 DO_AUTOCHDIR;
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200830
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000831#ifdef FEAT_TERMRESPONSE
832 /* Requesting the termresponse is postponed until here, so that a "-c q"
833 * argument doesn't make it appear in the shell Vim was started from. */
834 may_req_termresponse();
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200835
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200836 may_req_bg_color();
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000837#endif
838
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000839 /* start in insert mode */
840 if (p_im)
841 need_start_insertmode = TRUE;
842
Bram Moolenaar14735512016-03-26 21:00:08 +0100843#ifdef FEAT_EVAL
844 set_vim_var_nr(VV_VIM_DID_ENTER, 1L);
845#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000846 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
847 TIME_MSG("VimEnter autocommands");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000848
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200849#if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD)
850 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be
851 * done after the clipboard is available and all initial commands that may
852 * modify the 'clipboard' setting have run; i.e. just before entering the
853 * main loop. */
854 {
855 int default_regname = 0;
Bram Moolenaar53076832015-12-31 19:53:21 +0100856
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200857 adjust_clip_reg(&default_regname);
858 set_reg_var(default_regname);
859 }
860#endif
861
Bram Moolenaar8a3bb562018-03-04 20:14:14 +0100862#if defined(FEAT_DIFF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000863 /* When a startup script or session file setup for diff'ing and
864 * scrollbind, sync the scrollbind now. */
865 if (curwin->w_p_diff && curwin->w_p_scb)
866 {
867 update_topline();
868 check_scrollbind((linenr_T)0, 0L);
869 TIME_MSG("diff scrollbinding");
870 }
871#endif
872
873#if defined(WIN3264) && !defined(FEAT_GUI_W32)
874 mch_set_winsize_now(); /* Allow winsize changes from now on */
875#endif
876
Bram Moolenaar4033c552017-09-16 20:54:51 +0200877#if defined(FEAT_GUI)
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000878 /* When tab pages were created, may need to update the tab pages line and
879 * scrollbars. This is skipped while creating them. */
880 if (first_tabpage->tp_next != NULL)
881 {
882 out_flush();
883 gui_init_which_components(NULL);
884 gui_update_scrollbars(TRUE);
885 }
886 need_mouse_correct = TRUE;
887#endif
888
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000889 /* If ":startinsert" command used, stuff a dummy command to be able to
890 * call normal_cmd(), which will then start Insert mode. */
891 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000892 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000893
894#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200895 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200896 {
897# ifdef FEAT_GUI
Bram Moolenaar173c9852010-09-29 17:27:01 +0200898# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar67c53842010-05-22 18:28:27 +0200899 && !defined(FEAT_GUI_W32)
900 if (gui.in_use)
901 {
902 mch_errmsg(_("netbeans is not supported with this GUI\n"));
903 mch_exit(2);
904 }
905# endif
906# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000907 /* Tell the client that it can start sending commands. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200908 netbeans_open(netbeansArg + 3, TRUE);
Bram Moolenaar67c53842010-05-22 18:28:27 +0200909 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000910#endif
911
912 TIME_MSG("before starting main loop");
913
914 /*
915 * Call the main command loop. This never returns.
Bram Moolenaar92d147b2018-07-29 17:35:23 +0200916 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000917 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000918
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200919#endif /* NO_VIM_MAIN */
920
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000921 return 0;
922}
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000923
924/*
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200925 * Initialisation shared by main() and some tests.
926 */
927 void
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200928common_init(mparm_T *paramp)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200929{
Bram Moolenaar438d1762018-09-30 17:11:48 +0200930 cmdline_init();
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200931
932#ifdef FEAT_MBYTE
933 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
934#endif
935#ifdef FEAT_EVAL
936 eval_init(); /* init global variables */
937#endif
938
939#ifdef __QNXNTO__
940 qnx_init(); /* PhAttach() for clipboard, (and gui) */
941#endif
942
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200943 /* Init the table of Normal mode commands. */
944 init_normal_cmds();
945
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200946 /*
947 * Allocate space for the generic buffers (needed for set_init_1() and
948 * EMSG2()).
949 */
950 if ((IObuff = alloc(IOSIZE)) == NULL
951 || (NameBuff = alloc(MAXPATHL)) == NULL)
952 mch_exit(0);
953 TIME_MSG("Allocated generic buffers");
954
955#ifdef NBDEBUG
956 /* Wait a moment for debugging NetBeans. Must be after allocating
957 * NameBuff. */
958 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
959 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
960 TIME_MSG("NetBeans debug wait");
961#endif
962
963#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
964 /*
965 * Setup to use the current locale (for ctype() and many other things).
966 * NOTE: Translated messages with encodings other than latin1 will not
967 * work until set_init_1() has been called!
968 */
969 init_locale();
970 TIME_MSG("locale set");
971#endif
972
973#ifdef FEAT_GUI
974 gui.dofork = TRUE; /* default is to use fork() */
975#endif
976
977 /*
978 * Do a first scan of the arguments in "argv[]":
979 * -display or --display
980 * --server...
981 * --socketid
982 * --windowid
983 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200984 early_arg_scan(paramp);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200985
986#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200987 findYourself(paramp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200988#endif
Bram Moolenaard0573012017-10-28 21:11:06 +0200989#if defined(FEAT_GUI)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200990 /* Prepare for possibly starting GUI sometime */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200991 gui_prepare(&paramp->argc, paramp->argv);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200992 TIME_MSG("GUI prepared");
993#endif
994
995#ifdef FEAT_CLIPBOARD
996 clip_init(FALSE); /* Initialise clipboard stuff */
997 TIME_MSG("clipboard setup");
998#endif
999
1000 /*
1001 * Check if we have an interactive window.
1002 * On the Amiga: If there is no window, we open one with a newcli command
1003 * (needed for :! to * work). mch_check_win() will also handle the -d or
1004 * -dev argument.
1005 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001006 stdout_isatty = (mch_check_win(paramp->argc, paramp->argv) != FAIL);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001007 TIME_MSG("window checked");
1008
1009 /*
1010 * Allocate the first window and buffer.
1011 * Can't do anything without it, exit when it fails.
1012 */
1013 if (win_alloc_first() == FAIL)
1014 mch_exit(0);
1015
1016 init_yank(); /* init yank buffers */
1017
1018 alist_init(&global_alist); /* Init the argument list to empty. */
1019 global_alist.id = 0;
1020
1021 /*
1022 * Set the default values for the options.
1023 * NOTE: Non-latin1 translated messages are working only after this,
1024 * because this is where "has_mbyte" will be set, which is used by
1025 * msg_outtrans_len_attr().
1026 * First find out the home directory, needed to expand "~" in options.
1027 */
1028 init_homedir(); /* find real value of $HOME */
Bram Moolenaar07268702018-03-01 21:57:32 +01001029 set_init_1(paramp->clean);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001030 TIME_MSG("inits 1");
1031
1032#ifdef FEAT_EVAL
1033 set_lang_var(); /* set v:lang and v:ctype */
1034#endif
1035}
1036
1037/*
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001038 * Return TRUE when the --not-a-term argument was found.
1039 */
1040 int
1041is_not_a_term()
1042{
1043 return params.not_a_term;
1044}
1045
1046/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001047 * Main loop: Execute Normal mode commands until exiting Vim.
1048 * Also used to handle commands in the command-line window, until the window
1049 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001050 * Also used to handle ":visual" command after ":global": execute Normal mode
1051 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001052 */
1053 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001054main_loop(
1055 int cmdwin, /* TRUE when working in the command-line window */
1056 int noexmode) /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001057{
Bram Moolenaardf2c7742018-04-16 17:06:09 +02001058 oparg_T oa; /* operator arguments */
Bram Moolenaar8872ef12015-02-10 19:27:05 +01001059 volatile int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001060#ifdef FEAT_CONCEAL
Bram Moolenaar1db43b12015-07-12 16:21:23 +02001061 /* these are static to avoid a compiler warning */
1062 static linenr_T conceal_old_cursor_line = 0;
1063 static linenr_T conceal_new_cursor_line = 0;
1064 static int conceal_update_lines = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001065#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001066
1067#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1068 /* Setup to catch a terminating error from the X server. Just ignore
1069 * it, restore the state and continue. This might not always work
1070 * properly, but at least we don't exit unexpectedly when the X server
Bram Moolenaar2cd36962014-01-14 12:57:05 +01001071 * exits while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001072 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001073 {
1074 State = NORMAL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001075 VIsual_active = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001076 got_int = TRUE;
1077 need_wait_return = FALSE;
1078 global_busy = FALSE;
1079 exmode_active = 0;
1080 skip_redraw = FALSE;
1081 RedrawingDisabled = 0;
1082 no_wait_return = 0;
Bram Moolenaar7701c242011-10-04 16:43:53 +02001083 vgetc_busy = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001084# ifdef FEAT_EVAL
1085 emsg_skip = 0;
1086# endif
1087 emsg_off = 0;
1088# ifdef FEAT_MOUSE
1089 setmouse();
1090# endif
1091 settmode(TMODE_RAW);
1092 starttermcap();
1093 scroll_start();
1094 redraw_later_clear();
1095 }
1096#endif
1097
1098 clear_oparg(&oa);
1099 while (!cmdwin
1100#ifdef FEAT_CMDWIN
1101 || cmdwin_result == 0
1102#endif
1103 )
1104 {
1105 if (stuff_empty())
1106 {
1107 did_check_timestamps = FALSE;
1108 if (need_check_timestamps)
1109 check_timestamps(FALSE);
1110 if (need_wait_return) /* if wait_return still needed ... */
1111 wait_return(FALSE); /* ... call it now */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001112 if (need_start_insertmode && goto_im() && !VIsual_active)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001113 {
1114 need_start_insertmode = FALSE;
1115 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1116 /* skip the fileinfo message now, because it would be shown
1117 * after insert mode finishes! */
1118 need_fileinfo = FALSE;
1119 }
1120 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001121
1122 /* Reset "got_int" now that we got back to the main loop. Except when
1123 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1124 * the ":g" command.
1125 * For ":g/pat/vi" we reset "got_int" when used once. When used
1126 * a second time we go back to Ex mode and abort the ":g" command. */
1127 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001128 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001129 if (noexmode && global_busy && !exmode_active && previous_got_int)
1130 {
1131 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1132 * used and keep "got_int" set, so that it aborts ":g". */
1133 exmode_active = EXMODE_NORMAL;
1134 State = NORMAL;
1135 }
1136 else if (!global_busy || !exmode_active)
1137 {
1138 if (!quit_more)
1139 (void)vgetc(); /* flush all buffers */
1140 got_int = FALSE;
1141 }
1142 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001143 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001144 else
1145 previous_got_int = FALSE;
1146
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001147 if (!exmode_active)
1148 msg_scroll = FALSE;
1149 quit_more = FALSE;
1150
1151 /*
1152 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1153 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1154 * update cursor and redraw.
1155 */
1156 if (skip_redraw || exmode_active)
1157 skip_redraw = FALSE;
1158 else if (do_redraw || stuff_empty())
1159 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001160#ifdef FEAT_GUI
Bram Moolenaar92d147b2018-07-29 17:35:23 +02001161 // If ui_breakcheck() was used a resize may have been postponed.
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001162 gui_may_resize_shell();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001163#endif
Bram Moolenaar92d147b2018-07-29 17:35:23 +02001164#ifdef HAVE_DROP_FILE
1165 // If files were dropped while text was locked or the curbuf was
1166 // locked, this would be a good time to handle the drop.
1167 handle_any_postponed_drop();
1168#endif
1169
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001170 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001171 if (!finish_op && (
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001172 has_cursormoved()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001173#ifdef FEAT_CONCEAL
1174 || curwin->w_p_cole > 0
1175#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001176 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001177 && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001178 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001179 if (has_cursormoved())
1180 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1181 FALSE, curbuf);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001182# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001183 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001184 {
1185 conceal_old_cursor_line = last_cursormoved.lnum;
1186 conceal_new_cursor_line = curwin->w_cursor.lnum;
1187 conceal_update_lines = TRUE;
1188 }
1189# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001190 last_cursormoved = curwin->w_cursor;
1191 }
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001192
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001193 /* Trigger TextChanged if b:changedtick differs. */
Bram Moolenaar186628f2013-03-19 13:33:23 +01001194 if (!finish_op && has_textchanged()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001195 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf))
Bram Moolenaar186628f2013-03-19 13:33:23 +01001196 {
Bram Moolenaar5a093432018-02-10 18:15:19 +01001197 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL, FALSE, curbuf);
1198 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar186628f2013-03-19 13:33:23 +01001199 }
Bram Moolenaar186628f2013-03-19 13:33:23 +01001200
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01001201#if defined(FEAT_DIFF)
Bram Moolenaare3521d92018-09-16 14:10:31 +02001202 // Updating diffs from changed() does not always work properly,
1203 // esp. updating folds. Do an update just before redrawing if
1204 // needed.
1205 if (curtab->tp_diff_update || curtab->tp_diff_invalid)
1206 {
1207 ex_diffupdate(NULL);
1208 curtab->tp_diff_update = FALSE;
1209 }
1210
Bram Moolenaar33aec762006-01-22 23:30:12 +00001211 /* Scroll-binding for diff mode may have been postponed until
1212 * here. Avoids doing it for every change. */
1213 if (diff_need_scrollbind)
1214 {
1215 check_scrollbind((linenr_T)0, 0L);
1216 diff_need_scrollbind = FALSE;
1217 }
1218#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001219#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001220 /* Include a closed fold completely in the Visual area. */
1221 foldAdjustVisual();
1222#endif
1223#ifdef FEAT_FOLDING
1224 /*
1225 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1226 * contain the cursor.
1227 * When 'foldopen' is "all", open the fold(s) under the cursor.
1228 * This may mark the window for redrawing.
1229 */
1230 if (hasAnyFolding(curwin) && !char_avail())
1231 {
1232 foldCheckClose();
1233 if (fdo_flags & FDO_ALL)
1234 foldOpenCursor();
1235 }
1236#endif
1237
1238 /*
1239 * Before redrawing, make sure w_topline is correct, and w_leftcol
1240 * if lines don't wrap, and w_skipcol if lines wrap.
1241 */
1242 update_topline();
1243 validate_cursor();
1244
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001245 if (VIsual_active)
1246 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001247 else if (must_redraw)
Bram Moolenaara338adc2018-01-31 20:51:47 +01001248 {
1249 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001250 update_screen(0);
Bram Moolenaara338adc2018-01-31 20:51:47 +01001251 mch_enable_flush();
1252 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001253 else if (redraw_cmdline || clear_cmdline)
1254 showmode();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001255 redraw_statuslines();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001256#ifdef FEAT_TITLE
1257 if (need_maketitle)
1258 maketitle();
1259#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001260#ifdef FEAT_VIMINFO
1261 curbuf->b_last_used = vim_time();
1262#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001263 /* display message after redraw */
1264 if (keep_msg != NULL)
1265 {
1266 char_u *p;
1267
1268 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001269 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1270 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001271 p = keep_msg;
1272 msg_attr(p, keep_msg_attr);
1273 vim_free(p);
1274 }
1275 if (need_fileinfo) /* show file info after redraw */
1276 {
1277 fileinfo(FALSE, TRUE, FALSE);
1278 need_fileinfo = FALSE;
1279 }
1280
1281 emsg_on_display = FALSE; /* can delete error message now */
1282 did_emsg = FALSE;
1283 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001284 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001285 showruler(FALSE);
1286
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001287#if defined(FEAT_CONCEAL)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001288 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001289 && (conceal_old_cursor_line != conceal_new_cursor_line
1290 || conceal_cursor_line(curwin)
1291 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001292 {
Bram Moolenaara338adc2018-01-31 20:51:47 +01001293 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */
Bram Moolenaarc2b4c622011-02-15 16:29:59 +01001294 if (conceal_old_cursor_line != conceal_new_cursor_line
1295 && conceal_old_cursor_line
1296 <= curbuf->b_ml.ml_line_count)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001297 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001298 update_single_line(curwin, conceal_new_cursor_line);
Bram Moolenaara338adc2018-01-31 20:51:47 +01001299 mch_enable_flush();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001300 curwin->w_valid &= ~VALID_CROW;
1301 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001302#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001303 setcursor();
1304 cursor_on();
1305
1306 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001307
1308#ifdef STARTUPTIME
1309 /* Now that we have drawn the first screen all the startup stuff
1310 * has been done, close any file for startup messages. */
1311 if (time_fd != NULL)
1312 {
1313 TIME_MSG("first screen update");
1314 TIME_MSG("--- VIM STARTED ---");
1315 fclose(time_fd);
1316 time_fd = NULL;
1317 }
1318#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001319 }
1320#ifdef FEAT_GUI
1321 if (need_mouse_correct)
1322 gui_mouse_correct();
1323#endif
1324
1325 /*
1326 * Update w_curswant if w_set_curswant has been set.
1327 * Postponed until here to avoid computing w_virtcol too often.
1328 */
1329 update_curswant();
1330
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001331#ifdef FEAT_EVAL
1332 /*
1333 * May perform garbage collection when waiting for a character, but
1334 * only at the very toplevel. Otherwise we may be using a List or
1335 * Dict internally somewhere.
1336 * "may_garbage_collect" is reset in vgetc() which is invoked through
1337 * do_exmode() and normal_cmd().
1338 */
1339 may_garbage_collect = (!cmdwin && !noexmode);
1340#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001341 /*
1342 * If we're invoked as ex, do a round of ex commands.
1343 * Otherwise, get and execute a normal mode command.
1344 */
1345 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001346 {
1347 if (noexmode) /* End of ":global/path/visual" commands */
1348 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001349 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001350 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001351 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001352 {
1353#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02001354 if (term_use_loop()
Bram Moolenaaraaa8a352017-08-05 20:17:00 +02001355 && oa.op_type == OP_NOP && oa.regname == NUL
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001356 && !VIsual_active
1357 && !skip_term_loop)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001358 {
1359 /* If terminal_loop() returns OK we got a key that is handled
Bram Moolenaar6d819742017-08-06 14:57:49 +02001360 * in Normal model. With FAIL we first need to position the
1361 * cursor and the screen needs to be redrawn. */
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001362 if (terminal_loop(TRUE) == OK)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001363 normal_cmd(&oa, TRUE);
1364 }
1365 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001366#endif
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001367 {
1368#ifdef FEAT_TERMINAL
1369 skip_term_loop = FALSE;
1370#endif
Bram Moolenaar423802d2017-07-30 16:52:24 +02001371 normal_cmd(&oa, TRUE);
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001372 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02001373 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001374 }
1375}
1376
1377
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001378#if defined(USE_XSMP) || defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001379/*
1380 * Exit, but leave behind swap files for modified buffers.
1381 */
1382 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001383getout_preserve_modified(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001384{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001385# if defined(SIGHUP) && defined(SIG_IGN)
1386 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1387 * makes Vim exit and then handling SIGHUP causes various reentrance
1388 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001389 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001390# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001391
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001392 ml_close_notmod(); /* close all not-modified buffers */
1393 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1394 ml_close_all(FALSE); /* close all memfiles, without deleting */
1395 getout(exitval); /* exit Vim properly */
1396}
1397#endif
1398
1399
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001400/*
1401 * Exit properly.
1402 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001403 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001404getout(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001405{
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001406 exiting = TRUE;
Bram Moolenaar0bd052b2018-03-22 20:33:56 +01001407#if defined(FEAT_JOB_CHANNEL)
1408 ch_log(NULL, "Exiting...");
1409#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001410
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001411 /* When running in Ex mode an error causes us to exit with a non-zero exit
1412 * code. POSIX requires this, although it's not 100% clear from the
1413 * standard. */
1414 if (exmode_active)
1415 exitval += ex_exitval;
1416
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001417 /* Position the cursor on the last screen line, below all the text */
1418#ifdef FEAT_GUI
1419 if (!gui.in_use)
1420#endif
1421 windgoto((int)Rows - 1, 0);
1422
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001423#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1424 /* Optionally print hashtable efficiency. */
1425 hash_debug_results();
1426#endif
1427
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001428#ifdef FEAT_GUI
1429 msg_didany = FALSE;
1430#endif
1431
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001432 if (v_dying <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001433 {
Bram Moolenaardf2c7742018-04-16 17:06:09 +02001434 tabpage_T *tp;
1435 tabpage_T *next_tp;
1436 buf_T *buf;
1437 win_T *wp;
1438
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001439 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001440 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001441 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001442 next_tp = tp->tp_next;
Bram Moolenaar29323592016-07-24 22:04:11 +02001443 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001444 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001445 if (wp->w_buffer == NULL)
1446 /* Autocmd must have close the buffer already, skip. */
1447 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001448 buf = wp->w_buffer;
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001449 if (CHANGEDTICK(buf) != -1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001450 {
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001451 bufref_T bufref;
1452
1453 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001454 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1455 buf->b_fname, FALSE, buf);
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001456 if (bufref_valid(&bufref))
1457 CHANGEDTICK(buf) = -1; /* note we did it already */
1458
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001459 /* start all over, autocommands may mess up the lists */
1460 next_tp = first_tabpage;
1461 break;
1462 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001463 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001464 }
Bram Moolenaar33aec762006-01-22 23:30:12 +00001465
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001466 /* Trigger BufUnload for buffers that are loaded */
Bram Moolenaar29323592016-07-24 22:04:11 +02001467 FOR_ALL_BUFFERS(buf)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001468 if (buf->b_ml.ml_mfp != NULL)
1469 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001470 bufref_T bufref;
1471
1472 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001473 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001474 FALSE, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001475 if (!bufref_valid(&bufref))
1476 /* autocmd deleted the buffer */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001477 break;
1478 }
1479 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1480 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001481
1482#ifdef FEAT_VIMINFO
1483 if (*p_viminfo != NUL)
1484 /* Write out the registers, history, marks etc, to the viminfo file */
1485 write_viminfo(NULL, FALSE);
1486#endif
1487
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001488 if (v_dying <= 1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001489 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001490
Bram Moolenaar05159a02005-02-26 23:04:13 +00001491#ifdef FEAT_PROFILE
1492 profile_dump();
1493#endif
1494
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001495 if (did_emsg
1496#ifdef FEAT_GUI
1497 || (gui.in_use && msg_didany && p_verbose > 0)
1498#endif
1499 )
1500 {
1501 /* give the user a chance to read the (error) message */
1502 no_wait_return = FALSE;
1503 wait_return(FALSE);
1504 }
1505
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001506 /* Position the cursor again, the autocommands may have moved it */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001507#ifdef FEAT_GUI
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001508 if (!gui.in_use)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001509#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001510 windgoto((int)Rows - 1, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001511
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001512#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar65edff82016-02-21 16:40:11 +01001513 job_stop_on_exit();
1514#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001515#ifdef FEAT_LUA
1516 lua_end();
1517#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001518#ifdef FEAT_MZSCHEME
1519 mzscheme_end();
1520#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001521#ifdef FEAT_TCL
1522 tcl_end();
1523#endif
1524#ifdef FEAT_RUBY
1525 ruby_end();
1526#endif
1527#ifdef FEAT_PYTHON
1528 python_end();
1529#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001530#ifdef FEAT_PYTHON3
1531 python3_end();
1532#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001533#ifdef FEAT_PERL
1534 perl_end();
1535#endif
1536#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1537 iconv_end();
1538#endif
1539#ifdef FEAT_NETBEANS_INTG
1540 netbeans_end();
1541#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001542#ifdef FEAT_CSCOPE
1543 cs_end();
1544#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001545#ifdef FEAT_EVAL
1546 if (garbage_collect_at_exit)
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02001547 garbage_collect(FALSE);
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001548#endif
Bram Moolenaar14993322014-09-09 12:25:33 +02001549#if defined(WIN32) && defined(FEAT_MBYTE)
1550 free_cmd_argsW();
1551#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001552
1553 mch_exit(exitval);
1554}
1555
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001556#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1557/*
1558 * Setup to use the current locale (for ctype() and many other things).
1559 */
1560 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001561init_locale(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001562{
1563 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001564
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001565# ifdef FEAT_GUI_GTK
1566 /* Tell Gtk not to change our locale settings. */
1567 gtk_disable_setlocale();
1568# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001569# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1570 /* Make sure strtod() uses a decimal point, not a comma. */
1571 setlocale(LC_NUMERIC, "C");
1572# endif
1573
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001574# ifdef WIN32
1575 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1576 * text while it's expecting text in the current locale. This call avoids
1577 * that. */
1578 setlocale(LC_CTYPE, "C");
1579# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001580
1581# ifdef FEAT_GETTEXT
1582 {
1583 int mustfree = FALSE;
1584 char_u *p;
1585
1586# ifdef DYNAMIC_GETTEXT
1587 /* Initialize the gettext library */
Bram Moolenaar286eacd2016-01-16 18:05:50 +01001588 dyn_libintl_init();
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001589# endif
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001590 /* expand_env() doesn't work yet, because g_chartab[] is not
1591 * initialized yet, call vim_getenv() directly */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001592 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1593 if (p != NULL && *p != NUL)
1594 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001595 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001596 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1597 }
1598 if (mustfree)
1599 vim_free(p);
1600 textdomain(VIMPACKAGE);
1601 }
1602# endif
1603}
1604#endif
1605
1606/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001607 * Get the name of the display, before gui_prepare() removes it from
1608 * argv[]. Used for the xterm-clipboard display.
1609 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001610 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001611 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001612 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001613early_arg_scan(mparm_T *parmp UNUSED)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001614{
Bram Moolenaar03005972008-11-20 13:12:36 +00001615#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1616 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001617 int argc = parmp->argc;
1618 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001619 int i;
1620
1621 for (i = 1; i < argc; i++)
1622 {
1623 if (STRCMP(argv[i], "--") == 0)
1624 break;
1625# ifdef FEAT_XCLIPBOARD
1626 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001627# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001628 || STRICMP(argv[i], "--display") == 0
1629# endif
1630 )
1631 {
1632 if (i == argc - 1)
1633 mainerr_arg_missing((char_u *)argv[i]);
1634 xterm_display = argv[++i];
1635 }
1636# endif
1637# ifdef FEAT_CLIENTSERVER
1638 else if (STRICMP(argv[i], "--servername") == 0)
1639 {
1640 if (i == argc - 1)
1641 mainerr_arg_missing((char_u *)argv[i]);
1642 parmp->serverName_arg = (char_u *)argv[++i];
1643 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001644 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001645 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001646 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001647 {
1648 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001649# ifdef FEAT_GUI
1650 if (strstr(argv[i], "-wait") != 0)
1651 /* don't fork() when starting the GUI to edit files ourself */
1652 gui.dofork = FALSE;
1653# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001654 }
1655# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001656
1657# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1658# ifdef FEAT_GUI_W32
1659 else if (STRICMP(argv[i], "--windowid") == 0)
1660# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001661 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001662# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001663 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001664 long_u id;
1665 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001666
1667 if (i == argc - 1)
1668 mainerr_arg_missing((char_u *)argv[i]);
1669 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001670 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001671 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001672 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001673 if (count != 1)
1674 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1675 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001676# ifdef FEAT_GUI_W32
1677 win_socket_id = id;
1678# else
1679 gtk_socket_id = id;
1680# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001681 i++;
1682 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001683# endif
1684# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001685 else if (STRICMP(argv[i], "--echo-wid") == 0)
1686 echo_wid_arg = TRUE;
1687# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001688# ifndef FEAT_NETBEANS_INTG
1689 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001690 {
1691 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1692 mch_exit(2);
1693 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001694# endif
1695
Bram Moolenaar58d98232005-07-23 22:25:46 +00001696 }
1697#endif
1698}
1699
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001700#ifndef NO_VIM_MAIN
1701/*
1702 * Get a (optional) count for a Vim argument.
1703 */
1704 static int
1705get_number_arg(
1706 char_u *p, /* pointer to argument */
1707 int *idx, /* index in argument, is incremented */
1708 int def) /* default value */
1709{
1710 if (vim_isdigit(p[*idx]))
1711 {
1712 def = atoi((char *)&(p[*idx]));
1713 while (vim_isdigit(p[*idx]))
1714 *idx = *idx + 1;
1715 }
1716 return def;
1717}
1718
1719/*
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001720 * Check for: [r][e][g][vi|vim|view][diff][ex[im]] (sort of)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001721 * If the executable name starts with "r" we disable shell commands.
1722 * If the next character is "e" we run in Easy mode.
1723 * If the next character is "g" we run the GUI version.
1724 * If the next characters are "view" we start in readonly mode.
1725 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1726 * If the next characters are "ex" we start in Ex mode. If it's followed
1727 * by "im" use improved Ex mode.
1728 */
1729 static void
1730parse_command_name(mparm_T *parmp)
1731{
1732 char_u *initstr;
1733
1734 initstr = gettail((char_u *)parmp->argv[0]);
1735
Bram Moolenaard0573012017-10-28 21:11:06 +02001736#ifdef FEAT_GUI_MAC
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001737 /* An issue has been seen when launching Vim in such a way that
1738 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1739 * executable or a symbolic link of it. Until this issue is resolved
1740 * we prohibit the GUI from being used.
1741 */
1742 if (STRCMP(initstr, parmp->argv[0]) == 0)
1743 disallow_gui = TRUE;
1744
1745 /* TODO: On MacOS X default to gui if argv[0] ends in:
1746 * /Vim.app/Contents/MacOS/Vim */
1747#endif
1748
1749#ifdef FEAT_EVAL
1750 set_vim_var_string(VV_PROGNAME, initstr, -1);
Bram Moolenaar08cab962017-03-04 14:37:18 +01001751 set_progpath((char_u *)parmp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001752#endif
1753
1754 if (TOLOWER_ASC(initstr[0]) == 'r')
1755 {
1756 restricted = TRUE;
1757 ++initstr;
1758 }
1759
1760 /* Use evim mode for "evim" and "egvim", not for "editor". */
1761 if (TOLOWER_ASC(initstr[0]) == 'e'
1762 && (TOLOWER_ASC(initstr[1]) == 'v'
1763 || TOLOWER_ASC(initstr[1]) == 'g'))
1764 {
1765#ifdef FEAT_GUI
1766 gui.starting = TRUE;
1767#endif
1768 parmp->evim_mode = TRUE;
1769 ++initstr;
1770 }
1771
1772 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1773 if (TOLOWER_ASC(initstr[0]) == 'g')
1774 {
1775 main_start_gui();
1776#ifdef FEAT_GUI
1777 ++initstr;
1778#endif
1779 }
1780
1781 if (STRNICMP(initstr, "view", 4) == 0)
1782 {
1783 readonlymode = TRUE;
1784 curbuf->b_p_ro = TRUE;
1785 p_uc = 10000; /* don't update very often */
1786 initstr += 4;
1787 }
1788 else if (STRNICMP(initstr, "vim", 3) == 0)
1789 initstr += 3;
1790
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001791 // Catch "[r][g]vimdiff" and "[r][g]viewdiff".
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001792 if (STRICMP(initstr, "diff") == 0)
1793 {
1794#ifdef FEAT_DIFF
1795 parmp->diff_mode = TRUE;
1796#else
1797 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1798 mch_errmsg("\n");
1799 mch_exit(2);
1800#endif
1801 }
1802
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001803 // Checking for "ex" here may catch some weir names, such as "vimex" or
1804 // "viewex", we assume the user knows that.
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001805 if (STRNICMP(initstr, "ex", 2) == 0)
1806 {
1807 if (STRNICMP(initstr + 2, "im", 2) == 0)
1808 exmode_active = EXMODE_VIM;
1809 else
1810 exmode_active = EXMODE_NORMAL;
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001811 change_compatible(TRUE); // set 'compatible'
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001812 }
1813}
1814
Bram Moolenaar58d98232005-07-23 22:25:46 +00001815/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001816 * Scan the command line arguments.
1817 */
1818 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001819command_line_scan(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001820{
1821 int argc = parmp->argc;
1822 char **argv = parmp->argv;
1823 int argv_idx; /* index in argv[n][] */
1824 int had_minmin = FALSE; /* found "--" argument */
1825 int want_argument; /* option argument with argument */
1826 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001827 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001828 long n;
1829
1830 --argc;
1831 ++argv;
1832 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1833 while (argc > 0)
1834 {
1835 /*
1836 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1837 */
1838 if (argv[0][0] == '+' && !had_minmin)
1839 {
1840 if (parmp->n_commands >= MAX_ARG_CMDS)
1841 mainerr(ME_EXTRA_CMD, NULL);
1842 argv_idx = -1; /* skip to next argument */
1843 if (argv[0][1] == NUL)
1844 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1845 else
1846 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1847 }
1848
1849 /*
1850 * Optional argument.
1851 */
1852 else if (argv[0][0] == '-' && !had_minmin)
1853 {
1854 want_argument = FALSE;
1855 c = argv[0][argv_idx++];
1856#ifdef VMS
1857 /*
1858 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1859 * and "-/X" as "-X".
1860 */
1861 if (c == '/')
1862 {
1863 c = argv[0][argv_idx++];
1864 c = TOUPPER_ASC(c);
1865 }
1866 else
1867 c = TOLOWER_ASC(c);
1868#endif
1869 switch (c)
1870 {
1871 case NUL: /* "vim -" read from stdin */
1872 /* "ex -" silent mode */
1873 if (exmode_active)
1874 silent_mode = TRUE;
1875 else
1876 {
1877 if (parmp->edit_type != EDIT_NONE)
1878 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1879 parmp->edit_type = EDIT_STDIN;
1880 read_cmd_fd = 2; /* read from stderr instead of stdin */
1881 }
1882 argv_idx = -1; /* skip to next argument */
1883 break;
1884
1885 case '-': /* "--" don't take any more option arguments */
1886 /* "--help" give help message */
1887 /* "--version" give version message */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001888 /* "--clean" clean context */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001889 /* "--literal" take files literally */
1890 /* "--nofork" don't fork */
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001891 /* "--not-a-term" don't warn for not a term */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001892 /* "--ttyfail" exit if not a term */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001893 /* "--noplugin[s]" skip plugins */
1894 /* "--cmd <cmd>" execute cmd before vimrc */
1895 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1896 usage();
1897 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1898 {
1899 Columns = 80; /* need to init Columns */
1900 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1901 list_version();
1902 msg_putchar('\n');
1903 msg_didout = FALSE;
1904 mch_exit(0);
1905 }
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001906 else if (STRNICMP(argv[0] + argv_idx, "clean", 5) == 0)
1907 {
1908 parmp->use_vimrc = (char_u *)"DEFAULTS";
Bram Moolenaar62dd4522018-03-14 21:20:02 +01001909#ifdef FEAT_GUI
1910 use_gvimrc = (char_u *)"NONE";
1911#endif
Bram Moolenaar07268702018-03-01 21:57:32 +01001912 parmp->clean = TRUE;
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001913 set_option_value((char_u *)"vif", 0L, (char_u *)"NONE", 0);
1914 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001915 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1916 {
Bram Moolenaar53076832015-12-31 19:53:21 +01001917#ifdef EXPAND_FILENAMES
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001918 parmp->literal = TRUE;
1919#endif
1920 }
1921 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1922 {
1923#ifdef FEAT_GUI
1924 gui.dofork = FALSE; /* don't fork() when starting GUI */
1925#endif
1926 }
1927 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1928 p_lpl = FALSE;
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001929 else if (STRNICMP(argv[0] + argv_idx, "not-a-term", 10) == 0)
1930 parmp->not_a_term = TRUE;
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001931 else if (STRNICMP(argv[0] + argv_idx, "ttyfail", 7) == 0)
1932 parmp->tty_fail = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001933 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1934 {
1935 want_argument = TRUE;
1936 argv_idx += 3;
1937 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001938 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1939 {
1940 want_argument = TRUE;
1941 argv_idx += 11;
1942 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001943#ifdef FEAT_CLIENTSERVER
1944 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1945 ; /* already processed -- no arg */
1946 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1947 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1948 {
1949 /* already processed -- snatch the following arg */
1950 if (argc > 1)
1951 {
1952 --argc;
1953 ++argv;
1954 }
1955 }
1956#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001957#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1958# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001959 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001960# else
1961 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1962# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001963 {
1964 /* already processed -- snatch the following arg */
1965 if (argc > 1)
1966 {
1967 --argc;
1968 ++argv;
1969 }
1970 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001971#endif
1972#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001973 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1974 {
1975 /* already processed, skip */
1976 }
1977#endif
1978 else
1979 {
1980 if (argv[0][argv_idx])
1981 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1982 had_minmin = TRUE;
1983 }
1984 if (!want_argument)
1985 argv_idx = -1; /* skip to next argument */
1986 break;
1987
1988 case 'A': /* "-A" start in Arabic mode */
1989#ifdef FEAT_ARABIC
1990 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1991#else
1992 mch_errmsg(_(e_noarabic));
1993 mch_exit(2);
1994#endif
1995 break;
1996
1997 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001998 /* Needs to be effective before expanding file names, because
1999 * for Win32 this makes us edit a shortcut file itself,
2000 * instead of the file it links to. */
2001 set_options_bin(curbuf->b_p_bin, 1, 0);
2002 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002003 break;
2004
2005 case 'C': /* "-C" Compatible */
2006 change_compatible(TRUE);
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02002007 has_dash_c_arg = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002008 break;
2009
2010 case 'e': /* "-e" Ex mode */
2011 exmode_active = EXMODE_NORMAL;
2012 break;
2013
2014 case 'E': /* "-E" Improved Ex mode */
2015 exmode_active = EXMODE_VIM;
2016 break;
2017
2018 case 'f': /* "-f" GUI: run in foreground. Amiga: open
2019 window directly, not with newcli */
2020#ifdef FEAT_GUI
2021 gui.dofork = FALSE; /* don't fork() when starting GUI */
2022#endif
2023 break;
2024
2025 case 'g': /* "-g" start GUI */
2026 main_start_gui();
2027 break;
2028
2029 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
2030#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002031 p_fkmap = TRUE;
2032 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002033#else
2034 mch_errmsg(_(e_nofarsi));
2035 mch_exit(2);
2036#endif
2037 break;
2038
Bram Moolenaarc3e81692018-05-05 15:09:51 +02002039 case '?': /* "-?" give help message (for MS-Windows) */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002040 case 'h': /* "-h" give help message */
2041#ifdef FEAT_GUI_GNOME
2042 /* Tell usage() to exit for "gvim". */
2043 gui.starting = FALSE;
2044#endif
2045 usage();
2046 break;
2047
2048 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
2049#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002050 p_hkmap = TRUE;
2051 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002052#else
2053 mch_errmsg(_(e_nohebrew));
2054 mch_exit(2);
2055#endif
2056 break;
2057
2058 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
2059#ifdef FEAT_LISP
2060 set_option_value((char_u *)"lisp", 1L, NULL, 0);
2061 p_sm = TRUE;
2062#endif
2063 break;
2064
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002065 case 'M': /* "-M" no changes or writing of files */
2066 reset_modifiable();
2067 /* FALLTHROUGH */
2068
2069 case 'm': /* "-m" no writing of files */
2070 p_write = FALSE;
2071 break;
2072
2073 case 'y': /* "-y" easy mode */
2074#ifdef FEAT_GUI
2075 gui.starting = TRUE; /* start GUI a bit later */
2076#endif
2077 parmp->evim_mode = TRUE;
2078 break;
2079
2080 case 'N': /* "-N" Nocompatible */
2081 change_compatible(FALSE);
2082 break;
2083
2084 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002085#ifdef FEAT_NETBEANS_INTG
2086 /* checking for "-nb", netbeans parameters */
2087 if (argv[0][argv_idx] == 'b')
2088 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002089 netbeansArg = argv[0];
2090 argv_idx = -1; /* skip to next argument */
2091 }
2092 else
2093#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002094 parmp->no_swap_file = TRUE;
2095 break;
2096
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002097 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002098#ifdef TARGET_API_MAC_OSX
2099 /* For some reason on MacOS X, an argument like:
2100 -psn_0_10223617 is passed in when invoke from Finder
2101 or with the 'open' command */
2102 if (argv[0][argv_idx] == 's')
2103 {
2104 argv_idx = -1; /* bypass full -psn */
2105 main_start_gui();
2106 break;
2107 }
2108#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002109 /* default is 0: open window for each file */
2110 parmp->window_count = get_number_arg((char_u *)argv[0],
2111 &argv_idx, 0);
2112 parmp->window_layout = WIN_TABS;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002113 break;
2114
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002115 case 'o': /* "-o[N]" open N horizontal split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002116 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002117 parmp->window_count = get_number_arg((char_u *)argv[0],
2118 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002119 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002120 break;
2121
2122 case 'O': /* "-O[N]" open N vertical split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002123 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002124 parmp->window_count = get_number_arg((char_u *)argv[0],
2125 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002126 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002127 break;
2128
2129#ifdef FEAT_QUICKFIX
2130 case 'q': /* "-q" QuickFix mode */
2131 if (parmp->edit_type != EDIT_NONE)
2132 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2133 parmp->edit_type = EDIT_QF;
2134 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2135 {
2136 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2137 argv_idx = -1;
2138 }
2139 else if (argc > 1) /* "-q {errorfile}" */
2140 want_argument = TRUE;
2141 break;
2142#endif
2143
2144 case 'R': /* "-R" readonly mode */
2145 readonlymode = TRUE;
2146 curbuf->b_p_ro = TRUE;
2147 p_uc = 10000; /* don't update very often */
2148 break;
2149
2150 case 'r': /* "-r" recovery mode */
2151 case 'L': /* "-L" recovery mode */
2152 recoverymode = 1;
2153 break;
2154
2155 case 's':
2156 if (exmode_active) /* "-s" silent (batch) mode */
2157 silent_mode = TRUE;
2158 else /* "-s {scriptin}" read from script file */
2159 want_argument = TRUE;
2160 break;
2161
2162 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2163 if (parmp->edit_type != EDIT_NONE)
2164 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2165 parmp->edit_type = EDIT_TAG;
2166 if (argv[0][argv_idx]) /* "-t{tag}" */
2167 {
2168 parmp->tagname = (char_u *)argv[0] + argv_idx;
2169 argv_idx = -1;
2170 }
2171 else /* "-t {tag}" */
2172 want_argument = TRUE;
2173 break;
2174
2175#ifdef FEAT_EVAL
2176 case 'D': /* "-D" Debugging */
2177 parmp->use_debug_break_level = 9999;
2178 break;
2179#endif
2180#ifdef FEAT_DIFF
2181 case 'd': /* "-d" 'diff' */
2182# ifdef AMIGA
2183 /* check for "-dev {device}" */
2184 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2185 want_argument = TRUE;
2186 else
2187# endif
2188 parmp->diff_mode = TRUE;
2189 break;
2190#endif
2191 case 'V': /* "-V{N}" Verbose level */
2192 /* default is 10: a little bit verbose */
2193 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2194 if (argv[0][argv_idx] != NUL)
2195 {
2196 set_option_value((char_u *)"verbosefile", 0L,
2197 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002198 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002199 }
2200 break;
2201
2202 case 'v': /* "-v" Vi-mode (as if called "vi") */
2203 exmode_active = 0;
2204#ifdef FEAT_GUI
2205 gui.starting = FALSE; /* don't start GUI */
2206#endif
2207 break;
2208
2209 case 'w': /* "-w{number}" set window height */
2210 /* "-w {scriptout}" write to script */
2211 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2212 {
2213 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2214 set_option_value((char_u *)"window", n, NULL, 0);
2215 break;
2216 }
2217 want_argument = TRUE;
2218 break;
2219
2220#ifdef FEAT_CRYPT
2221 case 'x': /* "-x" encrypted reading/writing of files */
2222 parmp->ask_for_key = TRUE;
2223 break;
2224#endif
2225
2226 case 'X': /* "-X" don't connect to X server */
2227#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2228 x_no_connect = TRUE;
2229#endif
2230 break;
2231
2232 case 'Z': /* "-Z" restricted mode */
2233 restricted = TRUE;
2234 break;
2235
2236 case 'c': /* "-c{command}" or "-c {command}" execute
2237 command */
2238 if (argv[0][argv_idx] != NUL)
2239 {
2240 if (parmp->n_commands >= MAX_ARG_CMDS)
2241 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002242 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2243 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002244 argv_idx = -1;
2245 break;
2246 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002247 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002248 case 'S': /* "-S {file}" execute Vim script */
2249 case 'i': /* "-i {viminfo}" use for viminfo */
2250#ifndef FEAT_DIFF
2251 case 'd': /* "-d {device}" device (for Amiga) */
2252#endif
2253 case 'T': /* "-T {terminal}" terminal name */
2254 case 'u': /* "-u {vimrc}" vim inits file */
2255 case 'U': /* "-U {gvimrc}" gvim inits file */
2256 case 'W': /* "-W {scriptout}" overwrite */
2257#ifdef FEAT_GUI_W32
2258 case 'P': /* "-P {parent title}" MDI parent */
2259#endif
2260 want_argument = TRUE;
2261 break;
2262
2263 default:
2264 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2265 }
2266
2267 /*
2268 * Handle option arguments with argument.
2269 */
2270 if (want_argument)
2271 {
2272 /*
2273 * Check for garbage immediately after the option letter.
2274 */
2275 if (argv[0][argv_idx] != NUL)
2276 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2277
2278 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002279 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002280 mainerr_arg_missing((char_u *)argv[0]);
2281 ++argv;
2282 argv_idx = -1;
2283
2284 switch (c)
2285 {
2286 case 'c': /* "-c {command}" execute command */
2287 case 'S': /* "-S {file}" execute Vim script */
2288 if (parmp->n_commands >= MAX_ARG_CMDS)
2289 mainerr(ME_EXTRA_CMD, NULL);
2290 if (c == 'S')
2291 {
2292 char *a;
2293
2294 if (argc < 1)
2295 /* "-S" without argument: use default session file
2296 * name. */
2297 a = SESSION_FILE;
2298 else if (argv[0][0] == '-')
2299 {
2300 /* "-S" followed by another option: use default
2301 * session file name. */
2302 a = SESSION_FILE;
2303 ++argc;
2304 --argv;
2305 }
2306 else
2307 a = argv[0];
2308 p = alloc((unsigned)(STRLEN(a) + 4));
2309 if (p == NULL)
2310 mch_exit(2);
2311 sprintf((char *)p, "so %s", a);
2312 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2313 parmp->commands[parmp->n_commands++] = p;
2314 }
2315 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002316 parmp->commands[parmp->n_commands++] =
2317 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002318 break;
2319
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002320 case '-':
2321 if (argv[-1][2] == 'c')
2322 {
2323 /* "--cmd {command}" execute command */
2324 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2325 mainerr(ME_EXTRA_CMD, NULL);
2326 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002327 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002328 }
2329 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002330 break;
2331
2332 /* case 'd': -d {device} is handled in mch_check_win() for the
2333 * Amiga */
2334
2335#ifdef FEAT_QUICKFIX
2336 case 'q': /* "-q {errorfile}" QuickFix mode */
2337 parmp->use_ef = (char_u *)argv[0];
2338 break;
2339#endif
2340
2341 case 'i': /* "-i {viminfo}" use for viminfo */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002342 set_option_value((char_u *)"vif", 0L, (char_u *)argv[0], 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002343 break;
2344
2345 case 's': /* "-s {scriptin}" read from script file */
2346 if (scriptin[0] != NULL)
2347 {
2348scripterror:
2349 mch_errmsg(_("Attempt to open script file again: \""));
2350 mch_errmsg(argv[-1]);
2351 mch_errmsg(" ");
2352 mch_errmsg(argv[0]);
2353 mch_errmsg("\"\n");
2354 mch_exit(2);
2355 }
2356 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2357 {
2358 mch_errmsg(_("Cannot open for reading: \""));
2359 mch_errmsg(argv[0]);
2360 mch_errmsg("\"\n");
2361 mch_exit(2);
2362 }
2363 if (save_typebuf() == FAIL)
2364 mch_exit(2); /* out of memory */
2365 break;
2366
2367 case 't': /* "-t {tag}" */
2368 parmp->tagname = (char_u *)argv[0];
2369 break;
2370
2371 case 'T': /* "-T {terminal}" terminal name */
2372 /*
2373 * The -T term argument is always available and when
2374 * HAVE_TERMLIB is supported it overrides the environment
2375 * variable TERM.
2376 */
2377#ifdef FEAT_GUI
2378 if (term_is_gui((char_u *)argv[0]))
2379 gui.starting = TRUE; /* start GUI a bit later */
2380 else
2381#endif
2382 parmp->term = (char_u *)argv[0];
2383 break;
2384
2385 case 'u': /* "-u {vimrc}" vim inits file */
2386 parmp->use_vimrc = (char_u *)argv[0];
2387 break;
2388
2389 case 'U': /* "-U {gvimrc}" gvim inits file */
2390#ifdef FEAT_GUI
2391 use_gvimrc = (char_u *)argv[0];
2392#endif
2393 break;
2394
2395 case 'w': /* "-w {nr}" 'window' value */
2396 /* "-w {scriptout}" append to script file */
2397 if (vim_isdigit(*((char_u *)argv[0])))
2398 {
2399 argv_idx = 0;
2400 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2401 set_option_value((char_u *)"window", n, NULL, 0);
2402 argv_idx = -1;
2403 break;
2404 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002405 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002406 case 'W': /* "-W {scriptout}" overwrite script file */
2407 if (scriptout != NULL)
2408 goto scripterror;
2409 if ((scriptout = mch_fopen(argv[0],
2410 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2411 {
2412 mch_errmsg(_("Cannot open for script output: \""));
2413 mch_errmsg(argv[0]);
2414 mch_errmsg("\"\n");
2415 mch_exit(2);
2416 }
2417 break;
2418
2419#ifdef FEAT_GUI_W32
2420 case 'P': /* "-P {parent title}" MDI parent */
2421 gui_mch_set_parent(argv[0]);
2422 break;
2423#endif
2424 }
2425 }
2426 }
2427
2428 /*
2429 * File name argument.
2430 */
2431 else
2432 {
2433 argv_idx = -1; /* skip to next argument */
2434
2435 /* Check for only one type of editing. */
2436 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2437 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2438 parmp->edit_type = EDIT_FILE;
2439
2440#ifdef MSWIN
2441 /* Remember if the argument was a full path before changing
2442 * slashes to backslashes. */
2443 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2444 parmp->full_path = TRUE;
2445#endif
2446
2447 /* Add the file to the global argument list. */
2448 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2449 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2450 mch_exit(2);
2451#ifdef FEAT_DIFF
2452 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2453 && !mch_isdir(alist_name(&GARGLIST[0])))
2454 {
2455 char_u *r;
2456
2457 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2458 if (r != NULL)
2459 {
2460 vim_free(p);
2461 p = r;
2462 }
2463 }
2464#endif
2465#if defined(__CYGWIN32__) && !defined(WIN32)
2466 /*
2467 * If vim is invoked by non-Cygwin tools, convert away any
2468 * DOS paths, so things like .swp files are created correctly.
2469 * Look for evidence of non-Cygwin paths before we bother.
2470 * This is only for when using the Unix files.
2471 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002472 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002473 {
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002474 char posix_path[MAXPATHL];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002475
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002476# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002477 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002478# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002479 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002480# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002481 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002482 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002483 if (p == NULL)
2484 mch_exit(2);
2485 }
2486#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002487
2488#ifdef USE_FNAME_CASE
2489 /* Make the case of the file name match the actual file. */
2490 fname_case(p, 0);
2491#endif
2492
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002493 alist_add(&global_alist, p,
Bram Moolenaar53076832015-12-31 19:53:21 +01002494#ifdef EXPAND_FILENAMES
Bram Moolenaar231334e2005-07-25 20:46:57 +00002495 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002496#else
2497 2 /* add buffer number now and use curbuf */
2498#endif
2499 );
2500
2501#if defined(FEAT_MBYTE) && defined(WIN32)
2502 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002503 /* Remember this argument has been added to the argument list.
2504 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002505 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002506# ifdef FEAT_DIFF
2507 parmp->diff_mode
2508# else
2509 FALSE
2510# endif
2511 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002512 }
2513#endif
2514 }
2515
2516 /*
2517 * If there are no more letters after the current "-", go to next
2518 * argument. argv_idx is set to -1 when the current argument is to be
2519 * skipped.
2520 */
2521 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2522 {
2523 --argc;
2524 ++argv;
2525 argv_idx = 1;
2526 }
2527 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002528
2529#ifdef FEAT_EVAL
2530 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2531 * one. */
2532 if (parmp->n_commands > 0)
2533 {
2534 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2535 if (p != NULL)
2536 {
2537 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2538 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2539 vim_free(p);
2540 }
2541 }
2542#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002543}
2544
2545/*
2546 * Print a warning if stdout is not a terminal.
Bram Moolenaar42b23fa2018-02-03 14:46:45 +01002547 * When starting in Ex mode and commands come from a file, set silent_mode.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002548 */
2549 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002550check_tty(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002551{
2552 int input_isatty; /* is active input a terminal? */
2553
2554 input_isatty = mch_input_isatty();
2555 if (exmode_active)
2556 {
2557 if (!input_isatty)
2558 silent_mode = TRUE;
2559 }
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002560 else if (parmp->want_full_screen && (!stdout_isatty || !input_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002561#ifdef FEAT_GUI
2562 /* don't want the delay when started from the desktop */
2563 && !gui.starting
2564#endif
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01002565 && !parmp->not_a_term)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002566 {
2567#ifdef NBDEBUG
2568 /*
2569 * This shouldn't be necessary. But if I run netbeans with the log
2570 * output coming to the console and XOpenDisplay fails, I get vim
2571 * trying to start with input/output to my console tty. This fills my
2572 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002573 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002574 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002575 if (netbeans_active() && (!stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002576 {
2577 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2578 exit(1);
2579 }
2580#endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002581#if defined(WIN3264) && !defined(FEAT_GUI_W32)
2582 if (is_cygpty_used())
2583 {
Bram Moolenaar2a027452017-09-26 19:10:37 +02002584# if defined(FEAT_MBYTE) && defined(HAVE_BIND_TEXTDOMAIN_CODESET) \
2585 && defined(FEAT_GETTEXT)
2586 char *s, *tofree = NULL;
2587
2588 /* Set the encoding of the error message based on $LC_ALL or
2589 * other environment variables instead of 'encoding'.
2590 * Note that the message is shown on a Cygwin terminal (e.g.
2591 * mintty) which encoding is based on $LC_ALL or etc., not the
2592 * current codepage used by normal Win32 console programs. */
Bram Moolenaar9cf39cc2017-09-27 21:46:19 +02002593 tofree = s = (char *)enc_locale_env(NULL);
Bram Moolenaar2a027452017-09-26 19:10:37 +02002594 if (s == NULL)
2595 s = "utf-8"; /* Use "utf-8" by default. */
2596 (void)bind_textdomain_codeset(VIMPACKAGE, s);
2597 vim_free(tofree);
2598# endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002599 mch_errmsg(_("Vim: Error: This version of Vim does not run in a Cygwin terminal\n"));
2600 exit(1);
2601 }
2602#endif
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002603 if (!stdout_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002604 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2605 if (!input_isatty)
2606 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2607 out_flush();
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002608 if (parmp->tty_fail && (!stdout_isatty || !input_isatty))
2609 exit(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002610 if (scriptin[0] == NULL)
2611 ui_delay(2000L, TRUE);
2612 TIME_MSG("Warning delay");
2613 }
2614}
2615
2616/*
2617 * Read text from stdin.
2618 */
2619 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002620read_stdin(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002621{
2622 int i;
2623
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002624#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002625 /* When getting the ATTENTION prompt here, use a dialog */
2626 swap_exists_action = SEA_DIALOG;
2627#endif
2628 no_wait_return = TRUE;
2629 i = msg_didany;
2630 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002631 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002632 no_wait_return = FALSE;
2633 msg_didany = i;
2634 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002635#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002636 check_swap_exists_action();
2637#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002638#if !(defined(AMIGA) || defined(MACOS_X))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002639 /*
2640 * Close stdin and dup it from stderr. Required for GPM to work
2641 * properly, and for running external commands.
2642 * Is there any other system that cannot do this?
2643 */
2644 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02002645 vim_ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002646#endif
2647}
2648
2649/*
2650 * Create the requested number of windows and edit buffers in them.
2651 * Also does recovery if "recoverymode" set.
2652 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002653 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002654create_windows(mparm_T *parmp UNUSED)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002655{
Bram Moolenaar89d40322006-08-29 15:30:07 +00002656 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002657 int done = 0;
2658
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002659 /*
2660 * Create the number of windows that was requested.
2661 */
2662 if (parmp->window_count == -1) /* was not set */
2663 parmp->window_count = 1;
2664 if (parmp->window_count == 0)
2665 parmp->window_count = GARGCOUNT;
2666 if (parmp->window_count > 1)
2667 {
2668 /* Don't change the windows if there was a command in .vimrc that
2669 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002670 if (parmp->window_layout == 0)
2671 parmp->window_layout = WIN_HOR;
2672 if (parmp->window_layout == WIN_TABS)
2673 {
2674 parmp->window_count = make_tabpages(parmp->window_count);
2675 TIME_MSG("making tab pages");
2676 }
2677 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002678 {
2679 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002680 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002681 TIME_MSG("making windows");
2682 }
2683 else
2684 parmp->window_count = win_count();
2685 }
2686 else
2687 parmp->window_count = 1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002688
2689 if (recoverymode) /* do recover */
2690 {
2691 msg_scroll = TRUE; /* scroll message up */
2692 ml_recover();
2693 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2694 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002695 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002696 }
2697 else
2698 {
2699 /*
2700 * Open a buffer for windows that don't have one yet.
2701 * Commands in the .vimrc might have loaded a file or split the window.
2702 * Watch out for autocommands that delete a window.
2703 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002704 /*
2705 * Don't execute Win/Buf Enter/Leave autocommands here
2706 */
2707 ++autocmd_no_enter;
2708 ++autocmd_no_leave;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002709 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002710 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002711 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002712 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002713 {
2714 if (parmp->window_layout == WIN_TABS)
2715 goto_tabpage(1);
2716 else
2717 curwin = firstwin;
2718 }
2719 else if (parmp->window_layout == WIN_TABS)
2720 {
2721 if (curtab->tp_next == NULL)
2722 break;
2723 goto_tabpage(0);
2724 }
2725 else
2726 {
2727 if (curwin->w_next == NULL)
2728 break;
2729 curwin = curwin->w_next;
2730 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002731 dorewind = FALSE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002732 curbuf = curwin->w_buffer;
2733 if (curbuf->b_ml.ml_mfp == NULL)
2734 {
2735#ifdef FEAT_FOLDING
2736 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2737 if (p_fdls >= 0)
2738 curwin->w_p_fdl = p_fdls;
2739#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002740#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002741 /* When getting the ATTENTION prompt here, use a dialog */
2742 swap_exists_action = SEA_DIALOG;
2743#endif
2744 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002745
2746 /* create memfile, read file */
2747 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002748
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002749#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002750 if (swap_exists_action == SEA_QUIT)
2751 {
2752 if (got_int || only_one_window())
2753 {
2754 /* abort selected or quit and only one window */
2755 did_emsg = FALSE; /* avoid hit-enter prompt */
2756 getout(1);
2757 }
2758 /* We can't close the window, it would disturb what
2759 * happens next. Clear the file name and set the arg
2760 * index to -1 to delete it later. */
2761 setfname(curbuf, NULL, NULL, FALSE);
2762 curwin->w_arg_idx = -1;
2763 swap_exists_action = SEA_NONE;
2764 }
2765 else
2766 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002767#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00002768 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002769 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002770 ui_breakcheck();
2771 if (got_int)
2772 {
2773 (void)vgetc(); /* only break the file loading, not the rest */
2774 break;
2775 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002776 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002777 if (parmp->window_layout == WIN_TABS)
2778 goto_tabpage(1);
2779 else
2780 curwin = firstwin;
2781 curbuf = curwin->w_buffer;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002782 --autocmd_no_enter;
2783 --autocmd_no_leave;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002784 }
2785}
2786
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002787 /*
2788 * If opened more than one window, start editing files in the other
2789 * windows. make_windows() has already opened the windows.
2790 */
2791 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002792edit_buffers(
2793 mparm_T *parmp,
2794 char_u *cwd) /* current working dir */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002795{
2796 int arg_idx; /* index in argument list */
2797 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002798 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002799 win_T *win;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002800
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002801 /*
2802 * Don't execute Win/Buf Enter/Leave autocommands here
2803 */
2804 ++autocmd_no_enter;
2805 ++autocmd_no_leave;
Bram Moolenaar84212822006-11-07 21:59:47 +00002806
2807 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2808 if (curwin->w_arg_idx == -1)
2809 {
2810 win_close(curwin, TRUE);
2811 advance = FALSE;
2812 }
2813
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002814 arg_idx = 1;
2815 for (i = 1; i < parmp->window_count; ++i)
2816 {
Bram Moolenaard87c36e2015-04-03 14:56:49 +02002817 if (cwd != NULL)
2818 mch_chdir((char *)cwd);
Bram Moolenaar84212822006-11-07 21:59:47 +00002819 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2820 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002821 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002822 ++arg_idx;
2823 win_close(curwin, TRUE);
2824 advance = FALSE;
2825 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002826 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002827
Bram Moolenaar84212822006-11-07 21:59:47 +00002828 if (advance)
2829 {
2830 if (parmp->window_layout == WIN_TABS)
2831 {
2832 if (curtab->tp_next == NULL) /* just checking */
2833 break;
2834 goto_tabpage(0);
2835 }
2836 else
2837 {
2838 if (curwin->w_next == NULL) /* just checking */
2839 break;
2840 win_enter(curwin->w_next, FALSE);
2841 }
2842 }
2843 advance = TRUE;
2844
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002845 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002846 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002847 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2848 {
2849 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002850 /* Edit file from arg list, if there is one. When "Quit" selected
2851 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002852# ifdef HAS_SWAP_EXISTS_ACTION
2853 swap_exists_did_quit = FALSE;
2854# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002855 (void)do_ecmd(0, arg_idx < GARGCOUNT
2856 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002857 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002858# ifdef HAS_SWAP_EXISTS_ACTION
2859 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002860 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002861 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002862 if (got_int || only_one_window())
2863 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002864 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002865 did_emsg = FALSE; /* avoid hit-enter prompt */
2866 getout(1);
2867 }
2868 win_close(curwin, TRUE);
2869 advance = FALSE;
2870 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002871# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002872 if (arg_idx == GARGCOUNT - 1)
2873 arg_had_last = TRUE;
2874 ++arg_idx;
2875 }
2876 ui_breakcheck();
2877 if (got_int)
2878 {
2879 (void)vgetc(); /* only break the file loading, not the rest */
2880 break;
2881 }
2882 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002883
2884 if (parmp->window_layout == WIN_TABS)
2885 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002886 --autocmd_no_enter;
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002887
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002888 /* make the first window the current window */
2889 win = firstwin;
Bram Moolenaar4033c552017-09-16 20:54:51 +02002890#if defined(FEAT_QUICKFIX)
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002891 /* Avoid making a preview window the current window. */
2892 while (win->w_p_pvw)
2893 {
2894 win = win->w_next;
2895 if (win == NULL)
2896 {
2897 win = firstwin;
2898 break;
2899 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002900 }
2901#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002902 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002903
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002904 --autocmd_no_leave;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002905 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002906 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002907 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2908}
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002909
2910/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002911 * Execute the commands from --cmd arguments "cmds[cnt]".
2912 */
2913 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002914exe_pre_commands(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002915{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002916 char_u **cmds = parmp->pre_commands;
2917 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002918 int i;
2919
2920 if (cnt > 0)
2921 {
2922 curwin->w_cursor.lnum = 0; /* just in case.. */
2923 sourcing_name = (char_u *)_("pre-vimrc command line");
2924# ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002925 current_sctx.sc_sid = SID_CMDARG;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002926# endif
2927 for (i = 0; i < cnt; ++i)
2928 do_cmdline_cmd(cmds[i]);
2929 sourcing_name = NULL;
2930# ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002931 current_sctx.sc_sid = 0;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002932# endif
2933 TIME_MSG("--cmd commands");
2934 }
2935}
2936
2937/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002938 * Execute "+", "-c" and "-S" arguments.
2939 */
2940 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002941exe_commands(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002942{
2943 int i;
2944
2945 /*
2946 * We start commands on line 0, make "vim +/pat file" match a
2947 * pattern on line 1. But don't move the cursor when an autocommand
2948 * with g`" was used.
2949 */
2950 msg_scroll = TRUE;
2951 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2952 curwin->w_cursor.lnum = 0;
2953 sourcing_name = (char_u *)"command line";
2954#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002955 current_sctx.sc_sid = SID_CARG;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01002956 current_sctx.sc_seq = 0;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002957#endif
2958 for (i = 0; i < parmp->n_commands; ++i)
2959 {
2960 do_cmdline_cmd(parmp->commands[i]);
2961 if (parmp->cmds_tofree[i])
2962 vim_free(parmp->commands[i]);
2963 }
2964 sourcing_name = NULL;
2965#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002966 current_sctx.sc_sid = 0;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002967#endif
2968 if (curwin->w_cursor.lnum == 0)
2969 curwin->w_cursor.lnum = 1;
2970
2971 if (!exmode_active)
2972 msg_scroll = FALSE;
2973
2974#ifdef FEAT_QUICKFIX
2975 /* When started with "-q errorfile" jump to first error again. */
2976 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002977 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002978#endif
2979 TIME_MSG("executing command arguments");
2980}
2981
2982/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002983 * Source startup scripts.
2984 */
2985 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002986source_startup_scripts(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002987{
2988 int i;
2989
2990 /*
2991 * For "evim" source evim.vim first of all, so that the user can overrule
2992 * any things he doesn't like.
2993 */
2994 if (parmp->evim_mode)
2995 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002996 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002997 TIME_MSG("source evim file");
2998 }
2999
3000 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003001 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00003002 * nothing else.
3003 */
3004 if (parmp->use_vimrc != NULL)
3005 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003006 if (STRCMP(parmp->use_vimrc, "DEFAULTS") == 0)
3007 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
3008 else if (STRCMP(parmp->use_vimrc, "NONE") == 0
Bram Moolenaar231334e2005-07-25 20:46:57 +00003009 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00003010 {
3011#ifdef FEAT_GUI
3012 if (use_gvimrc == NULL) /* don't load gvimrc either */
3013 use_gvimrc = parmp->use_vimrc;
3014#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003015 }
3016 else
3017 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003018 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00003019 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
3020 }
3021 }
3022 else if (!silent_mode)
3023 {
3024#ifdef AMIGA
3025 struct Process *proc = (struct Process *)FindTask(0L);
3026 APTR save_winptr = proc->pr_WindowPtr;
3027
3028 /* Avoid a requester here for a volume that doesn't exist. */
3029 proc->pr_WindowPtr = (APTR)-1L;
3030#endif
3031
3032 /*
3033 * Get system wide defaults, if the file name is defined.
3034 */
3035#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003036 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003037#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00003038#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003039 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00003040#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003041
3042 /*
3043 * Try to read initialization commands from the following places:
3044 * - environment variable VIMINIT
3045 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
3046 * - second user vimrc file ($VIM/.vimrc for Dos)
3047 * - environment variable EXINIT
3048 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
3049 * - second user exrc file ($VIM/.exrc for Dos)
3050 * The first that exists is used, the rest is ignored.
3051 */
3052 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
3053 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003054 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003055#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003056 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
3057 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003058#endif
3059#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003060 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
3061 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003062#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02003063#ifdef USR_VIMRC_FILE4
3064 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
3065 DOSO_VIMRC) == FAIL
3066#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003067 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003068 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003069#ifdef USR_EXRC_FILE2
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003070 && do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003071#endif
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02003072 && !has_dash_c_arg)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003073 {
3074 /* When no .vimrc file was found: source defaults.vim. */
3075 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003076 }
3077 }
3078
3079 /*
3080 * Read initialization commands from ".vimrc" or ".exrc" in current
3081 * directory. This is only done if the 'exrc' option is set.
3082 * Because of security reasons we disallow shell and write commands
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003083 * now, except for Unix if the file is owned by the user or 'secure'
Bram Moolenaar58d98232005-07-23 22:25:46 +00003084 * option has been reset in environment of global ".exrc" or ".vimrc".
3085 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3086 * SYS_VIMRC_FILE.
3087 */
3088 if (p_exrc)
3089 {
3090#if defined(UNIX) || defined(VMS)
3091 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3092 if (!file_owned(VIMRC_FILE))
3093#endif
3094 secure = p_secure;
3095
3096 i = FAIL;
3097 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3098 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3099#ifdef USR_VIMRC_FILE2
3100 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3101 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3102#endif
3103#ifdef USR_VIMRC_FILE3
3104 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3105 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3106#endif
3107#ifdef SYS_VIMRC_FILE
3108 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3109 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3110#endif
3111 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003112 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003113
3114 if (i == FAIL)
3115 {
3116#if defined(UNIX) || defined(VMS)
3117 /* if ".exrc" is not owned by user set 'secure' mode */
3118 if (!file_owned(EXRC_FILE))
3119 secure = p_secure;
3120 else
3121 secure = 0;
3122#endif
3123 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3124 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3125#ifdef USR_EXRC_FILE2
3126 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3127 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3128#endif
3129 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003130 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003131 }
3132 }
3133 if (secure == 2)
3134 need_wait_return = TRUE;
3135 secure = 0;
3136#ifdef AMIGA
3137 proc->pr_WindowPtr = save_winptr;
3138#endif
3139 }
3140 TIME_MSG("sourcing vimrc file(s)");
3141}
3142
3143/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003144 * Setup to start using the GUI. Exit with an error when not available.
3145 */
3146 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003147main_start_gui(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003148{
3149#ifdef FEAT_GUI
3150 gui.starting = TRUE; /* start GUI a bit later */
3151#else
3152 mch_errmsg(_(e_nogvim));
3153 mch_errmsg("\n");
3154 mch_exit(2);
3155#endif
3156}
3157
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003158#endif /* NO_VIM_MAIN */
3159
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003160/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003161 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003162 * Returns FAIL if the environment variable was not executed, OK otherwise.
3163 */
3164 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003165process_env(
3166 char_u *env,
3167 int is_viminit) /* when TRUE, called for VIMINIT */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003168{
3169 char_u *initstr;
3170 char_u *save_sourcing_name;
3171 linenr_T save_sourcing_lnum;
3172#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003173 sctx_T save_current_sctx;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003174#endif
3175
3176 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3177 {
3178 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003179 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003180 save_sourcing_name = sourcing_name;
3181 save_sourcing_lnum = sourcing_lnum;
3182 sourcing_name = env;
3183 sourcing_lnum = 0;
3184#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003185 save_current_sctx = current_sctx;
3186 current_sctx.sc_sid = SID_ENV;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01003187 current_sctx.sc_seq = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003188 current_sctx.sc_lnum = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003189#endif
3190 do_cmdline_cmd(initstr);
3191 sourcing_name = save_sourcing_name;
3192 sourcing_lnum = save_sourcing_lnum;
3193#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003194 current_sctx = save_current_sctx;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003195#endif
3196 return OK;
3197 }
3198 return FAIL;
3199}
3200
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003201#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003202/*
3203 * Return TRUE if we are certain the user owns the file "fname".
3204 * Used for ".vimrc" and ".exrc".
3205 * Use both stat() and lstat() for extra security.
3206 */
3207 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003208file_owned(char *fname)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003209{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003210 stat_T s;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003211# ifdef UNIX
3212 uid_t uid = getuid();
3213# else /* VMS */
3214 uid_t uid = ((getgid() << 16) | getuid());
3215# endif
3216
3217 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3218# ifdef HAVE_LSTAT
3219 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3220# endif
3221 );
3222}
3223#endif
3224
3225/*
3226 * Give an error message main_errors["n"] and exit.
3227 */
3228 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003229mainerr(
3230 int n, /* one of the ME_ defines */
3231 char_u *str) /* extra argument or NULL */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003232{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003233#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003234 reset_signals(); /* kill us with CTRL-C here, if you like */
3235#endif
3236
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +02003237 init_longVersion();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003238 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003239 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003240 mch_errmsg(_(main_errors[n]));
3241 if (str != NULL)
3242 {
3243 mch_errmsg(": \"");
3244 mch_errmsg((char *)str);
3245 mch_errmsg("\"");
3246 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003247 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003248
3249 mch_exit(1);
3250}
3251
3252 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003253mainerr_arg_missing(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003254{
3255 mainerr(ME_ARG_MISSING, str);
3256}
3257
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003258#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003259/*
3260 * print a message with three spaces prepended and '\n' appended.
3261 */
3262 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003263main_msg(char *s)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003264{
3265 mch_msg(" ");
3266 mch_msg(s);
3267 mch_msg("\n");
3268}
3269
3270/*
3271 * Print messages for "vim -h" or "vim --help" and exit.
3272 */
3273 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003274usage(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003275{
3276 int i;
3277 static char *(use[]) =
3278 {
3279 N_("[file ..] edit specified file(s)"),
3280 N_("- read text from stdin"),
3281 N_("-t tag edit file where tag is defined"),
3282#ifdef FEAT_QUICKFIX
3283 N_("-q [errorfile] edit file with first error")
3284#endif
3285 };
3286
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003287#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003288 reset_signals(); /* kill us with CTRL-C here, if you like */
3289#endif
3290
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +02003291 init_longVersion();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003292 mch_msg(longVersion);
Bram Moolenaar32aaf5a2018-06-21 21:38:33 +02003293 mch_msg(_("\n\nUsage:"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003294 for (i = 0; ; ++i)
3295 {
3296 mch_msg(_(" vim [arguments] "));
3297 mch_msg(_(use[i]));
3298 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3299 break;
3300 mch_msg(_("\n or:"));
3301 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003302#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003303 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003304#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003305
3306 mch_msg(_("\n\nArguments:\n"));
3307 main_msg(_("--\t\t\tOnly file names after this"));
Bram Moolenaar53076832015-12-31 19:53:21 +01003308#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003309 main_msg(_("--literal\t\tDon't expand wildcards"));
3310#endif
3311#ifdef FEAT_OLE
3312 main_msg(_("-register\t\tRegister this gvim for OLE"));
3313 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3314#endif
3315#ifdef FEAT_GUI
3316 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3317 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3318#endif
3319 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3320 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003321 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003322 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3323#ifdef FEAT_DIFF
3324 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3325#endif
3326 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3327 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3328 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3329 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3330 main_msg(_("-M\t\t\tModifications in text not allowed"));
3331 main_msg(_("-b\t\t\tBinary mode"));
3332#ifdef FEAT_LISP
3333 main_msg(_("-l\t\t\tLisp mode"));
3334#endif
3335 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3336 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003337 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3338#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003339 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003340#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003341 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3342 main_msg(_("-r\t\t\tList swap files and exit"));
3343 main_msg(_("-r (with file name)\tRecover crashed session"));
3344 main_msg(_("-L\t\t\tSame as -r"));
3345#ifdef AMIGA
3346 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3347 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3348#endif
3349#ifdef FEAT_ARABIC
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02003350 main_msg(_("-A\t\t\tStart in Arabic mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003351#endif
3352#ifdef FEAT_RIGHTLEFT
3353 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3354#endif
3355#ifdef FEAT_FKMAP
3356 main_msg(_("-F\t\t\tStart in Farsi mode"));
3357#endif
3358 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01003359 main_msg(_("--not-a-term\t\tSkip warning for input/output not being a terminal"));
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01003360 main_msg(_("--ttyfail\t\tExit if input or output is not a terminal"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003361 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3362#ifdef FEAT_GUI
3363 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3364#endif
3365 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003366 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003367 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3368 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3369 main_msg(_("+\t\t\tStart at end of file"));
3370 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003371 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003372 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3373 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3374 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3375 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3376 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3377#ifdef FEAT_CRYPT
3378 main_msg(_("-x\t\t\tEdit encrypted files"));
3379#endif
3380#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3381# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3382 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3383# endif
3384 main_msg(_("-X\t\t\tDo not connect to X server"));
3385#endif
3386#ifdef FEAT_CLIENTSERVER
3387 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3388 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3389 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3390 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003391 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003392 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3393 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3394 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3395 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3396#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003397#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003398 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003399#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003400#ifdef FEAT_VIMINFO
3401 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3402#endif
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003403 main_msg(_("--clean\t\t'nocompatible', Vim defaults, no plugins, no viminfo"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003404 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3405 main_msg(_("--version\t\tPrint version information and exit"));
3406
3407#ifdef FEAT_GUI_X11
3408# ifdef FEAT_GUI_MOTIF
3409 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3410# else
3411# ifdef FEAT_GUI_ATHENA
3412# ifdef FEAT_GUI_NEXTAW
3413 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3414# else
3415 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3416# endif
3417# endif
3418# endif
3419 main_msg(_("-display <display>\tRun vim on <display>"));
3420 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003421 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3422 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3423 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3424 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3425 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3426 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3427 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3428 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3429# ifdef FEAT_GUI_ATHENA
3430 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3431# endif
3432 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3433 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3434 main_msg(_("-xrm <resource>\tSet the specified resource"));
3435#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003436#ifdef FEAT_GUI_GTK
3437 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3438 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3439 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3440 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3441 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003442 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003443 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003444 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003445#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003446#ifdef FEAT_GUI_W32
3447 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003448 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003449#endif
3450
3451#ifdef FEAT_GUI_GNOME
3452 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3453 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003454 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003455 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003456 gui.dofork = FALSE;
3457 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003458 else
3459#endif
3460 mch_exit(0);
3461}
3462
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003463#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003464/*
3465 * Check the result of the ATTENTION dialog:
3466 * When "Quit" selected, exit Vim.
3467 * When "Recover" selected, recover the file.
3468 */
3469 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003470check_swap_exists_action(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003471{
3472 if (swap_exists_action == SEA_QUIT)
3473 getout(1);
3474 handle_swap_exists(NULL);
3475}
3476#endif
3477
Bram Moolenaar08cab962017-03-04 14:37:18 +01003478#endif /* NO_VIM_MAIN */
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003479
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003480#if defined(STARTUPTIME) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003481static struct timeval prev_timeval;
3482
Bram Moolenaar3f269672009-11-03 11:11:11 +00003483# ifdef WIN3264
3484/*
3485 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3486 */
3487 static int
3488gettimeofday(struct timeval *tv, char *dummy)
3489{
3490 long t = clock();
3491 tv->tv_sec = t / CLOCKS_PER_SEC;
3492 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3493 return 0;
3494}
3495# endif
3496
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003497/*
3498 * Save the previous time before doing something that could nest.
3499 * set "*tv_rel" to the time elapsed so far.
3500 */
3501 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003502time_push(void *tv_rel, void *tv_start)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003503{
3504 *((struct timeval *)tv_rel) = prev_timeval;
3505 gettimeofday(&prev_timeval, NULL);
3506 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3507 - ((struct timeval *)tv_rel)->tv_usec;
3508 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3509 - ((struct timeval *)tv_rel)->tv_sec;
3510 if (((struct timeval *)tv_rel)->tv_usec < 0)
3511 {
3512 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3513 --((struct timeval *)tv_rel)->tv_sec;
3514 }
3515 *(struct timeval *)tv_start = prev_timeval;
3516}
3517
3518/*
3519 * Compute the previous time after doing something that could nest.
3520 * Subtract "*tp" from prev_timeval;
3521 * Note: The arguments are (void *) to avoid trouble with systems that don't
3522 * have struct timeval.
3523 */
3524 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003525time_pop(
3526 void *tp) /* actually (struct timeval *) */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003527{
3528 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3529 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3530 if (prev_timeval.tv_usec < 0)
3531 {
3532 prev_timeval.tv_usec += 1000000;
3533 --prev_timeval.tv_sec;
3534 }
3535}
3536
3537 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003538time_diff(struct timeval *then, struct timeval *now)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003539{
3540 long usec;
3541 long msec;
3542
3543 usec = now->tv_usec - then->tv_usec;
3544 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3545 usec = usec % 1000L;
3546 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3547}
3548
3549 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003550time_msg(
3551 char *mesg,
3552 void *tv_start) /* only for do_source: start time; actually
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003553 (struct timeval *) */
3554{
3555 static struct timeval start;
3556 struct timeval now;
3557
3558 if (time_fd != NULL)
3559 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003560 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003561 {
3562 gettimeofday(&start, NULL);
3563 prev_timeval = start;
3564 fprintf(time_fd, "\n\ntimes in msec\n");
3565 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3566 fprintf(time_fd, " clock elapsed: other lines\n\n");
3567 }
3568 gettimeofday(&now, NULL);
3569 time_diff(&start, &now);
3570 if (((struct timeval *)tv_start) != NULL)
3571 {
3572 fprintf(time_fd, " ");
3573 time_diff(((struct timeval *)tv_start), &now);
3574 }
3575 fprintf(time_fd, " ");
3576 time_diff(&prev_timeval, &now);
3577 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003578 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003579 }
3580}
3581
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003582#endif
3583
Bram Moolenaar595297d2017-03-04 19:11:12 +01003584#if !defined(NO_VIM_MAIN) && defined(FEAT_EVAL)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003585 static void
3586set_progpath(char_u *argv0)
3587{
3588 char_u *val = argv0;
Bram Moolenaar08cab962017-03-04 14:37:18 +01003589
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003590# if defined(WIN32)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003591 /* A relative path containing a "/" will become invalid when using ":cd",
3592 * turn it into a full path.
Bram Moolenaar066029e2017-03-05 15:19:32 +01003593 * On MS-Windows "vim" should be expanded to "vim.exe", thus always do
3594 * this. */
Bram Moolenaar066029e2017-03-05 15:19:32 +01003595 char_u *path = NULL;
3596
3597 if (mch_can_exe(argv0, &path, FALSE) && path != NULL)
3598 val = path;
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003599# else
3600 char_u buf[MAXPATHL + 1];
3601# ifdef PROC_EXE_LINK
3602 char linkbuf[MAXPATHL + 1];
3603 ssize_t len;
Bram Moolenaar066029e2017-03-05 15:19:32 +01003604
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003605 len = readlink(PROC_EXE_LINK, linkbuf, MAXPATHL);
3606 if (len > 0)
Bram Moolenaar43663192017-03-05 14:29:12 +01003607 {
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003608 linkbuf[len] = NUL;
3609 val = (char_u *)linkbuf;
Bram Moolenaar43663192017-03-05 14:29:12 +01003610 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003611# endif
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003612
3613 if (!mch_isFullName(val))
3614 {
3615 if (gettail(val) != val
3616 && vim_FullName(val, buf, MAXPATHL, TRUE) != FAIL)
3617 val = buf;
3618 }
Bram Moolenaar066029e2017-03-05 15:19:32 +01003619# endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003620
Bram Moolenaar08cab962017-03-04 14:37:18 +01003621 set_vim_var_string(VV_PROGPATH, val, -1);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003622
Bram Moolenaar066029e2017-03-05 15:19:32 +01003623# ifdef WIN32
Bram Moolenaar43663192017-03-05 14:29:12 +01003624 vim_free(path);
Bram Moolenaar066029e2017-03-05 15:19:32 +01003625# endif
Bram Moolenaar08cab962017-03-04 14:37:18 +01003626}
3627
3628#endif /* NO_VIM_MAIN */
3629
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003630#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003631
3632/*
3633 * Common code for the X command server and the Win32 command server.
3634 */
3635
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003636static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003637
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003638/*
3639 * Do the client-server stuff, unless "--servername ''" was used.
3640 */
3641 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003642exec_on_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003643{
3644 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3645 {
3646# ifdef WIN32
3647 /* Initialise the client/server messaging infrastructure. */
3648 serverInitMessaging();
3649# endif
3650
3651 /*
3652 * When a command server argument was found, execute it. This may
3653 * exit Vim when it was successful. Otherwise it's executed further
3654 * on. Remember the encoding used here in "serverStrEnc".
3655 */
3656 if (parmp->serverArg)
3657 {
3658 cmdsrv_main(&parmp->argc, parmp->argv,
3659 parmp->serverName_arg, &parmp->serverStr);
3660# ifdef FEAT_MBYTE
3661 parmp->serverStrEnc = vim_strsave(p_enc);
3662# endif
3663 }
3664
3665 /* If we're still running, get the name to register ourselves.
3666 * On Win32 can register right now, for X11 need to setup the
3667 * clipboard first, it's further down. */
3668 parmp->servername = serverMakeName(parmp->serverName_arg,
3669 parmp->argv[0]);
3670# ifdef WIN32
3671 if (parmp->servername != NULL)
3672 {
3673 serverSetName(parmp->servername);
3674 vim_free(parmp->servername);
3675 }
3676# endif
3677 }
3678}
3679
3680/*
3681 * Prepare for running as a Vim server.
3682 */
3683 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003684prepare_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003685{
3686# if defined(FEAT_X11)
3687 /*
3688 * Register for remote command execution with :serversend and --remote
3689 * unless there was a -X or a --servername '' on the command line.
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003690 * Only register nongui-vim's with an explicit --servername argument,
3691 * or when compiling with autoservername.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003692 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003693 */
3694 if (X_DISPLAY != NULL && parmp->servername != NULL && (
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003695# if defined(FEAT_AUTOSERVERNAME) || defined(FEAT_GUI)
3696 (
3697# if defined(FEAT_AUTOSERVERNAME)
3698 1
3699# else
3700 gui.in_use
3701# endif
Bram Moolenaar5f402312006-08-15 19:40:35 +00003702# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003703 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003704# endif
3705 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003706# endif
3707 parmp->serverName_arg != NULL))
3708 {
3709 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3710 vim_free(parmp->servername);
3711 TIME_MSG("register server name");
3712 }
3713 else
3714 serverDelayedStartName = parmp->servername;
3715# endif
3716
3717 /*
3718 * Execute command ourselves if we're here because the send failed (or
3719 * else we would have exited above).
3720 */
3721 if (parmp->serverStr != NULL)
3722 {
3723 char_u *p;
3724
3725 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3726 parmp->serverStr, &p));
3727 vim_free(p);
3728 }
3729}
3730
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003731 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003732cmdsrv_main(
3733 int *argc,
3734 char **argv,
3735 char_u *serverName_arg,
3736 char_u **serverStr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003737{
3738 char_u *res;
3739 int i;
3740 char_u *sname;
3741 int ret;
3742 int didone = FALSE;
3743 int exiterr = 0;
3744 char **newArgV = argv + 1;
3745 int newArgC = 1,
3746 Argc = *argc;
3747 int argtype;
3748#define ARGTYPE_OTHER 0
3749#define ARGTYPE_EDIT 1
3750#define ARGTYPE_EDIT_WAIT 2
3751#define ARGTYPE_SEND 3
3752 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003753 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003754# ifndef FEAT_X11
3755 HWND srv;
3756# else
3757 Window srv;
3758
3759 setup_term_clip();
3760# endif
3761
3762 sname = serverMakeName(serverName_arg, argv[0]);
3763 if (sname == NULL)
3764 return;
3765
3766 /*
3767 * Execute the command server related arguments and remove them
3768 * from the argc/argv array; We may have to return into main()
3769 */
3770 for (i = 1; i < Argc; i++)
3771 {
3772 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003773 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003774 {
3775 for (; i < *argc; i++)
3776 {
3777 *newArgV++ = argv[i];
3778 newArgC++;
3779 }
3780 break;
3781 }
3782
Bram Moolenaareb94e552006-03-11 21:35:11 +00003783 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003784 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003785 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3786 {
3787 char *p = argv[i] + 8;
3788
3789 argtype = ARGTYPE_EDIT;
3790 while (*p != NUL)
3791 {
3792 if (STRNICMP(p, "-wait", 5) == 0)
3793 {
3794 argtype = ARGTYPE_EDIT_WAIT;
3795 p += 5;
3796 }
3797 else if (STRNICMP(p, "-silent", 7) == 0)
3798 {
3799 silent = TRUE;
3800 p += 7;
3801 }
3802 else if (STRNICMP(p, "-tab", 4) == 0)
3803 {
3804 tabs = TRUE;
3805 p += 4;
3806 }
3807 else
3808 {
3809 argtype = ARGTYPE_OTHER;
3810 break;
3811 }
3812 }
3813 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003814 else
3815 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003816
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003817 if (argtype != ARGTYPE_OTHER)
3818 {
3819 if (i == *argc - 1)
3820 mainerr_arg_missing((char_u *)argv[i]);
3821 if (argtype == ARGTYPE_SEND)
3822 {
3823 *serverStr = (char_u *)argv[i + 1];
3824 i++;
3825 }
3826 else
3827 {
3828 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003829 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003830 if (*serverStr == NULL)
3831 {
3832 /* Probably out of memory, exit. */
3833 didone = TRUE;
3834 exiterr = 1;
3835 break;
3836 }
3837 Argc = i;
3838 }
3839# ifdef FEAT_X11
3840 if (xterm_dpy == NULL)
3841 {
3842 mch_errmsg(_("No display"));
3843 ret = -1;
3844 }
3845 else
3846 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003847 NULL, &srv, 0, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003848# else
3849 /* Win32 always works? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003850 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003851# endif
3852 if (ret < 0)
3853 {
3854 if (argtype == ARGTYPE_SEND)
3855 {
3856 /* Failed to send, abort. */
3857 mch_errmsg(_(": Send failed.\n"));
3858 didone = TRUE;
3859 exiterr = 1;
3860 }
3861 else if (!silent)
3862 /* Let vim start normally. */
3863 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3864 break;
3865 }
3866
3867# ifdef FEAT_GUI_W32
3868 /* Guess that when the server name starts with "g" it's a GUI
3869 * server, which we can bring to the foreground here.
3870 * Foreground() in the server doesn't work very well. */
3871 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3872 SetForegroundWindow(srv);
3873# endif
3874
3875 /*
3876 * For --remote-wait: Wait until the server did edit each
3877 * file. Also detect that the server no longer runs.
3878 */
3879 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3880 {
3881 int numFiles = *argc - i - 1;
3882 int j;
3883 char_u *done = alloc(numFiles);
3884 char_u *p;
3885# ifdef FEAT_GUI_W32
3886 NOTIFYICONDATA ni;
3887 int count = 0;
3888 extern HWND message_window;
3889# endif
3890
3891 if (numFiles > 0 && argv[i + 1][0] == '+')
3892 /* Skip "+cmd" argument, don't wait for it to be edited. */
3893 --numFiles;
3894
3895# ifdef FEAT_GUI_W32
3896 ni.cbSize = sizeof(ni);
3897 ni.hWnd = message_window;
3898 ni.uID = 0;
3899 ni.uFlags = NIF_ICON|NIF_TIP;
3900 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3901 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3902 Shell_NotifyIcon(NIM_ADD, &ni);
3903# endif
3904
3905 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003906 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003907 while (memchr(done, 0, numFiles) != NULL)
3908 {
3909# ifdef WIN32
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003910 p = serverGetReply(srv, NULL, TRUE, TRUE, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003911 if (p == NULL)
3912 break;
3913# else
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003914 if (serverReadReply(xterm_dpy, srv, &p, TRUE, -1) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003915 break;
3916# endif
3917 j = atoi((char *)p);
3918 if (j >= 0 && j < numFiles)
3919 {
3920# ifdef FEAT_GUI_W32
3921 ++count;
3922 sprintf(ni.szTip, _("%d of %d edited"),
3923 count, numFiles);
3924 Shell_NotifyIcon(NIM_MODIFY, &ni);
3925# endif
3926 done[j] = 1;
3927 }
3928 }
3929# ifdef FEAT_GUI_W32
3930 Shell_NotifyIcon(NIM_DELETE, &ni);
3931# endif
3932 }
3933 }
3934 else if (STRICMP(argv[i], "--remote-expr") == 0)
3935 {
3936 if (i == *argc - 1)
3937 mainerr_arg_missing((char_u *)argv[i]);
3938# ifdef WIN32
3939 /* Win32 always works? */
3940 if (serverSendToVim(sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003941 &res, NULL, 1, 0, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003942# else
3943 if (xterm_dpy == NULL)
3944 mch_errmsg(_("No display: Send expression failed.\n"));
3945 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003946 &res, NULL, 1, 0, 1, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003947# endif
3948 {
3949 if (res != NULL && *res != NUL)
3950 {
3951 /* Output error from remote */
3952 mch_errmsg((char *)res);
Bram Moolenaard23a8232018-02-10 18:45:26 +01003953 VIM_CLEAR(res);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003954 }
3955 mch_errmsg(_(": Send expression failed.\n"));
3956 }
3957 }
3958 else if (STRICMP(argv[i], "--serverlist") == 0)
3959 {
3960# ifdef WIN32
3961 /* Win32 always works? */
3962 res = serverGetVimNames();
3963# else
3964 if (xterm_dpy != NULL)
3965 res = serverGetVimNames(xterm_dpy);
3966# endif
3967 if (called_emsg)
3968 mch_errmsg("\n");
3969 }
3970 else if (STRICMP(argv[i], "--servername") == 0)
3971 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003972 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003973 i++;
3974 continue;
3975 }
3976 else
3977 {
3978 *newArgV++ = argv[i];
3979 newArgC++;
3980 continue;
3981 }
3982 didone = TRUE;
3983 if (res != NULL && *res != NUL)
3984 {
3985 mch_msg((char *)res);
3986 if (res[STRLEN(res) - 1] != '\n')
3987 mch_msg("\n");
3988 }
3989 vim_free(res);
3990 }
3991
3992 if (didone)
3993 {
3994 display_errors(); /* display any collected messages */
3995 exit(exiterr); /* Mission accomplished - get out */
3996 }
3997
3998 /* Return back into main() */
3999 *argc = newArgC;
4000 vim_free(sname);
4001}
4002
4003/*
4004 * Build a ":drop" command to send to a Vim server.
4005 */
4006 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004007build_drop_cmd(
4008 int filec,
4009 char **filev,
4010 int tabs, /* Use ":tab drop" instead of ":drop". */
4011 int sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004012{
4013 garray_T ga;
4014 int i;
4015 char_u *inicmd = NULL;
4016 char_u *p;
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004017 char_u *cdp;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004018 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004019
4020 if (filec > 0 && filev[0][0] == '+')
4021 {
4022 inicmd = (char_u *)filev[0] + 1;
4023 filev++;
4024 filec--;
4025 }
4026 /* Check if we have at least one argument. */
4027 if (filec <= 0)
4028 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004029
4030 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02004031 cwd = alloc(MAXPATHL);
4032 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004033 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004034 if (mch_dirname(cwd, MAXPATHL) != OK)
4035 {
4036 vim_free(cwd);
4037 return NULL;
4038 }
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004039 cdp = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00004040#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004041 (char_u *)"", /* rem_backslash() will tell what chars to escape */
Bram Moolenaar02b06312007-09-06 15:39:22 +00004042#else
4043 PATH_ESC_CHARS,
4044#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02004045 '\\', TRUE);
4046 vim_free(cwd);
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004047 if (cdp == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004048 return NULL;
4049 ga_init2(&ga, 1, 100);
4050 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004051 ga_concat(&ga, cdp);
Bram Moolenaareb94e552006-03-11 21:35:11 +00004052
4053 /* Call inputsave() so that a prompt for an encryption key works. */
4054 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
4055 if (tabs)
4056 ga_concat(&ga, (char_u *)"tab ");
4057 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004058 for (i = 0; i < filec; i++)
4059 {
4060 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004061 * do it again in the Vim server. On MS-Windows only escape
4062 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004063 p = vim_strsave_escaped((char_u *)filev[i],
4064#ifdef UNIX
4065 PATH_ESC_CHARS
4066#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004067 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004068#endif
4069 );
4070 if (p == NULL)
4071 {
4072 vim_free(ga.ga_data);
4073 return NULL;
4074 }
4075 ga_concat(&ga, (char_u *)" ");
4076 ga_concat(&ga, p);
4077 vim_free(p);
4078 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004079 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
4080
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004081 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
4082 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004083 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
4084
4085 /* Switch back to the correct current directory (prior to temporary path
4086 * switch) unless 'autochdir' is set, in which case it will already be
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004087 * correct after the :drop command. With line breaks and spaces:
4088 * if !exists('+acd') || !&acd
4089 * if haslocaldir()
4090 * cd -
4091 * lcd -
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004092 * elseif getcwd() ==# 'current path'
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004093 * cd -
4094 * endif
4095 * endif
4096 */
4097 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|");
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004098 ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004099 ga_concat(&ga, cdp);
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004100 ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004101 vim_free(cdp);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004102
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004103 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004104 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
4105 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004106 if (inicmd != NULL)
4107 {
4108 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
4109 * the following commands to be inserted as text. Use a "|",
4110 * hopefully "inicmd" does allow this... */
4111 ga_concat(&ga, inicmd);
4112 ga_concat(&ga, (char_u *)"|");
4113 }
4114 /* Bring the window to the foreground, goto Insert mode when 'im' set and
4115 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00004116 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004117 ga_append(&ga, NUL);
4118 return ga.ga_data;
4119}
4120
4121/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004122 * Make our basic server name: use the specified "arg" if given, otherwise use
4123 * the tail of the command "cmd" we were started with.
4124 * Return the name in allocated memory. This doesn't include a serial number.
4125 */
4126 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004127serverMakeName(char_u *arg, char *cmd)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004128{
4129 char_u *p;
4130
4131 if (arg != NULL && *arg != NUL)
4132 p = vim_strsave_up(arg);
4133 else
4134 {
4135 p = vim_strsave_up(gettail((char_u *)cmd));
4136 /* Remove .exe or .bat from the name. */
4137 if (p != NULL && vim_strchr(p, '.') != NULL)
4138 *vim_strchr(p, '.') = NUL;
4139 }
4140 return p;
4141}
4142#endif /* FEAT_CLIENTSERVER */
4143
4144#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4145/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004146 * Replace termcodes such as <CR> and insert as key presses if there is room.
4147 */
4148 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004149server_to_input_buf(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004150{
4151 char_u *ptr = NULL;
4152 char_u *cpo_save = p_cpo;
4153
4154 /* Set 'cpoptions' the way we want it.
4155 * B set - backslashes are *not* treated specially
4156 * k set - keycodes are *not* reverse-engineered
4157 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004158 * The last but one parameter of replace_termcodes() is TRUE so that the
4159 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004160 */
4161 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004162 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004163 p_cpo = cpo_save;
4164
4165 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4166 {
4167 /*
4168 * Add the string to the input stream.
4169 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4170 *
4171 * First clear typed characters from the typeahead buffer, there could
4172 * be half a mapping there. Then append to the existing string, so
4173 * that multiple commands from a client are concatenated.
4174 */
4175 if (typebuf.tb_maplen < typebuf.tb_len)
4176 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4177 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4178
4179 /* Let input_available() know we inserted text in the typeahead
4180 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004181 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004182 }
4183 vim_free((char_u *)ptr);
4184}
4185
4186/*
4187 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004188 */
4189 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004190eval_client_expr_to_string(char_u *expr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004191{
4192 char_u *res;
4193 int save_dbl = debug_break_level;
4194 int save_ro = redir_off;
Bram Moolenaar27e80c82018-10-14 21:41:01 +02004195 funccal_entry_T funccal_entry;
4196 int did_save_funccal = FALSE;
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004197
4198 /* Evaluate the expression at the toplevel, don't use variables local to
Bram Moolenaard99388b2017-10-26 14:28:32 +02004199 * the calling function. Except when in debug mode. */
4200 if (!debug_mode)
Bram Moolenaar27e80c82018-10-14 21:41:01 +02004201 {
4202 save_funccal(&funccal_entry);
4203 did_save_funccal = TRUE;
4204 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004205
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004206 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4207 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004208 debug_break_level = -1;
4209 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004210 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4211 * to be typed. Do generate errors so that try/catch works. */
4212 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004213
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004214 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004215
4216 debug_break_level = save_dbl;
4217 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004218 --emsg_silent;
4219 if (emsg_silent < 0)
4220 emsg_silent = 0;
Bram Moolenaar27e80c82018-10-14 21:41:01 +02004221 if (did_save_funccal)
4222 restore_funccal();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004223
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004224 /* A client can tell us to redraw, but not to display the cursor, so do
4225 * that here. */
4226 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01004227 out_flush_cursor(FALSE, FALSE);
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004228
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004229 return res;
4230}
4231
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004232/*
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004233 * Evaluate a command or expression sent to ourselves.
4234 */
4235 int
4236sendToLocalVim(char_u *cmd, int asExpr, char_u **result)
4237{
4238 if (asExpr)
4239 {
4240 char_u *ret;
4241
4242 ret = eval_client_expr_to_string(cmd);
4243 if (result != NULL)
4244 {
4245 if (ret == NULL)
4246 {
4247 char *err = _(e_invexprmsg);
4248 size_t len = STRLEN(cmd) + STRLEN(err) + 5;
4249 char_u *msg;
4250
Bram Moolenaar1662ce12017-03-19 21:47:50 +01004251 msg = alloc((unsigned)len);
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004252 if (msg != NULL)
4253 vim_snprintf((char *)msg, len, "%s: \"%s\"", err, cmd);
4254 *result = msg;
4255 }
4256 else
4257 *result = ret;
4258 }
4259 else
4260 vim_free(ret);
4261 return ret == NULL ? -1 : 0;
4262 }
4263 server_to_input_buf(cmd);
4264 return 0;
4265}
4266
4267/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004268 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4269 * return an allocated string. Otherwise return "data".
4270 * "*tofree" is set to the result when it needs to be freed later.
4271 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004272 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004273serverConvert(
4274 char_u *client_enc UNUSED,
4275 char_u *data,
4276 char_u **tofree)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004277{
4278 char_u *res = data;
4279
4280 *tofree = NULL;
4281# ifdef FEAT_MBYTE
4282 if (client_enc != NULL && p_enc != NULL)
4283 {
4284 vimconv_T vimconv;
4285
4286 vimconv.vc_type = CONV_NONE;
4287 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4288 && vimconv.vc_type != CONV_NONE)
4289 {
4290 res = string_convert(&vimconv, data, NULL);
4291 if (res == NULL)
4292 res = data;
4293 else
4294 *tofree = res;
4295 }
4296 convert_setup(&vimconv, NULL, NULL);
4297 }
4298# endif
4299 return res;
4300}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004301#endif