blob: 793d54942c908d3023999b650b385541c2c49479 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
Bram Moolenaarb4210b32004-06-13 14:51:16 +000010#define EXTERN
11#include "vim.h"
12
Bram Moolenaarb4210b32004-06-13 14:51:16 +000013#ifdef __CYGWIN__
14# ifndef WIN32
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000015# include <cygwin/version.h>
16# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
17 * cygwin_conv_path() */
Bram Moolenaarb4210b32004-06-13 14:51:16 +000018# endif
19# include <limits.h>
20#endif
21
Bram Moolenaar97ff9b92016-06-26 20:37:46 +020022#if defined(WIN3264) && !defined(FEAT_GUI_W32)
23# include "iscygpty.h"
24#endif
25
Bram Moolenaarc013cb62005-07-24 21:18:31 +000026/* Values for edit_type. */
27#define EDIT_NONE 0 /* no edit type yet */
28#define EDIT_FILE 1 /* file name argument[s] given, use argument list */
29#define EDIT_STDIN 2 /* read file from stdin */
30#define EDIT_TAG 3 /* tag name argument given, use tagname */
31#define EDIT_QF 4 /* start in quickfix mode */
32
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010033#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010034static int file_owned(char *fname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +000035#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010036static void mainerr(int, char_u *);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +020037# if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
38static void init_locale(void);
39# endif
40static void early_arg_scan(mparm_T *parmp);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010041#ifndef NO_VIM_MAIN
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010042static void main_msg(char *s);
43static void usage(void);
44static int get_number_arg(char_u *p, int *idx, int def);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010045static void parse_command_name(mparm_T *parmp);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010046static void command_line_scan(mparm_T *parmp);
47static void check_tty(mparm_T *parmp);
48static void read_stdin(void);
49static void create_windows(mparm_T *parmp);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010050static void edit_buffers(mparm_T *parmp, char_u *cwd);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010051static void exe_pre_commands(mparm_T *parmp);
52static void exe_commands(mparm_T *parmp);
53static void source_startup_scripts(mparm_T *parmp);
54static void main_start_gui(void);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010055# if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010056static void check_swap_exists_action(void);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010057# endif
Bram Moolenaar08cab962017-03-04 14:37:18 +010058# ifdef FEAT_EVAL
59static void set_progpath(char_u *argv0);
60# endif
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010061# if defined(FEAT_CLIENTSERVER) || defined(PROTO)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010062static void exec_on_server(mparm_T *parmp);
63static void prepare_server(mparm_T *parmp);
64static void cmdsrv_main(int *argc, char **argv, char_u *serverName_arg, char_u **serverStr);
65static char_u *serverMakeName(char_u *arg, char *cmd);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010066# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +000067#endif
68
69
Bram Moolenaarb4210b32004-06-13 14:51:16 +000070/*
71 * Different types of error messages.
72 */
73static char *(main_errors[]) =
74{
Bram Moolenaarc013cb62005-07-24 21:18:31 +000075 N_("Unknown option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +000076#define ME_UNKNOWN_OPTION 0
77 N_("Too many edit arguments"),
78#define ME_TOO_MANY_ARGS 1
79 N_("Argument missing after"),
80#define ME_ARG_MISSING 2
Bram Moolenaarc013cb62005-07-24 21:18:31 +000081 N_("Garbage after option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +000082#define ME_GARBAGE 3
83 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
84#define ME_EXTRA_CMD 4
85 N_("Invalid argument for"),
86#define ME_INVALID_ARG 5
87};
88
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010089#ifndef PROTO /* don't want a prototype for main() */
Bram Moolenaara6044292017-04-02 18:19:53 +020090
91/* Various parameters passed between main() and other functions. */
92static mparm_T params;
93
Bram Moolenaar8866d272012-11-28 15:55:42 +010094#ifndef NO_VIM_MAIN /* skip this for unittests */
Bram Moolenaarf9bde2b2015-04-17 22:08:16 +020095
96static char_u *start_dir = NULL; /* current working dir on startup */
97
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +020098static int has_dash_c_arg = FALSE;
99
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000100 int
101# ifdef VIMDLL
102_export
103# endif
104# ifdef FEAT_GUI_MSWIN
105# ifdef __BORLANDC__
106_cdecl
107# endif
108VimMain
109# else
110main
111# endif
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100112(int argc, char **argv)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000113{
Bram Moolenaar77780b62018-03-01 23:10:45 +0100114#if defined(STARTUPTIME) || defined(CLEAN_RUNTIMEPATH)
Bram Moolenaar3f269672009-11-03 11:11:11 +0000115 int i;
116#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000117
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000118 /*
119 * Do any system-specific initialisations. These can NOT use IObuff or
120 * NameBuff. Thus emsg2() cannot be called!
121 */
122 mch_early_init();
123
Bram Moolenaar14993322014-09-09 12:25:33 +0200124#if defined(WIN32) && defined(FEAT_MBYTE)
125 /*
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200126 * MinGW expands command line arguments, which confuses our code to
Bram Moolenaar14993322014-09-09 12:25:33 +0200127 * convert when 'encoding' changes. Get the unexpanded arguments.
128 */
129 argc = get_cmd_argsW(&argv);
130#endif
131
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000132 /* Many variables are in "params" so that we can pass them to invoked
133 * functions without a lot of arguments. "argc" and "argv" are also
134 * copied, so that they can be changed. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000135 vim_memset(&params, 0, sizeof(params));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000136 params.argc = argc;
137 params.argv = argv;
138 params.want_full_screen = TRUE;
139#ifdef FEAT_EVAL
140 params.use_debug_break_level = -1;
141#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000142 params.window_count = -1;
Bram Moolenaar58d98232005-07-23 22:25:46 +0000143
Bram Moolenaar99685e62013-05-11 13:56:18 +0200144#ifdef FEAT_RUBY
145 {
146 int ruby_stack_start;
147 vim_ruby_init((void *)&ruby_stack_start);
148 }
149#endif
150
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000151#ifdef FEAT_TCL
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000152 vim_tcl_init(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000153#endif
154
155#ifdef MEM_PROFILE
156 atexit(vim_mem_profile_dump);
157#endif
158
159#ifdef STARTUPTIME
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200160 /* Need to find "--startuptime" before actually parsing arguments. */
Bram Moolenaar07268702018-03-01 21:57:32 +0100161 for (i = 1; i < argc - 1; ++i)
162 if (STRICMP(argv[i], "--startuptime") == 0)
Bram Moolenaar3f269672009-11-03 11:11:11 +0000163 {
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000164 time_fd = mch_fopen(argv[i + 1], "a");
Bram Moolenaar3f269672009-11-03 11:11:11 +0000165 TIME_MSG("--- VIM STARTING ---");
166 break;
167 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000168#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +0000169 starttime = time(NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000170
Bram Moolenaar07268702018-03-01 21:57:32 +0100171#ifdef CLEAN_RUNTIMEPATH
172 /* Need to find "--clean" before actually parsing arguments. */
173 for (i = 1; i < argc; ++i)
174 if (STRICMP(argv[i], "--clean") == 0)
175 {
176 params.clean = TRUE;
177 break;
178 }
179#endif
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200180 common_init(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000181
182#ifdef FEAT_CLIENTSERVER
183 /*
184 * Do the client-server stuff, unless "--servername ''" was used.
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000185 * This may exit Vim if the command was sent to the server.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000186 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000187 exec_on_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000188#endif
189
190 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000191 * Figure out the way to work from the command name argv[0].
192 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000193 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000194 parse_command_name(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000195
196 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000197 * Process the command line arguments. File names are put in the global
198 * argument list "global_alist".
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000199 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000200 command_line_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000201 TIME_MSG("parsing arguments");
202
203 /*
204 * On some systems, when we compile with the GUI, we always use it. On Mac
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000205 * there is no terminal version, and on Windows we can't fork one off with
206 * :gui.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000207 */
208#ifdef ALWAYS_USE_GUI
209 gui.starting = TRUE;
210#else
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000211# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000212 /*
213 * Check if the GUI can be started. Reset gui.starting if not.
214 * Don't know about other systems, stay on the safe side and don't check.
215 */
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000216 if (gui.starting)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000217 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000218 if (gui_init_check() == FAIL)
219 {
220 gui.starting = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000221
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000222 /* When running "evim" or "gvim -y" we need the menus, exit if we
223 * don't have them. */
224 if (params.evim_mode)
225 mch_exit(1);
226 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000227 }
228# endif
229#endif
230
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000231 if (GARGCOUNT > 0)
232 {
Bram Moolenaar53076832015-12-31 19:53:21 +0100233#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000234 /*
235 * Expand wildcards in file names.
236 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000237 if (!params.literal)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000238 {
Bram Moolenaarf6303872015-04-03 17:59:43 +0200239 start_dir = alloc(MAXPATHL);
240 if (start_dir != NULL)
241 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000242 /* Temporarily add '(' and ')' to 'isfname'. These are valid
243 * filename characters but are excluded from 'isfname' to make
244 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
245 do_cmdline_cmd((char_u *)":set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +0000246 alist_expand(NULL, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000247 do_cmdline_cmd((char_u *)":set isf&");
Bram Moolenaarf6303872015-04-03 17:59:43 +0200248 if (start_dir != NULL)
249 mch_chdir((char *)start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000250 }
251#endif
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200252 params.fname = alist_name(&GARGLIST[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000253 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000254
255#if defined(WIN32) && defined(FEAT_MBYTE)
256 {
257 extern void set_alist_count(void);
258
259 /* Remember the number of entries in the argument list. If it changes
260 * we don't react on setting 'encoding'. */
261 set_alist_count();
262 }
263#endif
264
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000265#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000266 if (GARGCOUNT == 1 && params.full_path)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000267 {
268 /*
269 * If there is one filename, fully qualified, we have very probably
270 * been invoked from explorer, so change to the file's directory.
271 * Hint: to avoid this when typing a command use a forward slash.
272 * If the cd fails, it doesn't matter.
273 */
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100274 (void)vim_chdirfile(params.fname, "drop");
Bram Moolenaarf6303872015-04-03 17:59:43 +0200275 if (start_dir != NULL)
276 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000277 }
278#endif
279 TIME_MSG("expanding arguments");
280
281#ifdef FEAT_DIFF
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000282 if (params.diff_mode && params.window_count == -1)
283 params.window_count = 0; /* open up to 3 windows */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000284#endif
285
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000286 /* Don't redraw until much later. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000287 ++RedrawingDisabled;
288
289 /*
290 * When listing swap file names, don't do cursor positioning et. al.
291 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200292 if (recoverymode && params.fname == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000293 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000294
295 /*
296 * When certain to start the GUI, don't check capabilities of terminal.
297 * For GTK we can't be sure, but when started from the desktop it doesn't
298 * make sense to try using a terminal.
299 */
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000300#if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000301 if (gui.starting
302# ifdef FEAT_GUI_GTK
303 && !isatty(2)
304# endif
305 )
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000306 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000307#endif
308
Bram Moolenaard0573012017-10-28 21:11:06 +0200309#if defined(FEAT_GUI_MAC) && defined(MACOS_X_DARWIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000310 /* When the GUI is started from Finder, need to display messages in a
311 * message box. isatty(2) returns TRUE anyway, thus we need to check the
312 * name to know we're not started from a terminal. */
313 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000314 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000315 params.want_full_screen = FALSE;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000316
317 /* Avoid always using "/" as the current directory. Note that when
318 * started from Finder the arglist will be filled later in
319 * HandleODocAE() and "fname" will be NULL. */
320 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
321 && STRCMP(NameBuff, "/") == 0)
322 {
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200323 if (params.fname != NULL)
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100324 (void)vim_chdirfile(params.fname, "drop");
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000325 else
326 {
327 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
328 vim_chdir(NameBuff);
329 }
Bram Moolenaarf6303872015-04-03 17:59:43 +0200330 if (start_dir != NULL)
331 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000332 }
333 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000334#endif
335
336 /*
337 * mch_init() sets up the terminal (window) for use. This must be
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100338 * done after resetting full_screen, otherwise it may move the cursor.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000339 * Note that we may use mch_exit() before mch_init()!
340 */
341 mch_init();
342 TIME_MSG("shell init");
343
344#ifdef USE_XSMP
345 /*
346 * For want of anywhere else to do it, try to connect to xsmp here.
347 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
348 * Hijacking -X 'no X connection' to also disable XSMP connection as that
349 * has a similar delay upon failure.
350 * Only try if SESSION_MANAGER is set to something non-null.
351 */
352 if (!x_no_connect)
353 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000354 char *p = getenv("SESSION_MANAGER");
355
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000356 if (p != NULL && *p != NUL)
357 {
358 xsmp_init();
359 TIME_MSG("xsmp init");
360 }
361 }
362#endif
363
364 /*
365 * Print a warning if stdout is not a terminal.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000366 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000367 check_tty(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000368
Bram Moolenaar42b23fa2018-02-03 14:46:45 +0100369#ifdef _IOLBF
370 /* Ensure output works usefully without a tty: buffer lines instead of
371 * fully buffered. */
372 if (silent_mode)
373 setvbuf(stdout, NULL, _IOLBF, 0);
374#endif
375
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000376 /* This message comes before term inits, but after setting "silent_mode"
377 * when the input is not a tty. */
378 if (GARGCOUNT > 1 && !silent_mode)
379 printf(_("%d files to edit\n"), GARGCOUNT);
380
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000381 if (params.want_full_screen && !silent_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000382 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000383 termcapinit(params.term); /* set terminal name and get terminal
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000384 capabilities (will set full_screen) */
385 screen_start(); /* don't know where cursor is now */
386 TIME_MSG("Termcap init");
387 }
388
389 /*
390 * Set the default values for the options that use Rows and Columns.
391 */
392 ui_get_shellsize(); /* inits Rows and Columns */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000393 win_init_size();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000394#ifdef FEAT_DIFF
395 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
396 * file. There is no buffer yet though. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000397 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000398 diff_win_options(firstwin, FALSE);
399#endif
400
401 cmdline_row = Rows - p_ch;
402 msg_row = cmdline_row;
403 screenalloc(FALSE); /* allocate screen buffers */
404 set_init_2();
405 TIME_MSG("inits 2");
406
407 msg_scroll = TRUE;
408 no_wait_return = TRUE;
409
410 init_mappings(); /* set up initial mappings */
411
412 init_highlight(TRUE, FALSE); /* set the default highlight groups */
413 TIME_MSG("init highlight");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000414
415#ifdef FEAT_EVAL
416 /* Set the break level after the terminal is initialized. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000417 debug_break_level = params.use_debug_break_level;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000418#endif
419
Bram Moolenaar2e4cb3b2017-10-22 21:11:17 +0200420 /* Reset 'loadplugins' for "-u NONE" before "--cmd" arguments.
421 * Allows for setting 'loadplugins' there. */
422 if (params.use_vimrc != NULL
423 && (STRCMP(params.use_vimrc, "NONE") == 0
424 || STRCMP(params.use_vimrc, "DEFAULTS") == 0))
425 p_lpl = FALSE;
426
427 /* Execute --cmd arguments. */
428 exe_pre_commands(&params);
429
430 /* Source startup scripts. */
431 source_startup_scripts(&params);
432
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100433#ifdef FEAT_MZSCHEME
434 /*
435 * Newer version of MzScheme (Racket) require earlier (trampolined)
436 * initialisation via scheme_main_setup.
437 * Implement this by initialising it as early as possible
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200438 * and splitting off remaining Vim main into vim_main2().
Bram Moolenaar2e4cb3b2017-10-22 21:11:17 +0200439 * Do source startup scripts, so that 'mzschemedll' can be set.
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100440 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200441 return mzscheme_main();
442#else
443 return vim_main2();
Bram Moolenaar8866d272012-11-28 15:55:42 +0100444#endif
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200445}
Bram Moolenaar8866d272012-11-28 15:55:42 +0100446#endif /* NO_VIM_MAIN */
Bram Moolenaara357e442016-08-10 20:45:07 +0200447#endif /* PROTO */
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100448
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200449/*
450 * vim_main2() is needed for FEAT_MZSCHEME, but we define it always to keep
451 * things simple.
452 * It is also defined when NO_VIM_MAIN is defined, but then it's empty.
453 */
Bram Moolenaar8866d272012-11-28 15:55:42 +0100454 int
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200455vim_main2(void)
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100456{
Bram Moolenaar8866d272012-11-28 15:55:42 +0100457#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000458#ifdef FEAT_EVAL
459 /*
460 * Read all the plugin files.
461 * Only when compiled with +eval, since most plugins need it.
462 */
463 if (p_lpl)
464 {
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200465 char_u *rtp_copy = NULL;
466
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200467 /* First add all package directories to 'runtimepath', so that their
468 * autoload directories can be found. Only if not done already with a
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200469 * :packloadall command.
470 * Make a copy of 'runtimepath', so that source_runtime does not use
471 * the pack directories. */
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200472 if (!did_source_packages)
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200473 {
474 rtp_copy = vim_strsave(p_rtp);
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200475 add_pack_start_dirs();
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200476 }
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200477
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200478 source_in_path(rtp_copy == NULL ? p_rtp : rtp_copy,
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000479# ifdef VMS /* Somehow VMS doesn't handle the "**". */
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200480 (char_u *)"plugin/*.vim",
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000481# else
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200482 (char_u *)"plugin/**/*.vim",
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000483# endif
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200484 DIP_ALL | DIP_NOAFTER);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000485 TIME_MSG("loading plugins");
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200486 vim_free(rtp_copy);
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100487
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200488 /* Only source "start" packages if not done already with a :packloadall
489 * command. */
490 if (!did_source_packages)
491 load_start_packages();
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100492 TIME_MSG("loading packages");
Bram Moolenaar66459b72016-08-06 19:01:55 +0200493
494# ifdef VMS /* Somehow VMS doesn't handle the "**". */
495 source_runtime((char_u *)"plugin/*.vim", DIP_ALL | DIP_AFTER);
496# else
497 source_runtime((char_u *)"plugin/**/*.vim", DIP_ALL | DIP_AFTER);
498# endif
499 TIME_MSG("loading after plugins");
500
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000501 }
502#endif
503
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000504#ifdef FEAT_DIFF
505 /* Decide about window layout for diff mode after reading vimrc. */
506 if (params.diff_mode && params.window_layout == 0)
507 {
508 if (diffopt_horizontal())
509 params.window_layout = WIN_HOR; /* use horizontal split */
510 else
511 params.window_layout = WIN_VER; /* use vertical split */
512 }
513#endif
514
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000515 /*
516 * Recovery mode without a file name: List swap files.
517 * This uses the 'dir' option, therefore it must be after the
518 * initializations.
519 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200520 if (recoverymode && params.fname == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000521 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200522 recover_names(NULL, TRUE, 0, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000523 mch_exit(0);
524 }
525
526 /*
527 * Set a few option defaults after reading .vimrc files:
528 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
529 */
530 set_init_3();
531 TIME_MSG("inits 3");
532
533 /*
534 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
535 * Note that this overrides anything from a vimrc file.
536 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000537 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000538 p_uc = 0;
539
540#ifdef FEAT_FKMAP
541 if (curwin->w_p_rl && p_altkeymap)
542 {
543 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
544# ifdef FEAT_ARABIC
545 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
546# endif
547 p_fkmap = TRUE; /* Set the Farsi keymap mode */
548 }
549#endif
550
551#ifdef FEAT_GUI
552 if (gui.starting)
553 {
554#if defined(UNIX) || defined(VMS)
555 /* When something caused a message from a vimrc script, need to output
556 * an extra newline before the shell prompt. */
557 if (did_emsg || msg_didout)
558 putchar('\n');
559#endif
560
561 gui_start(); /* will set full_screen to TRUE */
562 TIME_MSG("starting GUI");
563
564 /* When running "evim" or "gvim -y" we need the menus, exit if we
565 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000566 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000567 mch_exit(1);
568 }
569#endif
570
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000571#ifdef FEAT_VIMINFO
572 /*
Bram Moolenaard812df62008-11-09 12:46:09 +0000573 * Read in registers, history etc, but not marks, from the viminfo file.
574 * This is where v:oldfiles gets filled.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000575 */
576 if (*p_viminfo != NUL)
577 {
Bram Moolenaard812df62008-11-09 12:46:09 +0000578 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000579 TIME_MSG("reading viminfo");
580 }
581#endif
Bram Moolenaar2cd36962014-01-14 12:57:05 +0100582#ifdef FEAT_EVAL
583 /* It's better to make v:oldfiles an empty list than NULL. */
584 if (get_vim_var_list(VV_OLDFILES) == NULL)
585 set_vim_var_list(VV_OLDFILES, list_alloc());
586#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000587
588#ifdef FEAT_QUICKFIX
589 /*
590 * "-q errorfile": Load the error file now.
591 * If the error file can't be read, exit before doing anything else.
592 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000593 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000594 {
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100595 char_u *enc = NULL;
596
597# ifdef FEAT_MBYTE
598 enc = p_menc;
599# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000600 if (params.use_ef != NULL)
601 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000602 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200603 vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100604 if (qf_init(NULL, p_ef, p_efm, TRUE, IObuff, enc) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000605 {
606 out_char('\n');
607 mch_exit(3);
608 }
609 TIME_MSG("reading errorfile");
610 }
611#endif
612
613 /*
614 * Start putting things on the screen.
615 * Scroll screen down before drawing over it
616 * Clear screen now, so file message will not be cleared.
617 */
618 starting = NO_BUFFERS;
619 no_wait_return = FALSE;
620 if (!exmode_active)
621 msg_scroll = FALSE;
622
623#ifdef FEAT_GUI
624 /*
625 * This seems to be required to make callbacks to be called now, instead
626 * of after things have been put on the screen, which then may be deleted
627 * when getting a resize callback.
628 * For the Mac this handles putting files dropped on the Vim icon to
629 * global_alist.
630 */
631 if (gui.in_use)
632 {
633# ifdef FEAT_SUN_WORKSHOP
634 if (!usingSunWorkShop)
635# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100636 gui_wait_for_chars(50L, typebuf.tb_change_cnt);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000637 TIME_MSG("GUI delay");
638 }
639#endif
640
641#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
642 qnx_clip_init();
643#endif
644
Bram Moolenaarc8bbaa32010-07-14 16:54:21 +0200645#if defined(MACOS_X) && defined(FEAT_CLIPBOARD)
646 clip_init(TRUE);
647#endif
648
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000649#ifdef FEAT_XCLIPBOARD
650 /* Start using the X clipboard, unless the GUI was started. */
651# ifdef FEAT_GUI
652 if (!gui.in_use)
653# endif
654 {
655 setup_term_clip();
656 TIME_MSG("setup clipboard");
657 }
658#endif
659
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000660#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000661 /* Prepare for being a Vim server. */
662 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000663#endif
664
665 /*
666 * If "-" argument given: Read file from stdin.
667 * Do this before starting Raw mode, because it may change things that the
668 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
669 * are the same terminal: "cat | vim -".
670 * Using autocommands here may cause trouble...
671 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000672 if (params.edit_type == EDIT_STDIN && !recoverymode)
673 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000674
675#if defined(UNIX) || defined(VMS)
676 /* When switching screens and something caused a message from a vimrc
677 * script, need to output an extra newline on exit. */
678 if ((did_emsg || msg_didout) && *T_TI != NUL)
679 newline_on_exit = TRUE;
680#endif
681
682 /*
683 * When done something that is not allowed or error message call
684 * wait_return. This must be done before starttermcap(), because it may
685 * switch to another screen. It must be done after settmode(TMODE_RAW),
686 * because we want to react on a single key stroke.
687 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000688 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000689 */
690 settmode(TMODE_RAW);
691 TIME_MSG("setting raw mode");
692
693 if (need_wait_return || msg_didany)
694 {
695 wait_return(TRUE);
696 TIME_MSG("waiting for return");
697 }
698
699 starttermcap(); /* start termcap if not done by wait_return() */
700 TIME_MSG("start termcap");
701
702#ifdef FEAT_MOUSE
703 setmouse(); /* may start using the mouse */
704#endif
705 if (scroll_region)
706 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000707 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000708
709 /*
710 * Don't clear the screen when starting in Ex mode, unless using the GUI.
711 */
712 if (exmode_active
713#ifdef FEAT_GUI
714 && !gui.in_use
715#endif
716 )
717 must_redraw = CLEAR;
718 else
719 {
720 screenclear(); /* clear screen */
721 TIME_MSG("clearing screen");
722 }
723
724#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000725 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000726 {
Bram Moolenaar3a0c9082014-11-12 15:15:42 +0100727 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200728 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000729 TIME_MSG("getting crypt key");
730 }
731#endif
732
733 no_wait_return = TRUE;
734
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000735 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000736 * Create the requested number of windows and edit buffers in them.
737 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000738 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000739 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000740 TIME_MSG("opening buffers");
741
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000742#ifdef FEAT_EVAL
743 /* clear v:swapcommand */
744 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
745#endif
746
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000747 /* Ex starts at last line of the file */
748 if (exmode_active)
749 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
750
751#ifdef FEAT_AUTOCMD
752 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
753 TIME_MSG("BufEnter autocommands");
754#endif
755 setpcmark();
756
757#ifdef FEAT_QUICKFIX
758 /*
759 * When started with "-q errorfile" jump to first error now.
760 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000761 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000762 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000763 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000764 TIME_MSG("jump to first error");
765 }
766#endif
767
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000768 /*
769 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000770 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000771 */
Bram Moolenaarf6303872015-04-03 17:59:43 +0200772 edit_buffers(&params, start_dir);
Bram Moolenaarf6303872015-04-03 17:59:43 +0200773 vim_free(start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000774
775#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000776 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000777 {
778 win_T *wp;
779
780 /* set options in each window for "vimdiff". */
Bram Moolenaar29323592016-07-24 22:04:11 +0200781 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000782 diff_win_options(wp, TRUE);
783 }
784#endif
785
786 /*
787 * Shorten any of the filenames, but only when absolute.
788 */
789 shorten_fnames(FALSE);
790
791 /*
792 * Need to jump to the tag before executing the '-c command'.
793 * Makes "vim -c '/return' -t main" work.
794 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000795 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000796 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000797#if defined(HAS_SWAP_EXISTS_ACTION)
798 swap_exists_did_quit = FALSE;
799#endif
800
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000801 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000802 do_cmdline_cmd(IObuff);
803 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000804
805#if defined(HAS_SWAP_EXISTS_ACTION)
806 /* If the user doesn't want to edit the file then we quit here. */
807 if (swap_exists_did_quit)
808 getout(1);
809#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000810 }
811
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000812 /* Execute any "+", "-c" and "-S" arguments. */
813 if (params.n_commands > 0)
814 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000815
Bram Moolenaar6b1da332017-06-09 21:35:47 +0200816 /* Must come before the may_req_ calls. */
817 starting = 0;
818
Bram Moolenaar976787d2017-06-04 15:45:50 +0200819#if defined(FEAT_TERMRESPONSE) && defined(FEAT_MBYTE)
820 /* Must be done before redrawing, puts a few characters on the screen. */
821 may_req_ambiguous_char_width();
822#endif
823
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000824 RedrawingDisabled = 0;
825 redraw_all_later(NOT_VALID);
826 no_wait_return = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000827
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200828 /* 'autochdir' has been postponed */
829 DO_AUTOCHDIR
830
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000831#ifdef FEAT_TERMRESPONSE
832 /* Requesting the termresponse is postponed until here, so that a "-c q"
833 * argument doesn't make it appear in the shell Vim was started from. */
834 may_req_termresponse();
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200835
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200836 may_req_bg_color();
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000837#endif
838
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000839 /* start in insert mode */
840 if (p_im)
841 need_start_insertmode = TRUE;
842
Bram Moolenaar14735512016-03-26 21:00:08 +0100843#ifdef FEAT_EVAL
844 set_vim_var_nr(VV_VIM_DID_ENTER, 1L);
845#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000846#ifdef FEAT_AUTOCMD
847 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
848 TIME_MSG("VimEnter autocommands");
849#endif
850
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200851#if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD)
852 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be
853 * done after the clipboard is available and all initial commands that may
854 * modify the 'clipboard' setting have run; i.e. just before entering the
855 * main loop. */
856 {
857 int default_regname = 0;
Bram Moolenaar53076832015-12-31 19:53:21 +0100858
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200859 adjust_clip_reg(&default_regname);
860 set_reg_var(default_regname);
861 }
862#endif
863
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000864#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
865 /* When a startup script or session file setup for diff'ing and
866 * scrollbind, sync the scrollbind now. */
867 if (curwin->w_p_diff && curwin->w_p_scb)
868 {
869 update_topline();
870 check_scrollbind((linenr_T)0, 0L);
871 TIME_MSG("diff scrollbinding");
872 }
873#endif
874
875#if defined(WIN3264) && !defined(FEAT_GUI_W32)
876 mch_set_winsize_now(); /* Allow winsize changes from now on */
877#endif
878
Bram Moolenaar4033c552017-09-16 20:54:51 +0200879#if defined(FEAT_GUI)
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000880 /* When tab pages were created, may need to update the tab pages line and
881 * scrollbars. This is skipped while creating them. */
882 if (first_tabpage->tp_next != NULL)
883 {
884 out_flush();
885 gui_init_which_components(NULL);
886 gui_update_scrollbars(TRUE);
887 }
888 need_mouse_correct = TRUE;
889#endif
890
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000891 /* If ":startinsert" command used, stuff a dummy command to be able to
892 * call normal_cmd(), which will then start Insert mode. */
893 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000894 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000895
896#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200897 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200898 {
899# ifdef FEAT_GUI
Bram Moolenaar173c9852010-09-29 17:27:01 +0200900# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar67c53842010-05-22 18:28:27 +0200901 && !defined(FEAT_GUI_W32)
902 if (gui.in_use)
903 {
904 mch_errmsg(_("netbeans is not supported with this GUI\n"));
905 mch_exit(2);
906 }
907# endif
908# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000909 /* Tell the client that it can start sending commands. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200910 netbeans_open(netbeansArg + 3, TRUE);
Bram Moolenaar67c53842010-05-22 18:28:27 +0200911 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000912#endif
913
914 TIME_MSG("before starting main loop");
915
916 /*
917 * Call the main command loop. This never returns.
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100918 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000919 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000920
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200921#endif /* NO_VIM_MAIN */
922
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000923 return 0;
924}
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000925
926/*
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200927 * Initialisation shared by main() and some tests.
928 */
929 void
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200930common_init(mparm_T *paramp)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200931{
932
933#ifdef FEAT_MBYTE
934 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
935#endif
936#ifdef FEAT_EVAL
937 eval_init(); /* init global variables */
938#endif
939
940#ifdef __QNXNTO__
941 qnx_init(); /* PhAttach() for clipboard, (and gui) */
942#endif
943
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200944 /* Init the table of Normal mode commands. */
945 init_normal_cmds();
946
947#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
948 make_version(); /* Construct the long version string. */
949#endif
950
951 /*
952 * Allocate space for the generic buffers (needed for set_init_1() and
953 * EMSG2()).
954 */
955 if ((IObuff = alloc(IOSIZE)) == NULL
956 || (NameBuff = alloc(MAXPATHL)) == NULL)
957 mch_exit(0);
958 TIME_MSG("Allocated generic buffers");
959
960#ifdef NBDEBUG
961 /* Wait a moment for debugging NetBeans. Must be after allocating
962 * NameBuff. */
963 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
964 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
965 TIME_MSG("NetBeans debug wait");
966#endif
967
968#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
969 /*
970 * Setup to use the current locale (for ctype() and many other things).
971 * NOTE: Translated messages with encodings other than latin1 will not
972 * work until set_init_1() has been called!
973 */
974 init_locale();
975 TIME_MSG("locale set");
976#endif
977
978#ifdef FEAT_GUI
979 gui.dofork = TRUE; /* default is to use fork() */
980#endif
981
982 /*
983 * Do a first scan of the arguments in "argv[]":
984 * -display or --display
985 * --server...
986 * --socketid
987 * --windowid
988 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200989 early_arg_scan(paramp);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200990
991#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200992 findYourself(paramp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200993#endif
Bram Moolenaard0573012017-10-28 21:11:06 +0200994#if defined(FEAT_GUI)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200995 /* Prepare for possibly starting GUI sometime */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200996 gui_prepare(&paramp->argc, paramp->argv);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200997 TIME_MSG("GUI prepared");
998#endif
999
1000#ifdef FEAT_CLIPBOARD
1001 clip_init(FALSE); /* Initialise clipboard stuff */
1002 TIME_MSG("clipboard setup");
1003#endif
1004
1005 /*
1006 * Check if we have an interactive window.
1007 * On the Amiga: If there is no window, we open one with a newcli command
1008 * (needed for :! to * work). mch_check_win() will also handle the -d or
1009 * -dev argument.
1010 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001011 stdout_isatty = (mch_check_win(paramp->argc, paramp->argv) != FAIL);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001012 TIME_MSG("window checked");
1013
1014 /*
1015 * Allocate the first window and buffer.
1016 * Can't do anything without it, exit when it fails.
1017 */
1018 if (win_alloc_first() == FAIL)
1019 mch_exit(0);
1020
1021 init_yank(); /* init yank buffers */
1022
1023 alist_init(&global_alist); /* Init the argument list to empty. */
1024 global_alist.id = 0;
1025
1026 /*
1027 * Set the default values for the options.
1028 * NOTE: Non-latin1 translated messages are working only after this,
1029 * because this is where "has_mbyte" will be set, which is used by
1030 * msg_outtrans_len_attr().
1031 * First find out the home directory, needed to expand "~" in options.
1032 */
1033 init_homedir(); /* find real value of $HOME */
Bram Moolenaar07268702018-03-01 21:57:32 +01001034 set_init_1(paramp->clean);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001035 TIME_MSG("inits 1");
1036
1037#ifdef FEAT_EVAL
1038 set_lang_var(); /* set v:lang and v:ctype */
1039#endif
1040}
1041
1042/*
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001043 * Return TRUE when the --not-a-term argument was found.
1044 */
1045 int
1046is_not_a_term()
1047{
1048 return params.not_a_term;
1049}
1050
1051/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001052 * Main loop: Execute Normal mode commands until exiting Vim.
1053 * Also used to handle commands in the command-line window, until the window
1054 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001055 * Also used to handle ":visual" command after ":global": execute Normal mode
1056 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001057 */
1058 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001059main_loop(
1060 int cmdwin, /* TRUE when working in the command-line window */
1061 int noexmode) /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001062{
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001063 oparg_T oa; /* operator arguments */
Bram Moolenaar8872ef12015-02-10 19:27:05 +01001064 volatile int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001065#ifdef FEAT_CONCEAL
Bram Moolenaar1db43b12015-07-12 16:21:23 +02001066 /* these are static to avoid a compiler warning */
1067 static linenr_T conceal_old_cursor_line = 0;
1068 static linenr_T conceal_new_cursor_line = 0;
1069 static int conceal_update_lines = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001070#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001071
1072#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1073 /* Setup to catch a terminating error from the X server. Just ignore
1074 * it, restore the state and continue. This might not always work
1075 * properly, but at least we don't exit unexpectedly when the X server
Bram Moolenaar2cd36962014-01-14 12:57:05 +01001076 * exits while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001077 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001078 {
1079 State = NORMAL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001080 VIsual_active = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001081 got_int = TRUE;
1082 need_wait_return = FALSE;
1083 global_busy = FALSE;
1084 exmode_active = 0;
1085 skip_redraw = FALSE;
1086 RedrawingDisabled = 0;
1087 no_wait_return = 0;
Bram Moolenaar7701c242011-10-04 16:43:53 +02001088 vgetc_busy = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001089# ifdef FEAT_EVAL
1090 emsg_skip = 0;
1091# endif
1092 emsg_off = 0;
1093# ifdef FEAT_MOUSE
1094 setmouse();
1095# endif
1096 settmode(TMODE_RAW);
1097 starttermcap();
1098 scroll_start();
1099 redraw_later_clear();
1100 }
1101#endif
1102
1103 clear_oparg(&oa);
1104 while (!cmdwin
1105#ifdef FEAT_CMDWIN
1106 || cmdwin_result == 0
1107#endif
1108 )
1109 {
1110 if (stuff_empty())
1111 {
1112 did_check_timestamps = FALSE;
1113 if (need_check_timestamps)
1114 check_timestamps(FALSE);
1115 if (need_wait_return) /* if wait_return still needed ... */
1116 wait_return(FALSE); /* ... call it now */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001117 if (need_start_insertmode && goto_im() && !VIsual_active)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001118 {
1119 need_start_insertmode = FALSE;
1120 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1121 /* skip the fileinfo message now, because it would be shown
1122 * after insert mode finishes! */
1123 need_fileinfo = FALSE;
1124 }
1125 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001126
1127 /* Reset "got_int" now that we got back to the main loop. Except when
1128 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1129 * the ":g" command.
1130 * For ":g/pat/vi" we reset "got_int" when used once. When used
1131 * a second time we go back to Ex mode and abort the ":g" command. */
1132 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001133 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001134 if (noexmode && global_busy && !exmode_active && previous_got_int)
1135 {
1136 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1137 * used and keep "got_int" set, so that it aborts ":g". */
1138 exmode_active = EXMODE_NORMAL;
1139 State = NORMAL;
1140 }
1141 else if (!global_busy || !exmode_active)
1142 {
1143 if (!quit_more)
1144 (void)vgetc(); /* flush all buffers */
1145 got_int = FALSE;
1146 }
1147 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001148 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001149 else
1150 previous_got_int = FALSE;
1151
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001152 if (!exmode_active)
1153 msg_scroll = FALSE;
1154 quit_more = FALSE;
1155
1156 /*
1157 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1158 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1159 * update cursor and redraw.
1160 */
1161 if (skip_redraw || exmode_active)
1162 skip_redraw = FALSE;
1163 else if (do_redraw || stuff_empty())
1164 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001165# ifdef FEAT_GUI
1166 /* If ui_breakcheck() was used a resize may have been postponed. */
1167 gui_may_resize_shell();
1168# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001169#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001170 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001171 if (!finish_op && (
1172# ifdef FEAT_AUTOCMD
1173 has_cursormoved()
1174# endif
1175# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
1176 ||
1177# endif
1178# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001179 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001180# endif
1181 )
Bram Moolenaard1413d92016-03-02 21:51:56 +01001182# ifdef FEAT_AUTOCMD
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001183 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)
Bram Moolenaard1413d92016-03-02 21:51:56 +01001184# endif
1185 )
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001186 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001187# ifdef FEAT_AUTOCMD
1188 if (has_cursormoved())
1189 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1190 FALSE, curbuf);
1191# endif
1192# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001193 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001194 {
Bram Moolenaard1413d92016-03-02 21:51:56 +01001195# ifdef FEAT_AUTOCMD
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001196 conceal_old_cursor_line = last_cursormoved.lnum;
Bram Moolenaard1413d92016-03-02 21:51:56 +01001197# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001198 conceal_new_cursor_line = curwin->w_cursor.lnum;
1199 conceal_update_lines = TRUE;
1200 }
1201# endif
Bram Moolenaard1413d92016-03-02 21:51:56 +01001202# ifdef FEAT_AUTOCMD
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001203 last_cursormoved = curwin->w_cursor;
Bram Moolenaard1413d92016-03-02 21:51:56 +01001204# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001205 }
1206#endif
1207
Bram Moolenaar186628f2013-03-19 13:33:23 +01001208#ifdef FEAT_AUTOCMD
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001209 /* Trigger TextChanged if b:changedtick differs. */
Bram Moolenaar186628f2013-03-19 13:33:23 +01001210 if (!finish_op && has_textchanged()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001211 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf))
Bram Moolenaar186628f2013-03-19 13:33:23 +01001212 {
Bram Moolenaar5a093432018-02-10 18:15:19 +01001213 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL, FALSE, curbuf);
1214 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar186628f2013-03-19 13:33:23 +01001215 }
1216#endif
1217
Bram Moolenaar33aec762006-01-22 23:30:12 +00001218#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1219 /* Scroll-binding for diff mode may have been postponed until
1220 * here. Avoids doing it for every change. */
1221 if (diff_need_scrollbind)
1222 {
1223 check_scrollbind((linenr_T)0, 0L);
1224 diff_need_scrollbind = FALSE;
1225 }
1226#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001227#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001228 /* Include a closed fold completely in the Visual area. */
1229 foldAdjustVisual();
1230#endif
1231#ifdef FEAT_FOLDING
1232 /*
1233 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1234 * contain the cursor.
1235 * When 'foldopen' is "all", open the fold(s) under the cursor.
1236 * This may mark the window for redrawing.
1237 */
1238 if (hasAnyFolding(curwin) && !char_avail())
1239 {
1240 foldCheckClose();
1241 if (fdo_flags & FDO_ALL)
1242 foldOpenCursor();
1243 }
1244#endif
1245
1246 /*
1247 * Before redrawing, make sure w_topline is correct, and w_leftcol
1248 * if lines don't wrap, and w_skipcol if lines wrap.
1249 */
1250 update_topline();
1251 validate_cursor();
1252
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001253 if (VIsual_active)
1254 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001255 else if (must_redraw)
Bram Moolenaara338adc2018-01-31 20:51:47 +01001256 {
1257 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001258 update_screen(0);
Bram Moolenaara338adc2018-01-31 20:51:47 +01001259 mch_enable_flush();
1260 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001261 else if (redraw_cmdline || clear_cmdline)
1262 showmode();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001263 redraw_statuslines();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001264#ifdef FEAT_TITLE
1265 if (need_maketitle)
1266 maketitle();
1267#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001268#ifdef FEAT_VIMINFO
1269 curbuf->b_last_used = vim_time();
1270#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001271 /* display message after redraw */
1272 if (keep_msg != NULL)
1273 {
1274 char_u *p;
1275
1276 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001277 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1278 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001279 p = keep_msg;
1280 msg_attr(p, keep_msg_attr);
1281 vim_free(p);
1282 }
1283 if (need_fileinfo) /* show file info after redraw */
1284 {
1285 fileinfo(FALSE, TRUE, FALSE);
1286 need_fileinfo = FALSE;
1287 }
1288
1289 emsg_on_display = FALSE; /* can delete error message now */
1290 did_emsg = FALSE;
1291 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001292 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001293 showruler(FALSE);
1294
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001295# if defined(FEAT_CONCEAL)
1296 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001297 && (conceal_old_cursor_line != conceal_new_cursor_line
1298 || conceal_cursor_line(curwin)
1299 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001300 {
Bram Moolenaara338adc2018-01-31 20:51:47 +01001301 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */
Bram Moolenaarc2b4c622011-02-15 16:29:59 +01001302 if (conceal_old_cursor_line != conceal_new_cursor_line
1303 && conceal_old_cursor_line
1304 <= curbuf->b_ml.ml_line_count)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001305 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001306 update_single_line(curwin, conceal_new_cursor_line);
Bram Moolenaara338adc2018-01-31 20:51:47 +01001307 mch_enable_flush();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001308 curwin->w_valid &= ~VALID_CROW;
1309 }
1310# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001311 setcursor();
1312 cursor_on();
1313
1314 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001315
1316#ifdef STARTUPTIME
1317 /* Now that we have drawn the first screen all the startup stuff
1318 * has been done, close any file for startup messages. */
1319 if (time_fd != NULL)
1320 {
1321 TIME_MSG("first screen update");
1322 TIME_MSG("--- VIM STARTED ---");
1323 fclose(time_fd);
1324 time_fd = NULL;
1325 }
1326#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001327 }
1328#ifdef FEAT_GUI
1329 if (need_mouse_correct)
1330 gui_mouse_correct();
1331#endif
1332
1333 /*
1334 * Update w_curswant if w_set_curswant has been set.
1335 * Postponed until here to avoid computing w_virtcol too often.
1336 */
1337 update_curswant();
1338
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001339#ifdef FEAT_EVAL
1340 /*
1341 * May perform garbage collection when waiting for a character, but
1342 * only at the very toplevel. Otherwise we may be using a List or
1343 * Dict internally somewhere.
1344 * "may_garbage_collect" is reset in vgetc() which is invoked through
1345 * do_exmode() and normal_cmd().
1346 */
1347 may_garbage_collect = (!cmdwin && !noexmode);
1348#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001349 /*
1350 * If we're invoked as ex, do a round of ex commands.
1351 * Otherwise, get and execute a normal mode command.
1352 */
1353 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001354 {
1355 if (noexmode) /* End of ":global/path/visual" commands */
1356 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001357 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001358 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001359 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001360 {
1361#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02001362 if (term_use_loop()
Bram Moolenaaraaa8a352017-08-05 20:17:00 +02001363 && oa.op_type == OP_NOP && oa.regname == NUL
1364 && !VIsual_active)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001365 {
1366 /* If terminal_loop() returns OK we got a key that is handled
Bram Moolenaar6d819742017-08-06 14:57:49 +02001367 * in Normal model. With FAIL we first need to position the
1368 * cursor and the screen needs to be redrawn. */
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001369 if (terminal_loop(TRUE) == OK)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001370 normal_cmd(&oa, TRUE);
1371 }
1372 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001373#endif
Bram Moolenaar423802d2017-07-30 16:52:24 +02001374 normal_cmd(&oa, TRUE);
Bram Moolenaar938783d2017-07-16 20:13:26 +02001375 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001376 }
1377}
1378
1379
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001380#if defined(USE_XSMP) || defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001381/*
1382 * Exit, but leave behind swap files for modified buffers.
1383 */
1384 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001385getout_preserve_modified(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001386{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001387# if defined(SIGHUP) && defined(SIG_IGN)
1388 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1389 * makes Vim exit and then handling SIGHUP causes various reentrance
1390 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001391 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001392# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001393
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001394 ml_close_notmod(); /* close all not-modified buffers */
1395 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1396 ml_close_all(FALSE); /* close all memfiles, without deleting */
1397 getout(exitval); /* exit Vim properly */
1398}
1399#endif
1400
1401
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001402/*
1403 * Exit properly.
1404 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001405 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001406getout(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001407{
1408#ifdef FEAT_AUTOCMD
1409 buf_T *buf;
1410 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001411 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001412#endif
1413
1414 exiting = TRUE;
1415
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001416 /* When running in Ex mode an error causes us to exit with a non-zero exit
1417 * code. POSIX requires this, although it's not 100% clear from the
1418 * standard. */
1419 if (exmode_active)
1420 exitval += ex_exitval;
1421
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001422 /* Position the cursor on the last screen line, below all the text */
1423#ifdef FEAT_GUI
1424 if (!gui.in_use)
1425#endif
1426 windgoto((int)Rows - 1, 0);
1427
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001428#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1429 /* Optionally print hashtable efficiency. */
1430 hash_debug_results();
1431#endif
1432
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001433#ifdef FEAT_GUI
1434 msg_didany = FALSE;
1435#endif
1436
1437#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001438 if (get_vim_var_nr(VV_DYING) <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001439 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001440 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001441 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001442 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001443 next_tp = tp->tp_next;
Bram Moolenaar29323592016-07-24 22:04:11 +02001444 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001445 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001446 if (wp->w_buffer == NULL)
1447 /* Autocmd must have close the buffer already, skip. */
1448 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001449 buf = wp->w_buffer;
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001450 if (CHANGEDTICK(buf) != -1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001451 {
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001452 bufref_T bufref;
1453
1454 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001455 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1456 buf->b_fname, FALSE, buf);
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001457 if (bufref_valid(&bufref))
1458 CHANGEDTICK(buf) = -1; /* note we did it already */
1459
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001460 /* start all over, autocommands may mess up the lists */
1461 next_tp = first_tabpage;
1462 break;
1463 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001464 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001465 }
Bram Moolenaar33aec762006-01-22 23:30:12 +00001466
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001467 /* Trigger BufUnload for buffers that are loaded */
Bram Moolenaar29323592016-07-24 22:04:11 +02001468 FOR_ALL_BUFFERS(buf)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001469 if (buf->b_ml.ml_mfp != NULL)
1470 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001471 bufref_T bufref;
1472
1473 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001474 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001475 FALSE, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001476 if (!bufref_valid(&bufref))
1477 /* autocmd deleted the buffer */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001478 break;
1479 }
1480 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1481 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001482#endif
1483
1484#ifdef FEAT_VIMINFO
1485 if (*p_viminfo != NUL)
1486 /* Write out the registers, history, marks etc, to the viminfo file */
1487 write_viminfo(NULL, FALSE);
1488#endif
1489
1490#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001491 if (get_vim_var_nr(VV_DYING) <= 1)
1492 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001493#endif
1494
Bram Moolenaar05159a02005-02-26 23:04:13 +00001495#ifdef FEAT_PROFILE
1496 profile_dump();
1497#endif
1498
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001499 if (did_emsg
1500#ifdef FEAT_GUI
1501 || (gui.in_use && msg_didany && p_verbose > 0)
1502#endif
1503 )
1504 {
1505 /* give the user a chance to read the (error) message */
1506 no_wait_return = FALSE;
1507 wait_return(FALSE);
1508 }
1509
1510#ifdef FEAT_AUTOCMD
1511 /* Position the cursor again, the autocommands may have moved it */
1512# ifdef FEAT_GUI
1513 if (!gui.in_use)
1514# endif
1515 windgoto((int)Rows - 1, 0);
1516#endif
1517
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001518#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar65edff82016-02-21 16:40:11 +01001519 job_stop_on_exit();
1520#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001521#ifdef FEAT_LUA
1522 lua_end();
1523#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001524#ifdef FEAT_MZSCHEME
1525 mzscheme_end();
1526#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001527#ifdef FEAT_TCL
1528 tcl_end();
1529#endif
1530#ifdef FEAT_RUBY
1531 ruby_end();
1532#endif
1533#ifdef FEAT_PYTHON
1534 python_end();
1535#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001536#ifdef FEAT_PYTHON3
1537 python3_end();
1538#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001539#ifdef FEAT_PERL
1540 perl_end();
1541#endif
1542#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1543 iconv_end();
1544#endif
1545#ifdef FEAT_NETBEANS_INTG
1546 netbeans_end();
1547#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001548#ifdef FEAT_CSCOPE
1549 cs_end();
1550#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001551#ifdef FEAT_EVAL
1552 if (garbage_collect_at_exit)
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02001553 garbage_collect(FALSE);
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001554#endif
Bram Moolenaar14993322014-09-09 12:25:33 +02001555#if defined(WIN32) && defined(FEAT_MBYTE)
1556 free_cmd_argsW();
1557#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001558
1559 mch_exit(exitval);
1560}
1561
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001562#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1563/*
1564 * Setup to use the current locale (for ctype() and many other things).
1565 */
1566 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001567init_locale(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001568{
1569 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001570
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001571# ifdef FEAT_GUI_GTK
1572 /* Tell Gtk not to change our locale settings. */
1573 gtk_disable_setlocale();
1574# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001575# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1576 /* Make sure strtod() uses a decimal point, not a comma. */
1577 setlocale(LC_NUMERIC, "C");
1578# endif
1579
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001580# ifdef WIN32
1581 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1582 * text while it's expecting text in the current locale. This call avoids
1583 * that. */
1584 setlocale(LC_CTYPE, "C");
1585# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001586
1587# ifdef FEAT_GETTEXT
1588 {
1589 int mustfree = FALSE;
1590 char_u *p;
1591
1592# ifdef DYNAMIC_GETTEXT
1593 /* Initialize the gettext library */
Bram Moolenaar286eacd2016-01-16 18:05:50 +01001594 dyn_libintl_init();
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001595# endif
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001596 /* expand_env() doesn't work yet, because g_chartab[] is not
1597 * initialized yet, call vim_getenv() directly */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001598 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1599 if (p != NULL && *p != NUL)
1600 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001601 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001602 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1603 }
1604 if (mustfree)
1605 vim_free(p);
1606 textdomain(VIMPACKAGE);
1607 }
1608# endif
1609}
1610#endif
1611
1612/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001613 * Get the name of the display, before gui_prepare() removes it from
1614 * argv[]. Used for the xterm-clipboard display.
1615 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001616 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001617 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001618 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001619early_arg_scan(mparm_T *parmp UNUSED)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001620{
Bram Moolenaar03005972008-11-20 13:12:36 +00001621#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1622 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001623 int argc = parmp->argc;
1624 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001625 int i;
1626
1627 for (i = 1; i < argc; i++)
1628 {
1629 if (STRCMP(argv[i], "--") == 0)
1630 break;
1631# ifdef FEAT_XCLIPBOARD
1632 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001633# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001634 || STRICMP(argv[i], "--display") == 0
1635# endif
1636 )
1637 {
1638 if (i == argc - 1)
1639 mainerr_arg_missing((char_u *)argv[i]);
1640 xterm_display = argv[++i];
1641 }
1642# endif
1643# ifdef FEAT_CLIENTSERVER
1644 else if (STRICMP(argv[i], "--servername") == 0)
1645 {
1646 if (i == argc - 1)
1647 mainerr_arg_missing((char_u *)argv[i]);
1648 parmp->serverName_arg = (char_u *)argv[++i];
1649 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001650 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001651 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001652 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001653 {
1654 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001655# ifdef FEAT_GUI
1656 if (strstr(argv[i], "-wait") != 0)
1657 /* don't fork() when starting the GUI to edit files ourself */
1658 gui.dofork = FALSE;
1659# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001660 }
1661# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001662
1663# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1664# ifdef FEAT_GUI_W32
1665 else if (STRICMP(argv[i], "--windowid") == 0)
1666# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001667 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001668# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001669 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001670 long_u id;
1671 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001672
1673 if (i == argc - 1)
1674 mainerr_arg_missing((char_u *)argv[i]);
1675 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001676 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001677 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001678 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001679 if (count != 1)
1680 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1681 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001682# ifdef FEAT_GUI_W32
1683 win_socket_id = id;
1684# else
1685 gtk_socket_id = id;
1686# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001687 i++;
1688 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001689# endif
1690# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001691 else if (STRICMP(argv[i], "--echo-wid") == 0)
1692 echo_wid_arg = TRUE;
1693# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001694# ifndef FEAT_NETBEANS_INTG
1695 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001696 {
1697 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1698 mch_exit(2);
1699 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001700# endif
1701
Bram Moolenaar58d98232005-07-23 22:25:46 +00001702 }
1703#endif
1704}
1705
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001706#ifndef NO_VIM_MAIN
1707/*
1708 * Get a (optional) count for a Vim argument.
1709 */
1710 static int
1711get_number_arg(
1712 char_u *p, /* pointer to argument */
1713 int *idx, /* index in argument, is incremented */
1714 int def) /* default value */
1715{
1716 if (vim_isdigit(p[*idx]))
1717 {
1718 def = atoi((char *)&(p[*idx]));
1719 while (vim_isdigit(p[*idx]))
1720 *idx = *idx + 1;
1721 }
1722 return def;
1723}
1724
1725/*
1726 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1727 * If the executable name starts with "r" we disable shell commands.
1728 * If the next character is "e" we run in Easy mode.
1729 * If the next character is "g" we run the GUI version.
1730 * If the next characters are "view" we start in readonly mode.
1731 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1732 * If the next characters are "ex" we start in Ex mode. If it's followed
1733 * by "im" use improved Ex mode.
1734 */
1735 static void
1736parse_command_name(mparm_T *parmp)
1737{
1738 char_u *initstr;
1739
1740 initstr = gettail((char_u *)parmp->argv[0]);
1741
Bram Moolenaard0573012017-10-28 21:11:06 +02001742#ifdef FEAT_GUI_MAC
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001743 /* An issue has been seen when launching Vim in such a way that
1744 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1745 * executable or a symbolic link of it. Until this issue is resolved
1746 * we prohibit the GUI from being used.
1747 */
1748 if (STRCMP(initstr, parmp->argv[0]) == 0)
1749 disallow_gui = TRUE;
1750
1751 /* TODO: On MacOS X default to gui if argv[0] ends in:
1752 * /Vim.app/Contents/MacOS/Vim */
1753#endif
1754
1755#ifdef FEAT_EVAL
1756 set_vim_var_string(VV_PROGNAME, initstr, -1);
Bram Moolenaar08cab962017-03-04 14:37:18 +01001757 set_progpath((char_u *)parmp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001758#endif
1759
1760 if (TOLOWER_ASC(initstr[0]) == 'r')
1761 {
1762 restricted = TRUE;
1763 ++initstr;
1764 }
1765
1766 /* Use evim mode for "evim" and "egvim", not for "editor". */
1767 if (TOLOWER_ASC(initstr[0]) == 'e'
1768 && (TOLOWER_ASC(initstr[1]) == 'v'
1769 || TOLOWER_ASC(initstr[1]) == 'g'))
1770 {
1771#ifdef FEAT_GUI
1772 gui.starting = TRUE;
1773#endif
1774 parmp->evim_mode = TRUE;
1775 ++initstr;
1776 }
1777
1778 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1779 if (TOLOWER_ASC(initstr[0]) == 'g')
1780 {
1781 main_start_gui();
1782#ifdef FEAT_GUI
1783 ++initstr;
1784#endif
1785 }
1786
1787 if (STRNICMP(initstr, "view", 4) == 0)
1788 {
1789 readonlymode = TRUE;
1790 curbuf->b_p_ro = TRUE;
1791 p_uc = 10000; /* don't update very often */
1792 initstr += 4;
1793 }
1794 else if (STRNICMP(initstr, "vim", 3) == 0)
1795 initstr += 3;
1796
1797 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1798 if (STRICMP(initstr, "diff") == 0)
1799 {
1800#ifdef FEAT_DIFF
1801 parmp->diff_mode = TRUE;
1802#else
1803 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1804 mch_errmsg("\n");
1805 mch_exit(2);
1806#endif
1807 }
1808
1809 if (STRNICMP(initstr, "ex", 2) == 0)
1810 {
1811 if (STRNICMP(initstr + 2, "im", 2) == 0)
1812 exmode_active = EXMODE_VIM;
1813 else
1814 exmode_active = EXMODE_NORMAL;
1815 change_compatible(TRUE); /* set 'compatible' */
1816 }
1817}
1818
Bram Moolenaar58d98232005-07-23 22:25:46 +00001819/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001820 * Scan the command line arguments.
1821 */
1822 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001823command_line_scan(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001824{
1825 int argc = parmp->argc;
1826 char **argv = parmp->argv;
1827 int argv_idx; /* index in argv[n][] */
1828 int had_minmin = FALSE; /* found "--" argument */
1829 int want_argument; /* option argument with argument */
1830 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001831 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001832 long n;
1833
1834 --argc;
1835 ++argv;
1836 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1837 while (argc > 0)
1838 {
1839 /*
1840 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1841 */
1842 if (argv[0][0] == '+' && !had_minmin)
1843 {
1844 if (parmp->n_commands >= MAX_ARG_CMDS)
1845 mainerr(ME_EXTRA_CMD, NULL);
1846 argv_idx = -1; /* skip to next argument */
1847 if (argv[0][1] == NUL)
1848 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1849 else
1850 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1851 }
1852
1853 /*
1854 * Optional argument.
1855 */
1856 else if (argv[0][0] == '-' && !had_minmin)
1857 {
1858 want_argument = FALSE;
1859 c = argv[0][argv_idx++];
1860#ifdef VMS
1861 /*
1862 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1863 * and "-/X" as "-X".
1864 */
1865 if (c == '/')
1866 {
1867 c = argv[0][argv_idx++];
1868 c = TOUPPER_ASC(c);
1869 }
1870 else
1871 c = TOLOWER_ASC(c);
1872#endif
1873 switch (c)
1874 {
1875 case NUL: /* "vim -" read from stdin */
1876 /* "ex -" silent mode */
1877 if (exmode_active)
1878 silent_mode = TRUE;
1879 else
1880 {
1881 if (parmp->edit_type != EDIT_NONE)
1882 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1883 parmp->edit_type = EDIT_STDIN;
1884 read_cmd_fd = 2; /* read from stderr instead of stdin */
1885 }
1886 argv_idx = -1; /* skip to next argument */
1887 break;
1888
1889 case '-': /* "--" don't take any more option arguments */
1890 /* "--help" give help message */
1891 /* "--version" give version message */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001892 /* "--clean" clean context */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001893 /* "--literal" take files literally */
1894 /* "--nofork" don't fork */
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001895 /* "--not-a-term" don't warn for not a term */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001896 /* "--ttyfail" exit if not a term */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001897 /* "--noplugin[s]" skip plugins */
1898 /* "--cmd <cmd>" execute cmd before vimrc */
1899 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1900 usage();
1901 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1902 {
1903 Columns = 80; /* need to init Columns */
1904 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1905 list_version();
1906 msg_putchar('\n');
1907 msg_didout = FALSE;
1908 mch_exit(0);
1909 }
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001910 else if (STRNICMP(argv[0] + argv_idx, "clean", 5) == 0)
1911 {
1912 parmp->use_vimrc = (char_u *)"DEFAULTS";
Bram Moolenaar07268702018-03-01 21:57:32 +01001913 parmp->clean = TRUE;
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001914 set_option_value((char_u *)"vif", 0L, (char_u *)"NONE", 0);
1915 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001916 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1917 {
Bram Moolenaar53076832015-12-31 19:53:21 +01001918#ifdef EXPAND_FILENAMES
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001919 parmp->literal = TRUE;
1920#endif
1921 }
1922 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1923 {
1924#ifdef FEAT_GUI
1925 gui.dofork = FALSE; /* don't fork() when starting GUI */
1926#endif
1927 }
1928 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1929 p_lpl = FALSE;
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001930 else if (STRNICMP(argv[0] + argv_idx, "not-a-term", 10) == 0)
1931 parmp->not_a_term = TRUE;
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001932 else if (STRNICMP(argv[0] + argv_idx, "ttyfail", 7) == 0)
1933 parmp->tty_fail = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001934 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1935 {
1936 want_argument = TRUE;
1937 argv_idx += 3;
1938 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001939 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1940 {
1941 want_argument = TRUE;
1942 argv_idx += 11;
1943 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001944#ifdef FEAT_CLIENTSERVER
1945 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1946 ; /* already processed -- no arg */
1947 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1948 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1949 {
1950 /* already processed -- snatch the following arg */
1951 if (argc > 1)
1952 {
1953 --argc;
1954 ++argv;
1955 }
1956 }
1957#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001958#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1959# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001960 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001961# else
1962 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1963# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001964 {
1965 /* already processed -- snatch the following arg */
1966 if (argc > 1)
1967 {
1968 --argc;
1969 ++argv;
1970 }
1971 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001972#endif
1973#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001974 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1975 {
1976 /* already processed, skip */
1977 }
1978#endif
1979 else
1980 {
1981 if (argv[0][argv_idx])
1982 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1983 had_minmin = TRUE;
1984 }
1985 if (!want_argument)
1986 argv_idx = -1; /* skip to next argument */
1987 break;
1988
1989 case 'A': /* "-A" start in Arabic mode */
1990#ifdef FEAT_ARABIC
1991 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1992#else
1993 mch_errmsg(_(e_noarabic));
1994 mch_exit(2);
1995#endif
1996 break;
1997
1998 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001999 /* Needs to be effective before expanding file names, because
2000 * for Win32 this makes us edit a shortcut file itself,
2001 * instead of the file it links to. */
2002 set_options_bin(curbuf->b_p_bin, 1, 0);
2003 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002004 break;
2005
2006 case 'C': /* "-C" Compatible */
2007 change_compatible(TRUE);
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02002008 has_dash_c_arg = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002009 break;
2010
2011 case 'e': /* "-e" Ex mode */
2012 exmode_active = EXMODE_NORMAL;
2013 break;
2014
2015 case 'E': /* "-E" Improved Ex mode */
2016 exmode_active = EXMODE_VIM;
2017 break;
2018
2019 case 'f': /* "-f" GUI: run in foreground. Amiga: open
2020 window directly, not with newcli */
2021#ifdef FEAT_GUI
2022 gui.dofork = FALSE; /* don't fork() when starting GUI */
2023#endif
2024 break;
2025
2026 case 'g': /* "-g" start GUI */
2027 main_start_gui();
2028 break;
2029
2030 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
2031#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002032 p_fkmap = TRUE;
2033 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002034#else
2035 mch_errmsg(_(e_nofarsi));
2036 mch_exit(2);
2037#endif
2038 break;
2039
2040 case 'h': /* "-h" give help message */
2041#ifdef FEAT_GUI_GNOME
2042 /* Tell usage() to exit for "gvim". */
2043 gui.starting = FALSE;
2044#endif
2045 usage();
2046 break;
2047
2048 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
2049#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002050 p_hkmap = TRUE;
2051 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002052#else
2053 mch_errmsg(_(e_nohebrew));
2054 mch_exit(2);
2055#endif
2056 break;
2057
2058 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
2059#ifdef FEAT_LISP
2060 set_option_value((char_u *)"lisp", 1L, NULL, 0);
2061 p_sm = TRUE;
2062#endif
2063 break;
2064
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002065 case 'M': /* "-M" no changes or writing of files */
2066 reset_modifiable();
2067 /* FALLTHROUGH */
2068
2069 case 'm': /* "-m" no writing of files */
2070 p_write = FALSE;
2071 break;
2072
2073 case 'y': /* "-y" easy mode */
2074#ifdef FEAT_GUI
2075 gui.starting = TRUE; /* start GUI a bit later */
2076#endif
2077 parmp->evim_mode = TRUE;
2078 break;
2079
2080 case 'N': /* "-N" Nocompatible */
2081 change_compatible(FALSE);
2082 break;
2083
2084 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002085#ifdef FEAT_NETBEANS_INTG
2086 /* checking for "-nb", netbeans parameters */
2087 if (argv[0][argv_idx] == 'b')
2088 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002089 netbeansArg = argv[0];
2090 argv_idx = -1; /* skip to next argument */
2091 }
2092 else
2093#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002094 parmp->no_swap_file = TRUE;
2095 break;
2096
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002097 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002098#ifdef TARGET_API_MAC_OSX
2099 /* For some reason on MacOS X, an argument like:
2100 -psn_0_10223617 is passed in when invoke from Finder
2101 or with the 'open' command */
2102 if (argv[0][argv_idx] == 's')
2103 {
2104 argv_idx = -1; /* bypass full -psn */
2105 main_start_gui();
2106 break;
2107 }
2108#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002109 /* default is 0: open window for each file */
2110 parmp->window_count = get_number_arg((char_u *)argv[0],
2111 &argv_idx, 0);
2112 parmp->window_layout = WIN_TABS;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002113 break;
2114
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002115 case 'o': /* "-o[N]" open N horizontal split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002116 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002117 parmp->window_count = get_number_arg((char_u *)argv[0],
2118 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002119 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002120 break;
2121
2122 case 'O': /* "-O[N]" open N vertical split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002123 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002124 parmp->window_count = get_number_arg((char_u *)argv[0],
2125 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002126 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002127 break;
2128
2129#ifdef FEAT_QUICKFIX
2130 case 'q': /* "-q" QuickFix mode */
2131 if (parmp->edit_type != EDIT_NONE)
2132 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2133 parmp->edit_type = EDIT_QF;
2134 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2135 {
2136 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2137 argv_idx = -1;
2138 }
2139 else if (argc > 1) /* "-q {errorfile}" */
2140 want_argument = TRUE;
2141 break;
2142#endif
2143
2144 case 'R': /* "-R" readonly mode */
2145 readonlymode = TRUE;
2146 curbuf->b_p_ro = TRUE;
2147 p_uc = 10000; /* don't update very often */
2148 break;
2149
2150 case 'r': /* "-r" recovery mode */
2151 case 'L': /* "-L" recovery mode */
2152 recoverymode = 1;
2153 break;
2154
2155 case 's':
2156 if (exmode_active) /* "-s" silent (batch) mode */
2157 silent_mode = TRUE;
2158 else /* "-s {scriptin}" read from script file */
2159 want_argument = TRUE;
2160 break;
2161
2162 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2163 if (parmp->edit_type != EDIT_NONE)
2164 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2165 parmp->edit_type = EDIT_TAG;
2166 if (argv[0][argv_idx]) /* "-t{tag}" */
2167 {
2168 parmp->tagname = (char_u *)argv[0] + argv_idx;
2169 argv_idx = -1;
2170 }
2171 else /* "-t {tag}" */
2172 want_argument = TRUE;
2173 break;
2174
2175#ifdef FEAT_EVAL
2176 case 'D': /* "-D" Debugging */
2177 parmp->use_debug_break_level = 9999;
2178 break;
2179#endif
2180#ifdef FEAT_DIFF
2181 case 'd': /* "-d" 'diff' */
2182# ifdef AMIGA
2183 /* check for "-dev {device}" */
2184 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2185 want_argument = TRUE;
2186 else
2187# endif
2188 parmp->diff_mode = TRUE;
2189 break;
2190#endif
2191 case 'V': /* "-V{N}" Verbose level */
2192 /* default is 10: a little bit verbose */
2193 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2194 if (argv[0][argv_idx] != NUL)
2195 {
2196 set_option_value((char_u *)"verbosefile", 0L,
2197 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002198 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002199 }
2200 break;
2201
2202 case 'v': /* "-v" Vi-mode (as if called "vi") */
2203 exmode_active = 0;
2204#ifdef FEAT_GUI
2205 gui.starting = FALSE; /* don't start GUI */
2206#endif
2207 break;
2208
2209 case 'w': /* "-w{number}" set window height */
2210 /* "-w {scriptout}" write to script */
2211 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2212 {
2213 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2214 set_option_value((char_u *)"window", n, NULL, 0);
2215 break;
2216 }
2217 want_argument = TRUE;
2218 break;
2219
2220#ifdef FEAT_CRYPT
2221 case 'x': /* "-x" encrypted reading/writing of files */
2222 parmp->ask_for_key = TRUE;
2223 break;
2224#endif
2225
2226 case 'X': /* "-X" don't connect to X server */
2227#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2228 x_no_connect = TRUE;
2229#endif
2230 break;
2231
2232 case 'Z': /* "-Z" restricted mode */
2233 restricted = TRUE;
2234 break;
2235
2236 case 'c': /* "-c{command}" or "-c {command}" execute
2237 command */
2238 if (argv[0][argv_idx] != NUL)
2239 {
2240 if (parmp->n_commands >= MAX_ARG_CMDS)
2241 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002242 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2243 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002244 argv_idx = -1;
2245 break;
2246 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002247 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002248 case 'S': /* "-S {file}" execute Vim script */
2249 case 'i': /* "-i {viminfo}" use for viminfo */
2250#ifndef FEAT_DIFF
2251 case 'd': /* "-d {device}" device (for Amiga) */
2252#endif
2253 case 'T': /* "-T {terminal}" terminal name */
2254 case 'u': /* "-u {vimrc}" vim inits file */
2255 case 'U': /* "-U {gvimrc}" gvim inits file */
2256 case 'W': /* "-W {scriptout}" overwrite */
2257#ifdef FEAT_GUI_W32
2258 case 'P': /* "-P {parent title}" MDI parent */
2259#endif
2260 want_argument = TRUE;
2261 break;
2262
2263 default:
2264 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2265 }
2266
2267 /*
2268 * Handle option arguments with argument.
2269 */
2270 if (want_argument)
2271 {
2272 /*
2273 * Check for garbage immediately after the option letter.
2274 */
2275 if (argv[0][argv_idx] != NUL)
2276 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2277
2278 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002279 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002280 mainerr_arg_missing((char_u *)argv[0]);
2281 ++argv;
2282 argv_idx = -1;
2283
2284 switch (c)
2285 {
2286 case 'c': /* "-c {command}" execute command */
2287 case 'S': /* "-S {file}" execute Vim script */
2288 if (parmp->n_commands >= MAX_ARG_CMDS)
2289 mainerr(ME_EXTRA_CMD, NULL);
2290 if (c == 'S')
2291 {
2292 char *a;
2293
2294 if (argc < 1)
2295 /* "-S" without argument: use default session file
2296 * name. */
2297 a = SESSION_FILE;
2298 else if (argv[0][0] == '-')
2299 {
2300 /* "-S" followed by another option: use default
2301 * session file name. */
2302 a = SESSION_FILE;
2303 ++argc;
2304 --argv;
2305 }
2306 else
2307 a = argv[0];
2308 p = alloc((unsigned)(STRLEN(a) + 4));
2309 if (p == NULL)
2310 mch_exit(2);
2311 sprintf((char *)p, "so %s", a);
2312 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2313 parmp->commands[parmp->n_commands++] = p;
2314 }
2315 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002316 parmp->commands[parmp->n_commands++] =
2317 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002318 break;
2319
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002320 case '-':
2321 if (argv[-1][2] == 'c')
2322 {
2323 /* "--cmd {command}" execute command */
2324 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2325 mainerr(ME_EXTRA_CMD, NULL);
2326 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002327 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002328 }
2329 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002330 break;
2331
2332 /* case 'd': -d {device} is handled in mch_check_win() for the
2333 * Amiga */
2334
2335#ifdef FEAT_QUICKFIX
2336 case 'q': /* "-q {errorfile}" QuickFix mode */
2337 parmp->use_ef = (char_u *)argv[0];
2338 break;
2339#endif
2340
2341 case 'i': /* "-i {viminfo}" use for viminfo */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002342 set_option_value((char_u *)"vif", 0L, (char_u *)argv[0], 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002343 break;
2344
2345 case 's': /* "-s {scriptin}" read from script file */
2346 if (scriptin[0] != NULL)
2347 {
2348scripterror:
2349 mch_errmsg(_("Attempt to open script file again: \""));
2350 mch_errmsg(argv[-1]);
2351 mch_errmsg(" ");
2352 mch_errmsg(argv[0]);
2353 mch_errmsg("\"\n");
2354 mch_exit(2);
2355 }
2356 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2357 {
2358 mch_errmsg(_("Cannot open for reading: \""));
2359 mch_errmsg(argv[0]);
2360 mch_errmsg("\"\n");
2361 mch_exit(2);
2362 }
2363 if (save_typebuf() == FAIL)
2364 mch_exit(2); /* out of memory */
2365 break;
2366
2367 case 't': /* "-t {tag}" */
2368 parmp->tagname = (char_u *)argv[0];
2369 break;
2370
2371 case 'T': /* "-T {terminal}" terminal name */
2372 /*
2373 * The -T term argument is always available and when
2374 * HAVE_TERMLIB is supported it overrides the environment
2375 * variable TERM.
2376 */
2377#ifdef FEAT_GUI
2378 if (term_is_gui((char_u *)argv[0]))
2379 gui.starting = TRUE; /* start GUI a bit later */
2380 else
2381#endif
2382 parmp->term = (char_u *)argv[0];
2383 break;
2384
2385 case 'u': /* "-u {vimrc}" vim inits file */
2386 parmp->use_vimrc = (char_u *)argv[0];
2387 break;
2388
2389 case 'U': /* "-U {gvimrc}" gvim inits file */
2390#ifdef FEAT_GUI
2391 use_gvimrc = (char_u *)argv[0];
2392#endif
2393 break;
2394
2395 case 'w': /* "-w {nr}" 'window' value */
2396 /* "-w {scriptout}" append to script file */
2397 if (vim_isdigit(*((char_u *)argv[0])))
2398 {
2399 argv_idx = 0;
2400 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2401 set_option_value((char_u *)"window", n, NULL, 0);
2402 argv_idx = -1;
2403 break;
2404 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002405 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002406 case 'W': /* "-W {scriptout}" overwrite script file */
2407 if (scriptout != NULL)
2408 goto scripterror;
2409 if ((scriptout = mch_fopen(argv[0],
2410 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2411 {
2412 mch_errmsg(_("Cannot open for script output: \""));
2413 mch_errmsg(argv[0]);
2414 mch_errmsg("\"\n");
2415 mch_exit(2);
2416 }
2417 break;
2418
2419#ifdef FEAT_GUI_W32
2420 case 'P': /* "-P {parent title}" MDI parent */
2421 gui_mch_set_parent(argv[0]);
2422 break;
2423#endif
2424 }
2425 }
2426 }
2427
2428 /*
2429 * File name argument.
2430 */
2431 else
2432 {
2433 argv_idx = -1; /* skip to next argument */
2434
2435 /* Check for only one type of editing. */
2436 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2437 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2438 parmp->edit_type = EDIT_FILE;
2439
2440#ifdef MSWIN
2441 /* Remember if the argument was a full path before changing
2442 * slashes to backslashes. */
2443 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2444 parmp->full_path = TRUE;
2445#endif
2446
2447 /* Add the file to the global argument list. */
2448 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2449 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2450 mch_exit(2);
2451#ifdef FEAT_DIFF
2452 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2453 && !mch_isdir(alist_name(&GARGLIST[0])))
2454 {
2455 char_u *r;
2456
2457 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2458 if (r != NULL)
2459 {
2460 vim_free(p);
2461 p = r;
2462 }
2463 }
2464#endif
2465#if defined(__CYGWIN32__) && !defined(WIN32)
2466 /*
2467 * If vim is invoked by non-Cygwin tools, convert away any
2468 * DOS paths, so things like .swp files are created correctly.
2469 * Look for evidence of non-Cygwin paths before we bother.
2470 * This is only for when using the Unix files.
2471 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002472 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002473 {
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002474 char posix_path[MAXPATHL];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002475
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002476# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002477 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002478# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002479 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002480# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002481 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002482 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002483 if (p == NULL)
2484 mch_exit(2);
2485 }
2486#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002487
2488#ifdef USE_FNAME_CASE
2489 /* Make the case of the file name match the actual file. */
2490 fname_case(p, 0);
2491#endif
2492
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002493 alist_add(&global_alist, p,
Bram Moolenaar53076832015-12-31 19:53:21 +01002494#ifdef EXPAND_FILENAMES
Bram Moolenaar231334e2005-07-25 20:46:57 +00002495 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002496#else
2497 2 /* add buffer number now and use curbuf */
2498#endif
2499 );
2500
2501#if defined(FEAT_MBYTE) && defined(WIN32)
2502 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002503 /* Remember this argument has been added to the argument list.
2504 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002505 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002506# ifdef FEAT_DIFF
2507 parmp->diff_mode
2508# else
2509 FALSE
2510# endif
2511 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002512 }
2513#endif
2514 }
2515
2516 /*
2517 * If there are no more letters after the current "-", go to next
2518 * argument. argv_idx is set to -1 when the current argument is to be
2519 * skipped.
2520 */
2521 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2522 {
2523 --argc;
2524 ++argv;
2525 argv_idx = 1;
2526 }
2527 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002528
2529#ifdef FEAT_EVAL
2530 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2531 * one. */
2532 if (parmp->n_commands > 0)
2533 {
2534 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2535 if (p != NULL)
2536 {
2537 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2538 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2539 vim_free(p);
2540 }
2541 }
2542#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002543}
2544
2545/*
2546 * Print a warning if stdout is not a terminal.
Bram Moolenaar42b23fa2018-02-03 14:46:45 +01002547 * When starting in Ex mode and commands come from a file, set silent_mode.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002548 */
2549 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002550check_tty(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002551{
2552 int input_isatty; /* is active input a terminal? */
2553
2554 input_isatty = mch_input_isatty();
2555 if (exmode_active)
2556 {
2557 if (!input_isatty)
2558 silent_mode = TRUE;
2559 }
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002560 else if (parmp->want_full_screen && (!stdout_isatty || !input_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002561#ifdef FEAT_GUI
2562 /* don't want the delay when started from the desktop */
2563 && !gui.starting
2564#endif
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01002565 && !parmp->not_a_term)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002566 {
2567#ifdef NBDEBUG
2568 /*
2569 * This shouldn't be necessary. But if I run netbeans with the log
2570 * output coming to the console and XOpenDisplay fails, I get vim
2571 * trying to start with input/output to my console tty. This fills my
2572 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002573 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002574 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002575 if (netbeans_active() && (!stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002576 {
2577 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2578 exit(1);
2579 }
2580#endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002581#if defined(WIN3264) && !defined(FEAT_GUI_W32)
2582 if (is_cygpty_used())
2583 {
Bram Moolenaar2a027452017-09-26 19:10:37 +02002584# if defined(FEAT_MBYTE) && defined(HAVE_BIND_TEXTDOMAIN_CODESET) \
2585 && defined(FEAT_GETTEXT)
2586 char *s, *tofree = NULL;
2587
2588 /* Set the encoding of the error message based on $LC_ALL or
2589 * other environment variables instead of 'encoding'.
2590 * Note that the message is shown on a Cygwin terminal (e.g.
2591 * mintty) which encoding is based on $LC_ALL or etc., not the
2592 * current codepage used by normal Win32 console programs. */
Bram Moolenaar9cf39cc2017-09-27 21:46:19 +02002593 tofree = s = (char *)enc_locale_env(NULL);
Bram Moolenaar2a027452017-09-26 19:10:37 +02002594 if (s == NULL)
2595 s = "utf-8"; /* Use "utf-8" by default. */
2596 (void)bind_textdomain_codeset(VIMPACKAGE, s);
2597 vim_free(tofree);
2598# endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002599 mch_errmsg(_("Vim: Error: This version of Vim does not run in a Cygwin terminal\n"));
2600 exit(1);
2601 }
2602#endif
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002603 if (!stdout_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002604 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2605 if (!input_isatty)
2606 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2607 out_flush();
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002608 if (parmp->tty_fail && (!stdout_isatty || !input_isatty))
2609 exit(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002610 if (scriptin[0] == NULL)
2611 ui_delay(2000L, TRUE);
2612 TIME_MSG("Warning delay");
2613 }
2614}
2615
2616/*
2617 * Read text from stdin.
2618 */
2619 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002620read_stdin(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002621{
2622 int i;
2623
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002624#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002625 /* When getting the ATTENTION prompt here, use a dialog */
2626 swap_exists_action = SEA_DIALOG;
2627#endif
2628 no_wait_return = TRUE;
2629 i = msg_didany;
2630 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002631 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002632 no_wait_return = FALSE;
2633 msg_didany = i;
2634 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002635#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002636 check_swap_exists_action();
2637#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002638#if !(defined(AMIGA) || defined(MACOS_X))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002639 /*
2640 * Close stdin and dup it from stderr. Required for GPM to work
2641 * properly, and for running external commands.
2642 * Is there any other system that cannot do this?
2643 */
2644 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002645 ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002646#endif
2647}
2648
2649/*
2650 * Create the requested number of windows and edit buffers in them.
2651 * Also does recovery if "recoverymode" set.
2652 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002653 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002654create_windows(mparm_T *parmp UNUSED)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002655{
Bram Moolenaar89d40322006-08-29 15:30:07 +00002656 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002657 int done = 0;
2658
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002659 /*
2660 * Create the number of windows that was requested.
2661 */
2662 if (parmp->window_count == -1) /* was not set */
2663 parmp->window_count = 1;
2664 if (parmp->window_count == 0)
2665 parmp->window_count = GARGCOUNT;
2666 if (parmp->window_count > 1)
2667 {
2668 /* Don't change the windows if there was a command in .vimrc that
2669 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002670 if (parmp->window_layout == 0)
2671 parmp->window_layout = WIN_HOR;
2672 if (parmp->window_layout == WIN_TABS)
2673 {
2674 parmp->window_count = make_tabpages(parmp->window_count);
2675 TIME_MSG("making tab pages");
2676 }
2677 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002678 {
2679 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002680 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002681 TIME_MSG("making windows");
2682 }
2683 else
2684 parmp->window_count = win_count();
2685 }
2686 else
2687 parmp->window_count = 1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002688
2689 if (recoverymode) /* do recover */
2690 {
2691 msg_scroll = TRUE; /* scroll message up */
2692 ml_recover();
2693 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2694 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002695 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002696 }
2697 else
2698 {
2699 /*
2700 * Open a buffer for windows that don't have one yet.
2701 * Commands in the .vimrc might have loaded a file or split the window.
2702 * Watch out for autocommands that delete a window.
2703 */
2704#ifdef FEAT_AUTOCMD
2705 /*
2706 * Don't execute Win/Buf Enter/Leave autocommands here
2707 */
2708 ++autocmd_no_enter;
2709 ++autocmd_no_leave;
2710#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00002711 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002712 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002713 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002714 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002715 {
2716 if (parmp->window_layout == WIN_TABS)
2717 goto_tabpage(1);
2718 else
2719 curwin = firstwin;
2720 }
2721 else if (parmp->window_layout == WIN_TABS)
2722 {
2723 if (curtab->tp_next == NULL)
2724 break;
2725 goto_tabpage(0);
2726 }
2727 else
2728 {
2729 if (curwin->w_next == NULL)
2730 break;
2731 curwin = curwin->w_next;
2732 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002733 dorewind = FALSE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002734 curbuf = curwin->w_buffer;
2735 if (curbuf->b_ml.ml_mfp == NULL)
2736 {
2737#ifdef FEAT_FOLDING
2738 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2739 if (p_fdls >= 0)
2740 curwin->w_p_fdl = p_fdls;
2741#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002742#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002743 /* When getting the ATTENTION prompt here, use a dialog */
2744 swap_exists_action = SEA_DIALOG;
2745#endif
2746 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002747
2748 /* create memfile, read file */
2749 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002750
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002751#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002752 if (swap_exists_action == SEA_QUIT)
2753 {
2754 if (got_int || only_one_window())
2755 {
2756 /* abort selected or quit and only one window */
2757 did_emsg = FALSE; /* avoid hit-enter prompt */
2758 getout(1);
2759 }
2760 /* We can't close the window, it would disturb what
2761 * happens next. Clear the file name and set the arg
2762 * index to -1 to delete it later. */
2763 setfname(curbuf, NULL, NULL, FALSE);
2764 curwin->w_arg_idx = -1;
2765 swap_exists_action = SEA_NONE;
2766 }
2767 else
2768 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002769#endif
2770#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002771 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002772#endif
2773 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002774 ui_breakcheck();
2775 if (got_int)
2776 {
2777 (void)vgetc(); /* only break the file loading, not the rest */
2778 break;
2779 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002780 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002781 if (parmp->window_layout == WIN_TABS)
2782 goto_tabpage(1);
2783 else
2784 curwin = firstwin;
2785 curbuf = curwin->w_buffer;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002786#ifdef FEAT_AUTOCMD
2787 --autocmd_no_enter;
2788 --autocmd_no_leave;
2789#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002790 }
2791}
2792
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002793 /*
2794 * If opened more than one window, start editing files in the other
2795 * windows. make_windows() has already opened the windows.
2796 */
2797 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002798edit_buffers(
2799 mparm_T *parmp,
2800 char_u *cwd) /* current working dir */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002801{
2802 int arg_idx; /* index in argument list */
2803 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002804 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002805 win_T *win;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002806
2807# ifdef FEAT_AUTOCMD
2808 /*
2809 * Don't execute Win/Buf Enter/Leave autocommands here
2810 */
2811 ++autocmd_no_enter;
2812 ++autocmd_no_leave;
2813# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002814
2815 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2816 if (curwin->w_arg_idx == -1)
2817 {
2818 win_close(curwin, TRUE);
2819 advance = FALSE;
2820 }
2821
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002822 arg_idx = 1;
2823 for (i = 1; i < parmp->window_count; ++i)
2824 {
Bram Moolenaard87c36e2015-04-03 14:56:49 +02002825 if (cwd != NULL)
2826 mch_chdir((char *)cwd);
Bram Moolenaar84212822006-11-07 21:59:47 +00002827 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2828 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002829 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002830 ++arg_idx;
2831 win_close(curwin, TRUE);
2832 advance = FALSE;
2833 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002834 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002835
Bram Moolenaar84212822006-11-07 21:59:47 +00002836 if (advance)
2837 {
2838 if (parmp->window_layout == WIN_TABS)
2839 {
2840 if (curtab->tp_next == NULL) /* just checking */
2841 break;
2842 goto_tabpage(0);
2843 }
2844 else
2845 {
2846 if (curwin->w_next == NULL) /* just checking */
2847 break;
2848 win_enter(curwin->w_next, FALSE);
2849 }
2850 }
2851 advance = TRUE;
2852
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002853 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002854 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002855 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2856 {
2857 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002858 /* Edit file from arg list, if there is one. When "Quit" selected
2859 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002860# ifdef HAS_SWAP_EXISTS_ACTION
2861 swap_exists_did_quit = FALSE;
2862# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002863 (void)do_ecmd(0, arg_idx < GARGCOUNT
2864 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002865 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002866# ifdef HAS_SWAP_EXISTS_ACTION
2867 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002868 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002869 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002870 if (got_int || only_one_window())
2871 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002872 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002873 did_emsg = FALSE; /* avoid hit-enter prompt */
2874 getout(1);
2875 }
2876 win_close(curwin, TRUE);
2877 advance = FALSE;
2878 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002879# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002880 if (arg_idx == GARGCOUNT - 1)
2881 arg_had_last = TRUE;
2882 ++arg_idx;
2883 }
2884 ui_breakcheck();
2885 if (got_int)
2886 {
2887 (void)vgetc(); /* only break the file loading, not the rest */
2888 break;
2889 }
2890 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002891
2892 if (parmp->window_layout == WIN_TABS)
2893 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002894# ifdef FEAT_AUTOCMD
2895 --autocmd_no_enter;
2896# endif
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002897
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002898 /* make the first window the current window */
2899 win = firstwin;
Bram Moolenaar4033c552017-09-16 20:54:51 +02002900#if defined(FEAT_QUICKFIX)
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002901 /* Avoid making a preview window the current window. */
2902 while (win->w_p_pvw)
2903 {
2904 win = win->w_next;
2905 if (win == NULL)
2906 {
2907 win = firstwin;
2908 break;
2909 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002910 }
2911#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002912 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002913
Bram Moolenaar4033c552017-09-16 20:54:51 +02002914#ifdef FEAT_AUTOCMD
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002915 --autocmd_no_leave;
Bram Moolenaar4033c552017-09-16 20:54:51 +02002916#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002917 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002918 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002919 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2920}
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002921
2922/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002923 * Execute the commands from --cmd arguments "cmds[cnt]".
2924 */
2925 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002926exe_pre_commands(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002927{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002928 char_u **cmds = parmp->pre_commands;
2929 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002930 int i;
2931
2932 if (cnt > 0)
2933 {
2934 curwin->w_cursor.lnum = 0; /* just in case.. */
2935 sourcing_name = (char_u *)_("pre-vimrc command line");
2936# ifdef FEAT_EVAL
2937 current_SID = SID_CMDARG;
2938# endif
2939 for (i = 0; i < cnt; ++i)
2940 do_cmdline_cmd(cmds[i]);
2941 sourcing_name = NULL;
2942# ifdef FEAT_EVAL
2943 current_SID = 0;
2944# endif
2945 TIME_MSG("--cmd commands");
2946 }
2947}
2948
2949/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002950 * Execute "+", "-c" and "-S" arguments.
2951 */
2952 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002953exe_commands(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002954{
2955 int i;
2956
2957 /*
2958 * We start commands on line 0, make "vim +/pat file" match a
2959 * pattern on line 1. But don't move the cursor when an autocommand
2960 * with g`" was used.
2961 */
2962 msg_scroll = TRUE;
2963 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2964 curwin->w_cursor.lnum = 0;
2965 sourcing_name = (char_u *)"command line";
2966#ifdef FEAT_EVAL
2967 current_SID = SID_CARG;
2968#endif
2969 for (i = 0; i < parmp->n_commands; ++i)
2970 {
2971 do_cmdline_cmd(parmp->commands[i]);
2972 if (parmp->cmds_tofree[i])
2973 vim_free(parmp->commands[i]);
2974 }
2975 sourcing_name = NULL;
2976#ifdef FEAT_EVAL
2977 current_SID = 0;
2978#endif
2979 if (curwin->w_cursor.lnum == 0)
2980 curwin->w_cursor.lnum = 1;
2981
2982 if (!exmode_active)
2983 msg_scroll = FALSE;
2984
2985#ifdef FEAT_QUICKFIX
2986 /* When started with "-q errorfile" jump to first error again. */
2987 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002988 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002989#endif
2990 TIME_MSG("executing command arguments");
2991}
2992
2993/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002994 * Source startup scripts.
2995 */
2996 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002997source_startup_scripts(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002998{
2999 int i;
3000
3001 /*
3002 * For "evim" source evim.vim first of all, so that the user can overrule
3003 * any things he doesn't like.
3004 */
3005 if (parmp->evim_mode)
3006 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003007 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003008 TIME_MSG("source evim file");
3009 }
3010
3011 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003012 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00003013 * nothing else.
3014 */
3015 if (parmp->use_vimrc != NULL)
3016 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003017 if (STRCMP(parmp->use_vimrc, "DEFAULTS") == 0)
3018 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
3019 else if (STRCMP(parmp->use_vimrc, "NONE") == 0
Bram Moolenaar231334e2005-07-25 20:46:57 +00003020 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00003021 {
3022#ifdef FEAT_GUI
3023 if (use_gvimrc == NULL) /* don't load gvimrc either */
3024 use_gvimrc = parmp->use_vimrc;
3025#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003026 }
3027 else
3028 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003029 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00003030 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
3031 }
3032 }
3033 else if (!silent_mode)
3034 {
3035#ifdef AMIGA
3036 struct Process *proc = (struct Process *)FindTask(0L);
3037 APTR save_winptr = proc->pr_WindowPtr;
3038
3039 /* Avoid a requester here for a volume that doesn't exist. */
3040 proc->pr_WindowPtr = (APTR)-1L;
3041#endif
3042
3043 /*
3044 * Get system wide defaults, if the file name is defined.
3045 */
3046#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003047 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003048#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00003049#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003050 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00003051#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003052
3053 /*
3054 * Try to read initialization commands from the following places:
3055 * - environment variable VIMINIT
3056 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
3057 * - second user vimrc file ($VIM/.vimrc for Dos)
3058 * - environment variable EXINIT
3059 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
3060 * - second user exrc file ($VIM/.exrc for Dos)
3061 * The first that exists is used, the rest is ignored.
3062 */
3063 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
3064 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003065 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003066#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003067 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
3068 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003069#endif
3070#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003071 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
3072 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003073#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02003074#ifdef USR_VIMRC_FILE4
3075 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
3076 DOSO_VIMRC) == FAIL
3077#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003078 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003079 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003080#ifdef USR_EXRC_FILE2
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003081 && do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003082#endif
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02003083 && !has_dash_c_arg)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003084 {
3085 /* When no .vimrc file was found: source defaults.vim. */
3086 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003087 }
3088 }
3089
3090 /*
3091 * Read initialization commands from ".vimrc" or ".exrc" in current
3092 * directory. This is only done if the 'exrc' option is set.
3093 * Because of security reasons we disallow shell and write commands
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003094 * now, except for Unix if the file is owned by the user or 'secure'
Bram Moolenaar58d98232005-07-23 22:25:46 +00003095 * option has been reset in environment of global ".exrc" or ".vimrc".
3096 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3097 * SYS_VIMRC_FILE.
3098 */
3099 if (p_exrc)
3100 {
3101#if defined(UNIX) || defined(VMS)
3102 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3103 if (!file_owned(VIMRC_FILE))
3104#endif
3105 secure = p_secure;
3106
3107 i = FAIL;
3108 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3109 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3110#ifdef USR_VIMRC_FILE2
3111 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3112 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3113#endif
3114#ifdef USR_VIMRC_FILE3
3115 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3116 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3117#endif
3118#ifdef SYS_VIMRC_FILE
3119 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3120 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3121#endif
3122 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003123 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003124
3125 if (i == FAIL)
3126 {
3127#if defined(UNIX) || defined(VMS)
3128 /* if ".exrc" is not owned by user set 'secure' mode */
3129 if (!file_owned(EXRC_FILE))
3130 secure = p_secure;
3131 else
3132 secure = 0;
3133#endif
3134 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3135 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3136#ifdef USR_EXRC_FILE2
3137 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3138 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3139#endif
3140 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003141 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003142 }
3143 }
3144 if (secure == 2)
3145 need_wait_return = TRUE;
3146 secure = 0;
3147#ifdef AMIGA
3148 proc->pr_WindowPtr = save_winptr;
3149#endif
3150 }
3151 TIME_MSG("sourcing vimrc file(s)");
3152}
3153
3154/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003155 * Setup to start using the GUI. Exit with an error when not available.
3156 */
3157 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003158main_start_gui(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003159{
3160#ifdef FEAT_GUI
3161 gui.starting = TRUE; /* start GUI a bit later */
3162#else
3163 mch_errmsg(_(e_nogvim));
3164 mch_errmsg("\n");
3165 mch_exit(2);
3166#endif
3167}
3168
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003169#endif /* NO_VIM_MAIN */
3170
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003171/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003172 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003173 * Returns FAIL if the environment variable was not executed, OK otherwise.
3174 */
3175 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003176process_env(
3177 char_u *env,
3178 int is_viminit) /* when TRUE, called for VIMINIT */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003179{
3180 char_u *initstr;
3181 char_u *save_sourcing_name;
3182 linenr_T save_sourcing_lnum;
3183#ifdef FEAT_EVAL
3184 scid_T save_sid;
3185#endif
3186
3187 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3188 {
3189 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003190 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003191 save_sourcing_name = sourcing_name;
3192 save_sourcing_lnum = sourcing_lnum;
3193 sourcing_name = env;
3194 sourcing_lnum = 0;
3195#ifdef FEAT_EVAL
3196 save_sid = current_SID;
3197 current_SID = SID_ENV;
3198#endif
3199 do_cmdline_cmd(initstr);
3200 sourcing_name = save_sourcing_name;
3201 sourcing_lnum = save_sourcing_lnum;
3202#ifdef FEAT_EVAL
Bram Moolenaar945ec092016-06-08 21:17:43 +02003203 current_SID = save_sid;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003204#endif
3205 return OK;
3206 }
3207 return FAIL;
3208}
3209
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003210#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003211/*
3212 * Return TRUE if we are certain the user owns the file "fname".
3213 * Used for ".vimrc" and ".exrc".
3214 * Use both stat() and lstat() for extra security.
3215 */
3216 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003217file_owned(char *fname)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003218{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003219 stat_T s;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003220# ifdef UNIX
3221 uid_t uid = getuid();
3222# else /* VMS */
3223 uid_t uid = ((getgid() << 16) | getuid());
3224# endif
3225
3226 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3227# ifdef HAVE_LSTAT
3228 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3229# endif
3230 );
3231}
3232#endif
3233
3234/*
3235 * Give an error message main_errors["n"] and exit.
3236 */
3237 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003238mainerr(
3239 int n, /* one of the ME_ defines */
3240 char_u *str) /* extra argument or NULL */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003241{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003242#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003243 reset_signals(); /* kill us with CTRL-C here, if you like */
3244#endif
3245
3246 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003247 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003248 mch_errmsg(_(main_errors[n]));
3249 if (str != NULL)
3250 {
3251 mch_errmsg(": \"");
3252 mch_errmsg((char *)str);
3253 mch_errmsg("\"");
3254 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003255 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003256
3257 mch_exit(1);
3258}
3259
3260 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003261mainerr_arg_missing(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003262{
3263 mainerr(ME_ARG_MISSING, str);
3264}
3265
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003266#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003267/*
3268 * print a message with three spaces prepended and '\n' appended.
3269 */
3270 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003271main_msg(char *s)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003272{
3273 mch_msg(" ");
3274 mch_msg(s);
3275 mch_msg("\n");
3276}
3277
3278/*
3279 * Print messages for "vim -h" or "vim --help" and exit.
3280 */
3281 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003282usage(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003283{
3284 int i;
3285 static char *(use[]) =
3286 {
3287 N_("[file ..] edit specified file(s)"),
3288 N_("- read text from stdin"),
3289 N_("-t tag edit file where tag is defined"),
3290#ifdef FEAT_QUICKFIX
3291 N_("-q [errorfile] edit file with first error")
3292#endif
3293 };
3294
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003295#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003296 reset_signals(); /* kill us with CTRL-C here, if you like */
3297#endif
3298
3299 mch_msg(longVersion);
3300 mch_msg(_("\n\nusage:"));
3301 for (i = 0; ; ++i)
3302 {
3303 mch_msg(_(" vim [arguments] "));
3304 mch_msg(_(use[i]));
3305 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3306 break;
3307 mch_msg(_("\n or:"));
3308 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003309#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003310 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003311#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003312
3313 mch_msg(_("\n\nArguments:\n"));
3314 main_msg(_("--\t\t\tOnly file names after this"));
Bram Moolenaar53076832015-12-31 19:53:21 +01003315#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003316 main_msg(_("--literal\t\tDon't expand wildcards"));
3317#endif
3318#ifdef FEAT_OLE
3319 main_msg(_("-register\t\tRegister this gvim for OLE"));
3320 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3321#endif
3322#ifdef FEAT_GUI
3323 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3324 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3325#endif
3326 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3327 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003328 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003329 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3330#ifdef FEAT_DIFF
3331 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3332#endif
3333 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3334 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3335 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3336 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3337 main_msg(_("-M\t\t\tModifications in text not allowed"));
3338 main_msg(_("-b\t\t\tBinary mode"));
3339#ifdef FEAT_LISP
3340 main_msg(_("-l\t\t\tLisp mode"));
3341#endif
3342 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3343 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003344 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3345#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003346 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003347#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003348 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3349 main_msg(_("-r\t\t\tList swap files and exit"));
3350 main_msg(_("-r (with file name)\tRecover crashed session"));
3351 main_msg(_("-L\t\t\tSame as -r"));
3352#ifdef AMIGA
3353 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3354 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3355#endif
3356#ifdef FEAT_ARABIC
3357 main_msg(_("-A\t\t\tstart in Arabic mode"));
3358#endif
3359#ifdef FEAT_RIGHTLEFT
3360 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3361#endif
3362#ifdef FEAT_FKMAP
3363 main_msg(_("-F\t\t\tStart in Farsi mode"));
3364#endif
3365 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01003366 main_msg(_("--not-a-term\t\tSkip warning for input/output not being a terminal"));
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01003367 main_msg(_("--ttyfail\t\tExit if input or output is not a terminal"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003368 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3369#ifdef FEAT_GUI
3370 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3371#endif
3372 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003373 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003374 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3375 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3376 main_msg(_("+\t\t\tStart at end of file"));
3377 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003378 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003379 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3380 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3381 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3382 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3383 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3384#ifdef FEAT_CRYPT
3385 main_msg(_("-x\t\t\tEdit encrypted files"));
3386#endif
3387#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3388# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3389 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3390# endif
3391 main_msg(_("-X\t\t\tDo not connect to X server"));
3392#endif
3393#ifdef FEAT_CLIENTSERVER
3394 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3395 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3396 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3397 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003398 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003399 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3400 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3401 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3402 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3403#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003404#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003405 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003406#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003407#ifdef FEAT_VIMINFO
3408 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3409#endif
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003410 main_msg(_("--clean\t\t'nocompatible', Vim defaults, no plugins, no viminfo"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003411 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3412 main_msg(_("--version\t\tPrint version information and exit"));
3413
3414#ifdef FEAT_GUI_X11
3415# ifdef FEAT_GUI_MOTIF
3416 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3417# else
3418# ifdef FEAT_GUI_ATHENA
3419# ifdef FEAT_GUI_NEXTAW
3420 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3421# else
3422 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3423# endif
3424# endif
3425# endif
3426 main_msg(_("-display <display>\tRun vim on <display>"));
3427 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003428 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3429 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3430 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3431 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3432 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3433 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3434 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3435 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3436# ifdef FEAT_GUI_ATHENA
3437 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3438# endif
3439 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3440 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3441 main_msg(_("-xrm <resource>\tSet the specified resource"));
3442#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003443#ifdef FEAT_GUI_GTK
3444 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3445 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3446 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3447 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3448 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003449 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003450 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003451 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003452#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003453#ifdef FEAT_GUI_W32
3454 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003455 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003456#endif
3457
3458#ifdef FEAT_GUI_GNOME
3459 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3460 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003461 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003462 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003463 gui.dofork = FALSE;
3464 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003465 else
3466#endif
3467 mch_exit(0);
3468}
3469
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003470#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003471/*
3472 * Check the result of the ATTENTION dialog:
3473 * When "Quit" selected, exit Vim.
3474 * When "Recover" selected, recover the file.
3475 */
3476 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003477check_swap_exists_action(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003478{
3479 if (swap_exists_action == SEA_QUIT)
3480 getout(1);
3481 handle_swap_exists(NULL);
3482}
3483#endif
3484
Bram Moolenaar08cab962017-03-04 14:37:18 +01003485#endif /* NO_VIM_MAIN */
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003486
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003487#if defined(STARTUPTIME) || defined(PROTO)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003488static void time_diff(struct timeval *then, struct timeval *now);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003489
3490static struct timeval prev_timeval;
3491
Bram Moolenaar3f269672009-11-03 11:11:11 +00003492# ifdef WIN3264
3493/*
3494 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3495 */
3496 static int
3497gettimeofday(struct timeval *tv, char *dummy)
3498{
3499 long t = clock();
3500 tv->tv_sec = t / CLOCKS_PER_SEC;
3501 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3502 return 0;
3503}
3504# endif
3505
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003506/*
3507 * Save the previous time before doing something that could nest.
3508 * set "*tv_rel" to the time elapsed so far.
3509 */
3510 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003511time_push(void *tv_rel, void *tv_start)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003512{
3513 *((struct timeval *)tv_rel) = prev_timeval;
3514 gettimeofday(&prev_timeval, NULL);
3515 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3516 - ((struct timeval *)tv_rel)->tv_usec;
3517 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3518 - ((struct timeval *)tv_rel)->tv_sec;
3519 if (((struct timeval *)tv_rel)->tv_usec < 0)
3520 {
3521 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3522 --((struct timeval *)tv_rel)->tv_sec;
3523 }
3524 *(struct timeval *)tv_start = prev_timeval;
3525}
3526
3527/*
3528 * Compute the previous time after doing something that could nest.
3529 * Subtract "*tp" from prev_timeval;
3530 * Note: The arguments are (void *) to avoid trouble with systems that don't
3531 * have struct timeval.
3532 */
3533 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003534time_pop(
3535 void *tp) /* actually (struct timeval *) */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003536{
3537 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3538 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3539 if (prev_timeval.tv_usec < 0)
3540 {
3541 prev_timeval.tv_usec += 1000000;
3542 --prev_timeval.tv_sec;
3543 }
3544}
3545
3546 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003547time_diff(struct timeval *then, struct timeval *now)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003548{
3549 long usec;
3550 long msec;
3551
3552 usec = now->tv_usec - then->tv_usec;
3553 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3554 usec = usec % 1000L;
3555 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3556}
3557
3558 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003559time_msg(
3560 char *mesg,
3561 void *tv_start) /* only for do_source: start time; actually
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003562 (struct timeval *) */
3563{
3564 static struct timeval start;
3565 struct timeval now;
3566
3567 if (time_fd != NULL)
3568 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003569 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003570 {
3571 gettimeofday(&start, NULL);
3572 prev_timeval = start;
3573 fprintf(time_fd, "\n\ntimes in msec\n");
3574 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3575 fprintf(time_fd, " clock elapsed: other lines\n\n");
3576 }
3577 gettimeofday(&now, NULL);
3578 time_diff(&start, &now);
3579 if (((struct timeval *)tv_start) != NULL)
3580 {
3581 fprintf(time_fd, " ");
3582 time_diff(((struct timeval *)tv_start), &now);
3583 }
3584 fprintf(time_fd, " ");
3585 time_diff(&prev_timeval, &now);
3586 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003587 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003588 }
3589}
3590
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003591#endif
3592
Bram Moolenaar595297d2017-03-04 19:11:12 +01003593#if !defined(NO_VIM_MAIN) && defined(FEAT_EVAL)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003594 static void
3595set_progpath(char_u *argv0)
3596{
3597 char_u *val = argv0;
Bram Moolenaar08cab962017-03-04 14:37:18 +01003598
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003599# if defined(WIN32)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003600 /* A relative path containing a "/" will become invalid when using ":cd",
3601 * turn it into a full path.
Bram Moolenaar066029e2017-03-05 15:19:32 +01003602 * On MS-Windows "vim" should be expanded to "vim.exe", thus always do
3603 * this. */
Bram Moolenaar066029e2017-03-05 15:19:32 +01003604 char_u *path = NULL;
3605
3606 if (mch_can_exe(argv0, &path, FALSE) && path != NULL)
3607 val = path;
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003608# else
3609 char_u buf[MAXPATHL + 1];
3610# ifdef PROC_EXE_LINK
3611 char linkbuf[MAXPATHL + 1];
3612 ssize_t len;
Bram Moolenaar066029e2017-03-05 15:19:32 +01003613
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003614 len = readlink(PROC_EXE_LINK, linkbuf, MAXPATHL);
3615 if (len > 0)
Bram Moolenaar43663192017-03-05 14:29:12 +01003616 {
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003617 linkbuf[len] = NUL;
3618 val = (char_u *)linkbuf;
Bram Moolenaar43663192017-03-05 14:29:12 +01003619 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003620# endif
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003621
3622 if (!mch_isFullName(val))
3623 {
3624 if (gettail(val) != val
3625 && vim_FullName(val, buf, MAXPATHL, TRUE) != FAIL)
3626 val = buf;
3627 }
Bram Moolenaar066029e2017-03-05 15:19:32 +01003628# endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003629
Bram Moolenaar08cab962017-03-04 14:37:18 +01003630 set_vim_var_string(VV_PROGPATH, val, -1);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003631
Bram Moolenaar066029e2017-03-05 15:19:32 +01003632# ifdef WIN32
Bram Moolenaar43663192017-03-05 14:29:12 +01003633 vim_free(path);
Bram Moolenaar066029e2017-03-05 15:19:32 +01003634# endif
Bram Moolenaar08cab962017-03-04 14:37:18 +01003635}
3636
3637#endif /* NO_VIM_MAIN */
3638
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003639#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003640
3641/*
3642 * Common code for the X command server and the Win32 command server.
3643 */
3644
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003645static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003646
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003647/*
3648 * Do the client-server stuff, unless "--servername ''" was used.
3649 */
3650 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003651exec_on_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003652{
3653 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3654 {
3655# ifdef WIN32
3656 /* Initialise the client/server messaging infrastructure. */
3657 serverInitMessaging();
3658# endif
3659
3660 /*
3661 * When a command server argument was found, execute it. This may
3662 * exit Vim when it was successful. Otherwise it's executed further
3663 * on. Remember the encoding used here in "serverStrEnc".
3664 */
3665 if (parmp->serverArg)
3666 {
3667 cmdsrv_main(&parmp->argc, parmp->argv,
3668 parmp->serverName_arg, &parmp->serverStr);
3669# ifdef FEAT_MBYTE
3670 parmp->serverStrEnc = vim_strsave(p_enc);
3671# endif
3672 }
3673
3674 /* If we're still running, get the name to register ourselves.
3675 * On Win32 can register right now, for X11 need to setup the
3676 * clipboard first, it's further down. */
3677 parmp->servername = serverMakeName(parmp->serverName_arg,
3678 parmp->argv[0]);
3679# ifdef WIN32
3680 if (parmp->servername != NULL)
3681 {
3682 serverSetName(parmp->servername);
3683 vim_free(parmp->servername);
3684 }
3685# endif
3686 }
3687}
3688
3689/*
3690 * Prepare for running as a Vim server.
3691 */
3692 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003693prepare_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003694{
3695# if defined(FEAT_X11)
3696 /*
3697 * Register for remote command execution with :serversend and --remote
3698 * unless there was a -X or a --servername '' on the command line.
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003699 * Only register nongui-vim's with an explicit --servername argument,
3700 * or when compiling with autoservername.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003701 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003702 */
3703 if (X_DISPLAY != NULL && parmp->servername != NULL && (
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003704# if defined(FEAT_AUTOSERVERNAME) || defined(FEAT_GUI)
3705 (
3706# if defined(FEAT_AUTOSERVERNAME)
3707 1
3708# else
3709 gui.in_use
3710# endif
Bram Moolenaar5f402312006-08-15 19:40:35 +00003711# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003712 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003713# endif
3714 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003715# endif
3716 parmp->serverName_arg != NULL))
3717 {
3718 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3719 vim_free(parmp->servername);
3720 TIME_MSG("register server name");
3721 }
3722 else
3723 serverDelayedStartName = parmp->servername;
3724# endif
3725
3726 /*
3727 * Execute command ourselves if we're here because the send failed (or
3728 * else we would have exited above).
3729 */
3730 if (parmp->serverStr != NULL)
3731 {
3732 char_u *p;
3733
3734 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3735 parmp->serverStr, &p));
3736 vim_free(p);
3737 }
3738}
3739
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003740 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003741cmdsrv_main(
3742 int *argc,
3743 char **argv,
3744 char_u *serverName_arg,
3745 char_u **serverStr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003746{
3747 char_u *res;
3748 int i;
3749 char_u *sname;
3750 int ret;
3751 int didone = FALSE;
3752 int exiterr = 0;
3753 char **newArgV = argv + 1;
3754 int newArgC = 1,
3755 Argc = *argc;
3756 int argtype;
3757#define ARGTYPE_OTHER 0
3758#define ARGTYPE_EDIT 1
3759#define ARGTYPE_EDIT_WAIT 2
3760#define ARGTYPE_SEND 3
3761 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003762 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003763# ifndef FEAT_X11
3764 HWND srv;
3765# else
3766 Window srv;
3767
3768 setup_term_clip();
3769# endif
3770
3771 sname = serverMakeName(serverName_arg, argv[0]);
3772 if (sname == NULL)
3773 return;
3774
3775 /*
3776 * Execute the command server related arguments and remove them
3777 * from the argc/argv array; We may have to return into main()
3778 */
3779 for (i = 1; i < Argc; i++)
3780 {
3781 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003782 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003783 {
3784 for (; i < *argc; i++)
3785 {
3786 *newArgV++ = argv[i];
3787 newArgC++;
3788 }
3789 break;
3790 }
3791
Bram Moolenaareb94e552006-03-11 21:35:11 +00003792 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003793 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003794 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3795 {
3796 char *p = argv[i] + 8;
3797
3798 argtype = ARGTYPE_EDIT;
3799 while (*p != NUL)
3800 {
3801 if (STRNICMP(p, "-wait", 5) == 0)
3802 {
3803 argtype = ARGTYPE_EDIT_WAIT;
3804 p += 5;
3805 }
3806 else if (STRNICMP(p, "-silent", 7) == 0)
3807 {
3808 silent = TRUE;
3809 p += 7;
3810 }
3811 else if (STRNICMP(p, "-tab", 4) == 0)
3812 {
3813 tabs = TRUE;
3814 p += 4;
3815 }
3816 else
3817 {
3818 argtype = ARGTYPE_OTHER;
3819 break;
3820 }
3821 }
3822 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003823 else
3824 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003825
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003826 if (argtype != ARGTYPE_OTHER)
3827 {
3828 if (i == *argc - 1)
3829 mainerr_arg_missing((char_u *)argv[i]);
3830 if (argtype == ARGTYPE_SEND)
3831 {
3832 *serverStr = (char_u *)argv[i + 1];
3833 i++;
3834 }
3835 else
3836 {
3837 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003838 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003839 if (*serverStr == NULL)
3840 {
3841 /* Probably out of memory, exit. */
3842 didone = TRUE;
3843 exiterr = 1;
3844 break;
3845 }
3846 Argc = i;
3847 }
3848# ifdef FEAT_X11
3849 if (xterm_dpy == NULL)
3850 {
3851 mch_errmsg(_("No display"));
3852 ret = -1;
3853 }
3854 else
3855 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003856 NULL, &srv, 0, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003857# else
3858 /* Win32 always works? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003859 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003860# endif
3861 if (ret < 0)
3862 {
3863 if (argtype == ARGTYPE_SEND)
3864 {
3865 /* Failed to send, abort. */
3866 mch_errmsg(_(": Send failed.\n"));
3867 didone = TRUE;
3868 exiterr = 1;
3869 }
3870 else if (!silent)
3871 /* Let vim start normally. */
3872 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3873 break;
3874 }
3875
3876# ifdef FEAT_GUI_W32
3877 /* Guess that when the server name starts with "g" it's a GUI
3878 * server, which we can bring to the foreground here.
3879 * Foreground() in the server doesn't work very well. */
3880 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3881 SetForegroundWindow(srv);
3882# endif
3883
3884 /*
3885 * For --remote-wait: Wait until the server did edit each
3886 * file. Also detect that the server no longer runs.
3887 */
3888 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3889 {
3890 int numFiles = *argc - i - 1;
3891 int j;
3892 char_u *done = alloc(numFiles);
3893 char_u *p;
3894# ifdef FEAT_GUI_W32
3895 NOTIFYICONDATA ni;
3896 int count = 0;
3897 extern HWND message_window;
3898# endif
3899
3900 if (numFiles > 0 && argv[i + 1][0] == '+')
3901 /* Skip "+cmd" argument, don't wait for it to be edited. */
3902 --numFiles;
3903
3904# ifdef FEAT_GUI_W32
3905 ni.cbSize = sizeof(ni);
3906 ni.hWnd = message_window;
3907 ni.uID = 0;
3908 ni.uFlags = NIF_ICON|NIF_TIP;
3909 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3910 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3911 Shell_NotifyIcon(NIM_ADD, &ni);
3912# endif
3913
3914 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003915 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003916 while (memchr(done, 0, numFiles) != NULL)
3917 {
3918# ifdef WIN32
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003919 p = serverGetReply(srv, NULL, TRUE, TRUE, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003920 if (p == NULL)
3921 break;
3922# else
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003923 if (serverReadReply(xterm_dpy, srv, &p, TRUE, -1) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003924 break;
3925# endif
3926 j = atoi((char *)p);
3927 if (j >= 0 && j < numFiles)
3928 {
3929# ifdef FEAT_GUI_W32
3930 ++count;
3931 sprintf(ni.szTip, _("%d of %d edited"),
3932 count, numFiles);
3933 Shell_NotifyIcon(NIM_MODIFY, &ni);
3934# endif
3935 done[j] = 1;
3936 }
3937 }
3938# ifdef FEAT_GUI_W32
3939 Shell_NotifyIcon(NIM_DELETE, &ni);
3940# endif
3941 }
3942 }
3943 else if (STRICMP(argv[i], "--remote-expr") == 0)
3944 {
3945 if (i == *argc - 1)
3946 mainerr_arg_missing((char_u *)argv[i]);
3947# ifdef WIN32
3948 /* Win32 always works? */
3949 if (serverSendToVim(sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003950 &res, NULL, 1, 0, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003951# else
3952 if (xterm_dpy == NULL)
3953 mch_errmsg(_("No display: Send expression failed.\n"));
3954 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003955 &res, NULL, 1, 0, 1, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003956# endif
3957 {
3958 if (res != NULL && *res != NUL)
3959 {
3960 /* Output error from remote */
3961 mch_errmsg((char *)res);
Bram Moolenaard23a8232018-02-10 18:45:26 +01003962 VIM_CLEAR(res);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003963 }
3964 mch_errmsg(_(": Send expression failed.\n"));
3965 }
3966 }
3967 else if (STRICMP(argv[i], "--serverlist") == 0)
3968 {
3969# ifdef WIN32
3970 /* Win32 always works? */
3971 res = serverGetVimNames();
3972# else
3973 if (xterm_dpy != NULL)
3974 res = serverGetVimNames(xterm_dpy);
3975# endif
3976 if (called_emsg)
3977 mch_errmsg("\n");
3978 }
3979 else if (STRICMP(argv[i], "--servername") == 0)
3980 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003981 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003982 i++;
3983 continue;
3984 }
3985 else
3986 {
3987 *newArgV++ = argv[i];
3988 newArgC++;
3989 continue;
3990 }
3991 didone = TRUE;
3992 if (res != NULL && *res != NUL)
3993 {
3994 mch_msg((char *)res);
3995 if (res[STRLEN(res) - 1] != '\n')
3996 mch_msg("\n");
3997 }
3998 vim_free(res);
3999 }
4000
4001 if (didone)
4002 {
4003 display_errors(); /* display any collected messages */
4004 exit(exiterr); /* Mission accomplished - get out */
4005 }
4006
4007 /* Return back into main() */
4008 *argc = newArgC;
4009 vim_free(sname);
4010}
4011
4012/*
4013 * Build a ":drop" command to send to a Vim server.
4014 */
4015 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004016build_drop_cmd(
4017 int filec,
4018 char **filev,
4019 int tabs, /* Use ":tab drop" instead of ":drop". */
4020 int sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004021{
4022 garray_T ga;
4023 int i;
4024 char_u *inicmd = NULL;
4025 char_u *p;
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004026 char_u *cdp;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004027 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004028
4029 if (filec > 0 && filev[0][0] == '+')
4030 {
4031 inicmd = (char_u *)filev[0] + 1;
4032 filev++;
4033 filec--;
4034 }
4035 /* Check if we have at least one argument. */
4036 if (filec <= 0)
4037 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004038
4039 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02004040 cwd = alloc(MAXPATHL);
4041 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004042 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004043 if (mch_dirname(cwd, MAXPATHL) != OK)
4044 {
4045 vim_free(cwd);
4046 return NULL;
4047 }
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004048 cdp = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00004049#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004050 (char_u *)"", /* rem_backslash() will tell what chars to escape */
Bram Moolenaar02b06312007-09-06 15:39:22 +00004051#else
4052 PATH_ESC_CHARS,
4053#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02004054 '\\', TRUE);
4055 vim_free(cwd);
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004056 if (cdp == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004057 return NULL;
4058 ga_init2(&ga, 1, 100);
4059 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004060 ga_concat(&ga, cdp);
Bram Moolenaareb94e552006-03-11 21:35:11 +00004061
4062 /* Call inputsave() so that a prompt for an encryption key works. */
4063 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
4064 if (tabs)
4065 ga_concat(&ga, (char_u *)"tab ");
4066 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004067 for (i = 0; i < filec; i++)
4068 {
4069 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004070 * do it again in the Vim server. On MS-Windows only escape
4071 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004072 p = vim_strsave_escaped((char_u *)filev[i],
4073#ifdef UNIX
4074 PATH_ESC_CHARS
4075#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004076 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004077#endif
4078 );
4079 if (p == NULL)
4080 {
4081 vim_free(ga.ga_data);
4082 return NULL;
4083 }
4084 ga_concat(&ga, (char_u *)" ");
4085 ga_concat(&ga, p);
4086 vim_free(p);
4087 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004088 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
4089
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004090 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
4091 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004092 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
4093
4094 /* Switch back to the correct current directory (prior to temporary path
4095 * switch) unless 'autochdir' is set, in which case it will already be
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004096 * correct after the :drop command. With line breaks and spaces:
4097 * if !exists('+acd') || !&acd
4098 * if haslocaldir()
4099 * cd -
4100 * lcd -
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004101 * elseif getcwd() ==# 'current path'
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004102 * cd -
4103 * endif
4104 * endif
4105 */
4106 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|");
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004107 ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004108 ga_concat(&ga, cdp);
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004109 ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004110 vim_free(cdp);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004111
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004112 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004113 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
4114 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004115 if (inicmd != NULL)
4116 {
4117 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
4118 * the following commands to be inserted as text. Use a "|",
4119 * hopefully "inicmd" does allow this... */
4120 ga_concat(&ga, inicmd);
4121 ga_concat(&ga, (char_u *)"|");
4122 }
4123 /* Bring the window to the foreground, goto Insert mode when 'im' set and
4124 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00004125 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004126 ga_append(&ga, NUL);
4127 return ga.ga_data;
4128}
4129
4130/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004131 * Make our basic server name: use the specified "arg" if given, otherwise use
4132 * the tail of the command "cmd" we were started with.
4133 * Return the name in allocated memory. This doesn't include a serial number.
4134 */
4135 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004136serverMakeName(char_u *arg, char *cmd)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004137{
4138 char_u *p;
4139
4140 if (arg != NULL && *arg != NUL)
4141 p = vim_strsave_up(arg);
4142 else
4143 {
4144 p = vim_strsave_up(gettail((char_u *)cmd));
4145 /* Remove .exe or .bat from the name. */
4146 if (p != NULL && vim_strchr(p, '.') != NULL)
4147 *vim_strchr(p, '.') = NUL;
4148 }
4149 return p;
4150}
4151#endif /* FEAT_CLIENTSERVER */
4152
4153#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4154/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004155 * Replace termcodes such as <CR> and insert as key presses if there is room.
4156 */
4157 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004158server_to_input_buf(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004159{
4160 char_u *ptr = NULL;
4161 char_u *cpo_save = p_cpo;
4162
4163 /* Set 'cpoptions' the way we want it.
4164 * B set - backslashes are *not* treated specially
4165 * k set - keycodes are *not* reverse-engineered
4166 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004167 * The last but one parameter of replace_termcodes() is TRUE so that the
4168 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004169 */
4170 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004171 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004172 p_cpo = cpo_save;
4173
4174 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4175 {
4176 /*
4177 * Add the string to the input stream.
4178 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4179 *
4180 * First clear typed characters from the typeahead buffer, there could
4181 * be half a mapping there. Then append to the existing string, so
4182 * that multiple commands from a client are concatenated.
4183 */
4184 if (typebuf.tb_maplen < typebuf.tb_len)
4185 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4186 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4187
4188 /* Let input_available() know we inserted text in the typeahead
4189 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004190 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004191 }
4192 vim_free((char_u *)ptr);
4193}
4194
4195/*
4196 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004197 */
4198 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004199eval_client_expr_to_string(char_u *expr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004200{
4201 char_u *res;
4202 int save_dbl = debug_break_level;
4203 int save_ro = redir_off;
Bram Moolenaard99388b2017-10-26 14:28:32 +02004204 void *fc = NULL;
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004205
4206 /* Evaluate the expression at the toplevel, don't use variables local to
Bram Moolenaard99388b2017-10-26 14:28:32 +02004207 * the calling function. Except when in debug mode. */
4208 if (!debug_mode)
4209 fc = clear_current_funccal();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004210
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004211 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4212 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004213 debug_break_level = -1;
4214 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004215 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4216 * to be typed. Do generate errors so that try/catch works. */
4217 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004218
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004219 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004220
4221 debug_break_level = save_dbl;
4222 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004223 --emsg_silent;
4224 if (emsg_silent < 0)
4225 emsg_silent = 0;
Bram Moolenaard99388b2017-10-26 14:28:32 +02004226 if (fc != NULL)
4227 restore_current_funccal(fc);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004228
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004229 /* A client can tell us to redraw, but not to display the cursor, so do
4230 * that here. */
4231 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01004232 out_flush_cursor(FALSE, FALSE);
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004233
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004234 return res;
4235}
4236
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004237/*
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004238 * Evaluate a command or expression sent to ourselves.
4239 */
4240 int
4241sendToLocalVim(char_u *cmd, int asExpr, char_u **result)
4242{
4243 if (asExpr)
4244 {
4245 char_u *ret;
4246
4247 ret = eval_client_expr_to_string(cmd);
4248 if (result != NULL)
4249 {
4250 if (ret == NULL)
4251 {
4252 char *err = _(e_invexprmsg);
4253 size_t len = STRLEN(cmd) + STRLEN(err) + 5;
4254 char_u *msg;
4255
Bram Moolenaar1662ce12017-03-19 21:47:50 +01004256 msg = alloc((unsigned)len);
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004257 if (msg != NULL)
4258 vim_snprintf((char *)msg, len, "%s: \"%s\"", err, cmd);
4259 *result = msg;
4260 }
4261 else
4262 *result = ret;
4263 }
4264 else
4265 vim_free(ret);
4266 return ret == NULL ? -1 : 0;
4267 }
4268 server_to_input_buf(cmd);
4269 return 0;
4270}
4271
4272/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004273 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4274 * return an allocated string. Otherwise return "data".
4275 * "*tofree" is set to the result when it needs to be freed later.
4276 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004277 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004278serverConvert(
4279 char_u *client_enc UNUSED,
4280 char_u *data,
4281 char_u **tofree)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004282{
4283 char_u *res = data;
4284
4285 *tofree = NULL;
4286# ifdef FEAT_MBYTE
4287 if (client_enc != NULL && p_enc != NULL)
4288 {
4289 vimconv_T vimconv;
4290
4291 vimconv.vc_type = CONV_NONE;
4292 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4293 && vimconv.vc_type != CONV_NONE)
4294 {
4295 res = string_convert(&vimconv, data, NULL);
4296 if (res == NULL)
4297 res = data;
4298 else
4299 *tofree = res;
4300 }
4301 convert_setup(&vimconv, NULL, NULL);
4302 }
4303# endif
4304 return res;
4305}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004306#endif