blob: fe754958289fa68c0fd888cece0e9ff04bd863cd [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
13#ifdef SPAWNO
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +000014# include <spawno.h> /* special MS-DOS swapping library */
Bram Moolenaarb4210b32004-06-13 14:51:16 +000015#endif
16
Bram Moolenaarb4210b32004-06-13 14:51:16 +000017#ifdef __CYGWIN__
18# ifndef WIN32
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000019# include <cygwin/version.h>
20# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
21 * cygwin_conv_path() */
Bram Moolenaarb4210b32004-06-13 14:51:16 +000022# endif
23# include <limits.h>
24#endif
25
Bram Moolenaarc013cb62005-07-24 21:18:31 +000026/* Maximum number of commands from + or -c arguments. */
27#define MAX_ARG_CMDS 10
28
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000029/* values for "window_layout" */
30#define WIN_HOR 1 /* "-o" horizontally split windows */
31#define WIN_VER 2 /* "-O" vertically split windows */
32#define WIN_TABS 3 /* "-p" windows on tab pages */
33
Bram Moolenaar58d98232005-07-23 22:25:46 +000034/* Struct for various parameters passed between main() and other functions. */
35typedef struct
36{
Bram Moolenaarc013cb62005-07-24 21:18:31 +000037 int argc;
38 char **argv;
39
40 int evim_mode; /* started as "evim" */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000041 char_u *use_vimrc; /* vimrc from -u argument */
42
43 int n_commands; /* no. of commands from + or -c */
44 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
45 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
46 int n_pre_commands; /* no. of commands from --cmd */
47 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
48
49 int edit_type; /* type of editing to do */
50 char_u *tagname; /* tag from -t argument */
51#ifdef FEAT_QUICKFIX
52 char_u *use_ef; /* 'errorfile' from -q argument */
53#endif
54
55 int want_full_screen;
56 int stdout_isatty; /* is stdout a terminal? */
57 char_u *term; /* specified terminal name */
58#ifdef FEAT_CRYPT
59 int ask_for_key; /* -x argument */
60#endif
61 int no_swap_file; /* "-n" argument used */
62#ifdef FEAT_EVAL
63 int use_debug_break_level;
64#endif
65#ifdef FEAT_WINDOWS
66 int window_count; /* number of windows to use */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000067 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000068#endif
69
70#ifdef FEAT_CLIENTSERVER
Bram Moolenaar58d98232005-07-23 22:25:46 +000071 int serverArg; /* TRUE when argument for a server */
72 char_u *serverName_arg; /* cmdline arg for server name */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000073 char_u *serverStr; /* remote server command */
74 char_u *serverStrEnc; /* encoding of serverStr */
75 char_u *servername; /* allocated name for our server */
76#endif
77#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
78 int literal; /* don't expand file names */
79#endif
80#ifdef MSWIN
81 int full_path; /* file name argument was full path */
82#endif
83#ifdef FEAT_DIFF
84 int diff_mode; /* start with 'diff' set */
85#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +000086} mparm_T;
87
Bram Moolenaarc013cb62005-07-24 21:18:31 +000088/* Values for edit_type. */
89#define EDIT_NONE 0 /* no edit type yet */
90#define EDIT_FILE 1 /* file name argument[s] given, use argument list */
91#define EDIT_STDIN 2 /* read file from stdin */
92#define EDIT_TAG 3 /* tag name argument given, use tagname */
93#define EDIT_QF 4 /* start in quickfix mode */
94
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010095#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +000096static int file_owned __ARGS((char *fname));
97#endif
98static void mainerr __ARGS((int, char_u *));
Bram Moolenaarb05b10a2011-03-22 18:10:45 +010099#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000100static void main_msg __ARGS((char *s));
101static void usage __ARGS((void));
102static int get_number_arg __ARGS((char_u *p, int *idx, int def));
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100103# if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000104static void init_locale __ARGS((void));
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100105# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000106static void parse_command_name __ARGS((mparm_T *parmp));
107static void early_arg_scan __ARGS((mparm_T *parmp));
108static void command_line_scan __ARGS((mparm_T *parmp));
109static void check_tty __ARGS((mparm_T *parmp));
110static void read_stdin __ARGS((void));
111static void create_windows __ARGS((mparm_T *parmp));
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100112# ifdef FEAT_WINDOWS
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000113static void edit_buffers __ARGS((mparm_T *parmp));
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100114# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000115static void exe_pre_commands __ARGS((mparm_T *parmp));
116static void exe_commands __ARGS((mparm_T *parmp));
Bram Moolenaar58d98232005-07-23 22:25:46 +0000117static void source_startup_scripts __ARGS((mparm_T *parmp));
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000118static void main_start_gui __ARGS((void));
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100119# if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000120static void check_swap_exists_action __ARGS((void));
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100121# endif
122# if defined(FEAT_CLIENTSERVER) || defined(PROTO)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000123static void exec_on_server __ARGS((mparm_T *parmp));
124static void prepare_server __ARGS((mparm_T *parmp));
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000125static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
126static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100127# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000128#endif
129
130
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000131/*
132 * Different types of error messages.
133 */
134static char *(main_errors[]) =
135{
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000136 N_("Unknown option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000137#define ME_UNKNOWN_OPTION 0
138 N_("Too many edit arguments"),
139#define ME_TOO_MANY_ARGS 1
140 N_("Argument missing after"),
141#define ME_ARG_MISSING 2
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000142 N_("Garbage after option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000143#define ME_GARBAGE 3
144 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
145#define ME_EXTRA_CMD 4
146 N_("Invalid argument for"),
147#define ME_INVALID_ARG 5
148};
149
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100150#ifndef PROTO /* don't want a prototype for main() */
Bram Moolenaar8866d272012-11-28 15:55:42 +0100151#ifndef NO_VIM_MAIN /* skip this for unittests */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000152 int
153# ifdef VIMDLL
154_export
155# endif
156# ifdef FEAT_GUI_MSWIN
157# ifdef __BORLANDC__
158_cdecl
159# endif
160VimMain
161# else
162main
163# endif
164(argc, argv)
165 int argc;
166 char **argv;
167{
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000168 char_u *fname = NULL; /* file name from command line */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000169 mparm_T params; /* various parameters passed between
170 * main() and other functions. */
Bram Moolenaar3f269672009-11-03 11:11:11 +0000171#ifdef STARTUPTIME
172 int i;
173#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000174
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000175 /*
176 * Do any system-specific initialisations. These can NOT use IObuff or
177 * NameBuff. Thus emsg2() cannot be called!
178 */
179 mch_early_init();
180
Bram Moolenaar14993322014-09-09 12:25:33 +0200181#if defined(WIN32) && defined(FEAT_MBYTE)
182 /*
183 * MingW expands command line arguments, which confuses our code to
184 * convert when 'encoding' changes. Get the unexpanded arguments.
185 */
186 argc = get_cmd_argsW(&argv);
187#endif
188
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000189 /* Many variables are in "params" so that we can pass them to invoked
190 * functions without a lot of arguments. "argc" and "argv" are also
191 * copied, so that they can be changed. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000192 vim_memset(&params, 0, sizeof(params));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000193 params.argc = argc;
194 params.argv = argv;
195 params.want_full_screen = TRUE;
196#ifdef FEAT_EVAL
197 params.use_debug_break_level = -1;
198#endif
199#ifdef FEAT_WINDOWS
200 params.window_count = -1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000201#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +0000202
Bram Moolenaar99685e62013-05-11 13:56:18 +0200203#ifdef FEAT_RUBY
204 {
205 int ruby_stack_start;
206 vim_ruby_init((void *)&ruby_stack_start);
207 }
208#endif
209
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000210#ifdef FEAT_TCL
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000211 vim_tcl_init(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000212#endif
213
214#ifdef MEM_PROFILE
215 atexit(vim_mem_profile_dump);
216#endif
217
218#ifdef STARTUPTIME
Bram Moolenaar3f269672009-11-03 11:11:11 +0000219 for (i = 1; i < argc; ++i)
220 {
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000221 if (STRICMP(argv[i], "--startuptime") == 0 && i + 1 < argc)
Bram Moolenaar3f269672009-11-03 11:11:11 +0000222 {
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000223 time_fd = mch_fopen(argv[i + 1], "a");
Bram Moolenaar3f269672009-11-03 11:11:11 +0000224 TIME_MSG("--- VIM STARTING ---");
225 break;
226 }
227 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000228#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +0000229 starttime = time(NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000230
231#ifdef __EMX__
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000232 _wildcard(&params.argc, &params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000233#endif
234
235#ifdef FEAT_MBYTE
236 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
237#endif
Bram Moolenaardcaf10e2005-01-21 11:55:25 +0000238#ifdef FEAT_EVAL
239 eval_init(); /* init global variables */
240#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000241
242#ifdef __QNXNTO__
243 qnx_init(); /* PhAttach() for clipboard, (and gui) */
244#endif
245
246#ifdef MAC_OS_CLASSIC
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000247 /* Prepare for possibly starting GUI sometime */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000248 /* Macintosh needs this before any memory is allocated. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000249 gui_prepare(&params.argc, params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000250 TIME_MSG("GUI prepared");
251#endif
252
253 /* Init the table of Normal mode commands. */
254 init_normal_cmds();
255
256#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
Bram Moolenaar58d98232005-07-23 22:25:46 +0000257 make_version(); /* Construct the long version string. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000258#endif
259
260 /*
261 * Allocate space for the generic buffers (needed for set_init_1() and
262 * EMSG2()).
263 */
264 if ((IObuff = alloc(IOSIZE)) == NULL
265 || (NameBuff = alloc(MAXPATHL)) == NULL)
266 mch_exit(0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000267 TIME_MSG("Allocated generic buffers");
268
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000269#ifdef NBDEBUG
270 /* Wait a moment for debugging NetBeans. Must be after allocating
271 * NameBuff. */
272 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
273 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000274 TIME_MSG("NetBeans debug wait");
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000275#endif
276
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000277#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
278 /*
279 * Setup to use the current locale (for ctype() and many other things).
280 * NOTE: Translated messages with encodings other than latin1 will not
281 * work until set_init_1() has been called!
282 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000283 init_locale();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000284 TIME_MSG("locale set");
285#endif
286
287#ifdef FEAT_GUI
288 gui.dofork = TRUE; /* default is to use fork() */
289#endif
290
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000291 /*
Bram Moolenaar58d98232005-07-23 22:25:46 +0000292 * Do a first scan of the arguments in "argv[]":
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000293 * -display or --display
Bram Moolenaar58d98232005-07-23 22:25:46 +0000294 * --server...
295 * --socketid
Bram Moolenaar78e17622007-08-30 10:26:19 +0000296 * --windowid
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000297 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000298 early_arg_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000299
300#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000301 findYourself(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000302#endif
303#if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000304 /* Prepare for possibly starting GUI sometime */
305 gui_prepare(&params.argc, params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000306 TIME_MSG("GUI prepared");
307#endif
308
309#ifdef FEAT_CLIPBOARD
310 clip_init(FALSE); /* Initialise clipboard stuff */
311 TIME_MSG("clipboard setup");
312#endif
313
314 /*
315 * Check if we have an interactive window.
316 * On the Amiga: If there is no window, we open one with a newcli command
317 * (needed for :! to * work). mch_check_win() will also handle the -d or
318 * -dev argument.
319 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000320 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000321 TIME_MSG("window checked");
322
323 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000324 * Allocate the first window and buffer.
325 * Can't do anything without it, exit when it fails.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000326 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000327 if (win_alloc_first() == FAIL)
328 mch_exit(0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000329
330 init_yank(); /* init yank buffers */
331
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000332 alist_init(&global_alist); /* Init the argument list to empty. */
Bram Moolenaar2d1fe052014-05-28 18:22:57 +0200333 global_alist.id = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000334
335 /*
336 * Set the default values for the options.
337 * NOTE: Non-latin1 translated messages are working only after this,
338 * because this is where "has_mbyte" will be set, which is used by
339 * msg_outtrans_len_attr().
340 * First find out the home directory, needed to expand "~" in options.
341 */
342 init_homedir(); /* find real value of $HOME */
343 set_init_1();
344 TIME_MSG("inits 1");
345
346#ifdef FEAT_EVAL
347 set_lang_var(); /* set v:lang and v:ctype */
348#endif
349
350#ifdef FEAT_CLIENTSERVER
351 /*
352 * Do the client-server stuff, unless "--servername ''" was used.
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000353 * This may exit Vim if the command was sent to the server.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000354 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000355 exec_on_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000356#endif
357
358 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000359 * Figure out the way to work from the command name argv[0].
360 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000361 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000362 parse_command_name(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000363
364 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000365 * Process the command line arguments. File names are put in the global
366 * argument list "global_alist".
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000367 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000368 command_line_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000369 TIME_MSG("parsing arguments");
370
371 /*
372 * On some systems, when we compile with the GUI, we always use it. On Mac
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000373 * there is no terminal version, and on Windows we can't fork one off with
374 * :gui.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000375 */
376#ifdef ALWAYS_USE_GUI
377 gui.starting = TRUE;
378#else
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000379# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000380 /*
381 * Check if the GUI can be started. Reset gui.starting if not.
382 * Don't know about other systems, stay on the safe side and don't check.
383 */
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000384 if (gui.starting)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000385 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000386 if (gui_init_check() == FAIL)
387 {
388 gui.starting = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000389
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000390 /* When running "evim" or "gvim -y" we need the menus, exit if we
391 * don't have them. */
392 if (params.evim_mode)
393 mch_exit(1);
394 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000395 }
396# endif
397#endif
398
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000399 if (GARGCOUNT > 0)
400 {
401#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
402 /*
403 * Expand wildcards in file names.
404 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000405 if (!params.literal)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000406 {
407 /* Temporarily add '(' and ')' to 'isfname'. These are valid
408 * filename characters but are excluded from 'isfname' to make
409 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
410 do_cmdline_cmd((char_u *)":set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +0000411 alist_expand(NULL, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000412 do_cmdline_cmd((char_u *)":set isf&");
413 }
414#endif
415 fname = alist_name(&GARGLIST[0]);
416 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000417
418#if defined(WIN32) && defined(FEAT_MBYTE)
419 {
420 extern void set_alist_count(void);
421
422 /* Remember the number of entries in the argument list. If it changes
423 * we don't react on setting 'encoding'. */
424 set_alist_count();
425 }
426#endif
427
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000428#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000429 if (GARGCOUNT == 1 && params.full_path)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000430 {
431 /*
432 * If there is one filename, fully qualified, we have very probably
433 * been invoked from explorer, so change to the file's directory.
434 * Hint: to avoid this when typing a command use a forward slash.
435 * If the cd fails, it doesn't matter.
436 */
437 (void)vim_chdirfile(fname);
438 }
439#endif
440 TIME_MSG("expanding arguments");
441
442#ifdef FEAT_DIFF
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000443 if (params.diff_mode && params.window_count == -1)
444 params.window_count = 0; /* open up to 3 windows */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000445#endif
446
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000447 /* Don't redraw until much later. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000448 ++RedrawingDisabled;
449
450 /*
451 * When listing swap file names, don't do cursor positioning et. al.
452 */
453 if (recoverymode && fname == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000454 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000455
456 /*
457 * When certain to start the GUI, don't check capabilities of terminal.
458 * For GTK we can't be sure, but when started from the desktop it doesn't
459 * make sense to try using a terminal.
460 */
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000461#if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000462 if (gui.starting
463# ifdef FEAT_GUI_GTK
464 && !isatty(2)
465# endif
466 )
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000467 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000468#endif
469
470#if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
471 /* When the GUI is started from Finder, need to display messages in a
472 * message box. isatty(2) returns TRUE anyway, thus we need to check the
473 * name to know we're not started from a terminal. */
474 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000475 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000476 params.want_full_screen = FALSE;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000477
478 /* Avoid always using "/" as the current directory. Note that when
479 * started from Finder the arglist will be filled later in
480 * HandleODocAE() and "fname" will be NULL. */
481 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
482 && STRCMP(NameBuff, "/") == 0)
483 {
484 if (fname != NULL)
485 (void)vim_chdirfile(fname);
486 else
487 {
488 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
489 vim_chdir(NameBuff);
490 }
491 }
492 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000493#endif
494
495 /*
496 * mch_init() sets up the terminal (window) for use. This must be
497 * done after resetting full_screen, otherwise it may move the cursor
498 * (MSDOS).
499 * Note that we may use mch_exit() before mch_init()!
500 */
501 mch_init();
502 TIME_MSG("shell init");
503
504#ifdef USE_XSMP
505 /*
506 * For want of anywhere else to do it, try to connect to xsmp here.
507 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
508 * Hijacking -X 'no X connection' to also disable XSMP connection as that
509 * has a similar delay upon failure.
510 * Only try if SESSION_MANAGER is set to something non-null.
511 */
512 if (!x_no_connect)
513 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000514 char *p = getenv("SESSION_MANAGER");
515
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000516 if (p != NULL && *p != NUL)
517 {
518 xsmp_init();
519 TIME_MSG("xsmp init");
520 }
521 }
522#endif
523
524 /*
525 * Print a warning if stdout is not a terminal.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000526 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000527 check_tty(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000528
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000529 /* This message comes before term inits, but after setting "silent_mode"
530 * when the input is not a tty. */
531 if (GARGCOUNT > 1 && !silent_mode)
532 printf(_("%d files to edit\n"), GARGCOUNT);
533
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000534 if (params.want_full_screen && !silent_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000535 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000536 termcapinit(params.term); /* set terminal name and get terminal
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000537 capabilities (will set full_screen) */
538 screen_start(); /* don't know where cursor is now */
539 TIME_MSG("Termcap init");
540 }
541
542 /*
543 * Set the default values for the options that use Rows and Columns.
544 */
545 ui_get_shellsize(); /* inits Rows and Columns */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000546 win_init_size();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000547#ifdef FEAT_DIFF
548 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
549 * file. There is no buffer yet though. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000550 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000551 diff_win_options(firstwin, FALSE);
552#endif
553
554 cmdline_row = Rows - p_ch;
555 msg_row = cmdline_row;
556 screenalloc(FALSE); /* allocate screen buffers */
557 set_init_2();
558 TIME_MSG("inits 2");
559
560 msg_scroll = TRUE;
561 no_wait_return = TRUE;
562
563 init_mappings(); /* set up initial mappings */
564
565 init_highlight(TRUE, FALSE); /* set the default highlight groups */
566 TIME_MSG("init highlight");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000567
568#ifdef FEAT_EVAL
569 /* Set the break level after the terminal is initialized. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000570 debug_break_level = params.use_debug_break_level;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000571#endif
572
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100573#ifdef FEAT_MZSCHEME
574 /*
575 * Newer version of MzScheme (Racket) require earlier (trampolined)
576 * initialisation via scheme_main_setup.
577 * Implement this by initialising it as early as possible
578 * and splitting off remaining Vim main into vim_main2
579 */
580 {
581 /* Pack up preprocessed command line arguments.
582 * It is safe because Scheme does not access argc/argv. */
583 char *args[2];
584 args[0] = (char *)fname;
585 args[1] = (char *)&params;
586 return mzscheme_main(2, args);
587 }
588}
Bram Moolenaar8866d272012-11-28 15:55:42 +0100589#endif
590#endif /* NO_VIM_MAIN */
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100591
Bram Moolenaar8866d272012-11-28 15:55:42 +0100592/* vim_main2() needs to be produced when FEAT_MZSCHEME is defined even when
593 * NO_VIM_MAIN is defined. */
594#ifdef FEAT_MZSCHEME
595 int
596vim_main2(int argc UNUSED, char **argv UNUSED)
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100597{
Bram Moolenaar8866d272012-11-28 15:55:42 +0100598# ifndef NO_VIM_MAIN
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100599 char_u *fname = (char_u *)argv[0];
600 mparm_T params;
601
602 memcpy(&params, argv[1], sizeof(params));
Bram Moolenaar8866d272012-11-28 15:55:42 +0100603# else
604 return 0;
605}
606# endif
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100607#endif
608
Bram Moolenaar8866d272012-11-28 15:55:42 +0100609#ifndef NO_VIM_MAIN
Bram Moolenaar58d98232005-07-23 22:25:46 +0000610 /* Execute --cmd arguments. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000611 exe_pre_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000612
Bram Moolenaar58d98232005-07-23 22:25:46 +0000613 /* Source startup scripts. */
614 source_startup_scripts(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000615
616#ifdef FEAT_EVAL
617 /*
618 * Read all the plugin files.
619 * Only when compiled with +eval, since most plugins need it.
620 */
621 if (p_lpl)
622 {
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000623# ifdef VMS /* Somehow VMS doesn't handle the "**". */
624 source_runtime((char_u *)"plugin/*.vim", TRUE);
625# else
Bram Moolenaar07d4d732005-10-03 22:04:08 +0000626 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000627# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000628 TIME_MSG("loading plugins");
629 }
630#endif
631
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000632#ifdef FEAT_DIFF
633 /* Decide about window layout for diff mode after reading vimrc. */
634 if (params.diff_mode && params.window_layout == 0)
635 {
636 if (diffopt_horizontal())
637 params.window_layout = WIN_HOR; /* use horizontal split */
638 else
639 params.window_layout = WIN_VER; /* use vertical split */
640 }
641#endif
642
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000643 /*
644 * Recovery mode without a file name: List swap files.
645 * This uses the 'dir' option, therefore it must be after the
646 * initializations.
647 */
648 if (recoverymode && fname == NULL)
649 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200650 recover_names(NULL, TRUE, 0, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000651 mch_exit(0);
652 }
653
654 /*
655 * Set a few option defaults after reading .vimrc files:
656 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
657 */
658 set_init_3();
659 TIME_MSG("inits 3");
660
661 /*
662 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
663 * Note that this overrides anything from a vimrc file.
664 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000665 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000666 p_uc = 0;
667
668#ifdef FEAT_FKMAP
669 if (curwin->w_p_rl && p_altkeymap)
670 {
671 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
672# ifdef FEAT_ARABIC
673 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
674# endif
675 p_fkmap = TRUE; /* Set the Farsi keymap mode */
676 }
677#endif
678
679#ifdef FEAT_GUI
680 if (gui.starting)
681 {
682#if defined(UNIX) || defined(VMS)
683 /* When something caused a message from a vimrc script, need to output
684 * an extra newline before the shell prompt. */
685 if (did_emsg || msg_didout)
686 putchar('\n');
687#endif
688
689 gui_start(); /* will set full_screen to TRUE */
690 TIME_MSG("starting GUI");
691
692 /* When running "evim" or "gvim -y" we need the menus, exit if we
693 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000694 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000695 mch_exit(1);
696 }
697#endif
698
699#ifdef SPAWNO /* special MSDOS swapping library */
700 init_SPAWNO("", SWAP_ANY);
701#endif
702
703#ifdef FEAT_VIMINFO
704 /*
Bram Moolenaard812df62008-11-09 12:46:09 +0000705 * Read in registers, history etc, but not marks, from the viminfo file.
706 * This is where v:oldfiles gets filled.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000707 */
708 if (*p_viminfo != NUL)
709 {
Bram Moolenaard812df62008-11-09 12:46:09 +0000710 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000711 TIME_MSG("reading viminfo");
712 }
713#endif
Bram Moolenaar2cd36962014-01-14 12:57:05 +0100714#ifdef FEAT_EVAL
715 /* It's better to make v:oldfiles an empty list than NULL. */
716 if (get_vim_var_list(VV_OLDFILES) == NULL)
717 set_vim_var_list(VV_OLDFILES, list_alloc());
718#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000719
720#ifdef FEAT_QUICKFIX
721 /*
722 * "-q errorfile": Load the error file now.
723 * If the error file can't be read, exit before doing anything else.
724 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000725 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000726 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000727 if (params.use_ef != NULL)
728 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000729 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200730 vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef);
731 if (qf_init(NULL, p_ef, p_efm, TRUE, IObuff) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000732 {
733 out_char('\n');
734 mch_exit(3);
735 }
736 TIME_MSG("reading errorfile");
737 }
738#endif
739
740 /*
741 * Start putting things on the screen.
742 * Scroll screen down before drawing over it
743 * Clear screen now, so file message will not be cleared.
744 */
745 starting = NO_BUFFERS;
746 no_wait_return = FALSE;
747 if (!exmode_active)
748 msg_scroll = FALSE;
749
750#ifdef FEAT_GUI
751 /*
752 * This seems to be required to make callbacks to be called now, instead
753 * of after things have been put on the screen, which then may be deleted
754 * when getting a resize callback.
755 * For the Mac this handles putting files dropped on the Vim icon to
756 * global_alist.
757 */
758 if (gui.in_use)
759 {
760# ifdef FEAT_SUN_WORKSHOP
761 if (!usingSunWorkShop)
762# endif
763 gui_wait_for_chars(50L);
764 TIME_MSG("GUI delay");
765 }
766#endif
767
768#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
769 qnx_clip_init();
770#endif
771
Bram Moolenaarc8bbaa32010-07-14 16:54:21 +0200772#if defined(MACOS_X) && defined(FEAT_CLIPBOARD)
773 clip_init(TRUE);
774#endif
775
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000776#ifdef FEAT_XCLIPBOARD
777 /* Start using the X clipboard, unless the GUI was started. */
778# ifdef FEAT_GUI
779 if (!gui.in_use)
780# endif
781 {
782 setup_term_clip();
783 TIME_MSG("setup clipboard");
784 }
785#endif
786
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000787#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000788 /* Prepare for being a Vim server. */
789 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000790#endif
791
792 /*
793 * If "-" argument given: Read file from stdin.
794 * Do this before starting Raw mode, because it may change things that the
795 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
796 * are the same terminal: "cat | vim -".
797 * Using autocommands here may cause trouble...
798 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000799 if (params.edit_type == EDIT_STDIN && !recoverymode)
800 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000801
802#if defined(UNIX) || defined(VMS)
803 /* When switching screens and something caused a message from a vimrc
804 * script, need to output an extra newline on exit. */
805 if ((did_emsg || msg_didout) && *T_TI != NUL)
806 newline_on_exit = TRUE;
807#endif
808
809 /*
810 * When done something that is not allowed or error message call
811 * wait_return. This must be done before starttermcap(), because it may
812 * switch to another screen. It must be done after settmode(TMODE_RAW),
813 * because we want to react on a single key stroke.
814 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000815 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000816 */
817 settmode(TMODE_RAW);
818 TIME_MSG("setting raw mode");
819
820 if (need_wait_return || msg_didany)
821 {
822 wait_return(TRUE);
823 TIME_MSG("waiting for return");
824 }
825
826 starttermcap(); /* start termcap if not done by wait_return() */
827 TIME_MSG("start termcap");
Bram Moolenaar9584b312013-03-13 19:29:28 +0100828#if defined(FEAT_TERMRESPONSE) && defined(FEAT_MBYTE)
Bram Moolenaar386dcde2013-09-29 16:27:47 +0200829 may_req_ambiguous_char_width();
Bram Moolenaar9584b312013-03-13 19:29:28 +0100830#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000831
832#ifdef FEAT_MOUSE
833 setmouse(); /* may start using the mouse */
834#endif
835 if (scroll_region)
836 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000837 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000838
839 /*
840 * Don't clear the screen when starting in Ex mode, unless using the GUI.
841 */
842 if (exmode_active
843#ifdef FEAT_GUI
844 && !gui.in_use
845#endif
846 )
847 must_redraw = CLEAR;
848 else
849 {
850 screenclear(); /* clear screen */
851 TIME_MSG("clearing screen");
852 }
853
854#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000855 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000856 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200857 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000858 TIME_MSG("getting crypt key");
859 }
860#endif
861
862 no_wait_return = TRUE;
863
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000864 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000865 * Create the requested number of windows and edit buffers in them.
866 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000867 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000868 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000869 TIME_MSG("opening buffers");
870
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000871#ifdef FEAT_EVAL
872 /* clear v:swapcommand */
873 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
874#endif
875
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000876 /* Ex starts at last line of the file */
877 if (exmode_active)
878 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
879
880#ifdef FEAT_AUTOCMD
881 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
882 TIME_MSG("BufEnter autocommands");
883#endif
884 setpcmark();
885
886#ifdef FEAT_QUICKFIX
887 /*
888 * When started with "-q errorfile" jump to first error now.
889 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000890 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000891 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000892 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000893 TIME_MSG("jump to first error");
894 }
895#endif
896
897#ifdef FEAT_WINDOWS
898 /*
899 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000900 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000901 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000902 edit_buffers(&params);
903#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000904
905#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000906 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000907 {
908 win_T *wp;
909
910 /* set options in each window for "vimdiff". */
911 for (wp = firstwin; wp != NULL; wp = wp->w_next)
912 diff_win_options(wp, TRUE);
913 }
914#endif
915
916 /*
917 * Shorten any of the filenames, but only when absolute.
918 */
919 shorten_fnames(FALSE);
920
921 /*
922 * Need to jump to the tag before executing the '-c command'.
923 * Makes "vim -c '/return' -t main" work.
924 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000925 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000926 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000927#if defined(HAS_SWAP_EXISTS_ACTION)
928 swap_exists_did_quit = FALSE;
929#endif
930
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000931 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000932 do_cmdline_cmd(IObuff);
933 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000934
935#if defined(HAS_SWAP_EXISTS_ACTION)
936 /* If the user doesn't want to edit the file then we quit here. */
937 if (swap_exists_did_quit)
938 getout(1);
939#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000940 }
941
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000942 /* Execute any "+", "-c" and "-S" arguments. */
943 if (params.n_commands > 0)
944 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000945
946 RedrawingDisabled = 0;
947 redraw_all_later(NOT_VALID);
948 no_wait_return = FALSE;
949 starting = 0;
950
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000951#ifdef FEAT_TERMRESPONSE
952 /* Requesting the termresponse is postponed until here, so that a "-c q"
953 * argument doesn't make it appear in the shell Vim was started from. */
954 may_req_termresponse();
955#endif
956
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000957 /* start in insert mode */
958 if (p_im)
959 need_start_insertmode = TRUE;
960
Bram Moolenaar714db3b2014-09-19 13:46:52 +0200961#ifdef FEAT_CLIPBOARD
962 if (clip_unnamed)
963 /* do not overwrite system clipboard while starting up */
964 clip_did_set_selection = -1;
965#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000966#ifdef FEAT_AUTOCMD
967 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar714db3b2014-09-19 13:46:52 +0200968# ifdef FEAT_CLIPBOARD
969 if (clip_did_set_selection < 0)
970 clip_did_set_selection = TRUE;
971# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000972 TIME_MSG("VimEnter autocommands");
973#endif
974
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200975#if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD)
976 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be
977 * done after the clipboard is available and all initial commands that may
978 * modify the 'clipboard' setting have run; i.e. just before entering the
979 * main loop. */
980 {
981 int default_regname = 0;
982 adjust_clip_reg(&default_regname);
983 set_reg_var(default_regname);
984 }
985#endif
986
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000987#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
988 /* When a startup script or session file setup for diff'ing and
989 * scrollbind, sync the scrollbind now. */
990 if (curwin->w_p_diff && curwin->w_p_scb)
991 {
992 update_topline();
993 check_scrollbind((linenr_T)0, 0L);
994 TIME_MSG("diff scrollbinding");
995 }
996#endif
997
998#if defined(WIN3264) && !defined(FEAT_GUI_W32)
999 mch_set_winsize_now(); /* Allow winsize changes from now on */
1000#endif
1001
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001002#if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
1003 /* When tab pages were created, may need to update the tab pages line and
1004 * scrollbars. This is skipped while creating them. */
1005 if (first_tabpage->tp_next != NULL)
1006 {
1007 out_flush();
1008 gui_init_which_components(NULL);
1009 gui_update_scrollbars(TRUE);
1010 }
1011 need_mouse_correct = TRUE;
1012#endif
1013
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001014 /* If ":startinsert" command used, stuff a dummy command to be able to
1015 * call normal_cmd(), which will then start Insert mode. */
1016 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +00001017 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001018
1019#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001020 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001021 {
1022# ifdef FEAT_GUI
Bram Moolenaar173c9852010-09-29 17:27:01 +02001023# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar67c53842010-05-22 18:28:27 +02001024 && !defined(FEAT_GUI_W32)
1025 if (gui.in_use)
1026 {
1027 mch_errmsg(_("netbeans is not supported with this GUI\n"));
1028 mch_exit(2);
1029 }
1030# endif
1031# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001032 /* Tell the client that it can start sending commands. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001033 netbeans_open(netbeansArg + 3, TRUE);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001034 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001035#endif
1036
1037 TIME_MSG("before starting main loop");
1038
1039 /*
1040 * Call the main command loop. This never returns.
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001041 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001042 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001043
1044 return 0;
1045}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001046#endif /* NO_VIM_MAIN */
Bram Moolenaar8866d272012-11-28 15:55:42 +01001047#endif /* PROTO */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001048
1049/*
1050 * Main loop: Execute Normal mode commands until exiting Vim.
1051 * Also used to handle commands in the command-line window, until the window
1052 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001053 * Also used to handle ":visual" command after ":global": execute Normal mode
1054 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001055 */
1056 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001057main_loop(cmdwin, noexmode)
1058 int cmdwin; /* TRUE when working in the command-line window */
1059 int noexmode; /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001060{
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001061 oparg_T oa; /* operator arguments */
1062 int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001063#ifdef FEAT_CONCEAL
1064 linenr_T conceal_old_cursor_line = 0;
1065 linenr_T conceal_new_cursor_line = 0;
1066 int conceal_update_lines = FALSE;
1067#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001068
1069#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1070 /* Setup to catch a terminating error from the X server. Just ignore
1071 * it, restore the state and continue. This might not always work
1072 * properly, but at least we don't exit unexpectedly when the X server
Bram Moolenaar2cd36962014-01-14 12:57:05 +01001073 * exits while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001074 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001075 {
1076 State = NORMAL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001077 VIsual_active = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001078 got_int = TRUE;
1079 need_wait_return = FALSE;
1080 global_busy = FALSE;
1081 exmode_active = 0;
1082 skip_redraw = FALSE;
1083 RedrawingDisabled = 0;
1084 no_wait_return = 0;
Bram Moolenaar7701c242011-10-04 16:43:53 +02001085 vgetc_busy = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001086# ifdef FEAT_EVAL
1087 emsg_skip = 0;
1088# endif
1089 emsg_off = 0;
1090# ifdef FEAT_MOUSE
1091 setmouse();
1092# endif
1093 settmode(TMODE_RAW);
1094 starttermcap();
1095 scroll_start();
1096 redraw_later_clear();
1097 }
1098#endif
1099
1100 clear_oparg(&oa);
1101 while (!cmdwin
1102#ifdef FEAT_CMDWIN
1103 || cmdwin_result == 0
1104#endif
1105 )
1106 {
1107 if (stuff_empty())
1108 {
1109 did_check_timestamps = FALSE;
1110 if (need_check_timestamps)
1111 check_timestamps(FALSE);
1112 if (need_wait_return) /* if wait_return still needed ... */
1113 wait_return(FALSE); /* ... call it now */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001114 if (need_start_insertmode && goto_im() && !VIsual_active)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001115 {
1116 need_start_insertmode = FALSE;
1117 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1118 /* skip the fileinfo message now, because it would be shown
1119 * after insert mode finishes! */
1120 need_fileinfo = FALSE;
1121 }
1122 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001123
1124 /* Reset "got_int" now that we got back to the main loop. Except when
1125 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1126 * the ":g" command.
1127 * For ":g/pat/vi" we reset "got_int" when used once. When used
1128 * a second time we go back to Ex mode and abort the ":g" command. */
1129 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001130 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001131 if (noexmode && global_busy && !exmode_active && previous_got_int)
1132 {
1133 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1134 * used and keep "got_int" set, so that it aborts ":g". */
1135 exmode_active = EXMODE_NORMAL;
1136 State = NORMAL;
1137 }
1138 else if (!global_busy || !exmode_active)
1139 {
1140 if (!quit_more)
1141 (void)vgetc(); /* flush all buffers */
1142 got_int = FALSE;
1143 }
1144 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001145 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001146 else
1147 previous_got_int = FALSE;
1148
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001149 if (!exmode_active)
1150 msg_scroll = FALSE;
1151 quit_more = FALSE;
1152
1153 /*
1154 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1155 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1156 * update cursor and redraw.
1157 */
1158 if (skip_redraw || exmode_active)
1159 skip_redraw = FALSE;
1160 else if (do_redraw || stuff_empty())
1161 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001162#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001163 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001164 if (!finish_op && (
1165# ifdef FEAT_AUTOCMD
1166 has_cursormoved()
1167# endif
1168# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
1169 ||
1170# endif
1171# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001172 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001173# endif
1174 )
1175 && !equalpos(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001176 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001177# ifdef FEAT_AUTOCMD
1178 if (has_cursormoved())
1179 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1180 FALSE, curbuf);
1181# endif
1182# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001183 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001184 {
1185 conceal_old_cursor_line = last_cursormoved.lnum;
1186 conceal_new_cursor_line = curwin->w_cursor.lnum;
1187 conceal_update_lines = TRUE;
1188 }
1189# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001190 last_cursormoved = curwin->w_cursor;
1191 }
1192#endif
1193
Bram Moolenaar186628f2013-03-19 13:33:23 +01001194#ifdef FEAT_AUTOCMD
1195 /* Trigger TextChanged if b_changedtick differs. */
1196 if (!finish_op && has_textchanged()
1197 && last_changedtick != curbuf->b_changedtick)
1198 {
1199 if (last_changedtick_buf == curbuf)
1200 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL,
1201 FALSE, curbuf);
1202 last_changedtick_buf = curbuf;
1203 last_changedtick = curbuf->b_changedtick;
1204 }
1205#endif
1206
Bram Moolenaar33aec762006-01-22 23:30:12 +00001207#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1208 /* Scroll-binding for diff mode may have been postponed until
1209 * here. Avoids doing it for every change. */
1210 if (diff_need_scrollbind)
1211 {
1212 check_scrollbind((linenr_T)0, 0L);
1213 diff_need_scrollbind = FALSE;
1214 }
1215#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001216#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001217 /* Include a closed fold completely in the Visual area. */
1218 foldAdjustVisual();
1219#endif
1220#ifdef FEAT_FOLDING
1221 /*
1222 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1223 * contain the cursor.
1224 * When 'foldopen' is "all", open the fold(s) under the cursor.
1225 * This may mark the window for redrawing.
1226 */
1227 if (hasAnyFolding(curwin) && !char_avail())
1228 {
1229 foldCheckClose();
1230 if (fdo_flags & FDO_ALL)
1231 foldOpenCursor();
1232 }
1233#endif
1234
1235 /*
1236 * Before redrawing, make sure w_topline is correct, and w_leftcol
1237 * if lines don't wrap, and w_skipcol if lines wrap.
1238 */
1239 update_topline();
1240 validate_cursor();
1241
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001242 if (VIsual_active)
1243 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001244 else if (must_redraw)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001245 update_screen(0);
1246 else if (redraw_cmdline || clear_cmdline)
1247 showmode();
1248#ifdef FEAT_WINDOWS
1249 redraw_statuslines();
1250#endif
1251#ifdef FEAT_TITLE
1252 if (need_maketitle)
1253 maketitle();
1254#endif
1255 /* display message after redraw */
1256 if (keep_msg != NULL)
1257 {
1258 char_u *p;
1259
1260 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001261 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1262 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001263 p = keep_msg;
1264 msg_attr(p, keep_msg_attr);
1265 vim_free(p);
1266 }
1267 if (need_fileinfo) /* show file info after redraw */
1268 {
1269 fileinfo(FALSE, TRUE, FALSE);
1270 need_fileinfo = FALSE;
1271 }
1272
1273 emsg_on_display = FALSE; /* can delete error message now */
1274 did_emsg = FALSE;
1275 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001276 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001277 showruler(FALSE);
1278
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001279# if defined(FEAT_CONCEAL)
1280 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001281 && (conceal_old_cursor_line != conceal_new_cursor_line
1282 || conceal_cursor_line(curwin)
1283 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001284 {
Bram Moolenaarc2b4c622011-02-15 16:29:59 +01001285 if (conceal_old_cursor_line != conceal_new_cursor_line
1286 && conceal_old_cursor_line
1287 <= curbuf->b_ml.ml_line_count)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001288 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001289 update_single_line(curwin, conceal_new_cursor_line);
1290 curwin->w_valid &= ~VALID_CROW;
1291 }
1292# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001293 setcursor();
1294 cursor_on();
1295
1296 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001297
1298#ifdef STARTUPTIME
1299 /* Now that we have drawn the first screen all the startup stuff
1300 * has been done, close any file for startup messages. */
1301 if (time_fd != NULL)
1302 {
1303 TIME_MSG("first screen update");
1304 TIME_MSG("--- VIM STARTED ---");
1305 fclose(time_fd);
1306 time_fd = NULL;
1307 }
1308#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001309 }
1310#ifdef FEAT_GUI
1311 if (need_mouse_correct)
1312 gui_mouse_correct();
1313#endif
1314
1315 /*
1316 * Update w_curswant if w_set_curswant has been set.
1317 * Postponed until here to avoid computing w_virtcol too often.
1318 */
1319 update_curswant();
1320
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001321#ifdef FEAT_EVAL
1322 /*
1323 * May perform garbage collection when waiting for a character, but
1324 * only at the very toplevel. Otherwise we may be using a List or
1325 * Dict internally somewhere.
1326 * "may_garbage_collect" is reset in vgetc() which is invoked through
1327 * do_exmode() and normal_cmd().
1328 */
1329 may_garbage_collect = (!cmdwin && !noexmode);
1330#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001331 /*
1332 * If we're invoked as ex, do a round of ex commands.
1333 * Otherwise, get and execute a normal mode command.
1334 */
1335 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001336 {
1337 if (noexmode) /* End of ":global/path/visual" commands */
1338 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001339 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001340 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001341 else
1342 normal_cmd(&oa, TRUE);
1343 }
1344}
1345
1346
1347#if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1348/*
1349 * Exit, but leave behind swap files for modified buffers.
1350 */
1351 void
1352getout_preserve_modified(exitval)
1353 int exitval;
1354{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001355# if defined(SIGHUP) && defined(SIG_IGN)
1356 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1357 * makes Vim exit and then handling SIGHUP causes various reentrance
1358 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001359 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001360# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001361
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001362 ml_close_notmod(); /* close all not-modified buffers */
1363 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1364 ml_close_all(FALSE); /* close all memfiles, without deleting */
1365 getout(exitval); /* exit Vim properly */
1366}
1367#endif
1368
1369
1370/* Exit properly */
1371 void
1372getout(exitval)
1373 int exitval;
1374{
1375#ifdef FEAT_AUTOCMD
1376 buf_T *buf;
1377 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001378 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001379#endif
1380
1381 exiting = TRUE;
1382
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001383 /* When running in Ex mode an error causes us to exit with a non-zero exit
1384 * code. POSIX requires this, although it's not 100% clear from the
1385 * standard. */
1386 if (exmode_active)
1387 exitval += ex_exitval;
1388
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001389 /* Position the cursor on the last screen line, below all the text */
1390#ifdef FEAT_GUI
1391 if (!gui.in_use)
1392#endif
1393 windgoto((int)Rows - 1, 0);
1394
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001395#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1396 /* Optionally print hashtable efficiency. */
1397 hash_debug_results();
1398#endif
1399
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001400#ifdef FEAT_GUI
1401 msg_didany = FALSE;
1402#endif
1403
1404#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001405 if (get_vim_var_nr(VV_DYING) <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001406 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001407 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1408# if defined FEAT_WINDOWS
1409 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001410 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001411 next_tp = tp->tp_next;
1412 for (wp = (tp == curtab)
1413 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001414 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001415 if (wp->w_buffer == NULL)
1416 /* Autocmd must have close the buffer already, skip. */
1417 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001418 buf = wp->w_buffer;
1419 if (buf->b_changedtick != -1)
1420 {
1421 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1422 buf->b_fname, FALSE, buf);
Bram Moolenaarb429cde2012-04-25 18:24:29 +02001423 buf->b_changedtick = -1; /* note that we did it already */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001424 /* start all over, autocommands may mess up the lists */
1425 next_tp = first_tabpage;
1426 break;
1427 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001428 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001429 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001430# else
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001431 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname,
1432 FALSE, curbuf);
Bram Moolenaarf740b292006-02-16 22:11:02 +00001433# endif
Bram Moolenaar33aec762006-01-22 23:30:12 +00001434
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001435 /* Trigger BufUnload for buffers that are loaded */
1436 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1437 if (buf->b_ml.ml_mfp != NULL)
1438 {
1439 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001440 FALSE, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001441 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1442 break;
1443 }
1444 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1445 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001446#endif
1447
1448#ifdef FEAT_VIMINFO
1449 if (*p_viminfo != NUL)
1450 /* Write out the registers, history, marks etc, to the viminfo file */
1451 write_viminfo(NULL, FALSE);
1452#endif
1453
1454#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001455 if (get_vim_var_nr(VV_DYING) <= 1)
1456 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001457#endif
1458
Bram Moolenaar05159a02005-02-26 23:04:13 +00001459#ifdef FEAT_PROFILE
1460 profile_dump();
1461#endif
1462
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001463 if (did_emsg
1464#ifdef FEAT_GUI
1465 || (gui.in_use && msg_didany && p_verbose > 0)
1466#endif
1467 )
1468 {
1469 /* give the user a chance to read the (error) message */
1470 no_wait_return = FALSE;
1471 wait_return(FALSE);
1472 }
1473
1474#ifdef FEAT_AUTOCMD
1475 /* Position the cursor again, the autocommands may have moved it */
1476# ifdef FEAT_GUI
1477 if (!gui.in_use)
1478# endif
1479 windgoto((int)Rows - 1, 0);
1480#endif
1481
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001482#ifdef FEAT_LUA
1483 lua_end();
1484#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001485#ifdef FEAT_MZSCHEME
1486 mzscheme_end();
1487#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001488#ifdef FEAT_TCL
1489 tcl_end();
1490#endif
1491#ifdef FEAT_RUBY
1492 ruby_end();
1493#endif
1494#ifdef FEAT_PYTHON
1495 python_end();
1496#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001497#ifdef FEAT_PYTHON3
1498 python3_end();
1499#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001500#ifdef FEAT_PERL
1501 perl_end();
1502#endif
1503#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1504 iconv_end();
1505#endif
1506#ifdef FEAT_NETBEANS_INTG
1507 netbeans_end();
1508#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001509#ifdef FEAT_CSCOPE
1510 cs_end();
1511#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001512#ifdef FEAT_EVAL
1513 if (garbage_collect_at_exit)
1514 garbage_collect();
1515#endif
Bram Moolenaar14993322014-09-09 12:25:33 +02001516#if defined(WIN32) && defined(FEAT_MBYTE)
1517 free_cmd_argsW();
1518#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001519
1520 mch_exit(exitval);
1521}
1522
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001523#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001524/*
1525 * Get a (optional) count for a Vim argument.
1526 */
1527 static int
1528get_number_arg(p, idx, def)
1529 char_u *p; /* pointer to argument */
1530 int *idx; /* index in argument, is incremented */
1531 int def; /* default value */
1532{
1533 if (vim_isdigit(p[*idx]))
1534 {
1535 def = atoi((char *)&(p[*idx]));
1536 while (vim_isdigit(p[*idx]))
1537 *idx = *idx + 1;
1538 }
1539 return def;
1540}
1541
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001542#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1543/*
1544 * Setup to use the current locale (for ctype() and many other things).
1545 */
1546 static void
1547init_locale()
1548{
1549 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001550
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001551# ifdef FEAT_GUI_GTK
1552 /* Tell Gtk not to change our locale settings. */
1553 gtk_disable_setlocale();
1554# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001555# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1556 /* Make sure strtod() uses a decimal point, not a comma. */
1557 setlocale(LC_NUMERIC, "C");
1558# endif
1559
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001560# ifdef WIN32
1561 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1562 * text while it's expecting text in the current locale. This call avoids
1563 * that. */
1564 setlocale(LC_CTYPE, "C");
1565# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001566
1567# ifdef FEAT_GETTEXT
1568 {
1569 int mustfree = FALSE;
1570 char_u *p;
1571
1572# ifdef DYNAMIC_GETTEXT
1573 /* Initialize the gettext library */
1574 dyn_libintl_init(NULL);
1575# endif
1576 /* expand_env() doesn't work yet, because chartab[] is not initialized
1577 * yet, call vim_getenv() directly */
1578 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1579 if (p != NULL && *p != NUL)
1580 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001581 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001582 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1583 }
1584 if (mustfree)
1585 vim_free(p);
1586 textdomain(VIMPACKAGE);
1587 }
1588# endif
1589}
1590#endif
1591
1592/*
1593 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1594 * If the executable name starts with "r" we disable shell commands.
1595 * If the next character is "e" we run in Easy mode.
1596 * If the next character is "g" we run the GUI version.
1597 * If the next characters are "view" we start in readonly mode.
1598 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1599 * If the next characters are "ex" we start in Ex mode. If it's followed
1600 * by "im" use improved Ex mode.
1601 */
1602 static void
1603parse_command_name(parmp)
1604 mparm_T *parmp;
1605{
1606 char_u *initstr;
1607
1608 initstr = gettail((char_u *)parmp->argv[0]);
1609
1610#ifdef MACOS_X_UNIX
1611 /* An issue has been seen when launching Vim in such a way that
1612 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1613 * executable or a symbolic link of it. Until this issue is resolved
1614 * we prohibit the GUI from being used.
1615 */
1616 if (STRCMP(initstr, parmp->argv[0]) == 0)
1617 disallow_gui = TRUE;
1618
1619 /* TODO: On MacOS X default to gui if argv[0] ends in:
Bram Moolenaar27dc1952006-03-15 23:06:44 +00001620 * /Vim.app/Contents/MacOS/Vim */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001621#endif
1622
1623#ifdef FEAT_EVAL
1624 set_vim_var_string(VV_PROGNAME, initstr, -1);
Bram Moolenaara1706c92014-04-01 19:55:49 +02001625 set_vim_var_string(VV_PROGPATH, (char_u *)parmp->argv[0], -1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001626#endif
1627
1628 if (TOLOWER_ASC(initstr[0]) == 'r')
1629 {
1630 restricted = TRUE;
1631 ++initstr;
1632 }
1633
Bram Moolenaarad249fb2010-05-07 16:35:04 +02001634 /* Use evim mode for "evim" and "egvim", not for "editor". */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001635 if (TOLOWER_ASC(initstr[0]) == 'e'
1636 && (TOLOWER_ASC(initstr[1]) == 'v'
1637 || TOLOWER_ASC(initstr[1]) == 'g'))
1638 {
1639#ifdef FEAT_GUI
1640 gui.starting = TRUE;
1641#endif
1642 parmp->evim_mode = TRUE;
1643 ++initstr;
1644 }
1645
Bram Moolenaar806875d2008-09-18 18:57:10 +00001646 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1647 if (TOLOWER_ASC(initstr[0]) == 'g')
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001648 {
1649 main_start_gui();
1650#ifdef FEAT_GUI
1651 ++initstr;
1652#endif
1653 }
1654
1655 if (STRNICMP(initstr, "view", 4) == 0)
1656 {
1657 readonlymode = TRUE;
1658 curbuf->b_p_ro = TRUE;
1659 p_uc = 10000; /* don't update very often */
1660 initstr += 4;
1661 }
1662 else if (STRNICMP(initstr, "vim", 3) == 0)
1663 initstr += 3;
1664
1665 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1666 if (STRICMP(initstr, "diff") == 0)
1667 {
1668#ifdef FEAT_DIFF
1669 parmp->diff_mode = TRUE;
1670#else
1671 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1672 mch_errmsg("\n");
1673 mch_exit(2);
1674#endif
1675 }
1676
1677 if (STRNICMP(initstr, "ex", 2) == 0)
1678 {
1679 if (STRNICMP(initstr + 2, "im", 2) == 0)
1680 exmode_active = EXMODE_VIM;
1681 else
1682 exmode_active = EXMODE_NORMAL;
1683 change_compatible(TRUE); /* set 'compatible' */
1684 }
1685}
1686
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001687/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001688 * Get the name of the display, before gui_prepare() removes it from
1689 * argv[]. Used for the xterm-clipboard display.
1690 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001691 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001692 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001693 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001694early_arg_scan(parmp)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001695 mparm_T *parmp UNUSED;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001696{
Bram Moolenaar03005972008-11-20 13:12:36 +00001697#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1698 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001699 int argc = parmp->argc;
1700 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001701 int i;
1702
1703 for (i = 1; i < argc; i++)
1704 {
1705 if (STRCMP(argv[i], "--") == 0)
1706 break;
1707# ifdef FEAT_XCLIPBOARD
1708 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001709# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001710 || STRICMP(argv[i], "--display") == 0
1711# endif
1712 )
1713 {
1714 if (i == argc - 1)
1715 mainerr_arg_missing((char_u *)argv[i]);
1716 xterm_display = argv[++i];
1717 }
1718# endif
1719# ifdef FEAT_CLIENTSERVER
1720 else if (STRICMP(argv[i], "--servername") == 0)
1721 {
1722 if (i == argc - 1)
1723 mainerr_arg_missing((char_u *)argv[i]);
1724 parmp->serverName_arg = (char_u *)argv[++i];
1725 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001726 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001727 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001728 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001729 {
1730 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001731# ifdef FEAT_GUI
1732 if (strstr(argv[i], "-wait") != 0)
1733 /* don't fork() when starting the GUI to edit files ourself */
1734 gui.dofork = FALSE;
1735# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001736 }
1737# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001738
1739# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1740# ifdef FEAT_GUI_W32
1741 else if (STRICMP(argv[i], "--windowid") == 0)
1742# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001743 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001744# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001745 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001746 long_u id;
1747 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001748
1749 if (i == argc - 1)
1750 mainerr_arg_missing((char_u *)argv[i]);
1751 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001752 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001753 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001754 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001755 if (count != 1)
1756 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1757 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001758# ifdef FEAT_GUI_W32
1759 win_socket_id = id;
1760# else
1761 gtk_socket_id = id;
1762# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001763 i++;
1764 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001765# endif
1766# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001767 else if (STRICMP(argv[i], "--echo-wid") == 0)
1768 echo_wid_arg = TRUE;
1769# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001770# ifndef FEAT_NETBEANS_INTG
1771 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001772 {
1773 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1774 mch_exit(2);
1775 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001776# endif
1777
Bram Moolenaar58d98232005-07-23 22:25:46 +00001778 }
1779#endif
1780}
1781
1782/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001783 * Scan the command line arguments.
1784 */
1785 static void
1786command_line_scan(parmp)
1787 mparm_T *parmp;
1788{
1789 int argc = parmp->argc;
1790 char **argv = parmp->argv;
1791 int argv_idx; /* index in argv[n][] */
1792 int had_minmin = FALSE; /* found "--" argument */
1793 int want_argument; /* option argument with argument */
1794 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001795 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001796 long n;
1797
1798 --argc;
1799 ++argv;
1800 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1801 while (argc > 0)
1802 {
1803 /*
1804 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1805 */
1806 if (argv[0][0] == '+' && !had_minmin)
1807 {
1808 if (parmp->n_commands >= MAX_ARG_CMDS)
1809 mainerr(ME_EXTRA_CMD, NULL);
1810 argv_idx = -1; /* skip to next argument */
1811 if (argv[0][1] == NUL)
1812 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1813 else
1814 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1815 }
1816
1817 /*
1818 * Optional argument.
1819 */
1820 else if (argv[0][0] == '-' && !had_minmin)
1821 {
1822 want_argument = FALSE;
1823 c = argv[0][argv_idx++];
1824#ifdef VMS
1825 /*
1826 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1827 * and "-/X" as "-X".
1828 */
1829 if (c == '/')
1830 {
1831 c = argv[0][argv_idx++];
1832 c = TOUPPER_ASC(c);
1833 }
1834 else
1835 c = TOLOWER_ASC(c);
1836#endif
1837 switch (c)
1838 {
1839 case NUL: /* "vim -" read from stdin */
1840 /* "ex -" silent mode */
1841 if (exmode_active)
1842 silent_mode = TRUE;
1843 else
1844 {
1845 if (parmp->edit_type != EDIT_NONE)
1846 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1847 parmp->edit_type = EDIT_STDIN;
1848 read_cmd_fd = 2; /* read from stderr instead of stdin */
1849 }
1850 argv_idx = -1; /* skip to next argument */
1851 break;
1852
1853 case '-': /* "--" don't take any more option arguments */
1854 /* "--help" give help message */
1855 /* "--version" give version message */
1856 /* "--literal" take files literally */
1857 /* "--nofork" don't fork */
1858 /* "--noplugin[s]" skip plugins */
1859 /* "--cmd <cmd>" execute cmd before vimrc */
1860 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1861 usage();
1862 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1863 {
1864 Columns = 80; /* need to init Columns */
1865 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1866 list_version();
1867 msg_putchar('\n');
1868 msg_didout = FALSE;
1869 mch_exit(0);
1870 }
1871 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1872 {
1873#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1874 parmp->literal = TRUE;
1875#endif
1876 }
1877 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1878 {
1879#ifdef FEAT_GUI
1880 gui.dofork = FALSE; /* don't fork() when starting GUI */
1881#endif
1882 }
1883 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1884 p_lpl = FALSE;
1885 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1886 {
1887 want_argument = TRUE;
1888 argv_idx += 3;
1889 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001890 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1891 {
1892 want_argument = TRUE;
1893 argv_idx += 11;
1894 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001895#ifdef FEAT_CLIENTSERVER
1896 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1897 ; /* already processed -- no arg */
1898 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1899 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1900 {
1901 /* already processed -- snatch the following arg */
1902 if (argc > 1)
1903 {
1904 --argc;
1905 ++argv;
1906 }
1907 }
1908#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001909#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1910# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001911 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001912# else
1913 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1914# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001915 {
1916 /* already processed -- snatch the following arg */
1917 if (argc > 1)
1918 {
1919 --argc;
1920 ++argv;
1921 }
1922 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001923#endif
1924#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001925 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1926 {
1927 /* already processed, skip */
1928 }
1929#endif
1930 else
1931 {
1932 if (argv[0][argv_idx])
1933 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1934 had_minmin = TRUE;
1935 }
1936 if (!want_argument)
1937 argv_idx = -1; /* skip to next argument */
1938 break;
1939
1940 case 'A': /* "-A" start in Arabic mode */
1941#ifdef FEAT_ARABIC
1942 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1943#else
1944 mch_errmsg(_(e_noarabic));
1945 mch_exit(2);
1946#endif
1947 break;
1948
1949 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001950 /* Needs to be effective before expanding file names, because
1951 * for Win32 this makes us edit a shortcut file itself,
1952 * instead of the file it links to. */
1953 set_options_bin(curbuf->b_p_bin, 1, 0);
1954 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001955 break;
1956
1957 case 'C': /* "-C" Compatible */
1958 change_compatible(TRUE);
1959 break;
1960
1961 case 'e': /* "-e" Ex mode */
1962 exmode_active = EXMODE_NORMAL;
1963 break;
1964
1965 case 'E': /* "-E" Improved Ex mode */
1966 exmode_active = EXMODE_VIM;
1967 break;
1968
1969 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1970 window directly, not with newcli */
1971#ifdef FEAT_GUI
1972 gui.dofork = FALSE; /* don't fork() when starting GUI */
1973#endif
1974 break;
1975
1976 case 'g': /* "-g" start GUI */
1977 main_start_gui();
1978 break;
1979
1980 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1981#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001982 p_fkmap = TRUE;
1983 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001984#else
1985 mch_errmsg(_(e_nofarsi));
1986 mch_exit(2);
1987#endif
1988 break;
1989
1990 case 'h': /* "-h" give help message */
1991#ifdef FEAT_GUI_GNOME
1992 /* Tell usage() to exit for "gvim". */
1993 gui.starting = FALSE;
1994#endif
1995 usage();
1996 break;
1997
1998 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1999#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002000 p_hkmap = TRUE;
2001 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002002#else
2003 mch_errmsg(_(e_nohebrew));
2004 mch_exit(2);
2005#endif
2006 break;
2007
2008 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
2009#ifdef FEAT_LISP
2010 set_option_value((char_u *)"lisp", 1L, NULL, 0);
2011 p_sm = TRUE;
2012#endif
2013 break;
2014
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002015 case 'M': /* "-M" no changes or writing of files */
2016 reset_modifiable();
2017 /* FALLTHROUGH */
2018
2019 case 'm': /* "-m" no writing of files */
2020 p_write = FALSE;
2021 break;
2022
2023 case 'y': /* "-y" easy mode */
2024#ifdef FEAT_GUI
2025 gui.starting = TRUE; /* start GUI a bit later */
2026#endif
2027 parmp->evim_mode = TRUE;
2028 break;
2029
2030 case 'N': /* "-N" Nocompatible */
2031 change_compatible(FALSE);
2032 break;
2033
2034 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002035#ifdef FEAT_NETBEANS_INTG
2036 /* checking for "-nb", netbeans parameters */
2037 if (argv[0][argv_idx] == 'b')
2038 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002039 netbeansArg = argv[0];
2040 argv_idx = -1; /* skip to next argument */
2041 }
2042 else
2043#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002044 parmp->no_swap_file = TRUE;
2045 break;
2046
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002047 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002048#ifdef TARGET_API_MAC_OSX
2049 /* For some reason on MacOS X, an argument like:
2050 -psn_0_10223617 is passed in when invoke from Finder
2051 or with the 'open' command */
2052 if (argv[0][argv_idx] == 's')
2053 {
2054 argv_idx = -1; /* bypass full -psn */
2055 main_start_gui();
2056 break;
2057 }
2058#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002059#ifdef FEAT_WINDOWS
2060 /* default is 0: open window for each file */
2061 parmp->window_count = get_number_arg((char_u *)argv[0],
2062 &argv_idx, 0);
2063 parmp->window_layout = WIN_TABS;
2064#endif
2065 break;
2066
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002067 case 'o': /* "-o[N]" open N horizontal split windows */
2068#ifdef FEAT_WINDOWS
2069 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002070 parmp->window_count = get_number_arg((char_u *)argv[0],
2071 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002072 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002073#endif
2074 break;
2075
2076 case 'O': /* "-O[N]" open N vertical split windows */
2077#if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
2078 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002079 parmp->window_count = get_number_arg((char_u *)argv[0],
2080 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002081 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002082#endif
2083 break;
2084
2085#ifdef FEAT_QUICKFIX
2086 case 'q': /* "-q" QuickFix mode */
2087 if (parmp->edit_type != EDIT_NONE)
2088 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2089 parmp->edit_type = EDIT_QF;
2090 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2091 {
2092 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2093 argv_idx = -1;
2094 }
2095 else if (argc > 1) /* "-q {errorfile}" */
2096 want_argument = TRUE;
2097 break;
2098#endif
2099
2100 case 'R': /* "-R" readonly mode */
2101 readonlymode = TRUE;
2102 curbuf->b_p_ro = TRUE;
2103 p_uc = 10000; /* don't update very often */
2104 break;
2105
2106 case 'r': /* "-r" recovery mode */
2107 case 'L': /* "-L" recovery mode */
2108 recoverymode = 1;
2109 break;
2110
2111 case 's':
2112 if (exmode_active) /* "-s" silent (batch) mode */
2113 silent_mode = TRUE;
2114 else /* "-s {scriptin}" read from script file */
2115 want_argument = TRUE;
2116 break;
2117
2118 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2119 if (parmp->edit_type != EDIT_NONE)
2120 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2121 parmp->edit_type = EDIT_TAG;
2122 if (argv[0][argv_idx]) /* "-t{tag}" */
2123 {
2124 parmp->tagname = (char_u *)argv[0] + argv_idx;
2125 argv_idx = -1;
2126 }
2127 else /* "-t {tag}" */
2128 want_argument = TRUE;
2129 break;
2130
2131#ifdef FEAT_EVAL
2132 case 'D': /* "-D" Debugging */
2133 parmp->use_debug_break_level = 9999;
2134 break;
2135#endif
2136#ifdef FEAT_DIFF
2137 case 'd': /* "-d" 'diff' */
2138# ifdef AMIGA
2139 /* check for "-dev {device}" */
2140 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2141 want_argument = TRUE;
2142 else
2143# endif
2144 parmp->diff_mode = TRUE;
2145 break;
2146#endif
2147 case 'V': /* "-V{N}" Verbose level */
2148 /* default is 10: a little bit verbose */
2149 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2150 if (argv[0][argv_idx] != NUL)
2151 {
2152 set_option_value((char_u *)"verbosefile", 0L,
2153 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002154 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002155 }
2156 break;
2157
2158 case 'v': /* "-v" Vi-mode (as if called "vi") */
2159 exmode_active = 0;
2160#ifdef FEAT_GUI
2161 gui.starting = FALSE; /* don't start GUI */
2162#endif
2163 break;
2164
2165 case 'w': /* "-w{number}" set window height */
2166 /* "-w {scriptout}" write to script */
2167 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2168 {
2169 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2170 set_option_value((char_u *)"window", n, NULL, 0);
2171 break;
2172 }
2173 want_argument = TRUE;
2174 break;
2175
2176#ifdef FEAT_CRYPT
2177 case 'x': /* "-x" encrypted reading/writing of files */
2178 parmp->ask_for_key = TRUE;
2179 break;
2180#endif
2181
2182 case 'X': /* "-X" don't connect to X server */
2183#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2184 x_no_connect = TRUE;
2185#endif
2186 break;
2187
2188 case 'Z': /* "-Z" restricted mode */
2189 restricted = TRUE;
2190 break;
2191
2192 case 'c': /* "-c{command}" or "-c {command}" execute
2193 command */
2194 if (argv[0][argv_idx] != NUL)
2195 {
2196 if (parmp->n_commands >= MAX_ARG_CMDS)
2197 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002198 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2199 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002200 argv_idx = -1;
2201 break;
2202 }
2203 /*FALLTHROUGH*/
2204 case 'S': /* "-S {file}" execute Vim script */
2205 case 'i': /* "-i {viminfo}" use for viminfo */
2206#ifndef FEAT_DIFF
2207 case 'd': /* "-d {device}" device (for Amiga) */
2208#endif
2209 case 'T': /* "-T {terminal}" terminal name */
2210 case 'u': /* "-u {vimrc}" vim inits file */
2211 case 'U': /* "-U {gvimrc}" gvim inits file */
2212 case 'W': /* "-W {scriptout}" overwrite */
2213#ifdef FEAT_GUI_W32
2214 case 'P': /* "-P {parent title}" MDI parent */
2215#endif
2216 want_argument = TRUE;
2217 break;
2218
2219 default:
2220 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2221 }
2222
2223 /*
2224 * Handle option arguments with argument.
2225 */
2226 if (want_argument)
2227 {
2228 /*
2229 * Check for garbage immediately after the option letter.
2230 */
2231 if (argv[0][argv_idx] != NUL)
2232 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2233
2234 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002235 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002236 mainerr_arg_missing((char_u *)argv[0]);
2237 ++argv;
2238 argv_idx = -1;
2239
2240 switch (c)
2241 {
2242 case 'c': /* "-c {command}" execute command */
2243 case 'S': /* "-S {file}" execute Vim script */
2244 if (parmp->n_commands >= MAX_ARG_CMDS)
2245 mainerr(ME_EXTRA_CMD, NULL);
2246 if (c == 'S')
2247 {
2248 char *a;
2249
2250 if (argc < 1)
2251 /* "-S" without argument: use default session file
2252 * name. */
2253 a = SESSION_FILE;
2254 else if (argv[0][0] == '-')
2255 {
2256 /* "-S" followed by another option: use default
2257 * session file name. */
2258 a = SESSION_FILE;
2259 ++argc;
2260 --argv;
2261 }
2262 else
2263 a = argv[0];
2264 p = alloc((unsigned)(STRLEN(a) + 4));
2265 if (p == NULL)
2266 mch_exit(2);
2267 sprintf((char *)p, "so %s", a);
2268 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2269 parmp->commands[parmp->n_commands++] = p;
2270 }
2271 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002272 parmp->commands[parmp->n_commands++] =
2273 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002274 break;
2275
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002276 case '-':
2277 if (argv[-1][2] == 'c')
2278 {
2279 /* "--cmd {command}" execute command */
2280 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2281 mainerr(ME_EXTRA_CMD, NULL);
2282 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002283 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002284 }
2285 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002286 break;
2287
2288 /* case 'd': -d {device} is handled in mch_check_win() for the
2289 * Amiga */
2290
2291#ifdef FEAT_QUICKFIX
2292 case 'q': /* "-q {errorfile}" QuickFix mode */
2293 parmp->use_ef = (char_u *)argv[0];
2294 break;
2295#endif
2296
2297 case 'i': /* "-i {viminfo}" use for viminfo */
2298 use_viminfo = (char_u *)argv[0];
2299 break;
2300
2301 case 's': /* "-s {scriptin}" read from script file */
2302 if (scriptin[0] != NULL)
2303 {
2304scripterror:
2305 mch_errmsg(_("Attempt to open script file again: \""));
2306 mch_errmsg(argv[-1]);
2307 mch_errmsg(" ");
2308 mch_errmsg(argv[0]);
2309 mch_errmsg("\"\n");
2310 mch_exit(2);
2311 }
2312 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2313 {
2314 mch_errmsg(_("Cannot open for reading: \""));
2315 mch_errmsg(argv[0]);
2316 mch_errmsg("\"\n");
2317 mch_exit(2);
2318 }
2319 if (save_typebuf() == FAIL)
2320 mch_exit(2); /* out of memory */
2321 break;
2322
2323 case 't': /* "-t {tag}" */
2324 parmp->tagname = (char_u *)argv[0];
2325 break;
2326
2327 case 'T': /* "-T {terminal}" terminal name */
2328 /*
2329 * The -T term argument is always available and when
2330 * HAVE_TERMLIB is supported it overrides the environment
2331 * variable TERM.
2332 */
2333#ifdef FEAT_GUI
2334 if (term_is_gui((char_u *)argv[0]))
2335 gui.starting = TRUE; /* start GUI a bit later */
2336 else
2337#endif
2338 parmp->term = (char_u *)argv[0];
2339 break;
2340
2341 case 'u': /* "-u {vimrc}" vim inits file */
2342 parmp->use_vimrc = (char_u *)argv[0];
2343 break;
2344
2345 case 'U': /* "-U {gvimrc}" gvim inits file */
2346#ifdef FEAT_GUI
2347 use_gvimrc = (char_u *)argv[0];
2348#endif
2349 break;
2350
2351 case 'w': /* "-w {nr}" 'window' value */
2352 /* "-w {scriptout}" append to script file */
2353 if (vim_isdigit(*((char_u *)argv[0])))
2354 {
2355 argv_idx = 0;
2356 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2357 set_option_value((char_u *)"window", n, NULL, 0);
2358 argv_idx = -1;
2359 break;
2360 }
2361 /*FALLTHROUGH*/
2362 case 'W': /* "-W {scriptout}" overwrite script file */
2363 if (scriptout != NULL)
2364 goto scripterror;
2365 if ((scriptout = mch_fopen(argv[0],
2366 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2367 {
2368 mch_errmsg(_("Cannot open for script output: \""));
2369 mch_errmsg(argv[0]);
2370 mch_errmsg("\"\n");
2371 mch_exit(2);
2372 }
2373 break;
2374
2375#ifdef FEAT_GUI_W32
2376 case 'P': /* "-P {parent title}" MDI parent */
2377 gui_mch_set_parent(argv[0]);
2378 break;
2379#endif
2380 }
2381 }
2382 }
2383
2384 /*
2385 * File name argument.
2386 */
2387 else
2388 {
2389 argv_idx = -1; /* skip to next argument */
2390
2391 /* Check for only one type of editing. */
2392 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2393 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2394 parmp->edit_type = EDIT_FILE;
2395
2396#ifdef MSWIN
2397 /* Remember if the argument was a full path before changing
2398 * slashes to backslashes. */
2399 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2400 parmp->full_path = TRUE;
2401#endif
2402
2403 /* Add the file to the global argument list. */
2404 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2405 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2406 mch_exit(2);
2407#ifdef FEAT_DIFF
2408 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2409 && !mch_isdir(alist_name(&GARGLIST[0])))
2410 {
2411 char_u *r;
2412
2413 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2414 if (r != NULL)
2415 {
2416 vim_free(p);
2417 p = r;
2418 }
2419 }
2420#endif
2421#if defined(__CYGWIN32__) && !defined(WIN32)
2422 /*
2423 * If vim is invoked by non-Cygwin tools, convert away any
2424 * DOS paths, so things like .swp files are created correctly.
2425 * Look for evidence of non-Cygwin paths before we bother.
2426 * This is only for when using the Unix files.
2427 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002428 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002429 {
2430 char posix_path[PATH_MAX];
2431
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002432# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2433 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2434# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002435 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002436# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002437 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002438 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002439 if (p == NULL)
2440 mch_exit(2);
2441 }
2442#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002443
2444#ifdef USE_FNAME_CASE
2445 /* Make the case of the file name match the actual file. */
2446 fname_case(p, 0);
2447#endif
2448
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002449 alist_add(&global_alist, p,
2450#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
Bram Moolenaar231334e2005-07-25 20:46:57 +00002451 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002452#else
2453 2 /* add buffer number now and use curbuf */
2454#endif
2455 );
2456
2457#if defined(FEAT_MBYTE) && defined(WIN32)
2458 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002459 /* Remember this argument has been added to the argument list.
2460 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002461 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002462# ifdef FEAT_DIFF
2463 parmp->diff_mode
2464# else
2465 FALSE
2466# endif
2467 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002468 }
2469#endif
2470 }
2471
2472 /*
2473 * If there are no more letters after the current "-", go to next
2474 * argument. argv_idx is set to -1 when the current argument is to be
2475 * skipped.
2476 */
2477 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2478 {
2479 --argc;
2480 ++argv;
2481 argv_idx = 1;
2482 }
2483 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002484
2485#ifdef FEAT_EVAL
2486 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2487 * one. */
2488 if (parmp->n_commands > 0)
2489 {
2490 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2491 if (p != NULL)
2492 {
2493 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2494 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2495 vim_free(p);
2496 }
2497 }
2498#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002499}
2500
2501/*
2502 * Print a warning if stdout is not a terminal.
2503 * When starting in Ex mode and commands come from a file, set Silent mode.
2504 */
2505 static void
2506check_tty(parmp)
2507 mparm_T *parmp;
2508{
2509 int input_isatty; /* is active input a terminal? */
2510
2511 input_isatty = mch_input_isatty();
2512 if (exmode_active)
2513 {
2514 if (!input_isatty)
2515 silent_mode = TRUE;
2516 }
2517 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2518#ifdef FEAT_GUI
2519 /* don't want the delay when started from the desktop */
2520 && !gui.starting
2521#endif
2522 )
2523 {
2524#ifdef NBDEBUG
2525 /*
2526 * This shouldn't be necessary. But if I run netbeans with the log
2527 * output coming to the console and XOpenDisplay fails, I get vim
2528 * trying to start with input/output to my console tty. This fills my
2529 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002530 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002531 */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002532 if (netbeans_active() && (!parmp->stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002533 {
2534 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2535 exit(1);
2536 }
2537#endif
2538 if (!parmp->stdout_isatty)
2539 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2540 if (!input_isatty)
2541 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2542 out_flush();
2543 if (scriptin[0] == NULL)
2544 ui_delay(2000L, TRUE);
2545 TIME_MSG("Warning delay");
2546 }
2547}
2548
2549/*
2550 * Read text from stdin.
2551 */
2552 static void
2553read_stdin()
2554{
2555 int i;
2556
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002557#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002558 /* When getting the ATTENTION prompt here, use a dialog */
2559 swap_exists_action = SEA_DIALOG;
2560#endif
2561 no_wait_return = TRUE;
2562 i = msg_didany;
2563 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002564 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002565 no_wait_return = FALSE;
2566 msg_didany = i;
2567 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002568#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002569 check_swap_exists_action();
2570#endif
2571#if !(defined(AMIGA) || defined(MACOS))
2572 /*
2573 * Close stdin and dup it from stderr. Required for GPM to work
2574 * properly, and for running external commands.
2575 * Is there any other system that cannot do this?
2576 */
2577 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002578 ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002579#endif
2580}
2581
2582/*
2583 * Create the requested number of windows and edit buffers in them.
2584 * Also does recovery if "recoverymode" set.
2585 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002586 static void
2587create_windows(parmp)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002588 mparm_T *parmp UNUSED;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002589{
2590#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002591 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002592 int done = 0;
2593
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002594 /*
2595 * Create the number of windows that was requested.
2596 */
2597 if (parmp->window_count == -1) /* was not set */
2598 parmp->window_count = 1;
2599 if (parmp->window_count == 0)
2600 parmp->window_count = GARGCOUNT;
2601 if (parmp->window_count > 1)
2602 {
2603 /* Don't change the windows if there was a command in .vimrc that
2604 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002605 if (parmp->window_layout == 0)
2606 parmp->window_layout = WIN_HOR;
2607 if (parmp->window_layout == WIN_TABS)
2608 {
2609 parmp->window_count = make_tabpages(parmp->window_count);
2610 TIME_MSG("making tab pages");
2611 }
2612 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002613 {
2614 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002615 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002616 TIME_MSG("making windows");
2617 }
2618 else
2619 parmp->window_count = win_count();
2620 }
2621 else
2622 parmp->window_count = 1;
2623#endif
2624
2625 if (recoverymode) /* do recover */
2626 {
2627 msg_scroll = TRUE; /* scroll message up */
2628 ml_recover();
2629 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2630 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002631 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002632 }
2633 else
2634 {
2635 /*
2636 * Open a buffer for windows that don't have one yet.
2637 * Commands in the .vimrc might have loaded a file or split the window.
2638 * Watch out for autocommands that delete a window.
2639 */
2640#ifdef FEAT_AUTOCMD
2641 /*
2642 * Don't execute Win/Buf Enter/Leave autocommands here
2643 */
2644 ++autocmd_no_enter;
2645 ++autocmd_no_leave;
2646#endif
2647#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002648 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002649 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002650 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002651 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002652 {
2653 if (parmp->window_layout == WIN_TABS)
2654 goto_tabpage(1);
2655 else
2656 curwin = firstwin;
2657 }
2658 else if (parmp->window_layout == WIN_TABS)
2659 {
2660 if (curtab->tp_next == NULL)
2661 break;
2662 goto_tabpage(0);
2663 }
2664 else
2665 {
2666 if (curwin->w_next == NULL)
2667 break;
2668 curwin = curwin->w_next;
2669 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002670 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002671#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002672 curbuf = curwin->w_buffer;
2673 if (curbuf->b_ml.ml_mfp == NULL)
2674 {
2675#ifdef FEAT_FOLDING
2676 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2677 if (p_fdls >= 0)
2678 curwin->w_p_fdl = p_fdls;
2679#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002680#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002681 /* When getting the ATTENTION prompt here, use a dialog */
2682 swap_exists_action = SEA_DIALOG;
2683#endif
2684 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002685
2686 /* create memfile, read file */
2687 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002688
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002689#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002690 if (swap_exists_action == SEA_QUIT)
2691 {
2692 if (got_int || only_one_window())
2693 {
2694 /* abort selected or quit and only one window */
2695 did_emsg = FALSE; /* avoid hit-enter prompt */
2696 getout(1);
2697 }
2698 /* We can't close the window, it would disturb what
2699 * happens next. Clear the file name and set the arg
2700 * index to -1 to delete it later. */
2701 setfname(curbuf, NULL, NULL, FALSE);
2702 curwin->w_arg_idx = -1;
2703 swap_exists_action = SEA_NONE;
2704 }
2705 else
2706 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002707#endif
2708#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002709 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002710#endif
2711 }
2712#ifdef FEAT_WINDOWS
2713 ui_breakcheck();
2714 if (got_int)
2715 {
2716 (void)vgetc(); /* only break the file loading, not the rest */
2717 break;
2718 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002719 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002720#endif
2721#ifdef FEAT_WINDOWS
2722 if (parmp->window_layout == WIN_TABS)
2723 goto_tabpage(1);
2724 else
2725 curwin = firstwin;
2726 curbuf = curwin->w_buffer;
2727#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002728#ifdef FEAT_AUTOCMD
2729 --autocmd_no_enter;
2730 --autocmd_no_leave;
2731#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002732 }
2733}
2734
2735#ifdef FEAT_WINDOWS
2736 /*
2737 * If opened more than one window, start editing files in the other
2738 * windows. make_windows() has already opened the windows.
2739 */
2740 static void
2741edit_buffers(parmp)
2742 mparm_T *parmp;
2743{
2744 int arg_idx; /* index in argument list */
2745 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002746 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002747 win_T *win;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002748
2749# ifdef FEAT_AUTOCMD
2750 /*
2751 * Don't execute Win/Buf Enter/Leave autocommands here
2752 */
2753 ++autocmd_no_enter;
2754 ++autocmd_no_leave;
2755# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002756
2757 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2758 if (curwin->w_arg_idx == -1)
2759 {
2760 win_close(curwin, TRUE);
2761 advance = FALSE;
2762 }
2763
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002764 arg_idx = 1;
2765 for (i = 1; i < parmp->window_count; ++i)
2766 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002767 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2768 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002769 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002770 ++arg_idx;
2771 win_close(curwin, TRUE);
2772 advance = FALSE;
2773 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002774 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002775
Bram Moolenaar84212822006-11-07 21:59:47 +00002776 if (advance)
2777 {
2778 if (parmp->window_layout == WIN_TABS)
2779 {
2780 if (curtab->tp_next == NULL) /* just checking */
2781 break;
2782 goto_tabpage(0);
2783 }
2784 else
2785 {
2786 if (curwin->w_next == NULL) /* just checking */
2787 break;
2788 win_enter(curwin->w_next, FALSE);
2789 }
2790 }
2791 advance = TRUE;
2792
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002793 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002794 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002795 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2796 {
2797 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002798 /* Edit file from arg list, if there is one. When "Quit" selected
2799 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002800# ifdef HAS_SWAP_EXISTS_ACTION
2801 swap_exists_did_quit = FALSE;
2802# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002803 (void)do_ecmd(0, arg_idx < GARGCOUNT
2804 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002805 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002806# ifdef HAS_SWAP_EXISTS_ACTION
2807 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002808 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002809 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002810 if (got_int || only_one_window())
2811 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002812 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002813 did_emsg = FALSE; /* avoid hit-enter prompt */
2814 getout(1);
2815 }
2816 win_close(curwin, TRUE);
2817 advance = FALSE;
2818 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002819# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002820 if (arg_idx == GARGCOUNT - 1)
2821 arg_had_last = TRUE;
2822 ++arg_idx;
2823 }
2824 ui_breakcheck();
2825 if (got_int)
2826 {
2827 (void)vgetc(); /* only break the file loading, not the rest */
2828 break;
2829 }
2830 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002831
2832 if (parmp->window_layout == WIN_TABS)
2833 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002834# ifdef FEAT_AUTOCMD
2835 --autocmd_no_enter;
2836# endif
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002837
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002838 /* make the first window the current window */
2839 win = firstwin;
2840#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2841 /* Avoid making a preview window the current window. */
2842 while (win->w_p_pvw)
2843 {
2844 win = win->w_next;
2845 if (win == NULL)
2846 {
2847 win = firstwin;
2848 break;
2849 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002850 }
2851#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002852 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002853
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002854# ifdef FEAT_AUTOCMD
2855 --autocmd_no_leave;
2856# endif
2857 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002858 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002859 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2860}
2861#endif /* FEAT_WINDOWS */
2862
2863/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002864 * Execute the commands from --cmd arguments "cmds[cnt]".
2865 */
2866 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002867exe_pre_commands(parmp)
2868 mparm_T *parmp;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002869{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002870 char_u **cmds = parmp->pre_commands;
2871 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002872 int i;
2873
2874 if (cnt > 0)
2875 {
2876 curwin->w_cursor.lnum = 0; /* just in case.. */
2877 sourcing_name = (char_u *)_("pre-vimrc command line");
2878# ifdef FEAT_EVAL
2879 current_SID = SID_CMDARG;
2880# endif
2881 for (i = 0; i < cnt; ++i)
2882 do_cmdline_cmd(cmds[i]);
2883 sourcing_name = NULL;
2884# ifdef FEAT_EVAL
2885 current_SID = 0;
2886# endif
2887 TIME_MSG("--cmd commands");
2888 }
2889}
2890
2891/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002892 * Execute "+", "-c" and "-S" arguments.
2893 */
2894 static void
2895exe_commands(parmp)
2896 mparm_T *parmp;
2897{
2898 int i;
2899
2900 /*
2901 * We start commands on line 0, make "vim +/pat file" match a
2902 * pattern on line 1. But don't move the cursor when an autocommand
2903 * with g`" was used.
2904 */
2905 msg_scroll = TRUE;
2906 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2907 curwin->w_cursor.lnum = 0;
2908 sourcing_name = (char_u *)"command line";
2909#ifdef FEAT_EVAL
2910 current_SID = SID_CARG;
2911#endif
2912 for (i = 0; i < parmp->n_commands; ++i)
2913 {
2914 do_cmdline_cmd(parmp->commands[i]);
2915 if (parmp->cmds_tofree[i])
2916 vim_free(parmp->commands[i]);
2917 }
2918 sourcing_name = NULL;
2919#ifdef FEAT_EVAL
2920 current_SID = 0;
2921#endif
2922 if (curwin->w_cursor.lnum == 0)
2923 curwin->w_cursor.lnum = 1;
2924
2925 if (!exmode_active)
2926 msg_scroll = FALSE;
2927
2928#ifdef FEAT_QUICKFIX
2929 /* When started with "-q errorfile" jump to first error again. */
2930 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002931 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002932#endif
2933 TIME_MSG("executing command arguments");
2934}
2935
2936/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002937 * Source startup scripts.
2938 */
2939 static void
2940source_startup_scripts(parmp)
2941 mparm_T *parmp;
2942{
2943 int i;
2944
2945 /*
2946 * For "evim" source evim.vim first of all, so that the user can overrule
2947 * any things he doesn't like.
2948 */
2949 if (parmp->evim_mode)
2950 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002951 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002952 TIME_MSG("source evim file");
2953 }
2954
2955 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002956 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002957 * nothing else.
2958 */
2959 if (parmp->use_vimrc != NULL)
2960 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002961 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2962 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002963 {
2964#ifdef FEAT_GUI
2965 if (use_gvimrc == NULL) /* don't load gvimrc either */
2966 use_gvimrc = parmp->use_vimrc;
2967#endif
2968 if (parmp->use_vimrc[2] == 'N')
2969 p_lpl = FALSE; /* don't load plugins either */
2970 }
2971 else
2972 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002973 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002974 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2975 }
2976 }
2977 else if (!silent_mode)
2978 {
2979#ifdef AMIGA
2980 struct Process *proc = (struct Process *)FindTask(0L);
2981 APTR save_winptr = proc->pr_WindowPtr;
2982
2983 /* Avoid a requester here for a volume that doesn't exist. */
2984 proc->pr_WindowPtr = (APTR)-1L;
2985#endif
2986
2987 /*
2988 * Get system wide defaults, if the file name is defined.
2989 */
2990#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002991 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002992#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002993#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002994 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002995#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002996
2997 /*
2998 * Try to read initialization commands from the following places:
2999 * - environment variable VIMINIT
3000 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
3001 * - second user vimrc file ($VIM/.vimrc for Dos)
3002 * - environment variable EXINIT
3003 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
3004 * - second user exrc file ($VIM/.exrc for Dos)
3005 * The first that exists is used, the rest is ignored.
3006 */
3007 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
3008 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003009 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003010#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003011 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
3012 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003013#endif
3014#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003015 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
3016 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003017#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02003018#ifdef USR_VIMRC_FILE4
3019 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
3020 DOSO_VIMRC) == FAIL
3021#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003022 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003023 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
Bram Moolenaar58d98232005-07-23 22:25:46 +00003024 {
3025#ifdef USR_EXRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003026 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003027#endif
3028 }
3029 }
3030
3031 /*
3032 * Read initialization commands from ".vimrc" or ".exrc" in current
3033 * directory. This is only done if the 'exrc' option is set.
3034 * Because of security reasons we disallow shell and write commands
3035 * now, except for unix if the file is owned by the user or 'secure'
3036 * option has been reset in environment of global ".exrc" or ".vimrc".
3037 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3038 * SYS_VIMRC_FILE.
3039 */
3040 if (p_exrc)
3041 {
3042#if defined(UNIX) || defined(VMS)
3043 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3044 if (!file_owned(VIMRC_FILE))
3045#endif
3046 secure = p_secure;
3047
3048 i = FAIL;
3049 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3050 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3051#ifdef USR_VIMRC_FILE2
3052 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3053 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3054#endif
3055#ifdef USR_VIMRC_FILE3
3056 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3057 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3058#endif
3059#ifdef SYS_VIMRC_FILE
3060 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3061 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3062#endif
3063 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003064 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003065
3066 if (i == FAIL)
3067 {
3068#if defined(UNIX) || defined(VMS)
3069 /* if ".exrc" is not owned by user set 'secure' mode */
3070 if (!file_owned(EXRC_FILE))
3071 secure = p_secure;
3072 else
3073 secure = 0;
3074#endif
3075 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3076 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3077#ifdef USR_EXRC_FILE2
3078 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3079 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3080#endif
3081 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003082 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003083 }
3084 }
3085 if (secure == 2)
3086 need_wait_return = TRUE;
3087 secure = 0;
3088#ifdef AMIGA
3089 proc->pr_WindowPtr = save_winptr;
3090#endif
3091 }
3092 TIME_MSG("sourcing vimrc file(s)");
3093}
3094
3095/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003096 * Setup to start using the GUI. Exit with an error when not available.
3097 */
3098 static void
3099main_start_gui()
3100{
3101#ifdef FEAT_GUI
3102 gui.starting = TRUE; /* start GUI a bit later */
3103#else
3104 mch_errmsg(_(e_nogvim));
3105 mch_errmsg("\n");
3106 mch_exit(2);
3107#endif
3108}
3109
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003110#endif /* NO_VIM_MAIN */
3111
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003112/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003113 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003114 * Returns FAIL if the environment variable was not executed, OK otherwise.
3115 */
3116 int
3117process_env(env, is_viminit)
3118 char_u *env;
3119 int is_viminit; /* when TRUE, called for VIMINIT */
3120{
3121 char_u *initstr;
3122 char_u *save_sourcing_name;
3123 linenr_T save_sourcing_lnum;
3124#ifdef FEAT_EVAL
3125 scid_T save_sid;
3126#endif
3127
3128 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3129 {
3130 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003131 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003132 save_sourcing_name = sourcing_name;
3133 save_sourcing_lnum = sourcing_lnum;
3134 sourcing_name = env;
3135 sourcing_lnum = 0;
3136#ifdef FEAT_EVAL
3137 save_sid = current_SID;
3138 current_SID = SID_ENV;
3139#endif
3140 do_cmdline_cmd(initstr);
3141 sourcing_name = save_sourcing_name;
3142 sourcing_lnum = save_sourcing_lnum;
3143#ifdef FEAT_EVAL
3144 current_SID = save_sid;;
3145#endif
3146 return OK;
3147 }
3148 return FAIL;
3149}
3150
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003151#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003152/*
3153 * Return TRUE if we are certain the user owns the file "fname".
3154 * Used for ".vimrc" and ".exrc".
3155 * Use both stat() and lstat() for extra security.
3156 */
3157 static int
3158file_owned(fname)
3159 char *fname;
3160{
3161 struct stat s;
3162# ifdef UNIX
3163 uid_t uid = getuid();
3164# else /* VMS */
3165 uid_t uid = ((getgid() << 16) | getuid());
3166# endif
3167
3168 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3169# ifdef HAVE_LSTAT
3170 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3171# endif
3172 );
3173}
3174#endif
3175
3176/*
3177 * Give an error message main_errors["n"] and exit.
3178 */
3179 static void
3180mainerr(n, str)
3181 int n; /* one of the ME_ defines */
3182 char_u *str; /* extra argument or NULL */
3183{
3184#if defined(UNIX) || defined(__EMX__) || defined(VMS)
3185 reset_signals(); /* kill us with CTRL-C here, if you like */
3186#endif
3187
3188 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003189 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003190 mch_errmsg(_(main_errors[n]));
3191 if (str != NULL)
3192 {
3193 mch_errmsg(": \"");
3194 mch_errmsg((char *)str);
3195 mch_errmsg("\"");
3196 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003197 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003198
3199 mch_exit(1);
3200}
3201
3202 void
3203mainerr_arg_missing(str)
3204 char_u *str;
3205{
3206 mainerr(ME_ARG_MISSING, str);
3207}
3208
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003209#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003210/*
3211 * print a message with three spaces prepended and '\n' appended.
3212 */
3213 static void
3214main_msg(s)
3215 char *s;
3216{
3217 mch_msg(" ");
3218 mch_msg(s);
3219 mch_msg("\n");
3220}
3221
3222/*
3223 * Print messages for "vim -h" or "vim --help" and exit.
3224 */
3225 static void
3226usage()
3227{
3228 int i;
3229 static char *(use[]) =
3230 {
3231 N_("[file ..] edit specified file(s)"),
3232 N_("- read text from stdin"),
3233 N_("-t tag edit file where tag is defined"),
3234#ifdef FEAT_QUICKFIX
3235 N_("-q [errorfile] edit file with first error")
3236#endif
3237 };
3238
3239#if defined(UNIX) || defined(__EMX__) || defined(VMS)
3240 reset_signals(); /* kill us with CTRL-C here, if you like */
3241#endif
3242
3243 mch_msg(longVersion);
3244 mch_msg(_("\n\nusage:"));
3245 for (i = 0; ; ++i)
3246 {
3247 mch_msg(_(" vim [arguments] "));
3248 mch_msg(_(use[i]));
3249 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3250 break;
3251 mch_msg(_("\n or:"));
3252 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003253#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003254 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003255#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003256
3257 mch_msg(_("\n\nArguments:\n"));
3258 main_msg(_("--\t\t\tOnly file names after this"));
3259#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3260 main_msg(_("--literal\t\tDon't expand wildcards"));
3261#endif
3262#ifdef FEAT_OLE
3263 main_msg(_("-register\t\tRegister this gvim for OLE"));
3264 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3265#endif
3266#ifdef FEAT_GUI
3267 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3268 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3269#endif
3270 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3271 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003272 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003273 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3274#ifdef FEAT_DIFF
3275 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3276#endif
3277 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3278 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3279 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3280 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3281 main_msg(_("-M\t\t\tModifications in text not allowed"));
3282 main_msg(_("-b\t\t\tBinary mode"));
3283#ifdef FEAT_LISP
3284 main_msg(_("-l\t\t\tLisp mode"));
3285#endif
3286 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3287 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003288 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3289#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003290 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003291#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003292 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3293 main_msg(_("-r\t\t\tList swap files and exit"));
3294 main_msg(_("-r (with file name)\tRecover crashed session"));
3295 main_msg(_("-L\t\t\tSame as -r"));
3296#ifdef AMIGA
3297 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3298 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3299#endif
3300#ifdef FEAT_ARABIC
3301 main_msg(_("-A\t\t\tstart in Arabic mode"));
3302#endif
3303#ifdef FEAT_RIGHTLEFT
3304 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3305#endif
3306#ifdef FEAT_FKMAP
3307 main_msg(_("-F\t\t\tStart in Farsi mode"));
3308#endif
3309 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3310 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3311#ifdef FEAT_GUI
3312 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3313#endif
3314 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003315#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003316 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003317 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3318 main_msg(_("-O[N]\t\tLike -o but split vertically"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003319#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003320 main_msg(_("+\t\t\tStart at end of file"));
3321 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003322 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003323 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3324 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3325 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3326 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3327 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3328#ifdef FEAT_CRYPT
3329 main_msg(_("-x\t\t\tEdit encrypted files"));
3330#endif
3331#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3332# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3333 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3334# endif
3335 main_msg(_("-X\t\t\tDo not connect to X server"));
3336#endif
3337#ifdef FEAT_CLIENTSERVER
3338 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3339 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3340 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3341 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003342# ifdef FEAT_WINDOWS
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003343 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003344# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003345 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3346 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3347 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3348 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3349#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003350#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003351 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003352#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003353#ifdef FEAT_VIMINFO
3354 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3355#endif
3356 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3357 main_msg(_("--version\t\tPrint version information and exit"));
3358
3359#ifdef FEAT_GUI_X11
3360# ifdef FEAT_GUI_MOTIF
3361 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3362# else
3363# ifdef FEAT_GUI_ATHENA
3364# ifdef FEAT_GUI_NEXTAW
3365 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3366# else
3367 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3368# endif
3369# endif
3370# endif
3371 main_msg(_("-display <display>\tRun vim on <display>"));
3372 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003373 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3374 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3375 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3376 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3377 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3378 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3379 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3380 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3381# ifdef FEAT_GUI_ATHENA
3382 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3383# endif
3384 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3385 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3386 main_msg(_("-xrm <resource>\tSet the specified resource"));
3387#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003388#ifdef FEAT_GUI_GTK
3389 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3390 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3391 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3392 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3393 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003394 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003395 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003396 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003397#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003398#ifdef FEAT_GUI_W32
3399 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003400 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003401#endif
3402
3403#ifdef FEAT_GUI_GNOME
3404 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3405 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003406 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003407 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003408 gui.dofork = FALSE;
3409 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003410 else
3411#endif
3412 mch_exit(0);
3413}
3414
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003415#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003416/*
3417 * Check the result of the ATTENTION dialog:
3418 * When "Quit" selected, exit Vim.
3419 * When "Recover" selected, recover the file.
3420 */
3421 static void
3422check_swap_exists_action()
3423{
3424 if (swap_exists_action == SEA_QUIT)
3425 getout(1);
3426 handle_swap_exists(NULL);
3427}
3428#endif
3429
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003430#endif
3431
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003432#if defined(STARTUPTIME) || defined(PROTO)
3433static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3434
3435static struct timeval prev_timeval;
3436
Bram Moolenaar3f269672009-11-03 11:11:11 +00003437# ifdef WIN3264
3438/*
3439 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3440 */
3441 static int
3442gettimeofday(struct timeval *tv, char *dummy)
3443{
3444 long t = clock();
3445 tv->tv_sec = t / CLOCKS_PER_SEC;
3446 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3447 return 0;
3448}
3449# endif
3450
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003451/*
3452 * Save the previous time before doing something that could nest.
3453 * set "*tv_rel" to the time elapsed so far.
3454 */
3455 void
3456time_push(tv_rel, tv_start)
3457 void *tv_rel, *tv_start;
3458{
3459 *((struct timeval *)tv_rel) = prev_timeval;
3460 gettimeofday(&prev_timeval, NULL);
3461 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3462 - ((struct timeval *)tv_rel)->tv_usec;
3463 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3464 - ((struct timeval *)tv_rel)->tv_sec;
3465 if (((struct timeval *)tv_rel)->tv_usec < 0)
3466 {
3467 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3468 --((struct timeval *)tv_rel)->tv_sec;
3469 }
3470 *(struct timeval *)tv_start = prev_timeval;
3471}
3472
3473/*
3474 * Compute the previous time after doing something that could nest.
3475 * Subtract "*tp" from prev_timeval;
3476 * Note: The arguments are (void *) to avoid trouble with systems that don't
3477 * have struct timeval.
3478 */
3479 void
3480time_pop(tp)
3481 void *tp; /* actually (struct timeval *) */
3482{
3483 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3484 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3485 if (prev_timeval.tv_usec < 0)
3486 {
3487 prev_timeval.tv_usec += 1000000;
3488 --prev_timeval.tv_sec;
3489 }
3490}
3491
3492 static void
3493time_diff(then, now)
3494 struct timeval *then;
3495 struct timeval *now;
3496{
3497 long usec;
3498 long msec;
3499
3500 usec = now->tv_usec - then->tv_usec;
3501 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3502 usec = usec % 1000L;
3503 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3504}
3505
3506 void
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003507time_msg(mesg, tv_start)
3508 char *mesg;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003509 void *tv_start; /* only for do_source: start time; actually
3510 (struct timeval *) */
3511{
3512 static struct timeval start;
3513 struct timeval now;
3514
3515 if (time_fd != NULL)
3516 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003517 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003518 {
3519 gettimeofday(&start, NULL);
3520 prev_timeval = start;
3521 fprintf(time_fd, "\n\ntimes in msec\n");
3522 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3523 fprintf(time_fd, " clock elapsed: other lines\n\n");
3524 }
3525 gettimeofday(&now, NULL);
3526 time_diff(&start, &now);
3527 if (((struct timeval *)tv_start) != NULL)
3528 {
3529 fprintf(time_fd, " ");
3530 time_diff(((struct timeval *)tv_start), &now);
3531 }
3532 fprintf(time_fd, " ");
3533 time_diff(&prev_timeval, &now);
3534 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003535 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003536 }
3537}
3538
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003539#endif
3540
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003541#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003542
3543/*
3544 * Common code for the X command server and the Win32 command server.
3545 */
3546
Bram Moolenaareb94e552006-03-11 21:35:11 +00003547static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003548
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003549/*
3550 * Do the client-server stuff, unless "--servername ''" was used.
3551 */
3552 static void
3553exec_on_server(parmp)
3554 mparm_T *parmp;
3555{
3556 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3557 {
3558# ifdef WIN32
3559 /* Initialise the client/server messaging infrastructure. */
3560 serverInitMessaging();
3561# endif
3562
3563 /*
3564 * When a command server argument was found, execute it. This may
3565 * exit Vim when it was successful. Otherwise it's executed further
3566 * on. Remember the encoding used here in "serverStrEnc".
3567 */
3568 if (parmp->serverArg)
3569 {
3570 cmdsrv_main(&parmp->argc, parmp->argv,
3571 parmp->serverName_arg, &parmp->serverStr);
3572# ifdef FEAT_MBYTE
3573 parmp->serverStrEnc = vim_strsave(p_enc);
3574# endif
3575 }
3576
3577 /* If we're still running, get the name to register ourselves.
3578 * On Win32 can register right now, for X11 need to setup the
3579 * clipboard first, it's further down. */
3580 parmp->servername = serverMakeName(parmp->serverName_arg,
3581 parmp->argv[0]);
3582# ifdef WIN32
3583 if (parmp->servername != NULL)
3584 {
3585 serverSetName(parmp->servername);
3586 vim_free(parmp->servername);
3587 }
3588# endif
3589 }
3590}
3591
3592/*
3593 * Prepare for running as a Vim server.
3594 */
3595 static void
3596prepare_server(parmp)
3597 mparm_T *parmp;
3598{
3599# if defined(FEAT_X11)
3600 /*
3601 * Register for remote command execution with :serversend and --remote
3602 * unless there was a -X or a --servername '' on the command line.
3603 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003604 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003605 */
3606 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3607# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003608 (gui.in_use
3609# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003610 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003611# endif
3612 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003613# endif
3614 parmp->serverName_arg != NULL))
3615 {
3616 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3617 vim_free(parmp->servername);
3618 TIME_MSG("register server name");
3619 }
3620 else
3621 serverDelayedStartName = parmp->servername;
3622# endif
3623
3624 /*
3625 * Execute command ourselves if we're here because the send failed (or
3626 * else we would have exited above).
3627 */
3628 if (parmp->serverStr != NULL)
3629 {
3630 char_u *p;
3631
3632 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3633 parmp->serverStr, &p));
3634 vim_free(p);
3635 }
3636}
3637
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003638 static void
3639cmdsrv_main(argc, argv, serverName_arg, serverStr)
3640 int *argc;
3641 char **argv;
3642 char_u *serverName_arg;
3643 char_u **serverStr;
3644{
3645 char_u *res;
3646 int i;
3647 char_u *sname;
3648 int ret;
3649 int didone = FALSE;
3650 int exiterr = 0;
3651 char **newArgV = argv + 1;
3652 int newArgC = 1,
3653 Argc = *argc;
3654 int argtype;
3655#define ARGTYPE_OTHER 0
3656#define ARGTYPE_EDIT 1
3657#define ARGTYPE_EDIT_WAIT 2
3658#define ARGTYPE_SEND 3
3659 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003660 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003661# ifndef FEAT_X11
3662 HWND srv;
3663# else
3664 Window srv;
3665
3666 setup_term_clip();
3667# endif
3668
3669 sname = serverMakeName(serverName_arg, argv[0]);
3670 if (sname == NULL)
3671 return;
3672
3673 /*
3674 * Execute the command server related arguments and remove them
3675 * from the argc/argv array; We may have to return into main()
3676 */
3677 for (i = 1; i < Argc; i++)
3678 {
3679 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003680 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003681 {
3682 for (; i < *argc; i++)
3683 {
3684 *newArgV++ = argv[i];
3685 newArgC++;
3686 }
3687 break;
3688 }
3689
Bram Moolenaareb94e552006-03-11 21:35:11 +00003690 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003691 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003692 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3693 {
3694 char *p = argv[i] + 8;
3695
3696 argtype = ARGTYPE_EDIT;
3697 while (*p != NUL)
3698 {
3699 if (STRNICMP(p, "-wait", 5) == 0)
3700 {
3701 argtype = ARGTYPE_EDIT_WAIT;
3702 p += 5;
3703 }
3704 else if (STRNICMP(p, "-silent", 7) == 0)
3705 {
3706 silent = TRUE;
3707 p += 7;
3708 }
3709 else if (STRNICMP(p, "-tab", 4) == 0)
3710 {
3711 tabs = TRUE;
3712 p += 4;
3713 }
3714 else
3715 {
3716 argtype = ARGTYPE_OTHER;
3717 break;
3718 }
3719 }
3720 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003721 else
3722 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003723
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003724 if (argtype != ARGTYPE_OTHER)
3725 {
3726 if (i == *argc - 1)
3727 mainerr_arg_missing((char_u *)argv[i]);
3728 if (argtype == ARGTYPE_SEND)
3729 {
3730 *serverStr = (char_u *)argv[i + 1];
3731 i++;
3732 }
3733 else
3734 {
3735 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003736 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003737 if (*serverStr == NULL)
3738 {
3739 /* Probably out of memory, exit. */
3740 didone = TRUE;
3741 exiterr = 1;
3742 break;
3743 }
3744 Argc = i;
3745 }
3746# ifdef FEAT_X11
3747 if (xterm_dpy == NULL)
3748 {
3749 mch_errmsg(_("No display"));
3750 ret = -1;
3751 }
3752 else
3753 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3754 NULL, &srv, 0, 0, silent);
3755# else
3756 /* Win32 always works? */
3757 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3758# endif
3759 if (ret < 0)
3760 {
3761 if (argtype == ARGTYPE_SEND)
3762 {
3763 /* Failed to send, abort. */
3764 mch_errmsg(_(": Send failed.\n"));
3765 didone = TRUE;
3766 exiterr = 1;
3767 }
3768 else if (!silent)
3769 /* Let vim start normally. */
3770 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3771 break;
3772 }
3773
3774# ifdef FEAT_GUI_W32
3775 /* Guess that when the server name starts with "g" it's a GUI
3776 * server, which we can bring to the foreground here.
3777 * Foreground() in the server doesn't work very well. */
3778 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3779 SetForegroundWindow(srv);
3780# endif
3781
3782 /*
3783 * For --remote-wait: Wait until the server did edit each
3784 * file. Also detect that the server no longer runs.
3785 */
3786 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3787 {
3788 int numFiles = *argc - i - 1;
3789 int j;
3790 char_u *done = alloc(numFiles);
3791 char_u *p;
3792# ifdef FEAT_GUI_W32
3793 NOTIFYICONDATA ni;
3794 int count = 0;
3795 extern HWND message_window;
3796# endif
3797
3798 if (numFiles > 0 && argv[i + 1][0] == '+')
3799 /* Skip "+cmd" argument, don't wait for it to be edited. */
3800 --numFiles;
3801
3802# ifdef FEAT_GUI_W32
3803 ni.cbSize = sizeof(ni);
3804 ni.hWnd = message_window;
3805 ni.uID = 0;
3806 ni.uFlags = NIF_ICON|NIF_TIP;
3807 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3808 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3809 Shell_NotifyIcon(NIM_ADD, &ni);
3810# endif
3811
3812 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003813 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003814 while (memchr(done, 0, numFiles) != NULL)
3815 {
3816# ifdef WIN32
3817 p = serverGetReply(srv, NULL, TRUE, TRUE);
3818 if (p == NULL)
3819 break;
3820# else
3821 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3822 break;
3823# endif
3824 j = atoi((char *)p);
3825 if (j >= 0 && j < numFiles)
3826 {
3827# ifdef FEAT_GUI_W32
3828 ++count;
3829 sprintf(ni.szTip, _("%d of %d edited"),
3830 count, numFiles);
3831 Shell_NotifyIcon(NIM_MODIFY, &ni);
3832# endif
3833 done[j] = 1;
3834 }
3835 }
3836# ifdef FEAT_GUI_W32
3837 Shell_NotifyIcon(NIM_DELETE, &ni);
3838# endif
3839 }
3840 }
3841 else if (STRICMP(argv[i], "--remote-expr") == 0)
3842 {
3843 if (i == *argc - 1)
3844 mainerr_arg_missing((char_u *)argv[i]);
3845# ifdef WIN32
3846 /* Win32 always works? */
3847 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3848 &res, NULL, 1, FALSE) < 0)
3849# else
3850 if (xterm_dpy == NULL)
3851 mch_errmsg(_("No display: Send expression failed.\n"));
3852 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3853 &res, NULL, 1, 1, FALSE) < 0)
3854# endif
3855 {
3856 if (res != NULL && *res != NUL)
3857 {
3858 /* Output error from remote */
3859 mch_errmsg((char *)res);
3860 vim_free(res);
3861 res = NULL;
3862 }
3863 mch_errmsg(_(": Send expression failed.\n"));
3864 }
3865 }
3866 else if (STRICMP(argv[i], "--serverlist") == 0)
3867 {
3868# ifdef WIN32
3869 /* Win32 always works? */
3870 res = serverGetVimNames();
3871# else
3872 if (xterm_dpy != NULL)
3873 res = serverGetVimNames(xterm_dpy);
3874# endif
3875 if (called_emsg)
3876 mch_errmsg("\n");
3877 }
3878 else if (STRICMP(argv[i], "--servername") == 0)
3879 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003880 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003881 i++;
3882 continue;
3883 }
3884 else
3885 {
3886 *newArgV++ = argv[i];
3887 newArgC++;
3888 continue;
3889 }
3890 didone = TRUE;
3891 if (res != NULL && *res != NUL)
3892 {
3893 mch_msg((char *)res);
3894 if (res[STRLEN(res) - 1] != '\n')
3895 mch_msg("\n");
3896 }
3897 vim_free(res);
3898 }
3899
3900 if (didone)
3901 {
3902 display_errors(); /* display any collected messages */
3903 exit(exiterr); /* Mission accomplished - get out */
3904 }
3905
3906 /* Return back into main() */
3907 *argc = newArgC;
3908 vim_free(sname);
3909}
3910
3911/*
3912 * Build a ":drop" command to send to a Vim server.
3913 */
3914 static char_u *
Bram Moolenaareb94e552006-03-11 21:35:11 +00003915build_drop_cmd(filec, filev, tabs, sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003916 int filec;
3917 char **filev;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003918 int tabs; /* Use ":tab drop" instead of ":drop". */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003919 int sendReply;
3920{
3921 garray_T ga;
3922 int i;
3923 char_u *inicmd = NULL;
3924 char_u *p;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003925 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003926
3927 if (filec > 0 && filev[0][0] == '+')
3928 {
3929 inicmd = (char_u *)filev[0] + 1;
3930 filev++;
3931 filec--;
3932 }
3933 /* Check if we have at least one argument. */
3934 if (filec <= 0)
3935 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003936
3937 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003938 cwd = alloc(MAXPATHL);
3939 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003940 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003941 if (mch_dirname(cwd, MAXPATHL) != OK)
3942 {
3943 vim_free(cwd);
3944 return NULL;
3945 }
3946 p = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00003947#ifdef BACKSLASH_IN_FILENAME
3948 "", /* rem_backslash() will tell what chars to escape */
3949#else
3950 PATH_ESC_CHARS,
3951#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02003952 '\\', TRUE);
3953 vim_free(cwd);
3954 if (p == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003955 return NULL;
3956 ga_init2(&ga, 1, 100);
3957 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3958 ga_concat(&ga, p);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003959 vim_free(p);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003960
3961 /* Call inputsave() so that a prompt for an encryption key works. */
3962 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3963 if (tabs)
3964 ga_concat(&ga, (char_u *)"tab ");
3965 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003966 for (i = 0; i < filec; i++)
3967 {
3968 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003969 * do it again in the Vim server. On MS-Windows only escape
3970 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003971 p = vim_strsave_escaped((char_u *)filev[i],
3972#ifdef UNIX
3973 PATH_ESC_CHARS
3974#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003975 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003976#endif
3977 );
3978 if (p == NULL)
3979 {
3980 vim_free(ga.ga_data);
3981 return NULL;
3982 }
3983 ga_concat(&ga, (char_u *)" ");
3984 ga_concat(&ga, p);
3985 vim_free(p);
3986 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003987 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3988
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003989 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3990 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003991 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
3992
3993 /* Switch back to the correct current directory (prior to temporary path
3994 * switch) unless 'autochdir' is set, in which case it will already be
3995 * correct after the :drop command. */
3996 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|cd -|endif<CR>");
3997
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003998 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003999 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
4000 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004001 if (inicmd != NULL)
4002 {
4003 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
4004 * the following commands to be inserted as text. Use a "|",
4005 * hopefully "inicmd" does allow this... */
4006 ga_concat(&ga, inicmd);
4007 ga_concat(&ga, (char_u *)"|");
4008 }
4009 /* Bring the window to the foreground, goto Insert mode when 'im' set and
4010 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00004011 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004012 ga_append(&ga, NUL);
4013 return ga.ga_data;
4014}
4015
4016/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004017 * Make our basic server name: use the specified "arg" if given, otherwise use
4018 * the tail of the command "cmd" we were started with.
4019 * Return the name in allocated memory. This doesn't include a serial number.
4020 */
4021 static char_u *
4022serverMakeName(arg, cmd)
4023 char_u *arg;
4024 char *cmd;
4025{
4026 char_u *p;
4027
4028 if (arg != NULL && *arg != NUL)
4029 p = vim_strsave_up(arg);
4030 else
4031 {
4032 p = vim_strsave_up(gettail((char_u *)cmd));
4033 /* Remove .exe or .bat from the name. */
4034 if (p != NULL && vim_strchr(p, '.') != NULL)
4035 *vim_strchr(p, '.') = NUL;
4036 }
4037 return p;
4038}
4039#endif /* FEAT_CLIENTSERVER */
4040
4041#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4042/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004043 * Replace termcodes such as <CR> and insert as key presses if there is room.
4044 */
4045 void
4046server_to_input_buf(str)
4047 char_u *str;
4048{
4049 char_u *ptr = NULL;
4050 char_u *cpo_save = p_cpo;
4051
4052 /* Set 'cpoptions' the way we want it.
4053 * B set - backslashes are *not* treated specially
4054 * k set - keycodes are *not* reverse-engineered
4055 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004056 * The last but one parameter of replace_termcodes() is TRUE so that the
4057 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004058 */
4059 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004060 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004061 p_cpo = cpo_save;
4062
4063 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4064 {
4065 /*
4066 * Add the string to the input stream.
4067 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4068 *
4069 * First clear typed characters from the typeahead buffer, there could
4070 * be half a mapping there. Then append to the existing string, so
4071 * that multiple commands from a client are concatenated.
4072 */
4073 if (typebuf.tb_maplen < typebuf.tb_len)
4074 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4075 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4076
4077 /* Let input_available() know we inserted text in the typeahead
4078 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004079 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004080 }
4081 vim_free((char_u *)ptr);
4082}
4083
4084/*
4085 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004086 */
4087 char_u *
4088eval_client_expr_to_string(expr)
4089 char_u *expr;
4090{
4091 char_u *res;
4092 int save_dbl = debug_break_level;
4093 int save_ro = redir_off;
4094
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004095 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4096 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004097 debug_break_level = -1;
4098 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004099 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4100 * to be typed. Do generate errors so that try/catch works. */
4101 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004102
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004103 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004104
4105 debug_break_level = save_dbl;
4106 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004107 --emsg_silent;
4108 if (emsg_silent < 0)
4109 emsg_silent = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004110
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004111 /* A client can tell us to redraw, but not to display the cursor, so do
4112 * that here. */
4113 setcursor();
4114 out_flush();
4115#ifdef FEAT_GUI
4116 if (gui.in_use)
4117 gui_update_cursor(FALSE, FALSE);
4118#endif
4119
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004120 return res;
4121}
4122
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004123/*
4124 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4125 * return an allocated string. Otherwise return "data".
4126 * "*tofree" is set to the result when it needs to be freed later.
4127 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004128 char_u *
4129serverConvert(client_enc, data, tofree)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004130 char_u *client_enc UNUSED;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004131 char_u *data;
4132 char_u **tofree;
4133{
4134 char_u *res = data;
4135
4136 *tofree = NULL;
4137# ifdef FEAT_MBYTE
4138 if (client_enc != NULL && p_enc != NULL)
4139 {
4140 vimconv_T vimconv;
4141
4142 vimconv.vc_type = CONV_NONE;
4143 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4144 && vimconv.vc_type != CONV_NONE)
4145 {
4146 res = string_convert(&vimconv, data, NULL);
4147 if (res == NULL)
4148 res = data;
4149 else
4150 *tofree = res;
4151 }
4152 convert_setup(&vimconv, NULL, NULL);
4153 }
4154# endif
4155 return res;
4156}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004157#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004158
4159/*
4160 * When FEAT_FKMAP is defined, also compile the Farsi source code.
4161 */
4162#if defined(FEAT_FKMAP) || defined(PROTO)
4163# include "farsi.c"
4164#endif
4165
4166/*
4167 * When FEAT_ARABIC is defined, also compile the Arabic source code.
4168 */
4169#if defined(FEAT_ARABIC) || defined(PROTO)
4170# include "arabic.c"
4171#endif