blob: 0f26e984aa4423f4387eba4ca70f5fa6608b8fb2 [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__
Bram Moolenaar4f974752019-02-17 17:44:42 +010014# ifndef MSWIN
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 Moolenaar4f974752019-02-17 17:44:42 +010022#if defined(MSWIN) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar97ff9b92016-06-26 20:37:46 +020023# 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
Bram Moolenaar796cc422019-04-03 20:31:00 +020099# ifdef MSWIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000100# ifdef __BORLANDC__
101_cdecl
102# endif
103VimMain
104# else
105main
106# endif
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100107(int argc, char **argv)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000108{
Bram Moolenaar77780b62018-03-01 23:10:45 +0100109#if defined(STARTUPTIME) || defined(CLEAN_RUNTIMEPATH)
Bram Moolenaar3f269672009-11-03 11:11:11 +0000110 int i;
111#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000112
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000113 /*
114 * Do any system-specific initialisations. These can NOT use IObuff or
115 * NameBuff. Thus emsg2() cannot be called!
116 */
117 mch_early_init();
118
Bram Moolenaar4f974752019-02-17 17:44:42 +0100119#ifdef MSWIN
Bram Moolenaar14993322014-09-09 12:25:33 +0200120 /*
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200121 * MinGW expands command line arguments, which confuses our code to
Bram Moolenaar14993322014-09-09 12:25:33 +0200122 * convert when 'encoding' changes. Get the unexpanded arguments.
123 */
124 argc = get_cmd_argsW(&argv);
125#endif
126
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000127 /* Many variables are in "params" so that we can pass them to invoked
128 * functions without a lot of arguments. "argc" and "argv" are also
129 * copied, so that they can be changed. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000130 vim_memset(&params, 0, sizeof(params));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000131 params.argc = argc;
132 params.argv = argv;
133 params.want_full_screen = TRUE;
134#ifdef FEAT_EVAL
135 params.use_debug_break_level = -1;
136#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000137 params.window_count = -1;
Bram Moolenaar58d98232005-07-23 22:25:46 +0000138
Bram Moolenaar99685e62013-05-11 13:56:18 +0200139#ifdef FEAT_RUBY
140 {
141 int ruby_stack_start;
142 vim_ruby_init((void *)&ruby_stack_start);
143 }
144#endif
145
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000146#ifdef FEAT_TCL
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000147 vim_tcl_init(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000148#endif
149
150#ifdef MEM_PROFILE
151 atexit(vim_mem_profile_dump);
152#endif
153
154#ifdef STARTUPTIME
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200155 /* Need to find "--startuptime" before actually parsing arguments. */
Bram Moolenaar07268702018-03-01 21:57:32 +0100156 for (i = 1; i < argc - 1; ++i)
157 if (STRICMP(argv[i], "--startuptime") == 0)
Bram Moolenaar3f269672009-11-03 11:11:11 +0000158 {
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000159 time_fd = mch_fopen(argv[i + 1], "a");
Bram Moolenaar3f269672009-11-03 11:11:11 +0000160 TIME_MSG("--- VIM STARTING ---");
161 break;
162 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000163#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +0000164 starttime = time(NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000165
Bram Moolenaar07268702018-03-01 21:57:32 +0100166#ifdef CLEAN_RUNTIMEPATH
167 /* Need to find "--clean" before actually parsing arguments. */
168 for (i = 1; i < argc; ++i)
169 if (STRICMP(argv[i], "--clean") == 0)
170 {
171 params.clean = TRUE;
172 break;
173 }
174#endif
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200175 common_init(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000176
177#ifdef FEAT_CLIENTSERVER
178 /*
179 * Do the client-server stuff, unless "--servername ''" was used.
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000180 * This may exit Vim if the command was sent to the server.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000181 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000182 exec_on_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000183#endif
184
185 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000186 * Figure out the way to work from the command name argv[0].
187 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000188 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000189 parse_command_name(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000190
191 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000192 * Process the command line arguments. File names are put in the global
193 * argument list "global_alist".
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000194 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000195 command_line_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000196 TIME_MSG("parsing arguments");
197
198 /*
199 * On some systems, when we compile with the GUI, we always use it. On Mac
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000200 * there is no terminal version, and on Windows we can't fork one off with
201 * :gui.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000202 */
203#ifdef ALWAYS_USE_GUI
204 gui.starting = TRUE;
205#else
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000206# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000207 /*
208 * Check if the GUI can be started. Reset gui.starting if not.
209 * Don't know about other systems, stay on the safe side and don't check.
210 */
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000211 if (gui.starting)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000212 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000213 if (gui_init_check() == FAIL)
214 {
215 gui.starting = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000216
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000217 /* When running "evim" or "gvim -y" we need the menus, exit if we
218 * don't have them. */
219 if (params.evim_mode)
220 mch_exit(1);
221 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000222 }
223# endif
224#endif
225
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000226 if (GARGCOUNT > 0)
227 {
Bram Moolenaar53076832015-12-31 19:53:21 +0100228#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000229 /*
230 * Expand wildcards in file names.
231 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000232 if (!params.literal)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000233 {
Bram Moolenaarf6303872015-04-03 17:59:43 +0200234 start_dir = alloc(MAXPATHL);
235 if (start_dir != NULL)
236 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000237 /* Temporarily add '(' and ')' to 'isfname'. These are valid
238 * filename characters but are excluded from 'isfname' to make
239 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
240 do_cmdline_cmd((char_u *)":set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +0000241 alist_expand(NULL, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000242 do_cmdline_cmd((char_u *)":set isf&");
Bram Moolenaarf6303872015-04-03 17:59:43 +0200243 if (start_dir != NULL)
244 mch_chdir((char *)start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000245 }
246#endif
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200247 params.fname = alist_name(&GARGLIST[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000248 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000249
Bram Moolenaar4f974752019-02-17 17:44:42 +0100250#ifdef MSWIN
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000251 {
252 extern void set_alist_count(void);
253
254 /* Remember the number of entries in the argument list. If it changes
255 * we don't react on setting 'encoding'. */
256 set_alist_count();
257 }
258#endif
259
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000260#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000261 if (GARGCOUNT == 1 && params.full_path)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000262 {
263 /*
264 * If there is one filename, fully qualified, we have very probably
265 * been invoked from explorer, so change to the file's directory.
266 * Hint: to avoid this when typing a command use a forward slash.
267 * If the cd fails, it doesn't matter.
268 */
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100269 (void)vim_chdirfile(params.fname, "drop");
Bram Moolenaarf6303872015-04-03 17:59:43 +0200270 if (start_dir != NULL)
271 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000272 }
273#endif
274 TIME_MSG("expanding arguments");
275
276#ifdef FEAT_DIFF
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000277 if (params.diff_mode && params.window_count == -1)
278 params.window_count = 0; /* open up to 3 windows */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000279#endif
280
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000281 /* Don't redraw until much later. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000282 ++RedrawingDisabled;
283
284 /*
285 * When listing swap file names, don't do cursor positioning et. al.
286 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200287 if (recoverymode && params.fname == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000288 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000289
290 /*
291 * When certain to start the GUI, don't check capabilities of terminal.
292 * For GTK we can't be sure, but when started from the desktop it doesn't
293 * make sense to try using a terminal.
294 */
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000295#if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000296 if (gui.starting
297# ifdef FEAT_GUI_GTK
298 && !isatty(2)
299# endif
300 )
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000301 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000302#endif
303
Bram Moolenaard0573012017-10-28 21:11:06 +0200304#if defined(FEAT_GUI_MAC) && defined(MACOS_X_DARWIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000305 /* When the GUI is started from Finder, need to display messages in a
306 * message box. isatty(2) returns TRUE anyway, thus we need to check the
307 * name to know we're not started from a terminal. */
308 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000309 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000310 params.want_full_screen = FALSE;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000311
312 /* Avoid always using "/" as the current directory. Note that when
313 * started from Finder the arglist will be filled later in
314 * HandleODocAE() and "fname" will be NULL. */
315 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
316 && STRCMP(NameBuff, "/") == 0)
317 {
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200318 if (params.fname != NULL)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100319 (void)vim_chdirfile(params.fname, "drop");
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000320 else
321 {
322 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
323 vim_chdir(NameBuff);
324 }
Bram Moolenaarf6303872015-04-03 17:59:43 +0200325 if (start_dir != NULL)
326 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000327 }
328 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000329#endif
330
331 /*
332 * mch_init() sets up the terminal (window) for use. This must be
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100333 * done after resetting full_screen, otherwise it may move the cursor.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000334 * Note that we may use mch_exit() before mch_init()!
335 */
336 mch_init();
337 TIME_MSG("shell init");
338
339#ifdef USE_XSMP
340 /*
341 * For want of anywhere else to do it, try to connect to xsmp here.
342 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
343 * Hijacking -X 'no X connection' to also disable XSMP connection as that
344 * has a similar delay upon failure.
345 * Only try if SESSION_MANAGER is set to something non-null.
346 */
347 if (!x_no_connect)
348 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000349 char *p = getenv("SESSION_MANAGER");
350
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000351 if (p != NULL && *p != NUL)
352 {
353 xsmp_init();
354 TIME_MSG("xsmp init");
355 }
356 }
357#endif
358
359 /*
360 * Print a warning if stdout is not a terminal.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000361 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000362 check_tty(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000363
Bram Moolenaar42b23fa2018-02-03 14:46:45 +0100364#ifdef _IOLBF
365 /* Ensure output works usefully without a tty: buffer lines instead of
366 * fully buffered. */
367 if (silent_mode)
368 setvbuf(stdout, NULL, _IOLBF, 0);
369#endif
370
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000371 /* This message comes before term inits, but after setting "silent_mode"
372 * when the input is not a tty. */
373 if (GARGCOUNT > 1 && !silent_mode)
374 printf(_("%d files to edit\n"), GARGCOUNT);
375
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000376 if (params.want_full_screen && !silent_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000377 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000378 termcapinit(params.term); /* set terminal name and get terminal
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000379 capabilities (will set full_screen) */
380 screen_start(); /* don't know where cursor is now */
381 TIME_MSG("Termcap init");
382 }
383
384 /*
385 * Set the default values for the options that use Rows and Columns.
386 */
387 ui_get_shellsize(); /* inits Rows and Columns */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000388 win_init_size();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000389#ifdef FEAT_DIFF
390 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
391 * file. There is no buffer yet though. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000392 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000393 diff_win_options(firstwin, FALSE);
394#endif
395
396 cmdline_row = Rows - p_ch;
397 msg_row = cmdline_row;
398 screenalloc(FALSE); /* allocate screen buffers */
399 set_init_2();
400 TIME_MSG("inits 2");
401
402 msg_scroll = TRUE;
403 no_wait_return = TRUE;
404
405 init_mappings(); /* set up initial mappings */
406
407 init_highlight(TRUE, FALSE); /* set the default highlight groups */
408 TIME_MSG("init highlight");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000409
410#ifdef FEAT_EVAL
411 /* Set the break level after the terminal is initialized. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000412 debug_break_level = params.use_debug_break_level;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000413#endif
414
Bram Moolenaar2e4cb3b2017-10-22 21:11:17 +0200415 /* Reset 'loadplugins' for "-u NONE" before "--cmd" arguments.
416 * Allows for setting 'loadplugins' there. */
417 if (params.use_vimrc != NULL
418 && (STRCMP(params.use_vimrc, "NONE") == 0
419 || STRCMP(params.use_vimrc, "DEFAULTS") == 0))
420 p_lpl = FALSE;
421
422 /* Execute --cmd arguments. */
423 exe_pre_commands(&params);
424
425 /* Source startup scripts. */
426 source_startup_scripts(&params);
427
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100428#ifdef FEAT_MZSCHEME
429 /*
430 * Newer version of MzScheme (Racket) require earlier (trampolined)
431 * initialisation via scheme_main_setup.
432 * Implement this by initialising it as early as possible
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200433 * and splitting off remaining Vim main into vim_main2().
Bram Moolenaar2e4cb3b2017-10-22 21:11:17 +0200434 * Do source startup scripts, so that 'mzschemedll' can be set.
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100435 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200436 return mzscheme_main();
437#else
438 return vim_main2();
Bram Moolenaar8866d272012-11-28 15:55:42 +0100439#endif
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200440}
Bram Moolenaar8866d272012-11-28 15:55:42 +0100441#endif /* NO_VIM_MAIN */
Bram Moolenaara357e442016-08-10 20:45:07 +0200442#endif /* PROTO */
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100443
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200444/*
445 * vim_main2() is needed for FEAT_MZSCHEME, but we define it always to keep
446 * things simple.
447 * It is also defined when NO_VIM_MAIN is defined, but then it's empty.
448 */
Bram Moolenaar8866d272012-11-28 15:55:42 +0100449 int
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200450vim_main2(void)
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100451{
Bram Moolenaar8866d272012-11-28 15:55:42 +0100452#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000453#ifdef FEAT_EVAL
454 /*
455 * Read all the plugin files.
456 * Only when compiled with +eval, since most plugins need it.
457 */
458 if (p_lpl)
459 {
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200460 char_u *rtp_copy = NULL;
461
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200462 /* First add all package directories to 'runtimepath', so that their
463 * autoload directories can be found. Only if not done already with a
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200464 * :packloadall command.
465 * Make a copy of 'runtimepath', so that source_runtime does not use
466 * the pack directories. */
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200467 if (!did_source_packages)
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200468 {
469 rtp_copy = vim_strsave(p_rtp);
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200470 add_pack_start_dirs();
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200471 }
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200472
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200473 source_in_path(rtp_copy == NULL ? p_rtp : rtp_copy,
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000474# ifdef VMS /* Somehow VMS doesn't handle the "**". */
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200475 (char_u *)"plugin/*.vim",
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000476# else
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200477 (char_u *)"plugin/**/*.vim",
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000478# endif
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200479 DIP_ALL | DIP_NOAFTER);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000480 TIME_MSG("loading plugins");
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200481 vim_free(rtp_copy);
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100482
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200483 /* Only source "start" packages if not done already with a :packloadall
484 * command. */
485 if (!did_source_packages)
486 load_start_packages();
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100487 TIME_MSG("loading packages");
Bram Moolenaar66459b72016-08-06 19:01:55 +0200488
489# ifdef VMS /* Somehow VMS doesn't handle the "**". */
490 source_runtime((char_u *)"plugin/*.vim", DIP_ALL | DIP_AFTER);
491# else
492 source_runtime((char_u *)"plugin/**/*.vim", DIP_ALL | DIP_AFTER);
493# endif
494 TIME_MSG("loading after plugins");
495
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000496 }
497#endif
498
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000499#ifdef FEAT_DIFF
500 /* Decide about window layout for diff mode after reading vimrc. */
501 if (params.diff_mode && params.window_layout == 0)
502 {
503 if (diffopt_horizontal())
504 params.window_layout = WIN_HOR; /* use horizontal split */
505 else
506 params.window_layout = WIN_VER; /* use vertical split */
507 }
508#endif
509
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000510 /*
511 * Recovery mode without a file name: List swap files.
512 * This uses the 'dir' option, therefore it must be after the
513 * initializations.
514 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200515 if (recoverymode && params.fname == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000516 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200517 recover_names(NULL, TRUE, 0, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000518 mch_exit(0);
519 }
520
521 /*
522 * Set a few option defaults after reading .vimrc files:
523 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
524 */
525 set_init_3();
526 TIME_MSG("inits 3");
527
528 /*
529 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
530 * Note that this overrides anything from a vimrc file.
531 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000532 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000533 p_uc = 0;
534
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000535#ifdef FEAT_GUI
536 if (gui.starting)
537 {
538#if defined(UNIX) || defined(VMS)
539 /* When something caused a message from a vimrc script, need to output
540 * an extra newline before the shell prompt. */
541 if (did_emsg || msg_didout)
542 putchar('\n');
543#endif
544
545 gui_start(); /* will set full_screen to TRUE */
546 TIME_MSG("starting GUI");
547
548 /* When running "evim" or "gvim -y" we need the menus, exit if we
549 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000550 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000551 mch_exit(1);
552 }
553#endif
554
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000555#ifdef FEAT_VIMINFO
556 /*
Bram Moolenaard812df62008-11-09 12:46:09 +0000557 * Read in registers, history etc, but not marks, from the viminfo file.
558 * This is where v:oldfiles gets filled.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000559 */
560 if (*p_viminfo != NUL)
561 {
Bram Moolenaard812df62008-11-09 12:46:09 +0000562 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000563 TIME_MSG("reading viminfo");
564 }
565#endif
Bram Moolenaar2cd36962014-01-14 12:57:05 +0100566#ifdef FEAT_EVAL
567 /* It's better to make v:oldfiles an empty list than NULL. */
568 if (get_vim_var_list(VV_OLDFILES) == NULL)
569 set_vim_var_list(VV_OLDFILES, list_alloc());
570#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000571
572#ifdef FEAT_QUICKFIX
573 /*
574 * "-q errorfile": Load the error file now.
575 * If the error file can't be read, exit before doing anything else.
576 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000577 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000578 {
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100579 char_u *enc = NULL;
580
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100581 enc = p_menc;
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000582 if (params.use_ef != NULL)
583 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000584 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200585 vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100586 if (qf_init(NULL, p_ef, p_efm, TRUE, IObuff, enc) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000587 {
588 out_char('\n');
589 mch_exit(3);
590 }
591 TIME_MSG("reading errorfile");
592 }
593#endif
594
595 /*
596 * Start putting things on the screen.
597 * Scroll screen down before drawing over it
598 * Clear screen now, so file message will not be cleared.
599 */
600 starting = NO_BUFFERS;
601 no_wait_return = FALSE;
602 if (!exmode_active)
603 msg_scroll = FALSE;
604
605#ifdef FEAT_GUI
606 /*
607 * This seems to be required to make callbacks to be called now, instead
608 * of after things have been put on the screen, which then may be deleted
609 * when getting a resize callback.
610 * For the Mac this handles putting files dropped on the Vim icon to
611 * global_alist.
612 */
613 if (gui.in_use)
614 {
Bram Moolenaarbb1969b2019-01-17 15:45:25 +0100615 gui_wait_for_chars(50L, typebuf.tb_change_cnt);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000616 TIME_MSG("GUI delay");
617 }
618#endif
619
620#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
621 qnx_clip_init();
622#endif
623
Bram Moolenaarc8bbaa32010-07-14 16:54:21 +0200624#if defined(MACOS_X) && defined(FEAT_CLIPBOARD)
625 clip_init(TRUE);
626#endif
627
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000628#ifdef FEAT_XCLIPBOARD
629 /* Start using the X clipboard, unless the GUI was started. */
630# ifdef FEAT_GUI
631 if (!gui.in_use)
632# endif
633 {
634 setup_term_clip();
635 TIME_MSG("setup clipboard");
636 }
637#endif
638
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000639#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000640 /* Prepare for being a Vim server. */
641 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000642#endif
643
644 /*
645 * If "-" argument given: Read file from stdin.
646 * Do this before starting Raw mode, because it may change things that the
647 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
648 * are the same terminal: "cat | vim -".
649 * Using autocommands here may cause trouble...
650 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000651 if (params.edit_type == EDIT_STDIN && !recoverymode)
652 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000653
654#if defined(UNIX) || defined(VMS)
655 /* When switching screens and something caused a message from a vimrc
656 * script, need to output an extra newline on exit. */
657 if ((did_emsg || msg_didout) && *T_TI != NUL)
658 newline_on_exit = TRUE;
659#endif
660
661 /*
662 * When done something that is not allowed or error message call
663 * wait_return. This must be done before starttermcap(), because it may
664 * switch to another screen. It must be done after settmode(TMODE_RAW),
665 * because we want to react on a single key stroke.
666 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000667 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000668 */
669 settmode(TMODE_RAW);
670 TIME_MSG("setting raw mode");
671
672 if (need_wait_return || msg_didany)
673 {
674 wait_return(TRUE);
675 TIME_MSG("waiting for return");
676 }
677
678 starttermcap(); /* start termcap if not done by wait_return() */
679 TIME_MSG("start termcap");
680
681#ifdef FEAT_MOUSE
682 setmouse(); /* may start using the mouse */
683#endif
684 if (scroll_region)
685 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000686 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000687
Bram Moolenaar980bab42018-08-07 22:42:53 +0200688#if defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar40385db2018-08-07 22:31:44 +0200689 term_push_title(SAVE_RESTORE_BOTH);
690#endif
691
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000692 /*
693 * Don't clear the screen when starting in Ex mode, unless using the GUI.
694 */
695 if (exmode_active
696#ifdef FEAT_GUI
697 && !gui.in_use
698#endif
699 )
700 must_redraw = CLEAR;
701 else
702 {
703 screenclear(); /* clear screen */
704 TIME_MSG("clearing screen");
705 }
706
707#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000708 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000709 {
Bram Moolenaar3a0c9082014-11-12 15:15:42 +0100710 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200711 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000712 TIME_MSG("getting crypt key");
713 }
714#endif
715
716 no_wait_return = TRUE;
717
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000718 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000719 * Create the requested number of windows and edit buffers in them.
720 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000721 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000722 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000723 TIME_MSG("opening buffers");
724
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000725#ifdef FEAT_EVAL
726 /* clear v:swapcommand */
727 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
728#endif
729
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000730 /* Ex starts at last line of the file */
731 if (exmode_active)
732 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
733
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000734 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
735 TIME_MSG("BufEnter autocommands");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000736 setpcmark();
737
738#ifdef FEAT_QUICKFIX
739 /*
740 * When started with "-q errorfile" jump to first error now.
741 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000742 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000743 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000744 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000745 TIME_MSG("jump to first error");
746 }
747#endif
748
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000749 /*
750 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000751 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000752 */
Bram Moolenaarf6303872015-04-03 17:59:43 +0200753 edit_buffers(&params, start_dir);
Bram Moolenaarf6303872015-04-03 17:59:43 +0200754 vim_free(start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000755
756#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000757 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000758 {
759 win_T *wp;
760
761 /* set options in each window for "vimdiff". */
Bram Moolenaar29323592016-07-24 22:04:11 +0200762 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000763 diff_win_options(wp, TRUE);
764 }
765#endif
766
767 /*
768 * Shorten any of the filenames, but only when absolute.
769 */
770 shorten_fnames(FALSE);
771
772 /*
773 * Need to jump to the tag before executing the '-c command'.
774 * Makes "vim -c '/return' -t main" work.
775 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000776 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000777 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000778#if defined(HAS_SWAP_EXISTS_ACTION)
779 swap_exists_did_quit = FALSE;
780#endif
781
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000782 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000783 do_cmdline_cmd(IObuff);
784 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000785
786#if defined(HAS_SWAP_EXISTS_ACTION)
787 /* If the user doesn't want to edit the file then we quit here. */
788 if (swap_exists_did_quit)
789 getout(1);
790#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000791 }
792
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000793 /* Execute any "+", "-c" and "-S" arguments. */
794 if (params.n_commands > 0)
795 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000796
Bram Moolenaar6b1da332017-06-09 21:35:47 +0200797 /* Must come before the may_req_ calls. */
798 starting = 0;
799
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100800#if defined(FEAT_TERMRESPONSE)
Bram Moolenaar976787d2017-06-04 15:45:50 +0200801 /* Must be done before redrawing, puts a few characters on the screen. */
802 may_req_ambiguous_char_width();
803#endif
804
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000805 RedrawingDisabled = 0;
806 redraw_all_later(NOT_VALID);
807 no_wait_return = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000808
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200809 /* 'autochdir' has been postponed */
Bram Moolenaar6f470022018-04-10 18:47:20 +0200810 DO_AUTOCHDIR;
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200811
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000812#ifdef FEAT_TERMRESPONSE
813 /* Requesting the termresponse is postponed until here, so that a "-c q"
814 * argument doesn't make it appear in the shell Vim was started from. */
815 may_req_termresponse();
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200816
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200817 may_req_bg_color();
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000818#endif
819
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000820 /* start in insert mode */
821 if (p_im)
822 need_start_insertmode = TRUE;
823
Bram Moolenaar14735512016-03-26 21:00:08 +0100824#ifdef FEAT_EVAL
825 set_vim_var_nr(VV_VIM_DID_ENTER, 1L);
826#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000827 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
828 TIME_MSG("VimEnter autocommands");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000829
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200830#if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD)
831 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be
832 * done after the clipboard is available and all initial commands that may
833 * modify the 'clipboard' setting have run; i.e. just before entering the
834 * main loop. */
835 {
836 int default_regname = 0;
Bram Moolenaar53076832015-12-31 19:53:21 +0100837
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200838 adjust_clip_reg(&default_regname);
839 set_reg_var(default_regname);
840 }
841#endif
842
Bram Moolenaar8a3bb562018-03-04 20:14:14 +0100843#if defined(FEAT_DIFF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000844 /* When a startup script or session file setup for diff'ing and
845 * scrollbind, sync the scrollbind now. */
846 if (curwin->w_p_diff && curwin->w_p_scb)
847 {
848 update_topline();
849 check_scrollbind((linenr_T)0, 0L);
850 TIME_MSG("diff scrollbinding");
851 }
852#endif
853
Bram Moolenaar4f974752019-02-17 17:44:42 +0100854#if defined(MSWIN) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000855 mch_set_winsize_now(); /* Allow winsize changes from now on */
856#endif
857
Bram Moolenaar4033c552017-09-16 20:54:51 +0200858#if defined(FEAT_GUI)
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000859 /* When tab pages were created, may need to update the tab pages line and
860 * scrollbars. This is skipped while creating them. */
861 if (first_tabpage->tp_next != NULL)
862 {
863 out_flush();
864 gui_init_which_components(NULL);
865 gui_update_scrollbars(TRUE);
866 }
867 need_mouse_correct = TRUE;
868#endif
869
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000870 /* If ":startinsert" command used, stuff a dummy command to be able to
871 * call normal_cmd(), which will then start Insert mode. */
872 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000873 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000874
875#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200876 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200877 {
878# ifdef FEAT_GUI
Bram Moolenaar173c9852010-09-29 17:27:01 +0200879# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar4f974752019-02-17 17:44:42 +0100880 && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200881 if (gui.in_use)
882 {
883 mch_errmsg(_("netbeans is not supported with this GUI\n"));
884 mch_exit(2);
885 }
886# endif
887# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000888 /* Tell the client that it can start sending commands. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200889 netbeans_open(netbeansArg + 3, TRUE);
Bram Moolenaar67c53842010-05-22 18:28:27 +0200890 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000891#endif
892
893 TIME_MSG("before starting main loop");
894
895 /*
896 * Call the main command loop. This never returns.
Bram Moolenaar92d147b2018-07-29 17:35:23 +0200897 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000898 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000899
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200900#endif /* NO_VIM_MAIN */
901
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000902 return 0;
903}
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000904
905/*
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200906 * Initialisation shared by main() and some tests.
907 */
908 void
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200909common_init(mparm_T *paramp)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200910{
Bram Moolenaar438d1762018-09-30 17:11:48 +0200911 cmdline_init();
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200912
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200913 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200914#ifdef FEAT_EVAL
915 eval_init(); /* init global variables */
916#endif
917
918#ifdef __QNXNTO__
919 qnx_init(); /* PhAttach() for clipboard, (and gui) */
920#endif
921
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200922 /* Init the table of Normal mode commands. */
923 init_normal_cmds();
924
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200925 /*
926 * Allocate space for the generic buffers (needed for set_init_1() and
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100927 * emsg()).
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200928 */
929 if ((IObuff = alloc(IOSIZE)) == NULL
930 || (NameBuff = alloc(MAXPATHL)) == NULL)
931 mch_exit(0);
932 TIME_MSG("Allocated generic buffers");
933
934#ifdef NBDEBUG
935 /* Wait a moment for debugging NetBeans. Must be after allocating
936 * NameBuff. */
937 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
938 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
939 TIME_MSG("NetBeans debug wait");
940#endif
941
942#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
943 /*
944 * Setup to use the current locale (for ctype() and many other things).
945 * NOTE: Translated messages with encodings other than latin1 will not
946 * work until set_init_1() has been called!
947 */
948 init_locale();
949 TIME_MSG("locale set");
950#endif
951
952#ifdef FEAT_GUI
953 gui.dofork = TRUE; /* default is to use fork() */
954#endif
955
956 /*
957 * Do a first scan of the arguments in "argv[]":
958 * -display or --display
959 * --server...
960 * --socketid
961 * --windowid
962 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200963 early_arg_scan(paramp);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200964
Bram Moolenaard0573012017-10-28 21:11:06 +0200965#if defined(FEAT_GUI)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200966 /* Prepare for possibly starting GUI sometime */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200967 gui_prepare(&paramp->argc, paramp->argv);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200968 TIME_MSG("GUI prepared");
969#endif
970
971#ifdef FEAT_CLIPBOARD
972 clip_init(FALSE); /* Initialise clipboard stuff */
973 TIME_MSG("clipboard setup");
974#endif
975
976 /*
977 * Check if we have an interactive window.
978 * On the Amiga: If there is no window, we open one with a newcli command
979 * (needed for :! to * work). mch_check_win() will also handle the -d or
980 * -dev argument.
981 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +0100982 stdout_isatty = (mch_check_win(paramp->argc, paramp->argv) != FAIL);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200983 TIME_MSG("window checked");
984
985 /*
986 * Allocate the first window and buffer.
987 * Can't do anything without it, exit when it fails.
988 */
989 if (win_alloc_first() == FAIL)
990 mch_exit(0);
991
992 init_yank(); /* init yank buffers */
993
994 alist_init(&global_alist); /* Init the argument list to empty. */
995 global_alist.id = 0;
996
997 /*
998 * Set the default values for the options.
999 * NOTE: Non-latin1 translated messages are working only after this,
1000 * because this is where "has_mbyte" will be set, which is used by
1001 * msg_outtrans_len_attr().
1002 * First find out the home directory, needed to expand "~" in options.
1003 */
1004 init_homedir(); /* find real value of $HOME */
Bram Moolenaar07268702018-03-01 21:57:32 +01001005 set_init_1(paramp->clean);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001006 TIME_MSG("inits 1");
1007
1008#ifdef FEAT_EVAL
1009 set_lang_var(); /* set v:lang and v:ctype */
1010#endif
Bram Moolenaar6436cd82018-12-27 00:28:33 +01001011
1012#ifdef FEAT_SIGNS
1013 init_signs();
1014#endif
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001015}
1016
1017/*
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001018 * Return TRUE when the --not-a-term argument was found.
1019 */
1020 int
1021is_not_a_term()
1022{
1023 return params.not_a_term;
1024}
1025
1026/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001027 * Main loop: Execute Normal mode commands until exiting Vim.
1028 * Also used to handle commands in the command-line window, until the window
1029 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001030 * Also used to handle ":visual" command after ":global": execute Normal mode
1031 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001032 */
1033 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001034main_loop(
1035 int cmdwin, /* TRUE when working in the command-line window */
1036 int noexmode) /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001037{
Bram Moolenaardf2c7742018-04-16 17:06:09 +02001038 oparg_T oa; /* operator arguments */
Bram Moolenaar8872ef12015-02-10 19:27:05 +01001039 volatile int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001040#ifdef FEAT_CONCEAL
Bram Moolenaar1db43b12015-07-12 16:21:23 +02001041 /* these are static to avoid a compiler warning */
1042 static linenr_T conceal_old_cursor_line = 0;
1043 static linenr_T conceal_new_cursor_line = 0;
1044 static int conceal_update_lines = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001045#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001046
1047#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1048 /* Setup to catch a terminating error from the X server. Just ignore
1049 * it, restore the state and continue. This might not always work
1050 * properly, but at least we don't exit unexpectedly when the X server
Bram Moolenaar2cd36962014-01-14 12:57:05 +01001051 * exits while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001052 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001053 {
1054 State = NORMAL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001055 VIsual_active = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001056 got_int = TRUE;
1057 need_wait_return = FALSE;
1058 global_busy = FALSE;
1059 exmode_active = 0;
1060 skip_redraw = FALSE;
1061 RedrawingDisabled = 0;
1062 no_wait_return = 0;
Bram Moolenaar7701c242011-10-04 16:43:53 +02001063 vgetc_busy = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001064# ifdef FEAT_EVAL
1065 emsg_skip = 0;
1066# endif
1067 emsg_off = 0;
1068# ifdef FEAT_MOUSE
1069 setmouse();
1070# endif
1071 settmode(TMODE_RAW);
1072 starttermcap();
1073 scroll_start();
1074 redraw_later_clear();
1075 }
1076#endif
1077
1078 clear_oparg(&oa);
1079 while (!cmdwin
1080#ifdef FEAT_CMDWIN
1081 || cmdwin_result == 0
1082#endif
1083 )
1084 {
1085 if (stuff_empty())
1086 {
1087 did_check_timestamps = FALSE;
1088 if (need_check_timestamps)
1089 check_timestamps(FALSE);
1090 if (need_wait_return) /* if wait_return still needed ... */
1091 wait_return(FALSE); /* ... call it now */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001092 if (need_start_insertmode && goto_im() && !VIsual_active)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001093 {
1094 need_start_insertmode = FALSE;
1095 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1096 /* skip the fileinfo message now, because it would be shown
1097 * after insert mode finishes! */
1098 need_fileinfo = FALSE;
1099 }
1100 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001101
1102 /* Reset "got_int" now that we got back to the main loop. Except when
1103 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1104 * the ":g" command.
1105 * For ":g/pat/vi" we reset "got_int" when used once. When used
1106 * a second time we go back to Ex mode and abort the ":g" command. */
1107 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001108 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001109 if (noexmode && global_busy && !exmode_active && previous_got_int)
1110 {
1111 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1112 * used and keep "got_int" set, so that it aborts ":g". */
1113 exmode_active = EXMODE_NORMAL;
1114 State = NORMAL;
1115 }
1116 else if (!global_busy || !exmode_active)
1117 {
1118 if (!quit_more)
1119 (void)vgetc(); /* flush all buffers */
1120 got_int = FALSE;
1121 }
1122 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001123 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001124 else
1125 previous_got_int = FALSE;
1126
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001127 if (!exmode_active)
1128 msg_scroll = FALSE;
1129 quit_more = FALSE;
1130
1131 /*
1132 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1133 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1134 * update cursor and redraw.
1135 */
1136 if (skip_redraw || exmode_active)
1137 skip_redraw = FALSE;
1138 else if (do_redraw || stuff_empty())
1139 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001140#ifdef FEAT_GUI
Bram Moolenaar92d147b2018-07-29 17:35:23 +02001141 // If ui_breakcheck() was used a resize may have been postponed.
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001142 gui_may_resize_shell();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001143#endif
Bram Moolenaar92d147b2018-07-29 17:35:23 +02001144#ifdef HAVE_DROP_FILE
1145 // If files were dropped while text was locked or the curbuf was
1146 // locked, this would be a good time to handle the drop.
1147 handle_any_postponed_drop();
1148#endif
Bram Moolenaarbbee8d52019-01-14 21:51:40 +01001149#ifdef FEAT_CONCEAL
1150 if (curwin->w_p_cole == 0)
1151 conceal_update_lines = FALSE;
1152#endif
Bram Moolenaar92d147b2018-07-29 17:35:23 +02001153
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001154 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001155 if (!finish_op && (
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001156 has_cursormoved()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001157#ifdef FEAT_CONCEAL
1158 || curwin->w_p_cole > 0
1159#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001160 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001161 && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001162 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001163 if (has_cursormoved())
1164 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1165 FALSE, curbuf);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001166# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001167 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001168 {
1169 conceal_old_cursor_line = last_cursormoved.lnum;
1170 conceal_new_cursor_line = curwin->w_cursor.lnum;
1171 conceal_update_lines = TRUE;
1172 }
1173# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001174 last_cursormoved = curwin->w_cursor;
1175 }
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001176
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001177#if defined(FEAT_CONCEAL)
1178 if (conceal_update_lines
1179 && (conceal_old_cursor_line != conceal_new_cursor_line
1180 || conceal_cursor_line(curwin)
1181 || need_cursor_line_redraw))
1182 {
1183 if (conceal_old_cursor_line != conceal_new_cursor_line
Bram Moolenaarbbee8d52019-01-14 21:51:40 +01001184 && conceal_old_cursor_line != 0
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001185 && conceal_old_cursor_line
1186 <= curbuf->b_ml.ml_line_count)
1187 redrawWinline(curwin, conceal_old_cursor_line);
1188 redrawWinline(curwin, conceal_new_cursor_line);
1189 curwin->w_valid &= ~VALID_CROW;
1190 need_cursor_line_redraw = FALSE;
1191 }
1192#endif
1193
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001194 /* Trigger TextChanged if b:changedtick differs. */
Bram Moolenaar186628f2013-03-19 13:33:23 +01001195 if (!finish_op && has_textchanged()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001196 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf))
Bram Moolenaar186628f2013-03-19 13:33:23 +01001197 {
Bram Moolenaar5a093432018-02-10 18:15:19 +01001198 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL, FALSE, curbuf);
1199 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar186628f2013-03-19 13:33:23 +01001200 }
Bram Moolenaar186628f2013-03-19 13:33:23 +01001201
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01001202#if defined(FEAT_DIFF)
Bram Moolenaare3521d92018-09-16 14:10:31 +02001203 // Updating diffs from changed() does not always work properly,
1204 // esp. updating folds. Do an update just before redrawing if
1205 // needed.
1206 if (curtab->tp_diff_update || curtab->tp_diff_invalid)
1207 {
1208 ex_diffupdate(NULL);
1209 curtab->tp_diff_update = FALSE;
1210 }
1211
Bram Moolenaar33aec762006-01-22 23:30:12 +00001212 /* Scroll-binding for diff mode may have been postponed until
1213 * here. Avoids doing it for every change. */
1214 if (diff_need_scrollbind)
1215 {
1216 check_scrollbind((linenr_T)0, 0L);
1217 diff_need_scrollbind = FALSE;
1218 }
1219#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001220#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001221 /* Include a closed fold completely in the Visual area. */
1222 foldAdjustVisual();
1223#endif
1224#ifdef FEAT_FOLDING
1225 /*
1226 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1227 * contain the cursor.
1228 * When 'foldopen' is "all", open the fold(s) under the cursor.
1229 * This may mark the window for redrawing.
1230 */
1231 if (hasAnyFolding(curwin) && !char_avail())
1232 {
1233 foldCheckClose();
1234 if (fdo_flags & FDO_ALL)
1235 foldOpenCursor();
1236 }
1237#endif
1238
1239 /*
1240 * Before redrawing, make sure w_topline is correct, and w_leftcol
1241 * if lines don't wrap, and w_skipcol if lines wrap.
1242 */
1243 update_topline();
1244 validate_cursor();
1245
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001246 if (VIsual_active)
1247 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001248 else if (must_redraw)
Bram Moolenaara338adc2018-01-31 20:51:47 +01001249 {
1250 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001251 update_screen(0);
Bram Moolenaara338adc2018-01-31 20:51:47 +01001252 mch_enable_flush();
1253 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001254 else if (redraw_cmdline || clear_cmdline)
1255 showmode();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001256 redraw_statuslines();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001257#ifdef FEAT_TITLE
1258 if (need_maketitle)
1259 maketitle();
1260#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001261#ifdef FEAT_VIMINFO
1262 curbuf->b_last_used = vim_time();
1263#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001264 /* display message after redraw */
1265 if (keep_msg != NULL)
1266 {
1267 char_u *p;
1268
1269 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001270 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1271 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001272 p = keep_msg;
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001273 msg_attr((char *)p, keep_msg_attr);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001274 vim_free(p);
1275 }
1276 if (need_fileinfo) /* show file info after redraw */
1277 {
1278 fileinfo(FALSE, TRUE, FALSE);
1279 need_fileinfo = FALSE;
1280 }
1281
1282 emsg_on_display = FALSE; /* can delete error message now */
1283 did_emsg = FALSE;
1284 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001285 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001286 showruler(FALSE);
1287
1288 setcursor();
1289 cursor_on();
1290
1291 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001292
1293#ifdef STARTUPTIME
1294 /* Now that we have drawn the first screen all the startup stuff
1295 * has been done, close any file for startup messages. */
1296 if (time_fd != NULL)
1297 {
1298 TIME_MSG("first screen update");
1299 TIME_MSG("--- VIM STARTED ---");
1300 fclose(time_fd);
1301 time_fd = NULL;
1302 }
1303#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001304 }
1305#ifdef FEAT_GUI
1306 if (need_mouse_correct)
1307 gui_mouse_correct();
1308#endif
1309
1310 /*
1311 * Update w_curswant if w_set_curswant has been set.
1312 * Postponed until here to avoid computing w_virtcol too often.
1313 */
1314 update_curswant();
1315
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001316#ifdef FEAT_EVAL
1317 /*
1318 * May perform garbage collection when waiting for a character, but
1319 * only at the very toplevel. Otherwise we may be using a List or
1320 * Dict internally somewhere.
1321 * "may_garbage_collect" is reset in vgetc() which is invoked through
1322 * do_exmode() and normal_cmd().
1323 */
1324 may_garbage_collect = (!cmdwin && !noexmode);
1325#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001326 /*
1327 * If we're invoked as ex, do a round of ex commands.
1328 * Otherwise, get and execute a normal mode command.
1329 */
1330 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001331 {
1332 if (noexmode) /* End of ":global/path/visual" commands */
1333 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001334 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001335 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001336 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001337 {
1338#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02001339 if (term_use_loop()
Bram Moolenaaraaa8a352017-08-05 20:17:00 +02001340 && oa.op_type == OP_NOP && oa.regname == NUL
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001341 && !VIsual_active
1342 && !skip_term_loop)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001343 {
1344 /* If terminal_loop() returns OK we got a key that is handled
Bram Moolenaar6d819742017-08-06 14:57:49 +02001345 * in Normal model. With FAIL we first need to position the
1346 * cursor and the screen needs to be redrawn. */
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001347 if (terminal_loop(TRUE) == OK)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001348 normal_cmd(&oa, TRUE);
1349 }
1350 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001351#endif
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001352 {
1353#ifdef FEAT_TERMINAL
1354 skip_term_loop = FALSE;
1355#endif
Bram Moolenaar423802d2017-07-30 16:52:24 +02001356 normal_cmd(&oa, TRUE);
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001357 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02001358 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001359 }
1360}
1361
1362
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001363#if defined(USE_XSMP) || defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001364/*
1365 * Exit, but leave behind swap files for modified buffers.
1366 */
1367 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001368getout_preserve_modified(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001369{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001370# if defined(SIGHUP) && defined(SIG_IGN)
1371 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1372 * makes Vim exit and then handling SIGHUP causes various reentrance
1373 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001374 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001375# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001376
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001377 ml_close_notmod(); /* close all not-modified buffers */
1378 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1379 ml_close_all(FALSE); /* close all memfiles, without deleting */
1380 getout(exitval); /* exit Vim properly */
1381}
1382#endif
1383
1384
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001385/*
1386 * Exit properly.
1387 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001388 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001389getout(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001390{
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001391 exiting = TRUE;
Bram Moolenaar0bd052b2018-03-22 20:33:56 +01001392#if defined(FEAT_JOB_CHANNEL)
1393 ch_log(NULL, "Exiting...");
1394#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001395
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001396 /* When running in Ex mode an error causes us to exit with a non-zero exit
1397 * code. POSIX requires this, although it's not 100% clear from the
1398 * standard. */
1399 if (exmode_active)
1400 exitval += ex_exitval;
1401
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001402 /* Position the cursor on the last screen line, below all the text */
1403#ifdef FEAT_GUI
1404 if (!gui.in_use)
1405#endif
1406 windgoto((int)Rows - 1, 0);
1407
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001408#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1409 /* Optionally print hashtable efficiency. */
1410 hash_debug_results();
1411#endif
1412
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001413#ifdef FEAT_GUI
1414 msg_didany = FALSE;
1415#endif
1416
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001417 if (v_dying <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001418 {
Bram Moolenaardf2c7742018-04-16 17:06:09 +02001419 tabpage_T *tp;
1420 tabpage_T *next_tp;
1421 buf_T *buf;
1422 win_T *wp;
1423
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001424 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001425 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001426 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001427 next_tp = tp->tp_next;
Bram Moolenaar29323592016-07-24 22:04:11 +02001428 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001429 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001430 if (wp->w_buffer == NULL)
1431 /* Autocmd must have close the buffer already, skip. */
1432 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001433 buf = wp->w_buffer;
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001434 if (CHANGEDTICK(buf) != -1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001435 {
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001436 bufref_T bufref;
1437
1438 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001439 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1440 buf->b_fname, FALSE, buf);
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001441 if (bufref_valid(&bufref))
1442 CHANGEDTICK(buf) = -1; /* note we did it already */
1443
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001444 /* start all over, autocommands may mess up the lists */
1445 next_tp = first_tabpage;
1446 break;
1447 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001448 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001449 }
Bram Moolenaar33aec762006-01-22 23:30:12 +00001450
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001451 /* Trigger BufUnload for buffers that are loaded */
Bram Moolenaar29323592016-07-24 22:04:11 +02001452 FOR_ALL_BUFFERS(buf)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001453 if (buf->b_ml.ml_mfp != NULL)
1454 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001455 bufref_T bufref;
1456
1457 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001458 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001459 FALSE, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001460 if (!bufref_valid(&bufref))
1461 /* autocmd deleted the buffer */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001462 break;
1463 }
1464 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1465 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001466
1467#ifdef FEAT_VIMINFO
1468 if (*p_viminfo != NUL)
1469 /* Write out the registers, history, marks etc, to the viminfo file */
1470 write_viminfo(NULL, FALSE);
1471#endif
1472
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001473 if (v_dying <= 1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001474 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001475
Bram Moolenaar05159a02005-02-26 23:04:13 +00001476#ifdef FEAT_PROFILE
1477 profile_dump();
1478#endif
1479
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001480 if (did_emsg
1481#ifdef FEAT_GUI
1482 || (gui.in_use && msg_didany && p_verbose > 0)
1483#endif
1484 )
1485 {
1486 /* give the user a chance to read the (error) message */
1487 no_wait_return = FALSE;
1488 wait_return(FALSE);
1489 }
1490
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001491 /* Position the cursor again, the autocommands may have moved it */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001492#ifdef FEAT_GUI
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001493 if (!gui.in_use)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001494#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001495 windgoto((int)Rows - 1, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001496
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001497#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar65edff82016-02-21 16:40:11 +01001498 job_stop_on_exit();
1499#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001500#ifdef FEAT_LUA
1501 lua_end();
1502#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001503#ifdef FEAT_MZSCHEME
1504 mzscheme_end();
1505#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001506#ifdef FEAT_TCL
1507 tcl_end();
1508#endif
1509#ifdef FEAT_RUBY
1510 ruby_end();
1511#endif
1512#ifdef FEAT_PYTHON
1513 python_end();
1514#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001515#ifdef FEAT_PYTHON3
1516 python3_end();
1517#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001518#ifdef FEAT_PERL
1519 perl_end();
1520#endif
1521#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1522 iconv_end();
1523#endif
1524#ifdef FEAT_NETBEANS_INTG
1525 netbeans_end();
1526#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001527#ifdef FEAT_CSCOPE
1528 cs_end();
1529#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001530#ifdef FEAT_EVAL
1531 if (garbage_collect_at_exit)
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02001532 garbage_collect(FALSE);
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001533#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001534#ifdef MSWIN
Bram Moolenaar14993322014-09-09 12:25:33 +02001535 free_cmd_argsW();
1536#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001537
1538 mch_exit(exitval);
1539}
1540
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001541#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1542/*
1543 * Setup to use the current locale (for ctype() and many other things).
1544 */
1545 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001546init_locale(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001547{
1548 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001549
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001550# ifdef FEAT_GUI_GTK
1551 /* Tell Gtk not to change our locale settings. */
1552 gtk_disable_setlocale();
1553# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001554# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1555 /* Make sure strtod() uses a decimal point, not a comma. */
1556 setlocale(LC_NUMERIC, "C");
1557# endif
1558
Bram Moolenaar4f974752019-02-17 17:44:42 +01001559# ifdef MSWIN
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001560 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1561 * text while it's expecting text in the current locale. This call avoids
1562 * that. */
1563 setlocale(LC_CTYPE, "C");
1564# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001565
1566# ifdef FEAT_GETTEXT
1567 {
1568 int mustfree = FALSE;
1569 char_u *p;
1570
1571# ifdef DYNAMIC_GETTEXT
1572 /* Initialize the gettext library */
Bram Moolenaar286eacd2016-01-16 18:05:50 +01001573 dyn_libintl_init();
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001574# endif
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001575 /* expand_env() doesn't work yet, because g_chartab[] is not
1576 * initialized yet, call vim_getenv() directly */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001577 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1578 if (p != NULL && *p != NUL)
1579 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001580 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001581 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1582 }
1583 if (mustfree)
1584 vim_free(p);
1585 textdomain(VIMPACKAGE);
1586 }
1587# endif
1588}
1589#endif
1590
1591/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001592 * Get the name of the display, before gui_prepare() removes it from
1593 * argv[]. Used for the xterm-clipboard display.
1594 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001595 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001596 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001597 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001598early_arg_scan(mparm_T *parmp UNUSED)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001599{
Bram Moolenaar03005972008-11-20 13:12:36 +00001600#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1601 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001602 int argc = parmp->argc;
1603 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001604 int i;
1605
1606 for (i = 1; i < argc; i++)
1607 {
1608 if (STRCMP(argv[i], "--") == 0)
1609 break;
1610# ifdef FEAT_XCLIPBOARD
1611 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001612# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001613 || STRICMP(argv[i], "--display") == 0
1614# endif
1615 )
1616 {
1617 if (i == argc - 1)
1618 mainerr_arg_missing((char_u *)argv[i]);
1619 xterm_display = argv[++i];
1620 }
1621# endif
1622# ifdef FEAT_CLIENTSERVER
1623 else if (STRICMP(argv[i], "--servername") == 0)
1624 {
1625 if (i == argc - 1)
1626 mainerr_arg_missing((char_u *)argv[i]);
1627 parmp->serverName_arg = (char_u *)argv[++i];
1628 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001629 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001630 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001631 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001632 {
1633 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001634# ifdef FEAT_GUI
1635 if (strstr(argv[i], "-wait") != 0)
1636 /* don't fork() when starting the GUI to edit files ourself */
1637 gui.dofork = FALSE;
1638# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001639 }
1640# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001641
Bram Moolenaar4f974752019-02-17 17:44:42 +01001642# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN)
1643# ifdef FEAT_GUI_MSWIN
Bram Moolenaar78e17622007-08-30 10:26:19 +00001644 else if (STRICMP(argv[i], "--windowid") == 0)
1645# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001646 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001647# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001648 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001649 long_u id;
1650 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001651
1652 if (i == argc - 1)
1653 mainerr_arg_missing((char_u *)argv[i]);
1654 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001655 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001656 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001657 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001658 if (count != 1)
1659 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1660 else
Bram Moolenaar4f974752019-02-17 17:44:42 +01001661# ifdef FEAT_GUI_MSWIN
Bram Moolenaar78e17622007-08-30 10:26:19 +00001662 win_socket_id = id;
1663# else
1664 gtk_socket_id = id;
1665# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001666 i++;
1667 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001668# endif
1669# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001670 else if (STRICMP(argv[i], "--echo-wid") == 0)
1671 echo_wid_arg = TRUE;
1672# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001673# ifndef FEAT_NETBEANS_INTG
1674 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001675 {
1676 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1677 mch_exit(2);
1678 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001679# endif
1680
Bram Moolenaar58d98232005-07-23 22:25:46 +00001681 }
1682#endif
1683}
1684
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001685#ifndef NO_VIM_MAIN
1686/*
1687 * Get a (optional) count for a Vim argument.
1688 */
1689 static int
1690get_number_arg(
1691 char_u *p, /* pointer to argument */
1692 int *idx, /* index in argument, is incremented */
1693 int def) /* default value */
1694{
1695 if (vim_isdigit(p[*idx]))
1696 {
1697 def = atoi((char *)&(p[*idx]));
1698 while (vim_isdigit(p[*idx]))
1699 *idx = *idx + 1;
1700 }
1701 return def;
1702}
1703
1704/*
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001705 * Check for: [r][e][g][vi|vim|view][diff][ex[im]] (sort of)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001706 * If the executable name starts with "r" we disable shell commands.
1707 * If the next character is "e" we run in Easy mode.
1708 * If the next character is "g" we run the GUI version.
1709 * If the next characters are "view" we start in readonly mode.
1710 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1711 * If the next characters are "ex" we start in Ex mode. If it's followed
1712 * by "im" use improved Ex mode.
1713 */
1714 static void
1715parse_command_name(mparm_T *parmp)
1716{
1717 char_u *initstr;
1718
1719 initstr = gettail((char_u *)parmp->argv[0]);
1720
Bram Moolenaard0573012017-10-28 21:11:06 +02001721#ifdef FEAT_GUI_MAC
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001722 /* An issue has been seen when launching Vim in such a way that
1723 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1724 * executable or a symbolic link of it. Until this issue is resolved
1725 * we prohibit the GUI from being used.
1726 */
1727 if (STRCMP(initstr, parmp->argv[0]) == 0)
1728 disallow_gui = TRUE;
1729
1730 /* TODO: On MacOS X default to gui if argv[0] ends in:
1731 * /Vim.app/Contents/MacOS/Vim */
1732#endif
1733
1734#ifdef FEAT_EVAL
1735 set_vim_var_string(VV_PROGNAME, initstr, -1);
Bram Moolenaar08cab962017-03-04 14:37:18 +01001736 set_progpath((char_u *)parmp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001737#endif
1738
1739 if (TOLOWER_ASC(initstr[0]) == 'r')
1740 {
1741 restricted = TRUE;
1742 ++initstr;
1743 }
1744
1745 /* Use evim mode for "evim" and "egvim", not for "editor". */
1746 if (TOLOWER_ASC(initstr[0]) == 'e'
1747 && (TOLOWER_ASC(initstr[1]) == 'v'
1748 || TOLOWER_ASC(initstr[1]) == 'g'))
1749 {
1750#ifdef FEAT_GUI
1751 gui.starting = TRUE;
1752#endif
1753 parmp->evim_mode = TRUE;
1754 ++initstr;
1755 }
1756
1757 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1758 if (TOLOWER_ASC(initstr[0]) == 'g')
1759 {
1760 main_start_gui();
1761#ifdef FEAT_GUI
1762 ++initstr;
1763#endif
1764 }
1765
1766 if (STRNICMP(initstr, "view", 4) == 0)
1767 {
1768 readonlymode = TRUE;
1769 curbuf->b_p_ro = TRUE;
1770 p_uc = 10000; /* don't update very often */
1771 initstr += 4;
1772 }
1773 else if (STRNICMP(initstr, "vim", 3) == 0)
1774 initstr += 3;
1775
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001776 // Catch "[r][g]vimdiff" and "[r][g]viewdiff".
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001777 if (STRICMP(initstr, "diff") == 0)
1778 {
1779#ifdef FEAT_DIFF
1780 parmp->diff_mode = TRUE;
1781#else
1782 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1783 mch_errmsg("\n");
1784 mch_exit(2);
1785#endif
1786 }
1787
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001788 // Checking for "ex" here may catch some weir names, such as "vimex" or
1789 // "viewex", we assume the user knows that.
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001790 if (STRNICMP(initstr, "ex", 2) == 0)
1791 {
1792 if (STRNICMP(initstr + 2, "im", 2) == 0)
1793 exmode_active = EXMODE_VIM;
1794 else
1795 exmode_active = EXMODE_NORMAL;
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001796 change_compatible(TRUE); // set 'compatible'
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001797 }
1798}
1799
Bram Moolenaar58d98232005-07-23 22:25:46 +00001800/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001801 * Scan the command line arguments.
1802 */
1803 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001804command_line_scan(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001805{
1806 int argc = parmp->argc;
1807 char **argv = parmp->argv;
1808 int argv_idx; /* index in argv[n][] */
1809 int had_minmin = FALSE; /* found "--" argument */
1810 int want_argument; /* option argument with argument */
1811 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001812 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001813 long n;
1814
1815 --argc;
1816 ++argv;
1817 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1818 while (argc > 0)
1819 {
1820 /*
1821 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1822 */
1823 if (argv[0][0] == '+' && !had_minmin)
1824 {
1825 if (parmp->n_commands >= MAX_ARG_CMDS)
1826 mainerr(ME_EXTRA_CMD, NULL);
1827 argv_idx = -1; /* skip to next argument */
1828 if (argv[0][1] == NUL)
1829 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1830 else
1831 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1832 }
1833
1834 /*
1835 * Optional argument.
1836 */
1837 else if (argv[0][0] == '-' && !had_minmin)
1838 {
1839 want_argument = FALSE;
1840 c = argv[0][argv_idx++];
1841#ifdef VMS
1842 /*
1843 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1844 * and "-/X" as "-X".
1845 */
1846 if (c == '/')
1847 {
1848 c = argv[0][argv_idx++];
1849 c = TOUPPER_ASC(c);
1850 }
1851 else
1852 c = TOLOWER_ASC(c);
1853#endif
1854 switch (c)
1855 {
1856 case NUL: /* "vim -" read from stdin */
1857 /* "ex -" silent mode */
1858 if (exmode_active)
1859 silent_mode = TRUE;
1860 else
1861 {
1862 if (parmp->edit_type != EDIT_NONE)
1863 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1864 parmp->edit_type = EDIT_STDIN;
1865 read_cmd_fd = 2; /* read from stderr instead of stdin */
1866 }
1867 argv_idx = -1; /* skip to next argument */
1868 break;
1869
1870 case '-': /* "--" don't take any more option arguments */
1871 /* "--help" give help message */
1872 /* "--version" give version message */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001873 /* "--clean" clean context */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001874 /* "--literal" take files literally */
1875 /* "--nofork" don't fork */
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001876 /* "--not-a-term" don't warn for not a term */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001877 /* "--ttyfail" exit if not a term */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001878 /* "--noplugin[s]" skip plugins */
1879 /* "--cmd <cmd>" execute cmd before vimrc */
1880 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1881 usage();
1882 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1883 {
1884 Columns = 80; /* need to init Columns */
1885 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1886 list_version();
1887 msg_putchar('\n');
1888 msg_didout = FALSE;
1889 mch_exit(0);
1890 }
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001891 else if (STRNICMP(argv[0] + argv_idx, "clean", 5) == 0)
1892 {
1893 parmp->use_vimrc = (char_u *)"DEFAULTS";
Bram Moolenaar62dd4522018-03-14 21:20:02 +01001894#ifdef FEAT_GUI
1895 use_gvimrc = (char_u *)"NONE";
1896#endif
Bram Moolenaar07268702018-03-01 21:57:32 +01001897 parmp->clean = TRUE;
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001898 set_option_value((char_u *)"vif", 0L, (char_u *)"NONE", 0);
1899 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001900 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1901 {
Bram Moolenaar53076832015-12-31 19:53:21 +01001902#ifdef EXPAND_FILENAMES
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001903 parmp->literal = TRUE;
1904#endif
1905 }
1906 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1907 {
1908#ifdef FEAT_GUI
1909 gui.dofork = FALSE; /* don't fork() when starting GUI */
1910#endif
1911 }
1912 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1913 p_lpl = FALSE;
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001914 else if (STRNICMP(argv[0] + argv_idx, "not-a-term", 10) == 0)
1915 parmp->not_a_term = TRUE;
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001916 else if (STRNICMP(argv[0] + argv_idx, "ttyfail", 7) == 0)
1917 parmp->tty_fail = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001918 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1919 {
1920 want_argument = TRUE;
1921 argv_idx += 3;
1922 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001923 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1924 {
1925 want_argument = TRUE;
1926 argv_idx += 11;
1927 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001928#ifdef FEAT_CLIENTSERVER
1929 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1930 ; /* already processed -- no arg */
1931 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1932 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1933 {
1934 /* already processed -- snatch the following arg */
1935 if (argc > 1)
1936 {
1937 --argc;
1938 ++argv;
1939 }
1940 }
1941#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001942#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001943# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001944 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001945# else
1946 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1947# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001948 {
1949 /* already processed -- snatch the following arg */
1950 if (argc > 1)
1951 {
1952 --argc;
1953 ++argv;
1954 }
1955 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001956#endif
1957#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001958 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1959 {
1960 /* already processed, skip */
1961 }
1962#endif
1963 else
1964 {
1965 if (argv[0][argv_idx])
1966 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1967 had_minmin = TRUE;
1968 }
1969 if (!want_argument)
1970 argv_idx = -1; /* skip to next argument */
1971 break;
1972
1973 case 'A': /* "-A" start in Arabic mode */
1974#ifdef FEAT_ARABIC
1975 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1976#else
1977 mch_errmsg(_(e_noarabic));
1978 mch_exit(2);
1979#endif
1980 break;
1981
1982 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001983 /* Needs to be effective before expanding file names, because
1984 * for Win32 this makes us edit a shortcut file itself,
1985 * instead of the file it links to. */
1986 set_options_bin(curbuf->b_p_bin, 1, 0);
1987 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001988 break;
1989
1990 case 'C': /* "-C" Compatible */
1991 change_compatible(TRUE);
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02001992 has_dash_c_arg = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001993 break;
1994
1995 case 'e': /* "-e" Ex mode */
1996 exmode_active = EXMODE_NORMAL;
1997 break;
1998
1999 case 'E': /* "-E" Improved Ex mode */
2000 exmode_active = EXMODE_VIM;
2001 break;
2002
2003 case 'f': /* "-f" GUI: run in foreground. Amiga: open
2004 window directly, not with newcli */
2005#ifdef FEAT_GUI
2006 gui.dofork = FALSE; /* don't fork() when starting GUI */
2007#endif
2008 break;
2009
2010 case 'g': /* "-g" start GUI */
2011 main_start_gui();
2012 break;
2013
Bram Moolenaar14184a32019-02-16 15:10:30 +01002014 case 'F': /* "-F" was for Farsi mode */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002015 mch_errmsg(_(e_nofarsi));
2016 mch_exit(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002017 break;
2018
Bram Moolenaarc3e81692018-05-05 15:09:51 +02002019 case '?': /* "-?" give help message (for MS-Windows) */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002020 case 'h': /* "-h" give help message */
2021#ifdef FEAT_GUI_GNOME
2022 /* Tell usage() to exit for "gvim". */
2023 gui.starting = FALSE;
2024#endif
2025 usage();
2026 break;
2027
2028 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
2029#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002030 p_hkmap = TRUE;
2031 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002032#else
2033 mch_errmsg(_(e_nohebrew));
2034 mch_exit(2);
2035#endif
2036 break;
2037
2038 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
2039#ifdef FEAT_LISP
2040 set_option_value((char_u *)"lisp", 1L, NULL, 0);
2041 p_sm = TRUE;
2042#endif
2043 break;
2044
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002045 case 'M': /* "-M" no changes or writing of files */
2046 reset_modifiable();
2047 /* FALLTHROUGH */
2048
2049 case 'm': /* "-m" no writing of files */
2050 p_write = FALSE;
2051 break;
2052
2053 case 'y': /* "-y" easy mode */
2054#ifdef FEAT_GUI
2055 gui.starting = TRUE; /* start GUI a bit later */
2056#endif
2057 parmp->evim_mode = TRUE;
2058 break;
2059
2060 case 'N': /* "-N" Nocompatible */
2061 change_compatible(FALSE);
2062 break;
2063
2064 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002065#ifdef FEAT_NETBEANS_INTG
2066 /* checking for "-nb", netbeans parameters */
2067 if (argv[0][argv_idx] == 'b')
2068 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002069 netbeansArg = argv[0];
2070 argv_idx = -1; /* skip to next argument */
2071 }
2072 else
2073#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002074 parmp->no_swap_file = TRUE;
2075 break;
2076
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002077 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002078#ifdef TARGET_API_MAC_OSX
2079 /* For some reason on MacOS X, an argument like:
2080 -psn_0_10223617 is passed in when invoke from Finder
2081 or with the 'open' command */
2082 if (argv[0][argv_idx] == 's')
2083 {
2084 argv_idx = -1; /* bypass full -psn */
2085 main_start_gui();
2086 break;
2087 }
2088#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002089 /* default is 0: open window for each file */
2090 parmp->window_count = get_number_arg((char_u *)argv[0],
2091 &argv_idx, 0);
2092 parmp->window_layout = WIN_TABS;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002093 break;
2094
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002095 case 'o': /* "-o[N]" open N horizontal split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002096 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002097 parmp->window_count = get_number_arg((char_u *)argv[0],
2098 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002099 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002100 break;
2101
2102 case 'O': /* "-O[N]" open N vertical split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002103 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002104 parmp->window_count = get_number_arg((char_u *)argv[0],
2105 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002106 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002107 break;
2108
2109#ifdef FEAT_QUICKFIX
2110 case 'q': /* "-q" QuickFix mode */
2111 if (parmp->edit_type != EDIT_NONE)
2112 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2113 parmp->edit_type = EDIT_QF;
2114 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2115 {
2116 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2117 argv_idx = -1;
2118 }
2119 else if (argc > 1) /* "-q {errorfile}" */
2120 want_argument = TRUE;
2121 break;
2122#endif
2123
2124 case 'R': /* "-R" readonly mode */
2125 readonlymode = TRUE;
2126 curbuf->b_p_ro = TRUE;
2127 p_uc = 10000; /* don't update very often */
2128 break;
2129
2130 case 'r': /* "-r" recovery mode */
2131 case 'L': /* "-L" recovery mode */
2132 recoverymode = 1;
2133 break;
2134
2135 case 's':
2136 if (exmode_active) /* "-s" silent (batch) mode */
2137 silent_mode = TRUE;
2138 else /* "-s {scriptin}" read from script file */
2139 want_argument = TRUE;
2140 break;
2141
2142 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2143 if (parmp->edit_type != EDIT_NONE)
2144 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2145 parmp->edit_type = EDIT_TAG;
2146 if (argv[0][argv_idx]) /* "-t{tag}" */
2147 {
2148 parmp->tagname = (char_u *)argv[0] + argv_idx;
2149 argv_idx = -1;
2150 }
2151 else /* "-t {tag}" */
2152 want_argument = TRUE;
2153 break;
2154
2155#ifdef FEAT_EVAL
2156 case 'D': /* "-D" Debugging */
2157 parmp->use_debug_break_level = 9999;
2158 break;
2159#endif
2160#ifdef FEAT_DIFF
2161 case 'd': /* "-d" 'diff' */
2162# ifdef AMIGA
2163 /* check for "-dev {device}" */
2164 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2165 want_argument = TRUE;
2166 else
2167# endif
2168 parmp->diff_mode = TRUE;
2169 break;
2170#endif
2171 case 'V': /* "-V{N}" Verbose level */
2172 /* default is 10: a little bit verbose */
2173 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2174 if (argv[0][argv_idx] != NUL)
2175 {
2176 set_option_value((char_u *)"verbosefile", 0L,
2177 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002178 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002179 }
2180 break;
2181
2182 case 'v': /* "-v" Vi-mode (as if called "vi") */
2183 exmode_active = 0;
2184#ifdef FEAT_GUI
2185 gui.starting = FALSE; /* don't start GUI */
2186#endif
2187 break;
2188
2189 case 'w': /* "-w{number}" set window height */
2190 /* "-w {scriptout}" write to script */
2191 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2192 {
2193 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2194 set_option_value((char_u *)"window", n, NULL, 0);
2195 break;
2196 }
2197 want_argument = TRUE;
2198 break;
2199
2200#ifdef FEAT_CRYPT
2201 case 'x': /* "-x" encrypted reading/writing of files */
2202 parmp->ask_for_key = TRUE;
2203 break;
2204#endif
2205
2206 case 'X': /* "-X" don't connect to X server */
2207#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2208 x_no_connect = TRUE;
2209#endif
2210 break;
2211
2212 case 'Z': /* "-Z" restricted mode */
2213 restricted = TRUE;
2214 break;
2215
2216 case 'c': /* "-c{command}" or "-c {command}" execute
2217 command */
2218 if (argv[0][argv_idx] != NUL)
2219 {
2220 if (parmp->n_commands >= MAX_ARG_CMDS)
2221 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002222 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2223 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002224 argv_idx = -1;
2225 break;
2226 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002227 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002228 case 'S': /* "-S {file}" execute Vim script */
2229 case 'i': /* "-i {viminfo}" use for viminfo */
2230#ifndef FEAT_DIFF
2231 case 'd': /* "-d {device}" device (for Amiga) */
2232#endif
2233 case 'T': /* "-T {terminal}" terminal name */
2234 case 'u': /* "-u {vimrc}" vim inits file */
2235 case 'U': /* "-U {gvimrc}" gvim inits file */
2236 case 'W': /* "-W {scriptout}" overwrite */
Bram Moolenaar4f974752019-02-17 17:44:42 +01002237#ifdef FEAT_GUI_MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002238 case 'P': /* "-P {parent title}" MDI parent */
2239#endif
2240 want_argument = TRUE;
2241 break;
2242
2243 default:
2244 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2245 }
2246
2247 /*
2248 * Handle option arguments with argument.
2249 */
2250 if (want_argument)
2251 {
2252 /*
2253 * Check for garbage immediately after the option letter.
2254 */
2255 if (argv[0][argv_idx] != NUL)
2256 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2257
2258 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002259 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002260 mainerr_arg_missing((char_u *)argv[0]);
2261 ++argv;
2262 argv_idx = -1;
2263
2264 switch (c)
2265 {
2266 case 'c': /* "-c {command}" execute command */
2267 case 'S': /* "-S {file}" execute Vim script */
2268 if (parmp->n_commands >= MAX_ARG_CMDS)
2269 mainerr(ME_EXTRA_CMD, NULL);
2270 if (c == 'S')
2271 {
2272 char *a;
2273
2274 if (argc < 1)
2275 /* "-S" without argument: use default session file
2276 * name. */
2277 a = SESSION_FILE;
2278 else if (argv[0][0] == '-')
2279 {
2280 /* "-S" followed by another option: use default
2281 * session file name. */
2282 a = SESSION_FILE;
2283 ++argc;
2284 --argv;
2285 }
2286 else
2287 a = argv[0];
2288 p = alloc((unsigned)(STRLEN(a) + 4));
2289 if (p == NULL)
2290 mch_exit(2);
2291 sprintf((char *)p, "so %s", a);
2292 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2293 parmp->commands[parmp->n_commands++] = p;
2294 }
2295 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002296 parmp->commands[parmp->n_commands++] =
2297 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002298 break;
2299
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002300 case '-':
2301 if (argv[-1][2] == 'c')
2302 {
2303 /* "--cmd {command}" execute command */
2304 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2305 mainerr(ME_EXTRA_CMD, NULL);
2306 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002307 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002308 }
2309 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002310 break;
2311
2312 /* case 'd': -d {device} is handled in mch_check_win() for the
2313 * Amiga */
2314
2315#ifdef FEAT_QUICKFIX
2316 case 'q': /* "-q {errorfile}" QuickFix mode */
2317 parmp->use_ef = (char_u *)argv[0];
2318 break;
2319#endif
2320
2321 case 'i': /* "-i {viminfo}" use for viminfo */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002322 set_option_value((char_u *)"vif", 0L, (char_u *)argv[0], 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002323 break;
2324
2325 case 's': /* "-s {scriptin}" read from script file */
2326 if (scriptin[0] != NULL)
2327 {
2328scripterror:
2329 mch_errmsg(_("Attempt to open script file again: \""));
2330 mch_errmsg(argv[-1]);
2331 mch_errmsg(" ");
2332 mch_errmsg(argv[0]);
2333 mch_errmsg("\"\n");
2334 mch_exit(2);
2335 }
2336 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2337 {
2338 mch_errmsg(_("Cannot open for reading: \""));
2339 mch_errmsg(argv[0]);
2340 mch_errmsg("\"\n");
2341 mch_exit(2);
2342 }
2343 if (save_typebuf() == FAIL)
2344 mch_exit(2); /* out of memory */
2345 break;
2346
2347 case 't': /* "-t {tag}" */
2348 parmp->tagname = (char_u *)argv[0];
2349 break;
2350
2351 case 'T': /* "-T {terminal}" terminal name */
2352 /*
2353 * The -T term argument is always available and when
2354 * HAVE_TERMLIB is supported it overrides the environment
2355 * variable TERM.
2356 */
2357#ifdef FEAT_GUI
2358 if (term_is_gui((char_u *)argv[0]))
2359 gui.starting = TRUE; /* start GUI a bit later */
2360 else
2361#endif
2362 parmp->term = (char_u *)argv[0];
2363 break;
2364
2365 case 'u': /* "-u {vimrc}" vim inits file */
2366 parmp->use_vimrc = (char_u *)argv[0];
2367 break;
2368
2369 case 'U': /* "-U {gvimrc}" gvim inits file */
2370#ifdef FEAT_GUI
2371 use_gvimrc = (char_u *)argv[0];
2372#endif
2373 break;
2374
2375 case 'w': /* "-w {nr}" 'window' value */
2376 /* "-w {scriptout}" append to script file */
2377 if (vim_isdigit(*((char_u *)argv[0])))
2378 {
2379 argv_idx = 0;
2380 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2381 set_option_value((char_u *)"window", n, NULL, 0);
2382 argv_idx = -1;
2383 break;
2384 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002385 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002386 case 'W': /* "-W {scriptout}" overwrite script file */
2387 if (scriptout != NULL)
2388 goto scripterror;
2389 if ((scriptout = mch_fopen(argv[0],
2390 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2391 {
2392 mch_errmsg(_("Cannot open for script output: \""));
2393 mch_errmsg(argv[0]);
2394 mch_errmsg("\"\n");
2395 mch_exit(2);
2396 }
2397 break;
2398
Bram Moolenaar4f974752019-02-17 17:44:42 +01002399#ifdef FEAT_GUI_MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002400 case 'P': /* "-P {parent title}" MDI parent */
2401 gui_mch_set_parent(argv[0]);
2402 break;
2403#endif
2404 }
2405 }
2406 }
2407
2408 /*
2409 * File name argument.
2410 */
2411 else
2412 {
2413 argv_idx = -1; /* skip to next argument */
2414
2415 /* Check for only one type of editing. */
2416 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2417 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2418 parmp->edit_type = EDIT_FILE;
2419
2420#ifdef MSWIN
2421 /* Remember if the argument was a full path before changing
2422 * slashes to backslashes. */
2423 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2424 parmp->full_path = TRUE;
2425#endif
2426
2427 /* Add the file to the global argument list. */
2428 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2429 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2430 mch_exit(2);
2431#ifdef FEAT_DIFF
2432 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2433 && !mch_isdir(alist_name(&GARGLIST[0])))
2434 {
2435 char_u *r;
2436
2437 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2438 if (r != NULL)
2439 {
2440 vim_free(p);
2441 p = r;
2442 }
2443 }
2444#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01002445#if defined(__CYGWIN32__) && !defined(MSWIN)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002446 /*
2447 * If vim is invoked by non-Cygwin tools, convert away any
2448 * DOS paths, so things like .swp files are created correctly.
2449 * Look for evidence of non-Cygwin paths before we bother.
2450 * This is only for when using the Unix files.
2451 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002452 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002453 {
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002454 char posix_path[MAXPATHL];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002455
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002456# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002457 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002458# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002459 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002460# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002461 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002462 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002463 if (p == NULL)
2464 mch_exit(2);
2465 }
2466#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002467
2468#ifdef USE_FNAME_CASE
2469 /* Make the case of the file name match the actual file. */
2470 fname_case(p, 0);
2471#endif
2472
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002473 alist_add(&global_alist, p,
Bram Moolenaar53076832015-12-31 19:53:21 +01002474#ifdef EXPAND_FILENAMES
Bram Moolenaar231334e2005-07-25 20:46:57 +00002475 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002476#else
2477 2 /* add buffer number now and use curbuf */
2478#endif
2479 );
2480
Bram Moolenaar4f974752019-02-17 17:44:42 +01002481#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002482 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002483 /* Remember this argument has been added to the argument list.
2484 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002485 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002486# ifdef FEAT_DIFF
2487 parmp->diff_mode
2488# else
2489 FALSE
2490# endif
2491 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002492 }
2493#endif
2494 }
2495
2496 /*
2497 * If there are no more letters after the current "-", go to next
2498 * argument. argv_idx is set to -1 when the current argument is to be
2499 * skipped.
2500 */
2501 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2502 {
2503 --argc;
2504 ++argv;
2505 argv_idx = 1;
2506 }
2507 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002508
2509#ifdef FEAT_EVAL
2510 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2511 * one. */
2512 if (parmp->n_commands > 0)
2513 {
2514 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2515 if (p != NULL)
2516 {
2517 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2518 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2519 vim_free(p);
2520 }
2521 }
2522#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002523}
2524
2525/*
2526 * Print a warning if stdout is not a terminal.
Bram Moolenaar42b23fa2018-02-03 14:46:45 +01002527 * When starting in Ex mode and commands come from a file, set silent_mode.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002528 */
2529 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002530check_tty(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002531{
2532 int input_isatty; /* is active input a terminal? */
2533
2534 input_isatty = mch_input_isatty();
2535 if (exmode_active)
2536 {
2537 if (!input_isatty)
2538 silent_mode = TRUE;
2539 }
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002540 else if (parmp->want_full_screen && (!stdout_isatty || !input_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002541#ifdef FEAT_GUI
2542 /* don't want the delay when started from the desktop */
2543 && !gui.starting
2544#endif
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01002545 && !parmp->not_a_term)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002546 {
2547#ifdef NBDEBUG
2548 /*
2549 * This shouldn't be necessary. But if I run netbeans with the log
2550 * output coming to the console and XOpenDisplay fails, I get vim
2551 * trying to start with input/output to my console tty. This fills my
2552 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002553 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002554 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002555 if (netbeans_active() && (!stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002556 {
2557 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2558 exit(1);
2559 }
2560#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01002561#if defined(MSWIN) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002562 if (is_cygpty_used())
2563 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002564# if defined(HAVE_BIND_TEXTDOMAIN_CODESET) \
Bram Moolenaar2a027452017-09-26 19:10:37 +02002565 && defined(FEAT_GETTEXT)
2566 char *s, *tofree = NULL;
2567
2568 /* Set the encoding of the error message based on $LC_ALL or
2569 * other environment variables instead of 'encoding'.
2570 * Note that the message is shown on a Cygwin terminal (e.g.
2571 * mintty) which encoding is based on $LC_ALL or etc., not the
2572 * current codepage used by normal Win32 console programs. */
Bram Moolenaar9cf39cc2017-09-27 21:46:19 +02002573 tofree = s = (char *)enc_locale_env(NULL);
Bram Moolenaar2a027452017-09-26 19:10:37 +02002574 if (s == NULL)
2575 s = "utf-8"; /* Use "utf-8" by default. */
2576 (void)bind_textdomain_codeset(VIMPACKAGE, s);
2577 vim_free(tofree);
2578# endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002579 mch_errmsg(_("Vim: Error: This version of Vim does not run in a Cygwin terminal\n"));
2580 exit(1);
2581 }
2582#endif
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002583 if (!stdout_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002584 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2585 if (!input_isatty)
2586 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2587 out_flush();
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002588 if (parmp->tty_fail && (!stdout_isatty || !input_isatty))
2589 exit(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002590 if (scriptin[0] == NULL)
2591 ui_delay(2000L, TRUE);
2592 TIME_MSG("Warning delay");
2593 }
2594}
2595
2596/*
2597 * Read text from stdin.
2598 */
2599 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002600read_stdin(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002601{
2602 int i;
2603
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002604#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002605 /* When getting the ATTENTION prompt here, use a dialog */
2606 swap_exists_action = SEA_DIALOG;
2607#endif
2608 no_wait_return = TRUE;
2609 i = msg_didany;
2610 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002611 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002612 no_wait_return = FALSE;
2613 msg_didany = i;
2614 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002615#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002616 check_swap_exists_action();
2617#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002618#if !(defined(AMIGA) || defined(MACOS_X))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002619 /*
2620 * Close stdin and dup it from stderr. Required for GPM to work
2621 * properly, and for running external commands.
2622 * Is there any other system that cannot do this?
2623 */
2624 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02002625 vim_ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002626#endif
2627}
2628
2629/*
2630 * Create the requested number of windows and edit buffers in them.
2631 * Also does recovery if "recoverymode" set.
2632 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002633 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002634create_windows(mparm_T *parmp UNUSED)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002635{
Bram Moolenaar89d40322006-08-29 15:30:07 +00002636 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002637 int done = 0;
2638
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002639 /*
2640 * Create the number of windows that was requested.
2641 */
2642 if (parmp->window_count == -1) /* was not set */
2643 parmp->window_count = 1;
2644 if (parmp->window_count == 0)
2645 parmp->window_count = GARGCOUNT;
2646 if (parmp->window_count > 1)
2647 {
2648 /* Don't change the windows if there was a command in .vimrc that
2649 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002650 if (parmp->window_layout == 0)
2651 parmp->window_layout = WIN_HOR;
2652 if (parmp->window_layout == WIN_TABS)
2653 {
2654 parmp->window_count = make_tabpages(parmp->window_count);
2655 TIME_MSG("making tab pages");
2656 }
2657 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002658 {
2659 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002660 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002661 TIME_MSG("making windows");
2662 }
2663 else
2664 parmp->window_count = win_count();
2665 }
2666 else
2667 parmp->window_count = 1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002668
2669 if (recoverymode) /* do recover */
2670 {
2671 msg_scroll = TRUE; /* scroll message up */
2672 ml_recover();
2673 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2674 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002675 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002676 }
2677 else
2678 {
2679 /*
2680 * Open a buffer for windows that don't have one yet.
2681 * Commands in the .vimrc might have loaded a file or split the window.
2682 * Watch out for autocommands that delete a window.
2683 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002684 /*
2685 * Don't execute Win/Buf Enter/Leave autocommands here
2686 */
2687 ++autocmd_no_enter;
2688 ++autocmd_no_leave;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002689 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002690 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002691 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002692 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002693 {
2694 if (parmp->window_layout == WIN_TABS)
2695 goto_tabpage(1);
2696 else
2697 curwin = firstwin;
2698 }
2699 else if (parmp->window_layout == WIN_TABS)
2700 {
2701 if (curtab->tp_next == NULL)
2702 break;
2703 goto_tabpage(0);
2704 }
2705 else
2706 {
2707 if (curwin->w_next == NULL)
2708 break;
2709 curwin = curwin->w_next;
2710 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002711 dorewind = FALSE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002712 curbuf = curwin->w_buffer;
2713 if (curbuf->b_ml.ml_mfp == NULL)
2714 {
2715#ifdef FEAT_FOLDING
2716 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2717 if (p_fdls >= 0)
2718 curwin->w_p_fdl = p_fdls;
2719#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002720#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002721 /* When getting the ATTENTION prompt here, use a dialog */
2722 swap_exists_action = SEA_DIALOG;
2723#endif
2724 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002725
2726 /* create memfile, read file */
2727 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002728
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002729#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002730 if (swap_exists_action == SEA_QUIT)
2731 {
2732 if (got_int || only_one_window())
2733 {
2734 /* abort selected or quit and only one window */
2735 did_emsg = FALSE; /* avoid hit-enter prompt */
2736 getout(1);
2737 }
2738 /* We can't close the window, it would disturb what
2739 * happens next. Clear the file name and set the arg
2740 * index to -1 to delete it later. */
2741 setfname(curbuf, NULL, NULL, FALSE);
2742 curwin->w_arg_idx = -1;
2743 swap_exists_action = SEA_NONE;
2744 }
2745 else
2746 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002747#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00002748 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002749 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002750 ui_breakcheck();
2751 if (got_int)
2752 {
2753 (void)vgetc(); /* only break the file loading, not the rest */
2754 break;
2755 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002756 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002757 if (parmp->window_layout == WIN_TABS)
2758 goto_tabpage(1);
2759 else
2760 curwin = firstwin;
2761 curbuf = curwin->w_buffer;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002762 --autocmd_no_enter;
2763 --autocmd_no_leave;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002764 }
2765}
2766
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002767 /*
2768 * If opened more than one window, start editing files in the other
2769 * windows. make_windows() has already opened the windows.
2770 */
2771 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002772edit_buffers(
2773 mparm_T *parmp,
2774 char_u *cwd) /* current working dir */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002775{
2776 int arg_idx; /* index in argument list */
2777 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002778 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002779 win_T *win;
Bram Moolenaarc75e8122019-04-21 15:55:10 +02002780 char_u *p_shm_save = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002781
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002782 /*
2783 * Don't execute Win/Buf Enter/Leave autocommands here
2784 */
2785 ++autocmd_no_enter;
2786 ++autocmd_no_leave;
Bram Moolenaar84212822006-11-07 21:59:47 +00002787
2788 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2789 if (curwin->w_arg_idx == -1)
2790 {
2791 win_close(curwin, TRUE);
2792 advance = FALSE;
2793 }
2794
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002795 arg_idx = 1;
2796 for (i = 1; i < parmp->window_count; ++i)
2797 {
Bram Moolenaard87c36e2015-04-03 14:56:49 +02002798 if (cwd != NULL)
2799 mch_chdir((char *)cwd);
Bram Moolenaar84212822006-11-07 21:59:47 +00002800 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2801 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002802 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002803 ++arg_idx;
2804 win_close(curwin, TRUE);
2805 advance = FALSE;
2806 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002807 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002808
Bram Moolenaar84212822006-11-07 21:59:47 +00002809 if (advance)
2810 {
2811 if (parmp->window_layout == WIN_TABS)
2812 {
2813 if (curtab->tp_next == NULL) /* just checking */
2814 break;
2815 goto_tabpage(0);
Bram Moolenaarc75e8122019-04-21 15:55:10 +02002816 // Temporarily reset 'shm' option to not print fileinfo when
2817 // loading the other buffers. This would overwrite the already
2818 // existing fileinfo for the first tab.
2819 if (i == 1)
2820 {
2821 char buf[100];
2822
2823 p_shm_save = vim_strsave(p_shm);
2824 vim_snprintf(buf, 100, "F%s", p_shm);
2825 set_option_value((char_u *)"shm", 0L, (char_u *)buf, 0);
2826 }
Bram Moolenaar84212822006-11-07 21:59:47 +00002827 }
2828 else
2829 {
2830 if (curwin->w_next == NULL) /* just checking */
2831 break;
2832 win_enter(curwin->w_next, FALSE);
2833 }
2834 }
2835 advance = TRUE;
2836
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002837 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002838 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002839 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2840 {
2841 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002842 /* Edit file from arg list, if there is one. When "Quit" selected
2843 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002844# ifdef HAS_SWAP_EXISTS_ACTION
2845 swap_exists_did_quit = FALSE;
2846# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002847 (void)do_ecmd(0, arg_idx < GARGCOUNT
2848 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002849 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002850# ifdef HAS_SWAP_EXISTS_ACTION
2851 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002852 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002853 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002854 if (got_int || only_one_window())
2855 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002856 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002857 did_emsg = FALSE; /* avoid hit-enter prompt */
2858 getout(1);
2859 }
2860 win_close(curwin, TRUE);
2861 advance = FALSE;
2862 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002863# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002864 if (arg_idx == GARGCOUNT - 1)
2865 arg_had_last = TRUE;
2866 ++arg_idx;
2867 }
2868 ui_breakcheck();
2869 if (got_int)
2870 {
2871 (void)vgetc(); /* only break the file loading, not the rest */
2872 break;
2873 }
2874 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002875
Bram Moolenaarc75e8122019-04-21 15:55:10 +02002876 if (p_shm_save != NULL)
2877 {
2878 set_option_value((char_u *)"shm", 0L, p_shm_save, 0);
2879 vim_free(p_shm_save);
2880 }
2881
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002882 if (parmp->window_layout == WIN_TABS)
2883 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002884 --autocmd_no_enter;
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002885
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002886 /* make the first window the current window */
2887 win = firstwin;
Bram Moolenaar4033c552017-09-16 20:54:51 +02002888#if defined(FEAT_QUICKFIX)
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002889 /* Avoid making a preview window the current window. */
2890 while (win->w_p_pvw)
2891 {
2892 win = win->w_next;
2893 if (win == NULL)
2894 {
2895 win = firstwin;
2896 break;
2897 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002898 }
2899#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002900 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002901
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002902 --autocmd_no_leave;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002903 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002904 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002905 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2906}
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002907
2908/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002909 * Execute the commands from --cmd arguments "cmds[cnt]".
2910 */
2911 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002912exe_pre_commands(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002913{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002914 char_u **cmds = parmp->pre_commands;
2915 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002916 int i;
2917
2918 if (cnt > 0)
2919 {
2920 curwin->w_cursor.lnum = 0; /* just in case.. */
2921 sourcing_name = (char_u *)_("pre-vimrc command line");
2922# ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002923 current_sctx.sc_sid = SID_CMDARG;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002924# endif
2925 for (i = 0; i < cnt; ++i)
2926 do_cmdline_cmd(cmds[i]);
2927 sourcing_name = NULL;
2928# ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002929 current_sctx.sc_sid = 0;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002930# endif
2931 TIME_MSG("--cmd commands");
2932 }
2933}
2934
2935/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002936 * Execute "+", "-c" and "-S" arguments.
2937 */
2938 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002939exe_commands(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002940{
2941 int i;
2942
2943 /*
2944 * We start commands on line 0, make "vim +/pat file" match a
2945 * pattern on line 1. But don't move the cursor when an autocommand
2946 * with g`" was used.
2947 */
2948 msg_scroll = TRUE;
2949 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2950 curwin->w_cursor.lnum = 0;
2951 sourcing_name = (char_u *)"command line";
2952#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002953 current_sctx.sc_sid = SID_CARG;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01002954 current_sctx.sc_seq = 0;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002955#endif
2956 for (i = 0; i < parmp->n_commands; ++i)
2957 {
2958 do_cmdline_cmd(parmp->commands[i]);
2959 if (parmp->cmds_tofree[i])
2960 vim_free(parmp->commands[i]);
2961 }
2962 sourcing_name = NULL;
2963#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002964 current_sctx.sc_sid = 0;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002965#endif
2966 if (curwin->w_cursor.lnum == 0)
2967 curwin->w_cursor.lnum = 1;
2968
2969 if (!exmode_active)
2970 msg_scroll = FALSE;
2971
2972#ifdef FEAT_QUICKFIX
2973 /* When started with "-q errorfile" jump to first error again. */
2974 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002975 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002976#endif
2977 TIME_MSG("executing command arguments");
2978}
2979
2980/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002981 * Source startup scripts.
2982 */
2983 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002984source_startup_scripts(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002985{
2986 int i;
2987
2988 /*
2989 * For "evim" source evim.vim first of all, so that the user can overrule
2990 * any things he doesn't like.
2991 */
2992 if (parmp->evim_mode)
2993 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002994 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002995 TIME_MSG("source evim file");
2996 }
2997
2998 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002999 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00003000 * nothing else.
3001 */
3002 if (parmp->use_vimrc != NULL)
3003 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003004 if (STRCMP(parmp->use_vimrc, "DEFAULTS") == 0)
3005 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
3006 else if (STRCMP(parmp->use_vimrc, "NONE") == 0
Bram Moolenaar231334e2005-07-25 20:46:57 +00003007 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00003008 {
3009#ifdef FEAT_GUI
3010 if (use_gvimrc == NULL) /* don't load gvimrc either */
3011 use_gvimrc = parmp->use_vimrc;
3012#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003013 }
3014 else
3015 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003016 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003017 semsg(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003018 }
3019 }
3020 else if (!silent_mode)
3021 {
3022#ifdef AMIGA
3023 struct Process *proc = (struct Process *)FindTask(0L);
3024 APTR save_winptr = proc->pr_WindowPtr;
3025
3026 /* Avoid a requester here for a volume that doesn't exist. */
3027 proc->pr_WindowPtr = (APTR)-1L;
3028#endif
3029
3030 /*
3031 * Get system wide defaults, if the file name is defined.
3032 */
3033#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003034 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003035#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00003036#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003037 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00003038#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003039
3040 /*
3041 * Try to read initialization commands from the following places:
3042 * - environment variable VIMINIT
3043 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
3044 * - second user vimrc file ($VIM/.vimrc for Dos)
3045 * - environment variable EXINIT
3046 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
3047 * - second user exrc file ($VIM/.exrc for Dos)
3048 * The first that exists is used, the rest is ignored.
3049 */
3050 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
3051 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003052 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003053#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003054 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
3055 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003056#endif
3057#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003058 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
3059 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003060#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02003061#ifdef USR_VIMRC_FILE4
3062 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
3063 DOSO_VIMRC) == FAIL
3064#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003065 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003066 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003067#ifdef USR_EXRC_FILE2
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003068 && do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003069#endif
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02003070 && !has_dash_c_arg)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003071 {
3072 /* When no .vimrc file was found: source defaults.vim. */
3073 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003074 }
3075 }
3076
3077 /*
3078 * Read initialization commands from ".vimrc" or ".exrc" in current
3079 * directory. This is only done if the 'exrc' option is set.
3080 * Because of security reasons we disallow shell and write commands
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003081 * now, except for Unix if the file is owned by the user or 'secure'
Bram Moolenaar58d98232005-07-23 22:25:46 +00003082 * option has been reset in environment of global ".exrc" or ".vimrc".
3083 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3084 * SYS_VIMRC_FILE.
3085 */
3086 if (p_exrc)
3087 {
3088#if defined(UNIX) || defined(VMS)
3089 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3090 if (!file_owned(VIMRC_FILE))
3091#endif
3092 secure = p_secure;
3093
3094 i = FAIL;
3095 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3096 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3097#ifdef USR_VIMRC_FILE2
3098 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3099 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3100#endif
3101#ifdef USR_VIMRC_FILE3
3102 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3103 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3104#endif
3105#ifdef SYS_VIMRC_FILE
3106 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3107 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3108#endif
3109 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003110 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003111
3112 if (i == FAIL)
3113 {
3114#if defined(UNIX) || defined(VMS)
3115 /* if ".exrc" is not owned by user set 'secure' mode */
3116 if (!file_owned(EXRC_FILE))
3117 secure = p_secure;
3118 else
3119 secure = 0;
3120#endif
3121 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3122 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3123#ifdef USR_EXRC_FILE2
3124 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3125 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3126#endif
3127 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003128 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003129 }
3130 }
3131 if (secure == 2)
3132 need_wait_return = TRUE;
3133 secure = 0;
3134#ifdef AMIGA
3135 proc->pr_WindowPtr = save_winptr;
3136#endif
3137 }
3138 TIME_MSG("sourcing vimrc file(s)");
3139}
3140
3141/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003142 * Setup to start using the GUI. Exit with an error when not available.
3143 */
3144 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003145main_start_gui(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003146{
3147#ifdef FEAT_GUI
3148 gui.starting = TRUE; /* start GUI a bit later */
3149#else
3150 mch_errmsg(_(e_nogvim));
3151 mch_errmsg("\n");
3152 mch_exit(2);
3153#endif
3154}
3155
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003156#endif /* NO_VIM_MAIN */
3157
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003158/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003159 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003160 * Returns FAIL if the environment variable was not executed, OK otherwise.
3161 */
3162 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003163process_env(
3164 char_u *env,
3165 int is_viminit) /* when TRUE, called for VIMINIT */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003166{
3167 char_u *initstr;
3168 char_u *save_sourcing_name;
3169 linenr_T save_sourcing_lnum;
3170#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003171 sctx_T save_current_sctx;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003172#endif
3173
3174 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3175 {
3176 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003177 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003178 save_sourcing_name = sourcing_name;
3179 save_sourcing_lnum = sourcing_lnum;
3180 sourcing_name = env;
3181 sourcing_lnum = 0;
3182#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003183 save_current_sctx = current_sctx;
3184 current_sctx.sc_sid = SID_ENV;
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01003185 current_sctx.sc_seq = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003186 current_sctx.sc_lnum = 0;
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02003187 current_sctx.sc_version = 1;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003188#endif
3189 do_cmdline_cmd(initstr);
3190 sourcing_name = save_sourcing_name;
3191 sourcing_lnum = save_sourcing_lnum;
3192#ifdef FEAT_EVAL
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003193 current_sctx = save_current_sctx;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003194#endif
3195 return OK;
3196 }
3197 return FAIL;
3198}
3199
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003200#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003201/*
3202 * Return TRUE if we are certain the user owns the file "fname".
3203 * Used for ".vimrc" and ".exrc".
3204 * Use both stat() and lstat() for extra security.
3205 */
3206 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003207file_owned(char *fname)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003208{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003209 stat_T s;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003210# ifdef UNIX
3211 uid_t uid = getuid();
3212# else /* VMS */
3213 uid_t uid = ((getgid() << 16) | getuid());
3214# endif
3215
3216 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3217# ifdef HAVE_LSTAT
3218 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3219# endif
3220 );
3221}
3222#endif
3223
3224/*
3225 * Give an error message main_errors["n"] and exit.
3226 */
3227 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003228mainerr(
3229 int n, /* one of the ME_ defines */
3230 char_u *str) /* extra argument or NULL */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003231{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003232#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003233 reset_signals(); /* kill us with CTRL-C here, if you like */
3234#endif
3235
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +02003236 init_longVersion();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003237 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003238 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003239 mch_errmsg(_(main_errors[n]));
3240 if (str != NULL)
3241 {
3242 mch_errmsg(": \"");
3243 mch_errmsg((char *)str);
3244 mch_errmsg("\"");
3245 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003246 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003247
3248 mch_exit(1);
3249}
3250
3251 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003252mainerr_arg_missing(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003253{
3254 mainerr(ME_ARG_MISSING, str);
3255}
3256
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003257#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003258/*
3259 * print a message with three spaces prepended and '\n' appended.
3260 */
3261 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003262main_msg(char *s)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003263{
3264 mch_msg(" ");
3265 mch_msg(s);
3266 mch_msg("\n");
3267}
3268
3269/*
3270 * Print messages for "vim -h" or "vim --help" and exit.
3271 */
3272 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003273usage(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003274{
3275 int i;
3276 static char *(use[]) =
3277 {
3278 N_("[file ..] edit specified file(s)"),
3279 N_("- read text from stdin"),
3280 N_("-t tag edit file where tag is defined"),
3281#ifdef FEAT_QUICKFIX
3282 N_("-q [errorfile] edit file with first error")
3283#endif
3284 };
3285
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003286#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003287 reset_signals(); /* kill us with CTRL-C here, if you like */
3288#endif
3289
Bram Moolenaar35fb6fb2018-06-23 16:12:21 +02003290 init_longVersion();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003291 mch_msg(longVersion);
Bram Moolenaar32aaf5a2018-06-21 21:38:33 +02003292 mch_msg(_("\n\nUsage:"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003293 for (i = 0; ; ++i)
3294 {
3295 mch_msg(_(" vim [arguments] "));
3296 mch_msg(_(use[i]));
3297 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3298 break;
3299 mch_msg(_("\n or:"));
3300 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003301#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003302 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003303#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003304
3305 mch_msg(_("\n\nArguments:\n"));
3306 main_msg(_("--\t\t\tOnly file names after this"));
Bram Moolenaar53076832015-12-31 19:53:21 +01003307#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003308 main_msg(_("--literal\t\tDon't expand wildcards"));
3309#endif
3310#ifdef FEAT_OLE
3311 main_msg(_("-register\t\tRegister this gvim for OLE"));
3312 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3313#endif
3314#ifdef FEAT_GUI
3315 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3316 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3317#endif
3318 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3319 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003320 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003321 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3322#ifdef FEAT_DIFF
3323 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3324#endif
3325 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3326 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3327 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3328 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3329 main_msg(_("-M\t\t\tModifications in text not allowed"));
3330 main_msg(_("-b\t\t\tBinary mode"));
3331#ifdef FEAT_LISP
3332 main_msg(_("-l\t\t\tLisp mode"));
3333#endif
3334 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3335 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003336 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3337#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003338 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003339#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003340 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3341 main_msg(_("-r\t\t\tList swap files and exit"));
3342 main_msg(_("-r (with file name)\tRecover crashed session"));
3343 main_msg(_("-L\t\t\tSame as -r"));
3344#ifdef AMIGA
3345 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3346 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3347#endif
3348#ifdef FEAT_ARABIC
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02003349 main_msg(_("-A\t\t\tStart in Arabic mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003350#endif
3351#ifdef FEAT_RIGHTLEFT
3352 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3353#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003354 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01003355 main_msg(_("--not-a-term\t\tSkip warning for input/output not being a terminal"));
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01003356 main_msg(_("--ttyfail\t\tExit if input or output is not a terminal"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003357 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3358#ifdef FEAT_GUI
3359 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3360#endif
3361 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003362 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003363 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3364 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3365 main_msg(_("+\t\t\tStart at end of file"));
3366 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003367 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003368 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3369 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3370 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3371 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3372 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3373#ifdef FEAT_CRYPT
3374 main_msg(_("-x\t\t\tEdit encrypted files"));
3375#endif
3376#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3377# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3378 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3379# endif
3380 main_msg(_("-X\t\t\tDo not connect to X server"));
3381#endif
3382#ifdef FEAT_CLIENTSERVER
3383 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3384 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3385 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3386 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003387 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003388 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3389 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3390 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3391 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3392#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003393#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003394 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003395#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003396#ifdef FEAT_VIMINFO
3397 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3398#endif
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003399 main_msg(_("--clean\t\t'nocompatible', Vim defaults, no plugins, no viminfo"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003400 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3401 main_msg(_("--version\t\tPrint version information and exit"));
3402
3403#ifdef FEAT_GUI_X11
3404# ifdef FEAT_GUI_MOTIF
3405 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3406# else
3407# ifdef FEAT_GUI_ATHENA
3408# ifdef FEAT_GUI_NEXTAW
3409 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3410# else
3411 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3412# endif
3413# endif
3414# endif
3415 main_msg(_("-display <display>\tRun vim on <display>"));
3416 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003417 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3418 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3419 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3420 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3421 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3422 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3423 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3424 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3425# ifdef FEAT_GUI_ATHENA
3426 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3427# endif
3428 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3429 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3430 main_msg(_("-xrm <resource>\tSet the specified resource"));
3431#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003432#ifdef FEAT_GUI_GTK
3433 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3434 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3435 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3436 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3437 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003438 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003439 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003440 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003441#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003442#ifdef FEAT_GUI_MSWIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003443 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003444 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003445#endif
3446
3447#ifdef FEAT_GUI_GNOME
3448 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3449 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003450 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003451 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003452 gui.dofork = FALSE;
3453 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003454 else
3455#endif
3456 mch_exit(0);
3457}
3458
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003459#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003460/*
3461 * Check the result of the ATTENTION dialog:
3462 * When "Quit" selected, exit Vim.
3463 * When "Recover" selected, recover the file.
3464 */
3465 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003466check_swap_exists_action(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003467{
3468 if (swap_exists_action == SEA_QUIT)
3469 getout(1);
3470 handle_swap_exists(NULL);
3471}
3472#endif
3473
Bram Moolenaar08cab962017-03-04 14:37:18 +01003474#endif /* NO_VIM_MAIN */
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003475
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003476#if defined(STARTUPTIME) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003477static struct timeval prev_timeval;
3478
Bram Moolenaar4f974752019-02-17 17:44:42 +01003479# ifdef MSWIN
Bram Moolenaar3f269672009-11-03 11:11:11 +00003480/*
3481 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3482 */
3483 static int
3484gettimeofday(struct timeval *tv, char *dummy)
3485{
3486 long t = clock();
3487 tv->tv_sec = t / CLOCKS_PER_SEC;
3488 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3489 return 0;
3490}
3491# endif
3492
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003493/*
3494 * Save the previous time before doing something that could nest.
3495 * set "*tv_rel" to the time elapsed so far.
3496 */
3497 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003498time_push(void *tv_rel, void *tv_start)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003499{
3500 *((struct timeval *)tv_rel) = prev_timeval;
3501 gettimeofday(&prev_timeval, NULL);
3502 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3503 - ((struct timeval *)tv_rel)->tv_usec;
3504 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3505 - ((struct timeval *)tv_rel)->tv_sec;
3506 if (((struct timeval *)tv_rel)->tv_usec < 0)
3507 {
3508 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3509 --((struct timeval *)tv_rel)->tv_sec;
3510 }
3511 *(struct timeval *)tv_start = prev_timeval;
3512}
3513
3514/*
3515 * Compute the previous time after doing something that could nest.
3516 * Subtract "*tp" from prev_timeval;
3517 * Note: The arguments are (void *) to avoid trouble with systems that don't
3518 * have struct timeval.
3519 */
3520 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003521time_pop(
3522 void *tp) /* actually (struct timeval *) */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003523{
3524 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3525 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3526 if (prev_timeval.tv_usec < 0)
3527 {
3528 prev_timeval.tv_usec += 1000000;
3529 --prev_timeval.tv_sec;
3530 }
3531}
3532
3533 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003534time_diff(struct timeval *then, struct timeval *now)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003535{
3536 long usec;
3537 long msec;
3538
3539 usec = now->tv_usec - then->tv_usec;
3540 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3541 usec = usec % 1000L;
3542 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3543}
3544
3545 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003546time_msg(
3547 char *mesg,
3548 void *tv_start) /* only for do_source: start time; actually
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003549 (struct timeval *) */
3550{
3551 static struct timeval start;
3552 struct timeval now;
3553
3554 if (time_fd != NULL)
3555 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003556 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003557 {
3558 gettimeofday(&start, NULL);
3559 prev_timeval = start;
3560 fprintf(time_fd, "\n\ntimes in msec\n");
3561 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3562 fprintf(time_fd, " clock elapsed: other lines\n\n");
3563 }
3564 gettimeofday(&now, NULL);
3565 time_diff(&start, &now);
3566 if (((struct timeval *)tv_start) != NULL)
3567 {
3568 fprintf(time_fd, " ");
3569 time_diff(((struct timeval *)tv_start), &now);
3570 }
3571 fprintf(time_fd, " ");
3572 time_diff(&prev_timeval, &now);
3573 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003574 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003575 }
3576}
3577
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003578#endif
3579
Bram Moolenaar595297d2017-03-04 19:11:12 +01003580#if !defined(NO_VIM_MAIN) && defined(FEAT_EVAL)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003581 static void
3582set_progpath(char_u *argv0)
3583{
3584 char_u *val = argv0;
Bram Moolenaar08cab962017-03-04 14:37:18 +01003585
Bram Moolenaar4f974752019-02-17 17:44:42 +01003586# ifdef MSWIN
Bram Moolenaar08cab962017-03-04 14:37:18 +01003587 /* A relative path containing a "/" will become invalid when using ":cd",
3588 * turn it into a full path.
Bram Moolenaar066029e2017-03-05 15:19:32 +01003589 * On MS-Windows "vim" should be expanded to "vim.exe", thus always do
3590 * this. */
Bram Moolenaar066029e2017-03-05 15:19:32 +01003591 char_u *path = NULL;
3592
3593 if (mch_can_exe(argv0, &path, FALSE) && path != NULL)
3594 val = path;
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003595# else
3596 char_u buf[MAXPATHL + 1];
3597# ifdef PROC_EXE_LINK
3598 char linkbuf[MAXPATHL + 1];
3599 ssize_t len;
Bram Moolenaar066029e2017-03-05 15:19:32 +01003600
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003601 len = readlink(PROC_EXE_LINK, linkbuf, MAXPATHL);
3602 if (len > 0)
Bram Moolenaar43663192017-03-05 14:29:12 +01003603 {
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003604 linkbuf[len] = NUL;
3605 val = (char_u *)linkbuf;
Bram Moolenaar43663192017-03-05 14:29:12 +01003606 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003607# endif
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003608
3609 if (!mch_isFullName(val))
3610 {
3611 if (gettail(val) != val
3612 && vim_FullName(val, buf, MAXPATHL, TRUE) != FAIL)
3613 val = buf;
3614 }
Bram Moolenaar066029e2017-03-05 15:19:32 +01003615# endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003616
Bram Moolenaar08cab962017-03-04 14:37:18 +01003617 set_vim_var_string(VV_PROGPATH, val, -1);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003618
Bram Moolenaar4f974752019-02-17 17:44:42 +01003619# ifdef MSWIN
Bram Moolenaar43663192017-03-05 14:29:12 +01003620 vim_free(path);
Bram Moolenaar066029e2017-03-05 15:19:32 +01003621# endif
Bram Moolenaar08cab962017-03-04 14:37:18 +01003622}
3623
3624#endif /* NO_VIM_MAIN */
3625
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003626#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003627
3628/*
3629 * Common code for the X command server and the Win32 command server.
3630 */
3631
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003632static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003633
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003634/*
3635 * Do the client-server stuff, unless "--servername ''" was used.
3636 */
3637 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003638exec_on_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003639{
3640 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3641 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01003642# ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003643 /* Initialise the client/server messaging infrastructure. */
3644 serverInitMessaging();
3645# endif
3646
3647 /*
3648 * When a command server argument was found, execute it. This may
3649 * exit Vim when it was successful. Otherwise it's executed further
3650 * on. Remember the encoding used here in "serverStrEnc".
3651 */
3652 if (parmp->serverArg)
3653 {
3654 cmdsrv_main(&parmp->argc, parmp->argv,
3655 parmp->serverName_arg, &parmp->serverStr);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003656 parmp->serverStrEnc = vim_strsave(p_enc);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003657 }
3658
3659 /* If we're still running, get the name to register ourselves.
3660 * On Win32 can register right now, for X11 need to setup the
3661 * clipboard first, it's further down. */
3662 parmp->servername = serverMakeName(parmp->serverName_arg,
3663 parmp->argv[0]);
Bram Moolenaar4f974752019-02-17 17:44:42 +01003664# ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003665 if (parmp->servername != NULL)
3666 {
3667 serverSetName(parmp->servername);
3668 vim_free(parmp->servername);
3669 }
3670# endif
3671 }
3672}
3673
3674/*
3675 * Prepare for running as a Vim server.
3676 */
3677 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003678prepare_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003679{
3680# if defined(FEAT_X11)
3681 /*
3682 * Register for remote command execution with :serversend and --remote
3683 * unless there was a -X or a --servername '' on the command line.
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003684 * Only register nongui-vim's with an explicit --servername argument,
3685 * or when compiling with autoservername.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003686 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003687 */
3688 if (X_DISPLAY != NULL && parmp->servername != NULL && (
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003689# if defined(FEAT_AUTOSERVERNAME) || defined(FEAT_GUI)
3690 (
3691# if defined(FEAT_AUTOSERVERNAME)
3692 1
3693# else
3694 gui.in_use
3695# endif
Bram Moolenaar5f402312006-08-15 19:40:35 +00003696# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003697 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003698# endif
3699 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003700# endif
3701 parmp->serverName_arg != NULL))
3702 {
3703 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3704 vim_free(parmp->servername);
3705 TIME_MSG("register server name");
3706 }
3707 else
3708 serverDelayedStartName = parmp->servername;
3709# endif
3710
3711 /*
3712 * Execute command ourselves if we're here because the send failed (or
3713 * else we would have exited above).
3714 */
3715 if (parmp->serverStr != NULL)
3716 {
3717 char_u *p;
3718
3719 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3720 parmp->serverStr, &p));
3721 vim_free(p);
3722 }
3723}
3724
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003725 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003726cmdsrv_main(
3727 int *argc,
3728 char **argv,
3729 char_u *serverName_arg,
3730 char_u **serverStr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003731{
3732 char_u *res;
3733 int i;
3734 char_u *sname;
3735 int ret;
3736 int didone = FALSE;
3737 int exiterr = 0;
3738 char **newArgV = argv + 1;
3739 int newArgC = 1,
3740 Argc = *argc;
3741 int argtype;
3742#define ARGTYPE_OTHER 0
3743#define ARGTYPE_EDIT 1
3744#define ARGTYPE_EDIT_WAIT 2
3745#define ARGTYPE_SEND 3
3746 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003747 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003748# ifndef FEAT_X11
3749 HWND srv;
3750# else
3751 Window srv;
3752
3753 setup_term_clip();
3754# endif
3755
3756 sname = serverMakeName(serverName_arg, argv[0]);
3757 if (sname == NULL)
3758 return;
3759
3760 /*
3761 * Execute the command server related arguments and remove them
3762 * from the argc/argv array; We may have to return into main()
3763 */
3764 for (i = 1; i < Argc; i++)
3765 {
3766 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003767 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003768 {
3769 for (; i < *argc; i++)
3770 {
3771 *newArgV++ = argv[i];
3772 newArgC++;
3773 }
3774 break;
3775 }
3776
Bram Moolenaareb94e552006-03-11 21:35:11 +00003777 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003778 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003779 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3780 {
3781 char *p = argv[i] + 8;
3782
3783 argtype = ARGTYPE_EDIT;
3784 while (*p != NUL)
3785 {
3786 if (STRNICMP(p, "-wait", 5) == 0)
3787 {
3788 argtype = ARGTYPE_EDIT_WAIT;
3789 p += 5;
3790 }
3791 else if (STRNICMP(p, "-silent", 7) == 0)
3792 {
3793 silent = TRUE;
3794 p += 7;
3795 }
3796 else if (STRNICMP(p, "-tab", 4) == 0)
3797 {
3798 tabs = TRUE;
3799 p += 4;
3800 }
3801 else
3802 {
3803 argtype = ARGTYPE_OTHER;
3804 break;
3805 }
3806 }
3807 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003808 else
3809 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003810
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003811 if (argtype != ARGTYPE_OTHER)
3812 {
3813 if (i == *argc - 1)
3814 mainerr_arg_missing((char_u *)argv[i]);
3815 if (argtype == ARGTYPE_SEND)
3816 {
3817 *serverStr = (char_u *)argv[i + 1];
3818 i++;
3819 }
3820 else
3821 {
3822 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003823 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003824 if (*serverStr == NULL)
3825 {
3826 /* Probably out of memory, exit. */
3827 didone = TRUE;
3828 exiterr = 1;
3829 break;
3830 }
3831 Argc = i;
3832 }
3833# ifdef FEAT_X11
3834 if (xterm_dpy == NULL)
3835 {
3836 mch_errmsg(_("No display"));
3837 ret = -1;
3838 }
3839 else
3840 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003841 NULL, &srv, 0, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003842# else
3843 /* Win32 always works? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003844 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003845# endif
3846 if (ret < 0)
3847 {
3848 if (argtype == ARGTYPE_SEND)
3849 {
3850 /* Failed to send, abort. */
3851 mch_errmsg(_(": Send failed.\n"));
3852 didone = TRUE;
3853 exiterr = 1;
3854 }
3855 else if (!silent)
3856 /* Let vim start normally. */
3857 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3858 break;
3859 }
3860
Bram Moolenaar4f974752019-02-17 17:44:42 +01003861# ifdef FEAT_GUI_MSWIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003862 /* Guess that when the server name starts with "g" it's a GUI
3863 * server, which we can bring to the foreground here.
3864 * Foreground() in the server doesn't work very well. */
3865 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3866 SetForegroundWindow(srv);
3867# endif
3868
3869 /*
3870 * For --remote-wait: Wait until the server did edit each
3871 * file. Also detect that the server no longer runs.
3872 */
3873 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3874 {
3875 int numFiles = *argc - i - 1;
3876 int j;
3877 char_u *done = alloc(numFiles);
3878 char_u *p;
Bram Moolenaar4f974752019-02-17 17:44:42 +01003879# ifdef FEAT_GUI_MSWIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003880 NOTIFYICONDATA ni;
3881 int count = 0;
3882 extern HWND message_window;
3883# endif
3884
3885 if (numFiles > 0 && argv[i + 1][0] == '+')
3886 /* Skip "+cmd" argument, don't wait for it to be edited. */
3887 --numFiles;
3888
Bram Moolenaar4f974752019-02-17 17:44:42 +01003889# ifdef FEAT_GUI_MSWIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003890 ni.cbSize = sizeof(ni);
3891 ni.hWnd = message_window;
3892 ni.uID = 0;
3893 ni.uFlags = NIF_ICON|NIF_TIP;
3894 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3895 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3896 Shell_NotifyIcon(NIM_ADD, &ni);
3897# endif
3898
3899 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003900 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003901 while (memchr(done, 0, numFiles) != NULL)
3902 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01003903# ifdef MSWIN
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003904 p = serverGetReply(srv, NULL, TRUE, TRUE, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003905 if (p == NULL)
3906 break;
3907# else
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003908 if (serverReadReply(xterm_dpy, srv, &p, TRUE, -1) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003909 break;
3910# endif
3911 j = atoi((char *)p);
3912 if (j >= 0 && j < numFiles)
3913 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01003914# ifdef FEAT_GUI_MSWIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003915 ++count;
3916 sprintf(ni.szTip, _("%d of %d edited"),
3917 count, numFiles);
3918 Shell_NotifyIcon(NIM_MODIFY, &ni);
3919# endif
3920 done[j] = 1;
3921 }
3922 }
Bram Moolenaar4f974752019-02-17 17:44:42 +01003923# ifdef FEAT_GUI_MSWIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003924 Shell_NotifyIcon(NIM_DELETE, &ni);
3925# endif
3926 }
3927 }
3928 else if (STRICMP(argv[i], "--remote-expr") == 0)
3929 {
3930 if (i == *argc - 1)
3931 mainerr_arg_missing((char_u *)argv[i]);
Bram Moolenaar4f974752019-02-17 17:44:42 +01003932# ifdef MSWIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003933 /* Win32 always works? */
3934 if (serverSendToVim(sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003935 &res, NULL, 1, 0, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003936# else
3937 if (xterm_dpy == NULL)
3938 mch_errmsg(_("No display: Send expression failed.\n"));
3939 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003940 &res, NULL, 1, 0, 1, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003941# endif
3942 {
3943 if (res != NULL && *res != NUL)
3944 {
3945 /* Output error from remote */
3946 mch_errmsg((char *)res);
Bram Moolenaard23a8232018-02-10 18:45:26 +01003947 VIM_CLEAR(res);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003948 }
3949 mch_errmsg(_(": Send expression failed.\n"));
3950 }
3951 }
3952 else if (STRICMP(argv[i], "--serverlist") == 0)
3953 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01003954# ifdef MSWIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003955 /* Win32 always works? */
3956 res = serverGetVimNames();
3957# else
3958 if (xterm_dpy != NULL)
3959 res = serverGetVimNames(xterm_dpy);
3960# endif
3961 if (called_emsg)
3962 mch_errmsg("\n");
3963 }
3964 else if (STRICMP(argv[i], "--servername") == 0)
3965 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003966 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003967 i++;
3968 continue;
3969 }
3970 else
3971 {
3972 *newArgV++ = argv[i];
3973 newArgC++;
3974 continue;
3975 }
3976 didone = TRUE;
3977 if (res != NULL && *res != NUL)
3978 {
3979 mch_msg((char *)res);
3980 if (res[STRLEN(res) - 1] != '\n')
3981 mch_msg("\n");
3982 }
3983 vim_free(res);
3984 }
3985
3986 if (didone)
3987 {
3988 display_errors(); /* display any collected messages */
3989 exit(exiterr); /* Mission accomplished - get out */
3990 }
3991
3992 /* Return back into main() */
3993 *argc = newArgC;
3994 vim_free(sname);
3995}
3996
3997/*
3998 * Build a ":drop" command to send to a Vim server.
3999 */
4000 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004001build_drop_cmd(
4002 int filec,
4003 char **filev,
4004 int tabs, /* Use ":tab drop" instead of ":drop". */
4005 int sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004006{
4007 garray_T ga;
4008 int i;
4009 char_u *inicmd = NULL;
4010 char_u *p;
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004011 char_u *cdp;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004012 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004013
4014 if (filec > 0 && filev[0][0] == '+')
4015 {
4016 inicmd = (char_u *)filev[0] + 1;
4017 filev++;
4018 filec--;
4019 }
4020 /* Check if we have at least one argument. */
4021 if (filec <= 0)
4022 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004023
4024 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02004025 cwd = alloc(MAXPATHL);
4026 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004027 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004028 if (mch_dirname(cwd, MAXPATHL) != OK)
4029 {
4030 vim_free(cwd);
4031 return NULL;
4032 }
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004033 cdp = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00004034#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004035 (char_u *)"", /* rem_backslash() will tell what chars to escape */
Bram Moolenaar02b06312007-09-06 15:39:22 +00004036#else
4037 PATH_ESC_CHARS,
4038#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02004039 '\\', TRUE);
4040 vim_free(cwd);
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004041 if (cdp == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004042 return NULL;
4043 ga_init2(&ga, 1, 100);
4044 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004045 ga_concat(&ga, cdp);
Bram Moolenaareb94e552006-03-11 21:35:11 +00004046
4047 /* Call inputsave() so that a prompt for an encryption key works. */
4048 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
4049 if (tabs)
4050 ga_concat(&ga, (char_u *)"tab ");
4051 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004052 for (i = 0; i < filec; i++)
4053 {
4054 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004055 * do it again in the Vim server. On MS-Windows only escape
4056 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004057 p = vim_strsave_escaped((char_u *)filev[i],
4058#ifdef UNIX
4059 PATH_ESC_CHARS
4060#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004061 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004062#endif
4063 );
4064 if (p == NULL)
4065 {
4066 vim_free(ga.ga_data);
4067 return NULL;
4068 }
4069 ga_concat(&ga, (char_u *)" ");
4070 ga_concat(&ga, p);
4071 vim_free(p);
4072 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004073 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
4074
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004075 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
4076 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004077 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
4078
4079 /* Switch back to the correct current directory (prior to temporary path
4080 * switch) unless 'autochdir' is set, in which case it will already be
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004081 * correct after the :drop command. With line breaks and spaces:
4082 * if !exists('+acd') || !&acd
4083 * if haslocaldir()
4084 * cd -
4085 * lcd -
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004086 * elseif getcwd() ==# 'current path'
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004087 * cd -
4088 * endif
4089 * endif
4090 */
4091 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|");
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004092 ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004093 ga_concat(&ga, cdp);
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004094 ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004095 vim_free(cdp);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004096
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004097 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004098 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
4099 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004100 if (inicmd != NULL)
4101 {
4102 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
4103 * the following commands to be inserted as text. Use a "|",
4104 * hopefully "inicmd" does allow this... */
4105 ga_concat(&ga, inicmd);
4106 ga_concat(&ga, (char_u *)"|");
4107 }
4108 /* Bring the window to the foreground, goto Insert mode when 'im' set and
4109 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00004110 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004111 ga_append(&ga, NUL);
4112 return ga.ga_data;
4113}
4114
4115/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004116 * Make our basic server name: use the specified "arg" if given, otherwise use
4117 * the tail of the command "cmd" we were started with.
4118 * Return the name in allocated memory. This doesn't include a serial number.
4119 */
4120 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004121serverMakeName(char_u *arg, char *cmd)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004122{
4123 char_u *p;
4124
4125 if (arg != NULL && *arg != NUL)
4126 p = vim_strsave_up(arg);
4127 else
4128 {
4129 p = vim_strsave_up(gettail((char_u *)cmd));
4130 /* Remove .exe or .bat from the name. */
4131 if (p != NULL && vim_strchr(p, '.') != NULL)
4132 *vim_strchr(p, '.') = NUL;
4133 }
4134 return p;
4135}
4136#endif /* FEAT_CLIENTSERVER */
4137
4138#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4139/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004140 * Replace termcodes such as <CR> and insert as key presses if there is room.
4141 */
4142 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004143server_to_input_buf(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004144{
4145 char_u *ptr = NULL;
4146 char_u *cpo_save = p_cpo;
4147
4148 /* Set 'cpoptions' the way we want it.
4149 * B set - backslashes are *not* treated specially
4150 * k set - keycodes are *not* reverse-engineered
4151 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004152 * The last but one parameter of replace_termcodes() is TRUE so that the
4153 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004154 */
4155 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004156 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004157 p_cpo = cpo_save;
4158
4159 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4160 {
4161 /*
4162 * Add the string to the input stream.
4163 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4164 *
4165 * First clear typed characters from the typeahead buffer, there could
4166 * be half a mapping there. Then append to the existing string, so
4167 * that multiple commands from a client are concatenated.
4168 */
4169 if (typebuf.tb_maplen < typebuf.tb_len)
4170 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4171 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4172
4173 /* Let input_available() know we inserted text in the typeahead
4174 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004175 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004176 }
4177 vim_free((char_u *)ptr);
4178}
4179
4180/*
4181 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004182 */
4183 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004184eval_client_expr_to_string(char_u *expr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004185{
4186 char_u *res;
4187 int save_dbl = debug_break_level;
4188 int save_ro = redir_off;
Bram Moolenaar27e80c82018-10-14 21:41:01 +02004189 funccal_entry_T funccal_entry;
4190 int did_save_funccal = FALSE;
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004191
4192 /* Evaluate the expression at the toplevel, don't use variables local to
Bram Moolenaard99388b2017-10-26 14:28:32 +02004193 * the calling function. Except when in debug mode. */
4194 if (!debug_mode)
Bram Moolenaar27e80c82018-10-14 21:41:01 +02004195 {
4196 save_funccal(&funccal_entry);
4197 did_save_funccal = TRUE;
4198 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004199
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004200 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4201 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004202 debug_break_level = -1;
4203 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004204 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4205 * to be typed. Do generate errors so that try/catch works. */
4206 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004207
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004208 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004209
4210 debug_break_level = save_dbl;
4211 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004212 --emsg_silent;
4213 if (emsg_silent < 0)
4214 emsg_silent = 0;
Bram Moolenaar27e80c82018-10-14 21:41:01 +02004215 if (did_save_funccal)
4216 restore_funccal();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004217
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004218 /* A client can tell us to redraw, but not to display the cursor, so do
4219 * that here. */
4220 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01004221 out_flush_cursor(FALSE, FALSE);
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004222
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004223 return res;
4224}
4225
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004226/*
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004227 * Evaluate a command or expression sent to ourselves.
4228 */
4229 int
4230sendToLocalVim(char_u *cmd, int asExpr, char_u **result)
4231{
4232 if (asExpr)
4233 {
4234 char_u *ret;
4235
4236 ret = eval_client_expr_to_string(cmd);
4237 if (result != NULL)
4238 {
4239 if (ret == NULL)
4240 {
4241 char *err = _(e_invexprmsg);
4242 size_t len = STRLEN(cmd) + STRLEN(err) + 5;
4243 char_u *msg;
4244
Bram Moolenaar1662ce12017-03-19 21:47:50 +01004245 msg = alloc((unsigned)len);
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004246 if (msg != NULL)
4247 vim_snprintf((char *)msg, len, "%s: \"%s\"", err, cmd);
4248 *result = msg;
4249 }
4250 else
4251 *result = ret;
4252 }
4253 else
4254 vim_free(ret);
4255 return ret == NULL ? -1 : 0;
4256 }
4257 server_to_input_buf(cmd);
4258 return 0;
4259}
4260
4261/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004262 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4263 * return an allocated string. Otherwise return "data".
4264 * "*tofree" is set to the result when it needs to be freed later.
4265 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004266 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004267serverConvert(
4268 char_u *client_enc UNUSED,
4269 char_u *data,
4270 char_u **tofree)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004271{
4272 char_u *res = data;
4273
4274 *tofree = NULL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004275 if (client_enc != NULL && p_enc != NULL)
4276 {
4277 vimconv_T vimconv;
4278
4279 vimconv.vc_type = CONV_NONE;
4280 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4281 && vimconv.vc_type != CONV_NONE)
4282 {
4283 res = string_convert(&vimconv, data, NULL);
4284 if (res == NULL)
4285 res = data;
4286 else
4287 *tofree = res;
4288 }
4289 convert_setup(&vimconv, NULL, NULL);
4290 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004291 return res;
4292}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004293#endif