blob: 87931325bab75667555aa2e2b1a9217f55145dac [file] [log] [blame]
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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 Moolenaara8e691d2016-08-07 15:19:26 +0200976 paramp->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 Moolenaarb2c03502010-07-02 20:20:09 +02001121#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001122 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001123 if (!finish_op && (
1124# ifdef FEAT_AUTOCMD
1125 has_cursormoved()
1126# endif
1127# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
1128 ||
1129# endif
1130# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001131 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001132# endif
1133 )
Bram Moolenaard1413d92016-03-02 21:51:56 +01001134# ifdef FEAT_AUTOCMD
1135 && !equalpos(last_cursormoved, curwin->w_cursor)
1136# endif
1137 )
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001138 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001139# ifdef FEAT_AUTOCMD
1140 if (has_cursormoved())
1141 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1142 FALSE, curbuf);
1143# endif
1144# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001145 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001146 {
Bram Moolenaard1413d92016-03-02 21:51:56 +01001147# ifdef FEAT_AUTOCMD
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001148 conceal_old_cursor_line = last_cursormoved.lnum;
Bram Moolenaard1413d92016-03-02 21:51:56 +01001149# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001150 conceal_new_cursor_line = curwin->w_cursor.lnum;
1151 conceal_update_lines = TRUE;
1152 }
1153# endif
Bram Moolenaard1413d92016-03-02 21:51:56 +01001154# ifdef FEAT_AUTOCMD
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001155 last_cursormoved = curwin->w_cursor;
Bram Moolenaard1413d92016-03-02 21:51:56 +01001156# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001157 }
1158#endif
1159
Bram Moolenaar186628f2013-03-19 13:33:23 +01001160#ifdef FEAT_AUTOCMD
1161 /* Trigger TextChanged if b_changedtick differs. */
1162 if (!finish_op && has_textchanged()
1163 && last_changedtick != curbuf->b_changedtick)
1164 {
1165 if (last_changedtick_buf == curbuf)
1166 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL,
1167 FALSE, curbuf);
1168 last_changedtick_buf = curbuf;
1169 last_changedtick = curbuf->b_changedtick;
1170 }
1171#endif
1172
Bram Moolenaar33aec762006-01-22 23:30:12 +00001173#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1174 /* Scroll-binding for diff mode may have been postponed until
1175 * here. Avoids doing it for every change. */
1176 if (diff_need_scrollbind)
1177 {
1178 check_scrollbind((linenr_T)0, 0L);
1179 diff_need_scrollbind = FALSE;
1180 }
1181#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001182#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001183 /* Include a closed fold completely in the Visual area. */
1184 foldAdjustVisual();
1185#endif
1186#ifdef FEAT_FOLDING
1187 /*
1188 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1189 * contain the cursor.
1190 * When 'foldopen' is "all", open the fold(s) under the cursor.
1191 * This may mark the window for redrawing.
1192 */
1193 if (hasAnyFolding(curwin) && !char_avail())
1194 {
1195 foldCheckClose();
1196 if (fdo_flags & FDO_ALL)
1197 foldOpenCursor();
1198 }
1199#endif
1200
1201 /*
1202 * Before redrawing, make sure w_topline is correct, and w_leftcol
1203 * if lines don't wrap, and w_skipcol if lines wrap.
1204 */
1205 update_topline();
1206 validate_cursor();
1207
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001208 if (VIsual_active)
1209 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001210 else if (must_redraw)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001211 update_screen(0);
1212 else if (redraw_cmdline || clear_cmdline)
1213 showmode();
1214#ifdef FEAT_WINDOWS
1215 redraw_statuslines();
1216#endif
1217#ifdef FEAT_TITLE
1218 if (need_maketitle)
1219 maketitle();
1220#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001221#ifdef FEAT_VIMINFO
1222 curbuf->b_last_used = vim_time();
1223#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001224 /* display message after redraw */
1225 if (keep_msg != NULL)
1226 {
1227 char_u *p;
1228
1229 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001230 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1231 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001232 p = keep_msg;
1233 msg_attr(p, keep_msg_attr);
1234 vim_free(p);
1235 }
1236 if (need_fileinfo) /* show file info after redraw */
1237 {
1238 fileinfo(FALSE, TRUE, FALSE);
1239 need_fileinfo = FALSE;
1240 }
1241
1242 emsg_on_display = FALSE; /* can delete error message now */
1243 did_emsg = FALSE;
1244 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001245 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001246 showruler(FALSE);
1247
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001248# if defined(FEAT_CONCEAL)
1249 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001250 && (conceal_old_cursor_line != conceal_new_cursor_line
1251 || conceal_cursor_line(curwin)
1252 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001253 {
Bram Moolenaarc2b4c622011-02-15 16:29:59 +01001254 if (conceal_old_cursor_line != conceal_new_cursor_line
1255 && conceal_old_cursor_line
1256 <= curbuf->b_ml.ml_line_count)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001257 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001258 update_single_line(curwin, conceal_new_cursor_line);
1259 curwin->w_valid &= ~VALID_CROW;
1260 }
1261# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001262 setcursor();
1263 cursor_on();
1264
1265 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001266
1267#ifdef STARTUPTIME
1268 /* Now that we have drawn the first screen all the startup stuff
1269 * has been done, close any file for startup messages. */
1270 if (time_fd != NULL)
1271 {
1272 TIME_MSG("first screen update");
1273 TIME_MSG("--- VIM STARTED ---");
1274 fclose(time_fd);
1275 time_fd = NULL;
1276 }
1277#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001278 }
1279#ifdef FEAT_GUI
1280 if (need_mouse_correct)
1281 gui_mouse_correct();
1282#endif
1283
1284 /*
1285 * Update w_curswant if w_set_curswant has been set.
1286 * Postponed until here to avoid computing w_virtcol too often.
1287 */
1288 update_curswant();
1289
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001290#ifdef FEAT_EVAL
1291 /*
1292 * May perform garbage collection when waiting for a character, but
1293 * only at the very toplevel. Otherwise we may be using a List or
1294 * Dict internally somewhere.
1295 * "may_garbage_collect" is reset in vgetc() which is invoked through
1296 * do_exmode() and normal_cmd().
1297 */
1298 may_garbage_collect = (!cmdwin && !noexmode);
1299#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001300 /*
1301 * If we're invoked as ex, do a round of ex commands.
1302 * Otherwise, get and execute a normal mode command.
1303 */
1304 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001305 {
1306 if (noexmode) /* End of ":global/path/visual" commands */
1307 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001308 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001309 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001310 else
1311 normal_cmd(&oa, TRUE);
1312 }
1313}
1314
1315
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001316#if defined(USE_XSMP) || defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001317/*
1318 * Exit, but leave behind swap files for modified buffers.
1319 */
1320 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001321getout_preserve_modified(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001322{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001323# if defined(SIGHUP) && defined(SIG_IGN)
1324 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1325 * makes Vim exit and then handling SIGHUP causes various reentrance
1326 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001327 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001328# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001329
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001330 ml_close_notmod(); /* close all not-modified buffers */
1331 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1332 ml_close_all(FALSE); /* close all memfiles, without deleting */
1333 getout(exitval); /* exit Vim properly */
1334}
1335#endif
1336
1337
Bram Moolenaar6d8d8492016-03-19 14:48:31 +01001338/*
1339 * Exit properly.
1340 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001341 void
Bram Moolenaarb7604cc2016-01-15 21:23:22 +01001342getout(int exitval)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001343{
1344#ifdef FEAT_AUTOCMD
1345 buf_T *buf;
1346 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001347 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001348#endif
1349
1350 exiting = TRUE;
1351
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001352 /* When running in Ex mode an error causes us to exit with a non-zero exit
1353 * code. POSIX requires this, although it's not 100% clear from the
1354 * standard. */
1355 if (exmode_active)
1356 exitval += ex_exitval;
1357
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001358 /* Position the cursor on the last screen line, below all the text */
1359#ifdef FEAT_GUI
1360 if (!gui.in_use)
1361#endif
1362 windgoto((int)Rows - 1, 0);
1363
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001364#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1365 /* Optionally print hashtable efficiency. */
1366 hash_debug_results();
1367#endif
1368
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001369#ifdef FEAT_GUI
1370 msg_didany = FALSE;
1371#endif
1372
1373#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001374 if (get_vim_var_nr(VV_DYING) <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001375 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001376 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1377# if defined FEAT_WINDOWS
1378 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001379 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001380 next_tp = tp->tp_next;
Bram Moolenaar29323592016-07-24 22:04:11 +02001381 FOR_ALL_WINDOWS_IN_TAB(tp, wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001382 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001383 if (wp->w_buffer == NULL)
1384 /* Autocmd must have close the buffer already, skip. */
1385 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001386 buf = wp->w_buffer;
1387 if (buf->b_changedtick != -1)
1388 {
1389 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1390 buf->b_fname, FALSE, buf);
Bram Moolenaarb429cde2012-04-25 18:24:29 +02001391 buf->b_changedtick = -1; /* note that we did it already */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001392 /* start all over, autocommands may mess up the lists */
1393 next_tp = first_tabpage;
1394 break;
1395 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001396 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001397 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001398# else
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001399 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname,
1400 FALSE, curbuf);
Bram Moolenaarf740b292006-02-16 22:11:02 +00001401# endif
Bram Moolenaar33aec762006-01-22 23:30:12 +00001402
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001403 /* Trigger BufUnload for buffers that are loaded */
Bram Moolenaar29323592016-07-24 22:04:11 +02001404 FOR_ALL_BUFFERS(buf)
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001405 if (buf->b_ml.ml_mfp != NULL)
1406 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001407 bufref_T bufref;
1408
1409 set_bufref(&bufref, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001410 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001411 FALSE, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001412 if (!bufref_valid(&bufref))
1413 /* autocmd deleted the buffer */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001414 break;
1415 }
1416 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1417 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001418#endif
1419
1420#ifdef FEAT_VIMINFO
1421 if (*p_viminfo != NUL)
1422 /* Write out the registers, history, marks etc, to the viminfo file */
1423 write_viminfo(NULL, FALSE);
1424#endif
1425
1426#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001427 if (get_vim_var_nr(VV_DYING) <= 1)
1428 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001429#endif
1430
Bram Moolenaar05159a02005-02-26 23:04:13 +00001431#ifdef FEAT_PROFILE
1432 profile_dump();
1433#endif
1434
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001435 if (did_emsg
1436#ifdef FEAT_GUI
1437 || (gui.in_use && msg_didany && p_verbose > 0)
1438#endif
1439 )
1440 {
1441 /* give the user a chance to read the (error) message */
1442 no_wait_return = FALSE;
1443 wait_return(FALSE);
1444 }
1445
1446#ifdef FEAT_AUTOCMD
1447 /* Position the cursor again, the autocommands may have moved it */
1448# ifdef FEAT_GUI
1449 if (!gui.in_use)
1450# endif
1451 windgoto((int)Rows - 1, 0);
1452#endif
1453
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001454#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar65edff82016-02-21 16:40:11 +01001455 job_stop_on_exit();
1456#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001457#ifdef FEAT_LUA
1458 lua_end();
1459#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001460#ifdef FEAT_MZSCHEME
1461 mzscheme_end();
1462#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001463#ifdef FEAT_TCL
1464 tcl_end();
1465#endif
1466#ifdef FEAT_RUBY
1467 ruby_end();
1468#endif
1469#ifdef FEAT_PYTHON
1470 python_end();
1471#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001472#ifdef FEAT_PYTHON3
1473 python3_end();
1474#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001475#ifdef FEAT_PERL
1476 perl_end();
1477#endif
1478#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1479 iconv_end();
1480#endif
1481#ifdef FEAT_NETBEANS_INTG
1482 netbeans_end();
1483#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001484#ifdef FEAT_CSCOPE
1485 cs_end();
1486#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001487#ifdef FEAT_EVAL
1488 if (garbage_collect_at_exit)
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02001489 garbage_collect(FALSE);
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001490#endif
Bram Moolenaar14993322014-09-09 12:25:33 +02001491#if defined(WIN32) && defined(FEAT_MBYTE)
1492 free_cmd_argsW();
1493#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001494
1495 mch_exit(exitval);
1496}
1497
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001498#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1499/*
1500 * Setup to use the current locale (for ctype() and many other things).
1501 */
1502 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001503init_locale(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001504{
1505 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001506
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001507# ifdef FEAT_GUI_GTK
1508 /* Tell Gtk not to change our locale settings. */
1509 gtk_disable_setlocale();
1510# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001511# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1512 /* Make sure strtod() uses a decimal point, not a comma. */
1513 setlocale(LC_NUMERIC, "C");
1514# endif
1515
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001516# ifdef WIN32
1517 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1518 * text while it's expecting text in the current locale. This call avoids
1519 * that. */
1520 setlocale(LC_CTYPE, "C");
1521# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001522
1523# ifdef FEAT_GETTEXT
1524 {
1525 int mustfree = FALSE;
1526 char_u *p;
1527
1528# ifdef DYNAMIC_GETTEXT
1529 /* Initialize the gettext library */
Bram Moolenaar286eacd2016-01-16 18:05:50 +01001530 dyn_libintl_init();
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001531# endif
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001532 /* expand_env() doesn't work yet, because g_chartab[] is not
1533 * initialized yet, call vim_getenv() directly */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001534 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1535 if (p != NULL && *p != NUL)
1536 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001537 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001538 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1539 }
1540 if (mustfree)
1541 vim_free(p);
1542 textdomain(VIMPACKAGE);
1543 }
1544# endif
1545}
1546#endif
1547
1548/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001549 * Get the name of the display, before gui_prepare() removes it from
1550 * argv[]. Used for the xterm-clipboard display.
1551 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001552 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001553 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001554 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001555early_arg_scan(mparm_T *parmp UNUSED)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001556{
Bram Moolenaar03005972008-11-20 13:12:36 +00001557#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1558 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001559 int argc = parmp->argc;
1560 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001561 int i;
1562
1563 for (i = 1; i < argc; i++)
1564 {
1565 if (STRCMP(argv[i], "--") == 0)
1566 break;
1567# ifdef FEAT_XCLIPBOARD
1568 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001569# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001570 || STRICMP(argv[i], "--display") == 0
1571# endif
1572 )
1573 {
1574 if (i == argc - 1)
1575 mainerr_arg_missing((char_u *)argv[i]);
1576 xterm_display = argv[++i];
1577 }
1578# endif
1579# ifdef FEAT_CLIENTSERVER
1580 else if (STRICMP(argv[i], "--servername") == 0)
1581 {
1582 if (i == argc - 1)
1583 mainerr_arg_missing((char_u *)argv[i]);
1584 parmp->serverName_arg = (char_u *)argv[++i];
1585 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001586 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001587 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001588 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001589 {
1590 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001591# ifdef FEAT_GUI
1592 if (strstr(argv[i], "-wait") != 0)
1593 /* don't fork() when starting the GUI to edit files ourself */
1594 gui.dofork = FALSE;
1595# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001596 }
1597# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001598
1599# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1600# ifdef FEAT_GUI_W32
1601 else if (STRICMP(argv[i], "--windowid") == 0)
1602# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001603 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001604# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001605 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001606 long_u id;
1607 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001608
1609 if (i == argc - 1)
1610 mainerr_arg_missing((char_u *)argv[i]);
1611 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001612 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001613 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001614 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001615 if (count != 1)
1616 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1617 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001618# ifdef FEAT_GUI_W32
1619 win_socket_id = id;
1620# else
1621 gtk_socket_id = id;
1622# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001623 i++;
1624 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001625# endif
1626# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001627 else if (STRICMP(argv[i], "--echo-wid") == 0)
1628 echo_wid_arg = TRUE;
1629# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001630# ifndef FEAT_NETBEANS_INTG
1631 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001632 {
1633 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1634 mch_exit(2);
1635 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001636# endif
1637
Bram Moolenaar58d98232005-07-23 22:25:46 +00001638 }
1639#endif
1640}
1641
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001642#ifndef NO_VIM_MAIN
1643/*
1644 * Get a (optional) count for a Vim argument.
1645 */
1646 static int
1647get_number_arg(
1648 char_u *p, /* pointer to argument */
1649 int *idx, /* index in argument, is incremented */
1650 int def) /* default value */
1651{
1652 if (vim_isdigit(p[*idx]))
1653 {
1654 def = atoi((char *)&(p[*idx]));
1655 while (vim_isdigit(p[*idx]))
1656 *idx = *idx + 1;
1657 }
1658 return def;
1659}
1660
1661/*
1662 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1663 * If the executable name starts with "r" we disable shell commands.
1664 * If the next character is "e" we run in Easy mode.
1665 * If the next character is "g" we run the GUI version.
1666 * If the next characters are "view" we start in readonly mode.
1667 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1668 * If the next characters are "ex" we start in Ex mode. If it's followed
1669 * by "im" use improved Ex mode.
1670 */
1671 static void
1672parse_command_name(mparm_T *parmp)
1673{
1674 char_u *initstr;
1675
1676 initstr = gettail((char_u *)parmp->argv[0]);
1677
1678#ifdef MACOS_X_UNIX
1679 /* An issue has been seen when launching Vim in such a way that
1680 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1681 * executable or a symbolic link of it. Until this issue is resolved
1682 * we prohibit the GUI from being used.
1683 */
1684 if (STRCMP(initstr, parmp->argv[0]) == 0)
1685 disallow_gui = TRUE;
1686
1687 /* TODO: On MacOS X default to gui if argv[0] ends in:
1688 * /Vim.app/Contents/MacOS/Vim */
1689#endif
1690
1691#ifdef FEAT_EVAL
1692 set_vim_var_string(VV_PROGNAME, initstr, -1);
1693 set_vim_var_string(VV_PROGPATH, (char_u *)parmp->argv[0], -1);
1694#endif
1695
1696 if (TOLOWER_ASC(initstr[0]) == 'r')
1697 {
1698 restricted = TRUE;
1699 ++initstr;
1700 }
1701
1702 /* Use evim mode for "evim" and "egvim", not for "editor". */
1703 if (TOLOWER_ASC(initstr[0]) == 'e'
1704 && (TOLOWER_ASC(initstr[1]) == 'v'
1705 || TOLOWER_ASC(initstr[1]) == 'g'))
1706 {
1707#ifdef FEAT_GUI
1708 gui.starting = TRUE;
1709#endif
1710 parmp->evim_mode = TRUE;
1711 ++initstr;
1712 }
1713
1714 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1715 if (TOLOWER_ASC(initstr[0]) == 'g')
1716 {
1717 main_start_gui();
1718#ifdef FEAT_GUI
1719 ++initstr;
1720#endif
1721 }
1722
1723 if (STRNICMP(initstr, "view", 4) == 0)
1724 {
1725 readonlymode = TRUE;
1726 curbuf->b_p_ro = TRUE;
1727 p_uc = 10000; /* don't update very often */
1728 initstr += 4;
1729 }
1730 else if (STRNICMP(initstr, "vim", 3) == 0)
1731 initstr += 3;
1732
1733 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1734 if (STRICMP(initstr, "diff") == 0)
1735 {
1736#ifdef FEAT_DIFF
1737 parmp->diff_mode = TRUE;
1738#else
1739 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1740 mch_errmsg("\n");
1741 mch_exit(2);
1742#endif
1743 }
1744
1745 if (STRNICMP(initstr, "ex", 2) == 0)
1746 {
1747 if (STRNICMP(initstr + 2, "im", 2) == 0)
1748 exmode_active = EXMODE_VIM;
1749 else
1750 exmode_active = EXMODE_NORMAL;
1751 change_compatible(TRUE); /* set 'compatible' */
1752 }
1753}
1754
Bram Moolenaar58d98232005-07-23 22:25:46 +00001755/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001756 * Scan the command line arguments.
1757 */
1758 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001759command_line_scan(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001760{
1761 int argc = parmp->argc;
1762 char **argv = parmp->argv;
1763 int argv_idx; /* index in argv[n][] */
1764 int had_minmin = FALSE; /* found "--" argument */
1765 int want_argument; /* option argument with argument */
1766 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001767 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001768 long n;
1769
1770 --argc;
1771 ++argv;
1772 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1773 while (argc > 0)
1774 {
1775 /*
1776 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1777 */
1778 if (argv[0][0] == '+' && !had_minmin)
1779 {
1780 if (parmp->n_commands >= MAX_ARG_CMDS)
1781 mainerr(ME_EXTRA_CMD, NULL);
1782 argv_idx = -1; /* skip to next argument */
1783 if (argv[0][1] == NUL)
1784 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1785 else
1786 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1787 }
1788
1789 /*
1790 * Optional argument.
1791 */
1792 else if (argv[0][0] == '-' && !had_minmin)
1793 {
1794 want_argument = FALSE;
1795 c = argv[0][argv_idx++];
1796#ifdef VMS
1797 /*
1798 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1799 * and "-/X" as "-X".
1800 */
1801 if (c == '/')
1802 {
1803 c = argv[0][argv_idx++];
1804 c = TOUPPER_ASC(c);
1805 }
1806 else
1807 c = TOLOWER_ASC(c);
1808#endif
1809 switch (c)
1810 {
1811 case NUL: /* "vim -" read from stdin */
1812 /* "ex -" silent mode */
1813 if (exmode_active)
1814 silent_mode = TRUE;
1815 else
1816 {
1817 if (parmp->edit_type != EDIT_NONE)
1818 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1819 parmp->edit_type = EDIT_STDIN;
1820 read_cmd_fd = 2; /* read from stderr instead of stdin */
1821 }
1822 argv_idx = -1; /* skip to next argument */
1823 break;
1824
1825 case '-': /* "--" don't take any more option arguments */
1826 /* "--help" give help message */
1827 /* "--version" give version message */
1828 /* "--literal" take files literally */
1829 /* "--nofork" don't fork */
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001830 /* "--not-a-term" don't warn for not a term */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001831 /* "--noplugin[s]" skip plugins */
1832 /* "--cmd <cmd>" execute cmd before vimrc */
1833 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1834 usage();
1835 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1836 {
1837 Columns = 80; /* need to init Columns */
1838 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1839 list_version();
1840 msg_putchar('\n');
1841 msg_didout = FALSE;
1842 mch_exit(0);
1843 }
1844 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1845 {
Bram Moolenaar53076832015-12-31 19:53:21 +01001846#ifdef EXPAND_FILENAMES
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001847 parmp->literal = TRUE;
1848#endif
1849 }
1850 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1851 {
1852#ifdef FEAT_GUI
1853 gui.dofork = FALSE; /* don't fork() when starting GUI */
1854#endif
1855 }
1856 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1857 p_lpl = FALSE;
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01001858 else if (STRNICMP(argv[0] + argv_idx, "not-a-term", 10) == 0)
1859 parmp->not_a_term = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001860 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1861 {
1862 want_argument = TRUE;
1863 argv_idx += 3;
1864 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001865 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1866 {
1867 want_argument = TRUE;
1868 argv_idx += 11;
1869 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001870#ifdef FEAT_CLIENTSERVER
1871 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1872 ; /* already processed -- no arg */
1873 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1874 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1875 {
1876 /* already processed -- snatch the following arg */
1877 if (argc > 1)
1878 {
1879 --argc;
1880 ++argv;
1881 }
1882 }
1883#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001884#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1885# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001886 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001887# else
1888 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1889# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001890 {
1891 /* already processed -- snatch the following arg */
1892 if (argc > 1)
1893 {
1894 --argc;
1895 ++argv;
1896 }
1897 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001898#endif
1899#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001900 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1901 {
1902 /* already processed, skip */
1903 }
1904#endif
1905 else
1906 {
1907 if (argv[0][argv_idx])
1908 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1909 had_minmin = TRUE;
1910 }
1911 if (!want_argument)
1912 argv_idx = -1; /* skip to next argument */
1913 break;
1914
1915 case 'A': /* "-A" start in Arabic mode */
1916#ifdef FEAT_ARABIC
1917 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1918#else
1919 mch_errmsg(_(e_noarabic));
1920 mch_exit(2);
1921#endif
1922 break;
1923
1924 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001925 /* Needs to be effective before expanding file names, because
1926 * for Win32 this makes us edit a shortcut file itself,
1927 * instead of the file it links to. */
1928 set_options_bin(curbuf->b_p_bin, 1, 0);
1929 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001930 break;
1931
1932 case 'C': /* "-C" Compatible */
1933 change_compatible(TRUE);
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02001934 has_dash_c_arg = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001935 break;
1936
1937 case 'e': /* "-e" Ex mode */
1938 exmode_active = EXMODE_NORMAL;
1939 break;
1940
1941 case 'E': /* "-E" Improved Ex mode */
1942 exmode_active = EXMODE_VIM;
1943 break;
1944
1945 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1946 window directly, not with newcli */
1947#ifdef FEAT_GUI
1948 gui.dofork = FALSE; /* don't fork() when starting GUI */
1949#endif
1950 break;
1951
1952 case 'g': /* "-g" start GUI */
1953 main_start_gui();
1954 break;
1955
1956 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1957#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001958 p_fkmap = TRUE;
1959 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001960#else
1961 mch_errmsg(_(e_nofarsi));
1962 mch_exit(2);
1963#endif
1964 break;
1965
1966 case 'h': /* "-h" give help message */
1967#ifdef FEAT_GUI_GNOME
1968 /* Tell usage() to exit for "gvim". */
1969 gui.starting = FALSE;
1970#endif
1971 usage();
1972 break;
1973
1974 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1975#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001976 p_hkmap = TRUE;
1977 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001978#else
1979 mch_errmsg(_(e_nohebrew));
1980 mch_exit(2);
1981#endif
1982 break;
1983
1984 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1985#ifdef FEAT_LISP
1986 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1987 p_sm = TRUE;
1988#endif
1989 break;
1990
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001991 case 'M': /* "-M" no changes or writing of files */
1992 reset_modifiable();
1993 /* FALLTHROUGH */
1994
1995 case 'm': /* "-m" no writing of files */
1996 p_write = FALSE;
1997 break;
1998
1999 case 'y': /* "-y" easy mode */
2000#ifdef FEAT_GUI
2001 gui.starting = TRUE; /* start GUI a bit later */
2002#endif
2003 parmp->evim_mode = TRUE;
2004 break;
2005
2006 case 'N': /* "-N" Nocompatible */
2007 change_compatible(FALSE);
2008 break;
2009
2010 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002011#ifdef FEAT_NETBEANS_INTG
2012 /* checking for "-nb", netbeans parameters */
2013 if (argv[0][argv_idx] == 'b')
2014 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002015 netbeansArg = argv[0];
2016 argv_idx = -1; /* skip to next argument */
2017 }
2018 else
2019#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002020 parmp->no_swap_file = TRUE;
2021 break;
2022
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002023 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002024#ifdef TARGET_API_MAC_OSX
2025 /* For some reason on MacOS X, an argument like:
2026 -psn_0_10223617 is passed in when invoke from Finder
2027 or with the 'open' command */
2028 if (argv[0][argv_idx] == 's')
2029 {
2030 argv_idx = -1; /* bypass full -psn */
2031 main_start_gui();
2032 break;
2033 }
2034#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002035#ifdef FEAT_WINDOWS
2036 /* default is 0: open window for each file */
2037 parmp->window_count = get_number_arg((char_u *)argv[0],
2038 &argv_idx, 0);
2039 parmp->window_layout = WIN_TABS;
2040#endif
2041 break;
2042
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002043 case 'o': /* "-o[N]" open N horizontal split windows */
2044#ifdef FEAT_WINDOWS
2045 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002046 parmp->window_count = get_number_arg((char_u *)argv[0],
2047 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002048 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002049#endif
2050 break;
2051
2052 case 'O': /* "-O[N]" open N vertical split windows */
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002053#ifdef FEAT_WINDOWS
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002054 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002055 parmp->window_count = get_number_arg((char_u *)argv[0],
2056 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002057 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002058#endif
2059 break;
2060
2061#ifdef FEAT_QUICKFIX
2062 case 'q': /* "-q" QuickFix mode */
2063 if (parmp->edit_type != EDIT_NONE)
2064 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2065 parmp->edit_type = EDIT_QF;
2066 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2067 {
2068 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2069 argv_idx = -1;
2070 }
2071 else if (argc > 1) /* "-q {errorfile}" */
2072 want_argument = TRUE;
2073 break;
2074#endif
2075
2076 case 'R': /* "-R" readonly mode */
2077 readonlymode = TRUE;
2078 curbuf->b_p_ro = TRUE;
2079 p_uc = 10000; /* don't update very often */
2080 break;
2081
2082 case 'r': /* "-r" recovery mode */
2083 case 'L': /* "-L" recovery mode */
2084 recoverymode = 1;
2085 break;
2086
2087 case 's':
2088 if (exmode_active) /* "-s" silent (batch) mode */
2089 silent_mode = TRUE;
2090 else /* "-s {scriptin}" read from script file */
2091 want_argument = TRUE;
2092 break;
2093
2094 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2095 if (parmp->edit_type != EDIT_NONE)
2096 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2097 parmp->edit_type = EDIT_TAG;
2098 if (argv[0][argv_idx]) /* "-t{tag}" */
2099 {
2100 parmp->tagname = (char_u *)argv[0] + argv_idx;
2101 argv_idx = -1;
2102 }
2103 else /* "-t {tag}" */
2104 want_argument = TRUE;
2105 break;
2106
2107#ifdef FEAT_EVAL
2108 case 'D': /* "-D" Debugging */
2109 parmp->use_debug_break_level = 9999;
2110 break;
2111#endif
2112#ifdef FEAT_DIFF
2113 case 'd': /* "-d" 'diff' */
2114# ifdef AMIGA
2115 /* check for "-dev {device}" */
2116 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2117 want_argument = TRUE;
2118 else
2119# endif
2120 parmp->diff_mode = TRUE;
2121 break;
2122#endif
2123 case 'V': /* "-V{N}" Verbose level */
2124 /* default is 10: a little bit verbose */
2125 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2126 if (argv[0][argv_idx] != NUL)
2127 {
2128 set_option_value((char_u *)"verbosefile", 0L,
2129 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002130 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002131 }
2132 break;
2133
2134 case 'v': /* "-v" Vi-mode (as if called "vi") */
2135 exmode_active = 0;
2136#ifdef FEAT_GUI
2137 gui.starting = FALSE; /* don't start GUI */
2138#endif
2139 break;
2140
2141 case 'w': /* "-w{number}" set window height */
2142 /* "-w {scriptout}" write to script */
2143 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2144 {
2145 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2146 set_option_value((char_u *)"window", n, NULL, 0);
2147 break;
2148 }
2149 want_argument = TRUE;
2150 break;
2151
2152#ifdef FEAT_CRYPT
2153 case 'x': /* "-x" encrypted reading/writing of files */
2154 parmp->ask_for_key = TRUE;
2155 break;
2156#endif
2157
2158 case 'X': /* "-X" don't connect to X server */
2159#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2160 x_no_connect = TRUE;
2161#endif
2162 break;
2163
2164 case 'Z': /* "-Z" restricted mode */
2165 restricted = TRUE;
2166 break;
2167
2168 case 'c': /* "-c{command}" or "-c {command}" execute
2169 command */
2170 if (argv[0][argv_idx] != NUL)
2171 {
2172 if (parmp->n_commands >= MAX_ARG_CMDS)
2173 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002174 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2175 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002176 argv_idx = -1;
2177 break;
2178 }
2179 /*FALLTHROUGH*/
2180 case 'S': /* "-S {file}" execute Vim script */
2181 case 'i': /* "-i {viminfo}" use for viminfo */
2182#ifndef FEAT_DIFF
2183 case 'd': /* "-d {device}" device (for Amiga) */
2184#endif
2185 case 'T': /* "-T {terminal}" terminal name */
2186 case 'u': /* "-u {vimrc}" vim inits file */
2187 case 'U': /* "-U {gvimrc}" gvim inits file */
2188 case 'W': /* "-W {scriptout}" overwrite */
2189#ifdef FEAT_GUI_W32
2190 case 'P': /* "-P {parent title}" MDI parent */
2191#endif
2192 want_argument = TRUE;
2193 break;
2194
2195 default:
2196 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2197 }
2198
2199 /*
2200 * Handle option arguments with argument.
2201 */
2202 if (want_argument)
2203 {
2204 /*
2205 * Check for garbage immediately after the option letter.
2206 */
2207 if (argv[0][argv_idx] != NUL)
2208 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2209
2210 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002211 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002212 mainerr_arg_missing((char_u *)argv[0]);
2213 ++argv;
2214 argv_idx = -1;
2215
2216 switch (c)
2217 {
2218 case 'c': /* "-c {command}" execute command */
2219 case 'S': /* "-S {file}" execute Vim script */
2220 if (parmp->n_commands >= MAX_ARG_CMDS)
2221 mainerr(ME_EXTRA_CMD, NULL);
2222 if (c == 'S')
2223 {
2224 char *a;
2225
2226 if (argc < 1)
2227 /* "-S" without argument: use default session file
2228 * name. */
2229 a = SESSION_FILE;
2230 else if (argv[0][0] == '-')
2231 {
2232 /* "-S" followed by another option: use default
2233 * session file name. */
2234 a = SESSION_FILE;
2235 ++argc;
2236 --argv;
2237 }
2238 else
2239 a = argv[0];
2240 p = alloc((unsigned)(STRLEN(a) + 4));
2241 if (p == NULL)
2242 mch_exit(2);
2243 sprintf((char *)p, "so %s", a);
2244 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2245 parmp->commands[parmp->n_commands++] = p;
2246 }
2247 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002248 parmp->commands[parmp->n_commands++] =
2249 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002250 break;
2251
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002252 case '-':
2253 if (argv[-1][2] == 'c')
2254 {
2255 /* "--cmd {command}" execute command */
2256 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2257 mainerr(ME_EXTRA_CMD, NULL);
2258 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002259 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002260 }
2261 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002262 break;
2263
2264 /* case 'd': -d {device} is handled in mch_check_win() for the
2265 * Amiga */
2266
2267#ifdef FEAT_QUICKFIX
2268 case 'q': /* "-q {errorfile}" QuickFix mode */
2269 parmp->use_ef = (char_u *)argv[0];
2270 break;
2271#endif
2272
2273 case 'i': /* "-i {viminfo}" use for viminfo */
2274 use_viminfo = (char_u *)argv[0];
2275 break;
2276
2277 case 's': /* "-s {scriptin}" read from script file */
2278 if (scriptin[0] != NULL)
2279 {
2280scripterror:
2281 mch_errmsg(_("Attempt to open script file again: \""));
2282 mch_errmsg(argv[-1]);
2283 mch_errmsg(" ");
2284 mch_errmsg(argv[0]);
2285 mch_errmsg("\"\n");
2286 mch_exit(2);
2287 }
2288 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2289 {
2290 mch_errmsg(_("Cannot open for reading: \""));
2291 mch_errmsg(argv[0]);
2292 mch_errmsg("\"\n");
2293 mch_exit(2);
2294 }
2295 if (save_typebuf() == FAIL)
2296 mch_exit(2); /* out of memory */
2297 break;
2298
2299 case 't': /* "-t {tag}" */
2300 parmp->tagname = (char_u *)argv[0];
2301 break;
2302
2303 case 'T': /* "-T {terminal}" terminal name */
2304 /*
2305 * The -T term argument is always available and when
2306 * HAVE_TERMLIB is supported it overrides the environment
2307 * variable TERM.
2308 */
2309#ifdef FEAT_GUI
2310 if (term_is_gui((char_u *)argv[0]))
2311 gui.starting = TRUE; /* start GUI a bit later */
2312 else
2313#endif
2314 parmp->term = (char_u *)argv[0];
2315 break;
2316
2317 case 'u': /* "-u {vimrc}" vim inits file */
2318 parmp->use_vimrc = (char_u *)argv[0];
2319 break;
2320
2321 case 'U': /* "-U {gvimrc}" gvim inits file */
2322#ifdef FEAT_GUI
2323 use_gvimrc = (char_u *)argv[0];
2324#endif
2325 break;
2326
2327 case 'w': /* "-w {nr}" 'window' value */
2328 /* "-w {scriptout}" append to script file */
2329 if (vim_isdigit(*((char_u *)argv[0])))
2330 {
2331 argv_idx = 0;
2332 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2333 set_option_value((char_u *)"window", n, NULL, 0);
2334 argv_idx = -1;
2335 break;
2336 }
2337 /*FALLTHROUGH*/
2338 case 'W': /* "-W {scriptout}" overwrite script file */
2339 if (scriptout != NULL)
2340 goto scripterror;
2341 if ((scriptout = mch_fopen(argv[0],
2342 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2343 {
2344 mch_errmsg(_("Cannot open for script output: \""));
2345 mch_errmsg(argv[0]);
2346 mch_errmsg("\"\n");
2347 mch_exit(2);
2348 }
2349 break;
2350
2351#ifdef FEAT_GUI_W32
2352 case 'P': /* "-P {parent title}" MDI parent */
2353 gui_mch_set_parent(argv[0]);
2354 break;
2355#endif
2356 }
2357 }
2358 }
2359
2360 /*
2361 * File name argument.
2362 */
2363 else
2364 {
2365 argv_idx = -1; /* skip to next argument */
2366
2367 /* Check for only one type of editing. */
2368 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2369 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2370 parmp->edit_type = EDIT_FILE;
2371
2372#ifdef MSWIN
2373 /* Remember if the argument was a full path before changing
2374 * slashes to backslashes. */
2375 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2376 parmp->full_path = TRUE;
2377#endif
2378
2379 /* Add the file to the global argument list. */
2380 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2381 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2382 mch_exit(2);
2383#ifdef FEAT_DIFF
2384 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2385 && !mch_isdir(alist_name(&GARGLIST[0])))
2386 {
2387 char_u *r;
2388
2389 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2390 if (r != NULL)
2391 {
2392 vim_free(p);
2393 p = r;
2394 }
2395 }
2396#endif
2397#if defined(__CYGWIN32__) && !defined(WIN32)
2398 /*
2399 * If vim is invoked by non-Cygwin tools, convert away any
2400 * DOS paths, so things like .swp files are created correctly.
2401 * Look for evidence of non-Cygwin paths before we bother.
2402 * This is only for when using the Unix files.
2403 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002404 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002405 {
2406 char posix_path[PATH_MAX];
2407
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002408# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2409 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2410# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002411 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002412# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002413 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002414 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002415 if (p == NULL)
2416 mch_exit(2);
2417 }
2418#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002419
2420#ifdef USE_FNAME_CASE
2421 /* Make the case of the file name match the actual file. */
2422 fname_case(p, 0);
2423#endif
2424
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002425 alist_add(&global_alist, p,
Bram Moolenaar53076832015-12-31 19:53:21 +01002426#ifdef EXPAND_FILENAMES
Bram Moolenaar231334e2005-07-25 20:46:57 +00002427 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002428#else
2429 2 /* add buffer number now and use curbuf */
2430#endif
2431 );
2432
2433#if defined(FEAT_MBYTE) && defined(WIN32)
2434 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002435 /* Remember this argument has been added to the argument list.
2436 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002437 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002438# ifdef FEAT_DIFF
2439 parmp->diff_mode
2440# else
2441 FALSE
2442# endif
2443 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002444 }
2445#endif
2446 }
2447
2448 /*
2449 * If there are no more letters after the current "-", go to next
2450 * argument. argv_idx is set to -1 when the current argument is to be
2451 * skipped.
2452 */
2453 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2454 {
2455 --argc;
2456 ++argv;
2457 argv_idx = 1;
2458 }
2459 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002460
2461#ifdef FEAT_EVAL
2462 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2463 * one. */
2464 if (parmp->n_commands > 0)
2465 {
2466 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2467 if (p != NULL)
2468 {
2469 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2470 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2471 vim_free(p);
2472 }
2473 }
2474#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002475}
2476
2477/*
2478 * Print a warning if stdout is not a terminal.
2479 * When starting in Ex mode and commands come from a file, set Silent mode.
2480 */
2481 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002482check_tty(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002483{
2484 int input_isatty; /* is active input a terminal? */
2485
2486 input_isatty = mch_input_isatty();
2487 if (exmode_active)
2488 {
2489 if (!input_isatty)
2490 silent_mode = TRUE;
2491 }
2492 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2493#ifdef FEAT_GUI
2494 /* don't want the delay when started from the desktop */
2495 && !gui.starting
2496#endif
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01002497 && !parmp->not_a_term)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002498 {
2499#ifdef NBDEBUG
2500 /*
2501 * This shouldn't be necessary. But if I run netbeans with the log
2502 * output coming to the console and XOpenDisplay fails, I get vim
2503 * trying to start with input/output to my console tty. This fills my
2504 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002505 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002506 */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002507 if (netbeans_active() && (!parmp->stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002508 {
2509 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2510 exit(1);
2511 }
2512#endif
Bram Moolenaar97ff9b92016-06-26 20:37:46 +02002513#if defined(WIN3264) && !defined(FEAT_GUI_W32)
2514 if (is_cygpty_used())
2515 {
2516 mch_errmsg(_("Vim: Error: This version of Vim does not run in a Cygwin terminal\n"));
2517 exit(1);
2518 }
2519#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002520 if (!parmp->stdout_isatty)
2521 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2522 if (!input_isatty)
2523 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2524 out_flush();
2525 if (scriptin[0] == NULL)
2526 ui_delay(2000L, TRUE);
2527 TIME_MSG("Warning delay");
2528 }
2529}
2530
2531/*
2532 * Read text from stdin.
2533 */
2534 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002535read_stdin(void)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002536{
2537 int i;
2538
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002539#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002540 /* When getting the ATTENTION prompt here, use a dialog */
2541 swap_exists_action = SEA_DIALOG;
2542#endif
2543 no_wait_return = TRUE;
2544 i = msg_didany;
2545 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002546 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002547 no_wait_return = FALSE;
2548 msg_didany = i;
2549 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002550#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002551 check_swap_exists_action();
2552#endif
2553#if !(defined(AMIGA) || defined(MACOS))
2554 /*
2555 * Close stdin and dup it from stderr. Required for GPM to work
2556 * properly, and for running external commands.
2557 * Is there any other system that cannot do this?
2558 */
2559 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002560 ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002561#endif
2562}
2563
2564/*
2565 * Create the requested number of windows and edit buffers in them.
2566 * Also does recovery if "recoverymode" set.
2567 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002568 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002569create_windows(mparm_T *parmp UNUSED)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002570{
2571#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002572 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002573 int done = 0;
2574
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002575 /*
2576 * Create the number of windows that was requested.
2577 */
2578 if (parmp->window_count == -1) /* was not set */
2579 parmp->window_count = 1;
2580 if (parmp->window_count == 0)
2581 parmp->window_count = GARGCOUNT;
2582 if (parmp->window_count > 1)
2583 {
2584 /* Don't change the windows if there was a command in .vimrc that
2585 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002586 if (parmp->window_layout == 0)
2587 parmp->window_layout = WIN_HOR;
2588 if (parmp->window_layout == WIN_TABS)
2589 {
2590 parmp->window_count = make_tabpages(parmp->window_count);
2591 TIME_MSG("making tab pages");
2592 }
2593 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002594 {
2595 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002596 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002597 TIME_MSG("making windows");
2598 }
2599 else
2600 parmp->window_count = win_count();
2601 }
2602 else
2603 parmp->window_count = 1;
2604#endif
2605
2606 if (recoverymode) /* do recover */
2607 {
2608 msg_scroll = TRUE; /* scroll message up */
2609 ml_recover();
2610 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2611 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002612 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002613 }
2614 else
2615 {
2616 /*
2617 * Open a buffer for windows that don't have one yet.
2618 * Commands in the .vimrc might have loaded a file or split the window.
2619 * Watch out for autocommands that delete a window.
2620 */
2621#ifdef FEAT_AUTOCMD
2622 /*
2623 * Don't execute Win/Buf Enter/Leave autocommands here
2624 */
2625 ++autocmd_no_enter;
2626 ++autocmd_no_leave;
2627#endif
2628#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002629 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002630 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002631 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002632 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002633 {
2634 if (parmp->window_layout == WIN_TABS)
2635 goto_tabpage(1);
2636 else
2637 curwin = firstwin;
2638 }
2639 else if (parmp->window_layout == WIN_TABS)
2640 {
2641 if (curtab->tp_next == NULL)
2642 break;
2643 goto_tabpage(0);
2644 }
2645 else
2646 {
2647 if (curwin->w_next == NULL)
2648 break;
2649 curwin = curwin->w_next;
2650 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002651 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002652#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002653 curbuf = curwin->w_buffer;
2654 if (curbuf->b_ml.ml_mfp == NULL)
2655 {
2656#ifdef FEAT_FOLDING
2657 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2658 if (p_fdls >= 0)
2659 curwin->w_p_fdl = p_fdls;
2660#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002661#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002662 /* When getting the ATTENTION prompt here, use a dialog */
2663 swap_exists_action = SEA_DIALOG;
2664#endif
2665 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002666
2667 /* create memfile, read file */
2668 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002669
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002670#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002671 if (swap_exists_action == SEA_QUIT)
2672 {
2673 if (got_int || only_one_window())
2674 {
2675 /* abort selected or quit and only one window */
2676 did_emsg = FALSE; /* avoid hit-enter prompt */
2677 getout(1);
2678 }
2679 /* We can't close the window, it would disturb what
2680 * happens next. Clear the file name and set the arg
2681 * index to -1 to delete it later. */
2682 setfname(curbuf, NULL, NULL, FALSE);
2683 curwin->w_arg_idx = -1;
2684 swap_exists_action = SEA_NONE;
2685 }
2686 else
2687 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002688#endif
2689#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002690 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002691#endif
2692 }
2693#ifdef FEAT_WINDOWS
2694 ui_breakcheck();
2695 if (got_int)
2696 {
2697 (void)vgetc(); /* only break the file loading, not the rest */
2698 break;
2699 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002700 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002701#endif
2702#ifdef FEAT_WINDOWS
2703 if (parmp->window_layout == WIN_TABS)
2704 goto_tabpage(1);
2705 else
2706 curwin = firstwin;
2707 curbuf = curwin->w_buffer;
2708#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002709#ifdef FEAT_AUTOCMD
2710 --autocmd_no_enter;
2711 --autocmd_no_leave;
2712#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002713 }
2714}
2715
2716#ifdef FEAT_WINDOWS
2717 /*
2718 * If opened more than one window, start editing files in the other
2719 * windows. make_windows() has already opened the windows.
2720 */
2721 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002722edit_buffers(
2723 mparm_T *parmp,
2724 char_u *cwd) /* current working dir */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002725{
2726 int arg_idx; /* index in argument list */
2727 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002728 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002729 win_T *win;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002730
2731# ifdef FEAT_AUTOCMD
2732 /*
2733 * Don't execute Win/Buf Enter/Leave autocommands here
2734 */
2735 ++autocmd_no_enter;
2736 ++autocmd_no_leave;
2737# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002738
2739 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2740 if (curwin->w_arg_idx == -1)
2741 {
2742 win_close(curwin, TRUE);
2743 advance = FALSE;
2744 }
2745
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002746 arg_idx = 1;
2747 for (i = 1; i < parmp->window_count; ++i)
2748 {
Bram Moolenaard87c36e2015-04-03 14:56:49 +02002749 if (cwd != NULL)
2750 mch_chdir((char *)cwd);
Bram Moolenaar84212822006-11-07 21:59:47 +00002751 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2752 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002753 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002754 ++arg_idx;
2755 win_close(curwin, TRUE);
2756 advance = FALSE;
2757 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002758 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002759
Bram Moolenaar84212822006-11-07 21:59:47 +00002760 if (advance)
2761 {
2762 if (parmp->window_layout == WIN_TABS)
2763 {
2764 if (curtab->tp_next == NULL) /* just checking */
2765 break;
2766 goto_tabpage(0);
2767 }
2768 else
2769 {
2770 if (curwin->w_next == NULL) /* just checking */
2771 break;
2772 win_enter(curwin->w_next, FALSE);
2773 }
2774 }
2775 advance = TRUE;
2776
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002777 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002778 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002779 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2780 {
2781 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002782 /* Edit file from arg list, if there is one. When "Quit" selected
2783 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002784# ifdef HAS_SWAP_EXISTS_ACTION
2785 swap_exists_did_quit = FALSE;
2786# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002787 (void)do_ecmd(0, arg_idx < GARGCOUNT
2788 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002789 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002790# ifdef HAS_SWAP_EXISTS_ACTION
2791 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002792 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002793 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002794 if (got_int || only_one_window())
2795 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002796 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002797 did_emsg = FALSE; /* avoid hit-enter prompt */
2798 getout(1);
2799 }
2800 win_close(curwin, TRUE);
2801 advance = FALSE;
2802 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002803# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002804 if (arg_idx == GARGCOUNT - 1)
2805 arg_had_last = TRUE;
2806 ++arg_idx;
2807 }
2808 ui_breakcheck();
2809 if (got_int)
2810 {
2811 (void)vgetc(); /* only break the file loading, not the rest */
2812 break;
2813 }
2814 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002815
2816 if (parmp->window_layout == WIN_TABS)
2817 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002818# ifdef FEAT_AUTOCMD
2819 --autocmd_no_enter;
2820# endif
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002821
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002822 /* make the first window the current window */
2823 win = firstwin;
2824#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2825 /* Avoid making a preview window the current window. */
2826 while (win->w_p_pvw)
2827 {
2828 win = win->w_next;
2829 if (win == NULL)
2830 {
2831 win = firstwin;
2832 break;
2833 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002834 }
2835#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002836 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002837
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002838# ifdef FEAT_AUTOCMD
2839 --autocmd_no_leave;
2840# endif
2841 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002842 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002843 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2844}
2845#endif /* FEAT_WINDOWS */
2846
2847/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002848 * Execute the commands from --cmd arguments "cmds[cnt]".
2849 */
2850 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002851exe_pre_commands(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002852{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002853 char_u **cmds = parmp->pre_commands;
2854 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002855 int i;
2856
2857 if (cnt > 0)
2858 {
2859 curwin->w_cursor.lnum = 0; /* just in case.. */
2860 sourcing_name = (char_u *)_("pre-vimrc command line");
2861# ifdef FEAT_EVAL
2862 current_SID = SID_CMDARG;
2863# endif
2864 for (i = 0; i < cnt; ++i)
2865 do_cmdline_cmd(cmds[i]);
2866 sourcing_name = NULL;
2867# ifdef FEAT_EVAL
2868 current_SID = 0;
2869# endif
2870 TIME_MSG("--cmd commands");
2871 }
2872}
2873
2874/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002875 * Execute "+", "-c" and "-S" arguments.
2876 */
2877 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002878exe_commands(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002879{
2880 int i;
2881
2882 /*
2883 * We start commands on line 0, make "vim +/pat file" match a
2884 * pattern on line 1. But don't move the cursor when an autocommand
2885 * with g`" was used.
2886 */
2887 msg_scroll = TRUE;
2888 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2889 curwin->w_cursor.lnum = 0;
2890 sourcing_name = (char_u *)"command line";
2891#ifdef FEAT_EVAL
2892 current_SID = SID_CARG;
2893#endif
2894 for (i = 0; i < parmp->n_commands; ++i)
2895 {
2896 do_cmdline_cmd(parmp->commands[i]);
2897 if (parmp->cmds_tofree[i])
2898 vim_free(parmp->commands[i]);
2899 }
2900 sourcing_name = NULL;
2901#ifdef FEAT_EVAL
2902 current_SID = 0;
2903#endif
2904 if (curwin->w_cursor.lnum == 0)
2905 curwin->w_cursor.lnum = 1;
2906
2907 if (!exmode_active)
2908 msg_scroll = FALSE;
2909
2910#ifdef FEAT_QUICKFIX
2911 /* When started with "-q errorfile" jump to first error again. */
2912 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002913 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002914#endif
2915 TIME_MSG("executing command arguments");
2916}
2917
2918/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002919 * Source startup scripts.
2920 */
2921 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002922source_startup_scripts(mparm_T *parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002923{
2924 int i;
2925
2926 /*
2927 * For "evim" source evim.vim first of all, so that the user can overrule
2928 * any things he doesn't like.
2929 */
2930 if (parmp->evim_mode)
2931 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002932 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002933 TIME_MSG("source evim file");
2934 }
2935
2936 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002937 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002938 * nothing else.
2939 */
2940 if (parmp->use_vimrc != NULL)
2941 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002942 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2943 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002944 {
2945#ifdef FEAT_GUI
2946 if (use_gvimrc == NULL) /* don't load gvimrc either */
2947 use_gvimrc = parmp->use_vimrc;
2948#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002949 }
2950 else
2951 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002952 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002953 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2954 }
2955 }
2956 else if (!silent_mode)
2957 {
2958#ifdef AMIGA
2959 struct Process *proc = (struct Process *)FindTask(0L);
2960 APTR save_winptr = proc->pr_WindowPtr;
2961
2962 /* Avoid a requester here for a volume that doesn't exist. */
2963 proc->pr_WindowPtr = (APTR)-1L;
2964#endif
2965
2966 /*
2967 * Get system wide defaults, if the file name is defined.
2968 */
2969#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002970 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002971#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002972#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002973 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002974#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002975
2976 /*
2977 * Try to read initialization commands from the following places:
2978 * - environment variable VIMINIT
2979 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2980 * - second user vimrc file ($VIM/.vimrc for Dos)
2981 * - environment variable EXINIT
2982 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2983 * - second user exrc file ($VIM/.exrc for Dos)
2984 * The first that exists is used, the rest is ignored.
2985 */
2986 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2987 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002988 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002989#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002990 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2991 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002992#endif
2993#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002994 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2995 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002996#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02002997#ifdef USR_VIMRC_FILE4
2998 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
2999 DOSO_VIMRC) == FAIL
3000#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003001 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003002 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003003#ifdef USR_EXRC_FILE2
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003004 && do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003005#endif
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +02003006 && !has_dash_c_arg)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003007 {
3008 /* When no .vimrc file was found: source defaults.vim. */
3009 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003010 }
3011 }
3012
3013 /*
3014 * Read initialization commands from ".vimrc" or ".exrc" in current
3015 * directory. This is only done if the 'exrc' option is set.
3016 * Because of security reasons we disallow shell and write commands
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02003017 * now, except for Unix if the file is owned by the user or 'secure'
Bram Moolenaar58d98232005-07-23 22:25:46 +00003018 * option has been reset in environment of global ".exrc" or ".vimrc".
3019 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3020 * SYS_VIMRC_FILE.
3021 */
3022 if (p_exrc)
3023 {
3024#if defined(UNIX) || defined(VMS)
3025 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3026 if (!file_owned(VIMRC_FILE))
3027#endif
3028 secure = p_secure;
3029
3030 i = FAIL;
3031 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3032 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3033#ifdef USR_VIMRC_FILE2
3034 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3035 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3036#endif
3037#ifdef USR_VIMRC_FILE3
3038 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3039 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3040#endif
3041#ifdef SYS_VIMRC_FILE
3042 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3043 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3044#endif
3045 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003046 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003047
3048 if (i == FAIL)
3049 {
3050#if defined(UNIX) || defined(VMS)
3051 /* if ".exrc" is not owned by user set 'secure' mode */
3052 if (!file_owned(EXRC_FILE))
3053 secure = p_secure;
3054 else
3055 secure = 0;
3056#endif
3057 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3058 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3059#ifdef USR_EXRC_FILE2
3060 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3061 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3062#endif
3063 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003064 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003065 }
3066 }
3067 if (secure == 2)
3068 need_wait_return = TRUE;
3069 secure = 0;
3070#ifdef AMIGA
3071 proc->pr_WindowPtr = save_winptr;
3072#endif
3073 }
3074 TIME_MSG("sourcing vimrc file(s)");
3075}
3076
3077/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003078 * Setup to start using the GUI. Exit with an error when not available.
3079 */
3080 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003081main_start_gui(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003082{
3083#ifdef FEAT_GUI
3084 gui.starting = TRUE; /* start GUI a bit later */
3085#else
3086 mch_errmsg(_(e_nogvim));
3087 mch_errmsg("\n");
3088 mch_exit(2);
3089#endif
3090}
3091
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003092#endif /* NO_VIM_MAIN */
3093
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003094/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003095 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003096 * Returns FAIL if the environment variable was not executed, OK otherwise.
3097 */
3098 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003099process_env(
3100 char_u *env,
3101 int is_viminit) /* when TRUE, called for VIMINIT */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003102{
3103 char_u *initstr;
3104 char_u *save_sourcing_name;
3105 linenr_T save_sourcing_lnum;
3106#ifdef FEAT_EVAL
3107 scid_T save_sid;
3108#endif
3109
3110 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3111 {
3112 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003113 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003114 save_sourcing_name = sourcing_name;
3115 save_sourcing_lnum = sourcing_lnum;
3116 sourcing_name = env;
3117 sourcing_lnum = 0;
3118#ifdef FEAT_EVAL
3119 save_sid = current_SID;
3120 current_SID = SID_ENV;
3121#endif
3122 do_cmdline_cmd(initstr);
3123 sourcing_name = save_sourcing_name;
3124 sourcing_lnum = save_sourcing_lnum;
3125#ifdef FEAT_EVAL
Bram Moolenaar945ec092016-06-08 21:17:43 +02003126 current_SID = save_sid;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003127#endif
3128 return OK;
3129 }
3130 return FAIL;
3131}
3132
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003133#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003134/*
3135 * Return TRUE if we are certain the user owns the file "fname".
3136 * Used for ".vimrc" and ".exrc".
3137 * Use both stat() and lstat() for extra security.
3138 */
3139 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003140file_owned(char *fname)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003141{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003142 stat_T s;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003143# ifdef UNIX
3144 uid_t uid = getuid();
3145# else /* VMS */
3146 uid_t uid = ((getgid() << 16) | getuid());
3147# endif
3148
3149 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3150# ifdef HAVE_LSTAT
3151 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3152# endif
3153 );
3154}
3155#endif
3156
3157/*
3158 * Give an error message main_errors["n"] and exit.
3159 */
3160 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003161mainerr(
3162 int n, /* one of the ME_ defines */
3163 char_u *str) /* extra argument or NULL */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003164{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003165#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003166 reset_signals(); /* kill us with CTRL-C here, if you like */
3167#endif
3168
3169 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003170 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003171 mch_errmsg(_(main_errors[n]));
3172 if (str != NULL)
3173 {
3174 mch_errmsg(": \"");
3175 mch_errmsg((char *)str);
3176 mch_errmsg("\"");
3177 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003178 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003179
3180 mch_exit(1);
3181}
3182
3183 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003184mainerr_arg_missing(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003185{
3186 mainerr(ME_ARG_MISSING, str);
3187}
3188
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003189#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003190/*
3191 * print a message with three spaces prepended and '\n' appended.
3192 */
3193 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003194main_msg(char *s)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003195{
3196 mch_msg(" ");
3197 mch_msg(s);
3198 mch_msg("\n");
3199}
3200
3201/*
3202 * Print messages for "vim -h" or "vim --help" and exit.
3203 */
3204 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003205usage(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003206{
3207 int i;
3208 static char *(use[]) =
3209 {
3210 N_("[file ..] edit specified file(s)"),
3211 N_("- read text from stdin"),
3212 N_("-t tag edit file where tag is defined"),
3213#ifdef FEAT_QUICKFIX
3214 N_("-q [errorfile] edit file with first error")
3215#endif
3216 };
3217
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003218#if defined(UNIX) || defined(VMS)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003219 reset_signals(); /* kill us with CTRL-C here, if you like */
3220#endif
3221
3222 mch_msg(longVersion);
3223 mch_msg(_("\n\nusage:"));
3224 for (i = 0; ; ++i)
3225 {
3226 mch_msg(_(" vim [arguments] "));
3227 mch_msg(_(use[i]));
3228 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3229 break;
3230 mch_msg(_("\n or:"));
3231 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003232#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003233 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003234#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003235
3236 mch_msg(_("\n\nArguments:\n"));
3237 main_msg(_("--\t\t\tOnly file names after this"));
Bram Moolenaar53076832015-12-31 19:53:21 +01003238#ifdef EXPAND_FILENAMES
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003239 main_msg(_("--literal\t\tDon't expand wildcards"));
3240#endif
3241#ifdef FEAT_OLE
3242 main_msg(_("-register\t\tRegister this gvim for OLE"));
3243 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3244#endif
3245#ifdef FEAT_GUI
3246 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3247 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3248#endif
3249 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3250 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003251 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003252 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3253#ifdef FEAT_DIFF
3254 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3255#endif
3256 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3257 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3258 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3259 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3260 main_msg(_("-M\t\t\tModifications in text not allowed"));
3261 main_msg(_("-b\t\t\tBinary mode"));
3262#ifdef FEAT_LISP
3263 main_msg(_("-l\t\t\tLisp mode"));
3264#endif
3265 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3266 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003267 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3268#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003269 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003270#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003271 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3272 main_msg(_("-r\t\t\tList swap files and exit"));
3273 main_msg(_("-r (with file name)\tRecover crashed session"));
3274 main_msg(_("-L\t\t\tSame as -r"));
3275#ifdef AMIGA
3276 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3277 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3278#endif
3279#ifdef FEAT_ARABIC
3280 main_msg(_("-A\t\t\tstart in Arabic mode"));
3281#endif
3282#ifdef FEAT_RIGHTLEFT
3283 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3284#endif
3285#ifdef FEAT_FKMAP
3286 main_msg(_("-F\t\t\tStart in Farsi mode"));
3287#endif
3288 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
Bram Moolenaar49c39ff2016-02-25 21:21:52 +01003289 main_msg(_("--not-a-term\t\tSkip warning for input/output not being a terminal"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003290 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3291#ifdef FEAT_GUI
3292 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3293#endif
3294 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003295#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003296 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003297 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3298 main_msg(_("-O[N]\t\tLike -o but split vertically"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003299#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003300 main_msg(_("+\t\t\tStart at end of file"));
3301 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003302 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003303 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3304 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3305 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3306 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3307 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3308#ifdef FEAT_CRYPT
3309 main_msg(_("-x\t\t\tEdit encrypted files"));
3310#endif
3311#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3312# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3313 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3314# endif
3315 main_msg(_("-X\t\t\tDo not connect to X server"));
3316#endif
3317#ifdef FEAT_CLIENTSERVER
3318 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3319 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3320 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3321 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003322# ifdef FEAT_WINDOWS
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003323 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003324# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003325 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3326 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3327 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3328 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3329#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003330#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003331 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003332#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003333#ifdef FEAT_VIMINFO
3334 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3335#endif
3336 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3337 main_msg(_("--version\t\tPrint version information and exit"));
3338
3339#ifdef FEAT_GUI_X11
3340# ifdef FEAT_GUI_MOTIF
3341 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3342# else
3343# ifdef FEAT_GUI_ATHENA
3344# ifdef FEAT_GUI_NEXTAW
3345 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3346# else
3347 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3348# endif
3349# endif
3350# endif
3351 main_msg(_("-display <display>\tRun vim on <display>"));
3352 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003353 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3354 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3355 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3356 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3357 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3358 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3359 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3360 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3361# ifdef FEAT_GUI_ATHENA
3362 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3363# endif
3364 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3365 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3366 main_msg(_("-xrm <resource>\tSet the specified resource"));
3367#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003368#ifdef FEAT_GUI_GTK
3369 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3370 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3371 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3372 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3373 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003374 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003375 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003376 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003377#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003378#ifdef FEAT_GUI_W32
3379 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003380 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003381#endif
3382
3383#ifdef FEAT_GUI_GNOME
3384 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3385 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003386 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003387 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003388 gui.dofork = FALSE;
3389 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003390 else
3391#endif
3392 mch_exit(0);
3393}
3394
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003395#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003396/*
3397 * Check the result of the ATTENTION dialog:
3398 * When "Quit" selected, exit Vim.
3399 * When "Recover" selected, recover the file.
3400 */
3401 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003402check_swap_exists_action(void)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003403{
3404 if (swap_exists_action == SEA_QUIT)
3405 getout(1);
3406 handle_swap_exists(NULL);
3407}
3408#endif
3409
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003410#endif
3411
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003412#if defined(STARTUPTIME) || defined(PROTO)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003413static void time_diff(struct timeval *then, struct timeval *now);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003414
3415static struct timeval prev_timeval;
3416
Bram Moolenaar3f269672009-11-03 11:11:11 +00003417# ifdef WIN3264
3418/*
3419 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3420 */
3421 static int
3422gettimeofday(struct timeval *tv, char *dummy)
3423{
3424 long t = clock();
3425 tv->tv_sec = t / CLOCKS_PER_SEC;
3426 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3427 return 0;
3428}
3429# endif
3430
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003431/*
3432 * Save the previous time before doing something that could nest.
3433 * set "*tv_rel" to the time elapsed so far.
3434 */
3435 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003436time_push(void *tv_rel, void *tv_start)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003437{
3438 *((struct timeval *)tv_rel) = prev_timeval;
3439 gettimeofday(&prev_timeval, NULL);
3440 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3441 - ((struct timeval *)tv_rel)->tv_usec;
3442 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3443 - ((struct timeval *)tv_rel)->tv_sec;
3444 if (((struct timeval *)tv_rel)->tv_usec < 0)
3445 {
3446 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3447 --((struct timeval *)tv_rel)->tv_sec;
3448 }
3449 *(struct timeval *)tv_start = prev_timeval;
3450}
3451
3452/*
3453 * Compute the previous time after doing something that could nest.
3454 * Subtract "*tp" from prev_timeval;
3455 * Note: The arguments are (void *) to avoid trouble with systems that don't
3456 * have struct timeval.
3457 */
3458 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003459time_pop(
3460 void *tp) /* actually (struct timeval *) */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003461{
3462 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3463 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3464 if (prev_timeval.tv_usec < 0)
3465 {
3466 prev_timeval.tv_usec += 1000000;
3467 --prev_timeval.tv_sec;
3468 }
3469}
3470
3471 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003472time_diff(struct timeval *then, struct timeval *now)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003473{
3474 long usec;
3475 long msec;
3476
3477 usec = now->tv_usec - then->tv_usec;
3478 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3479 usec = usec % 1000L;
3480 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3481}
3482
3483 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003484time_msg(
3485 char *mesg,
3486 void *tv_start) /* only for do_source: start time; actually
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003487 (struct timeval *) */
3488{
3489 static struct timeval start;
3490 struct timeval now;
3491
3492 if (time_fd != NULL)
3493 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003494 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003495 {
3496 gettimeofday(&start, NULL);
3497 prev_timeval = start;
3498 fprintf(time_fd, "\n\ntimes in msec\n");
3499 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3500 fprintf(time_fd, " clock elapsed: other lines\n\n");
3501 }
3502 gettimeofday(&now, NULL);
3503 time_diff(&start, &now);
3504 if (((struct timeval *)tv_start) != NULL)
3505 {
3506 fprintf(time_fd, " ");
3507 time_diff(((struct timeval *)tv_start), &now);
3508 }
3509 fprintf(time_fd, " ");
3510 time_diff(&prev_timeval, &now);
3511 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003512 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003513 }
3514}
3515
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003516#endif
3517
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003518#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003519
3520/*
3521 * Common code for the X command server and the Win32 command server.
3522 */
3523
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003524static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003525
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003526/*
3527 * Do the client-server stuff, unless "--servername ''" was used.
3528 */
3529 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003530exec_on_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003531{
3532 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3533 {
3534# ifdef WIN32
3535 /* Initialise the client/server messaging infrastructure. */
3536 serverInitMessaging();
3537# endif
3538
3539 /*
3540 * When a command server argument was found, execute it. This may
3541 * exit Vim when it was successful. Otherwise it's executed further
3542 * on. Remember the encoding used here in "serverStrEnc".
3543 */
3544 if (parmp->serverArg)
3545 {
3546 cmdsrv_main(&parmp->argc, parmp->argv,
3547 parmp->serverName_arg, &parmp->serverStr);
3548# ifdef FEAT_MBYTE
3549 parmp->serverStrEnc = vim_strsave(p_enc);
3550# endif
3551 }
3552
3553 /* If we're still running, get the name to register ourselves.
3554 * On Win32 can register right now, for X11 need to setup the
3555 * clipboard first, it's further down. */
3556 parmp->servername = serverMakeName(parmp->serverName_arg,
3557 parmp->argv[0]);
3558# ifdef WIN32
3559 if (parmp->servername != NULL)
3560 {
3561 serverSetName(parmp->servername);
3562 vim_free(parmp->servername);
3563 }
3564# endif
3565 }
3566}
3567
3568/*
3569 * Prepare for running as a Vim server.
3570 */
3571 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003572prepare_server(mparm_T *parmp)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003573{
3574# if defined(FEAT_X11)
3575 /*
3576 * Register for remote command execution with :serversend and --remote
3577 * unless there was a -X or a --servername '' on the command line.
3578 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003579 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003580 */
3581 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3582# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003583 (gui.in_use
3584# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003585 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003586# endif
3587 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003588# endif
3589 parmp->serverName_arg != NULL))
3590 {
3591 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3592 vim_free(parmp->servername);
3593 TIME_MSG("register server name");
3594 }
3595 else
3596 serverDelayedStartName = parmp->servername;
3597# endif
3598
3599 /*
3600 * Execute command ourselves if we're here because the send failed (or
3601 * else we would have exited above).
3602 */
3603 if (parmp->serverStr != NULL)
3604 {
3605 char_u *p;
3606
3607 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3608 parmp->serverStr, &p));
3609 vim_free(p);
3610 }
3611}
3612
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003613 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003614cmdsrv_main(
3615 int *argc,
3616 char **argv,
3617 char_u *serverName_arg,
3618 char_u **serverStr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003619{
3620 char_u *res;
3621 int i;
3622 char_u *sname;
3623 int ret;
3624 int didone = FALSE;
3625 int exiterr = 0;
3626 char **newArgV = argv + 1;
3627 int newArgC = 1,
3628 Argc = *argc;
3629 int argtype;
3630#define ARGTYPE_OTHER 0
3631#define ARGTYPE_EDIT 1
3632#define ARGTYPE_EDIT_WAIT 2
3633#define ARGTYPE_SEND 3
3634 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003635 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003636# ifndef FEAT_X11
3637 HWND srv;
3638# else
3639 Window srv;
3640
3641 setup_term_clip();
3642# endif
3643
3644 sname = serverMakeName(serverName_arg, argv[0]);
3645 if (sname == NULL)
3646 return;
3647
3648 /*
3649 * Execute the command server related arguments and remove them
3650 * from the argc/argv array; We may have to return into main()
3651 */
3652 for (i = 1; i < Argc; i++)
3653 {
3654 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003655 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003656 {
3657 for (; i < *argc; i++)
3658 {
3659 *newArgV++ = argv[i];
3660 newArgC++;
3661 }
3662 break;
3663 }
3664
Bram Moolenaareb94e552006-03-11 21:35:11 +00003665 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003666 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003667 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3668 {
3669 char *p = argv[i] + 8;
3670
3671 argtype = ARGTYPE_EDIT;
3672 while (*p != NUL)
3673 {
3674 if (STRNICMP(p, "-wait", 5) == 0)
3675 {
3676 argtype = ARGTYPE_EDIT_WAIT;
3677 p += 5;
3678 }
3679 else if (STRNICMP(p, "-silent", 7) == 0)
3680 {
3681 silent = TRUE;
3682 p += 7;
3683 }
3684 else if (STRNICMP(p, "-tab", 4) == 0)
3685 {
3686 tabs = TRUE;
3687 p += 4;
3688 }
3689 else
3690 {
3691 argtype = ARGTYPE_OTHER;
3692 break;
3693 }
3694 }
3695 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003696 else
3697 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003698
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003699 if (argtype != ARGTYPE_OTHER)
3700 {
3701 if (i == *argc - 1)
3702 mainerr_arg_missing((char_u *)argv[i]);
3703 if (argtype == ARGTYPE_SEND)
3704 {
3705 *serverStr = (char_u *)argv[i + 1];
3706 i++;
3707 }
3708 else
3709 {
3710 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003711 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003712 if (*serverStr == NULL)
3713 {
3714 /* Probably out of memory, exit. */
3715 didone = TRUE;
3716 exiterr = 1;
3717 break;
3718 }
3719 Argc = i;
3720 }
3721# ifdef FEAT_X11
3722 if (xterm_dpy == NULL)
3723 {
3724 mch_errmsg(_("No display"));
3725 ret = -1;
3726 }
3727 else
3728 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3729 NULL, &srv, 0, 0, silent);
3730# else
3731 /* Win32 always works? */
3732 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3733# endif
3734 if (ret < 0)
3735 {
3736 if (argtype == ARGTYPE_SEND)
3737 {
3738 /* Failed to send, abort. */
3739 mch_errmsg(_(": Send failed.\n"));
3740 didone = TRUE;
3741 exiterr = 1;
3742 }
3743 else if (!silent)
3744 /* Let vim start normally. */
3745 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3746 break;
3747 }
3748
3749# ifdef FEAT_GUI_W32
3750 /* Guess that when the server name starts with "g" it's a GUI
3751 * server, which we can bring to the foreground here.
3752 * Foreground() in the server doesn't work very well. */
3753 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3754 SetForegroundWindow(srv);
3755# endif
3756
3757 /*
3758 * For --remote-wait: Wait until the server did edit each
3759 * file. Also detect that the server no longer runs.
3760 */
3761 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3762 {
3763 int numFiles = *argc - i - 1;
3764 int j;
3765 char_u *done = alloc(numFiles);
3766 char_u *p;
3767# ifdef FEAT_GUI_W32
3768 NOTIFYICONDATA ni;
3769 int count = 0;
3770 extern HWND message_window;
3771# endif
3772
3773 if (numFiles > 0 && argv[i + 1][0] == '+')
3774 /* Skip "+cmd" argument, don't wait for it to be edited. */
3775 --numFiles;
3776
3777# ifdef FEAT_GUI_W32
3778 ni.cbSize = sizeof(ni);
3779 ni.hWnd = message_window;
3780 ni.uID = 0;
3781 ni.uFlags = NIF_ICON|NIF_TIP;
3782 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3783 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3784 Shell_NotifyIcon(NIM_ADD, &ni);
3785# endif
3786
3787 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003788 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003789 while (memchr(done, 0, numFiles) != NULL)
3790 {
3791# ifdef WIN32
3792 p = serverGetReply(srv, NULL, TRUE, TRUE);
3793 if (p == NULL)
3794 break;
3795# else
3796 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3797 break;
3798# endif
3799 j = atoi((char *)p);
3800 if (j >= 0 && j < numFiles)
3801 {
3802# ifdef FEAT_GUI_W32
3803 ++count;
3804 sprintf(ni.szTip, _("%d of %d edited"),
3805 count, numFiles);
3806 Shell_NotifyIcon(NIM_MODIFY, &ni);
3807# endif
3808 done[j] = 1;
3809 }
3810 }
3811# ifdef FEAT_GUI_W32
3812 Shell_NotifyIcon(NIM_DELETE, &ni);
3813# endif
3814 }
3815 }
3816 else if (STRICMP(argv[i], "--remote-expr") == 0)
3817 {
3818 if (i == *argc - 1)
3819 mainerr_arg_missing((char_u *)argv[i]);
3820# ifdef WIN32
3821 /* Win32 always works? */
3822 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3823 &res, NULL, 1, FALSE) < 0)
3824# else
3825 if (xterm_dpy == NULL)
3826 mch_errmsg(_("No display: Send expression failed.\n"));
3827 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3828 &res, NULL, 1, 1, FALSE) < 0)
3829# endif
3830 {
3831 if (res != NULL && *res != NUL)
3832 {
3833 /* Output error from remote */
3834 mch_errmsg((char *)res);
3835 vim_free(res);
3836 res = NULL;
3837 }
3838 mch_errmsg(_(": Send expression failed.\n"));
3839 }
3840 }
3841 else if (STRICMP(argv[i], "--serverlist") == 0)
3842 {
3843# ifdef WIN32
3844 /* Win32 always works? */
3845 res = serverGetVimNames();
3846# else
3847 if (xterm_dpy != NULL)
3848 res = serverGetVimNames(xterm_dpy);
3849# endif
3850 if (called_emsg)
3851 mch_errmsg("\n");
3852 }
3853 else if (STRICMP(argv[i], "--servername") == 0)
3854 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003855 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003856 i++;
3857 continue;
3858 }
3859 else
3860 {
3861 *newArgV++ = argv[i];
3862 newArgC++;
3863 continue;
3864 }
3865 didone = TRUE;
3866 if (res != NULL && *res != NUL)
3867 {
3868 mch_msg((char *)res);
3869 if (res[STRLEN(res) - 1] != '\n')
3870 mch_msg("\n");
3871 }
3872 vim_free(res);
3873 }
3874
3875 if (didone)
3876 {
3877 display_errors(); /* display any collected messages */
3878 exit(exiterr); /* Mission accomplished - get out */
3879 }
3880
3881 /* Return back into main() */
3882 *argc = newArgC;
3883 vim_free(sname);
3884}
3885
3886/*
3887 * Build a ":drop" command to send to a Vim server.
3888 */
3889 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003890build_drop_cmd(
3891 int filec,
3892 char **filev,
3893 int tabs, /* Use ":tab drop" instead of ":drop". */
3894 int sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003895{
3896 garray_T ga;
3897 int i;
3898 char_u *inicmd = NULL;
3899 char_u *p;
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003900 char_u *cdp;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003901 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003902
3903 if (filec > 0 && filev[0][0] == '+')
3904 {
3905 inicmd = (char_u *)filev[0] + 1;
3906 filev++;
3907 filec--;
3908 }
3909 /* Check if we have at least one argument. */
3910 if (filec <= 0)
3911 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003912
3913 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003914 cwd = alloc(MAXPATHL);
3915 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003916 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003917 if (mch_dirname(cwd, MAXPATHL) != OK)
3918 {
3919 vim_free(cwd);
3920 return NULL;
3921 }
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003922 cdp = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00003923#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003924 (char_u *)"", /* rem_backslash() will tell what chars to escape */
Bram Moolenaar02b06312007-09-06 15:39:22 +00003925#else
3926 PATH_ESC_CHARS,
3927#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02003928 '\\', TRUE);
3929 vim_free(cwd);
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003930 if (cdp == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003931 return NULL;
3932 ga_init2(&ga, 1, 100);
3933 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003934 ga_concat(&ga, cdp);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003935
3936 /* Call inputsave() so that a prompt for an encryption key works. */
3937 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3938 if (tabs)
3939 ga_concat(&ga, (char_u *)"tab ");
3940 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003941 for (i = 0; i < filec; i++)
3942 {
3943 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003944 * do it again in the Vim server. On MS-Windows only escape
3945 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003946 p = vim_strsave_escaped((char_u *)filev[i],
3947#ifdef UNIX
3948 PATH_ESC_CHARS
3949#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003950 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003951#endif
3952 );
3953 if (p == NULL)
3954 {
3955 vim_free(ga.ga_data);
3956 return NULL;
3957 }
3958 ga_concat(&ga, (char_u *)" ");
3959 ga_concat(&ga, p);
3960 vim_free(p);
3961 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003962 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3963
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003964 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3965 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003966 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
3967
3968 /* Switch back to the correct current directory (prior to temporary path
3969 * switch) unless 'autochdir' is set, in which case it will already be
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003970 * correct after the :drop command. With line breaks and spaces:
3971 * if !exists('+acd') || !&acd
3972 * if haslocaldir()
3973 * cd -
3974 * lcd -
Bram Moolenaarfafeee62015-07-03 13:33:01 +02003975 * elseif getcwd() ==# 'current path'
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003976 * cd -
3977 * endif
3978 * endif
3979 */
3980 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|");
Bram Moolenaarfafeee62015-07-03 13:33:01 +02003981 ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003982 ga_concat(&ga, cdp);
Bram Moolenaarfafeee62015-07-03 13:33:01 +02003983 ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>");
Bram Moolenaarf11ce662015-03-24 16:48:58 +01003984 vim_free(cdp);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003985
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003986 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003987 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
3988 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003989 if (inicmd != NULL)
3990 {
3991 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3992 * the following commands to be inserted as text. Use a "|",
3993 * hopefully "inicmd" does allow this... */
3994 ga_concat(&ga, inicmd);
3995 ga_concat(&ga, (char_u *)"|");
3996 }
3997 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3998 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00003999 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004000 ga_append(&ga, NUL);
4001 return ga.ga_data;
4002}
4003
4004/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004005 * Make our basic server name: use the specified "arg" if given, otherwise use
4006 * the tail of the command "cmd" we were started with.
4007 * Return the name in allocated memory. This doesn't include a serial number.
4008 */
4009 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004010serverMakeName(char_u *arg, char *cmd)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004011{
4012 char_u *p;
4013
4014 if (arg != NULL && *arg != NUL)
4015 p = vim_strsave_up(arg);
4016 else
4017 {
4018 p = vim_strsave_up(gettail((char_u *)cmd));
4019 /* Remove .exe or .bat from the name. */
4020 if (p != NULL && vim_strchr(p, '.') != NULL)
4021 *vim_strchr(p, '.') = NUL;
4022 }
4023 return p;
4024}
4025#endif /* FEAT_CLIENTSERVER */
4026
4027#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4028/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004029 * Replace termcodes such as <CR> and insert as key presses if there is room.
4030 */
4031 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004032server_to_input_buf(char_u *str)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004033{
4034 char_u *ptr = NULL;
4035 char_u *cpo_save = p_cpo;
4036
4037 /* Set 'cpoptions' the way we want it.
4038 * B set - backslashes are *not* treated specially
4039 * k set - keycodes are *not* reverse-engineered
4040 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004041 * The last but one parameter of replace_termcodes() is TRUE so that the
4042 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004043 */
4044 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004045 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004046 p_cpo = cpo_save;
4047
4048 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4049 {
4050 /*
4051 * Add the string to the input stream.
4052 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4053 *
4054 * First clear typed characters from the typeahead buffer, there could
4055 * be half a mapping there. Then append to the existing string, so
4056 * that multiple commands from a client are concatenated.
4057 */
4058 if (typebuf.tb_maplen < typebuf.tb_len)
4059 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4060 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4061
4062 /* Let input_available() know we inserted text in the typeahead
4063 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004064 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004065 }
4066 vim_free((char_u *)ptr);
4067}
4068
4069/*
4070 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004071 */
4072 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004073eval_client_expr_to_string(char_u *expr)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004074{
4075 char_u *res;
4076 int save_dbl = debug_break_level;
4077 int save_ro = redir_off;
4078
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004079 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4080 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004081 debug_break_level = -1;
4082 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004083 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4084 * to be typed. Do generate errors so that try/catch works. */
4085 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004086
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004087 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004088
4089 debug_break_level = save_dbl;
4090 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004091 --emsg_silent;
4092 if (emsg_silent < 0)
4093 emsg_silent = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004094
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004095 /* A client can tell us to redraw, but not to display the cursor, so do
4096 * that here. */
4097 setcursor();
4098 out_flush();
4099#ifdef FEAT_GUI
4100 if (gui.in_use)
4101 gui_update_cursor(FALSE, FALSE);
4102#endif
4103
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004104 return res;
4105}
4106
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004107/*
4108 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4109 * return an allocated string. Otherwise return "data".
4110 * "*tofree" is set to the result when it needs to be freed later.
4111 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004112 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004113serverConvert(
4114 char_u *client_enc UNUSED,
4115 char_u *data,
4116 char_u **tofree)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004117{
4118 char_u *res = data;
4119
4120 *tofree = NULL;
4121# ifdef FEAT_MBYTE
4122 if (client_enc != NULL && p_enc != NULL)
4123 {
4124 vimconv_T vimconv;
4125
4126 vimconv.vc_type = CONV_NONE;
4127 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4128 && vimconv.vc_type != CONV_NONE)
4129 {
4130 res = string_convert(&vimconv, data, NULL);
4131 if (res == NULL)
4132 res = data;
4133 else
4134 *tofree = res;
4135 }
4136 convert_setup(&vimconv, NULL, NULL);
4137 }
4138# endif
4139 return res;
4140}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004141#endif