blob: 0ed94ae907bd1ebe3fcdf28f68fd25835d3bc1bb [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 Moolenaarb05b10a2011-03-22 18:10:45 +010050# ifdef FEAT_WINDOWS
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010051static void edit_buffers(mparm_T *parmp, char_u *cwd);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010052# endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010053static void exe_pre_commands(mparm_T *parmp);
54static void exe_commands(mparm_T *parmp);
55static void source_startup_scripts(mparm_T *parmp);
56static void main_start_gui(void);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010057# if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010058static void check_swap_exists_action(void);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010059# endif
60# if defined(FEAT_CLIENTSERVER) || defined(PROTO)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010061static void exec_on_server(mparm_T *parmp);
62static void prepare_server(mparm_T *parmp);
63static void cmdsrv_main(int *argc, char **argv, char_u *serverName_arg, char_u **serverStr);
64static char_u *serverMakeName(char_u *arg, char *cmd);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010065# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +000066#endif
67
68
Bram Moolenaarb4210b32004-06-13 14:51:16 +000069/*
70 * Different types of error messages.
71 */
72static char *(main_errors[]) =
73{
Bram Moolenaarc013cb62005-07-24 21:18:31 +000074 N_("Unknown option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +000075#define ME_UNKNOWN_OPTION 0
76 N_("Too many edit arguments"),
77#define ME_TOO_MANY_ARGS 1
78 N_("Argument missing after"),
79#define ME_ARG_MISSING 2
Bram Moolenaarc013cb62005-07-24 21:18:31 +000080 N_("Garbage after option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +000081#define ME_GARBAGE 3
82 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
83#define ME_EXTRA_CMD 4
84 N_("Invalid argument for"),
85#define ME_INVALID_ARG 5
86};
87
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010088#ifndef PROTO /* don't want a prototype for main() */
Bram Moolenaar8866d272012-11-28 15:55:42 +010089#ifndef NO_VIM_MAIN /* skip this for unittests */
Bram Moolenaarf9bde2b2015-04-17 22:08:16 +020090
91static char_u *start_dir = NULL; /* current working dir on startup */
92
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +020093static int has_dash_c_arg = FALSE;
94
Bram Moolenaara8e691d2016-08-07 15:19:26 +020095/* Various parameters passed between main() and other functions. */
96static mparm_T params;
97
Bram Moolenaarb4210b32004-06-13 14:51:16 +000098 int
99# ifdef VIMDLL
100_export
101# endif
102# ifdef FEAT_GUI_MSWIN
103# ifdef __BORLANDC__
104_cdecl
105# endif
106VimMain
107# else
108main
109# endif
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100110(int argc, char **argv)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000111{
Bram Moolenaar3f269672009-11-03 11:11:11 +0000112#ifdef STARTUPTIME
113 int i;
114#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000115
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000116 /*
117 * Do any system-specific initialisations. These can NOT use IObuff or
118 * NameBuff. Thus emsg2() cannot be called!
119 */
120 mch_early_init();
121
Bram Moolenaar14993322014-09-09 12:25:33 +0200122#if defined(WIN32) && defined(FEAT_MBYTE)
123 /*
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200124 * MinGW expands command line arguments, which confuses our code to
Bram Moolenaar14993322014-09-09 12:25:33 +0200125 * convert when 'encoding' changes. Get the unexpanded arguments.
126 */
127 argc = get_cmd_argsW(&argv);
128#endif
129
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000130 /* Many variables are in "params" so that we can pass them to invoked
131 * functions without a lot of arguments. "argc" and "argv" are also
132 * copied, so that they can be changed. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000133 vim_memset(&params, 0, sizeof(params));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000134 params.argc = argc;
135 params.argv = argv;
136 params.want_full_screen = TRUE;
137#ifdef FEAT_EVAL
138 params.use_debug_break_level = -1;
139#endif
140#ifdef FEAT_WINDOWS
141 params.window_count = -1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000142#endif
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. */
432 if (params.use_vimrc != NULL && STRCMP(params.use_vimrc, "NONE") == 0)
433 p_lpl = FALSE;
434
Bram Moolenaar58d98232005-07-23 22:25:46 +0000435 /* Execute --cmd arguments. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000436 exe_pre_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000437
Bram Moolenaar58d98232005-07-23 22:25:46 +0000438 /* Source startup scripts. */
439 source_startup_scripts(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000440
441#ifdef FEAT_EVAL
442 /*
443 * Read all the plugin files.
444 * Only when compiled with +eval, since most plugins need it.
445 */
446 if (p_lpl)
447 {
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000448# ifdef VMS /* Somehow VMS doesn't handle the "**". */
Bram Moolenaar66459b72016-08-06 19:01:55 +0200449 source_runtime((char_u *)"plugin/*.vim", DIP_ALL | DIP_NOAFTER);
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000450# else
Bram Moolenaar66459b72016-08-06 19:01:55 +0200451 source_runtime((char_u *)"plugin/**/*.vim", DIP_ALL | DIP_NOAFTER);
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000452# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000453 TIME_MSG("loading plugins");
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100454
Bram Moolenaar2d8f56a2016-03-12 20:34:27 +0100455 ex_packloadall(NULL);
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100456 TIME_MSG("loading packages");
Bram Moolenaar66459b72016-08-06 19:01:55 +0200457
458# ifdef VMS /* Somehow VMS doesn't handle the "**". */
459 source_runtime((char_u *)"plugin/*.vim", DIP_ALL | DIP_AFTER);
460# else
461 source_runtime((char_u *)"plugin/**/*.vim", DIP_ALL | DIP_AFTER);
462# endif
463 TIME_MSG("loading after plugins");
464
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000465 }
466#endif
467
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000468#ifdef FEAT_DIFF
469 /* Decide about window layout for diff mode after reading vimrc. */
470 if (params.diff_mode && params.window_layout == 0)
471 {
472 if (diffopt_horizontal())
473 params.window_layout = WIN_HOR; /* use horizontal split */
474 else
475 params.window_layout = WIN_VER; /* use vertical split */
476 }
477#endif
478
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000479 /*
480 * Recovery mode without a file name: List swap files.
481 * This uses the 'dir' option, therefore it must be after the
482 * initializations.
483 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200484 if (recoverymode && params.fname == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000485 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200486 recover_names(NULL, TRUE, 0, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000487 mch_exit(0);
488 }
489
490 /*
491 * Set a few option defaults after reading .vimrc files:
492 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
493 */
494 set_init_3();
495 TIME_MSG("inits 3");
496
497 /*
498 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
499 * Note that this overrides anything from a vimrc file.
500 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000501 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000502 p_uc = 0;
503
504#ifdef FEAT_FKMAP
505 if (curwin->w_p_rl && p_altkeymap)
506 {
507 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
508# ifdef FEAT_ARABIC
509 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
510# endif
511 p_fkmap = TRUE; /* Set the Farsi keymap mode */
512 }
513#endif
514
515#ifdef FEAT_GUI
516 if (gui.starting)
517 {
518#if defined(UNIX) || defined(VMS)
519 /* When something caused a message from a vimrc script, need to output
520 * an extra newline before the shell prompt. */
521 if (did_emsg || msg_didout)
522 putchar('\n');
523#endif
524
525 gui_start(); /* will set full_screen to TRUE */
526 TIME_MSG("starting GUI");
527
528 /* When running "evim" or "gvim -y" we need the menus, exit if we
529 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000530 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000531 mch_exit(1);
532 }
533#endif
534
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000535#ifdef FEAT_VIMINFO
536 /*
Bram Moolenaard812df62008-11-09 12:46:09 +0000537 * Read in registers, history etc, but not marks, from the viminfo file.
538 * This is where v:oldfiles gets filled.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000539 */
540 if (*p_viminfo != NUL)
541 {
Bram Moolenaard812df62008-11-09 12:46:09 +0000542 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000543 TIME_MSG("reading viminfo");
544 }
545#endif
Bram Moolenaar2cd36962014-01-14 12:57:05 +0100546#ifdef FEAT_EVAL
547 /* It's better to make v:oldfiles an empty list than NULL. */
548 if (get_vim_var_list(VV_OLDFILES) == NULL)
549 set_vim_var_list(VV_OLDFILES, list_alloc());
550#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000551
552#ifdef FEAT_QUICKFIX
553 /*
554 * "-q errorfile": Load the error file now.
555 * If the error file can't be read, exit before doing anything else.
556 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000557 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000558 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000559 if (params.use_ef != NULL)
560 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000561 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200562 vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef);
563 if (qf_init(NULL, p_ef, p_efm, TRUE, IObuff) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000564 {
565 out_char('\n');
566 mch_exit(3);
567 }
568 TIME_MSG("reading errorfile");
569 }
570#endif
571
572 /*
573 * Start putting things on the screen.
574 * Scroll screen down before drawing over it
575 * Clear screen now, so file message will not be cleared.
576 */
577 starting = NO_BUFFERS;
578 no_wait_return = FALSE;
579 if (!exmode_active)
580 msg_scroll = FALSE;
581
582#ifdef FEAT_GUI
583 /*
584 * This seems to be required to make callbacks to be called now, instead
585 * of after things have been put on the screen, which then may be deleted
586 * when getting a resize callback.
587 * For the Mac this handles putting files dropped on the Vim icon to
588 * global_alist.
589 */
590 if (gui.in_use)
591 {
592# ifdef FEAT_SUN_WORKSHOP
593 if (!usingSunWorkShop)
594# endif
595 gui_wait_for_chars(50L);
596 TIME_MSG("GUI delay");
597 }
598#endif
599
600#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
601 qnx_clip_init();
602#endif
603
Bram Moolenaarc8bbaa32010-07-14 16:54:21 +0200604#if defined(MACOS_X) && defined(FEAT_CLIPBOARD)
605 clip_init(TRUE);
606#endif
607
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000608#ifdef FEAT_XCLIPBOARD
609 /* Start using the X clipboard, unless the GUI was started. */
610# ifdef FEAT_GUI
611 if (!gui.in_use)
612# endif
613 {
614 setup_term_clip();
615 TIME_MSG("setup clipboard");
616 }
617#endif
618
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000619#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000620 /* Prepare for being a Vim server. */
621 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000622#endif
623
624 /*
625 * If "-" argument given: Read file from stdin.
626 * Do this before starting Raw mode, because it may change things that the
627 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
628 * are the same terminal: "cat | vim -".
629 * Using autocommands here may cause trouble...
630 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000631 if (params.edit_type == EDIT_STDIN && !recoverymode)
632 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000633
634#if defined(UNIX) || defined(VMS)
635 /* When switching screens and something caused a message from a vimrc
636 * script, need to output an extra newline on exit. */
637 if ((did_emsg || msg_didout) && *T_TI != NUL)
638 newline_on_exit = TRUE;
639#endif
640
641 /*
642 * When done something that is not allowed or error message call
643 * wait_return. This must be done before starttermcap(), because it may
644 * switch to another screen. It must be done after settmode(TMODE_RAW),
645 * because we want to react on a single key stroke.
646 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000647 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000648 */
649 settmode(TMODE_RAW);
650 TIME_MSG("setting raw mode");
651
652 if (need_wait_return || msg_didany)
653 {
654 wait_return(TRUE);
655 TIME_MSG("waiting for return");
656 }
657
658 starttermcap(); /* start termcap if not done by wait_return() */
659 TIME_MSG("start termcap");
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200660#if defined(FEAT_TERMRESPONSE)
661# if defined(FEAT_MBYTE)
Bram Moolenaar386dcde2013-09-29 16:27:47 +0200662 may_req_ambiguous_char_width();
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200663# endif
664 may_req_bg_color();
Bram Moolenaar9584b312013-03-13 19:29:28 +0100665#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000666
667#ifdef FEAT_MOUSE
668 setmouse(); /* may start using the mouse */
669#endif
670 if (scroll_region)
671 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000672 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000673
674 /*
675 * Don't clear the screen when starting in Ex mode, unless using the GUI.
676 */
677 if (exmode_active
678#ifdef FEAT_GUI
679 && !gui.in_use
680#endif
681 )
682 must_redraw = CLEAR;
683 else
684 {
685 screenclear(); /* clear screen */
686 TIME_MSG("clearing screen");
687 }
688
689#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000690 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000691 {
Bram Moolenaar3a0c9082014-11-12 15:15:42 +0100692 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200693 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000694 TIME_MSG("getting crypt key");
695 }
696#endif
697
698 no_wait_return = TRUE;
699
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000700 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000701 * Create the requested number of windows and edit buffers in them.
702 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000703 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000704 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000705 TIME_MSG("opening buffers");
706
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000707#ifdef FEAT_EVAL
708 /* clear v:swapcommand */
709 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
710#endif
711
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000712 /* Ex starts at last line of the file */
713 if (exmode_active)
714 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
715
716#ifdef FEAT_AUTOCMD
717 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
718 TIME_MSG("BufEnter autocommands");
719#endif
720 setpcmark();
721
722#ifdef FEAT_QUICKFIX
723 /*
724 * When started with "-q errorfile" jump to first error now.
725 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000726 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000727 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000728 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000729 TIME_MSG("jump to first error");
730 }
731#endif
732
733#ifdef FEAT_WINDOWS
734 /*
735 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000736 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000737 */
Bram Moolenaarf6303872015-04-03 17:59:43 +0200738 edit_buffers(&params, start_dir);
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000739#endif
Bram Moolenaarf6303872015-04-03 17:59:43 +0200740 vim_free(start_dir);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000741
742#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000743 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000744 {
745 win_T *wp;
746
747 /* set options in each window for "vimdiff". */
Bram Moolenaar29323592016-07-24 22:04:11 +0200748 FOR_ALL_WINDOWS(wp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000749 diff_win_options(wp, TRUE);
750 }
751#endif
752
753 /*
754 * Shorten any of the filenames, but only when absolute.
755 */
756 shorten_fnames(FALSE);
757
758 /*
759 * Need to jump to the tag before executing the '-c command'.
760 * Makes "vim -c '/return' -t main" work.
761 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000762 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000763 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000764#if defined(HAS_SWAP_EXISTS_ACTION)
765 swap_exists_did_quit = FALSE;
766#endif
767
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000768 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000769 do_cmdline_cmd(IObuff);
770 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000771
772#if defined(HAS_SWAP_EXISTS_ACTION)
773 /* If the user doesn't want to edit the file then we quit here. */
774 if (swap_exists_did_quit)
775 getout(1);
776#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000777 }
778
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000779 /* Execute any "+", "-c" and "-S" arguments. */
780 if (params.n_commands > 0)
781 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000782
783 RedrawingDisabled = 0;
784 redraw_all_later(NOT_VALID);
785 no_wait_return = FALSE;
786 starting = 0;
787
Bram Moolenaarbaec5c12016-04-06 23:06:23 +0200788 /* 'autochdir' has been postponed */
789 DO_AUTOCHDIR
790
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000791#ifdef FEAT_TERMRESPONSE
792 /* Requesting the termresponse is postponed until here, so that a "-c q"
793 * argument doesn't make it appear in the shell Vim was started from. */
794 may_req_termresponse();
795#endif
796
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000797 /* start in insert mode */
798 if (p_im)
799 need_start_insertmode = TRUE;
800
Bram Moolenaar14735512016-03-26 21:00:08 +0100801#ifdef FEAT_EVAL
802 set_vim_var_nr(VV_VIM_DID_ENTER, 1L);
803#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000804#ifdef FEAT_AUTOCMD
805 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
806 TIME_MSG("VimEnter autocommands");
807#endif
808
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200809#if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD)
810 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be
811 * done after the clipboard is available and all initial commands that may
812 * modify the 'clipboard' setting have run; i.e. just before entering the
813 * main loop. */
814 {
815 int default_regname = 0;
Bram Moolenaar53076832015-12-31 19:53:21 +0100816
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200817 adjust_clip_reg(&default_regname);
818 set_reg_var(default_regname);
819 }
820#endif
821
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000822#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
823 /* When a startup script or session file setup for diff'ing and
824 * scrollbind, sync the scrollbind now. */
825 if (curwin->w_p_diff && curwin->w_p_scb)
826 {
827 update_topline();
828 check_scrollbind((linenr_T)0, 0L);
829 TIME_MSG("diff scrollbinding");
830 }
831#endif
832
833#if defined(WIN3264) && !defined(FEAT_GUI_W32)
834 mch_set_winsize_now(); /* Allow winsize changes from now on */
835#endif
836
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000837#if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
838 /* When tab pages were created, may need to update the tab pages line and
839 * scrollbars. This is skipped while creating them. */
840 if (first_tabpage->tp_next != NULL)
841 {
842 out_flush();
843 gui_init_which_components(NULL);
844 gui_update_scrollbars(TRUE);
845 }
846 need_mouse_correct = TRUE;
847#endif
848
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000849 /* If ":startinsert" command used, stuff a dummy command to be able to
850 * call normal_cmd(), which will then start Insert mode. */
851 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000852 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000853
854#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200855 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +0200856 {
857# ifdef FEAT_GUI
Bram Moolenaar173c9852010-09-29 17:27:01 +0200858# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar67c53842010-05-22 18:28:27 +0200859 && !defined(FEAT_GUI_W32)
860 if (gui.in_use)
861 {
862 mch_errmsg(_("netbeans is not supported with this GUI\n"));
863 mch_exit(2);
864 }
865# endif
866# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000867 /* Tell the client that it can start sending commands. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200868 netbeans_open(netbeansArg + 3, TRUE);
Bram Moolenaar67c53842010-05-22 18:28:27 +0200869 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000870#endif
871
872 TIME_MSG("before starting main loop");
873
874 /*
875 * Call the main command loop. This never returns.
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100876 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000877 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000878
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200879#endif /* NO_VIM_MAIN */
880
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000881 return 0;
882}
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000883
884/*
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200885 * Initialisation shared by main() and some tests.
886 */
887 void
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200888common_init(mparm_T *paramp)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200889{
890
891#ifdef FEAT_MBYTE
892 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
893#endif
894#ifdef FEAT_EVAL
895 eval_init(); /* init global variables */
896#endif
897
898#ifdef __QNXNTO__
899 qnx_init(); /* PhAttach() for clipboard, (and gui) */
900#endif
901
902#ifdef MAC_OS_CLASSIC
903 /* Prepare for possibly starting GUI sometime */
904 /* Macintosh needs this before any memory is allocated. */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200905 gui_prepare(&paramp->argc, paramp->argv);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200906 TIME_MSG("GUI prepared");
907#endif
908
909 /* Init the table of Normal mode commands. */
910 init_normal_cmds();
911
912#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
913 make_version(); /* Construct the long version string. */
914#endif
915
916 /*
917 * Allocate space for the generic buffers (needed for set_init_1() and
918 * EMSG2()).
919 */
920 if ((IObuff = alloc(IOSIZE)) == NULL
921 || (NameBuff = alloc(MAXPATHL)) == NULL)
922 mch_exit(0);
923 TIME_MSG("Allocated generic buffers");
924
925#ifdef NBDEBUG
926 /* Wait a moment for debugging NetBeans. Must be after allocating
927 * NameBuff. */
928 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
929 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
930 TIME_MSG("NetBeans debug wait");
931#endif
932
933#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
934 /*
935 * Setup to use the current locale (for ctype() and many other things).
936 * NOTE: Translated messages with encodings other than latin1 will not
937 * work until set_init_1() has been called!
938 */
939 init_locale();
940 TIME_MSG("locale set");
941#endif
942
943#ifdef FEAT_GUI
944 gui.dofork = TRUE; /* default is to use fork() */
945#endif
946
947 /*
948 * Do a first scan of the arguments in "argv[]":
949 * -display or --display
950 * --server...
951 * --socketid
952 * --windowid
953 */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200954 early_arg_scan(paramp);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200955
956#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200957 findYourself(paramp->argv[0]);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200958#endif
959#if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
960 /* Prepare for possibly starting GUI sometime */
Bram Moolenaara8e691d2016-08-07 15:19:26 +0200961 gui_prepare(&paramp->argc, paramp->argv);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200962 TIME_MSG("GUI prepared");
963#endif
964
965#ifdef FEAT_CLIPBOARD
966 clip_init(FALSE); /* Initialise clipboard stuff */
967 TIME_MSG("clipboard setup");
968#endif
969
970 /*
971 * Check if we have an interactive window.
972 * On the Amiga: If there is no window, we open one with a newcli command
973 * (needed for :! to * work). mch_check_win() will also handle the -d or
974 * -dev argument.
975 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +0100976 stdout_isatty = (mch_check_win(paramp->argc, paramp->argv) != FAIL);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200977 TIME_MSG("window checked");
978
979 /*
980 * Allocate the first window and buffer.
981 * Can't do anything without it, exit when it fails.
982 */
983 if (win_alloc_first() == FAIL)
984 mch_exit(0);
985
986 init_yank(); /* init yank buffers */
987
988 alist_init(&global_alist); /* Init the argument list to empty. */
989 global_alist.id = 0;
990
991 /*
992 * Set the default values for the options.
993 * NOTE: Non-latin1 translated messages are working only after this,
994 * because this is where "has_mbyte" will be set, which is used by
995 * msg_outtrans_len_attr().
996 * First find out the home directory, needed to expand "~" in options.
997 */
998 init_homedir(); /* find real value of $HOME */
999 set_init_1();
1000 TIME_MSG("inits 1");
1001
1002#ifdef FEAT_EVAL
1003 set_lang_var(); /* set v:lang and v:ctype */
1004#endif
1005}
1006
1007/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001008 * Main loop: Execute Normal mode commands until exiting Vim.
1009 * Also used to handle commands in the command-line window, until the window
1010 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001011 * Also used to handle ":visual" command after ":global": execute Normal mode
1012 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001013 */
1014 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001015main_loop(
1016 int cmdwin, /* TRUE when working in the command-line window */
1017 int noexmode) /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001018{
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001019 oparg_T oa; /* operator arguments */
Bram Moolenaar8872ef12015-02-10 19:27:05 +01001020 volatile int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001021#ifdef FEAT_CONCEAL
Bram Moolenaar1db43b12015-07-12 16:21:23 +02001022 /* these are static to avoid a compiler warning */
1023 static linenr_T conceal_old_cursor_line = 0;
1024 static linenr_T conceal_new_cursor_line = 0;
1025 static int conceal_update_lines = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001026#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001027
1028#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1029 /* Setup to catch a terminating error from the X server. Just ignore
1030 * it, restore the state and continue. This might not always work
1031 * properly, but at least we don't exit unexpectedly when the X server
Bram Moolenaar2cd36962014-01-14 12:57:05 +01001032 * exits while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001033 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001034 {
1035 State = NORMAL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001036 VIsual_active = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001037 got_int = TRUE;
1038 need_wait_return = FALSE;
1039 global_busy = FALSE;
1040 exmode_active = 0;
1041 skip_redraw = FALSE;
1042 RedrawingDisabled = 0;
1043 no_wait_return = 0;
Bram Moolenaar7701c242011-10-04 16:43:53 +02001044 vgetc_busy = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001045# ifdef FEAT_EVAL
1046 emsg_skip = 0;
1047# endif
1048 emsg_off = 0;
1049# ifdef FEAT_MOUSE
1050 setmouse();
1051# endif
1052 settmode(TMODE_RAW);
1053 starttermcap();
1054 scroll_start();
1055 redraw_later_clear();
1056 }
1057#endif
1058
1059 clear_oparg(&oa);
1060 while (!cmdwin
1061#ifdef FEAT_CMDWIN
1062 || cmdwin_result == 0
1063#endif
1064 )
1065 {
1066 if (stuff_empty())
1067 {
1068 did_check_timestamps = FALSE;
1069 if (need_check_timestamps)
1070 check_timestamps(FALSE);
1071 if (need_wait_return) /* if wait_return still needed ... */
1072 wait_return(FALSE); /* ... call it now */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001073 if (need_start_insertmode && goto_im() && !VIsual_active)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001074 {
1075 need_start_insertmode = FALSE;
1076 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1077 /* skip the fileinfo message now, because it would be shown
1078 * after insert mode finishes! */
1079 need_fileinfo = FALSE;
1080 }
1081 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001082
1083 /* Reset "got_int" now that we got back to the main loop. Except when
1084 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1085 * the ":g" command.
1086 * For ":g/pat/vi" we reset "got_int" when used once. When used
1087 * a second time we go back to Ex mode and abort the ":g" command. */
1088 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001089 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001090 if (noexmode && global_busy && !exmode_active && previous_got_int)
1091 {
1092 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1093 * used and keep "got_int" set, so that it aborts ":g". */
1094 exmode_active = EXMODE_NORMAL;
1095 State = NORMAL;
1096 }
1097 else if (!global_busy || !exmode_active)
1098 {
1099 if (!quit_more)
1100 (void)vgetc(); /* flush all buffers */
1101 got_int = FALSE;
1102 }
1103 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001104 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001105 else
1106 previous_got_int = FALSE;
1107
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001108 if (!exmode_active)
1109 msg_scroll = FALSE;
1110 quit_more = FALSE;
1111
1112 /*
1113 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1114 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1115 * update cursor and redraw.
1116 */
1117 if (skip_redraw || exmode_active)
1118 skip_redraw = FALSE;
1119 else if (do_redraw || stuff_empty())
1120 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001121# ifdef FEAT_GUI
1122 /* If ui_breakcheck() was used a resize may have been postponed. */
1123 gui_may_resize_shell();
1124# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001125#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001126 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001127 if (!finish_op && (
1128# ifdef FEAT_AUTOCMD
1129 has_cursormoved()
1130# endif
1131# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
1132 ||
1133# endif
1134# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001135 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001136# endif
1137 )
Bram Moolenaard1413d92016-03-02 21:51:56 +01001138# ifdef FEAT_AUTOCMD
1139 && !equalpos(last_cursormoved, curwin->w_cursor)
1140# endif
1141 )
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001142 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001143# ifdef FEAT_AUTOCMD
1144 if (has_cursormoved())
1145 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1146 FALSE, curbuf);
1147# endif
1148# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001149 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001150 {
Bram Moolenaard1413d92016-03-02 21:51:56 +01001151# ifdef FEAT_AUTOCMD
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001152 conceal_old_cursor_line = last_cursormoved.lnum;
Bram Moolenaard1413d92016-03-02 21:51:56 +01001153# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001154 conceal_new_cursor_line = curwin->w_cursor.lnum;
1155 conceal_update_lines = TRUE;
1156 }
1157# endif
Bram Moolenaard1413d92016-03-02 21:51:56 +01001158# ifdef FEAT_AUTOCMD
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001159 last_cursormoved = curwin->w_cursor;
Bram Moolenaard1413d92016-03-02 21:51:56 +01001160# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001161 }
1162#endif
1163
Bram Moolenaar186628f2013-03-19 13:33:23 +01001164#ifdef FEAT_AUTOCMD
1165 /* Trigger TextChanged if b_changedtick differs. */
1166 if (!finish_op && has_textchanged()
1167 && last_changedtick != curbuf->b_changedtick)
1168 {
1169 if (last_changedtick_buf == curbuf)
1170 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL,
1171 FALSE, curbuf);
1172 last_changedtick_buf = curbuf;
1173 last_changedtick = curbuf->b_changedtick;
1174 }
1175#endif
1176
Bram Moolenaar33aec762006-01-22 23:30:12 +00001177#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1178 /* Scroll-binding for diff mode may have been postponed until
1179 * here. Avoids doing it for every change. */
1180 if (diff_need_scrollbind)
1181 {
1182 check_scrollbind((linenr_T)0, 0L);
1183 diff_need_scrollbind = FALSE;
1184 }
1185#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001186#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001187 /* Include a closed fold completely in the Visual area. */
1188 foldAdjustVisual();
1189#endif
1190#ifdef FEAT_FOLDING
1191 /*
1192 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1193 * contain the cursor.
1194 * When 'foldopen' is "all", open the fold(s) under the cursor.
1195 * This may mark the window for redrawing.
1196 */
1197 if (hasAnyFolding(curwin) && !char_avail())
1198 {
1199 foldCheckClose();
1200 if (fdo_flags & FDO_ALL)
1201 foldOpenCursor();
1202 }
1203#endif
1204
1205 /*
1206 * Before redrawing, make sure w_topline is correct, and w_leftcol
1207 * if lines don't wrap, and w_skipcol if lines wrap.
1208 */
1209 update_topline();
1210 validate_cursor();
1211
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001212 if (VIsual_active)
1213 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001214 else if (must_redraw)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001215 update_screen(0);
1216 else if (redraw_cmdline || clear_cmdline)
1217 showmode();
1218#ifdef FEAT_WINDOWS
1219 redraw_statuslines();
1220#endif
1221#ifdef FEAT_TITLE
1222 if (need_maketitle)
1223 maketitle();
1224#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001225#ifdef FEAT_VIMINFO
1226 curbuf->b_last_used = vim_time();
1227#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001228 /* display message after redraw */
1229 if (keep_msg != NULL)
1230 {
1231 char_u *p;
1232
1233 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001234 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1235 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001236 p = keep_msg;
1237 msg_attr(p, keep_msg_attr);
1238 vim_free(p);
1239 }
1240 if (need_fileinfo) /* show file info after redraw */
1241 {
1242 fileinfo(FALSE, TRUE, FALSE);
1243 need_fileinfo = FALSE;
1244 }
1245
1246 emsg_on_display = FALSE; /* can delete error message now */
1247 did_emsg = FALSE;
1248 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001249 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001250 showruler(FALSE);
1251
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001252# if defined(FEAT_CONCEAL)
1253 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001254 && (conceal_old_cursor_line != conceal_new_cursor_line
1255 || conceal_cursor_line(curwin)
1256 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001257 {
Bram Moolenaarc2b4c622011-02-15 16:29:59 +01001258 if (conceal_old_cursor_line != conceal_new_cursor_line
1259 && conceal_old_cursor_line
1260 <= curbuf->b_ml.ml_line_count)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001261 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001262 update_single_line(curwin, conceal_new_cursor_line);
1263 curwin->w_valid &= ~VALID_CROW;
1264 }
1265# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001266 setcursor();
1267 cursor_on();
1268
1269 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001270
1271#ifdef STARTUPTIME
1272 /* Now that we have drawn the first screen all the startup stuff
1273 * has been done, close any file for startup messages. */
1274 if (time_fd != NULL)
1275 {
1276 TIME_MSG("first screen update");
1277 TIME_MSG("--- VIM STARTED ---");
1278 fclose(time_fd);
1279 time_fd = NULL;
1280 }
1281#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001282 }
1283#ifdef FEAT_GUI
1284 if (need_mouse_correct)
1285 gui_mouse_correct();
1286#endif
1287
1288 /*
1289 * Update w_curswant if w_set_curswant has been set.
1290 * Postponed until here to avoid computing w_virtcol too often.
1291 */
1292 update_curswant();
1293
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001294#ifdef FEAT_EVAL
1295 /*
1296 * May perform garbage collection when waiting for a character, but
1297 * only at the very toplevel. Otherwise we may be using a List or
1298 * Dict internally somewhere.
1299 * "may_garbage_collect" is reset in vgetc() which is invoked through
1300 * do_exmode() and normal_cmd().
1301 */
1302 may_garbage_collect = (!cmdwin && !noexmode);
1303#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001304 /*
1305 * If we're invoked as ex, do a round of ex commands.
1306 * Otherwise, get and execute a normal mode command.
1307 */
1308 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001309 {
1310 if (noexmode) /* End of ":global/path/visual" commands */
1311 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001312 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001313 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001314 else
1315 normal_cmd(&oa, TRUE);
1316 }
1317}
1318
1319
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001320#if defined(USE_XSMP) || defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001321/*
1322 * Exit, but leave behind swap files for modified buffers.
1323 */
1324 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001325getout_preserve_modified(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001326{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001327# if defined(SIGHUP) && defined(SIG_IGN)
1328 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1329 * makes Vim exit and then handling SIGHUP causes various reentrance
1330 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001331 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001332# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001333
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001334 ml_close_notmod(); /* close all not-modified buffers */
1335 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1336 ml_close_all(FALSE); /* close all memfiles, without deleting */
1337 getout(exitval); /* exit Vim properly */
1338}
1339#endif
1340
1341
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001342/*
1343 * Exit properly.
1344 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001345 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001346getout(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001347{
1348#ifdef FEAT_AUTOCMD
1349 buf_T *buf;
1350 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001351 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001352#endif
1353
1354 exiting = TRUE;
1355
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001356 /* When running in Ex mode an error causes us to exit with a non-zero exit
1357 * code. POSIX requires this, although it's not 100% clear from the
1358 * standard. */
1359 if (exmode_active)
1360 exitval += ex_exitval;
1361
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001362 /* Position the cursor on the last screen line, below all the text */
1363#ifdef FEAT_GUI
1364 if (!gui.in_use)
1365#endif
1366 windgoto((int)Rows - 1, 0);
1367
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001368#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1369 /* Optionally print hashtable efficiency. */
1370 hash_debug_results();
1371#endif
1372
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001373#ifdef FEAT_GUI
1374 msg_didany = FALSE;
1375#endif
1376
1377#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001378 if (get_vim_var_nr(VV_DYING) <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001379 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001380 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1381# if defined FEAT_WINDOWS
1382 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001383 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001384 next_tp = tp->tp_next;
Bram Moolenaar29323592016-07-24 22:04:11 +02001385 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001386 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001387 if (wp->w_buffer == NULL)
1388 /* Autocmd must have close the buffer already, skip. */
1389 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001390 buf = wp->w_buffer;
1391 if (buf->b_changedtick != -1)
1392 {
1393 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1394 buf->b_fname, FALSE, buf);
Bram Moolenaarb429cde2012-04-25 18:24:29 +02001395 buf->b_changedtick = -1; /* note that we did it already */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001396 /* start all over, autocommands may mess up the lists */
1397 next_tp = first_tabpage;
1398 break;
1399 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001400 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001401 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001402# else
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001403 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname,
1404 FALSE, curbuf);
Bram Moolenaarf740b292006-02-16 22:11:02 +00001405# endif
Bram Moolenaar33aec762006-01-22 23:30:12 +00001406
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001407 /* Trigger BufUnload for buffers that are loaded */
Bram Moolenaar29323592016-07-24 22:04:11 +02001408 FOR_ALL_BUFFERS(buf)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001409 if (buf->b_ml.ml_mfp != NULL)
1410 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001411 bufref_T bufref;
1412
1413 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001414 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001415 FALSE, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001416 if (!bufref_valid(&bufref))
1417 /* autocmd deleted the buffer */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001418 break;
1419 }
1420 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1421 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001422#endif
1423
1424#ifdef FEAT_VIMINFO
1425 if (*p_viminfo != NUL)
1426 /* Write out the registers, history, marks etc, to the viminfo file */
1427 write_viminfo(NULL, FALSE);
1428#endif
1429
1430#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001431 if (get_vim_var_nr(VV_DYING) <= 1)
1432 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001433#endif
1434
Bram Moolenaar05159a02005-02-26 23:04:13 +00001435#ifdef FEAT_PROFILE
1436 profile_dump();
1437#endif
1438
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001439 if (did_emsg
1440#ifdef FEAT_GUI
1441 || (gui.in_use && msg_didany && p_verbose > 0)
1442#endif
1443 )
1444 {
1445 /* give the user a chance to read the (error) message */
1446 no_wait_return = FALSE;
1447 wait_return(FALSE);
1448 }
1449
1450#ifdef FEAT_AUTOCMD
1451 /* Position the cursor again, the autocommands may have moved it */
1452# ifdef FEAT_GUI
1453 if (!gui.in_use)
1454# endif
1455 windgoto((int)Rows - 1, 0);
1456#endif
1457
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001458#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar65edff82016-02-21 16:40:11 +01001459 job_stop_on_exit();
1460#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001461#ifdef FEAT_LUA
1462 lua_end();
1463#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001464#ifdef FEAT_MZSCHEME
1465 mzscheme_end();
1466#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001467#ifdef FEAT_TCL
1468 tcl_end();
1469#endif
1470#ifdef FEAT_RUBY
1471 ruby_end();
1472#endif
1473#ifdef FEAT_PYTHON
1474 python_end();
1475#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001476#ifdef FEAT_PYTHON3
1477 python3_end();
1478#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001479#ifdef FEAT_PERL
1480 perl_end();
1481#endif
1482#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1483 iconv_end();
1484#endif
1485#ifdef FEAT_NETBEANS_INTG
1486 netbeans_end();
1487#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001488#ifdef FEAT_CSCOPE
1489 cs_end();
1490#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001491#ifdef FEAT_EVAL
1492 if (garbage_collect_at_exit)
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02001493 garbage_collect(FALSE);
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001494#endif
Bram Moolenaar14993322014-09-09 12:25:33 +02001495#if defined(WIN32) && defined(FEAT_MBYTE)
1496 free_cmd_argsW();
1497#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001498
1499 mch_exit(exitval);
1500}
1501
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001502#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1503/*
1504 * Setup to use the current locale (for ctype() and many other things).
1505 */
1506 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001507init_locale(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001508{
1509 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001510
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001511# ifdef FEAT_GUI_GTK
1512 /* Tell Gtk not to change our locale settings. */
1513 gtk_disable_setlocale();
1514# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001515# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1516 /* Make sure strtod() uses a decimal point, not a comma. */
1517 setlocale(LC_NUMERIC, "C");
1518# endif
1519
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001520# ifdef WIN32
1521 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1522 * text while it's expecting text in the current locale. This call avoids
1523 * that. */
1524 setlocale(LC_CTYPE, "C");
1525# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001526
1527# ifdef FEAT_GETTEXT
1528 {
1529 int mustfree = FALSE;
1530 char_u *p;
1531
1532# ifdef DYNAMIC_GETTEXT
1533 /* Initialize the gettext library */
Bram Moolenaar286eacd2016-01-16 18:05:50 +01001534 dyn_libintl_init();
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001535# endif
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001536 /* expand_env() doesn't work yet, because g_chartab[] is not
1537 * initialized yet, call vim_getenv() directly */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001538 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1539 if (p != NULL && *p != NUL)
1540 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001541 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001542 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1543 }
1544 if (mustfree)
1545 vim_free(p);
1546 textdomain(VIMPACKAGE);
1547 }
1548# endif
1549}
1550#endif
1551
1552/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001553 * Get the name of the display, before gui_prepare() removes it from
1554 * argv[]. Used for the xterm-clipboard display.
1555 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001556 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001557 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001558 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001559early_arg_scan(mparm_T *parmp UNUSED)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001560{
Bram Moolenaar03005972008-11-20 13:12:36 +00001561#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1562 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001563 int argc = parmp->argc;
1564 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001565 int i;
1566
1567 for (i = 1; i < argc; i++)
1568 {
1569 if (STRCMP(argv[i], "--") == 0)
1570 break;
1571# ifdef FEAT_XCLIPBOARD
1572 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001573# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001574 || STRICMP(argv[i], "--display") == 0
1575# endif
1576 )
1577 {
1578 if (i == argc - 1)
1579 mainerr_arg_missing((char_u *)argv[i]);
1580 xterm_display = argv[++i];
1581 }
1582# endif
1583# ifdef FEAT_CLIENTSERVER
1584 else if (STRICMP(argv[i], "--servername") == 0)
1585 {
1586 if (i == argc - 1)
1587 mainerr_arg_missing((char_u *)argv[i]);
1588 parmp->serverName_arg = (char_u *)argv[++i];
1589 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001590 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001591 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001592 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001593 {
1594 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001595# ifdef FEAT_GUI
1596 if (strstr(argv[i], "-wait") != 0)
1597 /* don't fork() when starting the GUI to edit files ourself */
1598 gui.dofork = FALSE;
1599# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001600 }
1601# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001602
1603# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1604# ifdef FEAT_GUI_W32
1605 else if (STRICMP(argv[i], "--windowid") == 0)
1606# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001607 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001608# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001609 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001610 long_u id;
1611 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001612
1613 if (i == argc - 1)
1614 mainerr_arg_missing((char_u *)argv[i]);
1615 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001616 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001617 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001618 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001619 if (count != 1)
1620 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1621 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001622# ifdef FEAT_GUI_W32
1623 win_socket_id = id;
1624# else
1625 gtk_socket_id = id;
1626# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001627 i++;
1628 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001629# endif
1630# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001631 else if (STRICMP(argv[i], "--echo-wid") == 0)
1632 echo_wid_arg = TRUE;
1633# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001634# ifndef FEAT_NETBEANS_INTG
1635 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001636 {
1637 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1638 mch_exit(2);
1639 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001640# endif
1641
Bram Moolenaar58d98232005-07-23 22:25:46 +00001642 }
1643#endif
1644}
1645
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001646#ifndef NO_VIM_MAIN
1647/*
1648 * Get a (optional) count for a Vim argument.
1649 */
1650 static int
1651get_number_arg(
1652 char_u *p, /* pointer to argument */
1653 int *idx, /* index in argument, is incremented */
1654 int def) /* default value */
1655{
1656 if (vim_isdigit(p[*idx]))
1657 {
1658 def = atoi((char *)&(p[*idx]));
1659 while (vim_isdigit(p[*idx]))
1660 *idx = *idx + 1;
1661 }
1662 return def;
1663}
1664
1665/*
1666 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1667 * If the executable name starts with "r" we disable shell commands.
1668 * If the next character is "e" we run in Easy mode.
1669 * If the next character is "g" we run the GUI version.
1670 * If the next characters are "view" we start in readonly mode.
1671 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1672 * If the next characters are "ex" we start in Ex mode. If it's followed
1673 * by "im" use improved Ex mode.
1674 */
1675 static void
1676parse_command_name(mparm_T *parmp)
1677{
1678 char_u *initstr;
1679
1680 initstr = gettail((char_u *)parmp->argv[0]);
1681
1682#ifdef MACOS_X_UNIX
1683 /* An issue has been seen when launching Vim in such a way that
1684 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1685 * executable or a symbolic link of it. Until this issue is resolved
1686 * we prohibit the GUI from being used.
1687 */
1688 if (STRCMP(initstr, parmp->argv[0]) == 0)
1689 disallow_gui = TRUE;
1690
1691 /* TODO: On MacOS X default to gui if argv[0] ends in:
1692 * /Vim.app/Contents/MacOS/Vim */
1693#endif
1694
1695#ifdef FEAT_EVAL
1696 set_vim_var_string(VV_PROGNAME, initstr, -1);
1697 set_vim_var_string(VV_PROGPATH, (char_u *)parmp->argv[0], -1);
1698#endif
1699
1700 if (TOLOWER_ASC(initstr[0]) == 'r')
1701 {
1702 restricted = TRUE;
1703 ++initstr;
1704 }
1705
1706 /* Use evim mode for "evim" and "egvim", not for "editor". */
1707 if (TOLOWER_ASC(initstr[0]) == 'e'
1708 && (TOLOWER_ASC(initstr[1]) == 'v'
1709 || TOLOWER_ASC(initstr[1]) == 'g'))
1710 {
1711#ifdef FEAT_GUI
1712 gui.starting = TRUE;
1713#endif
1714 parmp->evim_mode = TRUE;
1715 ++initstr;
1716 }
1717
1718 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1719 if (TOLOWER_ASC(initstr[0]) == 'g')
1720 {
1721 main_start_gui();
1722#ifdef FEAT_GUI
1723 ++initstr;
1724#endif
1725 }
1726
1727 if (STRNICMP(initstr, "view", 4) == 0)
1728 {
1729 readonlymode = TRUE;
1730 curbuf->b_p_ro = TRUE;
1731 p_uc = 10000; /* don't update very often */
1732 initstr += 4;
1733 }
1734 else if (STRNICMP(initstr, "vim", 3) == 0)
1735 initstr += 3;
1736
1737 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1738 if (STRICMP(initstr, "diff") == 0)
1739 {
1740#ifdef FEAT_DIFF
1741 parmp->diff_mode = TRUE;
1742#else
1743 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1744 mch_errmsg("\n");
1745 mch_exit(2);
1746#endif
1747 }
1748
1749 if (STRNICMP(initstr, "ex", 2) == 0)
1750 {
1751 if (STRNICMP(initstr + 2, "im", 2) == 0)
1752 exmode_active = EXMODE_VIM;
1753 else
1754 exmode_active = EXMODE_NORMAL;
1755 change_compatible(TRUE); /* set 'compatible' */
1756 }
1757}
1758
Bram Moolenaar58d98232005-07-23 22:25:46 +00001759/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001760 * Scan the command line arguments.
1761 */
1762 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001763command_line_scan(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001764{
1765 int argc = parmp->argc;
1766 char **argv = parmp->argv;
1767 int argv_idx; /* index in argv[n][] */
1768 int had_minmin = FALSE; /* found "--" argument */
1769 int want_argument; /* option argument with argument */
1770 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001771 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001772 long n;
1773
1774 --argc;
1775 ++argv;
1776 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1777 while (argc > 0)
1778 {
1779 /*
1780 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1781 */
1782 if (argv[0][0] == '+' && !had_minmin)
1783 {
1784 if (parmp->n_commands >= MAX_ARG_CMDS)
1785 mainerr(ME_EXTRA_CMD, NULL);
1786 argv_idx = -1; /* skip to next argument */
1787 if (argv[0][1] == NUL)
1788 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1789 else
1790 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1791 }
1792
1793 /*
1794 * Optional argument.
1795 */
1796 else if (argv[0][0] == '-' && !had_minmin)
1797 {
1798 want_argument = FALSE;
1799 c = argv[0][argv_idx++];
1800#ifdef VMS
1801 /*
1802 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1803 * and "-/X" as "-X".
1804 */
1805 if (c == '/')
1806 {
1807 c = argv[0][argv_idx++];
1808 c = TOUPPER_ASC(c);
1809 }
1810 else
1811 c = TOLOWER_ASC(c);
1812#endif
1813 switch (c)
1814 {
1815 case NUL: /* "vim -" read from stdin */
1816 /* "ex -" silent mode */
1817 if (exmode_active)
1818 silent_mode = TRUE;
1819 else
1820 {
1821 if (parmp->edit_type != EDIT_NONE)
1822 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1823 parmp->edit_type = EDIT_STDIN;
1824 read_cmd_fd = 2; /* read from stderr instead of stdin */
1825 }
1826 argv_idx = -1; /* skip to next argument */
1827 break;
1828
1829 case '-': /* "--" don't take any more option arguments */
1830 /* "--help" give help message */
1831 /* "--version" give version message */
1832 /* "--literal" take files literally */
1833 /* "--nofork" don't fork */
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001834 /* "--not-a-term" don't warn for not a term */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001835 /* "--ttyfail" exit if not a term */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001836 /* "--noplugin[s]" skip plugins */
1837 /* "--cmd <cmd>" execute cmd before vimrc */
1838 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1839 usage();
1840 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1841 {
1842 Columns = 80; /* need to init Columns */
1843 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1844 list_version();
1845 msg_putchar('\n');
1846 msg_didout = FALSE;
1847 mch_exit(0);
1848 }
1849 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1850 {
Bram Moolenaar53076832015-12-31 19:53:21 +01001851#ifdef EXPAND_FILENAMES
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001852 parmp->literal = TRUE;
1853#endif
1854 }
1855 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1856 {
1857#ifdef FEAT_GUI
1858 gui.dofork = FALSE; /* don't fork() when starting GUI */
1859#endif
1860 }
1861 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1862 p_lpl = FALSE;
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001863 else if (STRNICMP(argv[0] + argv_idx, "not-a-term", 10) == 0)
1864 parmp->not_a_term = TRUE;
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001865 else if (STRNICMP(argv[0] + argv_idx, "ttyfail", 7) == 0)
1866 parmp->tty_fail = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001867 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1868 {
1869 want_argument = TRUE;
1870 argv_idx += 3;
1871 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001872 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1873 {
1874 want_argument = TRUE;
1875 argv_idx += 11;
1876 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001877#ifdef FEAT_CLIENTSERVER
1878 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1879 ; /* already processed -- no arg */
1880 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1881 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1882 {
1883 /* already processed -- snatch the following arg */
1884 if (argc > 1)
1885 {
1886 --argc;
1887 ++argv;
1888 }
1889 }
1890#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001891#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1892# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001893 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001894# else
1895 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1896# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001897 {
1898 /* already processed -- snatch the following arg */
1899 if (argc > 1)
1900 {
1901 --argc;
1902 ++argv;
1903 }
1904 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001905#endif
1906#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001907 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1908 {
1909 /* already processed, skip */
1910 }
1911#endif
1912 else
1913 {
1914 if (argv[0][argv_idx])
1915 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1916 had_minmin = TRUE;
1917 }
1918 if (!want_argument)
1919 argv_idx = -1; /* skip to next argument */
1920 break;
1921
1922 case 'A': /* "-A" start in Arabic mode */
1923#ifdef FEAT_ARABIC
1924 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1925#else
1926 mch_errmsg(_(e_noarabic));
1927 mch_exit(2);
1928#endif
1929 break;
1930
1931 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001932 /* Needs to be effective before expanding file names, because
1933 * for Win32 this makes us edit a shortcut file itself,
1934 * instead of the file it links to. */
1935 set_options_bin(curbuf->b_p_bin, 1, 0);
1936 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001937 break;
1938
1939 case 'C': /* "-C" Compatible */
1940 change_compatible(TRUE);
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02001941 has_dash_c_arg = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001942 break;
1943
1944 case 'e': /* "-e" Ex mode */
1945 exmode_active = EXMODE_NORMAL;
1946 break;
1947
1948 case 'E': /* "-E" Improved Ex mode */
1949 exmode_active = EXMODE_VIM;
1950 break;
1951
1952 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1953 window directly, not with newcli */
1954#ifdef FEAT_GUI
1955 gui.dofork = FALSE; /* don't fork() when starting GUI */
1956#endif
1957 break;
1958
1959 case 'g': /* "-g" start GUI */
1960 main_start_gui();
1961 break;
1962
1963 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1964#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001965 p_fkmap = TRUE;
1966 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001967#else
1968 mch_errmsg(_(e_nofarsi));
1969 mch_exit(2);
1970#endif
1971 break;
1972
1973 case 'h': /* "-h" give help message */
1974#ifdef FEAT_GUI_GNOME
1975 /* Tell usage() to exit for "gvim". */
1976 gui.starting = FALSE;
1977#endif
1978 usage();
1979 break;
1980
1981 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1982#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001983 p_hkmap = TRUE;
1984 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001985#else
1986 mch_errmsg(_(e_nohebrew));
1987 mch_exit(2);
1988#endif
1989 break;
1990
1991 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1992#ifdef FEAT_LISP
1993 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1994 p_sm = TRUE;
1995#endif
1996 break;
1997
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001998 case 'M': /* "-M" no changes or writing of files */
1999 reset_modifiable();
2000 /* FALLTHROUGH */
2001
2002 case 'm': /* "-m" no writing of files */
2003 p_write = FALSE;
2004 break;
2005
2006 case 'y': /* "-y" easy mode */
2007#ifdef FEAT_GUI
2008 gui.starting = TRUE; /* start GUI a bit later */
2009#endif
2010 parmp->evim_mode = TRUE;
2011 break;
2012
2013 case 'N': /* "-N" Nocompatible */
2014 change_compatible(FALSE);
2015 break;
2016
2017 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002018#ifdef FEAT_NETBEANS_INTG
2019 /* checking for "-nb", netbeans parameters */
2020 if (argv[0][argv_idx] == 'b')
2021 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002022 netbeansArg = argv[0];
2023 argv_idx = -1; /* skip to next argument */
2024 }
2025 else
2026#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002027 parmp->no_swap_file = TRUE;
2028 break;
2029
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002030 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002031#ifdef TARGET_API_MAC_OSX
2032 /* For some reason on MacOS X, an argument like:
2033 -psn_0_10223617 is passed in when invoke from Finder
2034 or with the 'open' command */
2035 if (argv[0][argv_idx] == 's')
2036 {
2037 argv_idx = -1; /* bypass full -psn */
2038 main_start_gui();
2039 break;
2040 }
2041#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002042#ifdef FEAT_WINDOWS
2043 /* default is 0: open window for each file */
2044 parmp->window_count = get_number_arg((char_u *)argv[0],
2045 &argv_idx, 0);
2046 parmp->window_layout = WIN_TABS;
2047#endif
2048 break;
2049
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002050 case 'o': /* "-o[N]" open N horizontal split windows */
2051#ifdef FEAT_WINDOWS
2052 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002053 parmp->window_count = get_number_arg((char_u *)argv[0],
2054 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002055 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002056#endif
2057 break;
2058
2059 case 'O': /* "-O[N]" open N vertical split windows */
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002060#ifdef FEAT_WINDOWS
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002061 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002062 parmp->window_count = get_number_arg((char_u *)argv[0],
2063 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002064 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002065#endif
2066 break;
2067
2068#ifdef FEAT_QUICKFIX
2069 case 'q': /* "-q" QuickFix mode */
2070 if (parmp->edit_type != EDIT_NONE)
2071 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2072 parmp->edit_type = EDIT_QF;
2073 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2074 {
2075 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2076 argv_idx = -1;
2077 }
2078 else if (argc > 1) /* "-q {errorfile}" */
2079 want_argument = TRUE;
2080 break;
2081#endif
2082
2083 case 'R': /* "-R" readonly mode */
2084 readonlymode = TRUE;
2085 curbuf->b_p_ro = TRUE;
2086 p_uc = 10000; /* don't update very often */
2087 break;
2088
2089 case 'r': /* "-r" recovery mode */
2090 case 'L': /* "-L" recovery mode */
2091 recoverymode = 1;
2092 break;
2093
2094 case 's':
2095 if (exmode_active) /* "-s" silent (batch) mode */
2096 silent_mode = TRUE;
2097 else /* "-s {scriptin}" read from script file */
2098 want_argument = TRUE;
2099 break;
2100
2101 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2102 if (parmp->edit_type != EDIT_NONE)
2103 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2104 parmp->edit_type = EDIT_TAG;
2105 if (argv[0][argv_idx]) /* "-t{tag}" */
2106 {
2107 parmp->tagname = (char_u *)argv[0] + argv_idx;
2108 argv_idx = -1;
2109 }
2110 else /* "-t {tag}" */
2111 want_argument = TRUE;
2112 break;
2113
2114#ifdef FEAT_EVAL
2115 case 'D': /* "-D" Debugging */
2116 parmp->use_debug_break_level = 9999;
2117 break;
2118#endif
2119#ifdef FEAT_DIFF
2120 case 'd': /* "-d" 'diff' */
2121# ifdef AMIGA
2122 /* check for "-dev {device}" */
2123 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2124 want_argument = TRUE;
2125 else
2126# endif
2127 parmp->diff_mode = TRUE;
2128 break;
2129#endif
2130 case 'V': /* "-V{N}" Verbose level */
2131 /* default is 10: a little bit verbose */
2132 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2133 if (argv[0][argv_idx] != NUL)
2134 {
2135 set_option_value((char_u *)"verbosefile", 0L,
2136 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002137 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002138 }
2139 break;
2140
2141 case 'v': /* "-v" Vi-mode (as if called "vi") */
2142 exmode_active = 0;
2143#ifdef FEAT_GUI
2144 gui.starting = FALSE; /* don't start GUI */
2145#endif
2146 break;
2147
2148 case 'w': /* "-w{number}" set window height */
2149 /* "-w {scriptout}" write to script */
2150 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2151 {
2152 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2153 set_option_value((char_u *)"window", n, NULL, 0);
2154 break;
2155 }
2156 want_argument = TRUE;
2157 break;
2158
2159#ifdef FEAT_CRYPT
2160 case 'x': /* "-x" encrypted reading/writing of files */
2161 parmp->ask_for_key = TRUE;
2162 break;
2163#endif
2164
2165 case 'X': /* "-X" don't connect to X server */
2166#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2167 x_no_connect = TRUE;
2168#endif
2169 break;
2170
2171 case 'Z': /* "-Z" restricted mode */
2172 restricted = TRUE;
2173 break;
2174
2175 case 'c': /* "-c{command}" or "-c {command}" execute
2176 command */
2177 if (argv[0][argv_idx] != NUL)
2178 {
2179 if (parmp->n_commands >= MAX_ARG_CMDS)
2180 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002181 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2182 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002183 argv_idx = -1;
2184 break;
2185 }
2186 /*FALLTHROUGH*/
2187 case 'S': /* "-S {file}" execute Vim script */
2188 case 'i': /* "-i {viminfo}" use for viminfo */
2189#ifndef FEAT_DIFF
2190 case 'd': /* "-d {device}" device (for Amiga) */
2191#endif
2192 case 'T': /* "-T {terminal}" terminal name */
2193 case 'u': /* "-u {vimrc}" vim inits file */
2194 case 'U': /* "-U {gvimrc}" gvim inits file */
2195 case 'W': /* "-W {scriptout}" overwrite */
2196#ifdef FEAT_GUI_W32
2197 case 'P': /* "-P {parent title}" MDI parent */
2198#endif
2199 want_argument = TRUE;
2200 break;
2201
2202 default:
2203 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2204 }
2205
2206 /*
2207 * Handle option arguments with argument.
2208 */
2209 if (want_argument)
2210 {
2211 /*
2212 * Check for garbage immediately after the option letter.
2213 */
2214 if (argv[0][argv_idx] != NUL)
2215 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2216
2217 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002218 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002219 mainerr_arg_missing((char_u *)argv[0]);
2220 ++argv;
2221 argv_idx = -1;
2222
2223 switch (c)
2224 {
2225 case 'c': /* "-c {command}" execute command */
2226 case 'S': /* "-S {file}" execute Vim script */
2227 if (parmp->n_commands >= MAX_ARG_CMDS)
2228 mainerr(ME_EXTRA_CMD, NULL);
2229 if (c == 'S')
2230 {
2231 char *a;
2232
2233 if (argc < 1)
2234 /* "-S" without argument: use default session file
2235 * name. */
2236 a = SESSION_FILE;
2237 else if (argv[0][0] == '-')
2238 {
2239 /* "-S" followed by another option: use default
2240 * session file name. */
2241 a = SESSION_FILE;
2242 ++argc;
2243 --argv;
2244 }
2245 else
2246 a = argv[0];
2247 p = alloc((unsigned)(STRLEN(a) + 4));
2248 if (p == NULL)
2249 mch_exit(2);
2250 sprintf((char *)p, "so %s", a);
2251 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2252 parmp->commands[parmp->n_commands++] = p;
2253 }
2254 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002255 parmp->commands[parmp->n_commands++] =
2256 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002257 break;
2258
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002259 case '-':
2260 if (argv[-1][2] == 'c')
2261 {
2262 /* "--cmd {command}" execute command */
2263 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2264 mainerr(ME_EXTRA_CMD, NULL);
2265 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002266 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002267 }
2268 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002269 break;
2270
2271 /* case 'd': -d {device} is handled in mch_check_win() for the
2272 * Amiga */
2273
2274#ifdef FEAT_QUICKFIX
2275 case 'q': /* "-q {errorfile}" QuickFix mode */
2276 parmp->use_ef = (char_u *)argv[0];
2277 break;
2278#endif
2279
2280 case 'i': /* "-i {viminfo}" use for viminfo */
2281 use_viminfo = (char_u *)argv[0];
2282 break;
2283
2284 case 's': /* "-s {scriptin}" read from script file */
2285 if (scriptin[0] != NULL)
2286 {
2287scripterror:
2288 mch_errmsg(_("Attempt to open script file again: \""));
2289 mch_errmsg(argv[-1]);
2290 mch_errmsg(" ");
2291 mch_errmsg(argv[0]);
2292 mch_errmsg("\"\n");
2293 mch_exit(2);
2294 }
2295 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2296 {
2297 mch_errmsg(_("Cannot open for reading: \""));
2298 mch_errmsg(argv[0]);
2299 mch_errmsg("\"\n");
2300 mch_exit(2);
2301 }
2302 if (save_typebuf() == FAIL)
2303 mch_exit(2); /* out of memory */
2304 break;
2305
2306 case 't': /* "-t {tag}" */
2307 parmp->tagname = (char_u *)argv[0];
2308 break;
2309
2310 case 'T': /* "-T {terminal}" terminal name */
2311 /*
2312 * The -T term argument is always available and when
2313 * HAVE_TERMLIB is supported it overrides the environment
2314 * variable TERM.
2315 */
2316#ifdef FEAT_GUI
2317 if (term_is_gui((char_u *)argv[0]))
2318 gui.starting = TRUE; /* start GUI a bit later */
2319 else
2320#endif
2321 parmp->term = (char_u *)argv[0];
2322 break;
2323
2324 case 'u': /* "-u {vimrc}" vim inits file */
2325 parmp->use_vimrc = (char_u *)argv[0];
2326 break;
2327
2328 case 'U': /* "-U {gvimrc}" gvim inits file */
2329#ifdef FEAT_GUI
2330 use_gvimrc = (char_u *)argv[0];
2331#endif
2332 break;
2333
2334 case 'w': /* "-w {nr}" 'window' value */
2335 /* "-w {scriptout}" append to script file */
2336 if (vim_isdigit(*((char_u *)argv[0])))
2337 {
2338 argv_idx = 0;
2339 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2340 set_option_value((char_u *)"window", n, NULL, 0);
2341 argv_idx = -1;
2342 break;
2343 }
2344 /*FALLTHROUGH*/
2345 case 'W': /* "-W {scriptout}" overwrite script file */
2346 if (scriptout != NULL)
2347 goto scripterror;
2348 if ((scriptout = mch_fopen(argv[0],
2349 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2350 {
2351 mch_errmsg(_("Cannot open for script output: \""));
2352 mch_errmsg(argv[0]);
2353 mch_errmsg("\"\n");
2354 mch_exit(2);
2355 }
2356 break;
2357
2358#ifdef FEAT_GUI_W32
2359 case 'P': /* "-P {parent title}" MDI parent */
2360 gui_mch_set_parent(argv[0]);
2361 break;
2362#endif
2363 }
2364 }
2365 }
2366
2367 /*
2368 * File name argument.
2369 */
2370 else
2371 {
2372 argv_idx = -1; /* skip to next argument */
2373
2374 /* Check for only one type of editing. */
2375 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2376 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2377 parmp->edit_type = EDIT_FILE;
2378
2379#ifdef MSWIN
2380 /* Remember if the argument was a full path before changing
2381 * slashes to backslashes. */
2382 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2383 parmp->full_path = TRUE;
2384#endif
2385
2386 /* Add the file to the global argument list. */
2387 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2388 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2389 mch_exit(2);
2390#ifdef FEAT_DIFF
2391 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2392 && !mch_isdir(alist_name(&GARGLIST[0])))
2393 {
2394 char_u *r;
2395
2396 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2397 if (r != NULL)
2398 {
2399 vim_free(p);
2400 p = r;
2401 }
2402 }
2403#endif
2404#if defined(__CYGWIN32__) && !defined(WIN32)
2405 /*
2406 * If vim is invoked by non-Cygwin tools, convert away any
2407 * DOS paths, so things like .swp files are created correctly.
2408 * Look for evidence of non-Cygwin paths before we bother.
2409 * This is only for when using the Unix files.
2410 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002411 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002412 {
2413 char posix_path[PATH_MAX];
2414
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002415# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2416 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2417# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002418 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002419# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002420 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002421 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002422 if (p == NULL)
2423 mch_exit(2);
2424 }
2425#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002426
2427#ifdef USE_FNAME_CASE
2428 /* Make the case of the file name match the actual file. */
2429 fname_case(p, 0);
2430#endif
2431
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002432 alist_add(&global_alist, p,
Bram Moolenaar53076832015-12-31 19:53:21 +01002433#ifdef EXPAND_FILENAMES
Bram Moolenaar231334e2005-07-25 20:46:57 +00002434 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002435#else
2436 2 /* add buffer number now and use curbuf */
2437#endif
2438 );
2439
2440#if defined(FEAT_MBYTE) && defined(WIN32)
2441 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002442 /* Remember this argument has been added to the argument list.
2443 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002444 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002445# ifdef FEAT_DIFF
2446 parmp->diff_mode
2447# else
2448 FALSE
2449# endif
2450 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002451 }
2452#endif
2453 }
2454
2455 /*
2456 * If there are no more letters after the current "-", go to next
2457 * argument. argv_idx is set to -1 when the current argument is to be
2458 * skipped.
2459 */
2460 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2461 {
2462 --argc;
2463 ++argv;
2464 argv_idx = 1;
2465 }
2466 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002467
2468#ifdef FEAT_EVAL
2469 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2470 * one. */
2471 if (parmp->n_commands > 0)
2472 {
2473 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2474 if (p != NULL)
2475 {
2476 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2477 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2478 vim_free(p);
2479 }
2480 }
2481#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002482}
2483
2484/*
2485 * Print a warning if stdout is not a terminal.
2486 * When starting in Ex mode and commands come from a file, set Silent mode.
2487 */
2488 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002489check_tty(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002490{
2491 int input_isatty; /* is active input a terminal? */
2492
2493 input_isatty = mch_input_isatty();
2494 if (exmode_active)
2495 {
2496 if (!input_isatty)
2497 silent_mode = TRUE;
2498 }
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002499 else if (parmp->want_full_screen && (!stdout_isatty || !input_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002500#ifdef FEAT_GUI
2501 /* don't want the delay when started from the desktop */
2502 && !gui.starting
2503#endif
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01002504 && !parmp->not_a_term)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002505 {
2506#ifdef NBDEBUG
2507 /*
2508 * This shouldn't be necessary. But if I run netbeans with the log
2509 * output coming to the console and XOpenDisplay fails, I get vim
2510 * trying to start with input/output to my console tty. This fills my
2511 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002512 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002513 */
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002514 if (netbeans_active() && (!stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002515 {
2516 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2517 exit(1);
2518 }
2519#endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002520#if defined(WIN3264) && !defined(FEAT_GUI_W32)
2521 if (is_cygpty_used())
2522 {
2523 mch_errmsg(_("Vim: Error: This version of Vim does not run in a Cygwin terminal\n"));
2524 exit(1);
2525 }
2526#endif
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002527 if (!stdout_isatty)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002528 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2529 if (!input_isatty)
2530 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2531 out_flush();
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01002532 if (parmp->tty_fail && (!stdout_isatty || !input_isatty))
2533 exit(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002534 if (scriptin[0] == NULL)
2535 ui_delay(2000L, TRUE);
2536 TIME_MSG("Warning delay");
2537 }
2538}
2539
2540/*
2541 * Read text from stdin.
2542 */
2543 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002544read_stdin(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002545{
2546 int i;
2547
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002548#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002549 /* When getting the ATTENTION prompt here, use a dialog */
2550 swap_exists_action = SEA_DIALOG;
2551#endif
2552 no_wait_return = TRUE;
2553 i = msg_didany;
2554 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002555 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002556 no_wait_return = FALSE;
2557 msg_didany = i;
2558 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002559#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002560 check_swap_exists_action();
2561#endif
2562#if !(defined(AMIGA) || defined(MACOS))
2563 /*
2564 * Close stdin and dup it from stderr. Required for GPM to work
2565 * properly, and for running external commands.
2566 * Is there any other system that cannot do this?
2567 */
2568 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002569 ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002570#endif
2571}
2572
2573/*
2574 * Create the requested number of windows and edit buffers in them.
2575 * Also does recovery if "recoverymode" set.
2576 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002577 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002578create_windows(mparm_T *parmp UNUSED)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002579{
2580#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002581 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002582 int done = 0;
2583
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002584 /*
2585 * Create the number of windows that was requested.
2586 */
2587 if (parmp->window_count == -1) /* was not set */
2588 parmp->window_count = 1;
2589 if (parmp->window_count == 0)
2590 parmp->window_count = GARGCOUNT;
2591 if (parmp->window_count > 1)
2592 {
2593 /* Don't change the windows if there was a command in .vimrc that
2594 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002595 if (parmp->window_layout == 0)
2596 parmp->window_layout = WIN_HOR;
2597 if (parmp->window_layout == WIN_TABS)
2598 {
2599 parmp->window_count = make_tabpages(parmp->window_count);
2600 TIME_MSG("making tab pages");
2601 }
2602 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002603 {
2604 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002605 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002606 TIME_MSG("making windows");
2607 }
2608 else
2609 parmp->window_count = win_count();
2610 }
2611 else
2612 parmp->window_count = 1;
2613#endif
2614
2615 if (recoverymode) /* do recover */
2616 {
2617 msg_scroll = TRUE; /* scroll message up */
2618 ml_recover();
2619 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2620 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002621 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002622 }
2623 else
2624 {
2625 /*
2626 * Open a buffer for windows that don't have one yet.
2627 * Commands in the .vimrc might have loaded a file or split the window.
2628 * Watch out for autocommands that delete a window.
2629 */
2630#ifdef FEAT_AUTOCMD
2631 /*
2632 * Don't execute Win/Buf Enter/Leave autocommands here
2633 */
2634 ++autocmd_no_enter;
2635 ++autocmd_no_leave;
2636#endif
2637#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002638 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002639 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002640 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002641 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002642 {
2643 if (parmp->window_layout == WIN_TABS)
2644 goto_tabpage(1);
2645 else
2646 curwin = firstwin;
2647 }
2648 else if (parmp->window_layout == WIN_TABS)
2649 {
2650 if (curtab->tp_next == NULL)
2651 break;
2652 goto_tabpage(0);
2653 }
2654 else
2655 {
2656 if (curwin->w_next == NULL)
2657 break;
2658 curwin = curwin->w_next;
2659 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002660 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002661#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002662 curbuf = curwin->w_buffer;
2663 if (curbuf->b_ml.ml_mfp == NULL)
2664 {
2665#ifdef FEAT_FOLDING
2666 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2667 if (p_fdls >= 0)
2668 curwin->w_p_fdl = p_fdls;
2669#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002670#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002671 /* When getting the ATTENTION prompt here, use a dialog */
2672 swap_exists_action = SEA_DIALOG;
2673#endif
2674 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002675
2676 /* create memfile, read file */
2677 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002678
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002679#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002680 if (swap_exists_action == SEA_QUIT)
2681 {
2682 if (got_int || only_one_window())
2683 {
2684 /* abort selected or quit and only one window */
2685 did_emsg = FALSE; /* avoid hit-enter prompt */
2686 getout(1);
2687 }
2688 /* We can't close the window, it would disturb what
2689 * happens next. Clear the file name and set the arg
2690 * index to -1 to delete it later. */
2691 setfname(curbuf, NULL, NULL, FALSE);
2692 curwin->w_arg_idx = -1;
2693 swap_exists_action = SEA_NONE;
2694 }
2695 else
2696 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002697#endif
2698#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002699 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002700#endif
2701 }
2702#ifdef FEAT_WINDOWS
2703 ui_breakcheck();
2704 if (got_int)
2705 {
2706 (void)vgetc(); /* only break the file loading, not the rest */
2707 break;
2708 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002709 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002710#endif
2711#ifdef FEAT_WINDOWS
2712 if (parmp->window_layout == WIN_TABS)
2713 goto_tabpage(1);
2714 else
2715 curwin = firstwin;
2716 curbuf = curwin->w_buffer;
2717#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002718#ifdef FEAT_AUTOCMD
2719 --autocmd_no_enter;
2720 --autocmd_no_leave;
2721#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002722 }
2723}
2724
2725#ifdef FEAT_WINDOWS
2726 /*
2727 * If opened more than one window, start editing files in the other
2728 * windows. make_windows() has already opened the windows.
2729 */
2730 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002731edit_buffers(
2732 mparm_T *parmp,
2733 char_u *cwd) /* current working dir */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002734{
2735 int arg_idx; /* index in argument list */
2736 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002737 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002738 win_T *win;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002739
2740# ifdef FEAT_AUTOCMD
2741 /*
2742 * Don't execute Win/Buf Enter/Leave autocommands here
2743 */
2744 ++autocmd_no_enter;
2745 ++autocmd_no_leave;
2746# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002747
2748 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2749 if (curwin->w_arg_idx == -1)
2750 {
2751 win_close(curwin, TRUE);
2752 advance = FALSE;
2753 }
2754
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002755 arg_idx = 1;
2756 for (i = 1; i < parmp->window_count; ++i)
2757 {
Bram Moolenaard87c36e2015-04-03 14:56:49 +02002758 if (cwd != NULL)
2759 mch_chdir((char *)cwd);
Bram Moolenaar84212822006-11-07 21:59:47 +00002760 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2761 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002762 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002763 ++arg_idx;
2764 win_close(curwin, TRUE);
2765 advance = FALSE;
2766 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002767 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002768
Bram Moolenaar84212822006-11-07 21:59:47 +00002769 if (advance)
2770 {
2771 if (parmp->window_layout == WIN_TABS)
2772 {
2773 if (curtab->tp_next == NULL) /* just checking */
2774 break;
2775 goto_tabpage(0);
2776 }
2777 else
2778 {
2779 if (curwin->w_next == NULL) /* just checking */
2780 break;
2781 win_enter(curwin->w_next, FALSE);
2782 }
2783 }
2784 advance = TRUE;
2785
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002786 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002787 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002788 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2789 {
2790 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002791 /* Edit file from arg list, if there is one. When "Quit" selected
2792 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002793# ifdef HAS_SWAP_EXISTS_ACTION
2794 swap_exists_did_quit = FALSE;
2795# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002796 (void)do_ecmd(0, arg_idx < GARGCOUNT
2797 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002798 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002799# ifdef HAS_SWAP_EXISTS_ACTION
2800 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002801 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002802 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002803 if (got_int || only_one_window())
2804 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002805 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002806 did_emsg = FALSE; /* avoid hit-enter prompt */
2807 getout(1);
2808 }
2809 win_close(curwin, TRUE);
2810 advance = FALSE;
2811 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002812# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002813 if (arg_idx == GARGCOUNT - 1)
2814 arg_had_last = TRUE;
2815 ++arg_idx;
2816 }
2817 ui_breakcheck();
2818 if (got_int)
2819 {
2820 (void)vgetc(); /* only break the file loading, not the rest */
2821 break;
2822 }
2823 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002824
2825 if (parmp->window_layout == WIN_TABS)
2826 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002827# ifdef FEAT_AUTOCMD
2828 --autocmd_no_enter;
2829# endif
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002830
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002831 /* make the first window the current window */
2832 win = firstwin;
2833#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2834 /* Avoid making a preview window the current window. */
2835 while (win->w_p_pvw)
2836 {
2837 win = win->w_next;
2838 if (win == NULL)
2839 {
2840 win = firstwin;
2841 break;
2842 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002843 }
2844#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002845 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002846
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002847# ifdef FEAT_AUTOCMD
2848 --autocmd_no_leave;
2849# endif
2850 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002851 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002852 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2853}
2854#endif /* FEAT_WINDOWS */
2855
2856/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002857 * Execute the commands from --cmd arguments "cmds[cnt]".
2858 */
2859 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002860exe_pre_commands(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002861{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002862 char_u **cmds = parmp->pre_commands;
2863 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002864 int i;
2865
2866 if (cnt > 0)
2867 {
2868 curwin->w_cursor.lnum = 0; /* just in case.. */
2869 sourcing_name = (char_u *)_("pre-vimrc command line");
2870# ifdef FEAT_EVAL
2871 current_SID = SID_CMDARG;
2872# endif
2873 for (i = 0; i < cnt; ++i)
2874 do_cmdline_cmd(cmds[i]);
2875 sourcing_name = NULL;
2876# ifdef FEAT_EVAL
2877 current_SID = 0;
2878# endif
2879 TIME_MSG("--cmd commands");
2880 }
2881}
2882
2883/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002884 * Execute "+", "-c" and "-S" arguments.
2885 */
2886 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002887exe_commands(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002888{
2889 int i;
2890
2891 /*
2892 * We start commands on line 0, make "vim +/pat file" match a
2893 * pattern on line 1. But don't move the cursor when an autocommand
2894 * with g`" was used.
2895 */
2896 msg_scroll = TRUE;
2897 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2898 curwin->w_cursor.lnum = 0;
2899 sourcing_name = (char_u *)"command line";
2900#ifdef FEAT_EVAL
2901 current_SID = SID_CARG;
2902#endif
2903 for (i = 0; i < parmp->n_commands; ++i)
2904 {
2905 do_cmdline_cmd(parmp->commands[i]);
2906 if (parmp->cmds_tofree[i])
2907 vim_free(parmp->commands[i]);
2908 }
2909 sourcing_name = NULL;
2910#ifdef FEAT_EVAL
2911 current_SID = 0;
2912#endif
2913 if (curwin->w_cursor.lnum == 0)
2914 curwin->w_cursor.lnum = 1;
2915
2916 if (!exmode_active)
2917 msg_scroll = FALSE;
2918
2919#ifdef FEAT_QUICKFIX
2920 /* When started with "-q errorfile" jump to first error again. */
2921 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002922 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002923#endif
2924 TIME_MSG("executing command arguments");
2925}
2926
2927/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002928 * Source startup scripts.
2929 */
2930 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002931source_startup_scripts(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002932{
2933 int i;
2934
2935 /*
2936 * For "evim" source evim.vim first of all, so that the user can overrule
2937 * any things he doesn't like.
2938 */
2939 if (parmp->evim_mode)
2940 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002941 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002942 TIME_MSG("source evim file");
2943 }
2944
2945 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002946 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002947 * nothing else.
2948 */
2949 if (parmp->use_vimrc != NULL)
2950 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002951 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2952 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002953 {
2954#ifdef FEAT_GUI
2955 if (use_gvimrc == NULL) /* don't load gvimrc either */
2956 use_gvimrc = parmp->use_vimrc;
2957#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002958 }
2959 else
2960 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002961 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002962 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2963 }
2964 }
2965 else if (!silent_mode)
2966 {
2967#ifdef AMIGA
2968 struct Process *proc = (struct Process *)FindTask(0L);
2969 APTR save_winptr = proc->pr_WindowPtr;
2970
2971 /* Avoid a requester here for a volume that doesn't exist. */
2972 proc->pr_WindowPtr = (APTR)-1L;
2973#endif
2974
2975 /*
2976 * Get system wide defaults, if the file name is defined.
2977 */
2978#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002979 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002980#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002981#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002982 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002983#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002984
2985 /*
2986 * Try to read initialization commands from the following places:
2987 * - environment variable VIMINIT
2988 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2989 * - second user vimrc file ($VIM/.vimrc for Dos)
2990 * - environment variable EXINIT
2991 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2992 * - second user exrc file ($VIM/.exrc for Dos)
2993 * The first that exists is used, the rest is ignored.
2994 */
2995 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2996 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002997 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002998#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002999 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
3000 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003001#endif
3002#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003003 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
3004 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003005#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02003006#ifdef USR_VIMRC_FILE4
3007 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
3008 DOSO_VIMRC) == FAIL
3009#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003010 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003011 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003012#ifdef USR_EXRC_FILE2
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003013 && do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003014#endif
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02003015 && !has_dash_c_arg)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003016 {
3017 /* When no .vimrc file was found: source defaults.vim. */
3018 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003019 }
3020 }
3021
3022 /*
3023 * Read initialization commands from ".vimrc" or ".exrc" in current
3024 * directory. This is only done if the 'exrc' option is set.
3025 * Because of security reasons we disallow shell and write commands
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003026 * now, except for Unix if the file is owned by the user or 'secure'
Bram Moolenaar58d98232005-07-23 22:25:46 +00003027 * option has been reset in environment of global ".exrc" or ".vimrc".
3028 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3029 * SYS_VIMRC_FILE.
3030 */
3031 if (p_exrc)
3032 {
3033#if defined(UNIX) || defined(VMS)
3034 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3035 if (!file_owned(VIMRC_FILE))
3036#endif
3037 secure = p_secure;
3038
3039 i = FAIL;
3040 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3041 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3042#ifdef USR_VIMRC_FILE2
3043 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3044 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3045#endif
3046#ifdef USR_VIMRC_FILE3
3047 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3048 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3049#endif
3050#ifdef SYS_VIMRC_FILE
3051 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3052 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3053#endif
3054 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003055 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003056
3057 if (i == FAIL)
3058 {
3059#if defined(UNIX) || defined(VMS)
3060 /* if ".exrc" is not owned by user set 'secure' mode */
3061 if (!file_owned(EXRC_FILE))
3062 secure = p_secure;
3063 else
3064 secure = 0;
3065#endif
3066 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3067 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3068#ifdef USR_EXRC_FILE2
3069 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3070 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3071#endif
3072 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003073 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003074 }
3075 }
3076 if (secure == 2)
3077 need_wait_return = TRUE;
3078 secure = 0;
3079#ifdef AMIGA
3080 proc->pr_WindowPtr = save_winptr;
3081#endif
3082 }
3083 TIME_MSG("sourcing vimrc file(s)");
3084}
3085
3086/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003087 * Setup to start using the GUI. Exit with an error when not available.
3088 */
3089 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003090main_start_gui(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003091{
3092#ifdef FEAT_GUI
3093 gui.starting = TRUE; /* start GUI a bit later */
3094#else
3095 mch_errmsg(_(e_nogvim));
3096 mch_errmsg("\n");
3097 mch_exit(2);
3098#endif
3099}
3100
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003101#endif /* NO_VIM_MAIN */
3102
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003103/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003104 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003105 * Returns FAIL if the environment variable was not executed, OK otherwise.
3106 */
3107 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003108process_env(
3109 char_u *env,
3110 int is_viminit) /* when TRUE, called for VIMINIT */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003111{
3112 char_u *initstr;
3113 char_u *save_sourcing_name;
3114 linenr_T save_sourcing_lnum;
3115#ifdef FEAT_EVAL
3116 scid_T save_sid;
3117#endif
3118
3119 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3120 {
3121 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003122 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003123 save_sourcing_name = sourcing_name;
3124 save_sourcing_lnum = sourcing_lnum;
3125 sourcing_name = env;
3126 sourcing_lnum = 0;
3127#ifdef FEAT_EVAL
3128 save_sid = current_SID;
3129 current_SID = SID_ENV;
3130#endif
3131 do_cmdline_cmd(initstr);
3132 sourcing_name = save_sourcing_name;
3133 sourcing_lnum = save_sourcing_lnum;
3134#ifdef FEAT_EVAL
Bram Moolenaar945ec092016-06-08 21:17:43 +02003135 current_SID = save_sid;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003136#endif
3137 return OK;
3138 }
3139 return FAIL;
3140}
3141
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003142#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003143/*
3144 * Return TRUE if we are certain the user owns the file "fname".
3145 * Used for ".vimrc" and ".exrc".
3146 * Use both stat() and lstat() for extra security.
3147 */
3148 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003149file_owned(char *fname)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003150{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003151 stat_T s;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003152# ifdef UNIX
3153 uid_t uid = getuid();
3154# else /* VMS */
3155 uid_t uid = ((getgid() << 16) | getuid());
3156# endif
3157
3158 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3159# ifdef HAVE_LSTAT
3160 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3161# endif
3162 );
3163}
3164#endif
3165
3166/*
3167 * Give an error message main_errors["n"] and exit.
3168 */
3169 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003170mainerr(
3171 int n, /* one of the ME_ defines */
3172 char_u *str) /* extra argument or NULL */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003173{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003174#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003175 reset_signals(); /* kill us with CTRL-C here, if you like */
3176#endif
3177
3178 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003179 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003180 mch_errmsg(_(main_errors[n]));
3181 if (str != NULL)
3182 {
3183 mch_errmsg(": \"");
3184 mch_errmsg((char *)str);
3185 mch_errmsg("\"");
3186 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003187 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003188
3189 mch_exit(1);
3190}
3191
3192 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003193mainerr_arg_missing(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003194{
3195 mainerr(ME_ARG_MISSING, str);
3196}
3197
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003198#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003199/*
3200 * print a message with three spaces prepended and '\n' appended.
3201 */
3202 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003203main_msg(char *s)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003204{
3205 mch_msg(" ");
3206 mch_msg(s);
3207 mch_msg("\n");
3208}
3209
3210/*
3211 * Print messages for "vim -h" or "vim --help" and exit.
3212 */
3213 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003214usage(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003215{
3216 int i;
3217 static char *(use[]) =
3218 {
3219 N_("[file ..] edit specified file(s)"),
3220 N_("- read text from stdin"),
3221 N_("-t tag edit file where tag is defined"),
3222#ifdef FEAT_QUICKFIX
3223 N_("-q [errorfile] edit file with first error")
3224#endif
3225 };
3226
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003227#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003228 reset_signals(); /* kill us with CTRL-C here, if you like */
3229#endif
3230
3231 mch_msg(longVersion);
3232 mch_msg(_("\n\nusage:"));
3233 for (i = 0; ; ++i)
3234 {
3235 mch_msg(_(" vim [arguments] "));
3236 mch_msg(_(use[i]));
3237 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3238 break;
3239 mch_msg(_("\n or:"));
3240 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003241#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003242 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003243#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003244
3245 mch_msg(_("\n\nArguments:\n"));
3246 main_msg(_("--\t\t\tOnly file names after this"));
Bram Moolenaar53076832015-12-31 19:53:21 +01003247#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003248 main_msg(_("--literal\t\tDon't expand wildcards"));
3249#endif
3250#ifdef FEAT_OLE
3251 main_msg(_("-register\t\tRegister this gvim for OLE"));
3252 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3253#endif
3254#ifdef FEAT_GUI
3255 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3256 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3257#endif
3258 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3259 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003260 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003261 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3262#ifdef FEAT_DIFF
3263 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3264#endif
3265 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3266 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3267 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3268 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3269 main_msg(_("-M\t\t\tModifications in text not allowed"));
3270 main_msg(_("-b\t\t\tBinary mode"));
3271#ifdef FEAT_LISP
3272 main_msg(_("-l\t\t\tLisp mode"));
3273#endif
3274 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3275 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003276 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3277#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003278 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003279#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003280 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3281 main_msg(_("-r\t\t\tList swap files and exit"));
3282 main_msg(_("-r (with file name)\tRecover crashed session"));
3283 main_msg(_("-L\t\t\tSame as -r"));
3284#ifdef AMIGA
3285 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3286 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3287#endif
3288#ifdef FEAT_ARABIC
3289 main_msg(_("-A\t\t\tstart in Arabic mode"));
3290#endif
3291#ifdef FEAT_RIGHTLEFT
3292 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3293#endif
3294#ifdef FEAT_FKMAP
3295 main_msg(_("-F\t\t\tStart in Farsi mode"));
3296#endif
3297 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01003298 main_msg(_("--not-a-term\t\tSkip warning for input/output not being a terminal"));
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01003299 main_msg(_("--ttyfail\t\tExit if input or output is not a terminal"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003300 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3301#ifdef FEAT_GUI
3302 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3303#endif
3304 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003305#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003306 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003307 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3308 main_msg(_("-O[N]\t\tLike -o but split vertically"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003309#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003310 main_msg(_("+\t\t\tStart at end of file"));
3311 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003312 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003313 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3314 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3315 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3316 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3317 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3318#ifdef FEAT_CRYPT
3319 main_msg(_("-x\t\t\tEdit encrypted files"));
3320#endif
3321#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3322# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3323 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3324# endif
3325 main_msg(_("-X\t\t\tDo not connect to X server"));
3326#endif
3327#ifdef FEAT_CLIENTSERVER
3328 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3329 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3330 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3331 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003332# ifdef FEAT_WINDOWS
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003333 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003334# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003335 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3336 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3337 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3338 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3339#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003340#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003341 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003342#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003343#ifdef FEAT_VIMINFO
3344 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3345#endif
3346 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3347 main_msg(_("--version\t\tPrint version information and exit"));
3348
3349#ifdef FEAT_GUI_X11
3350# ifdef FEAT_GUI_MOTIF
3351 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3352# else
3353# ifdef FEAT_GUI_ATHENA
3354# ifdef FEAT_GUI_NEXTAW
3355 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3356# else
3357 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3358# endif
3359# endif
3360# endif
3361 main_msg(_("-display <display>\tRun vim on <display>"));
3362 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003363 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3364 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3365 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3366 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3367 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3368 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3369 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3370 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3371# ifdef FEAT_GUI_ATHENA
3372 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3373# endif
3374 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3375 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3376 main_msg(_("-xrm <resource>\tSet the specified resource"));
3377#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003378#ifdef FEAT_GUI_GTK
3379 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3380 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3381 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3382 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3383 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003384 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003385 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003386 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003387#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003388#ifdef FEAT_GUI_W32
3389 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003390 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003391#endif
3392
3393#ifdef FEAT_GUI_GNOME
3394 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3395 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003396 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003397 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003398 gui.dofork = FALSE;
3399 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003400 else
3401#endif
3402 mch_exit(0);
3403}
3404
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003405#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003406/*
3407 * Check the result of the ATTENTION dialog:
3408 * When "Quit" selected, exit Vim.
3409 * When "Recover" selected, recover the file.
3410 */
3411 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003412check_swap_exists_action(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003413{
3414 if (swap_exists_action == SEA_QUIT)
3415 getout(1);
3416 handle_swap_exists(NULL);
3417}
3418#endif
3419
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003420#endif
3421
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003422#if defined(STARTUPTIME) || defined(PROTO)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003423static void time_diff(struct timeval *then, struct timeval *now);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003424
3425static struct timeval prev_timeval;
3426
Bram Moolenaar3f269672009-11-03 11:11:11 +00003427# ifdef WIN3264
3428/*
3429 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3430 */
3431 static int
3432gettimeofday(struct timeval *tv, char *dummy)
3433{
3434 long t = clock();
3435 tv->tv_sec = t / CLOCKS_PER_SEC;
3436 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3437 return 0;
3438}
3439# endif
3440
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003441/*
3442 * Save the previous time before doing something that could nest.
3443 * set "*tv_rel" to the time elapsed so far.
3444 */
3445 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003446time_push(void *tv_rel, void *tv_start)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003447{
3448 *((struct timeval *)tv_rel) = prev_timeval;
3449 gettimeofday(&prev_timeval, NULL);
3450 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3451 - ((struct timeval *)tv_rel)->tv_usec;
3452 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3453 - ((struct timeval *)tv_rel)->tv_sec;
3454 if (((struct timeval *)tv_rel)->tv_usec < 0)
3455 {
3456 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3457 --((struct timeval *)tv_rel)->tv_sec;
3458 }
3459 *(struct timeval *)tv_start = prev_timeval;
3460}
3461
3462/*
3463 * Compute the previous time after doing something that could nest.
3464 * Subtract "*tp" from prev_timeval;
3465 * Note: The arguments are (void *) to avoid trouble with systems that don't
3466 * have struct timeval.
3467 */
3468 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003469time_pop(
3470 void *tp) /* actually (struct timeval *) */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003471{
3472 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3473 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3474 if (prev_timeval.tv_usec < 0)
3475 {
3476 prev_timeval.tv_usec += 1000000;
3477 --prev_timeval.tv_sec;
3478 }
3479}
3480
3481 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003482time_diff(struct timeval *then, struct timeval *now)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003483{
3484 long usec;
3485 long msec;
3486
3487 usec = now->tv_usec - then->tv_usec;
3488 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3489 usec = usec % 1000L;
3490 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3491}
3492
3493 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003494time_msg(
3495 char *mesg,
3496 void *tv_start) /* only for do_source: start time; actually
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003497 (struct timeval *) */
3498{
3499 static struct timeval start;
3500 struct timeval now;
3501
3502 if (time_fd != NULL)
3503 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003504 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003505 {
3506 gettimeofday(&start, NULL);
3507 prev_timeval = start;
3508 fprintf(time_fd, "\n\ntimes in msec\n");
3509 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3510 fprintf(time_fd, " clock elapsed: other lines\n\n");
3511 }
3512 gettimeofday(&now, NULL);
3513 time_diff(&start, &now);
3514 if (((struct timeval *)tv_start) != NULL)
3515 {
3516 fprintf(time_fd, " ");
3517 time_diff(((struct timeval *)tv_start), &now);
3518 }
3519 fprintf(time_fd, " ");
3520 time_diff(&prev_timeval, &now);
3521 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003522 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003523 }
3524}
3525
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003526#endif
3527
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003528#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003529
3530/*
3531 * Common code for the X command server and the Win32 command server.
3532 */
3533
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003534static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003535
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003536/*
3537 * Do the client-server stuff, unless "--servername ''" was used.
3538 */
3539 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003540exec_on_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003541{
3542 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3543 {
3544# ifdef WIN32
3545 /* Initialise the client/server messaging infrastructure. */
3546 serverInitMessaging();
3547# endif
3548
3549 /*
3550 * When a command server argument was found, execute it. This may
3551 * exit Vim when it was successful. Otherwise it's executed further
3552 * on. Remember the encoding used here in "serverStrEnc".
3553 */
3554 if (parmp->serverArg)
3555 {
3556 cmdsrv_main(&parmp->argc, parmp->argv,
3557 parmp->serverName_arg, &parmp->serverStr);
3558# ifdef FEAT_MBYTE
3559 parmp->serverStrEnc = vim_strsave(p_enc);
3560# endif
3561 }
3562
3563 /* If we're still running, get the name to register ourselves.
3564 * On Win32 can register right now, for X11 need to setup the
3565 * clipboard first, it's further down. */
3566 parmp->servername = serverMakeName(parmp->serverName_arg,
3567 parmp->argv[0]);
3568# ifdef WIN32
3569 if (parmp->servername != NULL)
3570 {
3571 serverSetName(parmp->servername);
3572 vim_free(parmp->servername);
3573 }
3574# endif
3575 }
3576}
3577
3578/*
3579 * Prepare for running as a Vim server.
3580 */
3581 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003582prepare_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003583{
3584# if defined(FEAT_X11)
3585 /*
3586 * Register for remote command execution with :serversend and --remote
3587 * unless there was a -X or a --servername '' on the command line.
3588 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003589 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003590 */
3591 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3592# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003593 (gui.in_use
3594# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003595 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003596# endif
3597 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003598# endif
3599 parmp->serverName_arg != NULL))
3600 {
3601 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3602 vim_free(parmp->servername);
3603 TIME_MSG("register server name");
3604 }
3605 else
3606 serverDelayedStartName = parmp->servername;
3607# endif
3608
3609 /*
3610 * Execute command ourselves if we're here because the send failed (or
3611 * else we would have exited above).
3612 */
3613 if (parmp->serverStr != NULL)
3614 {
3615 char_u *p;
3616
3617 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3618 parmp->serverStr, &p));
3619 vim_free(p);
3620 }
3621}
3622
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003623 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003624cmdsrv_main(
3625 int *argc,
3626 char **argv,
3627 char_u *serverName_arg,
3628 char_u **serverStr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003629{
3630 char_u *res;
3631 int i;
3632 char_u *sname;
3633 int ret;
3634 int didone = FALSE;
3635 int exiterr = 0;
3636 char **newArgV = argv + 1;
3637 int newArgC = 1,
3638 Argc = *argc;
3639 int argtype;
3640#define ARGTYPE_OTHER 0
3641#define ARGTYPE_EDIT 1
3642#define ARGTYPE_EDIT_WAIT 2
3643#define ARGTYPE_SEND 3
3644 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003645 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003646# ifndef FEAT_X11
3647 HWND srv;
3648# else
3649 Window srv;
3650
3651 setup_term_clip();
3652# endif
3653
3654 sname = serverMakeName(serverName_arg, argv[0]);
3655 if (sname == NULL)
3656 return;
3657
3658 /*
3659 * Execute the command server related arguments and remove them
3660 * from the argc/argv array; We may have to return into main()
3661 */
3662 for (i = 1; i < Argc; i++)
3663 {
3664 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003665 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003666 {
3667 for (; i < *argc; i++)
3668 {
3669 *newArgV++ = argv[i];
3670 newArgC++;
3671 }
3672 break;
3673 }
3674
Bram Moolenaareb94e552006-03-11 21:35:11 +00003675 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003676 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003677 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3678 {
3679 char *p = argv[i] + 8;
3680
3681 argtype = ARGTYPE_EDIT;
3682 while (*p != NUL)
3683 {
3684 if (STRNICMP(p, "-wait", 5) == 0)
3685 {
3686 argtype = ARGTYPE_EDIT_WAIT;
3687 p += 5;
3688 }
3689 else if (STRNICMP(p, "-silent", 7) == 0)
3690 {
3691 silent = TRUE;
3692 p += 7;
3693 }
3694 else if (STRNICMP(p, "-tab", 4) == 0)
3695 {
3696 tabs = TRUE;
3697 p += 4;
3698 }
3699 else
3700 {
3701 argtype = ARGTYPE_OTHER;
3702 break;
3703 }
3704 }
3705 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003706 else
3707 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003708
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003709 if (argtype != ARGTYPE_OTHER)
3710 {
3711 if (i == *argc - 1)
3712 mainerr_arg_missing((char_u *)argv[i]);
3713 if (argtype == ARGTYPE_SEND)
3714 {
3715 *serverStr = (char_u *)argv[i + 1];
3716 i++;
3717 }
3718 else
3719 {
3720 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003721 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003722 if (*serverStr == NULL)
3723 {
3724 /* Probably out of memory, exit. */
3725 didone = TRUE;
3726 exiterr = 1;
3727 break;
3728 }
3729 Argc = i;
3730 }
3731# ifdef FEAT_X11
3732 if (xterm_dpy == NULL)
3733 {
3734 mch_errmsg(_("No display"));
3735 ret = -1;
3736 }
3737 else
3738 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3739 NULL, &srv, 0, 0, silent);
3740# else
3741 /* Win32 always works? */
3742 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3743# endif
3744 if (ret < 0)
3745 {
3746 if (argtype == ARGTYPE_SEND)
3747 {
3748 /* Failed to send, abort. */
3749 mch_errmsg(_(": Send failed.\n"));
3750 didone = TRUE;
3751 exiterr = 1;
3752 }
3753 else if (!silent)
3754 /* Let vim start normally. */
3755 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3756 break;
3757 }
3758
3759# ifdef FEAT_GUI_W32
3760 /* Guess that when the server name starts with "g" it's a GUI
3761 * server, which we can bring to the foreground here.
3762 * Foreground() in the server doesn't work very well. */
3763 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3764 SetForegroundWindow(srv);
3765# endif
3766
3767 /*
3768 * For --remote-wait: Wait until the server did edit each
3769 * file. Also detect that the server no longer runs.
3770 */
3771 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3772 {
3773 int numFiles = *argc - i - 1;
3774 int j;
3775 char_u *done = alloc(numFiles);
3776 char_u *p;
3777# ifdef FEAT_GUI_W32
3778 NOTIFYICONDATA ni;
3779 int count = 0;
3780 extern HWND message_window;
3781# endif
3782
3783 if (numFiles > 0 && argv[i + 1][0] == '+')
3784 /* Skip "+cmd" argument, don't wait for it to be edited. */
3785 --numFiles;
3786
3787# ifdef FEAT_GUI_W32
3788 ni.cbSize = sizeof(ni);
3789 ni.hWnd = message_window;
3790 ni.uID = 0;
3791 ni.uFlags = NIF_ICON|NIF_TIP;
3792 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3793 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3794 Shell_NotifyIcon(NIM_ADD, &ni);
3795# endif
3796
3797 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003798 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003799 while (memchr(done, 0, numFiles) != NULL)
3800 {
3801# ifdef WIN32
3802 p = serverGetReply(srv, NULL, TRUE, TRUE);
3803 if (p == NULL)
3804 break;
3805# else
3806 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3807 break;
3808# endif
3809 j = atoi((char *)p);
3810 if (j >= 0 && j < numFiles)
3811 {
3812# ifdef FEAT_GUI_W32
3813 ++count;
3814 sprintf(ni.szTip, _("%d of %d edited"),
3815 count, numFiles);
3816 Shell_NotifyIcon(NIM_MODIFY, &ni);
3817# endif
3818 done[j] = 1;
3819 }
3820 }
3821# ifdef FEAT_GUI_W32
3822 Shell_NotifyIcon(NIM_DELETE, &ni);
3823# endif
3824 }
3825 }
3826 else if (STRICMP(argv[i], "--remote-expr") == 0)
3827 {
3828 if (i == *argc - 1)
3829 mainerr_arg_missing((char_u *)argv[i]);
3830# ifdef WIN32
3831 /* Win32 always works? */
3832 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3833 &res, NULL, 1, FALSE) < 0)
3834# else
3835 if (xterm_dpy == NULL)
3836 mch_errmsg(_("No display: Send expression failed.\n"));
3837 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3838 &res, NULL, 1, 1, FALSE) < 0)
3839# endif
3840 {
3841 if (res != NULL && *res != NUL)
3842 {
3843 /* Output error from remote */
3844 mch_errmsg((char *)res);
3845 vim_free(res);
3846 res = NULL;
3847 }
3848 mch_errmsg(_(": Send expression failed.\n"));
3849 }
3850 }
3851 else if (STRICMP(argv[i], "--serverlist") == 0)
3852 {
3853# ifdef WIN32
3854 /* Win32 always works? */
3855 res = serverGetVimNames();
3856# else
3857 if (xterm_dpy != NULL)
3858 res = serverGetVimNames(xterm_dpy);
3859# endif
3860 if (called_emsg)
3861 mch_errmsg("\n");
3862 }
3863 else if (STRICMP(argv[i], "--servername") == 0)
3864 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003865 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003866 i++;
3867 continue;
3868 }
3869 else
3870 {
3871 *newArgV++ = argv[i];
3872 newArgC++;
3873 continue;
3874 }
3875 didone = TRUE;
3876 if (res != NULL && *res != NUL)
3877 {
3878 mch_msg((char *)res);
3879 if (res[STRLEN(res) - 1] != '\n')
3880 mch_msg("\n");
3881 }
3882 vim_free(res);
3883 }
3884
3885 if (didone)
3886 {
3887 display_errors(); /* display any collected messages */
3888 exit(exiterr); /* Mission accomplished - get out */
3889 }
3890
3891 /* Return back into main() */
3892 *argc = newArgC;
3893 vim_free(sname);
3894}
3895
3896/*
3897 * Build a ":drop" command to send to a Vim server.
3898 */
3899 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003900build_drop_cmd(
3901 int filec,
3902 char **filev,
3903 int tabs, /* Use ":tab drop" instead of ":drop". */
3904 int sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003905{
3906 garray_T ga;
3907 int i;
3908 char_u *inicmd = NULL;
3909 char_u *p;
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003910 char_u *cdp;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003911 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003912
3913 if (filec > 0 && filev[0][0] == '+')
3914 {
3915 inicmd = (char_u *)filev[0] + 1;
3916 filev++;
3917 filec--;
3918 }
3919 /* Check if we have at least one argument. */
3920 if (filec <= 0)
3921 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003922
3923 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003924 cwd = alloc(MAXPATHL);
3925 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003926 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003927 if (mch_dirname(cwd, MAXPATHL) != OK)
3928 {
3929 vim_free(cwd);
3930 return NULL;
3931 }
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003932 cdp = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00003933#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003934 (char_u *)"", /* rem_backslash() will tell what chars to escape */
Bram Moolenaar02b06312007-09-06 15:39:22 +00003935#else
3936 PATH_ESC_CHARS,
3937#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02003938 '\\', TRUE);
3939 vim_free(cwd);
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003940 if (cdp == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003941 return NULL;
3942 ga_init2(&ga, 1, 100);
3943 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003944 ga_concat(&ga, cdp);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003945
3946 /* Call inputsave() so that a prompt for an encryption key works. */
3947 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3948 if (tabs)
3949 ga_concat(&ga, (char_u *)"tab ");
3950 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003951 for (i = 0; i < filec; i++)
3952 {
3953 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003954 * do it again in the Vim server. On MS-Windows only escape
3955 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003956 p = vim_strsave_escaped((char_u *)filev[i],
3957#ifdef UNIX
3958 PATH_ESC_CHARS
3959#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003960 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003961#endif
3962 );
3963 if (p == NULL)
3964 {
3965 vim_free(ga.ga_data);
3966 return NULL;
3967 }
3968 ga_concat(&ga, (char_u *)" ");
3969 ga_concat(&ga, p);
3970 vim_free(p);
3971 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003972 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3973
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003974 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3975 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003976 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
3977
3978 /* Switch back to the correct current directory (prior to temporary path
3979 * switch) unless 'autochdir' is set, in which case it will already be
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003980 * correct after the :drop command. With line breaks and spaces:
3981 * if !exists('+acd') || !&acd
3982 * if haslocaldir()
3983 * cd -
3984 * lcd -
Bram Moolenaarfafeee62015-07-03 13:33:01 +02003985 * elseif getcwd() ==# 'current path'
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003986 * cd -
3987 * endif
3988 * endif
3989 */
3990 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|");
Bram Moolenaarfafeee62015-07-03 13:33:01 +02003991 ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003992 ga_concat(&ga, cdp);
Bram Moolenaarfafeee62015-07-03 13:33:01 +02003993 ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003994 vim_free(cdp);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003995
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003996 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003997 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
3998 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003999 if (inicmd != NULL)
4000 {
4001 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
4002 * the following commands to be inserted as text. Use a "|",
4003 * hopefully "inicmd" does allow this... */
4004 ga_concat(&ga, inicmd);
4005 ga_concat(&ga, (char_u *)"|");
4006 }
4007 /* Bring the window to the foreground, goto Insert mode when 'im' set and
4008 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00004009 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004010 ga_append(&ga, NUL);
4011 return ga.ga_data;
4012}
4013
4014/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004015 * Make our basic server name: use the specified "arg" if given, otherwise use
4016 * the tail of the command "cmd" we were started with.
4017 * Return the name in allocated memory. This doesn't include a serial number.
4018 */
4019 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004020serverMakeName(char_u *arg, char *cmd)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004021{
4022 char_u *p;
4023
4024 if (arg != NULL && *arg != NUL)
4025 p = vim_strsave_up(arg);
4026 else
4027 {
4028 p = vim_strsave_up(gettail((char_u *)cmd));
4029 /* Remove .exe or .bat from the name. */
4030 if (p != NULL && vim_strchr(p, '.') != NULL)
4031 *vim_strchr(p, '.') = NUL;
4032 }
4033 return p;
4034}
4035#endif /* FEAT_CLIENTSERVER */
4036
4037#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4038/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004039 * Replace termcodes such as <CR> and insert as key presses if there is room.
4040 */
4041 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004042server_to_input_buf(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004043{
4044 char_u *ptr = NULL;
4045 char_u *cpo_save = p_cpo;
4046
4047 /* Set 'cpoptions' the way we want it.
4048 * B set - backslashes are *not* treated specially
4049 * k set - keycodes are *not* reverse-engineered
4050 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004051 * The last but one parameter of replace_termcodes() is TRUE so that the
4052 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004053 */
4054 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004055 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004056 p_cpo = cpo_save;
4057
4058 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4059 {
4060 /*
4061 * Add the string to the input stream.
4062 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4063 *
4064 * First clear typed characters from the typeahead buffer, there could
4065 * be half a mapping there. Then append to the existing string, so
4066 * that multiple commands from a client are concatenated.
4067 */
4068 if (typebuf.tb_maplen < typebuf.tb_len)
4069 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4070 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4071
4072 /* Let input_available() know we inserted text in the typeahead
4073 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004074 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004075 }
4076 vim_free((char_u *)ptr);
4077}
4078
4079/*
4080 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004081 */
4082 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004083eval_client_expr_to_string(char_u *expr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004084{
4085 char_u *res;
4086 int save_dbl = debug_break_level;
4087 int save_ro = redir_off;
4088
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004089 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4090 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004091 debug_break_level = -1;
4092 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004093 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4094 * to be typed. Do generate errors so that try/catch works. */
4095 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004096
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004097 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004098
4099 debug_break_level = save_dbl;
4100 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004101 --emsg_silent;
4102 if (emsg_silent < 0)
4103 emsg_silent = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004104
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004105 /* A client can tell us to redraw, but not to display the cursor, so do
4106 * that here. */
4107 setcursor();
4108 out_flush();
4109#ifdef FEAT_GUI
4110 if (gui.in_use)
4111 gui_update_cursor(FALSE, FALSE);
4112#endif
4113
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004114 return res;
4115}
4116
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004117/*
4118 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4119 * return an allocated string. Otherwise return "data".
4120 * "*tofree" is set to the result when it needs to be freed later.
4121 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004122 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004123serverConvert(
4124 char_u *client_enc UNUSED,
4125 char_u *data,
4126 char_u **tofree)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004127{
4128 char_u *res = data;
4129
4130 *tofree = NULL;
4131# ifdef FEAT_MBYTE
4132 if (client_enc != NULL && p_enc != NULL)
4133 {
4134 vimconv_T vimconv;
4135
4136 vimconv.vc_type = CONV_NONE;
4137 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4138 && vimconv.vc_type != CONV_NONE)
4139 {
4140 res = string_convert(&vimconv, data, NULL);
4141 if (res == NULL)
4142 res = data;
4143 else
4144 *tofree = res;
4145 }
4146 convert_setup(&vimconv, NULL, NULL);
4147 }
4148# endif
4149 return res;
4150}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004151#endif