blob: 3b18bf1e414e3d123a04f545ddb6e44e563c0534 [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 Moolenaar3f269672009-11-03 11:11:11 +0000114#ifdef STARTUPTIME
115 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 Moolenaar3f269672009-11-03 11:11:11 +0000161 for (i = 1; i < argc; ++i)
162 {
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000163 if (STRICMP(argv[i], "--startuptime") == 0 && i + 1 < argc)
Bram Moolenaar3f269672009-11-03 11:11:11 +0000164 {
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000165 time_fd = mch_fopen(argv[i + 1], "a");
Bram Moolenaar3f269672009-11-03 11:11:11 +0000166 TIME_MSG("--- VIM STARTING ---");
167 break;
168 }
169 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000170#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +0000171 starttime = time(NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000172
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200173 common_init(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000174
175#ifdef FEAT_CLIENTSERVER
176 /*
177 * Do the client-server stuff, unless "--servername ''" was used.
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000178 * This may exit Vim if the command was sent to the server.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000179 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000180 exec_on_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000181#endif
182
183 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000184 * Figure out the way to work from the command name argv[0].
185 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000186 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000187 parse_command_name(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000188
189 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000190 * Process the command line arguments. File names are put in the global
191 * argument list "global_alist".
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000192 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000193 command_line_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000194 TIME_MSG("parsing arguments");
195
196 /*
197 * On some systems, when we compile with the GUI, we always use it. On Mac
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000198 * there is no terminal version, and on Windows we can't fork one off with
199 * :gui.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000200 */
201#ifdef ALWAYS_USE_GUI
202 gui.starting = TRUE;
203#else
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000204# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000205 /*
206 * Check if the GUI can be started. Reset gui.starting if not.
207 * Don't know about other systems, stay on the safe side and don't check.
208 */
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000209 if (gui.starting)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000210 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000211 if (gui_init_check() == FAIL)
212 {
213 gui.starting = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000214
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000215 /* When running "evim" or "gvim -y" we need the menus, exit if we
216 * don't have them. */
217 if (params.evim_mode)
218 mch_exit(1);
219 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000220 }
221# endif
222#endif
223
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000224 if (GARGCOUNT > 0)
225 {
Bram Moolenaar53076832015-12-31 19:53:21 +0100226#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000227 /*
228 * Expand wildcards in file names.
229 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000230 if (!params.literal)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000231 {
Bram Moolenaarf6303872015-04-03 17:59:43 +0200232 start_dir = alloc(MAXPATHL);
233 if (start_dir != NULL)
234 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000235 /* Temporarily add '(' and ')' to 'isfname'. These are valid
236 * filename characters but are excluded from 'isfname' to make
237 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
238 do_cmdline_cmd((char_u *)":set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +0000239 alist_expand(NULL, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000240 do_cmdline_cmd((char_u *)":set isf&");
Bram Moolenaarf6303872015-04-03 17:59:43 +0200241 if (start_dir != NULL)
242 mch_chdir((char *)start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000243 }
244#endif
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200245 params.fname = alist_name(&GARGLIST[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000246 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000247
248#if defined(WIN32) && defined(FEAT_MBYTE)
249 {
250 extern void set_alist_count(void);
251
252 /* Remember the number of entries in the argument list. If it changes
253 * we don't react on setting 'encoding'. */
254 set_alist_count();
255 }
256#endif
257
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000258#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000259 if (GARGCOUNT == 1 && params.full_path)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000260 {
261 /*
262 * If there is one filename, fully qualified, we have very probably
263 * been invoked from explorer, so change to the file's directory.
264 * Hint: to avoid this when typing a command use a forward slash.
265 * If the cd fails, it doesn't matter.
266 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200267 (void)vim_chdirfile(params.fname);
Bram Moolenaarf6303872015-04-03 17:59:43 +0200268 if (start_dir != NULL)
269 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000270 }
271#endif
272 TIME_MSG("expanding arguments");
273
274#ifdef FEAT_DIFF
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000275 if (params.diff_mode && params.window_count == -1)
276 params.window_count = 0; /* open up to 3 windows */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000277#endif
278
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000279 /* Don't redraw until much later. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000280 ++RedrawingDisabled;
281
282 /*
283 * When listing swap file names, don't do cursor positioning et. al.
284 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200285 if (recoverymode && params.fname == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000286 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000287
288 /*
289 * When certain to start the GUI, don't check capabilities of terminal.
290 * For GTK we can't be sure, but when started from the desktop it doesn't
291 * make sense to try using a terminal.
292 */
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000293#if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000294 if (gui.starting
295# ifdef FEAT_GUI_GTK
296 && !isatty(2)
297# endif
298 )
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000299 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000300#endif
301
302#if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
303 /* When the GUI is started from Finder, need to display messages in a
304 * message box. isatty(2) returns TRUE anyway, thus we need to check the
305 * name to know we're not started from a terminal. */
306 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000307 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000308 params.want_full_screen = FALSE;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000309
310 /* Avoid always using "/" as the current directory. Note that when
311 * started from Finder the arglist will be filled later in
312 * HandleODocAE() and "fname" will be NULL. */
313 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
314 && STRCMP(NameBuff, "/") == 0)
315 {
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200316 if (params.fname != NULL)
317 (void)vim_chdirfile(params.fname);
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000318 else
319 {
320 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
321 vim_chdir(NameBuff);
322 }
Bram Moolenaarf6303872015-04-03 17:59:43 +0200323 if (start_dir != NULL)
324 mch_dirname(start_dir, MAXPATHL);
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000325 }
326 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000327#endif
328
329 /*
330 * mch_init() sets up the terminal (window) for use. This must be
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100331 * done after resetting full_screen, otherwise it may move the cursor.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000332 * Note that we may use mch_exit() before mch_init()!
333 */
334 mch_init();
335 TIME_MSG("shell init");
336
337#ifdef USE_XSMP
338 /*
339 * For want of anywhere else to do it, try to connect to xsmp here.
340 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
341 * Hijacking -X 'no X connection' to also disable XSMP connection as that
342 * has a similar delay upon failure.
343 * Only try if SESSION_MANAGER is set to something non-null.
344 */
345 if (!x_no_connect)
346 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000347 char *p = getenv("SESSION_MANAGER");
348
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000349 if (p != NULL && *p != NUL)
350 {
351 xsmp_init();
352 TIME_MSG("xsmp init");
353 }
354 }
355#endif
356
357 /*
358 * Print a warning if stdout is not a terminal.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000359 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000360 check_tty(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000361
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000362 /* This message comes before term inits, but after setting "silent_mode"
363 * when the input is not a tty. */
364 if (GARGCOUNT > 1 && !silent_mode)
365 printf(_("%d files to edit\n"), GARGCOUNT);
366
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000367 if (params.want_full_screen && !silent_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000368 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000369 termcapinit(params.term); /* set terminal name and get terminal
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000370 capabilities (will set full_screen) */
371 screen_start(); /* don't know where cursor is now */
372 TIME_MSG("Termcap init");
373 }
374
375 /*
376 * Set the default values for the options that use Rows and Columns.
377 */
378 ui_get_shellsize(); /* inits Rows and Columns */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000379 win_init_size();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000380#ifdef FEAT_DIFF
381 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
382 * file. There is no buffer yet though. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000383 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000384 diff_win_options(firstwin, FALSE);
385#endif
386
387 cmdline_row = Rows - p_ch;
388 msg_row = cmdline_row;
389 screenalloc(FALSE); /* allocate screen buffers */
390 set_init_2();
391 TIME_MSG("inits 2");
392
393 msg_scroll = TRUE;
394 no_wait_return = TRUE;
395
396 init_mappings(); /* set up initial mappings */
397
398 init_highlight(TRUE, FALSE); /* set the default highlight groups */
399 TIME_MSG("init highlight");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000400
401#ifdef FEAT_EVAL
402 /* Set the break level after the terminal is initialized. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000403 debug_break_level = params.use_debug_break_level;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000404#endif
405
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100406#ifdef FEAT_MZSCHEME
407 /*
408 * Newer version of MzScheme (Racket) require earlier (trampolined)
409 * initialisation via scheme_main_setup.
410 * Implement this by initialising it as early as possible
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200411 * and splitting off remaining Vim main into vim_main2().
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100412 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200413 return mzscheme_main();
414#else
415 return vim_main2();
Bram Moolenaar8866d272012-11-28 15:55:42 +0100416#endif
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200417}
Bram Moolenaar8866d272012-11-28 15:55:42 +0100418#endif /* NO_VIM_MAIN */
Bram Moolenaara357e442016-08-10 20:45:07 +0200419#endif /* PROTO */
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100420
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200421/*
422 * vim_main2() is needed for FEAT_MZSCHEME, but we define it always to keep
423 * things simple.
424 * It is also defined when NO_VIM_MAIN is defined, but then it's empty.
425 */
Bram Moolenaar8866d272012-11-28 15:55:42 +0100426 int
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200427vim_main2(void)
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100428{
Bram Moolenaar8866d272012-11-28 15:55:42 +0100429#ifndef NO_VIM_MAIN
Bram Moolenaar66459b72016-08-06 19:01:55 +0200430 /* Reset 'loadplugins' for "-u NONE" before "--cmd" arguments.
431 * Allows for setting 'loadplugins' there. */
Bram Moolenaarc4da1132017-07-15 19:39:43 +0200432 if (params.use_vimrc != NULL
433 && (STRCMP(params.use_vimrc, "NONE") == 0
434 || STRCMP(params.use_vimrc, "DEFAULTS") == 0))
Bram Moolenaar66459b72016-08-06 19:01:55 +0200435 p_lpl = FALSE;
436
Bram Moolenaar58d98232005-07-23 22:25:46 +0000437 /* Execute --cmd arguments. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000438 exe_pre_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000439
Bram Moolenaar58d98232005-07-23 22:25:46 +0000440 /* Source startup scripts. */
441 source_startup_scripts(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000442
443#ifdef FEAT_EVAL
444 /*
445 * Read all the plugin files.
446 * Only when compiled with +eval, since most plugins need it.
447 */
448 if (p_lpl)
449 {
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200450 char_u *rtp_copy = NULL;
451
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200452 /* First add all package directories to 'runtimepath', so that their
453 * autoload directories can be found. Only if not done already with a
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200454 * :packloadall command.
455 * Make a copy of 'runtimepath', so that source_runtime does not use
456 * the pack directories. */
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200457 if (!did_source_packages)
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200458 {
459 rtp_copy = vim_strsave(p_rtp);
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200460 add_pack_start_dirs();
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200461 }
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200462
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200463 source_in_path(rtp_copy == NULL ? p_rtp : rtp_copy,
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000464# ifdef VMS /* Somehow VMS doesn't handle the "**". */
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200465 (char_u *)"plugin/*.vim",
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000466# else
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200467 (char_u *)"plugin/**/*.vim",
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000468# endif
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200469 DIP_ALL | DIP_NOAFTER);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000470 TIME_MSG("loading plugins");
Bram Moolenaar07ecfa62017-06-27 14:43:55 +0200471 vim_free(rtp_copy);
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100472
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200473 /* Only source "start" packages if not done already with a :packloadall
474 * command. */
475 if (!did_source_packages)
476 load_start_packages();
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100477 TIME_MSG("loading packages");
Bram Moolenaar66459b72016-08-06 19:01:55 +0200478
479# ifdef VMS /* Somehow VMS doesn't handle the "**". */
480 source_runtime((char_u *)"plugin/*.vim", DIP_ALL | DIP_AFTER);
481# else
482 source_runtime((char_u *)"plugin/**/*.vim", DIP_ALL | DIP_AFTER);
483# endif
484 TIME_MSG("loading after plugins");
485
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000486 }
487#endif
488
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000489#ifdef FEAT_DIFF
490 /* Decide about window layout for diff mode after reading vimrc. */
491 if (params.diff_mode && params.window_layout == 0)
492 {
493 if (diffopt_horizontal())
494 params.window_layout = WIN_HOR; /* use horizontal split */
495 else
496 params.window_layout = WIN_VER; /* use vertical split */
497 }
498#endif
499
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000500 /*
501 * Recovery mode without a file name: List swap files.
502 * This uses the 'dir' option, therefore it must be after the
503 * initializations.
504 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200505 if (recoverymode && params.fname == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000506 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200507 recover_names(NULL, TRUE, 0, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000508 mch_exit(0);
509 }
510
511 /*
512 * Set a few option defaults after reading .vimrc files:
513 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
514 */
515 set_init_3();
516 TIME_MSG("inits 3");
517
518 /*
519 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
520 * Note that this overrides anything from a vimrc file.
521 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000522 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000523 p_uc = 0;
524
525#ifdef FEAT_FKMAP
526 if (curwin->w_p_rl && p_altkeymap)
527 {
528 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
529# ifdef FEAT_ARABIC
530 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
531# endif
532 p_fkmap = TRUE; /* Set the Farsi keymap mode */
533 }
534#endif
535
536#ifdef FEAT_GUI
537 if (gui.starting)
538 {
539#if defined(UNIX) || defined(VMS)
540 /* When something caused a message from a vimrc script, need to output
541 * an extra newline before the shell prompt. */
542 if (did_emsg || msg_didout)
543 putchar('\n');
544#endif
545
546 gui_start(); /* will set full_screen to TRUE */
547 TIME_MSG("starting GUI");
548
549 /* When running "evim" or "gvim -y" we need the menus, exit if we
550 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000551 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000552 mch_exit(1);
553 }
554#endif
555
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000556#ifdef FEAT_VIMINFO
557 /*
Bram Moolenaard812df62008-11-09 12:46:09 +0000558 * Read in registers, history etc, but not marks, from the viminfo file.
559 * This is where v:oldfiles gets filled.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000560 */
561 if (*p_viminfo != NUL)
562 {
Bram Moolenaard812df62008-11-09 12:46:09 +0000563 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000564 TIME_MSG("reading viminfo");
565 }
566#endif
Bram Moolenaar2cd36962014-01-14 12:57:05 +0100567#ifdef FEAT_EVAL
568 /* It's better to make v:oldfiles an empty list than NULL. */
569 if (get_vim_var_list(VV_OLDFILES) == NULL)
570 set_vim_var_list(VV_OLDFILES, list_alloc());
571#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000572
573#ifdef FEAT_QUICKFIX
574 /*
575 * "-q errorfile": Load the error file now.
576 * If the error file can't be read, exit before doing anything else.
577 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000578 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000579 {
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100580 char_u *enc = NULL;
581
582# ifdef FEAT_MBYTE
583 enc = p_menc;
584# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000585 if (params.use_ef != NULL)
586 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000587 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200588 vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef);
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100589 if (qf_init(NULL, p_ef, p_efm, TRUE, IObuff, enc) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000590 {
591 out_char('\n');
592 mch_exit(3);
593 }
594 TIME_MSG("reading errorfile");
595 }
596#endif
597
598 /*
599 * Start putting things on the screen.
600 * Scroll screen down before drawing over it
601 * Clear screen now, so file message will not be cleared.
602 */
603 starting = NO_BUFFERS;
604 no_wait_return = FALSE;
605 if (!exmode_active)
606 msg_scroll = FALSE;
607
608#ifdef FEAT_GUI
609 /*
610 * This seems to be required to make callbacks to be called now, instead
611 * of after things have been put on the screen, which then may be deleted
612 * when getting a resize callback.
613 * For the Mac this handles putting files dropped on the Vim icon to
614 * global_alist.
615 */
616 if (gui.in_use)
617 {
618# ifdef FEAT_SUN_WORKSHOP
619 if (!usingSunWorkShop)
620# endif
621 gui_wait_for_chars(50L);
622 TIME_MSG("GUI delay");
623 }
624#endif
625
626#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
627 qnx_clip_init();
628#endif
629
Bram Moolenaarc8bbaa32010-07-14 16:54:21 +0200630#if defined(MACOS_X) && defined(FEAT_CLIPBOARD)
631 clip_init(TRUE);
632#endif
633
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000634#ifdef FEAT_XCLIPBOARD
635 /* Start using the X clipboard, unless the GUI was started. */
636# ifdef FEAT_GUI
637 if (!gui.in_use)
638# endif
639 {
640 setup_term_clip();
641 TIME_MSG("setup clipboard");
642 }
643#endif
644
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000645#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000646 /* Prepare for being a Vim server. */
647 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000648#endif
649
650 /*
651 * If "-" argument given: Read file from stdin.
652 * Do this before starting Raw mode, because it may change things that the
653 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
654 * are the same terminal: "cat | vim -".
655 * Using autocommands here may cause trouble...
656 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000657 if (params.edit_type == EDIT_STDIN && !recoverymode)
658 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000659
660#if defined(UNIX) || defined(VMS)
661 /* When switching screens and something caused a message from a vimrc
662 * script, need to output an extra newline on exit. */
663 if ((did_emsg || msg_didout) && *T_TI != NUL)
664 newline_on_exit = TRUE;
665#endif
666
667 /*
668 * When done something that is not allowed or error message call
669 * wait_return. This must be done before starttermcap(), because it may
670 * switch to another screen. It must be done after settmode(TMODE_RAW),
671 * because we want to react on a single key stroke.
672 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000673 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000674 */
675 settmode(TMODE_RAW);
676 TIME_MSG("setting raw mode");
677
678 if (need_wait_return || msg_didany)
679 {
680 wait_return(TRUE);
681 TIME_MSG("waiting for return");
682 }
683
684 starttermcap(); /* start termcap if not done by wait_return() */
685 TIME_MSG("start termcap");
686
687#ifdef FEAT_MOUSE
688 setmouse(); /* may start using the mouse */
689#endif
690 if (scroll_region)
691 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000692 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000693
694 /*
695 * Don't clear the screen when starting in Ex mode, unless using the GUI.
696 */
697 if (exmode_active
698#ifdef FEAT_GUI
699 && !gui.in_use
700#endif
701 )
702 must_redraw = CLEAR;
703 else
704 {
705 screenclear(); /* clear screen */
706 TIME_MSG("clearing screen");
707 }
708
709#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000710 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000711 {
Bram Moolenaar3a0c9082014-11-12 15:15:42 +0100712 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200713 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000714 TIME_MSG("getting crypt key");
715 }
716#endif
717
718 no_wait_return = TRUE;
719
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000720 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000721 * Create the requested number of windows and edit buffers in them.
722 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000723 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000724 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000725 TIME_MSG("opening buffers");
726
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000727#ifdef FEAT_EVAL
728 /* clear v:swapcommand */
729 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
730#endif
731
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000732 /* Ex starts at last line of the file */
733 if (exmode_active)
734 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
735
736#ifdef FEAT_AUTOCMD
737 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
738 TIME_MSG("BufEnter autocommands");
739#endif
740 setpcmark();
741
742#ifdef FEAT_QUICKFIX
743 /*
744 * When started with "-q errorfile" jump to first error now.
745 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000746 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000747 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000748 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000749 TIME_MSG("jump to first error");
750 }
751#endif
752
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000753 /*
754 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000755 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000756 */
Bram Moolenaarf6303872015-04-03 17:59:43 +0200757 edit_buffers(&params, start_dir);
Bram Moolenaarf6303872015-04-03 17:59:43 +0200758 vim_free(start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000759
760#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000761 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000762 {
763 win_T *wp;
764
765 /* set options in each window for "vimdiff". */
Bram Moolenaar29323592016-07-24 22:04:11 +0200766 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000767 diff_win_options(wp, TRUE);
768 }
769#endif
770
771 /*
772 * Shorten any of the filenames, but only when absolute.
773 */
774 shorten_fnames(FALSE);
775
776 /*
777 * Need to jump to the tag before executing the '-c command'.
778 * Makes "vim -c '/return' -t main" work.
779 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000780 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000781 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000782#if defined(HAS_SWAP_EXISTS_ACTION)
783 swap_exists_did_quit = FALSE;
784#endif
785
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000786 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000787 do_cmdline_cmd(IObuff);
788 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000789
790#if defined(HAS_SWAP_EXISTS_ACTION)
791 /* If the user doesn't want to edit the file then we quit here. */
792 if (swap_exists_did_quit)
793 getout(1);
794#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000795 }
796
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000797 /* Execute any "+", "-c" and "-S" arguments. */
798 if (params.n_commands > 0)
799 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000800
Bram Moolenaar6b1da332017-06-09 21:35:47 +0200801 /* Must come before the may_req_ calls. */
802 starting = 0;
803
Bram Moolenaar976787d2017-06-04 15:45:50 +0200804#if defined(FEAT_TERMRESPONSE) && defined(FEAT_MBYTE)
805 /* Must be done before redrawing, puts a few characters on the screen. */
806 may_req_ambiguous_char_width();
807#endif
808
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000809 RedrawingDisabled = 0;
810 redraw_all_later(NOT_VALID);
811 no_wait_return = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000812
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200813 /* 'autochdir' has been postponed */
814 DO_AUTOCHDIR
815
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000816#ifdef FEAT_TERMRESPONSE
817 /* Requesting the termresponse is postponed until here, so that a "-c q"
818 * argument doesn't make it appear in the shell Vim was started from. */
819 may_req_termresponse();
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200820
Bram Moolenaarfc8f1112017-04-18 18:51:35 +0200821 may_req_bg_color();
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000822#endif
823
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000824 /* start in insert mode */
825 if (p_im)
826 need_start_insertmode = TRUE;
827
Bram Moolenaar14735512016-03-26 21:00:08 +0100828#ifdef FEAT_EVAL
829 set_vim_var_nr(VV_VIM_DID_ENTER, 1L);
830#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000831#ifdef FEAT_AUTOCMD
832 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
833 TIME_MSG("VimEnter autocommands");
834#endif
835
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200836#if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD)
837 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be
838 * done after the clipboard is available and all initial commands that may
839 * modify the 'clipboard' setting have run; i.e. just before entering the
840 * main loop. */
841 {
842 int default_regname = 0;
Bram Moolenaar53076832015-12-31 19:53:21 +0100843
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200844 adjust_clip_reg(&default_regname);
845 set_reg_var(default_regname);
846 }
847#endif
848
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000849#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
850 /* When a startup script or session file setup for diff'ing and
851 * scrollbind, sync the scrollbind now. */
852 if (curwin->w_p_diff && curwin->w_p_scb)
853 {
854 update_topline();
855 check_scrollbind((linenr_T)0, 0L);
856 TIME_MSG("diff scrollbinding");
857 }
858#endif
859
860#if defined(WIN3264) && !defined(FEAT_GUI_W32)
861 mch_set_winsize_now(); /* Allow winsize changes from now on */
862#endif
863
Bram Moolenaar4033c552017-09-16 20:54:51 +0200864#if defined(FEAT_GUI)
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000865 /* When tab pages were created, may need to update the tab pages line and
866 * scrollbars. This is skipped while creating them. */
867 if (first_tabpage->tp_next != NULL)
868 {
869 out_flush();
870 gui_init_which_components(NULL);
871 gui_update_scrollbars(TRUE);
872 }
873 need_mouse_correct = TRUE;
874#endif
875
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000876 /* If ":startinsert" command used, stuff a dummy command to be able to
877 * call normal_cmd(), which will then start Insert mode. */
878 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000879 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000880
881#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200882 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200883 {
884# ifdef FEAT_GUI
Bram Moolenaar173c9852010-09-29 17:27:01 +0200885# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar67c53842010-05-22 18:28:27 +0200886 && !defined(FEAT_GUI_W32)
887 if (gui.in_use)
888 {
889 mch_errmsg(_("netbeans is not supported with this GUI\n"));
890 mch_exit(2);
891 }
892# endif
893# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000894 /* Tell the client that it can start sending commands. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200895 netbeans_open(netbeansArg + 3, TRUE);
Bram Moolenaar67c53842010-05-22 18:28:27 +0200896 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000897#endif
898
899 TIME_MSG("before starting main loop");
900
901 /*
902 * Call the main command loop. This never returns.
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100903 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000904 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000905
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200906#endif /* NO_VIM_MAIN */
907
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000908 return 0;
909}
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000910
911/*
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200912 * Initialisation shared by main() and some tests.
913 */
914 void
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200915common_init(mparm_T *paramp)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200916{
917
918#ifdef FEAT_MBYTE
919 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
920#endif
921#ifdef FEAT_EVAL
922 eval_init(); /* init global variables */
923#endif
924
925#ifdef __QNXNTO__
926 qnx_init(); /* PhAttach() for clipboard, (and gui) */
927#endif
928
929#ifdef MAC_OS_CLASSIC
930 /* Prepare for possibly starting GUI sometime */
931 /* Macintosh needs this before any memory is allocated. */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200932 gui_prepare(&paramp->argc, paramp->argv);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200933 TIME_MSG("GUI prepared");
934#endif
935
936 /* Init the table of Normal mode commands. */
937 init_normal_cmds();
938
939#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
940 make_version(); /* Construct the long version string. */
941#endif
942
943 /*
944 * Allocate space for the generic buffers (needed for set_init_1() and
945 * EMSG2()).
946 */
947 if ((IObuff = alloc(IOSIZE)) == NULL
948 || (NameBuff = alloc(MAXPATHL)) == NULL)
949 mch_exit(0);
950 TIME_MSG("Allocated generic buffers");
951
952#ifdef NBDEBUG
953 /* Wait a moment for debugging NetBeans. Must be after allocating
954 * NameBuff. */
955 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
956 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
957 TIME_MSG("NetBeans debug wait");
958#endif
959
960#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
961 /*
962 * Setup to use the current locale (for ctype() and many other things).
963 * NOTE: Translated messages with encodings other than latin1 will not
964 * work until set_init_1() has been called!
965 */
966 init_locale();
967 TIME_MSG("locale set");
968#endif
969
970#ifdef FEAT_GUI
971 gui.dofork = TRUE; /* default is to use fork() */
972#endif
973
974 /*
975 * Do a first scan of the arguments in "argv[]":
976 * -display or --display
977 * --server...
978 * --socketid
979 * --windowid
980 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200981 early_arg_scan(paramp);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200982
983#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200984 findYourself(paramp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200985#endif
986#if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
987 /* Prepare for possibly starting GUI sometime */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200988 gui_prepare(&paramp->argc, paramp->argv);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200989 TIME_MSG("GUI prepared");
990#endif
991
992#ifdef FEAT_CLIPBOARD
993 clip_init(FALSE); /* Initialise clipboard stuff */
994 TIME_MSG("clipboard setup");
995#endif
996
997 /*
998 * Check if we have an interactive window.
999 * On the Amiga: If there is no window, we open one with a newcli command
1000 * (needed for :! to * work). mch_check_win() will also handle the -d or
1001 * -dev argument.
1002 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001003 stdout_isatty = (mch_check_win(paramp->argc, paramp->argv) != FAIL);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001004 TIME_MSG("window checked");
1005
1006 /*
1007 * Allocate the first window and buffer.
1008 * Can't do anything without it, exit when it fails.
1009 */
1010 if (win_alloc_first() == FAIL)
1011 mch_exit(0);
1012
1013 init_yank(); /* init yank buffers */
1014
1015 alist_init(&global_alist); /* Init the argument list to empty. */
1016 global_alist.id = 0;
1017
1018 /*
1019 * Set the default values for the options.
1020 * NOTE: Non-latin1 translated messages are working only after this,
1021 * because this is where "has_mbyte" will be set, which is used by
1022 * msg_outtrans_len_attr().
1023 * First find out the home directory, needed to expand "~" in options.
1024 */
1025 init_homedir(); /* find real value of $HOME */
1026 set_init_1();
1027 TIME_MSG("inits 1");
1028
1029#ifdef FEAT_EVAL
1030 set_lang_var(); /* set v:lang and v:ctype */
1031#endif
1032}
1033
1034/*
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001035 * Return TRUE when the --not-a-term argument was found.
1036 */
1037 int
1038is_not_a_term()
1039{
1040 return params.not_a_term;
1041}
1042
1043/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001044 * Main loop: Execute Normal mode commands until exiting Vim.
1045 * Also used to handle commands in the command-line window, until the window
1046 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001047 * Also used to handle ":visual" command after ":global": execute Normal mode
1048 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001049 */
1050 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001051main_loop(
1052 int cmdwin, /* TRUE when working in the command-line window */
1053 int noexmode) /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001054{
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001055 oparg_T oa; /* operator arguments */
Bram Moolenaar8872ef12015-02-10 19:27:05 +01001056 volatile int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001057#ifdef FEAT_CONCEAL
Bram Moolenaar1db43b12015-07-12 16:21:23 +02001058 /* these are static to avoid a compiler warning */
1059 static linenr_T conceal_old_cursor_line = 0;
1060 static linenr_T conceal_new_cursor_line = 0;
1061 static int conceal_update_lines = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001062#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001063
1064#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1065 /* Setup to catch a terminating error from the X server. Just ignore
1066 * it, restore the state and continue. This might not always work
1067 * properly, but at least we don't exit unexpectedly when the X server
Bram Moolenaar2cd36962014-01-14 12:57:05 +01001068 * exits while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001069 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001070 {
1071 State = NORMAL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001072 VIsual_active = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001073 got_int = TRUE;
1074 need_wait_return = FALSE;
1075 global_busy = FALSE;
1076 exmode_active = 0;
1077 skip_redraw = FALSE;
1078 RedrawingDisabled = 0;
1079 no_wait_return = 0;
Bram Moolenaar7701c242011-10-04 16:43:53 +02001080 vgetc_busy = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001081# ifdef FEAT_EVAL
1082 emsg_skip = 0;
1083# endif
1084 emsg_off = 0;
1085# ifdef FEAT_MOUSE
1086 setmouse();
1087# endif
1088 settmode(TMODE_RAW);
1089 starttermcap();
1090 scroll_start();
1091 redraw_later_clear();
1092 }
1093#endif
1094
1095 clear_oparg(&oa);
1096 while (!cmdwin
1097#ifdef FEAT_CMDWIN
1098 || cmdwin_result == 0
1099#endif
1100 )
1101 {
1102 if (stuff_empty())
1103 {
1104 did_check_timestamps = FALSE;
1105 if (need_check_timestamps)
1106 check_timestamps(FALSE);
1107 if (need_wait_return) /* if wait_return still needed ... */
1108 wait_return(FALSE); /* ... call it now */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001109 if (need_start_insertmode && goto_im() && !VIsual_active)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001110 {
1111 need_start_insertmode = FALSE;
1112 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1113 /* skip the fileinfo message now, because it would be shown
1114 * after insert mode finishes! */
1115 need_fileinfo = FALSE;
1116 }
1117 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001118
1119 /* Reset "got_int" now that we got back to the main loop. Except when
1120 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1121 * the ":g" command.
1122 * For ":g/pat/vi" we reset "got_int" when used once. When used
1123 * a second time we go back to Ex mode and abort the ":g" command. */
1124 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001125 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001126 if (noexmode && global_busy && !exmode_active && previous_got_int)
1127 {
1128 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1129 * used and keep "got_int" set, so that it aborts ":g". */
1130 exmode_active = EXMODE_NORMAL;
1131 State = NORMAL;
1132 }
1133 else if (!global_busy || !exmode_active)
1134 {
1135 if (!quit_more)
1136 (void)vgetc(); /* flush all buffers */
1137 got_int = FALSE;
1138 }
1139 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001140 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001141 else
1142 previous_got_int = FALSE;
1143
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001144 if (!exmode_active)
1145 msg_scroll = FALSE;
1146 quit_more = FALSE;
1147
1148 /*
1149 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1150 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1151 * update cursor and redraw.
1152 */
1153 if (skip_redraw || exmode_active)
1154 skip_redraw = FALSE;
1155 else if (do_redraw || stuff_empty())
1156 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001157# ifdef FEAT_GUI
1158 /* If ui_breakcheck() was used a resize may have been postponed. */
1159 gui_may_resize_shell();
1160# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001161#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001162 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001163 if (!finish_op && (
1164# ifdef FEAT_AUTOCMD
1165 has_cursormoved()
1166# endif
1167# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
1168 ||
1169# endif
1170# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001171 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001172# endif
1173 )
Bram Moolenaard1413d92016-03-02 21:51:56 +01001174# ifdef FEAT_AUTOCMD
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001175 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)
Bram Moolenaard1413d92016-03-02 21:51:56 +01001176# endif
1177 )
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001178 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001179# ifdef FEAT_AUTOCMD
1180 if (has_cursormoved())
1181 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1182 FALSE, curbuf);
1183# endif
1184# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001185 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001186 {
Bram Moolenaard1413d92016-03-02 21:51:56 +01001187# ifdef FEAT_AUTOCMD
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001188 conceal_old_cursor_line = last_cursormoved.lnum;
Bram Moolenaard1413d92016-03-02 21:51:56 +01001189# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001190 conceal_new_cursor_line = curwin->w_cursor.lnum;
1191 conceal_update_lines = TRUE;
1192 }
1193# endif
Bram Moolenaard1413d92016-03-02 21:51:56 +01001194# ifdef FEAT_AUTOCMD
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001195 last_cursormoved = curwin->w_cursor;
Bram Moolenaard1413d92016-03-02 21:51:56 +01001196# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001197 }
1198#endif
1199
Bram Moolenaar186628f2013-03-19 13:33:23 +01001200#ifdef FEAT_AUTOCMD
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001201 /* Trigger TextChanged if b:changedtick differs. */
Bram Moolenaar186628f2013-03-19 13:33:23 +01001202 if (!finish_op && has_textchanged()
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001203 && last_changedtick != CHANGEDTICK(curbuf))
Bram Moolenaar186628f2013-03-19 13:33:23 +01001204 {
1205 if (last_changedtick_buf == curbuf)
1206 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL,
1207 FALSE, curbuf);
1208 last_changedtick_buf = curbuf;
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001209 last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar186628f2013-03-19 13:33:23 +01001210 }
1211#endif
1212
Bram Moolenaar33aec762006-01-22 23:30:12 +00001213#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1214 /* Scroll-binding for diff mode may have been postponed until
1215 * here. Avoids doing it for every change. */
1216 if (diff_need_scrollbind)
1217 {
1218 check_scrollbind((linenr_T)0, 0L);
1219 diff_need_scrollbind = FALSE;
1220 }
1221#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001222#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001223 /* Include a closed fold completely in the Visual area. */
1224 foldAdjustVisual();
1225#endif
1226#ifdef FEAT_FOLDING
1227 /*
1228 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1229 * contain the cursor.
1230 * When 'foldopen' is "all", open the fold(s) under the cursor.
1231 * This may mark the window for redrawing.
1232 */
1233 if (hasAnyFolding(curwin) && !char_avail())
1234 {
1235 foldCheckClose();
1236 if (fdo_flags & FDO_ALL)
1237 foldOpenCursor();
1238 }
1239#endif
1240
1241 /*
1242 * Before redrawing, make sure w_topline is correct, and w_leftcol
1243 * if lines don't wrap, and w_skipcol if lines wrap.
1244 */
1245 update_topline();
1246 validate_cursor();
1247
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001248 if (VIsual_active)
1249 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001250 else if (must_redraw)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001251 update_screen(0);
1252 else if (redraw_cmdline || clear_cmdline)
1253 showmode();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001254 redraw_statuslines();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001255#ifdef FEAT_TITLE
1256 if (need_maketitle)
1257 maketitle();
1258#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001259#ifdef FEAT_VIMINFO
1260 curbuf->b_last_used = vim_time();
1261#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001262 /* display message after redraw */
1263 if (keep_msg != NULL)
1264 {
1265 char_u *p;
1266
1267 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001268 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1269 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001270 p = keep_msg;
1271 msg_attr(p, keep_msg_attr);
1272 vim_free(p);
1273 }
1274 if (need_fileinfo) /* show file info after redraw */
1275 {
1276 fileinfo(FALSE, TRUE, FALSE);
1277 need_fileinfo = FALSE;
1278 }
1279
1280 emsg_on_display = FALSE; /* can delete error message now */
1281 did_emsg = FALSE;
1282 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001283 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001284 showruler(FALSE);
1285
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001286# if defined(FEAT_CONCEAL)
1287 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001288 && (conceal_old_cursor_line != conceal_new_cursor_line
1289 || conceal_cursor_line(curwin)
1290 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001291 {
Bram Moolenaarc2b4c622011-02-15 16:29:59 +01001292 if (conceal_old_cursor_line != conceal_new_cursor_line
1293 && conceal_old_cursor_line
1294 <= curbuf->b_ml.ml_line_count)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001295 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001296 update_single_line(curwin, conceal_new_cursor_line);
1297 curwin->w_valid &= ~VALID_CROW;
1298 }
1299# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001300 setcursor();
1301 cursor_on();
1302
1303 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001304
1305#ifdef STARTUPTIME
1306 /* Now that we have drawn the first screen all the startup stuff
1307 * has been done, close any file for startup messages. */
1308 if (time_fd != NULL)
1309 {
1310 TIME_MSG("first screen update");
1311 TIME_MSG("--- VIM STARTED ---");
1312 fclose(time_fd);
1313 time_fd = NULL;
1314 }
1315#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001316 }
1317#ifdef FEAT_GUI
1318 if (need_mouse_correct)
1319 gui_mouse_correct();
1320#endif
1321
1322 /*
1323 * Update w_curswant if w_set_curswant has been set.
1324 * Postponed until here to avoid computing w_virtcol too often.
1325 */
1326 update_curswant();
1327
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001328#ifdef FEAT_EVAL
1329 /*
1330 * May perform garbage collection when waiting for a character, but
1331 * only at the very toplevel. Otherwise we may be using a List or
1332 * Dict internally somewhere.
1333 * "may_garbage_collect" is reset in vgetc() which is invoked through
1334 * do_exmode() and normal_cmd().
1335 */
1336 may_garbage_collect = (!cmdwin && !noexmode);
1337#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001338 /*
1339 * If we're invoked as ex, do a round of ex commands.
1340 * Otherwise, get and execute a normal mode command.
1341 */
1342 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001343 {
1344 if (noexmode) /* End of ":global/path/visual" commands */
1345 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001346 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001347 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001348 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001349 {
1350#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02001351 if (term_use_loop()
Bram Moolenaaraaa8a352017-08-05 20:17:00 +02001352 && oa.op_type == OP_NOP && oa.regname == NUL
1353 && !VIsual_active)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001354 {
1355 /* If terminal_loop() returns OK we got a key that is handled
Bram Moolenaar6d819742017-08-06 14:57:49 +02001356 * in Normal model. With FAIL we first need to position the
1357 * cursor and the screen needs to be redrawn. */
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001358 if (terminal_loop(TRUE) == OK)
Bram Moolenaar423802d2017-07-30 16:52:24 +02001359 normal_cmd(&oa, TRUE);
1360 }
1361 else
Bram Moolenaar938783d2017-07-16 20:13:26 +02001362#endif
Bram Moolenaar423802d2017-07-30 16:52:24 +02001363 normal_cmd(&oa, TRUE);
Bram Moolenaar938783d2017-07-16 20:13:26 +02001364 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001365 }
1366}
1367
1368
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001369#if defined(USE_XSMP) || defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001370/*
1371 * Exit, but leave behind swap files for modified buffers.
1372 */
1373 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001374getout_preserve_modified(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001375{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001376# if defined(SIGHUP) && defined(SIG_IGN)
1377 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1378 * makes Vim exit and then handling SIGHUP causes various reentrance
1379 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001380 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001381# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001382
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001383 ml_close_notmod(); /* close all not-modified buffers */
1384 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1385 ml_close_all(FALSE); /* close all memfiles, without deleting */
1386 getout(exitval); /* exit Vim properly */
1387}
1388#endif
1389
1390
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001391/*
1392 * Exit properly.
1393 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001394 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001395getout(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001396{
1397#ifdef FEAT_AUTOCMD
1398 buf_T *buf;
1399 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001400 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001401#endif
1402
1403 exiting = TRUE;
1404
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001405 /* When running in Ex mode an error causes us to exit with a non-zero exit
1406 * code. POSIX requires this, although it's not 100% clear from the
1407 * standard. */
1408 if (exmode_active)
1409 exitval += ex_exitval;
1410
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001411 /* Position the cursor on the last screen line, below all the text */
1412#ifdef FEAT_GUI
1413 if (!gui.in_use)
1414#endif
1415 windgoto((int)Rows - 1, 0);
1416
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001417#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1418 /* Optionally print hashtable efficiency. */
1419 hash_debug_results();
1420#endif
1421
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001422#ifdef FEAT_GUI
1423 msg_didany = FALSE;
1424#endif
1425
1426#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001427 if (get_vim_var_nr(VV_DYING) <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001428 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001429 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001430 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001431 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001432 next_tp = tp->tp_next;
Bram Moolenaar29323592016-07-24 22:04:11 +02001433 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001434 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001435 if (wp->w_buffer == NULL)
1436 /* Autocmd must have close the buffer already, skip. */
1437 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001438 buf = wp->w_buffer;
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001439 if (CHANGEDTICK(buf) != -1)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001440 {
1441 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1442 buf->b_fname, FALSE, buf);
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001443 CHANGEDTICK(buf) = -1; /* note that we did it already */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001444 /* start all over, autocommands may mess up the lists */
1445 next_tp = first_tabpage;
1446 break;
1447 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001448 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001449 }
Bram Moolenaar33aec762006-01-22 23:30:12 +00001450
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001451 /* Trigger BufUnload for buffers that are loaded */
Bram Moolenaar29323592016-07-24 22:04:11 +02001452 FOR_ALL_BUFFERS(buf)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001453 if (buf->b_ml.ml_mfp != NULL)
1454 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001455 bufref_T bufref;
1456
1457 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001458 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001459 FALSE, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001460 if (!bufref_valid(&bufref))
1461 /* autocmd deleted the buffer */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001462 break;
1463 }
1464 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1465 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001466#endif
1467
1468#ifdef FEAT_VIMINFO
1469 if (*p_viminfo != NUL)
1470 /* Write out the registers, history, marks etc, to the viminfo file */
1471 write_viminfo(NULL, FALSE);
1472#endif
1473
1474#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001475 if (get_vim_var_nr(VV_DYING) <= 1)
1476 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001477#endif
1478
Bram Moolenaar05159a02005-02-26 23:04:13 +00001479#ifdef FEAT_PROFILE
1480 profile_dump();
1481#endif
1482
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001483 if (did_emsg
1484#ifdef FEAT_GUI
1485 || (gui.in_use && msg_didany && p_verbose > 0)
1486#endif
1487 )
1488 {
1489 /* give the user a chance to read the (error) message */
1490 no_wait_return = FALSE;
1491 wait_return(FALSE);
1492 }
1493
1494#ifdef FEAT_AUTOCMD
1495 /* Position the cursor again, the autocommands may have moved it */
1496# ifdef FEAT_GUI
1497 if (!gui.in_use)
1498# endif
1499 windgoto((int)Rows - 1, 0);
1500#endif
1501
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001502#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar65edff82016-02-21 16:40:11 +01001503 job_stop_on_exit();
1504#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001505#ifdef FEAT_LUA
1506 lua_end();
1507#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001508#ifdef FEAT_MZSCHEME
1509 mzscheme_end();
1510#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001511#ifdef FEAT_TCL
1512 tcl_end();
1513#endif
1514#ifdef FEAT_RUBY
1515 ruby_end();
1516#endif
1517#ifdef FEAT_PYTHON
1518 python_end();
1519#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001520#ifdef FEAT_PYTHON3
1521 python3_end();
1522#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001523#ifdef FEAT_PERL
1524 perl_end();
1525#endif
1526#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1527 iconv_end();
1528#endif
1529#ifdef FEAT_NETBEANS_INTG
1530 netbeans_end();
1531#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001532#ifdef FEAT_CSCOPE
1533 cs_end();
1534#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001535#ifdef FEAT_EVAL
1536 if (garbage_collect_at_exit)
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02001537 garbage_collect(FALSE);
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001538#endif
Bram Moolenaar14993322014-09-09 12:25:33 +02001539#if defined(WIN32) && defined(FEAT_MBYTE)
1540 free_cmd_argsW();
1541#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001542
1543 mch_exit(exitval);
1544}
1545
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001546#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1547/*
1548 * Setup to use the current locale (for ctype() and many other things).
1549 */
1550 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001551init_locale(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001552{
1553 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001554
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001555# ifdef FEAT_GUI_GTK
1556 /* Tell Gtk not to change our locale settings. */
1557 gtk_disable_setlocale();
1558# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001559# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1560 /* Make sure strtod() uses a decimal point, not a comma. */
1561 setlocale(LC_NUMERIC, "C");
1562# endif
1563
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001564# ifdef WIN32
1565 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1566 * text while it's expecting text in the current locale. This call avoids
1567 * that. */
1568 setlocale(LC_CTYPE, "C");
1569# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001570
1571# ifdef FEAT_GETTEXT
1572 {
1573 int mustfree = FALSE;
1574 char_u *p;
1575
1576# ifdef DYNAMIC_GETTEXT
1577 /* Initialize the gettext library */
Bram Moolenaar286eacd2016-01-16 18:05:50 +01001578 dyn_libintl_init();
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001579# endif
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001580 /* expand_env() doesn't work yet, because g_chartab[] is not
1581 * initialized yet, call vim_getenv() directly */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001582 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1583 if (p != NULL && *p != NUL)
1584 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001585 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001586 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1587 }
1588 if (mustfree)
1589 vim_free(p);
1590 textdomain(VIMPACKAGE);
1591 }
1592# endif
1593}
1594#endif
1595
1596/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001597 * Get the name of the display, before gui_prepare() removes it from
1598 * argv[]. Used for the xterm-clipboard display.
1599 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001600 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001601 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001602 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001603early_arg_scan(mparm_T *parmp UNUSED)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001604{
Bram Moolenaar03005972008-11-20 13:12:36 +00001605#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1606 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001607 int argc = parmp->argc;
1608 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001609 int i;
1610
1611 for (i = 1; i < argc; i++)
1612 {
1613 if (STRCMP(argv[i], "--") == 0)
1614 break;
1615# ifdef FEAT_XCLIPBOARD
1616 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001617# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001618 || STRICMP(argv[i], "--display") == 0
1619# endif
1620 )
1621 {
1622 if (i == argc - 1)
1623 mainerr_arg_missing((char_u *)argv[i]);
1624 xterm_display = argv[++i];
1625 }
1626# endif
1627# ifdef FEAT_CLIENTSERVER
1628 else if (STRICMP(argv[i], "--servername") == 0)
1629 {
1630 if (i == argc - 1)
1631 mainerr_arg_missing((char_u *)argv[i]);
1632 parmp->serverName_arg = (char_u *)argv[++i];
1633 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001634 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001635 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001636 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001637 {
1638 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001639# ifdef FEAT_GUI
1640 if (strstr(argv[i], "-wait") != 0)
1641 /* don't fork() when starting the GUI to edit files ourself */
1642 gui.dofork = FALSE;
1643# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001644 }
1645# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001646
1647# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1648# ifdef FEAT_GUI_W32
1649 else if (STRICMP(argv[i], "--windowid") == 0)
1650# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001651 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001652# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001653 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001654 long_u id;
1655 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001656
1657 if (i == argc - 1)
1658 mainerr_arg_missing((char_u *)argv[i]);
1659 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001660 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001661 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001662 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001663 if (count != 1)
1664 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1665 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001666# ifdef FEAT_GUI_W32
1667 win_socket_id = id;
1668# else
1669 gtk_socket_id = id;
1670# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001671 i++;
1672 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001673# endif
1674# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001675 else if (STRICMP(argv[i], "--echo-wid") == 0)
1676 echo_wid_arg = TRUE;
1677# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001678# ifndef FEAT_NETBEANS_INTG
1679 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001680 {
1681 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1682 mch_exit(2);
1683 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001684# endif
1685
Bram Moolenaar58d98232005-07-23 22:25:46 +00001686 }
1687#endif
1688}
1689
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001690#ifndef NO_VIM_MAIN
1691/*
1692 * Get a (optional) count for a Vim argument.
1693 */
1694 static int
1695get_number_arg(
1696 char_u *p, /* pointer to argument */
1697 int *idx, /* index in argument, is incremented */
1698 int def) /* default value */
1699{
1700 if (vim_isdigit(p[*idx]))
1701 {
1702 def = atoi((char *)&(p[*idx]));
1703 while (vim_isdigit(p[*idx]))
1704 *idx = *idx + 1;
1705 }
1706 return def;
1707}
1708
1709/*
1710 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1711 * If the executable name starts with "r" we disable shell commands.
1712 * If the next character is "e" we run in Easy mode.
1713 * If the next character is "g" we run the GUI version.
1714 * If the next characters are "view" we start in readonly mode.
1715 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1716 * If the next characters are "ex" we start in Ex mode. If it's followed
1717 * by "im" use improved Ex mode.
1718 */
1719 static void
1720parse_command_name(mparm_T *parmp)
1721{
1722 char_u *initstr;
1723
1724 initstr = gettail((char_u *)parmp->argv[0]);
1725
1726#ifdef MACOS_X_UNIX
1727 /* An issue has been seen when launching Vim in such a way that
1728 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1729 * executable or a symbolic link of it. Until this issue is resolved
1730 * we prohibit the GUI from being used.
1731 */
1732 if (STRCMP(initstr, parmp->argv[0]) == 0)
1733 disallow_gui = TRUE;
1734
1735 /* TODO: On MacOS X default to gui if argv[0] ends in:
1736 * /Vim.app/Contents/MacOS/Vim */
1737#endif
1738
1739#ifdef FEAT_EVAL
1740 set_vim_var_string(VV_PROGNAME, initstr, -1);
Bram Moolenaar08cab962017-03-04 14:37:18 +01001741 set_progpath((char_u *)parmp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001742#endif
1743
1744 if (TOLOWER_ASC(initstr[0]) == 'r')
1745 {
1746 restricted = TRUE;
1747 ++initstr;
1748 }
1749
1750 /* Use evim mode for "evim" and "egvim", not for "editor". */
1751 if (TOLOWER_ASC(initstr[0]) == 'e'
1752 && (TOLOWER_ASC(initstr[1]) == 'v'
1753 || TOLOWER_ASC(initstr[1]) == 'g'))
1754 {
1755#ifdef FEAT_GUI
1756 gui.starting = TRUE;
1757#endif
1758 parmp->evim_mode = TRUE;
1759 ++initstr;
1760 }
1761
1762 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1763 if (TOLOWER_ASC(initstr[0]) == 'g')
1764 {
1765 main_start_gui();
1766#ifdef FEAT_GUI
1767 ++initstr;
1768#endif
1769 }
1770
1771 if (STRNICMP(initstr, "view", 4) == 0)
1772 {
1773 readonlymode = TRUE;
1774 curbuf->b_p_ro = TRUE;
1775 p_uc = 10000; /* don't update very often */
1776 initstr += 4;
1777 }
1778 else if (STRNICMP(initstr, "vim", 3) == 0)
1779 initstr += 3;
1780
1781 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1782 if (STRICMP(initstr, "diff") == 0)
1783 {
1784#ifdef FEAT_DIFF
1785 parmp->diff_mode = TRUE;
1786#else
1787 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1788 mch_errmsg("\n");
1789 mch_exit(2);
1790#endif
1791 }
1792
1793 if (STRNICMP(initstr, "ex", 2) == 0)
1794 {
1795 if (STRNICMP(initstr + 2, "im", 2) == 0)
1796 exmode_active = EXMODE_VIM;
1797 else
1798 exmode_active = EXMODE_NORMAL;
1799 change_compatible(TRUE); /* set 'compatible' */
1800 }
1801}
1802
Bram Moolenaar58d98232005-07-23 22:25:46 +00001803/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001804 * Scan the command line arguments.
1805 */
1806 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001807command_line_scan(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001808{
1809 int argc = parmp->argc;
1810 char **argv = parmp->argv;
1811 int argv_idx; /* index in argv[n][] */
1812 int had_minmin = FALSE; /* found "--" argument */
1813 int want_argument; /* option argument with argument */
1814 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001815 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001816 long n;
1817
1818 --argc;
1819 ++argv;
1820 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1821 while (argc > 0)
1822 {
1823 /*
1824 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1825 */
1826 if (argv[0][0] == '+' && !had_minmin)
1827 {
1828 if (parmp->n_commands >= MAX_ARG_CMDS)
1829 mainerr(ME_EXTRA_CMD, NULL);
1830 argv_idx = -1; /* skip to next argument */
1831 if (argv[0][1] == NUL)
1832 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1833 else
1834 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1835 }
1836
1837 /*
1838 * Optional argument.
1839 */
1840 else if (argv[0][0] == '-' && !had_minmin)
1841 {
1842 want_argument = FALSE;
1843 c = argv[0][argv_idx++];
1844#ifdef VMS
1845 /*
1846 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1847 * and "-/X" as "-X".
1848 */
1849 if (c == '/')
1850 {
1851 c = argv[0][argv_idx++];
1852 c = TOUPPER_ASC(c);
1853 }
1854 else
1855 c = TOLOWER_ASC(c);
1856#endif
1857 switch (c)
1858 {
1859 case NUL: /* "vim -" read from stdin */
1860 /* "ex -" silent mode */
1861 if (exmode_active)
1862 silent_mode = TRUE;
1863 else
1864 {
1865 if (parmp->edit_type != EDIT_NONE)
1866 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1867 parmp->edit_type = EDIT_STDIN;
1868 read_cmd_fd = 2; /* read from stderr instead of stdin */
1869 }
1870 argv_idx = -1; /* skip to next argument */
1871 break;
1872
1873 case '-': /* "--" don't take any more option arguments */
1874 /* "--help" give help message */
1875 /* "--version" give version message */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001876 /* "--clean" clean context */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001877 /* "--literal" take files literally */
1878 /* "--nofork" don't fork */
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001879 /* "--not-a-term" don't warn for not a term */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001880 /* "--ttyfail" exit if not a term */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001881 /* "--noplugin[s]" skip plugins */
1882 /* "--cmd <cmd>" execute cmd before vimrc */
1883 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1884 usage();
1885 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1886 {
1887 Columns = 80; /* need to init Columns */
1888 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1889 list_version();
1890 msg_putchar('\n');
1891 msg_didout = FALSE;
1892 mch_exit(0);
1893 }
Bram Moolenaarc4da1132017-07-15 19:39:43 +02001894 else if (STRNICMP(argv[0] + argv_idx, "clean", 5) == 0)
1895 {
1896 parmp->use_vimrc = (char_u *)"DEFAULTS";
1897 set_option_value((char_u *)"vif", 0L, (char_u *)"NONE", 0);
1898 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001899 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1900 {
Bram Moolenaar53076832015-12-31 19:53:21 +01001901#ifdef EXPAND_FILENAMES
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001902 parmp->literal = TRUE;
1903#endif
1904 }
1905 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1906 {
1907#ifdef FEAT_GUI
1908 gui.dofork = FALSE; /* don't fork() when starting GUI */
1909#endif
1910 }
1911 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1912 p_lpl = FALSE;
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001913 else if (STRNICMP(argv[0] + argv_idx, "not-a-term", 10) == 0)
1914 parmp->not_a_term = TRUE;
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001915 else if (STRNICMP(argv[0] + argv_idx, "ttyfail", 7) == 0)
1916 parmp->tty_fail = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001917 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1918 {
1919 want_argument = TRUE;
1920 argv_idx += 3;
1921 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001922 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1923 {
1924 want_argument = TRUE;
1925 argv_idx += 11;
1926 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001927#ifdef FEAT_CLIENTSERVER
1928 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1929 ; /* already processed -- no arg */
1930 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1931 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1932 {
1933 /* already processed -- snatch the following arg */
1934 if (argc > 1)
1935 {
1936 --argc;
1937 ++argv;
1938 }
1939 }
1940#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001941#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1942# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001943 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001944# else
1945 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1946# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001947 {
1948 /* already processed -- snatch the following arg */
1949 if (argc > 1)
1950 {
1951 --argc;
1952 ++argv;
1953 }
1954 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001955#endif
1956#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001957 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1958 {
1959 /* already processed, skip */
1960 }
1961#endif
1962 else
1963 {
1964 if (argv[0][argv_idx])
1965 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1966 had_minmin = TRUE;
1967 }
1968 if (!want_argument)
1969 argv_idx = -1; /* skip to next argument */
1970 break;
1971
1972 case 'A': /* "-A" start in Arabic mode */
1973#ifdef FEAT_ARABIC
1974 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1975#else
1976 mch_errmsg(_(e_noarabic));
1977 mch_exit(2);
1978#endif
1979 break;
1980
1981 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001982 /* Needs to be effective before expanding file names, because
1983 * for Win32 this makes us edit a shortcut file itself,
1984 * instead of the file it links to. */
1985 set_options_bin(curbuf->b_p_bin, 1, 0);
1986 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001987 break;
1988
1989 case 'C': /* "-C" Compatible */
1990 change_compatible(TRUE);
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02001991 has_dash_c_arg = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001992 break;
1993
1994 case 'e': /* "-e" Ex mode */
1995 exmode_active = EXMODE_NORMAL;
1996 break;
1997
1998 case 'E': /* "-E" Improved Ex mode */
1999 exmode_active = EXMODE_VIM;
2000 break;
2001
2002 case 'f': /* "-f" GUI: run in foreground. Amiga: open
2003 window directly, not with newcli */
2004#ifdef FEAT_GUI
2005 gui.dofork = FALSE; /* don't fork() when starting GUI */
2006#endif
2007 break;
2008
2009 case 'g': /* "-g" start GUI */
2010 main_start_gui();
2011 break;
2012
2013 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
2014#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002015 p_fkmap = TRUE;
2016 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002017#else
2018 mch_errmsg(_(e_nofarsi));
2019 mch_exit(2);
2020#endif
2021 break;
2022
2023 case 'h': /* "-h" give help message */
2024#ifdef FEAT_GUI_GNOME
2025 /* Tell usage() to exit for "gvim". */
2026 gui.starting = FALSE;
2027#endif
2028 usage();
2029 break;
2030
2031 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
2032#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002033 p_hkmap = TRUE;
2034 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002035#else
2036 mch_errmsg(_(e_nohebrew));
2037 mch_exit(2);
2038#endif
2039 break;
2040
2041 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
2042#ifdef FEAT_LISP
2043 set_option_value((char_u *)"lisp", 1L, NULL, 0);
2044 p_sm = TRUE;
2045#endif
2046 break;
2047
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002048 case 'M': /* "-M" no changes or writing of files */
2049 reset_modifiable();
2050 /* FALLTHROUGH */
2051
2052 case 'm': /* "-m" no writing of files */
2053 p_write = FALSE;
2054 break;
2055
2056 case 'y': /* "-y" easy mode */
2057#ifdef FEAT_GUI
2058 gui.starting = TRUE; /* start GUI a bit later */
2059#endif
2060 parmp->evim_mode = TRUE;
2061 break;
2062
2063 case 'N': /* "-N" Nocompatible */
2064 change_compatible(FALSE);
2065 break;
2066
2067 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002068#ifdef FEAT_NETBEANS_INTG
2069 /* checking for "-nb", netbeans parameters */
2070 if (argv[0][argv_idx] == 'b')
2071 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002072 netbeansArg = argv[0];
2073 argv_idx = -1; /* skip to next argument */
2074 }
2075 else
2076#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002077 parmp->no_swap_file = TRUE;
2078 break;
2079
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002080 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002081#ifdef TARGET_API_MAC_OSX
2082 /* For some reason on MacOS X, an argument like:
2083 -psn_0_10223617 is passed in when invoke from Finder
2084 or with the 'open' command */
2085 if (argv[0][argv_idx] == 's')
2086 {
2087 argv_idx = -1; /* bypass full -psn */
2088 main_start_gui();
2089 break;
2090 }
2091#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002092 /* default is 0: open window for each file */
2093 parmp->window_count = get_number_arg((char_u *)argv[0],
2094 &argv_idx, 0);
2095 parmp->window_layout = WIN_TABS;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002096 break;
2097
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002098 case 'o': /* "-o[N]" open N horizontal split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002099 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002100 parmp->window_count = get_number_arg((char_u *)argv[0],
2101 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002102 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002103 break;
2104
2105 case 'O': /* "-O[N]" open N vertical split windows */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002106 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002107 parmp->window_count = get_number_arg((char_u *)argv[0],
2108 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002109 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002110 break;
2111
2112#ifdef FEAT_QUICKFIX
2113 case 'q': /* "-q" QuickFix mode */
2114 if (parmp->edit_type != EDIT_NONE)
2115 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2116 parmp->edit_type = EDIT_QF;
2117 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2118 {
2119 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2120 argv_idx = -1;
2121 }
2122 else if (argc > 1) /* "-q {errorfile}" */
2123 want_argument = TRUE;
2124 break;
2125#endif
2126
2127 case 'R': /* "-R" readonly mode */
2128 readonlymode = TRUE;
2129 curbuf->b_p_ro = TRUE;
2130 p_uc = 10000; /* don't update very often */
2131 break;
2132
2133 case 'r': /* "-r" recovery mode */
2134 case 'L': /* "-L" recovery mode */
2135 recoverymode = 1;
2136 break;
2137
2138 case 's':
2139 if (exmode_active) /* "-s" silent (batch) mode */
2140 silent_mode = TRUE;
2141 else /* "-s {scriptin}" read from script file */
2142 want_argument = TRUE;
2143 break;
2144
2145 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2146 if (parmp->edit_type != EDIT_NONE)
2147 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2148 parmp->edit_type = EDIT_TAG;
2149 if (argv[0][argv_idx]) /* "-t{tag}" */
2150 {
2151 parmp->tagname = (char_u *)argv[0] + argv_idx;
2152 argv_idx = -1;
2153 }
2154 else /* "-t {tag}" */
2155 want_argument = TRUE;
2156 break;
2157
2158#ifdef FEAT_EVAL
2159 case 'D': /* "-D" Debugging */
2160 parmp->use_debug_break_level = 9999;
2161 break;
2162#endif
2163#ifdef FEAT_DIFF
2164 case 'd': /* "-d" 'diff' */
2165# ifdef AMIGA
2166 /* check for "-dev {device}" */
2167 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2168 want_argument = TRUE;
2169 else
2170# endif
2171 parmp->diff_mode = TRUE;
2172 break;
2173#endif
2174 case 'V': /* "-V{N}" Verbose level */
2175 /* default is 10: a little bit verbose */
2176 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2177 if (argv[0][argv_idx] != NUL)
2178 {
2179 set_option_value((char_u *)"verbosefile", 0L,
2180 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002181 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002182 }
2183 break;
2184
2185 case 'v': /* "-v" Vi-mode (as if called "vi") */
2186 exmode_active = 0;
2187#ifdef FEAT_GUI
2188 gui.starting = FALSE; /* don't start GUI */
2189#endif
2190 break;
2191
2192 case 'w': /* "-w{number}" set window height */
2193 /* "-w {scriptout}" write to script */
2194 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2195 {
2196 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2197 set_option_value((char_u *)"window", n, NULL, 0);
2198 break;
2199 }
2200 want_argument = TRUE;
2201 break;
2202
2203#ifdef FEAT_CRYPT
2204 case 'x': /* "-x" encrypted reading/writing of files */
2205 parmp->ask_for_key = TRUE;
2206 break;
2207#endif
2208
2209 case 'X': /* "-X" don't connect to X server */
2210#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2211 x_no_connect = TRUE;
2212#endif
2213 break;
2214
2215 case 'Z': /* "-Z" restricted mode */
2216 restricted = TRUE;
2217 break;
2218
2219 case 'c': /* "-c{command}" or "-c {command}" execute
2220 command */
2221 if (argv[0][argv_idx] != NUL)
2222 {
2223 if (parmp->n_commands >= MAX_ARG_CMDS)
2224 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002225 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2226 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002227 argv_idx = -1;
2228 break;
2229 }
2230 /*FALLTHROUGH*/
2231 case 'S': /* "-S {file}" execute Vim script */
2232 case 'i': /* "-i {viminfo}" use for viminfo */
2233#ifndef FEAT_DIFF
2234 case 'd': /* "-d {device}" device (for Amiga) */
2235#endif
2236 case 'T': /* "-T {terminal}" terminal name */
2237 case 'u': /* "-u {vimrc}" vim inits file */
2238 case 'U': /* "-U {gvimrc}" gvim inits file */
2239 case 'W': /* "-W {scriptout}" overwrite */
2240#ifdef FEAT_GUI_W32
2241 case 'P': /* "-P {parent title}" MDI parent */
2242#endif
2243 want_argument = TRUE;
2244 break;
2245
2246 default:
2247 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2248 }
2249
2250 /*
2251 * Handle option arguments with argument.
2252 */
2253 if (want_argument)
2254 {
2255 /*
2256 * Check for garbage immediately after the option letter.
2257 */
2258 if (argv[0][argv_idx] != NUL)
2259 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2260
2261 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002262 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002263 mainerr_arg_missing((char_u *)argv[0]);
2264 ++argv;
2265 argv_idx = -1;
2266
2267 switch (c)
2268 {
2269 case 'c': /* "-c {command}" execute command */
2270 case 'S': /* "-S {file}" execute Vim script */
2271 if (parmp->n_commands >= MAX_ARG_CMDS)
2272 mainerr(ME_EXTRA_CMD, NULL);
2273 if (c == 'S')
2274 {
2275 char *a;
2276
2277 if (argc < 1)
2278 /* "-S" without argument: use default session file
2279 * name. */
2280 a = SESSION_FILE;
2281 else if (argv[0][0] == '-')
2282 {
2283 /* "-S" followed by another option: use default
2284 * session file name. */
2285 a = SESSION_FILE;
2286 ++argc;
2287 --argv;
2288 }
2289 else
2290 a = argv[0];
2291 p = alloc((unsigned)(STRLEN(a) + 4));
2292 if (p == NULL)
2293 mch_exit(2);
2294 sprintf((char *)p, "so %s", a);
2295 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2296 parmp->commands[parmp->n_commands++] = p;
2297 }
2298 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002299 parmp->commands[parmp->n_commands++] =
2300 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002301 break;
2302
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002303 case '-':
2304 if (argv[-1][2] == 'c')
2305 {
2306 /* "--cmd {command}" execute command */
2307 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2308 mainerr(ME_EXTRA_CMD, NULL);
2309 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002310 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002311 }
2312 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002313 break;
2314
2315 /* case 'd': -d {device} is handled in mch_check_win() for the
2316 * Amiga */
2317
2318#ifdef FEAT_QUICKFIX
2319 case 'q': /* "-q {errorfile}" QuickFix mode */
2320 parmp->use_ef = (char_u *)argv[0];
2321 break;
2322#endif
2323
2324 case 'i': /* "-i {viminfo}" use for viminfo */
Bram Moolenaarc4da1132017-07-15 19:39:43 +02002325 set_option_value((char_u *)"vif", 0L, (char_u *)argv[0], 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002326 break;
2327
2328 case 's': /* "-s {scriptin}" read from script file */
2329 if (scriptin[0] != NULL)
2330 {
2331scripterror:
2332 mch_errmsg(_("Attempt to open script file again: \""));
2333 mch_errmsg(argv[-1]);
2334 mch_errmsg(" ");
2335 mch_errmsg(argv[0]);
2336 mch_errmsg("\"\n");
2337 mch_exit(2);
2338 }
2339 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2340 {
2341 mch_errmsg(_("Cannot open for reading: \""));
2342 mch_errmsg(argv[0]);
2343 mch_errmsg("\"\n");
2344 mch_exit(2);
2345 }
2346 if (save_typebuf() == FAIL)
2347 mch_exit(2); /* out of memory */
2348 break;
2349
2350 case 't': /* "-t {tag}" */
2351 parmp->tagname = (char_u *)argv[0];
2352 break;
2353
2354 case 'T': /* "-T {terminal}" terminal name */
2355 /*
2356 * The -T term argument is always available and when
2357 * HAVE_TERMLIB is supported it overrides the environment
2358 * variable TERM.
2359 */
2360#ifdef FEAT_GUI
2361 if (term_is_gui((char_u *)argv[0]))
2362 gui.starting = TRUE; /* start GUI a bit later */
2363 else
2364#endif
2365 parmp->term = (char_u *)argv[0];
2366 break;
2367
2368 case 'u': /* "-u {vimrc}" vim inits file */
2369 parmp->use_vimrc = (char_u *)argv[0];
2370 break;
2371
2372 case 'U': /* "-U {gvimrc}" gvim inits file */
2373#ifdef FEAT_GUI
2374 use_gvimrc = (char_u *)argv[0];
2375#endif
2376 break;
2377
2378 case 'w': /* "-w {nr}" 'window' value */
2379 /* "-w {scriptout}" append to script file */
2380 if (vim_isdigit(*((char_u *)argv[0])))
2381 {
2382 argv_idx = 0;
2383 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2384 set_option_value((char_u *)"window", n, NULL, 0);
2385 argv_idx = -1;
2386 break;
2387 }
2388 /*FALLTHROUGH*/
2389 case 'W': /* "-W {scriptout}" overwrite script file */
2390 if (scriptout != NULL)
2391 goto scripterror;
2392 if ((scriptout = mch_fopen(argv[0],
2393 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2394 {
2395 mch_errmsg(_("Cannot open for script output: \""));
2396 mch_errmsg(argv[0]);
2397 mch_errmsg("\"\n");
2398 mch_exit(2);
2399 }
2400 break;
2401
2402#ifdef FEAT_GUI_W32
2403 case 'P': /* "-P {parent title}" MDI parent */
2404 gui_mch_set_parent(argv[0]);
2405 break;
2406#endif
2407 }
2408 }
2409 }
2410
2411 /*
2412 * File name argument.
2413 */
2414 else
2415 {
2416 argv_idx = -1; /* skip to next argument */
2417
2418 /* Check for only one type of editing. */
2419 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2420 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2421 parmp->edit_type = EDIT_FILE;
2422
2423#ifdef MSWIN
2424 /* Remember if the argument was a full path before changing
2425 * slashes to backslashes. */
2426 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2427 parmp->full_path = TRUE;
2428#endif
2429
2430 /* Add the file to the global argument list. */
2431 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2432 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2433 mch_exit(2);
2434#ifdef FEAT_DIFF
2435 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2436 && !mch_isdir(alist_name(&GARGLIST[0])))
2437 {
2438 char_u *r;
2439
2440 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2441 if (r != NULL)
2442 {
2443 vim_free(p);
2444 p = r;
2445 }
2446 }
2447#endif
2448#if defined(__CYGWIN32__) && !defined(WIN32)
2449 /*
2450 * If vim is invoked by non-Cygwin tools, convert away any
2451 * DOS paths, so things like .swp files are created correctly.
2452 * Look for evidence of non-Cygwin paths before we bother.
2453 * This is only for when using the Unix files.
2454 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002455 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002456 {
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002457 char posix_path[MAXPATHL];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002458
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002459# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaara9f8ee02017-08-14 23:40:45 +02002460 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002461# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002462 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002463# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002464 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002465 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002466 if (p == NULL)
2467 mch_exit(2);
2468 }
2469#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002470
2471#ifdef USE_FNAME_CASE
2472 /* Make the case of the file name match the actual file. */
2473 fname_case(p, 0);
2474#endif
2475
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002476 alist_add(&global_alist, p,
Bram Moolenaar53076832015-12-31 19:53:21 +01002477#ifdef EXPAND_FILENAMES
Bram Moolenaar231334e2005-07-25 20:46:57 +00002478 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002479#else
2480 2 /* add buffer number now and use curbuf */
2481#endif
2482 );
2483
2484#if defined(FEAT_MBYTE) && defined(WIN32)
2485 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002486 /* Remember this argument has been added to the argument list.
2487 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002488 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002489# ifdef FEAT_DIFF
2490 parmp->diff_mode
2491# else
2492 FALSE
2493# endif
2494 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002495 }
2496#endif
2497 }
2498
2499 /*
2500 * If there are no more letters after the current "-", go to next
2501 * argument. argv_idx is set to -1 when the current argument is to be
2502 * skipped.
2503 */
2504 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2505 {
2506 --argc;
2507 ++argv;
2508 argv_idx = 1;
2509 }
2510 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002511
2512#ifdef FEAT_EVAL
2513 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2514 * one. */
2515 if (parmp->n_commands > 0)
2516 {
2517 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2518 if (p != NULL)
2519 {
2520 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2521 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2522 vim_free(p);
2523 }
2524 }
2525#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002526}
2527
2528/*
2529 * Print a warning if stdout is not a terminal.
2530 * When starting in Ex mode and commands come from a file, set Silent mode.
2531 */
2532 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002533check_tty(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002534{
2535 int input_isatty; /* is active input a terminal? */
2536
2537 input_isatty = mch_input_isatty();
2538 if (exmode_active)
2539 {
2540 if (!input_isatty)
2541 silent_mode = TRUE;
2542 }
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002543 else if (parmp->want_full_screen && (!stdout_isatty || !input_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002544#ifdef FEAT_GUI
2545 /* don't want the delay when started from the desktop */
2546 && !gui.starting
2547#endif
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01002548 && !parmp->not_a_term)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002549 {
2550#ifdef NBDEBUG
2551 /*
2552 * This shouldn't be necessary. But if I run netbeans with the log
2553 * output coming to the console and XOpenDisplay fails, I get vim
2554 * trying to start with input/output to my console tty. This fills my
2555 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002556 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002557 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002558 if (netbeans_active() && (!stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002559 {
2560 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2561 exit(1);
2562 }
2563#endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002564#if defined(WIN3264) && !defined(FEAT_GUI_W32)
2565 if (is_cygpty_used())
2566 {
Bram Moolenaar2a027452017-09-26 19:10:37 +02002567# if defined(FEAT_MBYTE) && defined(HAVE_BIND_TEXTDOMAIN_CODESET) \
2568 && defined(FEAT_GETTEXT)
2569 char *s, *tofree = NULL;
2570
2571 /* Set the encoding of the error message based on $LC_ALL or
2572 * other environment variables instead of 'encoding'.
2573 * Note that the message is shown on a Cygwin terminal (e.g.
2574 * mintty) which encoding is based on $LC_ALL or etc., not the
2575 * current codepage used by normal Win32 console programs. */
2576 tofree = s = enc_locale_env(NULL);
2577 if (s == NULL)
2578 s = "utf-8"; /* Use "utf-8" by default. */
2579 (void)bind_textdomain_codeset(VIMPACKAGE, s);
2580 vim_free(tofree);
2581# endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002582 mch_errmsg(_("Vim: Error: This version of Vim does not run in a Cygwin terminal\n"));
2583 exit(1);
2584 }
2585#endif
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002586 if (!stdout_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002587 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2588 if (!input_isatty)
2589 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2590 out_flush();
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002591 if (parmp->tty_fail && (!stdout_isatty || !input_isatty))
2592 exit(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002593 if (scriptin[0] == NULL)
2594 ui_delay(2000L, TRUE);
2595 TIME_MSG("Warning delay");
2596 }
2597}
2598
2599/*
2600 * Read text from stdin.
2601 */
2602 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002603read_stdin(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002604{
2605 int i;
2606
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002607#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002608 /* When getting the ATTENTION prompt here, use a dialog */
2609 swap_exists_action = SEA_DIALOG;
2610#endif
2611 no_wait_return = TRUE;
2612 i = msg_didany;
2613 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002614 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002615 no_wait_return = FALSE;
2616 msg_didany = i;
2617 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002618#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002619 check_swap_exists_action();
2620#endif
2621#if !(defined(AMIGA) || defined(MACOS))
2622 /*
2623 * Close stdin and dup it from stderr. Required for GPM to work
2624 * properly, and for running external commands.
2625 * Is there any other system that cannot do this?
2626 */
2627 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002628 ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002629#endif
2630}
2631
2632/*
2633 * Create the requested number of windows and edit buffers in them.
2634 * Also does recovery if "recoverymode" set.
2635 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002636 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002637create_windows(mparm_T *parmp UNUSED)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002638{
Bram Moolenaar89d40322006-08-29 15:30:07 +00002639 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002640 int done = 0;
2641
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002642 /*
2643 * Create the number of windows that was requested.
2644 */
2645 if (parmp->window_count == -1) /* was not set */
2646 parmp->window_count = 1;
2647 if (parmp->window_count == 0)
2648 parmp->window_count = GARGCOUNT;
2649 if (parmp->window_count > 1)
2650 {
2651 /* Don't change the windows if there was a command in .vimrc that
2652 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002653 if (parmp->window_layout == 0)
2654 parmp->window_layout = WIN_HOR;
2655 if (parmp->window_layout == WIN_TABS)
2656 {
2657 parmp->window_count = make_tabpages(parmp->window_count);
2658 TIME_MSG("making tab pages");
2659 }
2660 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002661 {
2662 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002663 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002664 TIME_MSG("making windows");
2665 }
2666 else
2667 parmp->window_count = win_count();
2668 }
2669 else
2670 parmp->window_count = 1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002671
2672 if (recoverymode) /* do recover */
2673 {
2674 msg_scroll = TRUE; /* scroll message up */
2675 ml_recover();
2676 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2677 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002678 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002679 }
2680 else
2681 {
2682 /*
2683 * Open a buffer for windows that don't have one yet.
2684 * Commands in the .vimrc might have loaded a file or split the window.
2685 * Watch out for autocommands that delete a window.
2686 */
2687#ifdef FEAT_AUTOCMD
2688 /*
2689 * Don't execute Win/Buf Enter/Leave autocommands here
2690 */
2691 ++autocmd_no_enter;
2692 ++autocmd_no_leave;
2693#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00002694 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002695 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002696 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002697 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002698 {
2699 if (parmp->window_layout == WIN_TABS)
2700 goto_tabpage(1);
2701 else
2702 curwin = firstwin;
2703 }
2704 else if (parmp->window_layout == WIN_TABS)
2705 {
2706 if (curtab->tp_next == NULL)
2707 break;
2708 goto_tabpage(0);
2709 }
2710 else
2711 {
2712 if (curwin->w_next == NULL)
2713 break;
2714 curwin = curwin->w_next;
2715 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002716 dorewind = FALSE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002717 curbuf = curwin->w_buffer;
2718 if (curbuf->b_ml.ml_mfp == NULL)
2719 {
2720#ifdef FEAT_FOLDING
2721 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2722 if (p_fdls >= 0)
2723 curwin->w_p_fdl = p_fdls;
2724#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002725#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002726 /* When getting the ATTENTION prompt here, use a dialog */
2727 swap_exists_action = SEA_DIALOG;
2728#endif
2729 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002730
2731 /* create memfile, read file */
2732 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002733
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002734#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002735 if (swap_exists_action == SEA_QUIT)
2736 {
2737 if (got_int || only_one_window())
2738 {
2739 /* abort selected or quit and only one window */
2740 did_emsg = FALSE; /* avoid hit-enter prompt */
2741 getout(1);
2742 }
2743 /* We can't close the window, it would disturb what
2744 * happens next. Clear the file name and set the arg
2745 * index to -1 to delete it later. */
2746 setfname(curbuf, NULL, NULL, FALSE);
2747 curwin->w_arg_idx = -1;
2748 swap_exists_action = SEA_NONE;
2749 }
2750 else
2751 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002752#endif
2753#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002754 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002755#endif
2756 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002757 ui_breakcheck();
2758 if (got_int)
2759 {
2760 (void)vgetc(); /* only break the file loading, not the rest */
2761 break;
2762 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002763 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002764 if (parmp->window_layout == WIN_TABS)
2765 goto_tabpage(1);
2766 else
2767 curwin = firstwin;
2768 curbuf = curwin->w_buffer;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002769#ifdef FEAT_AUTOCMD
2770 --autocmd_no_enter;
2771 --autocmd_no_leave;
2772#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002773 }
2774}
2775
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002776 /*
2777 * If opened more than one window, start editing files in the other
2778 * windows. make_windows() has already opened the windows.
2779 */
2780 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002781edit_buffers(
2782 mparm_T *parmp,
2783 char_u *cwd) /* current working dir */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002784{
2785 int arg_idx; /* index in argument list */
2786 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002787 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002788 win_T *win;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002789
2790# ifdef FEAT_AUTOCMD
2791 /*
2792 * Don't execute Win/Buf Enter/Leave autocommands here
2793 */
2794 ++autocmd_no_enter;
2795 ++autocmd_no_leave;
2796# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002797
2798 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2799 if (curwin->w_arg_idx == -1)
2800 {
2801 win_close(curwin, TRUE);
2802 advance = FALSE;
2803 }
2804
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002805 arg_idx = 1;
2806 for (i = 1; i < parmp->window_count; ++i)
2807 {
Bram Moolenaard87c36e2015-04-03 14:56:49 +02002808 if (cwd != NULL)
2809 mch_chdir((char *)cwd);
Bram Moolenaar84212822006-11-07 21:59:47 +00002810 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2811 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002812 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002813 ++arg_idx;
2814 win_close(curwin, TRUE);
2815 advance = FALSE;
2816 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002817 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002818
Bram Moolenaar84212822006-11-07 21:59:47 +00002819 if (advance)
2820 {
2821 if (parmp->window_layout == WIN_TABS)
2822 {
2823 if (curtab->tp_next == NULL) /* just checking */
2824 break;
2825 goto_tabpage(0);
2826 }
2827 else
2828 {
2829 if (curwin->w_next == NULL) /* just checking */
2830 break;
2831 win_enter(curwin->w_next, FALSE);
2832 }
2833 }
2834 advance = TRUE;
2835
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002836 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002837 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002838 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2839 {
2840 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002841 /* Edit file from arg list, if there is one. When "Quit" selected
2842 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002843# ifdef HAS_SWAP_EXISTS_ACTION
2844 swap_exists_did_quit = FALSE;
2845# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002846 (void)do_ecmd(0, arg_idx < GARGCOUNT
2847 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002848 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002849# ifdef HAS_SWAP_EXISTS_ACTION
2850 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002851 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002852 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002853 if (got_int || only_one_window())
2854 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002855 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002856 did_emsg = FALSE; /* avoid hit-enter prompt */
2857 getout(1);
2858 }
2859 win_close(curwin, TRUE);
2860 advance = FALSE;
2861 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002862# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002863 if (arg_idx == GARGCOUNT - 1)
2864 arg_had_last = TRUE;
2865 ++arg_idx;
2866 }
2867 ui_breakcheck();
2868 if (got_int)
2869 {
2870 (void)vgetc(); /* only break the file loading, not the rest */
2871 break;
2872 }
2873 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002874
2875 if (parmp->window_layout == WIN_TABS)
2876 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002877# ifdef FEAT_AUTOCMD
2878 --autocmd_no_enter;
2879# endif
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002880
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002881 /* make the first window the current window */
2882 win = firstwin;
Bram Moolenaar4033c552017-09-16 20:54:51 +02002883#if defined(FEAT_QUICKFIX)
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002884 /* Avoid making a preview window the current window. */
2885 while (win->w_p_pvw)
2886 {
2887 win = win->w_next;
2888 if (win == NULL)
2889 {
2890 win = firstwin;
2891 break;
2892 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002893 }
2894#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002895 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002896
Bram Moolenaar4033c552017-09-16 20:54:51 +02002897#ifdef FEAT_AUTOCMD
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002898 --autocmd_no_leave;
Bram Moolenaar4033c552017-09-16 20:54:51 +02002899#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002900 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002901 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002902 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2903}
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002904
2905/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002906 * Execute the commands from --cmd arguments "cmds[cnt]".
2907 */
2908 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002909exe_pre_commands(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002910{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002911 char_u **cmds = parmp->pre_commands;
2912 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002913 int i;
2914
2915 if (cnt > 0)
2916 {
2917 curwin->w_cursor.lnum = 0; /* just in case.. */
2918 sourcing_name = (char_u *)_("pre-vimrc command line");
2919# ifdef FEAT_EVAL
2920 current_SID = SID_CMDARG;
2921# endif
2922 for (i = 0; i < cnt; ++i)
2923 do_cmdline_cmd(cmds[i]);
2924 sourcing_name = NULL;
2925# ifdef FEAT_EVAL
2926 current_SID = 0;
2927# endif
2928 TIME_MSG("--cmd commands");
2929 }
2930}
2931
2932/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002933 * Execute "+", "-c" and "-S" arguments.
2934 */
2935 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002936exe_commands(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002937{
2938 int i;
2939
2940 /*
2941 * We start commands on line 0, make "vim +/pat file" match a
2942 * pattern on line 1. But don't move the cursor when an autocommand
2943 * with g`" was used.
2944 */
2945 msg_scroll = TRUE;
2946 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2947 curwin->w_cursor.lnum = 0;
2948 sourcing_name = (char_u *)"command line";
2949#ifdef FEAT_EVAL
2950 current_SID = SID_CARG;
2951#endif
2952 for (i = 0; i < parmp->n_commands; ++i)
2953 {
2954 do_cmdline_cmd(parmp->commands[i]);
2955 if (parmp->cmds_tofree[i])
2956 vim_free(parmp->commands[i]);
2957 }
2958 sourcing_name = NULL;
2959#ifdef FEAT_EVAL
2960 current_SID = 0;
2961#endif
2962 if (curwin->w_cursor.lnum == 0)
2963 curwin->w_cursor.lnum = 1;
2964
2965 if (!exmode_active)
2966 msg_scroll = FALSE;
2967
2968#ifdef FEAT_QUICKFIX
2969 /* When started with "-q errorfile" jump to first error again. */
2970 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002971 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002972#endif
2973 TIME_MSG("executing command arguments");
2974}
2975
2976/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002977 * Source startup scripts.
2978 */
2979 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002980source_startup_scripts(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002981{
2982 int i;
2983
2984 /*
2985 * For "evim" source evim.vim first of all, so that the user can overrule
2986 * any things he doesn't like.
2987 */
2988 if (parmp->evim_mode)
2989 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002990 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002991 TIME_MSG("source evim file");
2992 }
2993
2994 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002995 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002996 * nothing else.
2997 */
2998 if (parmp->use_vimrc != NULL)
2999 {
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003000 if (STRCMP(parmp->use_vimrc, "DEFAULTS") == 0)
3001 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
3002 else if (STRCMP(parmp->use_vimrc, "NONE") == 0
Bram Moolenaar231334e2005-07-25 20:46:57 +00003003 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00003004 {
3005#ifdef FEAT_GUI
3006 if (use_gvimrc == NULL) /* don't load gvimrc either */
3007 use_gvimrc = parmp->use_vimrc;
3008#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003009 }
3010 else
3011 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003012 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00003013 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
3014 }
3015 }
3016 else if (!silent_mode)
3017 {
3018#ifdef AMIGA
3019 struct Process *proc = (struct Process *)FindTask(0L);
3020 APTR save_winptr = proc->pr_WindowPtr;
3021
3022 /* Avoid a requester here for a volume that doesn't exist. */
3023 proc->pr_WindowPtr = (APTR)-1L;
3024#endif
3025
3026 /*
3027 * Get system wide defaults, if the file name is defined.
3028 */
3029#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003030 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003031#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00003032#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003033 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00003034#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003035
3036 /*
3037 * Try to read initialization commands from the following places:
3038 * - environment variable VIMINIT
3039 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
3040 * - second user vimrc file ($VIM/.vimrc for Dos)
3041 * - environment variable EXINIT
3042 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
3043 * - second user exrc file ($VIM/.exrc for Dos)
3044 * The first that exists is used, the rest is ignored.
3045 */
3046 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
3047 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003048 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003049#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003050 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
3051 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003052#endif
3053#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003054 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
3055 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003056#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02003057#ifdef USR_VIMRC_FILE4
3058 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
3059 DOSO_VIMRC) == FAIL
3060#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003061 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003062 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003063#ifdef USR_EXRC_FILE2
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003064 && do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003065#endif
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02003066 && !has_dash_c_arg)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003067 {
3068 /* When no .vimrc file was found: source defaults.vim. */
3069 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003070 }
3071 }
3072
3073 /*
3074 * Read initialization commands from ".vimrc" or ".exrc" in current
3075 * directory. This is only done if the 'exrc' option is set.
3076 * Because of security reasons we disallow shell and write commands
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003077 * now, except for Unix if the file is owned by the user or 'secure'
Bram Moolenaar58d98232005-07-23 22:25:46 +00003078 * option has been reset in environment of global ".exrc" or ".vimrc".
3079 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3080 * SYS_VIMRC_FILE.
3081 */
3082 if (p_exrc)
3083 {
3084#if defined(UNIX) || defined(VMS)
3085 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3086 if (!file_owned(VIMRC_FILE))
3087#endif
3088 secure = p_secure;
3089
3090 i = FAIL;
3091 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3092 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3093#ifdef USR_VIMRC_FILE2
3094 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3095 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3096#endif
3097#ifdef USR_VIMRC_FILE3
3098 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3099 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3100#endif
3101#ifdef SYS_VIMRC_FILE
3102 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3103 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3104#endif
3105 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003106 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003107
3108 if (i == FAIL)
3109 {
3110#if defined(UNIX) || defined(VMS)
3111 /* if ".exrc" is not owned by user set 'secure' mode */
3112 if (!file_owned(EXRC_FILE))
3113 secure = p_secure;
3114 else
3115 secure = 0;
3116#endif
3117 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3118 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3119#ifdef USR_EXRC_FILE2
3120 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3121 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3122#endif
3123 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003124 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003125 }
3126 }
3127 if (secure == 2)
3128 need_wait_return = TRUE;
3129 secure = 0;
3130#ifdef AMIGA
3131 proc->pr_WindowPtr = save_winptr;
3132#endif
3133 }
3134 TIME_MSG("sourcing vimrc file(s)");
3135}
3136
3137/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003138 * Setup to start using the GUI. Exit with an error when not available.
3139 */
3140 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003141main_start_gui(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003142{
3143#ifdef FEAT_GUI
3144 gui.starting = TRUE; /* start GUI a bit later */
3145#else
3146 mch_errmsg(_(e_nogvim));
3147 mch_errmsg("\n");
3148 mch_exit(2);
3149#endif
3150}
3151
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003152#endif /* NO_VIM_MAIN */
3153
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003154/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003155 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003156 * Returns FAIL if the environment variable was not executed, OK otherwise.
3157 */
3158 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003159process_env(
3160 char_u *env,
3161 int is_viminit) /* when TRUE, called for VIMINIT */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003162{
3163 char_u *initstr;
3164 char_u *save_sourcing_name;
3165 linenr_T save_sourcing_lnum;
3166#ifdef FEAT_EVAL
3167 scid_T save_sid;
3168#endif
3169
3170 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3171 {
3172 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003173 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003174 save_sourcing_name = sourcing_name;
3175 save_sourcing_lnum = sourcing_lnum;
3176 sourcing_name = env;
3177 sourcing_lnum = 0;
3178#ifdef FEAT_EVAL
3179 save_sid = current_SID;
3180 current_SID = SID_ENV;
3181#endif
3182 do_cmdline_cmd(initstr);
3183 sourcing_name = save_sourcing_name;
3184 sourcing_lnum = save_sourcing_lnum;
3185#ifdef FEAT_EVAL
Bram Moolenaar945ec092016-06-08 21:17:43 +02003186 current_SID = save_sid;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003187#endif
3188 return OK;
3189 }
3190 return FAIL;
3191}
3192
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003193#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003194/*
3195 * Return TRUE if we are certain the user owns the file "fname".
3196 * Used for ".vimrc" and ".exrc".
3197 * Use both stat() and lstat() for extra security.
3198 */
3199 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003200file_owned(char *fname)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003201{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003202 stat_T s;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003203# ifdef UNIX
3204 uid_t uid = getuid();
3205# else /* VMS */
3206 uid_t uid = ((getgid() << 16) | getuid());
3207# endif
3208
3209 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3210# ifdef HAVE_LSTAT
3211 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3212# endif
3213 );
3214}
3215#endif
3216
3217/*
3218 * Give an error message main_errors["n"] and exit.
3219 */
3220 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003221mainerr(
3222 int n, /* one of the ME_ defines */
3223 char_u *str) /* extra argument or NULL */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003224{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003225#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003226 reset_signals(); /* kill us with CTRL-C here, if you like */
3227#endif
3228
3229 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003230 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003231 mch_errmsg(_(main_errors[n]));
3232 if (str != NULL)
3233 {
3234 mch_errmsg(": \"");
3235 mch_errmsg((char *)str);
3236 mch_errmsg("\"");
3237 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003238 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003239
3240 mch_exit(1);
3241}
3242
3243 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003244mainerr_arg_missing(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003245{
3246 mainerr(ME_ARG_MISSING, str);
3247}
3248
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003249#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003250/*
3251 * print a message with three spaces prepended and '\n' appended.
3252 */
3253 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003254main_msg(char *s)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003255{
3256 mch_msg(" ");
3257 mch_msg(s);
3258 mch_msg("\n");
3259}
3260
3261/*
3262 * Print messages for "vim -h" or "vim --help" and exit.
3263 */
3264 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003265usage(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003266{
3267 int i;
3268 static char *(use[]) =
3269 {
3270 N_("[file ..] edit specified file(s)"),
3271 N_("- read text from stdin"),
3272 N_("-t tag edit file where tag is defined"),
3273#ifdef FEAT_QUICKFIX
3274 N_("-q [errorfile] edit file with first error")
3275#endif
3276 };
3277
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003278#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003279 reset_signals(); /* kill us with CTRL-C here, if you like */
3280#endif
3281
3282 mch_msg(longVersion);
3283 mch_msg(_("\n\nusage:"));
3284 for (i = 0; ; ++i)
3285 {
3286 mch_msg(_(" vim [arguments] "));
3287 mch_msg(_(use[i]));
3288 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3289 break;
3290 mch_msg(_("\n or:"));
3291 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003292#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003293 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003294#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003295
3296 mch_msg(_("\n\nArguments:\n"));
3297 main_msg(_("--\t\t\tOnly file names after this"));
Bram Moolenaar53076832015-12-31 19:53:21 +01003298#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003299 main_msg(_("--literal\t\tDon't expand wildcards"));
3300#endif
3301#ifdef FEAT_OLE
3302 main_msg(_("-register\t\tRegister this gvim for OLE"));
3303 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3304#endif
3305#ifdef FEAT_GUI
3306 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3307 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3308#endif
3309 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3310 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003311 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003312 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3313#ifdef FEAT_DIFF
3314 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3315#endif
3316 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3317 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3318 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3319 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3320 main_msg(_("-M\t\t\tModifications in text not allowed"));
3321 main_msg(_("-b\t\t\tBinary mode"));
3322#ifdef FEAT_LISP
3323 main_msg(_("-l\t\t\tLisp mode"));
3324#endif
3325 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3326 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003327 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3328#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003329 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003330#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003331 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3332 main_msg(_("-r\t\t\tList swap files and exit"));
3333 main_msg(_("-r (with file name)\tRecover crashed session"));
3334 main_msg(_("-L\t\t\tSame as -r"));
3335#ifdef AMIGA
3336 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3337 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3338#endif
3339#ifdef FEAT_ARABIC
3340 main_msg(_("-A\t\t\tstart in Arabic mode"));
3341#endif
3342#ifdef FEAT_RIGHTLEFT
3343 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3344#endif
3345#ifdef FEAT_FKMAP
3346 main_msg(_("-F\t\t\tStart in Farsi mode"));
3347#endif
3348 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01003349 main_msg(_("--not-a-term\t\tSkip warning for input/output not being a terminal"));
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01003350 main_msg(_("--ttyfail\t\tExit if input or output is not a terminal"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003351 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3352#ifdef FEAT_GUI
3353 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3354#endif
3355 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003356 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003357 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3358 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3359 main_msg(_("+\t\t\tStart at end of file"));
3360 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003361 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003362 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3363 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3364 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3365 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3366 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3367#ifdef FEAT_CRYPT
3368 main_msg(_("-x\t\t\tEdit encrypted files"));
3369#endif
3370#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3371# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3372 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3373# endif
3374 main_msg(_("-X\t\t\tDo not connect to X server"));
3375#endif
3376#ifdef FEAT_CLIENTSERVER
3377 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3378 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3379 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3380 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003381 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003382 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3383 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3384 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3385 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3386#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003387#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003388 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003389#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003390#ifdef FEAT_VIMINFO
3391 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3392#endif
Bram Moolenaarc4da1132017-07-15 19:39:43 +02003393 main_msg(_("--clean\t\t'nocompatible', Vim defaults, no plugins, no viminfo"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003394 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3395 main_msg(_("--version\t\tPrint version information and exit"));
3396
3397#ifdef FEAT_GUI_X11
3398# ifdef FEAT_GUI_MOTIF
3399 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3400# else
3401# ifdef FEAT_GUI_ATHENA
3402# ifdef FEAT_GUI_NEXTAW
3403 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3404# else
3405 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3406# endif
3407# endif
3408# endif
3409 main_msg(_("-display <display>\tRun vim on <display>"));
3410 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003411 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3412 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3413 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3414 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3415 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3416 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3417 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3418 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3419# ifdef FEAT_GUI_ATHENA
3420 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3421# endif
3422 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3423 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3424 main_msg(_("-xrm <resource>\tSet the specified resource"));
3425#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003426#ifdef FEAT_GUI_GTK
3427 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3428 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3429 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3430 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3431 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003432 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003433 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003434 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003435#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003436#ifdef FEAT_GUI_W32
3437 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003438 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003439#endif
3440
3441#ifdef FEAT_GUI_GNOME
3442 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3443 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003444 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003445 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003446 gui.dofork = FALSE;
3447 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003448 else
3449#endif
3450 mch_exit(0);
3451}
3452
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003453#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003454/*
3455 * Check the result of the ATTENTION dialog:
3456 * When "Quit" selected, exit Vim.
3457 * When "Recover" selected, recover the file.
3458 */
3459 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003460check_swap_exists_action(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003461{
3462 if (swap_exists_action == SEA_QUIT)
3463 getout(1);
3464 handle_swap_exists(NULL);
3465}
3466#endif
3467
Bram Moolenaar08cab962017-03-04 14:37:18 +01003468#endif /* NO_VIM_MAIN */
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003469
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003470#if defined(STARTUPTIME) || defined(PROTO)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003471static void time_diff(struct timeval *then, struct timeval *now);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003472
3473static struct timeval prev_timeval;
3474
Bram Moolenaar3f269672009-11-03 11:11:11 +00003475# ifdef WIN3264
3476/*
3477 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3478 */
3479 static int
3480gettimeofday(struct timeval *tv, char *dummy)
3481{
3482 long t = clock();
3483 tv->tv_sec = t / CLOCKS_PER_SEC;
3484 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3485 return 0;
3486}
3487# endif
3488
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003489/*
3490 * Save the previous time before doing something that could nest.
3491 * set "*tv_rel" to the time elapsed so far.
3492 */
3493 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003494time_push(void *tv_rel, void *tv_start)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003495{
3496 *((struct timeval *)tv_rel) = prev_timeval;
3497 gettimeofday(&prev_timeval, NULL);
3498 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3499 - ((struct timeval *)tv_rel)->tv_usec;
3500 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3501 - ((struct timeval *)tv_rel)->tv_sec;
3502 if (((struct timeval *)tv_rel)->tv_usec < 0)
3503 {
3504 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3505 --((struct timeval *)tv_rel)->tv_sec;
3506 }
3507 *(struct timeval *)tv_start = prev_timeval;
3508}
3509
3510/*
3511 * Compute the previous time after doing something that could nest.
3512 * Subtract "*tp" from prev_timeval;
3513 * Note: The arguments are (void *) to avoid trouble with systems that don't
3514 * have struct timeval.
3515 */
3516 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003517time_pop(
3518 void *tp) /* actually (struct timeval *) */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003519{
3520 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3521 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3522 if (prev_timeval.tv_usec < 0)
3523 {
3524 prev_timeval.tv_usec += 1000000;
3525 --prev_timeval.tv_sec;
3526 }
3527}
3528
3529 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003530time_diff(struct timeval *then, struct timeval *now)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003531{
3532 long usec;
3533 long msec;
3534
3535 usec = now->tv_usec - then->tv_usec;
3536 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3537 usec = usec % 1000L;
3538 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3539}
3540
3541 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003542time_msg(
3543 char *mesg,
3544 void *tv_start) /* only for do_source: start time; actually
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003545 (struct timeval *) */
3546{
3547 static struct timeval start;
3548 struct timeval now;
3549
3550 if (time_fd != NULL)
3551 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003552 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003553 {
3554 gettimeofday(&start, NULL);
3555 prev_timeval = start;
3556 fprintf(time_fd, "\n\ntimes in msec\n");
3557 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3558 fprintf(time_fd, " clock elapsed: other lines\n\n");
3559 }
3560 gettimeofday(&now, NULL);
3561 time_diff(&start, &now);
3562 if (((struct timeval *)tv_start) != NULL)
3563 {
3564 fprintf(time_fd, " ");
3565 time_diff(((struct timeval *)tv_start), &now);
3566 }
3567 fprintf(time_fd, " ");
3568 time_diff(&prev_timeval, &now);
3569 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003570 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003571 }
3572}
3573
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003574#endif
3575
Bram Moolenaar595297d2017-03-04 19:11:12 +01003576#if !defined(NO_VIM_MAIN) && defined(FEAT_EVAL)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003577 static void
3578set_progpath(char_u *argv0)
3579{
3580 char_u *val = argv0;
Bram Moolenaar08cab962017-03-04 14:37:18 +01003581
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003582# if defined(WIN32)
Bram Moolenaar08cab962017-03-04 14:37:18 +01003583 /* A relative path containing a "/" will become invalid when using ":cd",
3584 * turn it into a full path.
Bram Moolenaar066029e2017-03-05 15:19:32 +01003585 * On MS-Windows "vim" should be expanded to "vim.exe", thus always do
3586 * this. */
Bram Moolenaar066029e2017-03-05 15:19:32 +01003587 char_u *path = NULL;
3588
3589 if (mch_can_exe(argv0, &path, FALSE) && path != NULL)
3590 val = path;
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003591# else
3592 char_u buf[MAXPATHL + 1];
3593# ifdef PROC_EXE_LINK
3594 char linkbuf[MAXPATHL + 1];
3595 ssize_t len;
Bram Moolenaar066029e2017-03-05 15:19:32 +01003596
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003597 len = readlink(PROC_EXE_LINK, linkbuf, MAXPATHL);
3598 if (len > 0)
Bram Moolenaar43663192017-03-05 14:29:12 +01003599 {
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003600 linkbuf[len] = NUL;
3601 val = (char_u *)linkbuf;
Bram Moolenaar43663192017-03-05 14:29:12 +01003602 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003603# endif
Bram Moolenaarbc906e42017-08-17 17:21:05 +02003604
3605 if (!mch_isFullName(val))
3606 {
3607 if (gettail(val) != val
3608 && vim_FullName(val, buf, MAXPATHL, TRUE) != FAIL)
3609 val = buf;
3610 }
Bram Moolenaar066029e2017-03-05 15:19:32 +01003611# endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003612
Bram Moolenaar08cab962017-03-04 14:37:18 +01003613 set_vim_var_string(VV_PROGPATH, val, -1);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003614
Bram Moolenaar066029e2017-03-05 15:19:32 +01003615# ifdef WIN32
Bram Moolenaar43663192017-03-05 14:29:12 +01003616 vim_free(path);
Bram Moolenaar066029e2017-03-05 15:19:32 +01003617# endif
Bram Moolenaar08cab962017-03-04 14:37:18 +01003618}
3619
3620#endif /* NO_VIM_MAIN */
3621
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003622#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003623
3624/*
3625 * Common code for the X command server and the Win32 command server.
3626 */
3627
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003628static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003629
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003630/*
3631 * Do the client-server stuff, unless "--servername ''" was used.
3632 */
3633 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003634exec_on_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003635{
3636 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3637 {
3638# ifdef WIN32
3639 /* Initialise the client/server messaging infrastructure. */
3640 serverInitMessaging();
3641# endif
3642
3643 /*
3644 * When a command server argument was found, execute it. This may
3645 * exit Vim when it was successful. Otherwise it's executed further
3646 * on. Remember the encoding used here in "serverStrEnc".
3647 */
3648 if (parmp->serverArg)
3649 {
3650 cmdsrv_main(&parmp->argc, parmp->argv,
3651 parmp->serverName_arg, &parmp->serverStr);
3652# ifdef FEAT_MBYTE
3653 parmp->serverStrEnc = vim_strsave(p_enc);
3654# endif
3655 }
3656
3657 /* If we're still running, get the name to register ourselves.
3658 * On Win32 can register right now, for X11 need to setup the
3659 * clipboard first, it's further down. */
3660 parmp->servername = serverMakeName(parmp->serverName_arg,
3661 parmp->argv[0]);
3662# ifdef WIN32
3663 if (parmp->servername != NULL)
3664 {
3665 serverSetName(parmp->servername);
3666 vim_free(parmp->servername);
3667 }
3668# endif
3669 }
3670}
3671
3672/*
3673 * Prepare for running as a Vim server.
3674 */
3675 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003676prepare_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003677{
3678# if defined(FEAT_X11)
3679 /*
3680 * Register for remote command execution with :serversend and --remote
3681 * unless there was a -X or a --servername '' on the command line.
3682 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003683 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003684 */
3685 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3686# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003687 (gui.in_use
3688# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003689 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003690# endif
3691 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003692# endif
3693 parmp->serverName_arg != NULL))
3694 {
3695 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3696 vim_free(parmp->servername);
3697 TIME_MSG("register server name");
3698 }
3699 else
3700 serverDelayedStartName = parmp->servername;
3701# endif
3702
3703 /*
3704 * Execute command ourselves if we're here because the send failed (or
3705 * else we would have exited above).
3706 */
3707 if (parmp->serverStr != NULL)
3708 {
3709 char_u *p;
3710
3711 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3712 parmp->serverStr, &p));
3713 vim_free(p);
3714 }
3715}
3716
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003717 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003718cmdsrv_main(
3719 int *argc,
3720 char **argv,
3721 char_u *serverName_arg,
3722 char_u **serverStr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003723{
3724 char_u *res;
3725 int i;
3726 char_u *sname;
3727 int ret;
3728 int didone = FALSE;
3729 int exiterr = 0;
3730 char **newArgV = argv + 1;
3731 int newArgC = 1,
3732 Argc = *argc;
3733 int argtype;
3734#define ARGTYPE_OTHER 0
3735#define ARGTYPE_EDIT 1
3736#define ARGTYPE_EDIT_WAIT 2
3737#define ARGTYPE_SEND 3
3738 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003739 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003740# ifndef FEAT_X11
3741 HWND srv;
3742# else
3743 Window srv;
3744
3745 setup_term_clip();
3746# endif
3747
3748 sname = serverMakeName(serverName_arg, argv[0]);
3749 if (sname == NULL)
3750 return;
3751
3752 /*
3753 * Execute the command server related arguments and remove them
3754 * from the argc/argv array; We may have to return into main()
3755 */
3756 for (i = 1; i < Argc; i++)
3757 {
3758 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003759 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003760 {
3761 for (; i < *argc; i++)
3762 {
3763 *newArgV++ = argv[i];
3764 newArgC++;
3765 }
3766 break;
3767 }
3768
Bram Moolenaareb94e552006-03-11 21:35:11 +00003769 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003770 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003771 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3772 {
3773 char *p = argv[i] + 8;
3774
3775 argtype = ARGTYPE_EDIT;
3776 while (*p != NUL)
3777 {
3778 if (STRNICMP(p, "-wait", 5) == 0)
3779 {
3780 argtype = ARGTYPE_EDIT_WAIT;
3781 p += 5;
3782 }
3783 else if (STRNICMP(p, "-silent", 7) == 0)
3784 {
3785 silent = TRUE;
3786 p += 7;
3787 }
3788 else if (STRNICMP(p, "-tab", 4) == 0)
3789 {
3790 tabs = TRUE;
3791 p += 4;
3792 }
3793 else
3794 {
3795 argtype = ARGTYPE_OTHER;
3796 break;
3797 }
3798 }
3799 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003800 else
3801 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003802
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003803 if (argtype != ARGTYPE_OTHER)
3804 {
3805 if (i == *argc - 1)
3806 mainerr_arg_missing((char_u *)argv[i]);
3807 if (argtype == ARGTYPE_SEND)
3808 {
3809 *serverStr = (char_u *)argv[i + 1];
3810 i++;
3811 }
3812 else
3813 {
3814 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003815 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003816 if (*serverStr == NULL)
3817 {
3818 /* Probably out of memory, exit. */
3819 didone = TRUE;
3820 exiterr = 1;
3821 break;
3822 }
3823 Argc = i;
3824 }
3825# ifdef FEAT_X11
3826 if (xterm_dpy == NULL)
3827 {
3828 mch_errmsg(_("No display"));
3829 ret = -1;
3830 }
3831 else
3832 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003833 NULL, &srv, 0, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003834# else
3835 /* Win32 always works? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003836 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, 0, silent);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003837# endif
3838 if (ret < 0)
3839 {
3840 if (argtype == ARGTYPE_SEND)
3841 {
3842 /* Failed to send, abort. */
3843 mch_errmsg(_(": Send failed.\n"));
3844 didone = TRUE;
3845 exiterr = 1;
3846 }
3847 else if (!silent)
3848 /* Let vim start normally. */
3849 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3850 break;
3851 }
3852
3853# ifdef FEAT_GUI_W32
3854 /* Guess that when the server name starts with "g" it's a GUI
3855 * server, which we can bring to the foreground here.
3856 * Foreground() in the server doesn't work very well. */
3857 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3858 SetForegroundWindow(srv);
3859# endif
3860
3861 /*
3862 * For --remote-wait: Wait until the server did edit each
3863 * file. Also detect that the server no longer runs.
3864 */
3865 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3866 {
3867 int numFiles = *argc - i - 1;
3868 int j;
3869 char_u *done = alloc(numFiles);
3870 char_u *p;
3871# ifdef FEAT_GUI_W32
3872 NOTIFYICONDATA ni;
3873 int count = 0;
3874 extern HWND message_window;
3875# endif
3876
3877 if (numFiles > 0 && argv[i + 1][0] == '+')
3878 /* Skip "+cmd" argument, don't wait for it to be edited. */
3879 --numFiles;
3880
3881# ifdef FEAT_GUI_W32
3882 ni.cbSize = sizeof(ni);
3883 ni.hWnd = message_window;
3884 ni.uID = 0;
3885 ni.uFlags = NIF_ICON|NIF_TIP;
3886 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3887 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3888 Shell_NotifyIcon(NIM_ADD, &ni);
3889# endif
3890
3891 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003892 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003893 while (memchr(done, 0, numFiles) != NULL)
3894 {
3895# ifdef WIN32
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003896 p = serverGetReply(srv, NULL, TRUE, TRUE, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003897 if (p == NULL)
3898 break;
3899# else
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003900 if (serverReadReply(xterm_dpy, srv, &p, TRUE, -1) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003901 break;
3902# endif
3903 j = atoi((char *)p);
3904 if (j >= 0 && j < numFiles)
3905 {
3906# ifdef FEAT_GUI_W32
3907 ++count;
3908 sprintf(ni.szTip, _("%d of %d edited"),
3909 count, numFiles);
3910 Shell_NotifyIcon(NIM_MODIFY, &ni);
3911# endif
3912 done[j] = 1;
3913 }
3914 }
3915# ifdef FEAT_GUI_W32
3916 Shell_NotifyIcon(NIM_DELETE, &ni);
3917# endif
3918 }
3919 }
3920 else if (STRICMP(argv[i], "--remote-expr") == 0)
3921 {
3922 if (i == *argc - 1)
3923 mainerr_arg_missing((char_u *)argv[i]);
3924# ifdef WIN32
3925 /* Win32 always works? */
3926 if (serverSendToVim(sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003927 &res, NULL, 1, 0, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003928# else
3929 if (xterm_dpy == NULL)
3930 mch_errmsg(_("No display: Send expression failed.\n"));
3931 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01003932 &res, NULL, 1, 0, 1, FALSE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003933# endif
3934 {
3935 if (res != NULL && *res != NUL)
3936 {
3937 /* Output error from remote */
3938 mch_errmsg((char *)res);
3939 vim_free(res);
3940 res = NULL;
3941 }
3942 mch_errmsg(_(": Send expression failed.\n"));
3943 }
3944 }
3945 else if (STRICMP(argv[i], "--serverlist") == 0)
3946 {
3947# ifdef WIN32
3948 /* Win32 always works? */
3949 res = serverGetVimNames();
3950# else
3951 if (xterm_dpy != NULL)
3952 res = serverGetVimNames(xterm_dpy);
3953# endif
3954 if (called_emsg)
3955 mch_errmsg("\n");
3956 }
3957 else if (STRICMP(argv[i], "--servername") == 0)
3958 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003959 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003960 i++;
3961 continue;
3962 }
3963 else
3964 {
3965 *newArgV++ = argv[i];
3966 newArgC++;
3967 continue;
3968 }
3969 didone = TRUE;
3970 if (res != NULL && *res != NUL)
3971 {
3972 mch_msg((char *)res);
3973 if (res[STRLEN(res) - 1] != '\n')
3974 mch_msg("\n");
3975 }
3976 vim_free(res);
3977 }
3978
3979 if (didone)
3980 {
3981 display_errors(); /* display any collected messages */
3982 exit(exiterr); /* Mission accomplished - get out */
3983 }
3984
3985 /* Return back into main() */
3986 *argc = newArgC;
3987 vim_free(sname);
3988}
3989
3990/*
3991 * Build a ":drop" command to send to a Vim server.
3992 */
3993 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003994build_drop_cmd(
3995 int filec,
3996 char **filev,
3997 int tabs, /* Use ":tab drop" instead of ":drop". */
3998 int sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003999{
4000 garray_T ga;
4001 int i;
4002 char_u *inicmd = NULL;
4003 char_u *p;
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004004 char_u *cdp;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004005 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004006
4007 if (filec > 0 && filev[0][0] == '+')
4008 {
4009 inicmd = (char_u *)filev[0] + 1;
4010 filev++;
4011 filec--;
4012 }
4013 /* Check if we have at least one argument. */
4014 if (filec <= 0)
4015 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004016
4017 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02004018 cwd = alloc(MAXPATHL);
4019 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004020 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02004021 if (mch_dirname(cwd, MAXPATHL) != OK)
4022 {
4023 vim_free(cwd);
4024 return NULL;
4025 }
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004026 cdp = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00004027#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004028 (char_u *)"", /* rem_backslash() will tell what chars to escape */
Bram Moolenaar02b06312007-09-06 15:39:22 +00004029#else
4030 PATH_ESC_CHARS,
4031#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02004032 '\\', TRUE);
4033 vim_free(cwd);
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004034 if (cdp == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004035 return NULL;
4036 ga_init2(&ga, 1, 100);
4037 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004038 ga_concat(&ga, cdp);
Bram Moolenaareb94e552006-03-11 21:35:11 +00004039
4040 /* Call inputsave() so that a prompt for an encryption key works. */
4041 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
4042 if (tabs)
4043 ga_concat(&ga, (char_u *)"tab ");
4044 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004045 for (i = 0; i < filec; i++)
4046 {
4047 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004048 * do it again in the Vim server. On MS-Windows only escape
4049 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004050 p = vim_strsave_escaped((char_u *)filev[i],
4051#ifdef UNIX
4052 PATH_ESC_CHARS
4053#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004054 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004055#endif
4056 );
4057 if (p == NULL)
4058 {
4059 vim_free(ga.ga_data);
4060 return NULL;
4061 }
4062 ga_concat(&ga, (char_u *)" ");
4063 ga_concat(&ga, p);
4064 vim_free(p);
4065 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004066 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
4067
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004068 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
4069 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004070 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
4071
4072 /* Switch back to the correct current directory (prior to temporary path
4073 * switch) unless 'autochdir' is set, in which case it will already be
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004074 * correct after the :drop command. With line breaks and spaces:
4075 * if !exists('+acd') || !&acd
4076 * if haslocaldir()
4077 * cd -
4078 * lcd -
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004079 * elseif getcwd() ==# 'current path'
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004080 * cd -
4081 * endif
4082 * endif
4083 */
4084 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|");
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004085 ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004086 ga_concat(&ga, cdp);
Bram Moolenaarfafeee62015-07-03 13:33:01 +02004087 ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01004088 vim_free(cdp);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004089
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004090 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004091 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
4092 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004093 if (inicmd != NULL)
4094 {
4095 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
4096 * the following commands to be inserted as text. Use a "|",
4097 * hopefully "inicmd" does allow this... */
4098 ga_concat(&ga, inicmd);
4099 ga_concat(&ga, (char_u *)"|");
4100 }
4101 /* Bring the window to the foreground, goto Insert mode when 'im' set and
4102 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00004103 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004104 ga_append(&ga, NUL);
4105 return ga.ga_data;
4106}
4107
4108/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004109 * Make our basic server name: use the specified "arg" if given, otherwise use
4110 * the tail of the command "cmd" we were started with.
4111 * Return the name in allocated memory. This doesn't include a serial number.
4112 */
4113 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004114serverMakeName(char_u *arg, char *cmd)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004115{
4116 char_u *p;
4117
4118 if (arg != NULL && *arg != NUL)
4119 p = vim_strsave_up(arg);
4120 else
4121 {
4122 p = vim_strsave_up(gettail((char_u *)cmd));
4123 /* Remove .exe or .bat from the name. */
4124 if (p != NULL && vim_strchr(p, '.') != NULL)
4125 *vim_strchr(p, '.') = NUL;
4126 }
4127 return p;
4128}
4129#endif /* FEAT_CLIENTSERVER */
4130
4131#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4132/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004133 * Replace termcodes such as <CR> and insert as key presses if there is room.
4134 */
4135 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004136server_to_input_buf(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004137{
4138 char_u *ptr = NULL;
4139 char_u *cpo_save = p_cpo;
4140
4141 /* Set 'cpoptions' the way we want it.
4142 * B set - backslashes are *not* treated specially
4143 * k set - keycodes are *not* reverse-engineered
4144 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004145 * The last but one parameter of replace_termcodes() is TRUE so that the
4146 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004147 */
4148 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004149 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004150 p_cpo = cpo_save;
4151
4152 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4153 {
4154 /*
4155 * Add the string to the input stream.
4156 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4157 *
4158 * First clear typed characters from the typeahead buffer, there could
4159 * be half a mapping there. Then append to the existing string, so
4160 * that multiple commands from a client are concatenated.
4161 */
4162 if (typebuf.tb_maplen < typebuf.tb_len)
4163 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4164 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4165
4166 /* Let input_available() know we inserted text in the typeahead
4167 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004168 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004169 }
4170 vim_free((char_u *)ptr);
4171}
4172
4173/*
4174 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004175 */
4176 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004177eval_client_expr_to_string(char_u *expr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004178{
4179 char_u *res;
4180 int save_dbl = debug_break_level;
4181 int save_ro = redir_off;
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004182 void *fc;
4183
4184 /* Evaluate the expression at the toplevel, don't use variables local to
4185 * the calling function. */
4186 fc = clear_current_funccal();
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004187
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004188 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4189 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004190 debug_break_level = -1;
4191 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004192 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4193 * to be typed. Do generate errors so that try/catch works. */
4194 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004195
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004196 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004197
4198 debug_break_level = save_dbl;
4199 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004200 --emsg_silent;
4201 if (emsg_silent < 0)
4202 emsg_silent = 0;
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004203 restore_current_funccal(fc);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004204
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004205 /* A client can tell us to redraw, but not to display the cursor, so do
4206 * that here. */
4207 setcursor();
4208 out_flush();
4209#ifdef FEAT_GUI
4210 if (gui.in_use)
4211 gui_update_cursor(FALSE, FALSE);
4212#endif
4213
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004214 return res;
4215}
4216
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004217/*
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004218 * Evaluate a command or expression sent to ourselves.
4219 */
4220 int
4221sendToLocalVim(char_u *cmd, int asExpr, char_u **result)
4222{
4223 if (asExpr)
4224 {
4225 char_u *ret;
4226
4227 ret = eval_client_expr_to_string(cmd);
4228 if (result != NULL)
4229 {
4230 if (ret == NULL)
4231 {
4232 char *err = _(e_invexprmsg);
4233 size_t len = STRLEN(cmd) + STRLEN(err) + 5;
4234 char_u *msg;
4235
Bram Moolenaar1662ce12017-03-19 21:47:50 +01004236 msg = alloc((unsigned)len);
Bram Moolenaar7a43cb92017-03-18 18:15:16 +01004237 if (msg != NULL)
4238 vim_snprintf((char *)msg, len, "%s: \"%s\"", err, cmd);
4239 *result = msg;
4240 }
4241 else
4242 *result = ret;
4243 }
4244 else
4245 vim_free(ret);
4246 return ret == NULL ? -1 : 0;
4247 }
4248 server_to_input_buf(cmd);
4249 return 0;
4250}
4251
4252/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004253 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4254 * return an allocated string. Otherwise return "data".
4255 * "*tofree" is set to the result when it needs to be freed later.
4256 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004257 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004258serverConvert(
4259 char_u *client_enc UNUSED,
4260 char_u *data,
4261 char_u **tofree)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004262{
4263 char_u *res = data;
4264
4265 *tofree = NULL;
4266# ifdef FEAT_MBYTE
4267 if (client_enc != NULL && p_enc != NULL)
4268 {
4269 vimconv_T vimconv;
4270
4271 vimconv.vc_type = CONV_NONE;
4272 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4273 && vimconv.vc_type != CONV_NONE)
4274 {
4275 res = string_convert(&vimconv, data, NULL);
4276 if (res == NULL)
4277 res = data;
4278 else
4279 *tofree = res;
4280 }
4281 convert_setup(&vimconv, NULL, NULL);
4282 }
4283# endif
4284 return res;
4285}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004286#endif