blob: 406635a166fec6f68e06f54857f3a6a0328d615b [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
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000751 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
752 TIME_MSG("BufEnter autocommands");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000753 setpcmark();
754
755#ifdef FEAT_QUICKFIX
756 /*
757 * When started with "-q errorfile" jump to first error now.
758 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000759 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000760 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000761 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000762 TIME_MSG("jump to first error");
763 }
764#endif
765
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000766 /*
767 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000768 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000769 */
Bram Moolenaarf6303872015-04-03 17:59:43 +0200770 edit_buffers(&params, start_dir);
Bram Moolenaarf6303872015-04-03 17:59:43 +0200771 vim_free(start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000772
773#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000774 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000775 {
776 win_T *wp;
777
778 /* set options in each window for "vimdiff". */
Bram Moolenaar29323592016-07-24 22:04:11 +0200779 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000780 diff_win_options(wp, TRUE);
781 }
782#endif
783
784 /*
785 * Shorten any of the filenames, but only when absolute.
786 */
787 shorten_fnames(FALSE);
788
789 /*
790 * Need to jump to the tag before executing the '-c command'.
791 * Makes "vim -c '/return' -t main" work.
792 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000793 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000794 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000795#if defined(HAS_SWAP_EXISTS_ACTION)
796 swap_exists_did_quit = FALSE;
797#endif
798
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000799 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000800 do_cmdline_cmd(IObuff);
801 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000802
803#if defined(HAS_SWAP_EXISTS_ACTION)
804 /* If the user doesn't want to edit the file then we quit here. */
805 if (swap_exists_did_quit)
806 getout(1);
807#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000808 }
809
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000810 /* Execute any "+", "-c" and "-S" arguments. */
811 if (params.n_commands > 0)
812 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000813
Bram Moolenaar6b1da332017-06-09 21:35:47 +0200814 /* Must come before the may_req_ calls. */
815 starting = 0;
816
Bram Moolenaar976787d2017-06-04 15:45:50 +0200817#if defined(FEAT_TERMRESPONSE) && defined(FEAT_MBYTE)
818 /* Must be done before redrawing, puts a few characters on the screen. */
819 may_req_ambiguous_char_width();
820#endif
821
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000822 RedrawingDisabled = 0;
823 redraw_all_later(NOT_VALID);
824 no_wait_return = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000825
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200826 /* 'autochdir' has been postponed */
827 DO_AUTOCHDIR
828
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000829#ifdef FEAT_TERMRESPONSE
830 /* Requesting the termresponse is postponed until here, so that a "-c q"
831 * argument doesn't make it appear in the shell Vim was started from. */
832 may_req_termresponse();
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200833
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200834 may_req_bg_color();
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000835#endif
836
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000837 /* start in insert mode */
838 if (p_im)
839 need_start_insertmode = TRUE;
840
Bram Moolenaar14735512016-03-26 21:00:08 +0100841#ifdef FEAT_EVAL
842 set_vim_var_nr(VV_VIM_DID_ENTER, 1L);
843#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000844 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
845 TIME_MSG("VimEnter autocommands");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000846
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200847#if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD)
848 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be
849 * done after the clipboard is available and all initial commands that may
850 * modify the 'clipboard' setting have run; i.e. just before entering the
851 * main loop. */
852 {
853 int default_regname = 0;
Bram Moolenaar53076832015-12-31 19:53:21 +0100854
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200855 adjust_clip_reg(&default_regname);
856 set_reg_var(default_regname);
857 }
858#endif
859
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000860#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
861 /* When a startup script or session file setup for diff'ing and
862 * scrollbind, sync the scrollbind now. */
863 if (curwin->w_p_diff && curwin->w_p_scb)
864 {
865 update_topline();
866 check_scrollbind((linenr_T)0, 0L);
867 TIME_MSG("diff scrollbinding");
868 }
869#endif
870
871#if defined(WIN3264) && !defined(FEAT_GUI_W32)
872 mch_set_winsize_now(); /* Allow winsize changes from now on */
873#endif
874
Bram Moolenaar4033c552017-09-16 20:54:51 +0200875#if defined(FEAT_GUI)
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000876 /* When tab pages were created, may need to update the tab pages line and
877 * scrollbars. This is skipped while creating them. */
878 if (first_tabpage->tp_next != NULL)
879 {
880 out_flush();
881 gui_init_which_components(NULL);
882 gui_update_scrollbars(TRUE);
883 }
884 need_mouse_correct = TRUE;
885#endif
886
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000887 /* If ":startinsert" command used, stuff a dummy command to be able to
888 * call normal_cmd(), which will then start Insert mode. */
889 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000890 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000891
892#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200893 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200894 {
895# ifdef FEAT_GUI
Bram Moolenaar173c9852010-09-29 17:27:01 +0200896# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar67c53842010-05-22 18:28:27 +0200897 && !defined(FEAT_GUI_W32)
898 if (gui.in_use)
899 {
900 mch_errmsg(_("netbeans is not supported with this GUI\n"));
901 mch_exit(2);
902 }
903# endif
904# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000905 /* Tell the client that it can start sending commands. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200906 netbeans_open(netbeansArg + 3, TRUE);
Bram Moolenaar67c53842010-05-22 18:28:27 +0200907 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000908#endif
909
910 TIME_MSG("before starting main loop");
911
912 /*
913 * Call the main command loop. This never returns.
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100914 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000915 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000916
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200917#endif /* NO_VIM_MAIN */
918
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000919 return 0;
920}
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000921
922/*
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200923 * Initialisation shared by main() and some tests.
924 */
925 void
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200926common_init(mparm_T *paramp)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200927{
928
929#ifdef FEAT_MBYTE
930 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
931#endif
932#ifdef FEAT_EVAL
933 eval_init(); /* init global variables */
934#endif
935
936#ifdef __QNXNTO__
937 qnx_init(); /* PhAttach() for clipboard, (and gui) */
938#endif
939
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200940 /* Init the table of Normal mode commands. */
941 init_normal_cmds();
942
943#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
944 make_version(); /* Construct the long version string. */
945#endif
946
947 /*
948 * Allocate space for the generic buffers (needed for set_init_1() and
949 * EMSG2()).
950 */
951 if ((IObuff = alloc(IOSIZE)) == NULL
952 || (NameBuff = alloc(MAXPATHL)) == NULL)
953 mch_exit(0);
954 TIME_MSG("Allocated generic buffers");
955
956#ifdef NBDEBUG
957 /* Wait a moment for debugging NetBeans. Must be after allocating
958 * NameBuff. */
959 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
960 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
961 TIME_MSG("NetBeans debug wait");
962#endif
963
964#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
965 /*
966 * Setup to use the current locale (for ctype() and many other things).
967 * NOTE: Translated messages with encodings other than latin1 will not
968 * work until set_init_1() has been called!
969 */
970 init_locale();
971 TIME_MSG("locale set");
972#endif
973
974#ifdef FEAT_GUI
975 gui.dofork = TRUE; /* default is to use fork() */
976#endif
977
978 /*
979 * Do a first scan of the arguments in "argv[]":
980 * -display or --display
981 * --server...
982 * --socketid
983 * --windowid
984 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200985 early_arg_scan(paramp);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200986
987#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200988 findYourself(paramp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200989#endif
Bram Moolenaard0573012017-10-28 21:11:06 +0200990#if defined(FEAT_GUI)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200991 /* Prepare for possibly starting GUI sometime */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200992 gui_prepare(&paramp->argc, paramp->argv);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200993 TIME_MSG("GUI prepared");
994#endif
995
996#ifdef FEAT_CLIPBOARD
997 clip_init(FALSE); /* Initialise clipboard stuff */
998 TIME_MSG("clipboard setup");
999#endif
1000
1001 /*
1002 * Check if we have an interactive window.
1003 * On the Amiga: If there is no window, we open one with a newcli command
1004 * (needed for :! to * work). mch_check_win() will also handle the -d or
1005 * -dev argument.
1006 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001007 stdout_isatty = (mch_check_win(paramp->argc, paramp->argv) != FAIL);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001008 TIME_MSG("window checked");
1009
1010 /*
1011 * Allocate the first window and buffer.
1012 * Can't do anything without it, exit when it fails.
1013 */
1014 if (win_alloc_first() == FAIL)
1015 mch_exit(0);
1016
1017 init_yank(); /* init yank buffers */
1018
1019 alist_init(&global_alist); /* Init the argument list to empty. */
1020 global_alist.id = 0;
1021
1022 /*
1023 * Set the default values for the options.
1024 * NOTE: Non-latin1 translated messages are working only after this,
1025 * because this is where "has_mbyte" will be set, which is used by
1026 * msg_outtrans_len_attr().
1027 * First find out the home directory, needed to expand "~" in options.
1028 */
1029 init_homedir(); /* find real value of $HOME */
Bram Moolenaar07268702018-03-01 21:57:32 +01001030 set_init_1(paramp->clean);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001031 TIME_MSG("inits 1");
1032
1033#ifdef FEAT_EVAL
1034 set_lang_var(); /* set v:lang and v:ctype */
1035#endif
1036}
1037
1038/*
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001039 * Return TRUE when the --not-a-term argument was found.
1040 */
1041 int
1042is_not_a_term()
1043{
1044 return params.not_a_term;
1045}
1046
1047/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001048 * Main loop: Execute Normal mode commands until exiting Vim.
1049 * Also used to handle commands in the command-line window, until the window
1050 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001051 * Also used to handle ":visual" command after ":global": execute Normal mode
1052 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001053 */
1054 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001055main_loop(
1056 int cmdwin, /* TRUE when working in the command-line window */
1057 int noexmode) /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001058{
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001059 oparg_T oa; /* operator arguments */
Bram Moolenaar8872ef12015-02-10 19:27:05 +01001060 volatile int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001061#ifdef FEAT_CONCEAL
Bram Moolenaar1db43b12015-07-12 16:21:23 +02001062 /* these are static to avoid a compiler warning */
1063 static linenr_T conceal_old_cursor_line = 0;
1064 static linenr_T conceal_new_cursor_line = 0;
1065 static int conceal_update_lines = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001066#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001067
1068#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1069 /* Setup to catch a terminating error from the X server. Just ignore
1070 * it, restore the state and continue. This might not always work
1071 * properly, but at least we don't exit unexpectedly when the X server
Bram Moolenaar2cd36962014-01-14 12:57:05 +01001072 * exits while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001073 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001074 {
1075 State = NORMAL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001076 VIsual_active = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001077 got_int = TRUE;
1078 need_wait_return = FALSE;
1079 global_busy = FALSE;
1080 exmode_active = 0;
1081 skip_redraw = FALSE;
1082 RedrawingDisabled = 0;
1083 no_wait_return = 0;
Bram Moolenaar7701c242011-10-04 16:43:53 +02001084 vgetc_busy = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001085# ifdef FEAT_EVAL
1086 emsg_skip = 0;
1087# endif
1088 emsg_off = 0;
1089# ifdef FEAT_MOUSE
1090 setmouse();
1091# endif
1092 settmode(TMODE_RAW);
1093 starttermcap();
1094 scroll_start();
1095 redraw_later_clear();
1096 }
1097#endif
1098
1099 clear_oparg(&oa);
1100 while (!cmdwin
1101#ifdef FEAT_CMDWIN
1102 || cmdwin_result == 0
1103#endif
1104 )
1105 {
1106 if (stuff_empty())
1107 {
1108 did_check_timestamps = FALSE;
1109 if (need_check_timestamps)
1110 check_timestamps(FALSE);
1111 if (need_wait_return) /* if wait_return still needed ... */
1112 wait_return(FALSE); /* ... call it now */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001113 if (need_start_insertmode && goto_im() && !VIsual_active)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001114 {
1115 need_start_insertmode = FALSE;
1116 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1117 /* skip the fileinfo message now, because it would be shown
1118 * after insert mode finishes! */
1119 need_fileinfo = FALSE;
1120 }
1121 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001122
1123 /* Reset "got_int" now that we got back to the main loop. Except when
1124 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1125 * the ":g" command.
1126 * For ":g/pat/vi" we reset "got_int" when used once. When used
1127 * a second time we go back to Ex mode and abort the ":g" command. */
1128 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001129 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001130 if (noexmode && global_busy && !exmode_active && previous_got_int)
1131 {
1132 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1133 * used and keep "got_int" set, so that it aborts ":g". */
1134 exmode_active = EXMODE_NORMAL;
1135 State = NORMAL;
1136 }
1137 else if (!global_busy || !exmode_active)
1138 {
1139 if (!quit_more)
1140 (void)vgetc(); /* flush all buffers */
1141 got_int = FALSE;
1142 }
1143 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001144 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001145 else
1146 previous_got_int = FALSE;
1147
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001148 if (!exmode_active)
1149 msg_scroll = FALSE;
1150 quit_more = FALSE;
1151
1152 /*
1153 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1154 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1155 * update cursor and redraw.
1156 */
1157 if (skip_redraw || exmode_active)
1158 skip_redraw = FALSE;
1159 else if (do_redraw || stuff_empty())
1160 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001161#ifdef FEAT_GUI
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001162 /* If ui_breakcheck() was used a resize may have been postponed. */
1163 gui_may_resize_shell();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001164#endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001165 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001166 if (!finish_op && (
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001167 has_cursormoved()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001168#ifdef FEAT_CONCEAL
1169 || curwin->w_p_cole > 0
1170#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001171 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001172 && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001173 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001174 if (has_cursormoved())
1175 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1176 FALSE, curbuf);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001177# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001178 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001179 {
1180 conceal_old_cursor_line = last_cursormoved.lnum;
1181 conceal_new_cursor_line = curwin->w_cursor.lnum;
1182 conceal_update_lines = TRUE;
1183 }
1184# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001185 last_cursormoved = curwin->w_cursor;
1186 }
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001187
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001188 /* Trigger TextChanged if b:changedtick differs. */
Bram Moolenaar186628f2013-03-19 13:33:23 +01001189 if (!finish_op && has_textchanged()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001190 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf))
Bram Moolenaar186628f2013-03-19 13:33:23 +01001191 {
Bram Moolenaar5a093432018-02-10 18:15:19 +01001192 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL, FALSE, curbuf);
1193 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar186628f2013-03-19 13:33:23 +01001194 }
Bram Moolenaar186628f2013-03-19 13:33:23 +01001195
Bram Moolenaar33aec762006-01-22 23:30:12 +00001196#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1197 /* Scroll-binding for diff mode may have been postponed until
1198 * here. Avoids doing it for every change. */
1199 if (diff_need_scrollbind)
1200 {
1201 check_scrollbind((linenr_T)0, 0L);
1202 diff_need_scrollbind = FALSE;
1203 }
1204#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001205#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001206 /* Include a closed fold completely in the Visual area. */
1207 foldAdjustVisual();
1208#endif
1209#ifdef FEAT_FOLDING
1210 /*
1211 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1212 * contain the cursor.
1213 * When 'foldopen' is "all", open the fold(s) under the cursor.
1214 * This may mark the window for redrawing.
1215 */
1216 if (hasAnyFolding(curwin) && !char_avail())
1217 {
1218 foldCheckClose();
1219 if (fdo_flags & FDO_ALL)
1220 foldOpenCursor();
1221 }
1222#endif
1223
1224 /*
1225 * Before redrawing, make sure w_topline is correct, and w_leftcol
1226 * if lines don't wrap, and w_skipcol if lines wrap.
1227 */
1228 update_topline();
1229 validate_cursor();
1230
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001231 if (VIsual_active)
1232 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001233 else if (must_redraw)
Bram Moolenaara338adc2018-01-31 20:51:47 +01001234 {
1235 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001236 update_screen(0);
Bram Moolenaara338adc2018-01-31 20:51:47 +01001237 mch_enable_flush();
1238 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001239 else if (redraw_cmdline || clear_cmdline)
1240 showmode();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001241 redraw_statuslines();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001242#ifdef FEAT_TITLE
1243 if (need_maketitle)
1244 maketitle();
1245#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001246#ifdef FEAT_VIMINFO
1247 curbuf->b_last_used = vim_time();
1248#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001249 /* display message after redraw */
1250 if (keep_msg != NULL)
1251 {
1252 char_u *p;
1253
1254 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001255 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1256 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001257 p = keep_msg;
1258 msg_attr(p, keep_msg_attr);
1259 vim_free(p);
1260 }
1261 if (need_fileinfo) /* show file info after redraw */
1262 {
1263 fileinfo(FALSE, TRUE, FALSE);
1264 need_fileinfo = FALSE;
1265 }
1266
1267 emsg_on_display = FALSE; /* can delete error message now */
1268 did_emsg = FALSE;
1269 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001270 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001271 showruler(FALSE);
1272
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001273#if defined(FEAT_CONCEAL)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001274 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001275 && (conceal_old_cursor_line != conceal_new_cursor_line
1276 || conceal_cursor_line(curwin)
1277 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001278 {
Bram Moolenaara338adc2018-01-31 20:51:47 +01001279 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */
Bram Moolenaarc2b4c622011-02-15 16:29:59 +01001280 if (conceal_old_cursor_line != conceal_new_cursor_line
1281 && conceal_old_cursor_line
1282 <= curbuf->b_ml.ml_line_count)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001283 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001284 update_single_line(curwin, conceal_new_cursor_line);
Bram Moolenaara338adc2018-01-31 20:51:47 +01001285 mch_enable_flush();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001286 curwin->w_valid &= ~VALID_CROW;
1287 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001288#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001289 setcursor();
1290 cursor_on();
1291
1292 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001293
1294#ifdef STARTUPTIME
1295 /* Now that we have drawn the first screen all the startup stuff
1296 * has been done, close any file for startup messages. */
1297 if (time_fd != NULL)
1298 {
1299 TIME_MSG("first screen update");
1300 TIME_MSG("--- VIM STARTED ---");
1301 fclose(time_fd);
1302 time_fd = NULL;
1303 }
1304#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001305 }
1306#ifdef FEAT_GUI
1307 if (need_mouse_correct)
1308 gui_mouse_correct();
1309#endif
1310
1311 /*
1312 * Update w_curswant if w_set_curswant has been set.
1313 * Postponed until here to avoid computing w_virtcol too often.
1314 */
1315 update_curswant();
1316
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001317#ifdef FEAT_EVAL
1318 /*
1319 * May perform garbage collection when waiting for a character, but
1320 * only at the very toplevel. Otherwise we may be using a List or
1321 * Dict internally somewhere.
1322 * "may_garbage_collect" is reset in vgetc() which is invoked through
1323 * do_exmode() and normal_cmd().
1324 */
1325 may_garbage_collect = (!cmdwin && !noexmode);
1326#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001327 /*
1328 * If we're invoked as ex, do a round of ex commands.
1329 * Otherwise, get and execute a normal mode command.
1330 */
1331 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001332 {
1333 if (noexmode) /* End of ":global/path/visual" commands */
1334 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001335 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001336 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001337 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001338 {
1339#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02001340 if (term_use_loop()
Bram Moolenaaraaa8a352017-08-05 20:17:00 +02001341 && oa.op_type == OP_NOP && oa.regname == NUL
1342 && !VIsual_active)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001343 {
1344 /* If terminal_loop() returns OK we got a key that is handled
Bram Moolenaar6d819742017-08-06 14:57:49 +02001345 * in Normal model. With FAIL we first need to position the
1346 * cursor and the screen needs to be redrawn. */
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001347 if (terminal_loop(TRUE) == OK)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001348 normal_cmd(&oa, TRUE);
1349 }
1350 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001351#endif
Bram Moolenaar423802d2017-07-30 16:52:24 +02001352 normal_cmd(&oa, TRUE);
Bram Moolenaar938783d2017-07-16 20:13:26 +02001353 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001354 }
1355}
1356
1357
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001358#if defined(USE_XSMP) || defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001359/*
1360 * Exit, but leave behind swap files for modified buffers.
1361 */
1362 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001363getout_preserve_modified(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001364{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001365# if defined(SIGHUP) && defined(SIG_IGN)
1366 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1367 * makes Vim exit and then handling SIGHUP causes various reentrance
1368 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001369 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001370# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001371
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001372 ml_close_notmod(); /* close all not-modified buffers */
1373 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1374 ml_close_all(FALSE); /* close all memfiles, without deleting */
1375 getout(exitval); /* exit Vim properly */
1376}
1377#endif
1378
1379
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001380/*
1381 * Exit properly.
1382 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001383 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001384getout(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001385{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001386 tabpage_T *tp;
1387 tabpage_T *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001388 buf_T *buf;
1389 win_T *wp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001390
1391 exiting = TRUE;
1392
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001393 /* When running in Ex mode an error causes us to exit with a non-zero exit
1394 * code. POSIX requires this, although it's not 100% clear from the
1395 * standard. */
1396 if (exmode_active)
1397 exitval += ex_exitval;
1398
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001399 /* Position the cursor on the last screen line, below all the text */
1400#ifdef FEAT_GUI
1401 if (!gui.in_use)
1402#endif
1403 windgoto((int)Rows - 1, 0);
1404
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001405#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1406 /* Optionally print hashtable efficiency. */
1407 hash_debug_results();
1408#endif
1409
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001410#ifdef FEAT_GUI
1411 msg_didany = FALSE;
1412#endif
1413
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001414 if (v_dying <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001415 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001416 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001417 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001418 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001419 next_tp = tp->tp_next;
Bram Moolenaar29323592016-07-24 22:04:11 +02001420 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001421 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001422 if (wp->w_buffer == NULL)
1423 /* Autocmd must have close the buffer already, skip. */
1424 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001425 buf = wp->w_buffer;
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001426 if (CHANGEDTICK(buf) != -1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001427 {
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001428 bufref_T bufref;
1429
1430 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001431 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1432 buf->b_fname, FALSE, buf);
Bram Moolenaar606d45c2017-12-18 16:21:44 +01001433 if (bufref_valid(&bufref))
1434 CHANGEDTICK(buf) = -1; /* note we did it already */
1435
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001436 /* start all over, autocommands may mess up the lists */
1437 next_tp = first_tabpage;
1438 break;
1439 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001440 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001441 }
Bram Moolenaar33aec762006-01-22 23:30:12 +00001442
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001443 /* Trigger BufUnload for buffers that are loaded */
Bram Moolenaar29323592016-07-24 22:04:11 +02001444 FOR_ALL_BUFFERS(buf)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001445 if (buf->b_ml.ml_mfp != NULL)
1446 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001447 bufref_T bufref;
1448
1449 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001450 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001451 FALSE, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001452 if (!bufref_valid(&bufref))
1453 /* autocmd deleted the buffer */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001454 break;
1455 }
1456 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1457 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001458
1459#ifdef FEAT_VIMINFO
1460 if (*p_viminfo != NUL)
1461 /* Write out the registers, history, marks etc, to the viminfo file */
1462 write_viminfo(NULL, FALSE);
1463#endif
1464
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001465 if (v_dying <= 1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001466 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001467
Bram Moolenaar05159a02005-02-26 23:04:13 +00001468#ifdef FEAT_PROFILE
1469 profile_dump();
1470#endif
1471
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001472 if (did_emsg
1473#ifdef FEAT_GUI
1474 || (gui.in_use && msg_didany && p_verbose > 0)
1475#endif
1476 )
1477 {
1478 /* give the user a chance to read the (error) message */
1479 no_wait_return = FALSE;
1480 wait_return(FALSE);
1481 }
1482
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001483 /* Position the cursor again, the autocommands may have moved it */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001484#ifdef FEAT_GUI
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001485 if (!gui.in_use)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001486#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001487 windgoto((int)Rows - 1, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001488
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001489#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar65edff82016-02-21 16:40:11 +01001490 job_stop_on_exit();
1491#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001492#ifdef FEAT_LUA
1493 lua_end();
1494#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001495#ifdef FEAT_MZSCHEME
1496 mzscheme_end();
1497#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001498#ifdef FEAT_TCL
1499 tcl_end();
1500#endif
1501#ifdef FEAT_RUBY
1502 ruby_end();
1503#endif
1504#ifdef FEAT_PYTHON
1505 python_end();
1506#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001507#ifdef FEAT_PYTHON3
1508 python3_end();
1509#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001510#ifdef FEAT_PERL
1511 perl_end();
1512#endif
1513#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1514 iconv_end();
1515#endif
1516#ifdef FEAT_NETBEANS_INTG
1517 netbeans_end();
1518#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001519#ifdef FEAT_CSCOPE
1520 cs_end();
1521#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001522#ifdef FEAT_EVAL
1523 if (garbage_collect_at_exit)
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02001524 garbage_collect(FALSE);
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001525#endif
Bram Moolenaar14993322014-09-09 12:25:33 +02001526#if defined(WIN32) && defined(FEAT_MBYTE)
1527 free_cmd_argsW();
1528#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001529
1530 mch_exit(exitval);
1531}
1532
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001533#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1534/*
1535 * Setup to use the current locale (for ctype() and many other things).
1536 */
1537 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001538init_locale(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001539{
1540 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001541
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001542# ifdef FEAT_GUI_GTK
1543 /* Tell Gtk not to change our locale settings. */
1544 gtk_disable_setlocale();
1545# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001546# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1547 /* Make sure strtod() uses a decimal point, not a comma. */
1548 setlocale(LC_NUMERIC, "C");
1549# endif
1550
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001551# ifdef WIN32
1552 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1553 * text while it's expecting text in the current locale. This call avoids
1554 * that. */
1555 setlocale(LC_CTYPE, "C");
1556# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001557
1558# ifdef FEAT_GETTEXT
1559 {
1560 int mustfree = FALSE;
1561 char_u *p;
1562
1563# ifdef DYNAMIC_GETTEXT
1564 /* Initialize the gettext library */
Bram Moolenaar286eacd2016-01-16 18:05:50 +01001565 dyn_libintl_init();
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001566# endif
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001567 /* expand_env() doesn't work yet, because g_chartab[] is not
1568 * initialized yet, call vim_getenv() directly */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001569 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1570 if (p != NULL && *p != NUL)
1571 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001572 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001573 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1574 }
1575 if (mustfree)
1576 vim_free(p);
1577 textdomain(VIMPACKAGE);
1578 }
1579# endif
1580}
1581#endif
1582
1583/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001584 * Get the name of the display, before gui_prepare() removes it from
1585 * argv[]. Used for the xterm-clipboard display.
1586 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001587 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001588 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001589 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001590early_arg_scan(mparm_T *parmp UNUSED)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001591{
Bram Moolenaar03005972008-11-20 13:12:36 +00001592#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1593 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001594 int argc = parmp->argc;
1595 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001596 int i;
1597
1598 for (i = 1; i < argc; i++)
1599 {
1600 if (STRCMP(argv[i], "--") == 0)
1601 break;
1602# ifdef FEAT_XCLIPBOARD
1603 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001604# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001605 || STRICMP(argv[i], "--display") == 0
1606# endif
1607 )
1608 {
1609 if (i == argc - 1)
1610 mainerr_arg_missing((char_u *)argv[i]);
1611 xterm_display = argv[++i];
1612 }
1613# endif
1614# ifdef FEAT_CLIENTSERVER
1615 else if (STRICMP(argv[i], "--servername") == 0)
1616 {
1617 if (i == argc - 1)
1618 mainerr_arg_missing((char_u *)argv[i]);
1619 parmp->serverName_arg = (char_u *)argv[++i];
1620 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001621 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001622 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001623 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001624 {
1625 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001626# ifdef FEAT_GUI
1627 if (strstr(argv[i], "-wait") != 0)
1628 /* don't fork() when starting the GUI to edit files ourself */
1629 gui.dofork = FALSE;
1630# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001631 }
1632# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001633
1634# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1635# ifdef FEAT_GUI_W32
1636 else if (STRICMP(argv[i], "--windowid") == 0)
1637# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001638 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001639# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001640 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001641 long_u id;
1642 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001643
1644 if (i == argc - 1)
1645 mainerr_arg_missing((char_u *)argv[i]);
1646 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001647 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001648 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001649 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001650 if (count != 1)
1651 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1652 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001653# ifdef FEAT_GUI_W32
1654 win_socket_id = id;
1655# else
1656 gtk_socket_id = id;
1657# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001658 i++;
1659 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001660# endif
1661# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001662 else if (STRICMP(argv[i], "--echo-wid") == 0)
1663 echo_wid_arg = TRUE;
1664# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001665# ifndef FEAT_NETBEANS_INTG
1666 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001667 {
1668 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1669 mch_exit(2);
1670 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001671# endif
1672
Bram Moolenaar58d98232005-07-23 22:25:46 +00001673 }
1674#endif
1675}
1676
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001677#ifndef NO_VIM_MAIN
1678/*
1679 * Get a (optional) count for a Vim argument.
1680 */
1681 static int
1682get_number_arg(
1683 char_u *p, /* pointer to argument */
1684 int *idx, /* index in argument, is incremented */
1685 int def) /* default value */
1686{
1687 if (vim_isdigit(p[*idx]))
1688 {
1689 def = atoi((char *)&(p[*idx]));
1690 while (vim_isdigit(p[*idx]))
1691 *idx = *idx + 1;
1692 }
1693 return def;
1694}
1695
1696/*
1697 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1698 * If the executable name starts with "r" we disable shell commands.
1699 * If the next character is "e" we run in Easy mode.
1700 * If the next character is "g" we run the GUI version.
1701 * If the next characters are "view" we start in readonly mode.
1702 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1703 * If the next characters are "ex" we start in Ex mode. If it's followed
1704 * by "im" use improved Ex mode.
1705 */
1706 static void
1707parse_command_name(mparm_T *parmp)
1708{
1709 char_u *initstr;
1710
1711 initstr = gettail((char_u *)parmp->argv[0]);
1712
Bram Moolenaard0573012017-10-28 21:11:06 +02001713#ifdef FEAT_GUI_MAC
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001714 /* An issue has been seen when launching Vim in such a way that
1715 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1716 * executable or a symbolic link of it. Until this issue is resolved
1717 * we prohibit the GUI from being used.
1718 */
1719 if (STRCMP(initstr, parmp->argv[0]) == 0)
1720 disallow_gui = TRUE;
1721
1722 /* TODO: On MacOS X default to gui if argv[0] ends in:
1723 * /Vim.app/Contents/MacOS/Vim */
1724#endif
1725
1726#ifdef FEAT_EVAL
1727 set_vim_var_string(VV_PROGNAME, initstr, -1);
Bram Moolenaar08cab962017-03-04 14:37:18 +01001728 set_progpath((char_u *)parmp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001729#endif
1730
1731 if (TOLOWER_ASC(initstr[0]) == 'r')
1732 {
1733 restricted = TRUE;
1734 ++initstr;
1735 }
1736
1737 /* Use evim mode for "evim" and "egvim", not for "editor". */
1738 if (TOLOWER_ASC(initstr[0]) == 'e'
1739 && (TOLOWER_ASC(initstr[1]) == 'v'
1740 || TOLOWER_ASC(initstr[1]) == 'g'))
1741 {
1742#ifdef FEAT_GUI
1743 gui.starting = TRUE;
1744#endif
1745 parmp->evim_mode = TRUE;
1746 ++initstr;
1747 }
1748
1749 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1750 if (TOLOWER_ASC(initstr[0]) == 'g')
1751 {
1752 main_start_gui();
1753#ifdef FEAT_GUI
1754 ++initstr;
1755#endif
1756 }
1757
1758 if (STRNICMP(initstr, "view", 4) == 0)
1759 {
1760 readonlymode = TRUE;
1761 curbuf->b_p_ro = TRUE;
1762 p_uc = 10000; /* don't update very often */
1763 initstr += 4;
1764 }
1765 else if (STRNICMP(initstr, "vim", 3) == 0)
1766 initstr += 3;
1767
1768 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1769 if (STRICMP(initstr, "diff") == 0)
1770 {
1771#ifdef FEAT_DIFF
1772 parmp->diff_mode = TRUE;
1773#else
1774 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1775 mch_errmsg("\n");
1776 mch_exit(2);
1777#endif
1778 }
1779
1780 if (STRNICMP(initstr, "ex", 2) == 0)
1781 {
1782 if (STRNICMP(initstr + 2, "im", 2) == 0)
1783 exmode_active = EXMODE_VIM;
1784 else
1785 exmode_active = EXMODE_NORMAL;
1786 change_compatible(TRUE); /* set 'compatible' */
1787 }
1788}
1789
Bram Moolenaar58d98232005-07-23 22:25:46 +00001790/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001791 * Scan the command line arguments.
1792 */
1793 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001794command_line_scan(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001795{
1796 int argc = parmp->argc;
1797 char **argv = parmp->argv;
1798 int argv_idx; /* index in argv[n][] */
1799 int had_minmin = FALSE; /* found "--" argument */
1800 int want_argument; /* option argument with argument */
1801 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001802 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001803 long n;
1804
1805 --argc;
1806 ++argv;
1807 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1808 while (argc > 0)
1809 {
1810 /*
1811 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1812 */
1813 if (argv[0][0] == '+' && !had_minmin)
1814 {
1815 if (parmp->n_commands >= MAX_ARG_CMDS)
1816 mainerr(ME_EXTRA_CMD, NULL);
1817 argv_idx = -1; /* skip to next argument */
1818 if (argv[0][1] == NUL)
1819 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1820 else
1821 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1822 }
1823
1824 /*
1825 * Optional argument.
1826 */
1827 else if (argv[0][0] == '-' && !had_minmin)
1828 {
1829 want_argument = FALSE;
1830 c = argv[0][argv_idx++];
1831#ifdef VMS
1832 /*
1833 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1834 * and "-/X" as "-X".
1835 */
1836 if (c == '/')
1837 {
1838 c = argv[0][argv_idx++];
1839 c = TOUPPER_ASC(c);
1840 }
1841 else
1842 c = TOLOWER_ASC(c);
1843#endif
1844 switch (c)
1845 {
1846 case NUL: /* "vim -" read from stdin */
1847 /* "ex -" silent mode */
1848 if (exmode_active)
1849 silent_mode = TRUE;
1850 else
1851 {
1852 if (parmp->edit_type != EDIT_NONE)
1853 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1854 parmp->edit_type = EDIT_STDIN;
1855 read_cmd_fd = 2; /* read from stderr instead of stdin */
1856 }
1857 argv_idx = -1; /* skip to next argument */
1858 break;
1859
1860 case '-': /* "--" don't take any more option arguments */
1861 /* "--help" give help message */
1862 /* "--version" give version message */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001863 /* "--clean" clean context */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001864 /* "--literal" take files literally */
1865 /* "--nofork" don't fork */
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001866 /* "--not-a-term" don't warn for not a term */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001867 /* "--ttyfail" exit if not a term */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001868 /* "--noplugin[s]" skip plugins */
1869 /* "--cmd <cmd>" execute cmd before vimrc */
1870 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1871 usage();
1872 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1873 {
1874 Columns = 80; /* need to init Columns */
1875 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1876 list_version();
1877 msg_putchar('\n');
1878 msg_didout = FALSE;
1879 mch_exit(0);
1880 }
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001881 else if (STRNICMP(argv[0] + argv_idx, "clean", 5) == 0)
1882 {
1883 parmp->use_vimrc = (char_u *)"DEFAULTS";
Bram Moolenaar07268702018-03-01 21:57:32 +01001884 parmp->clean = TRUE;
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001885 set_option_value((char_u *)"vif", 0L, (char_u *)"NONE", 0);
1886 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001887 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1888 {
Bram Moolenaar53076832015-12-31 19:53:21 +01001889#ifdef EXPAND_FILENAMES
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001890 parmp->literal = TRUE;
1891#endif
1892 }
1893 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1894 {
1895#ifdef FEAT_GUI
1896 gui.dofork = FALSE; /* don't fork() when starting GUI */
1897#endif
1898 }
1899 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1900 p_lpl = FALSE;
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001901 else if (STRNICMP(argv[0] + argv_idx, "not-a-term", 10) == 0)
1902 parmp->not_a_term = TRUE;
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001903 else if (STRNICMP(argv[0] + argv_idx, "ttyfail", 7) == 0)
1904 parmp->tty_fail = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001905 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1906 {
1907 want_argument = TRUE;
1908 argv_idx += 3;
1909 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001910 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1911 {
1912 want_argument = TRUE;
1913 argv_idx += 11;
1914 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001915#ifdef FEAT_CLIENTSERVER
1916 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1917 ; /* already processed -- no arg */
1918 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1919 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1920 {
1921 /* already processed -- snatch the following arg */
1922 if (argc > 1)
1923 {
1924 --argc;
1925 ++argv;
1926 }
1927 }
1928#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001929#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1930# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001931 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001932# else
1933 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1934# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001935 {
1936 /* already processed -- snatch the following arg */
1937 if (argc > 1)
1938 {
1939 --argc;
1940 ++argv;
1941 }
1942 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001943#endif
1944#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001945 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1946 {
1947 /* already processed, skip */
1948 }
1949#endif
1950 else
1951 {
1952 if (argv[0][argv_idx])
1953 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1954 had_minmin = TRUE;
1955 }
1956 if (!want_argument)
1957 argv_idx = -1; /* skip to next argument */
1958 break;
1959
1960 case 'A': /* "-A" start in Arabic mode */
1961#ifdef FEAT_ARABIC
1962 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1963#else
1964 mch_errmsg(_(e_noarabic));
1965 mch_exit(2);
1966#endif
1967 break;
1968
1969 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001970 /* Needs to be effective before expanding file names, because
1971 * for Win32 this makes us edit a shortcut file itself,
1972 * instead of the file it links to. */
1973 set_options_bin(curbuf->b_p_bin, 1, 0);
1974 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001975 break;
1976
1977 case 'C': /* "-C" Compatible */
1978 change_compatible(TRUE);
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02001979 has_dash_c_arg = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001980 break;
1981
1982 case 'e': /* "-e" Ex mode */
1983 exmode_active = EXMODE_NORMAL;
1984 break;
1985
1986 case 'E': /* "-E" Improved Ex mode */
1987 exmode_active = EXMODE_VIM;
1988 break;
1989
1990 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1991 window directly, not with newcli */
1992#ifdef FEAT_GUI
1993 gui.dofork = FALSE; /* don't fork() when starting GUI */
1994#endif
1995 break;
1996
1997 case 'g': /* "-g" start GUI */
1998 main_start_gui();
1999 break;
2000
2001 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
2002#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002003 p_fkmap = TRUE;
2004 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002005#else
2006 mch_errmsg(_(e_nofarsi));
2007 mch_exit(2);
2008#endif
2009 break;
2010
2011 case 'h': /* "-h" give help message */
2012#ifdef FEAT_GUI_GNOME
2013 /* Tell usage() to exit for "gvim". */
2014 gui.starting = FALSE;
2015#endif
2016 usage();
2017 break;
2018
2019 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
2020#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002021 p_hkmap = TRUE;
2022 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002023#else
2024 mch_errmsg(_(e_nohebrew));
2025 mch_exit(2);
2026#endif
2027 break;
2028
2029 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
2030#ifdef FEAT_LISP
2031 set_option_value((char_u *)"lisp", 1L, NULL, 0);
2032 p_sm = TRUE;
2033#endif
2034 break;
2035
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002036 case 'M': /* "-M" no changes or writing of files */
2037 reset_modifiable();
2038 /* FALLTHROUGH */
2039
2040 case 'm': /* "-m" no writing of files */
2041 p_write = FALSE;
2042 break;
2043
2044 case 'y': /* "-y" easy mode */
2045#ifdef FEAT_GUI
2046 gui.starting = TRUE; /* start GUI a bit later */
2047#endif
2048 parmp->evim_mode = TRUE;
2049 break;
2050
2051 case 'N': /* "-N" Nocompatible */
2052 change_compatible(FALSE);
2053 break;
2054
2055 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002056#ifdef FEAT_NETBEANS_INTG
2057 /* checking for "-nb", netbeans parameters */
2058 if (argv[0][argv_idx] == 'b')
2059 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002060 netbeansArg = argv[0];
2061 argv_idx = -1; /* skip to next argument */
2062 }
2063 else
2064#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002065 parmp->no_swap_file = TRUE;
2066 break;
2067
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002068 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002069#ifdef TARGET_API_MAC_OSX
2070 /* For some reason on MacOS X, an argument like:
2071 -psn_0_10223617 is passed in when invoke from Finder
2072 or with the 'open' command */
2073 if (argv[0][argv_idx] == 's')
2074 {
2075 argv_idx = -1; /* bypass full -psn */
2076 main_start_gui();
2077 break;
2078 }
2079#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002080 /* default is 0: open window for each file */
2081 parmp->window_count = get_number_arg((char_u *)argv[0],
2082 &argv_idx, 0);
2083 parmp->window_layout = WIN_TABS;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002084 break;
2085
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002086 case 'o': /* "-o[N]" open N horizontal split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002087 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002088 parmp->window_count = get_number_arg((char_u *)argv[0],
2089 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002090 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002091 break;
2092
2093 case 'O': /* "-O[N]" open N vertical split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002094 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002095 parmp->window_count = get_number_arg((char_u *)argv[0],
2096 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002097 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002098 break;
2099
2100#ifdef FEAT_QUICKFIX
2101 case 'q': /* "-q" QuickFix mode */
2102 if (parmp->edit_type != EDIT_NONE)
2103 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2104 parmp->edit_type = EDIT_QF;
2105 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2106 {
2107 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2108 argv_idx = -1;
2109 }
2110 else if (argc > 1) /* "-q {errorfile}" */
2111 want_argument = TRUE;
2112 break;
2113#endif
2114
2115 case 'R': /* "-R" readonly mode */
2116 readonlymode = TRUE;
2117 curbuf->b_p_ro = TRUE;
2118 p_uc = 10000; /* don't update very often */
2119 break;
2120
2121 case 'r': /* "-r" recovery mode */
2122 case 'L': /* "-L" recovery mode */
2123 recoverymode = 1;
2124 break;
2125
2126 case 's':
2127 if (exmode_active) /* "-s" silent (batch) mode */
2128 silent_mode = TRUE;
2129 else /* "-s {scriptin}" read from script file */
2130 want_argument = TRUE;
2131 break;
2132
2133 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2134 if (parmp->edit_type != EDIT_NONE)
2135 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2136 parmp->edit_type = EDIT_TAG;
2137 if (argv[0][argv_idx]) /* "-t{tag}" */
2138 {
2139 parmp->tagname = (char_u *)argv[0] + argv_idx;
2140 argv_idx = -1;
2141 }
2142 else /* "-t {tag}" */
2143 want_argument = TRUE;
2144 break;
2145
2146#ifdef FEAT_EVAL
2147 case 'D': /* "-D" Debugging */
2148 parmp->use_debug_break_level = 9999;
2149 break;
2150#endif
2151#ifdef FEAT_DIFF
2152 case 'd': /* "-d" 'diff' */
2153# ifdef AMIGA
2154 /* check for "-dev {device}" */
2155 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2156 want_argument = TRUE;
2157 else
2158# endif
2159 parmp->diff_mode = TRUE;
2160 break;
2161#endif
2162 case 'V': /* "-V{N}" Verbose level */
2163 /* default is 10: a little bit verbose */
2164 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2165 if (argv[0][argv_idx] != NUL)
2166 {
2167 set_option_value((char_u *)"verbosefile", 0L,
2168 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002169 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002170 }
2171 break;
2172
2173 case 'v': /* "-v" Vi-mode (as if called "vi") */
2174 exmode_active = 0;
2175#ifdef FEAT_GUI
2176 gui.starting = FALSE; /* don't start GUI */
2177#endif
2178 break;
2179
2180 case 'w': /* "-w{number}" set window height */
2181 /* "-w {scriptout}" write to script */
2182 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2183 {
2184 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2185 set_option_value((char_u *)"window", n, NULL, 0);
2186 break;
2187 }
2188 want_argument = TRUE;
2189 break;
2190
2191#ifdef FEAT_CRYPT
2192 case 'x': /* "-x" encrypted reading/writing of files */
2193 parmp->ask_for_key = TRUE;
2194 break;
2195#endif
2196
2197 case 'X': /* "-X" don't connect to X server */
2198#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2199 x_no_connect = TRUE;
2200#endif
2201 break;
2202
2203 case 'Z': /* "-Z" restricted mode */
2204 restricted = TRUE;
2205 break;
2206
2207 case 'c': /* "-c{command}" or "-c {command}" execute
2208 command */
2209 if (argv[0][argv_idx] != NUL)
2210 {
2211 if (parmp->n_commands >= MAX_ARG_CMDS)
2212 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002213 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2214 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002215 argv_idx = -1;
2216 break;
2217 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002218 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002219 case 'S': /* "-S {file}" execute Vim script */
2220 case 'i': /* "-i {viminfo}" use for viminfo */
2221#ifndef FEAT_DIFF
2222 case 'd': /* "-d {device}" device (for Amiga) */
2223#endif
2224 case 'T': /* "-T {terminal}" terminal name */
2225 case 'u': /* "-u {vimrc}" vim inits file */
2226 case 'U': /* "-U {gvimrc}" gvim inits file */
2227 case 'W': /* "-W {scriptout}" overwrite */
2228#ifdef FEAT_GUI_W32
2229 case 'P': /* "-P {parent title}" MDI parent */
2230#endif
2231 want_argument = TRUE;
2232 break;
2233
2234 default:
2235 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2236 }
2237
2238 /*
2239 * Handle option arguments with argument.
2240 */
2241 if (want_argument)
2242 {
2243 /*
2244 * Check for garbage immediately after the option letter.
2245 */
2246 if (argv[0][argv_idx] != NUL)
2247 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2248
2249 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002250 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002251 mainerr_arg_missing((char_u *)argv[0]);
2252 ++argv;
2253 argv_idx = -1;
2254
2255 switch (c)
2256 {
2257 case 'c': /* "-c {command}" execute command */
2258 case 'S': /* "-S {file}" execute Vim script */
2259 if (parmp->n_commands >= MAX_ARG_CMDS)
2260 mainerr(ME_EXTRA_CMD, NULL);
2261 if (c == 'S')
2262 {
2263 char *a;
2264
2265 if (argc < 1)
2266 /* "-S" without argument: use default session file
2267 * name. */
2268 a = SESSION_FILE;
2269 else if (argv[0][0] == '-')
2270 {
2271 /* "-S" followed by another option: use default
2272 * session file name. */
2273 a = SESSION_FILE;
2274 ++argc;
2275 --argv;
2276 }
2277 else
2278 a = argv[0];
2279 p = alloc((unsigned)(STRLEN(a) + 4));
2280 if (p == NULL)
2281 mch_exit(2);
2282 sprintf((char *)p, "so %s", a);
2283 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2284 parmp->commands[parmp->n_commands++] = p;
2285 }
2286 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002287 parmp->commands[parmp->n_commands++] =
2288 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002289 break;
2290
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002291 case '-':
2292 if (argv[-1][2] == 'c')
2293 {
2294 /* "--cmd {command}" execute command */
2295 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2296 mainerr(ME_EXTRA_CMD, NULL);
2297 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002298 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002299 }
2300 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002301 break;
2302
2303 /* case 'd': -d {device} is handled in mch_check_win() for the
2304 * Amiga */
2305
2306#ifdef FEAT_QUICKFIX
2307 case 'q': /* "-q {errorfile}" QuickFix mode */
2308 parmp->use_ef = (char_u *)argv[0];
2309 break;
2310#endif
2311
2312 case 'i': /* "-i {viminfo}" use for viminfo */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002313 set_option_value((char_u *)"vif", 0L, (char_u *)argv[0], 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002314 break;
2315
2316 case 's': /* "-s {scriptin}" read from script file */
2317 if (scriptin[0] != NULL)
2318 {
2319scripterror:
2320 mch_errmsg(_("Attempt to open script file again: \""));
2321 mch_errmsg(argv[-1]);
2322 mch_errmsg(" ");
2323 mch_errmsg(argv[0]);
2324 mch_errmsg("\"\n");
2325 mch_exit(2);
2326 }
2327 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2328 {
2329 mch_errmsg(_("Cannot open for reading: \""));
2330 mch_errmsg(argv[0]);
2331 mch_errmsg("\"\n");
2332 mch_exit(2);
2333 }
2334 if (save_typebuf() == FAIL)
2335 mch_exit(2); /* out of memory */
2336 break;
2337
2338 case 't': /* "-t {tag}" */
2339 parmp->tagname = (char_u *)argv[0];
2340 break;
2341
2342 case 'T': /* "-T {terminal}" terminal name */
2343 /*
2344 * The -T term argument is always available and when
2345 * HAVE_TERMLIB is supported it overrides the environment
2346 * variable TERM.
2347 */
2348#ifdef FEAT_GUI
2349 if (term_is_gui((char_u *)argv[0]))
2350 gui.starting = TRUE; /* start GUI a bit later */
2351 else
2352#endif
2353 parmp->term = (char_u *)argv[0];
2354 break;
2355
2356 case 'u': /* "-u {vimrc}" vim inits file */
2357 parmp->use_vimrc = (char_u *)argv[0];
2358 break;
2359
2360 case 'U': /* "-U {gvimrc}" gvim inits file */
2361#ifdef FEAT_GUI
2362 use_gvimrc = (char_u *)argv[0];
2363#endif
2364 break;
2365
2366 case 'w': /* "-w {nr}" 'window' value */
2367 /* "-w {scriptout}" append to script file */
2368 if (vim_isdigit(*((char_u *)argv[0])))
2369 {
2370 argv_idx = 0;
2371 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2372 set_option_value((char_u *)"window", n, NULL, 0);
2373 argv_idx = -1;
2374 break;
2375 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002376 /* FALLTHROUGH */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002377 case 'W': /* "-W {scriptout}" overwrite script file */
2378 if (scriptout != NULL)
2379 goto scripterror;
2380 if ((scriptout = mch_fopen(argv[0],
2381 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2382 {
2383 mch_errmsg(_("Cannot open for script output: \""));
2384 mch_errmsg(argv[0]);
2385 mch_errmsg("\"\n");
2386 mch_exit(2);
2387 }
2388 break;
2389
2390#ifdef FEAT_GUI_W32
2391 case 'P': /* "-P {parent title}" MDI parent */
2392 gui_mch_set_parent(argv[0]);
2393 break;
2394#endif
2395 }
2396 }
2397 }
2398
2399 /*
2400 * File name argument.
2401 */
2402 else
2403 {
2404 argv_idx = -1; /* skip to next argument */
2405
2406 /* Check for only one type of editing. */
2407 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2408 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2409 parmp->edit_type = EDIT_FILE;
2410
2411#ifdef MSWIN
2412 /* Remember if the argument was a full path before changing
2413 * slashes to backslashes. */
2414 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2415 parmp->full_path = TRUE;
2416#endif
2417
2418 /* Add the file to the global argument list. */
2419 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2420 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2421 mch_exit(2);
2422#ifdef FEAT_DIFF
2423 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2424 && !mch_isdir(alist_name(&GARGLIST[0])))
2425 {
2426 char_u *r;
2427
2428 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2429 if (r != NULL)
2430 {
2431 vim_free(p);
2432 p = r;
2433 }
2434 }
2435#endif
2436#if defined(__CYGWIN32__) && !defined(WIN32)
2437 /*
2438 * If vim is invoked by non-Cygwin tools, convert away any
2439 * DOS paths, so things like .swp files are created correctly.
2440 * Look for evidence of non-Cygwin paths before we bother.
2441 * This is only for when using the Unix files.
2442 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002443 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002444 {
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002445 char posix_path[MAXPATHL];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002446
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002447# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002448 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002449# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002450 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002451# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002452 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002453 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002454 if (p == NULL)
2455 mch_exit(2);
2456 }
2457#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002458
2459#ifdef USE_FNAME_CASE
2460 /* Make the case of the file name match the actual file. */
2461 fname_case(p, 0);
2462#endif
2463
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002464 alist_add(&global_alist, p,
Bram Moolenaar53076832015-12-31 19:53:21 +01002465#ifdef EXPAND_FILENAMES
Bram Moolenaar231334e2005-07-25 20:46:57 +00002466 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002467#else
2468 2 /* add buffer number now and use curbuf */
2469#endif
2470 );
2471
2472#if defined(FEAT_MBYTE) && defined(WIN32)
2473 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002474 /* Remember this argument has been added to the argument list.
2475 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002476 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002477# ifdef FEAT_DIFF
2478 parmp->diff_mode
2479# else
2480 FALSE
2481# endif
2482 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002483 }
2484#endif
2485 }
2486
2487 /*
2488 * If there are no more letters after the current "-", go to next
2489 * argument. argv_idx is set to -1 when the current argument is to be
2490 * skipped.
2491 */
2492 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2493 {
2494 --argc;
2495 ++argv;
2496 argv_idx = 1;
2497 }
2498 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002499
2500#ifdef FEAT_EVAL
2501 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2502 * one. */
2503 if (parmp->n_commands > 0)
2504 {
2505 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2506 if (p != NULL)
2507 {
2508 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2509 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2510 vim_free(p);
2511 }
2512 }
2513#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002514}
2515
2516/*
2517 * Print a warning if stdout is not a terminal.
Bram Moolenaar42b23fa2018-02-03 14:46:45 +01002518 * When starting in Ex mode and commands come from a file, set silent_mode.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002519 */
2520 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002521check_tty(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002522{
2523 int input_isatty; /* is active input a terminal? */
2524
2525 input_isatty = mch_input_isatty();
2526 if (exmode_active)
2527 {
2528 if (!input_isatty)
2529 silent_mode = TRUE;
2530 }
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002531 else if (parmp->want_full_screen && (!stdout_isatty || !input_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002532#ifdef FEAT_GUI
2533 /* don't want the delay when started from the desktop */
2534 && !gui.starting
2535#endif
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01002536 && !parmp->not_a_term)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002537 {
2538#ifdef NBDEBUG
2539 /*
2540 * This shouldn't be necessary. But if I run netbeans with the log
2541 * output coming to the console and XOpenDisplay fails, I get vim
2542 * trying to start with input/output to my console tty. This fills my
2543 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002544 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002545 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002546 if (netbeans_active() && (!stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002547 {
2548 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2549 exit(1);
2550 }
2551#endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002552#if defined(WIN3264) && !defined(FEAT_GUI_W32)
2553 if (is_cygpty_used())
2554 {
Bram Moolenaar2a027452017-09-26 19:10:37 +02002555# if defined(FEAT_MBYTE) && defined(HAVE_BIND_TEXTDOMAIN_CODESET) \
2556 && defined(FEAT_GETTEXT)
2557 char *s, *tofree = NULL;
2558
2559 /* Set the encoding of the error message based on $LC_ALL or
2560 * other environment variables instead of 'encoding'.
2561 * Note that the message is shown on a Cygwin terminal (e.g.
2562 * mintty) which encoding is based on $LC_ALL or etc., not the
2563 * current codepage used by normal Win32 console programs. */
Bram Moolenaar9cf39cc2017-09-27 21:46:19 +02002564 tofree = s = (char *)enc_locale_env(NULL);
Bram Moolenaar2a027452017-09-26 19:10:37 +02002565 if (s == NULL)
2566 s = "utf-8"; /* Use "utf-8" by default. */
2567 (void)bind_textdomain_codeset(VIMPACKAGE, s);
2568 vim_free(tofree);
2569# endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002570 mch_errmsg(_("Vim: Error: This version of Vim does not run in a Cygwin terminal\n"));
2571 exit(1);
2572 }
2573#endif
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002574 if (!stdout_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002575 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2576 if (!input_isatty)
2577 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2578 out_flush();
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002579 if (parmp->tty_fail && (!stdout_isatty || !input_isatty))
2580 exit(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002581 if (scriptin[0] == NULL)
2582 ui_delay(2000L, TRUE);
2583 TIME_MSG("Warning delay");
2584 }
2585}
2586
2587/*
2588 * Read text from stdin.
2589 */
2590 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002591read_stdin(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002592{
2593 int i;
2594
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002595#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002596 /* When getting the ATTENTION prompt here, use a dialog */
2597 swap_exists_action = SEA_DIALOG;
2598#endif
2599 no_wait_return = TRUE;
2600 i = msg_didany;
2601 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002602 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002603 no_wait_return = FALSE;
2604 msg_didany = i;
2605 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002606#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002607 check_swap_exists_action();
2608#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002609#if !(defined(AMIGA) || defined(MACOS_X))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002610 /*
2611 * Close stdin and dup it from stderr. Required for GPM to work
2612 * properly, and for running external commands.
2613 * Is there any other system that cannot do this?
2614 */
2615 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002616 ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002617#endif
2618}
2619
2620/*
2621 * Create the requested number of windows and edit buffers in them.
2622 * Also does recovery if "recoverymode" set.
2623 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002624 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002625create_windows(mparm_T *parmp UNUSED)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002626{
Bram Moolenaar89d40322006-08-29 15:30:07 +00002627 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002628 int done = 0;
2629
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002630 /*
2631 * Create the number of windows that was requested.
2632 */
2633 if (parmp->window_count == -1) /* was not set */
2634 parmp->window_count = 1;
2635 if (parmp->window_count == 0)
2636 parmp->window_count = GARGCOUNT;
2637 if (parmp->window_count > 1)
2638 {
2639 /* Don't change the windows if there was a command in .vimrc that
2640 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002641 if (parmp->window_layout == 0)
2642 parmp->window_layout = WIN_HOR;
2643 if (parmp->window_layout == WIN_TABS)
2644 {
2645 parmp->window_count = make_tabpages(parmp->window_count);
2646 TIME_MSG("making tab pages");
2647 }
2648 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002649 {
2650 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002651 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002652 TIME_MSG("making windows");
2653 }
2654 else
2655 parmp->window_count = win_count();
2656 }
2657 else
2658 parmp->window_count = 1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002659
2660 if (recoverymode) /* do recover */
2661 {
2662 msg_scroll = TRUE; /* scroll message up */
2663 ml_recover();
2664 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2665 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002666 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002667 }
2668 else
2669 {
2670 /*
2671 * Open a buffer for windows that don't have one yet.
2672 * Commands in the .vimrc might have loaded a file or split the window.
2673 * Watch out for autocommands that delete a window.
2674 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002675 /*
2676 * Don't execute Win/Buf Enter/Leave autocommands here
2677 */
2678 ++autocmd_no_enter;
2679 ++autocmd_no_leave;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002680 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002681 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002682 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002683 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002684 {
2685 if (parmp->window_layout == WIN_TABS)
2686 goto_tabpage(1);
2687 else
2688 curwin = firstwin;
2689 }
2690 else if (parmp->window_layout == WIN_TABS)
2691 {
2692 if (curtab->tp_next == NULL)
2693 break;
2694 goto_tabpage(0);
2695 }
2696 else
2697 {
2698 if (curwin->w_next == NULL)
2699 break;
2700 curwin = curwin->w_next;
2701 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002702 dorewind = FALSE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002703 curbuf = curwin->w_buffer;
2704 if (curbuf->b_ml.ml_mfp == NULL)
2705 {
2706#ifdef FEAT_FOLDING
2707 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2708 if (p_fdls >= 0)
2709 curwin->w_p_fdl = p_fdls;
2710#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002711#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002712 /* When getting the ATTENTION prompt here, use a dialog */
2713 swap_exists_action = SEA_DIALOG;
2714#endif
2715 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002716
2717 /* create memfile, read file */
2718 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002719
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002720#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002721 if (swap_exists_action == SEA_QUIT)
2722 {
2723 if (got_int || only_one_window())
2724 {
2725 /* abort selected or quit and only one window */
2726 did_emsg = FALSE; /* avoid hit-enter prompt */
2727 getout(1);
2728 }
2729 /* We can't close the window, it would disturb what
2730 * happens next. Clear the file name and set the arg
2731 * index to -1 to delete it later. */
2732 setfname(curbuf, NULL, NULL, FALSE);
2733 curwin->w_arg_idx = -1;
2734 swap_exists_action = SEA_NONE;
2735 }
2736 else
2737 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002738#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00002739 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002740 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002741 ui_breakcheck();
2742 if (got_int)
2743 {
2744 (void)vgetc(); /* only break the file loading, not the rest */
2745 break;
2746 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002747 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002748 if (parmp->window_layout == WIN_TABS)
2749 goto_tabpage(1);
2750 else
2751 curwin = firstwin;
2752 curbuf = curwin->w_buffer;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002753 --autocmd_no_enter;
2754 --autocmd_no_leave;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002755 }
2756}
2757
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002758 /*
2759 * If opened more than one window, start editing files in the other
2760 * windows. make_windows() has already opened the windows.
2761 */
2762 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002763edit_buffers(
2764 mparm_T *parmp,
2765 char_u *cwd) /* current working dir */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002766{
2767 int arg_idx; /* index in argument list */
2768 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002769 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002770 win_T *win;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002771
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002772 /*
2773 * Don't execute Win/Buf Enter/Leave autocommands here
2774 */
2775 ++autocmd_no_enter;
2776 ++autocmd_no_leave;
Bram Moolenaar84212822006-11-07 21:59:47 +00002777
2778 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2779 if (curwin->w_arg_idx == -1)
2780 {
2781 win_close(curwin, TRUE);
2782 advance = FALSE;
2783 }
2784
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002785 arg_idx = 1;
2786 for (i = 1; i < parmp->window_count; ++i)
2787 {
Bram Moolenaard87c36e2015-04-03 14:56:49 +02002788 if (cwd != NULL)
2789 mch_chdir((char *)cwd);
Bram Moolenaar84212822006-11-07 21:59:47 +00002790 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2791 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002792 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002793 ++arg_idx;
2794 win_close(curwin, TRUE);
2795 advance = FALSE;
2796 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002797 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002798
Bram Moolenaar84212822006-11-07 21:59:47 +00002799 if (advance)
2800 {
2801 if (parmp->window_layout == WIN_TABS)
2802 {
2803 if (curtab->tp_next == NULL) /* just checking */
2804 break;
2805 goto_tabpage(0);
2806 }
2807 else
2808 {
2809 if (curwin->w_next == NULL) /* just checking */
2810 break;
2811 win_enter(curwin->w_next, FALSE);
2812 }
2813 }
2814 advance = TRUE;
2815
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002816 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002817 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002818 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2819 {
2820 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002821 /* Edit file from arg list, if there is one. When "Quit" selected
2822 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002823# ifdef HAS_SWAP_EXISTS_ACTION
2824 swap_exists_did_quit = FALSE;
2825# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002826 (void)do_ecmd(0, arg_idx < GARGCOUNT
2827 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002828 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002829# ifdef HAS_SWAP_EXISTS_ACTION
2830 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002831 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002832 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002833 if (got_int || only_one_window())
2834 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002835 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002836 did_emsg = FALSE; /* avoid hit-enter prompt */
2837 getout(1);
2838 }
2839 win_close(curwin, TRUE);
2840 advance = FALSE;
2841 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002842# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002843 if (arg_idx == GARGCOUNT - 1)
2844 arg_had_last = TRUE;
2845 ++arg_idx;
2846 }
2847 ui_breakcheck();
2848 if (got_int)
2849 {
2850 (void)vgetc(); /* only break the file loading, not the rest */
2851 break;
2852 }
2853 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002854
2855 if (parmp->window_layout == WIN_TABS)
2856 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002857 --autocmd_no_enter;
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002858
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002859 /* make the first window the current window */
2860 win = firstwin;
Bram Moolenaar4033c552017-09-16 20:54:51 +02002861#if defined(FEAT_QUICKFIX)
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002862 /* Avoid making a preview window the current window. */
2863 while (win->w_p_pvw)
2864 {
2865 win = win->w_next;
2866 if (win == NULL)
2867 {
2868 win = firstwin;
2869 break;
2870 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002871 }
2872#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002873 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002874
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002875 --autocmd_no_leave;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002876 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002877 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002878 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2879}
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002880
2881/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002882 * Execute the commands from --cmd arguments "cmds[cnt]".
2883 */
2884 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002885exe_pre_commands(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002886{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002887 char_u **cmds = parmp->pre_commands;
2888 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002889 int i;
2890
2891 if (cnt > 0)
2892 {
2893 curwin->w_cursor.lnum = 0; /* just in case.. */
2894 sourcing_name = (char_u *)_("pre-vimrc command line");
2895# ifdef FEAT_EVAL
2896 current_SID = SID_CMDARG;
2897# endif
2898 for (i = 0; i < cnt; ++i)
2899 do_cmdline_cmd(cmds[i]);
2900 sourcing_name = NULL;
2901# ifdef FEAT_EVAL
2902 current_SID = 0;
2903# endif
2904 TIME_MSG("--cmd commands");
2905 }
2906}
2907
2908/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002909 * Execute "+", "-c" and "-S" arguments.
2910 */
2911 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002912exe_commands(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002913{
2914 int i;
2915
2916 /*
2917 * We start commands on line 0, make "vim +/pat file" match a
2918 * pattern on line 1. But don't move the cursor when an autocommand
2919 * with g`" was used.
2920 */
2921 msg_scroll = TRUE;
2922 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2923 curwin->w_cursor.lnum = 0;
2924 sourcing_name = (char_u *)"command line";
2925#ifdef FEAT_EVAL
2926 current_SID = SID_CARG;
2927#endif
2928 for (i = 0; i < parmp->n_commands; ++i)
2929 {
2930 do_cmdline_cmd(parmp->commands[i]);
2931 if (parmp->cmds_tofree[i])
2932 vim_free(parmp->commands[i]);
2933 }
2934 sourcing_name = NULL;
2935#ifdef FEAT_EVAL
2936 current_SID = 0;
2937#endif
2938 if (curwin->w_cursor.lnum == 0)
2939 curwin->w_cursor.lnum = 1;
2940
2941 if (!exmode_active)
2942 msg_scroll = FALSE;
2943
2944#ifdef FEAT_QUICKFIX
2945 /* When started with "-q errorfile" jump to first error again. */
2946 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002947 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002948#endif
2949 TIME_MSG("executing command arguments");
2950}
2951
2952/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002953 * Source startup scripts.
2954 */
2955 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002956source_startup_scripts(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002957{
2958 int i;
2959
2960 /*
2961 * For "evim" source evim.vim first of all, so that the user can overrule
2962 * any things he doesn't like.
2963 */
2964 if (parmp->evim_mode)
2965 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002966 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002967 TIME_MSG("source evim file");
2968 }
2969
2970 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002971 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002972 * nothing else.
2973 */
2974 if (parmp->use_vimrc != NULL)
2975 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002976 if (STRCMP(parmp->use_vimrc, "DEFAULTS") == 0)
2977 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
2978 else if (STRCMP(parmp->use_vimrc, "NONE") == 0
Bram Moolenaar231334e2005-07-25 20:46:57 +00002979 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002980 {
2981#ifdef FEAT_GUI
2982 if (use_gvimrc == NULL) /* don't load gvimrc either */
2983 use_gvimrc = parmp->use_vimrc;
2984#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002985 }
2986 else
2987 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002988 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002989 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2990 }
2991 }
2992 else if (!silent_mode)
2993 {
2994#ifdef AMIGA
2995 struct Process *proc = (struct Process *)FindTask(0L);
2996 APTR save_winptr = proc->pr_WindowPtr;
2997
2998 /* Avoid a requester here for a volume that doesn't exist. */
2999 proc->pr_WindowPtr = (APTR)-1L;
3000#endif
3001
3002 /*
3003 * Get system wide defaults, if the file name is defined.
3004 */
3005#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003006 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003007#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00003008#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003009 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00003010#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003011
3012 /*
3013 * Try to read initialization commands from the following places:
3014 * - environment variable VIMINIT
3015 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
3016 * - second user vimrc file ($VIM/.vimrc for Dos)
3017 * - environment variable EXINIT
3018 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
3019 * - second user exrc file ($VIM/.exrc for Dos)
3020 * The first that exists is used, the rest is ignored.
3021 */
3022 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
3023 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003024 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003025#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003026 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
3027 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003028#endif
3029#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003030 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
3031 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003032#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02003033#ifdef USR_VIMRC_FILE4
3034 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
3035 DOSO_VIMRC) == FAIL
3036#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003037 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003038 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003039#ifdef USR_EXRC_FILE2
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003040 && do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003041#endif
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02003042 && !has_dash_c_arg)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003043 {
3044 /* When no .vimrc file was found: source defaults.vim. */
3045 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003046 }
3047 }
3048
3049 /*
3050 * Read initialization commands from ".vimrc" or ".exrc" in current
3051 * directory. This is only done if the 'exrc' option is set.
3052 * Because of security reasons we disallow shell and write commands
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003053 * now, except for Unix if the file is owned by the user or 'secure'
Bram Moolenaar58d98232005-07-23 22:25:46 +00003054 * option has been reset in environment of global ".exrc" or ".vimrc".
3055 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3056 * SYS_VIMRC_FILE.
3057 */
3058 if (p_exrc)
3059 {
3060#if defined(UNIX) || defined(VMS)
3061 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3062 if (!file_owned(VIMRC_FILE))
3063#endif
3064 secure = p_secure;
3065
3066 i = FAIL;
3067 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3068 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3069#ifdef USR_VIMRC_FILE2
3070 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3071 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3072#endif
3073#ifdef USR_VIMRC_FILE3
3074 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3075 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3076#endif
3077#ifdef SYS_VIMRC_FILE
3078 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3079 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3080#endif
3081 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003082 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003083
3084 if (i == FAIL)
3085 {
3086#if defined(UNIX) || defined(VMS)
3087 /* if ".exrc" is not owned by user set 'secure' mode */
3088 if (!file_owned(EXRC_FILE))
3089 secure = p_secure;
3090 else
3091 secure = 0;
3092#endif
3093 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3094 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3095#ifdef USR_EXRC_FILE2
3096 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3097 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3098#endif
3099 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003100 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003101 }
3102 }
3103 if (secure == 2)
3104 need_wait_return = TRUE;
3105 secure = 0;
3106#ifdef AMIGA
3107 proc->pr_WindowPtr = save_winptr;
3108#endif
3109 }
3110 TIME_MSG("sourcing vimrc file(s)");
3111}
3112
3113/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003114 * Setup to start using the GUI. Exit with an error when not available.
3115 */
3116 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003117main_start_gui(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003118{
3119#ifdef FEAT_GUI
3120 gui.starting = TRUE; /* start GUI a bit later */
3121#else
3122 mch_errmsg(_(e_nogvim));
3123 mch_errmsg("\n");
3124 mch_exit(2);
3125#endif
3126}
3127
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003128#endif /* NO_VIM_MAIN */
3129
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003130/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003131 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003132 * Returns FAIL if the environment variable was not executed, OK otherwise.
3133 */
3134 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003135process_env(
3136 char_u *env,
3137 int is_viminit) /* when TRUE, called for VIMINIT */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003138{
3139 char_u *initstr;
3140 char_u *save_sourcing_name;
3141 linenr_T save_sourcing_lnum;
3142#ifdef FEAT_EVAL
3143 scid_T save_sid;
3144#endif
3145
3146 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3147 {
3148 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003149 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003150 save_sourcing_name = sourcing_name;
3151 save_sourcing_lnum = sourcing_lnum;
3152 sourcing_name = env;
3153 sourcing_lnum = 0;
3154#ifdef FEAT_EVAL
3155 save_sid = current_SID;
3156 current_SID = SID_ENV;
3157#endif
3158 do_cmdline_cmd(initstr);
3159 sourcing_name = save_sourcing_name;
3160 sourcing_lnum = save_sourcing_lnum;
3161#ifdef FEAT_EVAL
Bram Moolenaar945ec092016-06-08 21:17:43 +02003162 current_SID = save_sid;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003163#endif
3164 return OK;
3165 }
3166 return FAIL;
3167}
3168
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003169#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003170/*
3171 * Return TRUE if we are certain the user owns the file "fname".
3172 * Used for ".vimrc" and ".exrc".
3173 * Use both stat() and lstat() for extra security.
3174 */
3175 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003176file_owned(char *fname)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003177{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003178 stat_T s;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003179# ifdef UNIX
3180 uid_t uid = getuid();
3181# else /* VMS */
3182 uid_t uid = ((getgid() << 16) | getuid());
3183# endif
3184
3185 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3186# ifdef HAVE_LSTAT
3187 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3188# endif
3189 );
3190}
3191#endif
3192
3193/*
3194 * Give an error message main_errors["n"] and exit.
3195 */
3196 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003197mainerr(
3198 int n, /* one of the ME_ defines */
3199 char_u *str) /* extra argument or NULL */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003200{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003201#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003202 reset_signals(); /* kill us with CTRL-C here, if you like */
3203#endif
3204
3205 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003206 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003207 mch_errmsg(_(main_errors[n]));
3208 if (str != NULL)
3209 {
3210 mch_errmsg(": \"");
3211 mch_errmsg((char *)str);
3212 mch_errmsg("\"");
3213 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003214 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003215
3216 mch_exit(1);
3217}
3218
3219 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003220mainerr_arg_missing(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003221{
3222 mainerr(ME_ARG_MISSING, str);
3223}
3224
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003225#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003226/*
3227 * print a message with three spaces prepended and '\n' appended.
3228 */
3229 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003230main_msg(char *s)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003231{
3232 mch_msg(" ");
3233 mch_msg(s);
3234 mch_msg("\n");
3235}
3236
3237/*
3238 * Print messages for "vim -h" or "vim --help" and exit.
3239 */
3240 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003241usage(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003242{
3243 int i;
3244 static char *(use[]) =
3245 {
3246 N_("[file ..] edit specified file(s)"),
3247 N_("- read text from stdin"),
3248 N_("-t tag edit file where tag is defined"),
3249#ifdef FEAT_QUICKFIX
3250 N_("-q [errorfile] edit file with first error")
3251#endif
3252 };
3253
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003254#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003255 reset_signals(); /* kill us with CTRL-C here, if you like */
3256#endif
3257
3258 mch_msg(longVersion);
3259 mch_msg(_("\n\nusage:"));
3260 for (i = 0; ; ++i)
3261 {
3262 mch_msg(_(" vim [arguments] "));
3263 mch_msg(_(use[i]));
3264 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3265 break;
3266 mch_msg(_("\n or:"));
3267 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003268#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003269 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003270#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003271
3272 mch_msg(_("\n\nArguments:\n"));
3273 main_msg(_("--\t\t\tOnly file names after this"));
Bram Moolenaar53076832015-12-31 19:53:21 +01003274#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003275 main_msg(_("--literal\t\tDon't expand wildcards"));
3276#endif
3277#ifdef FEAT_OLE
3278 main_msg(_("-register\t\tRegister this gvim for OLE"));
3279 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3280#endif
3281#ifdef FEAT_GUI
3282 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3283 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3284#endif
3285 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3286 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003287 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003288 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3289#ifdef FEAT_DIFF
3290 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3291#endif
3292 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3293 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3294 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3295 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3296 main_msg(_("-M\t\t\tModifications in text not allowed"));
3297 main_msg(_("-b\t\t\tBinary mode"));
3298#ifdef FEAT_LISP
3299 main_msg(_("-l\t\t\tLisp mode"));
3300#endif
3301 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3302 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003303 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3304#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003305 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003306#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003307 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3308 main_msg(_("-r\t\t\tList swap files and exit"));
3309 main_msg(_("-r (with file name)\tRecover crashed session"));
3310 main_msg(_("-L\t\t\tSame as -r"));
3311#ifdef AMIGA
3312 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3313 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3314#endif
3315#ifdef FEAT_ARABIC
3316 main_msg(_("-A\t\t\tstart in Arabic mode"));
3317#endif
3318#ifdef FEAT_RIGHTLEFT
3319 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3320#endif
3321#ifdef FEAT_FKMAP
3322 main_msg(_("-F\t\t\tStart in Farsi mode"));
3323#endif
3324 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01003325 main_msg(_("--not-a-term\t\tSkip warning for input/output not being a terminal"));
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01003326 main_msg(_("--ttyfail\t\tExit if input or output is not a terminal"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003327 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3328#ifdef FEAT_GUI
3329 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3330#endif
3331 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003332 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003333 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3334 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3335 main_msg(_("+\t\t\tStart at end of file"));
3336 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003337 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003338 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3339 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3340 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3341 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3342 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3343#ifdef FEAT_CRYPT
3344 main_msg(_("-x\t\t\tEdit encrypted files"));
3345#endif
3346#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3347# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3348 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3349# endif
3350 main_msg(_("-X\t\t\tDo not connect to X server"));
3351#endif
3352#ifdef FEAT_CLIENTSERVER
3353 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3354 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3355 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3356 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003357 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003358 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3359 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3360 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3361 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3362#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003363#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003364 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003365#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003366#ifdef FEAT_VIMINFO
3367 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3368#endif
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003369 main_msg(_("--clean\t\t'nocompatible', Vim defaults, no plugins, no viminfo"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003370 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3371 main_msg(_("--version\t\tPrint version information and exit"));
3372
3373#ifdef FEAT_GUI_X11
3374# ifdef FEAT_GUI_MOTIF
3375 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3376# else
3377# ifdef FEAT_GUI_ATHENA
3378# ifdef FEAT_GUI_NEXTAW
3379 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3380# else
3381 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3382# endif
3383# endif
3384# endif
3385 main_msg(_("-display <display>\tRun vim on <display>"));
3386 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003387 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3388 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3389 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3390 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3391 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3392 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3393 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3394 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3395# ifdef FEAT_GUI_ATHENA
3396 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3397# endif
3398 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3399 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3400 main_msg(_("-xrm <resource>\tSet the specified resource"));
3401#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003402#ifdef FEAT_GUI_GTK
3403 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3404 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3405 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3406 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3407 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003408 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003409 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003410 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003411#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003412#ifdef FEAT_GUI_W32
3413 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003414 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003415#endif
3416
3417#ifdef FEAT_GUI_GNOME
3418 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3419 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003420 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003421 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003422 gui.dofork = FALSE;
3423 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003424 else
3425#endif
3426 mch_exit(0);
3427}
3428
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003429#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003430/*
3431 * Check the result of the ATTENTION dialog:
3432 * When "Quit" selected, exit Vim.
3433 * When "Recover" selected, recover the file.
3434 */
3435 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003436check_swap_exists_action(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003437{
3438 if (swap_exists_action == SEA_QUIT)
3439 getout(1);
3440 handle_swap_exists(NULL);
3441}
3442#endif
3443
Bram Moolenaar08cab962017-03-04 14:37:18 +01003444#endif /* NO_VIM_MAIN */
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003445
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003446#if defined(STARTUPTIME) || defined(PROTO)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003447static void time_diff(struct timeval *then, struct timeval *now);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003448
3449static struct timeval prev_timeval;
3450
Bram Moolenaar3f269672009-11-03 11:11:11 +00003451# ifdef WIN3264
3452/*
3453 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3454 */
3455 static int
3456gettimeofday(struct timeval *tv, char *dummy)
3457{
3458 long t = clock();
3459 tv->tv_sec = t / CLOCKS_PER_SEC;
3460 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3461 return 0;
3462}
3463# endif
3464
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003465/*
3466 * Save the previous time before doing something that could nest.
3467 * set "*tv_rel" to the time elapsed so far.
3468 */
3469 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003470time_push(void *tv_rel, void *tv_start)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003471{
3472 *((struct timeval *)tv_rel) = prev_timeval;
3473 gettimeofday(&prev_timeval, NULL);
3474 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3475 - ((struct timeval *)tv_rel)->tv_usec;
3476 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3477 - ((struct timeval *)tv_rel)->tv_sec;
3478 if (((struct timeval *)tv_rel)->tv_usec < 0)
3479 {
3480 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3481 --((struct timeval *)tv_rel)->tv_sec;
3482 }
3483 *(struct timeval *)tv_start = prev_timeval;
3484}
3485
3486/*
3487 * Compute the previous time after doing something that could nest.
3488 * Subtract "*tp" from prev_timeval;
3489 * Note: The arguments are (void *) to avoid trouble with systems that don't
3490 * have struct timeval.
3491 */
3492 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003493time_pop(
3494 void *tp) /* actually (struct timeval *) */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003495{
3496 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3497 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3498 if (prev_timeval.tv_usec < 0)
3499 {
3500 prev_timeval.tv_usec += 1000000;
3501 --prev_timeval.tv_sec;
3502 }
3503}
3504
3505 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003506time_diff(struct timeval *then, struct timeval *now)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003507{
3508 long usec;
3509 long msec;
3510
3511 usec = now->tv_usec - then->tv_usec;
3512 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3513 usec = usec % 1000L;
3514 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3515}
3516
3517 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003518time_msg(
3519 char *mesg,
3520 void *tv_start) /* only for do_source: start time; actually
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003521 (struct timeval *) */
3522{
3523 static struct timeval start;
3524 struct timeval now;
3525
3526 if (time_fd != NULL)
3527 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003528 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003529 {
3530 gettimeofday(&start, NULL);
3531 prev_timeval = start;
3532 fprintf(time_fd, "\n\ntimes in msec\n");
3533 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3534 fprintf(time_fd, " clock elapsed: other lines\n\n");
3535 }
3536 gettimeofday(&now, NULL);
3537 time_diff(&start, &now);
3538 if (((struct timeval *)tv_start) != NULL)
3539 {
3540 fprintf(time_fd, " ");
3541 time_diff(((struct timeval *)tv_start), &now);
3542 }
3543 fprintf(time_fd, " ");
3544 time_diff(&prev_timeval, &now);
3545 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003546 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003547 }
3548}
3549
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003550#endif
3551
Bram Moolenaar595297d2017-03-04 19:11:12 +01003552#if !defined(NO_VIM_MAIN) && defined(FEAT_EVAL)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003553 static void
3554set_progpath(char_u *argv0)
3555{
3556 char_u *val = argv0;
Bram Moolenaar08cab962017-03-04 14:37:18 +01003557
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003558# if defined(WIN32)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003559 /* A relative path containing a "/" will become invalid when using ":cd",
3560 * turn it into a full path.
Bram Moolenaar066029e2017-03-05 15:19:32 +01003561 * On MS-Windows "vim" should be expanded to "vim.exe", thus always do
3562 * this. */
Bram Moolenaar066029e2017-03-05 15:19:32 +01003563 char_u *path = NULL;
3564
3565 if (mch_can_exe(argv0, &path, FALSE) && path != NULL)
3566 val = path;
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003567# else
3568 char_u buf[MAXPATHL + 1];
3569# ifdef PROC_EXE_LINK
3570 char linkbuf[MAXPATHL + 1];
3571 ssize_t len;
Bram Moolenaar066029e2017-03-05 15:19:32 +01003572
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003573 len = readlink(PROC_EXE_LINK, linkbuf, MAXPATHL);
3574 if (len > 0)
Bram Moolenaar43663192017-03-05 14:29:12 +01003575 {
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003576 linkbuf[len] = NUL;
3577 val = (char_u *)linkbuf;
Bram Moolenaar43663192017-03-05 14:29:12 +01003578 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003579# endif
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003580
3581 if (!mch_isFullName(val))
3582 {
3583 if (gettail(val) != val
3584 && vim_FullName(val, buf, MAXPATHL, TRUE) != FAIL)
3585 val = buf;
3586 }
Bram Moolenaar066029e2017-03-05 15:19:32 +01003587# endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003588
Bram Moolenaar08cab962017-03-04 14:37:18 +01003589 set_vim_var_string(VV_PROGPATH, val, -1);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003590
Bram Moolenaar066029e2017-03-05 15:19:32 +01003591# ifdef WIN32
Bram Moolenaar43663192017-03-05 14:29:12 +01003592 vim_free(path);
Bram Moolenaar066029e2017-03-05 15:19:32 +01003593# endif
Bram Moolenaar08cab962017-03-04 14:37:18 +01003594}
3595
3596#endif /* NO_VIM_MAIN */
3597
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003598#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003599
3600/*
3601 * Common code for the X command server and the Win32 command server.
3602 */
3603
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003604static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003605
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003606/*
3607 * Do the client-server stuff, unless "--servername ''" was used.
3608 */
3609 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003610exec_on_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003611{
3612 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3613 {
3614# ifdef WIN32
3615 /* Initialise the client/server messaging infrastructure. */
3616 serverInitMessaging();
3617# endif
3618
3619 /*
3620 * When a command server argument was found, execute it. This may
3621 * exit Vim when it was successful. Otherwise it's executed further
3622 * on. Remember the encoding used here in "serverStrEnc".
3623 */
3624 if (parmp->serverArg)
3625 {
3626 cmdsrv_main(&parmp->argc, parmp->argv,
3627 parmp->serverName_arg, &parmp->serverStr);
3628# ifdef FEAT_MBYTE
3629 parmp->serverStrEnc = vim_strsave(p_enc);
3630# endif
3631 }
3632
3633 /* If we're still running, get the name to register ourselves.
3634 * On Win32 can register right now, for X11 need to setup the
3635 * clipboard first, it's further down. */
3636 parmp->servername = serverMakeName(parmp->serverName_arg,
3637 parmp->argv[0]);
3638# ifdef WIN32
3639 if (parmp->servername != NULL)
3640 {
3641 serverSetName(parmp->servername);
3642 vim_free(parmp->servername);
3643 }
3644# endif
3645 }
3646}
3647
3648/*
3649 * Prepare for running as a Vim server.
3650 */
3651 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003652prepare_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003653{
3654# if defined(FEAT_X11)
3655 /*
3656 * Register for remote command execution with :serversend and --remote
3657 * unless there was a -X or a --servername '' on the command line.
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003658 * Only register nongui-vim's with an explicit --servername argument,
3659 * or when compiling with autoservername.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003660 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003661 */
3662 if (X_DISPLAY != NULL && parmp->servername != NULL && (
Bram Moolenaare42a6d22017-11-12 19:21:51 +01003663# if defined(FEAT_AUTOSERVERNAME) || defined(FEAT_GUI)
3664 (
3665# if defined(FEAT_AUTOSERVERNAME)
3666 1
3667# else
3668 gui.in_use
3669# endif
Bram Moolenaar5f402312006-08-15 19:40:35 +00003670# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003671 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003672# endif
3673 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003674# endif
3675 parmp->serverName_arg != NULL))
3676 {
3677 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3678 vim_free(parmp->servername);
3679 TIME_MSG("register server name");
3680 }
3681 else
3682 serverDelayedStartName = parmp->servername;
3683# endif
3684
3685 /*
3686 * Execute command ourselves if we're here because the send failed (or
3687 * else we would have exited above).
3688 */
3689 if (parmp->serverStr != NULL)
3690 {
3691 char_u *p;
3692
3693 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3694 parmp->serverStr, &p));
3695 vim_free(p);
3696 }
3697}
3698
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003699 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003700cmdsrv_main(
3701 int *argc,
3702 char **argv,
3703 char_u *serverName_arg,
3704 char_u **serverStr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003705{
3706 char_u *res;
3707 int i;
3708 char_u *sname;
3709 int ret;
3710 int didone = FALSE;
3711 int exiterr = 0;
3712 char **newArgV = argv + 1;
3713 int newArgC = 1,
3714 Argc = *argc;
3715 int argtype;
3716#define ARGTYPE_OTHER 0
3717#define ARGTYPE_EDIT 1
3718#define ARGTYPE_EDIT_WAIT 2
3719#define ARGTYPE_SEND 3
3720 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003721 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003722# ifndef FEAT_X11
3723 HWND srv;
3724# else
3725 Window srv;
3726
3727 setup_term_clip();
3728# endif
3729
3730 sname = serverMakeName(serverName_arg, argv[0]);
3731 if (sname == NULL)
3732 return;
3733
3734 /*
3735 * Execute the command server related arguments and remove them
3736 * from the argc/argv array; We may have to return into main()
3737 */
3738 for (i = 1; i < Argc; i++)
3739 {
3740 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003741 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003742 {
3743 for (; i < *argc; i++)
3744 {
3745 *newArgV++ = argv[i];
3746 newArgC++;
3747 }
3748 break;
3749 }
3750
Bram Moolenaareb94e552006-03-11 21:35:11 +00003751 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003752 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003753 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3754 {
3755 char *p = argv[i] + 8;
3756
3757 argtype = ARGTYPE_EDIT;
3758 while (*p != NUL)
3759 {
3760 if (STRNICMP(p, "-wait", 5) == 0)
3761 {
3762 argtype = ARGTYPE_EDIT_WAIT;
3763 p += 5;
3764 }
3765 else if (STRNICMP(p, "-silent", 7) == 0)
3766 {
3767 silent = TRUE;
3768 p += 7;
3769 }
3770 else if (STRNICMP(p, "-tab", 4) == 0)
3771 {
3772 tabs = TRUE;
3773 p += 4;
3774 }
3775 else
3776 {
3777 argtype = ARGTYPE_OTHER;
3778 break;
3779 }
3780 }
3781 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003782 else
3783 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003784
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003785 if (argtype != ARGTYPE_OTHER)
3786 {
3787 if (i == *argc - 1)
3788 mainerr_arg_missing((char_u *)argv[i]);
3789 if (argtype == ARGTYPE_SEND)
3790 {
3791 *serverStr = (char_u *)argv[i + 1];
3792 i++;
3793 }
3794 else
3795 {
3796 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003797 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003798 if (*serverStr == NULL)
3799 {
3800 /* Probably out of memory, exit. */
3801 didone = TRUE;
3802 exiterr = 1;
3803 break;
3804 }
3805 Argc = i;
3806 }
3807# ifdef FEAT_X11
3808 if (xterm_dpy == NULL)
3809 {
3810 mch_errmsg(_("No display"));
3811 ret = -1;
3812 }
3813 else
3814 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003815 NULL, &srv, 0, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003816# else
3817 /* Win32 always works? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003818 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003819# endif
3820 if (ret < 0)
3821 {
3822 if (argtype == ARGTYPE_SEND)
3823 {
3824 /* Failed to send, abort. */
3825 mch_errmsg(_(": Send failed.\n"));
3826 didone = TRUE;
3827 exiterr = 1;
3828 }
3829 else if (!silent)
3830 /* Let vim start normally. */
3831 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3832 break;
3833 }
3834
3835# ifdef FEAT_GUI_W32
3836 /* Guess that when the server name starts with "g" it's a GUI
3837 * server, which we can bring to the foreground here.
3838 * Foreground() in the server doesn't work very well. */
3839 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3840 SetForegroundWindow(srv);
3841# endif
3842
3843 /*
3844 * For --remote-wait: Wait until the server did edit each
3845 * file. Also detect that the server no longer runs.
3846 */
3847 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3848 {
3849 int numFiles = *argc - i - 1;
3850 int j;
3851 char_u *done = alloc(numFiles);
3852 char_u *p;
3853# ifdef FEAT_GUI_W32
3854 NOTIFYICONDATA ni;
3855 int count = 0;
3856 extern HWND message_window;
3857# endif
3858
3859 if (numFiles > 0 && argv[i + 1][0] == '+')
3860 /* Skip "+cmd" argument, don't wait for it to be edited. */
3861 --numFiles;
3862
3863# ifdef FEAT_GUI_W32
3864 ni.cbSize = sizeof(ni);
3865 ni.hWnd = message_window;
3866 ni.uID = 0;
3867 ni.uFlags = NIF_ICON|NIF_TIP;
3868 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3869 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3870 Shell_NotifyIcon(NIM_ADD, &ni);
3871# endif
3872
3873 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003874 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003875 while (memchr(done, 0, numFiles) != NULL)
3876 {
3877# ifdef WIN32
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003878 p = serverGetReply(srv, NULL, TRUE, TRUE, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003879 if (p == NULL)
3880 break;
3881# else
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003882 if (serverReadReply(xterm_dpy, srv, &p, TRUE, -1) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003883 break;
3884# endif
3885 j = atoi((char *)p);
3886 if (j >= 0 && j < numFiles)
3887 {
3888# ifdef FEAT_GUI_W32
3889 ++count;
3890 sprintf(ni.szTip, _("%d of %d edited"),
3891 count, numFiles);
3892 Shell_NotifyIcon(NIM_MODIFY, &ni);
3893# endif
3894 done[j] = 1;
3895 }
3896 }
3897# ifdef FEAT_GUI_W32
3898 Shell_NotifyIcon(NIM_DELETE, &ni);
3899# endif
3900 }
3901 }
3902 else if (STRICMP(argv[i], "--remote-expr") == 0)
3903 {
3904 if (i == *argc - 1)
3905 mainerr_arg_missing((char_u *)argv[i]);
3906# ifdef WIN32
3907 /* Win32 always works? */
3908 if (serverSendToVim(sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003909 &res, NULL, 1, 0, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003910# else
3911 if (xterm_dpy == NULL)
3912 mch_errmsg(_("No display: Send expression failed.\n"));
3913 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003914 &res, NULL, 1, 0, 1, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003915# endif
3916 {
3917 if (res != NULL && *res != NUL)
3918 {
3919 /* Output error from remote */
3920 mch_errmsg((char *)res);
Bram Moolenaard23a8232018-02-10 18:45:26 +01003921 VIM_CLEAR(res);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003922 }
3923 mch_errmsg(_(": Send expression failed.\n"));
3924 }
3925 }
3926 else if (STRICMP(argv[i], "--serverlist") == 0)
3927 {
3928# ifdef WIN32
3929 /* Win32 always works? */
3930 res = serverGetVimNames();
3931# else
3932 if (xterm_dpy != NULL)
3933 res = serverGetVimNames(xterm_dpy);
3934# endif
3935 if (called_emsg)
3936 mch_errmsg("\n");
3937 }
3938 else if (STRICMP(argv[i], "--servername") == 0)
3939 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003940 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003941 i++;
3942 continue;
3943 }
3944 else
3945 {
3946 *newArgV++ = argv[i];
3947 newArgC++;
3948 continue;
3949 }
3950 didone = TRUE;
3951 if (res != NULL && *res != NUL)
3952 {
3953 mch_msg((char *)res);
3954 if (res[STRLEN(res) - 1] != '\n')
3955 mch_msg("\n");
3956 }
3957 vim_free(res);
3958 }
3959
3960 if (didone)
3961 {
3962 display_errors(); /* display any collected messages */
3963 exit(exiterr); /* Mission accomplished - get out */
3964 }
3965
3966 /* Return back into main() */
3967 *argc = newArgC;
3968 vim_free(sname);
3969}
3970
3971/*
3972 * Build a ":drop" command to send to a Vim server.
3973 */
3974 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003975build_drop_cmd(
3976 int filec,
3977 char **filev,
3978 int tabs, /* Use ":tab drop" instead of ":drop". */
3979 int sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003980{
3981 garray_T ga;
3982 int i;
3983 char_u *inicmd = NULL;
3984 char_u *p;
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003985 char_u *cdp;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003986 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003987
3988 if (filec > 0 && filev[0][0] == '+')
3989 {
3990 inicmd = (char_u *)filev[0] + 1;
3991 filev++;
3992 filec--;
3993 }
3994 /* Check if we have at least one argument. */
3995 if (filec <= 0)
3996 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003997
3998 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003999 cwd = alloc(MAXPATHL);
4000 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004001 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004002 if (mch_dirname(cwd, MAXPATHL) != OK)
4003 {
4004 vim_free(cwd);
4005 return NULL;
4006 }
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004007 cdp = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00004008#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004009 (char_u *)"", /* rem_backslash() will tell what chars to escape */
Bram Moolenaar02b06312007-09-06 15:39:22 +00004010#else
4011 PATH_ESC_CHARS,
4012#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02004013 '\\', TRUE);
4014 vim_free(cwd);
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004015 if (cdp == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004016 return NULL;
4017 ga_init2(&ga, 1, 100);
4018 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004019 ga_concat(&ga, cdp);
Bram Moolenaareb94e552006-03-11 21:35:11 +00004020
4021 /* Call inputsave() so that a prompt for an encryption key works. */
4022 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
4023 if (tabs)
4024 ga_concat(&ga, (char_u *)"tab ");
4025 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004026 for (i = 0; i < filec; i++)
4027 {
4028 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004029 * do it again in the Vim server. On MS-Windows only escape
4030 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004031 p = vim_strsave_escaped((char_u *)filev[i],
4032#ifdef UNIX
4033 PATH_ESC_CHARS
4034#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004035 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004036#endif
4037 );
4038 if (p == NULL)
4039 {
4040 vim_free(ga.ga_data);
4041 return NULL;
4042 }
4043 ga_concat(&ga, (char_u *)" ");
4044 ga_concat(&ga, p);
4045 vim_free(p);
4046 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004047 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
4048
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004049 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
4050 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004051 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
4052
4053 /* Switch back to the correct current directory (prior to temporary path
4054 * switch) unless 'autochdir' is set, in which case it will already be
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004055 * correct after the :drop command. With line breaks and spaces:
4056 * if !exists('+acd') || !&acd
4057 * if haslocaldir()
4058 * cd -
4059 * lcd -
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004060 * elseif getcwd() ==# 'current path'
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004061 * cd -
4062 * endif
4063 * endif
4064 */
4065 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|");
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004066 ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004067 ga_concat(&ga, cdp);
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004068 ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004069 vim_free(cdp);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004070
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004071 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004072 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
4073 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004074 if (inicmd != NULL)
4075 {
4076 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
4077 * the following commands to be inserted as text. Use a "|",
4078 * hopefully "inicmd" does allow this... */
4079 ga_concat(&ga, inicmd);
4080 ga_concat(&ga, (char_u *)"|");
4081 }
4082 /* Bring the window to the foreground, goto Insert mode when 'im' set and
4083 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00004084 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004085 ga_append(&ga, NUL);
4086 return ga.ga_data;
4087}
4088
4089/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004090 * Make our basic server name: use the specified "arg" if given, otherwise use
4091 * the tail of the command "cmd" we were started with.
4092 * Return the name in allocated memory. This doesn't include a serial number.
4093 */
4094 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004095serverMakeName(char_u *arg, char *cmd)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004096{
4097 char_u *p;
4098
4099 if (arg != NULL && *arg != NUL)
4100 p = vim_strsave_up(arg);
4101 else
4102 {
4103 p = vim_strsave_up(gettail((char_u *)cmd));
4104 /* Remove .exe or .bat from the name. */
4105 if (p != NULL && vim_strchr(p, '.') != NULL)
4106 *vim_strchr(p, '.') = NUL;
4107 }
4108 return p;
4109}
4110#endif /* FEAT_CLIENTSERVER */
4111
4112#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4113/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004114 * Replace termcodes such as <CR> and insert as key presses if there is room.
4115 */
4116 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004117server_to_input_buf(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004118{
4119 char_u *ptr = NULL;
4120 char_u *cpo_save = p_cpo;
4121
4122 /* Set 'cpoptions' the way we want it.
4123 * B set - backslashes are *not* treated specially
4124 * k set - keycodes are *not* reverse-engineered
4125 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004126 * The last but one parameter of replace_termcodes() is TRUE so that the
4127 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004128 */
4129 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004130 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004131 p_cpo = cpo_save;
4132
4133 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4134 {
4135 /*
4136 * Add the string to the input stream.
4137 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4138 *
4139 * First clear typed characters from the typeahead buffer, there could
4140 * be half a mapping there. Then append to the existing string, so
4141 * that multiple commands from a client are concatenated.
4142 */
4143 if (typebuf.tb_maplen < typebuf.tb_len)
4144 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4145 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4146
4147 /* Let input_available() know we inserted text in the typeahead
4148 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004149 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004150 }
4151 vim_free((char_u *)ptr);
4152}
4153
4154/*
4155 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004156 */
4157 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004158eval_client_expr_to_string(char_u *expr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004159{
4160 char_u *res;
4161 int save_dbl = debug_break_level;
4162 int save_ro = redir_off;
Bram Moolenaard99388b2017-10-26 14:28:32 +02004163 void *fc = NULL;
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004164
4165 /* Evaluate the expression at the toplevel, don't use variables local to
Bram Moolenaard99388b2017-10-26 14:28:32 +02004166 * the calling function. Except when in debug mode. */
4167 if (!debug_mode)
4168 fc = clear_current_funccal();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004169
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004170 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4171 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004172 debug_break_level = -1;
4173 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004174 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4175 * to be typed. Do generate errors so that try/catch works. */
4176 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004177
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004178 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004179
4180 debug_break_level = save_dbl;
4181 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004182 --emsg_silent;
4183 if (emsg_silent < 0)
4184 emsg_silent = 0;
Bram Moolenaard99388b2017-10-26 14:28:32 +02004185 if (fc != NULL)
4186 restore_current_funccal(fc);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004187
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004188 /* A client can tell us to redraw, but not to display the cursor, so do
4189 * that here. */
4190 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01004191 out_flush_cursor(FALSE, FALSE);
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004192
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004193 return res;
4194}
4195
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004196/*
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004197 * Evaluate a command or expression sent to ourselves.
4198 */
4199 int
4200sendToLocalVim(char_u *cmd, int asExpr, char_u **result)
4201{
4202 if (asExpr)
4203 {
4204 char_u *ret;
4205
4206 ret = eval_client_expr_to_string(cmd);
4207 if (result != NULL)
4208 {
4209 if (ret == NULL)
4210 {
4211 char *err = _(e_invexprmsg);
4212 size_t len = STRLEN(cmd) + STRLEN(err) + 5;
4213 char_u *msg;
4214
Bram Moolenaar1662ce12017-03-19 21:47:50 +01004215 msg = alloc((unsigned)len);
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004216 if (msg != NULL)
4217 vim_snprintf((char *)msg, len, "%s: \"%s\"", err, cmd);
4218 *result = msg;
4219 }
4220 else
4221 *result = ret;
4222 }
4223 else
4224 vim_free(ret);
4225 return ret == NULL ? -1 : 0;
4226 }
4227 server_to_input_buf(cmd);
4228 return 0;
4229}
4230
4231/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004232 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4233 * return an allocated string. Otherwise return "data".
4234 * "*tofree" is set to the result when it needs to be freed later.
4235 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004236 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004237serverConvert(
4238 char_u *client_enc UNUSED,
4239 char_u *data,
4240 char_u **tofree)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004241{
4242 char_u *res = data;
4243
4244 *tofree = NULL;
4245# ifdef FEAT_MBYTE
4246 if (client_enc != NULL && p_enc != NULL)
4247 {
4248 vimconv_T vimconv;
4249
4250 vimconv.vc_type = CONV_NONE;
4251 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4252 && vimconv.vc_type != CONV_NONE)
4253 {
4254 res = string_convert(&vimconv, data, NULL);
4255 if (res == NULL)
4256 res = data;
4257 else
4258 *tofree = res;
4259 }
4260 convert_setup(&vimconv, NULL, NULL);
4261 }
4262# endif
4263 return res;
4264}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004265#endif