blob: 1814385197b7da005bde3d83fbeda5cff86c5fd1 [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 Moolenaar3a0c9082014-11-12 15:15:42 +0100857 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200858 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000859 TIME_MSG("getting crypt key");
860 }
861#endif
862
863 no_wait_return = TRUE;
864
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000865 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000866 * Create the requested number of windows and edit buffers in them.
867 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000868 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000869 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000870 TIME_MSG("opening buffers");
871
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000872#ifdef FEAT_EVAL
873 /* clear v:swapcommand */
874 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
875#endif
876
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000877 /* Ex starts at last line of the file */
878 if (exmode_active)
879 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
880
881#ifdef FEAT_AUTOCMD
882 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
883 TIME_MSG("BufEnter autocommands");
884#endif
885 setpcmark();
886
887#ifdef FEAT_QUICKFIX
888 /*
889 * When started with "-q errorfile" jump to first error now.
890 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000891 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000892 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000893 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000894 TIME_MSG("jump to first error");
895 }
896#endif
897
898#ifdef FEAT_WINDOWS
899 /*
900 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000901 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000902 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000903 edit_buffers(&params);
904#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000905
906#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000907 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000908 {
909 win_T *wp;
910
911 /* set options in each window for "vimdiff". */
912 for (wp = firstwin; wp != NULL; wp = wp->w_next)
913 diff_win_options(wp, TRUE);
914 }
915#endif
916
917 /*
918 * Shorten any of the filenames, but only when absolute.
919 */
920 shorten_fnames(FALSE);
921
922 /*
923 * Need to jump to the tag before executing the '-c command'.
924 * Makes "vim -c '/return' -t main" work.
925 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000926 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000927 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000928#if defined(HAS_SWAP_EXISTS_ACTION)
929 swap_exists_did_quit = FALSE;
930#endif
931
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000932 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000933 do_cmdline_cmd(IObuff);
934 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000935
936#if defined(HAS_SWAP_EXISTS_ACTION)
937 /* If the user doesn't want to edit the file then we quit here. */
938 if (swap_exists_did_quit)
939 getout(1);
940#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000941 }
942
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000943 /* Execute any "+", "-c" and "-S" arguments. */
944 if (params.n_commands > 0)
945 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000946
947 RedrawingDisabled = 0;
948 redraw_all_later(NOT_VALID);
949 no_wait_return = FALSE;
950 starting = 0;
951
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000952#ifdef FEAT_TERMRESPONSE
953 /* Requesting the termresponse is postponed until here, so that a "-c q"
954 * argument doesn't make it appear in the shell Vim was started from. */
955 may_req_termresponse();
956#endif
957
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000958 /* start in insert mode */
959 if (p_im)
960 need_start_insertmode = TRUE;
961
Bram Moolenaar714db3b2014-09-19 13:46:52 +0200962#ifdef FEAT_CLIPBOARD
963 if (clip_unnamed)
964 /* do not overwrite system clipboard while starting up */
965 clip_did_set_selection = -1;
966#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000967#ifdef FEAT_AUTOCMD
968 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar714db3b2014-09-19 13:46:52 +0200969# ifdef FEAT_CLIPBOARD
970 if (clip_did_set_selection < 0)
971 clip_did_set_selection = TRUE;
972# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000973 TIME_MSG("VimEnter autocommands");
974#endif
975
Bram Moolenaarb429cde2012-04-25 18:24:29 +0200976#if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD)
977 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be
978 * done after the clipboard is available and all initial commands that may
979 * modify the 'clipboard' setting have run; i.e. just before entering the
980 * main loop. */
981 {
982 int default_regname = 0;
983 adjust_clip_reg(&default_regname);
984 set_reg_var(default_regname);
985 }
986#endif
987
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000988#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
989 /* When a startup script or session file setup for diff'ing and
990 * scrollbind, sync the scrollbind now. */
991 if (curwin->w_p_diff && curwin->w_p_scb)
992 {
993 update_topline();
994 check_scrollbind((linenr_T)0, 0L);
995 TIME_MSG("diff scrollbinding");
996 }
997#endif
998
999#if defined(WIN3264) && !defined(FEAT_GUI_W32)
1000 mch_set_winsize_now(); /* Allow winsize changes from now on */
1001#endif
1002
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001003#if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
1004 /* When tab pages were created, may need to update the tab pages line and
1005 * scrollbars. This is skipped while creating them. */
1006 if (first_tabpage->tp_next != NULL)
1007 {
1008 out_flush();
1009 gui_init_which_components(NULL);
1010 gui_update_scrollbars(TRUE);
1011 }
1012 need_mouse_correct = TRUE;
1013#endif
1014
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001015 /* If ":startinsert" command used, stuff a dummy command to be able to
1016 * call normal_cmd(), which will then start Insert mode. */
1017 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +00001018 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001019
1020#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001021 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001022 {
1023# ifdef FEAT_GUI
Bram Moolenaar173c9852010-09-29 17:27:01 +02001024# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
Bram Moolenaar67c53842010-05-22 18:28:27 +02001025 && !defined(FEAT_GUI_W32)
1026 if (gui.in_use)
1027 {
1028 mch_errmsg(_("netbeans is not supported with this GUI\n"));
1029 mch_exit(2);
1030 }
1031# endif
1032# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001033 /* Tell the client that it can start sending commands. */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02001034 netbeans_open(netbeansArg + 3, TRUE);
Bram Moolenaar67c53842010-05-22 18:28:27 +02001035 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001036#endif
1037
1038 TIME_MSG("before starting main loop");
1039
1040 /*
1041 * Call the main command loop. This never returns.
Bram Moolenaarbbc98db2012-02-12 01:55:55 +01001042 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001043 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001044
1045 return 0;
1046}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001047#endif /* NO_VIM_MAIN */
Bram Moolenaar8866d272012-11-28 15:55:42 +01001048#endif /* PROTO */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001049
1050/*
1051 * Main loop: Execute Normal mode commands until exiting Vim.
1052 * Also used to handle commands in the command-line window, until the window
1053 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001054 * Also used to handle ":visual" command after ":global": execute Normal mode
1055 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001056 */
1057 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001058main_loop(cmdwin, noexmode)
1059 int cmdwin; /* TRUE when working in the command-line window */
1060 int noexmode; /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001061{
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001062 oparg_T oa; /* operator arguments */
1063 int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001064#ifdef FEAT_CONCEAL
1065 linenr_T conceal_old_cursor_line = 0;
1066 linenr_T conceal_new_cursor_line = 0;
1067 int conceal_update_lines = FALSE;
1068#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001069
1070#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1071 /* Setup to catch a terminating error from the X server. Just ignore
1072 * it, restore the state and continue. This might not always work
1073 * properly, but at least we don't exit unexpectedly when the X server
Bram Moolenaar2cd36962014-01-14 12:57:05 +01001074 * exits while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001075 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001076 {
1077 State = NORMAL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001078 VIsual_active = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001079 got_int = TRUE;
1080 need_wait_return = FALSE;
1081 global_busy = FALSE;
1082 exmode_active = 0;
1083 skip_redraw = FALSE;
1084 RedrawingDisabled = 0;
1085 no_wait_return = 0;
Bram Moolenaar7701c242011-10-04 16:43:53 +02001086 vgetc_busy = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001087# ifdef FEAT_EVAL
1088 emsg_skip = 0;
1089# endif
1090 emsg_off = 0;
1091# ifdef FEAT_MOUSE
1092 setmouse();
1093# endif
1094 settmode(TMODE_RAW);
1095 starttermcap();
1096 scroll_start();
1097 redraw_later_clear();
1098 }
1099#endif
1100
1101 clear_oparg(&oa);
1102 while (!cmdwin
1103#ifdef FEAT_CMDWIN
1104 || cmdwin_result == 0
1105#endif
1106 )
1107 {
1108 if (stuff_empty())
1109 {
1110 did_check_timestamps = FALSE;
1111 if (need_check_timestamps)
1112 check_timestamps(FALSE);
1113 if (need_wait_return) /* if wait_return still needed ... */
1114 wait_return(FALSE); /* ... call it now */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001115 if (need_start_insertmode && goto_im() && !VIsual_active)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001116 {
1117 need_start_insertmode = FALSE;
1118 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1119 /* skip the fileinfo message now, because it would be shown
1120 * after insert mode finishes! */
1121 need_fileinfo = FALSE;
1122 }
1123 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001124
1125 /* Reset "got_int" now that we got back to the main loop. Except when
1126 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1127 * the ":g" command.
1128 * For ":g/pat/vi" we reset "got_int" when used once. When used
1129 * a second time we go back to Ex mode and abort the ":g" command. */
1130 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001131 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001132 if (noexmode && global_busy && !exmode_active && previous_got_int)
1133 {
1134 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1135 * used and keep "got_int" set, so that it aborts ":g". */
1136 exmode_active = EXMODE_NORMAL;
1137 State = NORMAL;
1138 }
1139 else if (!global_busy || !exmode_active)
1140 {
1141 if (!quit_more)
1142 (void)vgetc(); /* flush all buffers */
1143 got_int = FALSE;
1144 }
1145 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001146 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001147 else
1148 previous_got_int = FALSE;
1149
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001150 if (!exmode_active)
1151 msg_scroll = FALSE;
1152 quit_more = FALSE;
1153
1154 /*
1155 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1156 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1157 * update cursor and redraw.
1158 */
1159 if (skip_redraw || exmode_active)
1160 skip_redraw = FALSE;
1161 else if (do_redraw || stuff_empty())
1162 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001163#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001164 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001165 if (!finish_op && (
1166# ifdef FEAT_AUTOCMD
1167 has_cursormoved()
1168# endif
1169# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
1170 ||
1171# endif
1172# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001173 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001174# endif
1175 )
1176 && !equalpos(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001177 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001178# ifdef FEAT_AUTOCMD
1179 if (has_cursormoved())
1180 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
1181 FALSE, curbuf);
1182# endif
1183# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001184 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001185 {
1186 conceal_old_cursor_line = last_cursormoved.lnum;
1187 conceal_new_cursor_line = curwin->w_cursor.lnum;
1188 conceal_update_lines = TRUE;
1189 }
1190# endif
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001191 last_cursormoved = curwin->w_cursor;
1192 }
1193#endif
1194
Bram Moolenaar186628f2013-03-19 13:33:23 +01001195#ifdef FEAT_AUTOCMD
1196 /* Trigger TextChanged if b_changedtick differs. */
1197 if (!finish_op && has_textchanged()
1198 && last_changedtick != curbuf->b_changedtick)
1199 {
1200 if (last_changedtick_buf == curbuf)
1201 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL,
1202 FALSE, curbuf);
1203 last_changedtick_buf = curbuf;
1204 last_changedtick = curbuf->b_changedtick;
1205 }
1206#endif
1207
Bram Moolenaar33aec762006-01-22 23:30:12 +00001208#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1209 /* Scroll-binding for diff mode may have been postponed until
1210 * here. Avoids doing it for every change. */
1211 if (diff_need_scrollbind)
1212 {
1213 check_scrollbind((linenr_T)0, 0L);
1214 diff_need_scrollbind = FALSE;
1215 }
1216#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001217#if defined(FEAT_FOLDING)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001218 /* Include a closed fold completely in the Visual area. */
1219 foldAdjustVisual();
1220#endif
1221#ifdef FEAT_FOLDING
1222 /*
1223 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1224 * contain the cursor.
1225 * When 'foldopen' is "all", open the fold(s) under the cursor.
1226 * This may mark the window for redrawing.
1227 */
1228 if (hasAnyFolding(curwin) && !char_avail())
1229 {
1230 foldCheckClose();
1231 if (fdo_flags & FDO_ALL)
1232 foldOpenCursor();
1233 }
1234#endif
1235
1236 /*
1237 * Before redrawing, make sure w_topline is correct, and w_leftcol
1238 * if lines don't wrap, and w_skipcol if lines wrap.
1239 */
1240 update_topline();
1241 validate_cursor();
1242
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001243 if (VIsual_active)
1244 update_curbuf(INVERTED);/* update inverted part */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001245 else if (must_redraw)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001246 update_screen(0);
1247 else if (redraw_cmdline || clear_cmdline)
1248 showmode();
1249#ifdef FEAT_WINDOWS
1250 redraw_statuslines();
1251#endif
1252#ifdef FEAT_TITLE
1253 if (need_maketitle)
1254 maketitle();
1255#endif
1256 /* display message after redraw */
1257 if (keep_msg != NULL)
1258 {
1259 char_u *p;
1260
1261 /* msg_attr_keep() will set keep_msg to NULL, must free the
Bram Moolenaarf638cbc2014-09-09 17:47:38 +02001262 * string here. Don't reset keep_msg, msg_attr_keep() uses it
1263 * to check for duplicates. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001264 p = keep_msg;
1265 msg_attr(p, keep_msg_attr);
1266 vim_free(p);
1267 }
1268 if (need_fileinfo) /* show file info after redraw */
1269 {
1270 fileinfo(FALSE, TRUE, FALSE);
1271 need_fileinfo = FALSE;
1272 }
1273
1274 emsg_on_display = FALSE; /* can delete error message now */
1275 did_emsg = FALSE;
1276 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001277 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001278 showruler(FALSE);
1279
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001280# if defined(FEAT_CONCEAL)
1281 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001282 && (conceal_old_cursor_line != conceal_new_cursor_line
1283 || conceal_cursor_line(curwin)
1284 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001285 {
Bram Moolenaarc2b4c622011-02-15 16:29:59 +01001286 if (conceal_old_cursor_line != conceal_new_cursor_line
1287 && conceal_old_cursor_line
1288 <= curbuf->b_ml.ml_line_count)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001289 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001290 update_single_line(curwin, conceal_new_cursor_line);
1291 curwin->w_valid &= ~VALID_CROW;
1292 }
1293# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001294 setcursor();
1295 cursor_on();
1296
1297 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001298
1299#ifdef STARTUPTIME
1300 /* Now that we have drawn the first screen all the startup stuff
1301 * has been done, close any file for startup messages. */
1302 if (time_fd != NULL)
1303 {
1304 TIME_MSG("first screen update");
1305 TIME_MSG("--- VIM STARTED ---");
1306 fclose(time_fd);
1307 time_fd = NULL;
1308 }
1309#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001310 }
1311#ifdef FEAT_GUI
1312 if (need_mouse_correct)
1313 gui_mouse_correct();
1314#endif
1315
1316 /*
1317 * Update w_curswant if w_set_curswant has been set.
1318 * Postponed until here to avoid computing w_virtcol too often.
1319 */
1320 update_curswant();
1321
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001322#ifdef FEAT_EVAL
1323 /*
1324 * May perform garbage collection when waiting for a character, but
1325 * only at the very toplevel. Otherwise we may be using a List or
1326 * Dict internally somewhere.
1327 * "may_garbage_collect" is reset in vgetc() which is invoked through
1328 * do_exmode() and normal_cmd().
1329 */
1330 may_garbage_collect = (!cmdwin && !noexmode);
1331#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001332 /*
1333 * If we're invoked as ex, do a round of ex commands.
1334 * Otherwise, get and execute a normal mode command.
1335 */
1336 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001337 {
1338 if (noexmode) /* End of ":global/path/visual" commands */
1339 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001340 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001341 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001342 else
1343 normal_cmd(&oa, TRUE);
1344 }
1345}
1346
1347
1348#if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1349/*
1350 * Exit, but leave behind swap files for modified buffers.
1351 */
1352 void
1353getout_preserve_modified(exitval)
1354 int exitval;
1355{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001356# if defined(SIGHUP) && defined(SIG_IGN)
1357 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1358 * makes Vim exit and then handling SIGHUP causes various reentrance
1359 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001360 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001361# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001362
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001363 ml_close_notmod(); /* close all not-modified buffers */
1364 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1365 ml_close_all(FALSE); /* close all memfiles, without deleting */
1366 getout(exitval); /* exit Vim properly */
1367}
1368#endif
1369
1370
1371/* Exit properly */
1372 void
1373getout(exitval)
1374 int exitval;
1375{
1376#ifdef FEAT_AUTOCMD
1377 buf_T *buf;
1378 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001379 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001380#endif
1381
1382 exiting = TRUE;
1383
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001384 /* When running in Ex mode an error causes us to exit with a non-zero exit
1385 * code. POSIX requires this, although it's not 100% clear from the
1386 * standard. */
1387 if (exmode_active)
1388 exitval += ex_exitval;
1389
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001390 /* Position the cursor on the last screen line, below all the text */
1391#ifdef FEAT_GUI
1392 if (!gui.in_use)
1393#endif
1394 windgoto((int)Rows - 1, 0);
1395
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001396#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1397 /* Optionally print hashtable efficiency. */
1398 hash_debug_results();
1399#endif
1400
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001401#ifdef FEAT_GUI
1402 msg_didany = FALSE;
1403#endif
1404
1405#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001406 if (get_vim_var_nr(VV_DYING) <= 1)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001407 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001408 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1409# if defined FEAT_WINDOWS
1410 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001411 {
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001412 next_tp = tp->tp_next;
1413 for (wp = (tp == curtab)
1414 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001415 {
Bram Moolenaar802418d2013-01-17 14:00:11 +01001416 if (wp->w_buffer == NULL)
1417 /* Autocmd must have close the buffer already, skip. */
1418 continue;
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001419 buf = wp->w_buffer;
1420 if (buf->b_changedtick != -1)
1421 {
1422 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
1423 buf->b_fname, FALSE, buf);
Bram Moolenaarb429cde2012-04-25 18:24:29 +02001424 buf->b_changedtick = -1; /* note that we did it already */
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001425 /* start all over, autocommands may mess up the lists */
1426 next_tp = first_tabpage;
1427 break;
1428 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001429 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001430 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001431# else
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001432 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname,
1433 FALSE, curbuf);
Bram Moolenaarf740b292006-02-16 22:11:02 +00001434# endif
Bram Moolenaar33aec762006-01-22 23:30:12 +00001435
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001436 /* Trigger BufUnload for buffers that are loaded */
1437 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1438 if (buf->b_ml.ml_mfp != NULL)
1439 {
1440 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001441 FALSE, buf);
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001442 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1443 break;
1444 }
1445 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1446 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001447#endif
1448
1449#ifdef FEAT_VIMINFO
1450 if (*p_viminfo != NUL)
1451 /* Write out the registers, history, marks etc, to the viminfo file */
1452 write_viminfo(NULL, FALSE);
1453#endif
1454
1455#ifdef FEAT_AUTOCMD
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001456 if (get_vim_var_nr(VV_DYING) <= 1)
1457 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001458#endif
1459
Bram Moolenaar05159a02005-02-26 23:04:13 +00001460#ifdef FEAT_PROFILE
1461 profile_dump();
1462#endif
1463
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001464 if (did_emsg
1465#ifdef FEAT_GUI
1466 || (gui.in_use && msg_didany && p_verbose > 0)
1467#endif
1468 )
1469 {
1470 /* give the user a chance to read the (error) message */
1471 no_wait_return = FALSE;
1472 wait_return(FALSE);
1473 }
1474
1475#ifdef FEAT_AUTOCMD
1476 /* Position the cursor again, the autocommands may have moved it */
1477# ifdef FEAT_GUI
1478 if (!gui.in_use)
1479# endif
1480 windgoto((int)Rows - 1, 0);
1481#endif
1482
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001483#ifdef FEAT_LUA
1484 lua_end();
1485#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001486#ifdef FEAT_MZSCHEME
1487 mzscheme_end();
1488#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001489#ifdef FEAT_TCL
1490 tcl_end();
1491#endif
1492#ifdef FEAT_RUBY
1493 ruby_end();
1494#endif
1495#ifdef FEAT_PYTHON
1496 python_end();
1497#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001498#ifdef FEAT_PYTHON3
1499 python3_end();
1500#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001501#ifdef FEAT_PERL
1502 perl_end();
1503#endif
1504#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1505 iconv_end();
1506#endif
1507#ifdef FEAT_NETBEANS_INTG
1508 netbeans_end();
1509#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001510#ifdef FEAT_CSCOPE
1511 cs_end();
1512#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001513#ifdef FEAT_EVAL
1514 if (garbage_collect_at_exit)
1515 garbage_collect();
1516#endif
Bram Moolenaar14993322014-09-09 12:25:33 +02001517#if defined(WIN32) && defined(FEAT_MBYTE)
1518 free_cmd_argsW();
1519#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001520
1521 mch_exit(exitval);
1522}
1523
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001524#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001525/*
1526 * Get a (optional) count for a Vim argument.
1527 */
1528 static int
1529get_number_arg(p, idx, def)
1530 char_u *p; /* pointer to argument */
1531 int *idx; /* index in argument, is incremented */
1532 int def; /* default value */
1533{
1534 if (vim_isdigit(p[*idx]))
1535 {
1536 def = atoi((char *)&(p[*idx]));
1537 while (vim_isdigit(p[*idx]))
1538 *idx = *idx + 1;
1539 }
1540 return def;
1541}
1542
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001543#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1544/*
1545 * Setup to use the current locale (for ctype() and many other things).
1546 */
1547 static void
1548init_locale()
1549{
1550 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001551
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001552# ifdef FEAT_GUI_GTK
1553 /* Tell Gtk not to change our locale settings. */
1554 gtk_disable_setlocale();
1555# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001556# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1557 /* Make sure strtod() uses a decimal point, not a comma. */
1558 setlocale(LC_NUMERIC, "C");
1559# endif
1560
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001561# ifdef WIN32
1562 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1563 * text while it's expecting text in the current locale. This call avoids
1564 * that. */
1565 setlocale(LC_CTYPE, "C");
1566# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001567
1568# ifdef FEAT_GETTEXT
1569 {
1570 int mustfree = FALSE;
1571 char_u *p;
1572
1573# ifdef DYNAMIC_GETTEXT
1574 /* Initialize the gettext library */
1575 dyn_libintl_init(NULL);
1576# endif
1577 /* expand_env() doesn't work yet, because chartab[] is not initialized
1578 * yet, call vim_getenv() directly */
1579 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1580 if (p != NULL && *p != NUL)
1581 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001582 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001583 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1584 }
1585 if (mustfree)
1586 vim_free(p);
1587 textdomain(VIMPACKAGE);
1588 }
1589# endif
1590}
1591#endif
1592
1593/*
1594 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1595 * If the executable name starts with "r" we disable shell commands.
1596 * If the next character is "e" we run in Easy mode.
1597 * If the next character is "g" we run the GUI version.
1598 * If the next characters are "view" we start in readonly mode.
1599 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1600 * If the next characters are "ex" we start in Ex mode. If it's followed
1601 * by "im" use improved Ex mode.
1602 */
1603 static void
1604parse_command_name(parmp)
1605 mparm_T *parmp;
1606{
1607 char_u *initstr;
1608
1609 initstr = gettail((char_u *)parmp->argv[0]);
1610
1611#ifdef MACOS_X_UNIX
1612 /* An issue has been seen when launching Vim in such a way that
1613 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1614 * executable or a symbolic link of it. Until this issue is resolved
1615 * we prohibit the GUI from being used.
1616 */
1617 if (STRCMP(initstr, parmp->argv[0]) == 0)
1618 disallow_gui = TRUE;
1619
1620 /* TODO: On MacOS X default to gui if argv[0] ends in:
Bram Moolenaar27dc1952006-03-15 23:06:44 +00001621 * /Vim.app/Contents/MacOS/Vim */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001622#endif
1623
1624#ifdef FEAT_EVAL
1625 set_vim_var_string(VV_PROGNAME, initstr, -1);
Bram Moolenaara1706c92014-04-01 19:55:49 +02001626 set_vim_var_string(VV_PROGPATH, (char_u *)parmp->argv[0], -1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001627#endif
1628
1629 if (TOLOWER_ASC(initstr[0]) == 'r')
1630 {
1631 restricted = TRUE;
1632 ++initstr;
1633 }
1634
Bram Moolenaarad249fb2010-05-07 16:35:04 +02001635 /* Use evim mode for "evim" and "egvim", not for "editor". */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001636 if (TOLOWER_ASC(initstr[0]) == 'e'
1637 && (TOLOWER_ASC(initstr[1]) == 'v'
1638 || TOLOWER_ASC(initstr[1]) == 'g'))
1639 {
1640#ifdef FEAT_GUI
1641 gui.starting = TRUE;
1642#endif
1643 parmp->evim_mode = TRUE;
1644 ++initstr;
1645 }
1646
Bram Moolenaar806875d2008-09-18 18:57:10 +00001647 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1648 if (TOLOWER_ASC(initstr[0]) == 'g')
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001649 {
1650 main_start_gui();
1651#ifdef FEAT_GUI
1652 ++initstr;
1653#endif
1654 }
1655
1656 if (STRNICMP(initstr, "view", 4) == 0)
1657 {
1658 readonlymode = TRUE;
1659 curbuf->b_p_ro = TRUE;
1660 p_uc = 10000; /* don't update very often */
1661 initstr += 4;
1662 }
1663 else if (STRNICMP(initstr, "vim", 3) == 0)
1664 initstr += 3;
1665
1666 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1667 if (STRICMP(initstr, "diff") == 0)
1668 {
1669#ifdef FEAT_DIFF
1670 parmp->diff_mode = TRUE;
1671#else
1672 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1673 mch_errmsg("\n");
1674 mch_exit(2);
1675#endif
1676 }
1677
1678 if (STRNICMP(initstr, "ex", 2) == 0)
1679 {
1680 if (STRNICMP(initstr + 2, "im", 2) == 0)
1681 exmode_active = EXMODE_VIM;
1682 else
1683 exmode_active = EXMODE_NORMAL;
1684 change_compatible(TRUE); /* set 'compatible' */
1685 }
1686}
1687
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001688/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001689 * Get the name of the display, before gui_prepare() removes it from
1690 * argv[]. Used for the xterm-clipboard display.
1691 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001692 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001693 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001694 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001695early_arg_scan(parmp)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001696 mparm_T *parmp UNUSED;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001697{
Bram Moolenaar03005972008-11-20 13:12:36 +00001698#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1699 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001700 int argc = parmp->argc;
1701 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001702 int i;
1703
1704 for (i = 1; i < argc; i++)
1705 {
1706 if (STRCMP(argv[i], "--") == 0)
1707 break;
1708# ifdef FEAT_XCLIPBOARD
1709 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001710# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001711 || STRICMP(argv[i], "--display") == 0
1712# endif
1713 )
1714 {
1715 if (i == argc - 1)
1716 mainerr_arg_missing((char_u *)argv[i]);
1717 xterm_display = argv[++i];
1718 }
1719# endif
1720# ifdef FEAT_CLIENTSERVER
1721 else if (STRICMP(argv[i], "--servername") == 0)
1722 {
1723 if (i == argc - 1)
1724 mainerr_arg_missing((char_u *)argv[i]);
1725 parmp->serverName_arg = (char_u *)argv[++i];
1726 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001727 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001728 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001729 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001730 {
1731 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001732# ifdef FEAT_GUI
1733 if (strstr(argv[i], "-wait") != 0)
1734 /* don't fork() when starting the GUI to edit files ourself */
1735 gui.dofork = FALSE;
1736# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001737 }
1738# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001739
1740# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1741# ifdef FEAT_GUI_W32
1742 else if (STRICMP(argv[i], "--windowid") == 0)
1743# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001744 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001745# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001746 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001747 long_u id;
1748 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001749
1750 if (i == argc - 1)
1751 mainerr_arg_missing((char_u *)argv[i]);
1752 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001753 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001754 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001755 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001756 if (count != 1)
1757 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1758 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001759# ifdef FEAT_GUI_W32
1760 win_socket_id = id;
1761# else
1762 gtk_socket_id = id;
1763# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001764 i++;
1765 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001766# endif
1767# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001768 else if (STRICMP(argv[i], "--echo-wid") == 0)
1769 echo_wid_arg = TRUE;
1770# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001771# ifndef FEAT_NETBEANS_INTG
1772 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
Bram Moolenaar67c53842010-05-22 18:28:27 +02001773 {
1774 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1775 mch_exit(2);
1776 }
Bram Moolenaar03005972008-11-20 13:12:36 +00001777# endif
1778
Bram Moolenaar58d98232005-07-23 22:25:46 +00001779 }
1780#endif
1781}
1782
1783/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001784 * Scan the command line arguments.
1785 */
1786 static void
1787command_line_scan(parmp)
1788 mparm_T *parmp;
1789{
1790 int argc = parmp->argc;
1791 char **argv = parmp->argv;
1792 int argv_idx; /* index in argv[n][] */
1793 int had_minmin = FALSE; /* found "--" argument */
1794 int want_argument; /* option argument with argument */
1795 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001796 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001797 long n;
1798
1799 --argc;
1800 ++argv;
1801 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1802 while (argc > 0)
1803 {
1804 /*
1805 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1806 */
1807 if (argv[0][0] == '+' && !had_minmin)
1808 {
1809 if (parmp->n_commands >= MAX_ARG_CMDS)
1810 mainerr(ME_EXTRA_CMD, NULL);
1811 argv_idx = -1; /* skip to next argument */
1812 if (argv[0][1] == NUL)
1813 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1814 else
1815 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1816 }
1817
1818 /*
1819 * Optional argument.
1820 */
1821 else if (argv[0][0] == '-' && !had_minmin)
1822 {
1823 want_argument = FALSE;
1824 c = argv[0][argv_idx++];
1825#ifdef VMS
1826 /*
1827 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1828 * and "-/X" as "-X".
1829 */
1830 if (c == '/')
1831 {
1832 c = argv[0][argv_idx++];
1833 c = TOUPPER_ASC(c);
1834 }
1835 else
1836 c = TOLOWER_ASC(c);
1837#endif
1838 switch (c)
1839 {
1840 case NUL: /* "vim -" read from stdin */
1841 /* "ex -" silent mode */
1842 if (exmode_active)
1843 silent_mode = TRUE;
1844 else
1845 {
1846 if (parmp->edit_type != EDIT_NONE)
1847 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1848 parmp->edit_type = EDIT_STDIN;
1849 read_cmd_fd = 2; /* read from stderr instead of stdin */
1850 }
1851 argv_idx = -1; /* skip to next argument */
1852 break;
1853
1854 case '-': /* "--" don't take any more option arguments */
1855 /* "--help" give help message */
1856 /* "--version" give version message */
1857 /* "--literal" take files literally */
1858 /* "--nofork" don't fork */
1859 /* "--noplugin[s]" skip plugins */
1860 /* "--cmd <cmd>" execute cmd before vimrc */
1861 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1862 usage();
1863 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1864 {
1865 Columns = 80; /* need to init Columns */
1866 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1867 list_version();
1868 msg_putchar('\n');
1869 msg_didout = FALSE;
1870 mch_exit(0);
1871 }
1872 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1873 {
1874#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1875 parmp->literal = TRUE;
1876#endif
1877 }
1878 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1879 {
1880#ifdef FEAT_GUI
1881 gui.dofork = FALSE; /* don't fork() when starting GUI */
1882#endif
1883 }
1884 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1885 p_lpl = FALSE;
1886 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1887 {
1888 want_argument = TRUE;
1889 argv_idx += 3;
1890 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001891 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1892 {
1893 want_argument = TRUE;
1894 argv_idx += 11;
1895 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001896#ifdef FEAT_CLIENTSERVER
1897 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1898 ; /* already processed -- no arg */
1899 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1900 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1901 {
1902 /* already processed -- snatch the following arg */
1903 if (argc > 1)
1904 {
1905 --argc;
1906 ++argv;
1907 }
1908 }
1909#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001910#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1911# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001912 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001913# else
1914 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1915# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001916 {
1917 /* already processed -- snatch the following arg */
1918 if (argc > 1)
1919 {
1920 --argc;
1921 ++argv;
1922 }
1923 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001924#endif
1925#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001926 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1927 {
1928 /* already processed, skip */
1929 }
1930#endif
1931 else
1932 {
1933 if (argv[0][argv_idx])
1934 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1935 had_minmin = TRUE;
1936 }
1937 if (!want_argument)
1938 argv_idx = -1; /* skip to next argument */
1939 break;
1940
1941 case 'A': /* "-A" start in Arabic mode */
1942#ifdef FEAT_ARABIC
1943 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1944#else
1945 mch_errmsg(_(e_noarabic));
1946 mch_exit(2);
1947#endif
1948 break;
1949
1950 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001951 /* Needs to be effective before expanding file names, because
1952 * for Win32 this makes us edit a shortcut file itself,
1953 * instead of the file it links to. */
1954 set_options_bin(curbuf->b_p_bin, 1, 0);
1955 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001956 break;
1957
1958 case 'C': /* "-C" Compatible */
1959 change_compatible(TRUE);
1960 break;
1961
1962 case 'e': /* "-e" Ex mode */
1963 exmode_active = EXMODE_NORMAL;
1964 break;
1965
1966 case 'E': /* "-E" Improved Ex mode */
1967 exmode_active = EXMODE_VIM;
1968 break;
1969
1970 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1971 window directly, not with newcli */
1972#ifdef FEAT_GUI
1973 gui.dofork = FALSE; /* don't fork() when starting GUI */
1974#endif
1975 break;
1976
1977 case 'g': /* "-g" start GUI */
1978 main_start_gui();
1979 break;
1980
1981 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1982#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001983 p_fkmap = TRUE;
1984 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001985#else
1986 mch_errmsg(_(e_nofarsi));
1987 mch_exit(2);
1988#endif
1989 break;
1990
1991 case 'h': /* "-h" give help message */
1992#ifdef FEAT_GUI_GNOME
1993 /* Tell usage() to exit for "gvim". */
1994 gui.starting = FALSE;
1995#endif
1996 usage();
1997 break;
1998
1999 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
2000#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00002001 p_hkmap = TRUE;
2002 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002003#else
2004 mch_errmsg(_(e_nohebrew));
2005 mch_exit(2);
2006#endif
2007 break;
2008
2009 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
2010#ifdef FEAT_LISP
2011 set_option_value((char_u *)"lisp", 1L, NULL, 0);
2012 p_sm = TRUE;
2013#endif
2014 break;
2015
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002016 case 'M': /* "-M" no changes or writing of files */
2017 reset_modifiable();
2018 /* FALLTHROUGH */
2019
2020 case 'm': /* "-m" no writing of files */
2021 p_write = FALSE;
2022 break;
2023
2024 case 'y': /* "-y" easy mode */
2025#ifdef FEAT_GUI
2026 gui.starting = TRUE; /* start GUI a bit later */
2027#endif
2028 parmp->evim_mode = TRUE;
2029 break;
2030
2031 case 'N': /* "-N" Nocompatible */
2032 change_compatible(FALSE);
2033 break;
2034
2035 case 'n': /* "-n" no swap file */
Bram Moolenaar67c53842010-05-22 18:28:27 +02002036#ifdef FEAT_NETBEANS_INTG
2037 /* checking for "-nb", netbeans parameters */
2038 if (argv[0][argv_idx] == 'b')
2039 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02002040 netbeansArg = argv[0];
2041 argv_idx = -1; /* skip to next argument */
2042 }
2043 else
2044#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002045 parmp->no_swap_file = TRUE;
2046 break;
2047
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002048 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002049#ifdef TARGET_API_MAC_OSX
2050 /* For some reason on MacOS X, an argument like:
2051 -psn_0_10223617 is passed in when invoke from Finder
2052 or with the 'open' command */
2053 if (argv[0][argv_idx] == 's')
2054 {
2055 argv_idx = -1; /* bypass full -psn */
2056 main_start_gui();
2057 break;
2058 }
2059#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002060#ifdef FEAT_WINDOWS
2061 /* default is 0: open window for each file */
2062 parmp->window_count = get_number_arg((char_u *)argv[0],
2063 &argv_idx, 0);
2064 parmp->window_layout = WIN_TABS;
2065#endif
2066 break;
2067
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002068 case 'o': /* "-o[N]" open N horizontal split windows */
2069#ifdef FEAT_WINDOWS
2070 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002071 parmp->window_count = get_number_arg((char_u *)argv[0],
2072 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002073 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002074#endif
2075 break;
2076
2077 case 'O': /* "-O[N]" open N vertical split windows */
2078#if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
2079 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00002080 parmp->window_count = get_number_arg((char_u *)argv[0],
2081 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002082 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002083#endif
2084 break;
2085
2086#ifdef FEAT_QUICKFIX
2087 case 'q': /* "-q" QuickFix mode */
2088 if (parmp->edit_type != EDIT_NONE)
2089 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2090 parmp->edit_type = EDIT_QF;
2091 if (argv[0][argv_idx]) /* "-q{errorfile}" */
2092 {
2093 parmp->use_ef = (char_u *)argv[0] + argv_idx;
2094 argv_idx = -1;
2095 }
2096 else if (argc > 1) /* "-q {errorfile}" */
2097 want_argument = TRUE;
2098 break;
2099#endif
2100
2101 case 'R': /* "-R" readonly mode */
2102 readonlymode = TRUE;
2103 curbuf->b_p_ro = TRUE;
2104 p_uc = 10000; /* don't update very often */
2105 break;
2106
2107 case 'r': /* "-r" recovery mode */
2108 case 'L': /* "-L" recovery mode */
2109 recoverymode = 1;
2110 break;
2111
2112 case 's':
2113 if (exmode_active) /* "-s" silent (batch) mode */
2114 silent_mode = TRUE;
2115 else /* "-s {scriptin}" read from script file */
2116 want_argument = TRUE;
2117 break;
2118
2119 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2120 if (parmp->edit_type != EDIT_NONE)
2121 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2122 parmp->edit_type = EDIT_TAG;
2123 if (argv[0][argv_idx]) /* "-t{tag}" */
2124 {
2125 parmp->tagname = (char_u *)argv[0] + argv_idx;
2126 argv_idx = -1;
2127 }
2128 else /* "-t {tag}" */
2129 want_argument = TRUE;
2130 break;
2131
2132#ifdef FEAT_EVAL
2133 case 'D': /* "-D" Debugging */
2134 parmp->use_debug_break_level = 9999;
2135 break;
2136#endif
2137#ifdef FEAT_DIFF
2138 case 'd': /* "-d" 'diff' */
2139# ifdef AMIGA
2140 /* check for "-dev {device}" */
2141 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2142 want_argument = TRUE;
2143 else
2144# endif
2145 parmp->diff_mode = TRUE;
2146 break;
2147#endif
2148 case 'V': /* "-V{N}" Verbose level */
2149 /* default is 10: a little bit verbose */
2150 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2151 if (argv[0][argv_idx] != NUL)
2152 {
2153 set_option_value((char_u *)"verbosefile", 0L,
2154 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002155 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002156 }
2157 break;
2158
2159 case 'v': /* "-v" Vi-mode (as if called "vi") */
2160 exmode_active = 0;
2161#ifdef FEAT_GUI
2162 gui.starting = FALSE; /* don't start GUI */
2163#endif
2164 break;
2165
2166 case 'w': /* "-w{number}" set window height */
2167 /* "-w {scriptout}" write to script */
2168 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2169 {
2170 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2171 set_option_value((char_u *)"window", n, NULL, 0);
2172 break;
2173 }
2174 want_argument = TRUE;
2175 break;
2176
2177#ifdef FEAT_CRYPT
2178 case 'x': /* "-x" encrypted reading/writing of files */
2179 parmp->ask_for_key = TRUE;
2180 break;
2181#endif
2182
2183 case 'X': /* "-X" don't connect to X server */
2184#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2185 x_no_connect = TRUE;
2186#endif
2187 break;
2188
2189 case 'Z': /* "-Z" restricted mode */
2190 restricted = TRUE;
2191 break;
2192
2193 case 'c': /* "-c{command}" or "-c {command}" execute
2194 command */
2195 if (argv[0][argv_idx] != NUL)
2196 {
2197 if (parmp->n_commands >= MAX_ARG_CMDS)
2198 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002199 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2200 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002201 argv_idx = -1;
2202 break;
2203 }
2204 /*FALLTHROUGH*/
2205 case 'S': /* "-S {file}" execute Vim script */
2206 case 'i': /* "-i {viminfo}" use for viminfo */
2207#ifndef FEAT_DIFF
2208 case 'd': /* "-d {device}" device (for Amiga) */
2209#endif
2210 case 'T': /* "-T {terminal}" terminal name */
2211 case 'u': /* "-u {vimrc}" vim inits file */
2212 case 'U': /* "-U {gvimrc}" gvim inits file */
2213 case 'W': /* "-W {scriptout}" overwrite */
2214#ifdef FEAT_GUI_W32
2215 case 'P': /* "-P {parent title}" MDI parent */
2216#endif
2217 want_argument = TRUE;
2218 break;
2219
2220 default:
2221 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2222 }
2223
2224 /*
2225 * Handle option arguments with argument.
2226 */
2227 if (want_argument)
2228 {
2229 /*
2230 * Check for garbage immediately after the option letter.
2231 */
2232 if (argv[0][argv_idx] != NUL)
2233 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2234
2235 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002236 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002237 mainerr_arg_missing((char_u *)argv[0]);
2238 ++argv;
2239 argv_idx = -1;
2240
2241 switch (c)
2242 {
2243 case 'c': /* "-c {command}" execute command */
2244 case 'S': /* "-S {file}" execute Vim script */
2245 if (parmp->n_commands >= MAX_ARG_CMDS)
2246 mainerr(ME_EXTRA_CMD, NULL);
2247 if (c == 'S')
2248 {
2249 char *a;
2250
2251 if (argc < 1)
2252 /* "-S" without argument: use default session file
2253 * name. */
2254 a = SESSION_FILE;
2255 else if (argv[0][0] == '-')
2256 {
2257 /* "-S" followed by another option: use default
2258 * session file name. */
2259 a = SESSION_FILE;
2260 ++argc;
2261 --argv;
2262 }
2263 else
2264 a = argv[0];
2265 p = alloc((unsigned)(STRLEN(a) + 4));
2266 if (p == NULL)
2267 mch_exit(2);
2268 sprintf((char *)p, "so %s", a);
2269 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2270 parmp->commands[parmp->n_commands++] = p;
2271 }
2272 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002273 parmp->commands[parmp->n_commands++] =
2274 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002275 break;
2276
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002277 case '-':
2278 if (argv[-1][2] == 'c')
2279 {
2280 /* "--cmd {command}" execute command */
2281 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2282 mainerr(ME_EXTRA_CMD, NULL);
2283 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002284 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002285 }
2286 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002287 break;
2288
2289 /* case 'd': -d {device} is handled in mch_check_win() for the
2290 * Amiga */
2291
2292#ifdef FEAT_QUICKFIX
2293 case 'q': /* "-q {errorfile}" QuickFix mode */
2294 parmp->use_ef = (char_u *)argv[0];
2295 break;
2296#endif
2297
2298 case 'i': /* "-i {viminfo}" use for viminfo */
2299 use_viminfo = (char_u *)argv[0];
2300 break;
2301
2302 case 's': /* "-s {scriptin}" read from script file */
2303 if (scriptin[0] != NULL)
2304 {
2305scripterror:
2306 mch_errmsg(_("Attempt to open script file again: \""));
2307 mch_errmsg(argv[-1]);
2308 mch_errmsg(" ");
2309 mch_errmsg(argv[0]);
2310 mch_errmsg("\"\n");
2311 mch_exit(2);
2312 }
2313 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2314 {
2315 mch_errmsg(_("Cannot open for reading: \""));
2316 mch_errmsg(argv[0]);
2317 mch_errmsg("\"\n");
2318 mch_exit(2);
2319 }
2320 if (save_typebuf() == FAIL)
2321 mch_exit(2); /* out of memory */
2322 break;
2323
2324 case 't': /* "-t {tag}" */
2325 parmp->tagname = (char_u *)argv[0];
2326 break;
2327
2328 case 'T': /* "-T {terminal}" terminal name */
2329 /*
2330 * The -T term argument is always available and when
2331 * HAVE_TERMLIB is supported it overrides the environment
2332 * variable TERM.
2333 */
2334#ifdef FEAT_GUI
2335 if (term_is_gui((char_u *)argv[0]))
2336 gui.starting = TRUE; /* start GUI a bit later */
2337 else
2338#endif
2339 parmp->term = (char_u *)argv[0];
2340 break;
2341
2342 case 'u': /* "-u {vimrc}" vim inits file */
2343 parmp->use_vimrc = (char_u *)argv[0];
2344 break;
2345
2346 case 'U': /* "-U {gvimrc}" gvim inits file */
2347#ifdef FEAT_GUI
2348 use_gvimrc = (char_u *)argv[0];
2349#endif
2350 break;
2351
2352 case 'w': /* "-w {nr}" 'window' value */
2353 /* "-w {scriptout}" append to script file */
2354 if (vim_isdigit(*((char_u *)argv[0])))
2355 {
2356 argv_idx = 0;
2357 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2358 set_option_value((char_u *)"window", n, NULL, 0);
2359 argv_idx = -1;
2360 break;
2361 }
2362 /*FALLTHROUGH*/
2363 case 'W': /* "-W {scriptout}" overwrite script file */
2364 if (scriptout != NULL)
2365 goto scripterror;
2366 if ((scriptout = mch_fopen(argv[0],
2367 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2368 {
2369 mch_errmsg(_("Cannot open for script output: \""));
2370 mch_errmsg(argv[0]);
2371 mch_errmsg("\"\n");
2372 mch_exit(2);
2373 }
2374 break;
2375
2376#ifdef FEAT_GUI_W32
2377 case 'P': /* "-P {parent title}" MDI parent */
2378 gui_mch_set_parent(argv[0]);
2379 break;
2380#endif
2381 }
2382 }
2383 }
2384
2385 /*
2386 * File name argument.
2387 */
2388 else
2389 {
2390 argv_idx = -1; /* skip to next argument */
2391
2392 /* Check for only one type of editing. */
2393 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2394 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2395 parmp->edit_type = EDIT_FILE;
2396
2397#ifdef MSWIN
2398 /* Remember if the argument was a full path before changing
2399 * slashes to backslashes. */
2400 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2401 parmp->full_path = TRUE;
2402#endif
2403
2404 /* Add the file to the global argument list. */
2405 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2406 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2407 mch_exit(2);
2408#ifdef FEAT_DIFF
2409 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2410 && !mch_isdir(alist_name(&GARGLIST[0])))
2411 {
2412 char_u *r;
2413
2414 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2415 if (r != NULL)
2416 {
2417 vim_free(p);
2418 p = r;
2419 }
2420 }
2421#endif
2422#if defined(__CYGWIN32__) && !defined(WIN32)
2423 /*
2424 * If vim is invoked by non-Cygwin tools, convert away any
2425 * DOS paths, so things like .swp files are created correctly.
2426 * Look for evidence of non-Cygwin paths before we bother.
2427 * This is only for when using the Unix files.
2428 */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002429 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002430 {
2431 char posix_path[PATH_MAX];
2432
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002433# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2434 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2435# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002436 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002437# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002438 vim_free(p);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002439 p = vim_strsave((char_u *)posix_path);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002440 if (p == NULL)
2441 mch_exit(2);
2442 }
2443#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002444
2445#ifdef USE_FNAME_CASE
2446 /* Make the case of the file name match the actual file. */
2447 fname_case(p, 0);
2448#endif
2449
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002450 alist_add(&global_alist, p,
2451#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
Bram Moolenaar231334e2005-07-25 20:46:57 +00002452 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002453#else
2454 2 /* add buffer number now and use curbuf */
2455#endif
2456 );
2457
2458#if defined(FEAT_MBYTE) && defined(WIN32)
2459 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002460 /* Remember this argument has been added to the argument list.
2461 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002462 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002463# ifdef FEAT_DIFF
2464 parmp->diff_mode
2465# else
2466 FALSE
2467# endif
2468 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002469 }
2470#endif
2471 }
2472
2473 /*
2474 * If there are no more letters after the current "-", go to next
2475 * argument. argv_idx is set to -1 when the current argument is to be
2476 * skipped.
2477 */
2478 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2479 {
2480 --argc;
2481 ++argv;
2482 argv_idx = 1;
2483 }
2484 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002485
2486#ifdef FEAT_EVAL
2487 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2488 * one. */
2489 if (parmp->n_commands > 0)
2490 {
2491 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2492 if (p != NULL)
2493 {
2494 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2495 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2496 vim_free(p);
2497 }
2498 }
2499#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002500}
2501
2502/*
2503 * Print a warning if stdout is not a terminal.
2504 * When starting in Ex mode and commands come from a file, set Silent mode.
2505 */
2506 static void
2507check_tty(parmp)
2508 mparm_T *parmp;
2509{
2510 int input_isatty; /* is active input a terminal? */
2511
2512 input_isatty = mch_input_isatty();
2513 if (exmode_active)
2514 {
2515 if (!input_isatty)
2516 silent_mode = TRUE;
2517 }
2518 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2519#ifdef FEAT_GUI
2520 /* don't want the delay when started from the desktop */
2521 && !gui.starting
2522#endif
2523 )
2524 {
2525#ifdef NBDEBUG
2526 /*
2527 * This shouldn't be necessary. But if I run netbeans with the log
2528 * output coming to the console and XOpenDisplay fails, I get vim
2529 * trying to start with input/output to my console tty. This fills my
2530 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002531 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002532 */
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002533 if (netbeans_active() && (!parmp->stdout_isatty || !input_isatty))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002534 {
2535 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2536 exit(1);
2537 }
2538#endif
2539 if (!parmp->stdout_isatty)
2540 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2541 if (!input_isatty)
2542 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2543 out_flush();
2544 if (scriptin[0] == NULL)
2545 ui_delay(2000L, TRUE);
2546 TIME_MSG("Warning delay");
2547 }
2548}
2549
2550/*
2551 * Read text from stdin.
2552 */
2553 static void
2554read_stdin()
2555{
2556 int i;
2557
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002558#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002559 /* When getting the ATTENTION prompt here, use a dialog */
2560 swap_exists_action = SEA_DIALOG;
2561#endif
2562 no_wait_return = TRUE;
2563 i = msg_didany;
2564 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002565 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002566 no_wait_return = FALSE;
2567 msg_didany = i;
2568 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002569#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002570 check_swap_exists_action();
2571#endif
2572#if !(defined(AMIGA) || defined(MACOS))
2573 /*
2574 * Close stdin and dup it from stderr. Required for GPM to work
2575 * properly, and for running external commands.
2576 * Is there any other system that cannot do this?
2577 */
2578 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002579 ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002580#endif
2581}
2582
2583/*
2584 * Create the requested number of windows and edit buffers in them.
2585 * Also does recovery if "recoverymode" set.
2586 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002587 static void
2588create_windows(parmp)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002589 mparm_T *parmp UNUSED;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002590{
2591#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002592 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002593 int done = 0;
2594
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002595 /*
2596 * Create the number of windows that was requested.
2597 */
2598 if (parmp->window_count == -1) /* was not set */
2599 parmp->window_count = 1;
2600 if (parmp->window_count == 0)
2601 parmp->window_count = GARGCOUNT;
2602 if (parmp->window_count > 1)
2603 {
2604 /* Don't change the windows if there was a command in .vimrc that
2605 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002606 if (parmp->window_layout == 0)
2607 parmp->window_layout = WIN_HOR;
2608 if (parmp->window_layout == WIN_TABS)
2609 {
2610 parmp->window_count = make_tabpages(parmp->window_count);
2611 TIME_MSG("making tab pages");
2612 }
2613 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002614 {
2615 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002616 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002617 TIME_MSG("making windows");
2618 }
2619 else
2620 parmp->window_count = win_count();
2621 }
2622 else
2623 parmp->window_count = 1;
2624#endif
2625
2626 if (recoverymode) /* do recover */
2627 {
2628 msg_scroll = TRUE; /* scroll message up */
2629 ml_recover();
2630 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2631 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002632 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002633 }
2634 else
2635 {
2636 /*
2637 * Open a buffer for windows that don't have one yet.
2638 * Commands in the .vimrc might have loaded a file or split the window.
2639 * Watch out for autocommands that delete a window.
2640 */
2641#ifdef FEAT_AUTOCMD
2642 /*
2643 * Don't execute Win/Buf Enter/Leave autocommands here
2644 */
2645 ++autocmd_no_enter;
2646 ++autocmd_no_leave;
2647#endif
2648#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002649 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002650 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002651 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002652 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002653 {
2654 if (parmp->window_layout == WIN_TABS)
2655 goto_tabpage(1);
2656 else
2657 curwin = firstwin;
2658 }
2659 else if (parmp->window_layout == WIN_TABS)
2660 {
2661 if (curtab->tp_next == NULL)
2662 break;
2663 goto_tabpage(0);
2664 }
2665 else
2666 {
2667 if (curwin->w_next == NULL)
2668 break;
2669 curwin = curwin->w_next;
2670 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002671 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002672#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002673 curbuf = curwin->w_buffer;
2674 if (curbuf->b_ml.ml_mfp == NULL)
2675 {
2676#ifdef FEAT_FOLDING
2677 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2678 if (p_fdls >= 0)
2679 curwin->w_p_fdl = p_fdls;
2680#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002681#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002682 /* When getting the ATTENTION prompt here, use a dialog */
2683 swap_exists_action = SEA_DIALOG;
2684#endif
2685 set_buflisted(TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02002686
2687 /* create memfile, read file */
2688 (void)open_buffer(FALSE, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002689
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002690#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002691 if (swap_exists_action == SEA_QUIT)
2692 {
2693 if (got_int || only_one_window())
2694 {
2695 /* abort selected or quit and only one window */
2696 did_emsg = FALSE; /* avoid hit-enter prompt */
2697 getout(1);
2698 }
2699 /* We can't close the window, it would disturb what
2700 * happens next. Clear the file name and set the arg
2701 * index to -1 to delete it later. */
2702 setfname(curbuf, NULL, NULL, FALSE);
2703 curwin->w_arg_idx = -1;
2704 swap_exists_action = SEA_NONE;
2705 }
2706 else
2707 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002708#endif
2709#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002710 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002711#endif
2712 }
2713#ifdef FEAT_WINDOWS
2714 ui_breakcheck();
2715 if (got_int)
2716 {
2717 (void)vgetc(); /* only break the file loading, not the rest */
2718 break;
2719 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002720 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002721#endif
2722#ifdef FEAT_WINDOWS
2723 if (parmp->window_layout == WIN_TABS)
2724 goto_tabpage(1);
2725 else
2726 curwin = firstwin;
2727 curbuf = curwin->w_buffer;
2728#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002729#ifdef FEAT_AUTOCMD
2730 --autocmd_no_enter;
2731 --autocmd_no_leave;
2732#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002733 }
2734}
2735
2736#ifdef FEAT_WINDOWS
2737 /*
2738 * If opened more than one window, start editing files in the other
2739 * windows. make_windows() has already opened the windows.
2740 */
2741 static void
2742edit_buffers(parmp)
2743 mparm_T *parmp;
2744{
2745 int arg_idx; /* index in argument list */
2746 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002747 int advance = TRUE;
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002748 win_T *win;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002749
2750# ifdef FEAT_AUTOCMD
2751 /*
2752 * Don't execute Win/Buf Enter/Leave autocommands here
2753 */
2754 ++autocmd_no_enter;
2755 ++autocmd_no_leave;
2756# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002757
2758 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2759 if (curwin->w_arg_idx == -1)
2760 {
2761 win_close(curwin, TRUE);
2762 advance = FALSE;
2763 }
2764
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002765 arg_idx = 1;
2766 for (i = 1; i < parmp->window_count; ++i)
2767 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002768 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2769 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002770 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002771 ++arg_idx;
2772 win_close(curwin, TRUE);
2773 advance = FALSE;
2774 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002775 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002776
Bram Moolenaar84212822006-11-07 21:59:47 +00002777 if (advance)
2778 {
2779 if (parmp->window_layout == WIN_TABS)
2780 {
2781 if (curtab->tp_next == NULL) /* just checking */
2782 break;
2783 goto_tabpage(0);
2784 }
2785 else
2786 {
2787 if (curwin->w_next == NULL) /* just checking */
2788 break;
2789 win_enter(curwin->w_next, FALSE);
2790 }
2791 }
2792 advance = TRUE;
2793
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002794 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002795 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002796 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2797 {
2798 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002799 /* Edit file from arg list, if there is one. When "Quit" selected
2800 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002801# ifdef HAS_SWAP_EXISTS_ACTION
2802 swap_exists_did_quit = FALSE;
2803# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002804 (void)do_ecmd(0, arg_idx < GARGCOUNT
2805 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002806 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002807# ifdef HAS_SWAP_EXISTS_ACTION
2808 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002809 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002810 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002811 if (got_int || only_one_window())
2812 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002813 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002814 did_emsg = FALSE; /* avoid hit-enter prompt */
2815 getout(1);
2816 }
2817 win_close(curwin, TRUE);
2818 advance = FALSE;
2819 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002820# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002821 if (arg_idx == GARGCOUNT - 1)
2822 arg_had_last = TRUE;
2823 ++arg_idx;
2824 }
2825 ui_breakcheck();
2826 if (got_int)
2827 {
2828 (void)vgetc(); /* only break the file loading, not the rest */
2829 break;
2830 }
2831 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002832
2833 if (parmp->window_layout == WIN_TABS)
2834 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002835# ifdef FEAT_AUTOCMD
2836 --autocmd_no_enter;
2837# endif
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002838
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002839 /* make the first window the current window */
2840 win = firstwin;
2841#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2842 /* Avoid making a preview window the current window. */
2843 while (win->w_p_pvw)
2844 {
2845 win = win->w_next;
2846 if (win == NULL)
2847 {
2848 win = firstwin;
2849 break;
2850 }
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002851 }
2852#endif
Bram Moolenaar74cd6242013-08-22 14:14:27 +02002853 win_enter(win, FALSE);
Bram Moolenaare66f06d2013-06-15 21:54:16 +02002854
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002855# ifdef FEAT_AUTOCMD
2856 --autocmd_no_leave;
2857# endif
2858 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002859 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002860 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2861}
2862#endif /* FEAT_WINDOWS */
2863
2864/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002865 * Execute the commands from --cmd arguments "cmds[cnt]".
2866 */
2867 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002868exe_pre_commands(parmp)
2869 mparm_T *parmp;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002870{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002871 char_u **cmds = parmp->pre_commands;
2872 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002873 int i;
2874
2875 if (cnt > 0)
2876 {
2877 curwin->w_cursor.lnum = 0; /* just in case.. */
2878 sourcing_name = (char_u *)_("pre-vimrc command line");
2879# ifdef FEAT_EVAL
2880 current_SID = SID_CMDARG;
2881# endif
2882 for (i = 0; i < cnt; ++i)
2883 do_cmdline_cmd(cmds[i]);
2884 sourcing_name = NULL;
2885# ifdef FEAT_EVAL
2886 current_SID = 0;
2887# endif
2888 TIME_MSG("--cmd commands");
2889 }
2890}
2891
2892/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002893 * Execute "+", "-c" and "-S" arguments.
2894 */
2895 static void
2896exe_commands(parmp)
2897 mparm_T *parmp;
2898{
2899 int i;
2900
2901 /*
2902 * We start commands on line 0, make "vim +/pat file" match a
2903 * pattern on line 1. But don't move the cursor when an autocommand
2904 * with g`" was used.
2905 */
2906 msg_scroll = TRUE;
2907 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2908 curwin->w_cursor.lnum = 0;
2909 sourcing_name = (char_u *)"command line";
2910#ifdef FEAT_EVAL
2911 current_SID = SID_CARG;
2912#endif
2913 for (i = 0; i < parmp->n_commands; ++i)
2914 {
2915 do_cmdline_cmd(parmp->commands[i]);
2916 if (parmp->cmds_tofree[i])
2917 vim_free(parmp->commands[i]);
2918 }
2919 sourcing_name = NULL;
2920#ifdef FEAT_EVAL
2921 current_SID = 0;
2922#endif
2923 if (curwin->w_cursor.lnum == 0)
2924 curwin->w_cursor.lnum = 1;
2925
2926 if (!exmode_active)
2927 msg_scroll = FALSE;
2928
2929#ifdef FEAT_QUICKFIX
2930 /* When started with "-q errorfile" jump to first error again. */
2931 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002932 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002933#endif
2934 TIME_MSG("executing command arguments");
2935}
2936
2937/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002938 * Source startup scripts.
2939 */
2940 static void
2941source_startup_scripts(parmp)
2942 mparm_T *parmp;
2943{
2944 int i;
2945
2946 /*
2947 * For "evim" source evim.vim first of all, so that the user can overrule
2948 * any things he doesn't like.
2949 */
2950 if (parmp->evim_mode)
2951 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002952 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002953 TIME_MSG("source evim file");
2954 }
2955
2956 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002957 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002958 * nothing else.
2959 */
2960 if (parmp->use_vimrc != NULL)
2961 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002962 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2963 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002964 {
2965#ifdef FEAT_GUI
2966 if (use_gvimrc == NULL) /* don't load gvimrc either */
2967 use_gvimrc = parmp->use_vimrc;
2968#endif
2969 if (parmp->use_vimrc[2] == 'N')
2970 p_lpl = FALSE; /* don't load plugins either */
2971 }
2972 else
2973 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002974 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002975 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2976 }
2977 }
2978 else if (!silent_mode)
2979 {
2980#ifdef AMIGA
2981 struct Process *proc = (struct Process *)FindTask(0L);
2982 APTR save_winptr = proc->pr_WindowPtr;
2983
2984 /* Avoid a requester here for a volume that doesn't exist. */
2985 proc->pr_WindowPtr = (APTR)-1L;
2986#endif
2987
2988 /*
2989 * Get system wide defaults, if the file name is defined.
2990 */
2991#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002992 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002993#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002994#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002995 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002996#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002997
2998 /*
2999 * Try to read initialization commands from the following places:
3000 * - environment variable VIMINIT
3001 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
3002 * - second user vimrc file ($VIM/.vimrc for Dos)
3003 * - environment variable EXINIT
3004 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
3005 * - second user exrc file ($VIM/.exrc for Dos)
3006 * The first that exists is used, the rest is ignored.
3007 */
3008 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
3009 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003010 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003011#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003012 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
3013 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003014#endif
3015#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003016 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
3017 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00003018#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +02003019#ifdef USR_VIMRC_FILE4
3020 && do_source((char_u *)USR_VIMRC_FILE4, TRUE,
3021 DOSO_VIMRC) == FAIL
3022#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00003023 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003024 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
Bram Moolenaar58d98232005-07-23 22:25:46 +00003025 {
3026#ifdef USR_EXRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003027 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003028#endif
3029 }
3030 }
3031
3032 /*
3033 * Read initialization commands from ".vimrc" or ".exrc" in current
3034 * directory. This is only done if the 'exrc' option is set.
3035 * Because of security reasons we disallow shell and write commands
3036 * now, except for unix if the file is owned by the user or 'secure'
3037 * option has been reset in environment of global ".exrc" or ".vimrc".
3038 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
3039 * SYS_VIMRC_FILE.
3040 */
3041 if (p_exrc)
3042 {
3043#if defined(UNIX) || defined(VMS)
3044 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
3045 if (!file_owned(VIMRC_FILE))
3046#endif
3047 secure = p_secure;
3048
3049 i = FAIL;
3050 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
3051 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3052#ifdef USR_VIMRC_FILE2
3053 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
3054 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3055#endif
3056#ifdef USR_VIMRC_FILE3
3057 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
3058 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3059#endif
3060#ifdef SYS_VIMRC_FILE
3061 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
3062 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
3063#endif
3064 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003065 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003066
3067 if (i == FAIL)
3068 {
3069#if defined(UNIX) || defined(VMS)
3070 /* if ".exrc" is not owned by user set 'secure' mode */
3071 if (!file_owned(EXRC_FILE))
3072 secure = p_secure;
3073 else
3074 secure = 0;
3075#endif
3076 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
3077 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3078#ifdef USR_EXRC_FILE2
3079 && fullpathcmp((char_u *)USR_EXRC_FILE2,
3080 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
3081#endif
3082 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003083 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00003084 }
3085 }
3086 if (secure == 2)
3087 need_wait_return = TRUE;
3088 secure = 0;
3089#ifdef AMIGA
3090 proc->pr_WindowPtr = save_winptr;
3091#endif
3092 }
3093 TIME_MSG("sourcing vimrc file(s)");
3094}
3095
3096/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003097 * Setup to start using the GUI. Exit with an error when not available.
3098 */
3099 static void
3100main_start_gui()
3101{
3102#ifdef FEAT_GUI
3103 gui.starting = TRUE; /* start GUI a bit later */
3104#else
3105 mch_errmsg(_(e_nogvim));
3106 mch_errmsg("\n");
3107 mch_exit(2);
3108#endif
3109}
3110
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003111#endif /* NO_VIM_MAIN */
3112
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003113/*
Bram Moolenaar49325942007-05-10 19:19:59 +00003114 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003115 * Returns FAIL if the environment variable was not executed, OK otherwise.
3116 */
3117 int
3118process_env(env, is_viminit)
3119 char_u *env;
3120 int is_viminit; /* when TRUE, called for VIMINIT */
3121{
3122 char_u *initstr;
3123 char_u *save_sourcing_name;
3124 linenr_T save_sourcing_lnum;
3125#ifdef FEAT_EVAL
3126 scid_T save_sid;
3127#endif
3128
3129 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
3130 {
3131 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003132 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003133 save_sourcing_name = sourcing_name;
3134 save_sourcing_lnum = sourcing_lnum;
3135 sourcing_name = env;
3136 sourcing_lnum = 0;
3137#ifdef FEAT_EVAL
3138 save_sid = current_SID;
3139 current_SID = SID_ENV;
3140#endif
3141 do_cmdline_cmd(initstr);
3142 sourcing_name = save_sourcing_name;
3143 sourcing_lnum = save_sourcing_lnum;
3144#ifdef FEAT_EVAL
3145 current_SID = save_sid;;
3146#endif
3147 return OK;
3148 }
3149 return FAIL;
3150}
3151
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003152#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003153/*
3154 * Return TRUE if we are certain the user owns the file "fname".
3155 * Used for ".vimrc" and ".exrc".
3156 * Use both stat() and lstat() for extra security.
3157 */
3158 static int
3159file_owned(fname)
3160 char *fname;
3161{
3162 struct stat s;
3163# ifdef UNIX
3164 uid_t uid = getuid();
3165# else /* VMS */
3166 uid_t uid = ((getgid() << 16) | getuid());
3167# endif
3168
3169 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3170# ifdef HAVE_LSTAT
3171 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3172# endif
3173 );
3174}
3175#endif
3176
3177/*
3178 * Give an error message main_errors["n"] and exit.
3179 */
3180 static void
3181mainerr(n, str)
3182 int n; /* one of the ME_ defines */
3183 char_u *str; /* extra argument or NULL */
3184{
3185#if defined(UNIX) || defined(__EMX__) || defined(VMS)
3186 reset_signals(); /* kill us with CTRL-C here, if you like */
3187#endif
3188
3189 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003190 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003191 mch_errmsg(_(main_errors[n]));
3192 if (str != NULL)
3193 {
3194 mch_errmsg(": \"");
3195 mch_errmsg((char *)str);
3196 mch_errmsg("\"");
3197 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003198 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003199
3200 mch_exit(1);
3201}
3202
3203 void
3204mainerr_arg_missing(str)
3205 char_u *str;
3206{
3207 mainerr(ME_ARG_MISSING, str);
3208}
3209
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003210#ifndef NO_VIM_MAIN
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003211/*
3212 * print a message with three spaces prepended and '\n' appended.
3213 */
3214 static void
3215main_msg(s)
3216 char *s;
3217{
3218 mch_msg(" ");
3219 mch_msg(s);
3220 mch_msg("\n");
3221}
3222
3223/*
3224 * Print messages for "vim -h" or "vim --help" and exit.
3225 */
3226 static void
3227usage()
3228{
3229 int i;
3230 static char *(use[]) =
3231 {
3232 N_("[file ..] edit specified file(s)"),
3233 N_("- read text from stdin"),
3234 N_("-t tag edit file where tag is defined"),
3235#ifdef FEAT_QUICKFIX
3236 N_("-q [errorfile] edit file with first error")
3237#endif
3238 };
3239
3240#if defined(UNIX) || defined(__EMX__) || defined(VMS)
3241 reset_signals(); /* kill us with CTRL-C here, if you like */
3242#endif
3243
3244 mch_msg(longVersion);
3245 mch_msg(_("\n\nusage:"));
3246 for (i = 0; ; ++i)
3247 {
3248 mch_msg(_(" vim [arguments] "));
3249 mch_msg(_(use[i]));
3250 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3251 break;
3252 mch_msg(_("\n or:"));
3253 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003254#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003255 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003256#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003257
3258 mch_msg(_("\n\nArguments:\n"));
3259 main_msg(_("--\t\t\tOnly file names after this"));
3260#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3261 main_msg(_("--literal\t\tDon't expand wildcards"));
3262#endif
3263#ifdef FEAT_OLE
3264 main_msg(_("-register\t\tRegister this gvim for OLE"));
3265 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3266#endif
3267#ifdef FEAT_GUI
3268 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3269 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3270#endif
3271 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3272 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003273 main_msg(_("-E\t\t\tImproved Ex mode"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003274 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3275#ifdef FEAT_DIFF
3276 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3277#endif
3278 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3279 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3280 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3281 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3282 main_msg(_("-M\t\t\tModifications in text not allowed"));
3283 main_msg(_("-b\t\t\tBinary mode"));
3284#ifdef FEAT_LISP
3285 main_msg(_("-l\t\t\tLisp mode"));
3286#endif
3287 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3288 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003289 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3290#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003291 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003292#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003293 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3294 main_msg(_("-r\t\t\tList swap files and exit"));
3295 main_msg(_("-r (with file name)\tRecover crashed session"));
3296 main_msg(_("-L\t\t\tSame as -r"));
3297#ifdef AMIGA
3298 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3299 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3300#endif
3301#ifdef FEAT_ARABIC
3302 main_msg(_("-A\t\t\tstart in Arabic mode"));
3303#endif
3304#ifdef FEAT_RIGHTLEFT
3305 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3306#endif
3307#ifdef FEAT_FKMAP
3308 main_msg(_("-F\t\t\tStart in Farsi mode"));
3309#endif
3310 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3311 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3312#ifdef FEAT_GUI
3313 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3314#endif
3315 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003316#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003317 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003318 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3319 main_msg(_("-O[N]\t\tLike -o but split vertically"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003320#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003321 main_msg(_("+\t\t\tStart at end of file"));
3322 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003323 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003324 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3325 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3326 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3327 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3328 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3329#ifdef FEAT_CRYPT
3330 main_msg(_("-x\t\t\tEdit encrypted files"));
3331#endif
3332#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3333# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3334 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3335# endif
3336 main_msg(_("-X\t\t\tDo not connect to X server"));
3337#endif
3338#ifdef FEAT_CLIENTSERVER
3339 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3340 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3341 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3342 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003343# ifdef FEAT_WINDOWS
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003344 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003345# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003346 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3347 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3348 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3349 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3350#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003351#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003352 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003353#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003354#ifdef FEAT_VIMINFO
3355 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3356#endif
3357 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3358 main_msg(_("--version\t\tPrint version information and exit"));
3359
3360#ifdef FEAT_GUI_X11
3361# ifdef FEAT_GUI_MOTIF
3362 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3363# else
3364# ifdef FEAT_GUI_ATHENA
3365# ifdef FEAT_GUI_NEXTAW
3366 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3367# else
3368 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3369# endif
3370# endif
3371# endif
3372 main_msg(_("-display <display>\tRun vim on <display>"));
3373 main_msg(_("-iconic\t\tStart vim iconified"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003374 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3375 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3376 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3377 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3378 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3379 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3380 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3381 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3382# ifdef FEAT_GUI_ATHENA
3383 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3384# endif
3385 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3386 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3387 main_msg(_("-xrm <resource>\tSet the specified resource"));
3388#endif /* FEAT_GUI_X11 */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003389#ifdef FEAT_GUI_GTK
3390 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3391 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3392 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3393 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3394 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003395 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003396 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
Bram Moolenaarf99bc6d2012-03-28 17:10:31 +02003397 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003398#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003399#ifdef FEAT_GUI_W32
3400 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003401 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003402#endif
3403
3404#ifdef FEAT_GUI_GNOME
3405 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3406 if (gui.starting)
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003407 {
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003408 mch_msg("\n");
Bram Moolenaarf4120a82011-12-08 15:57:59 +01003409 gui.dofork = FALSE;
3410 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003411 else
3412#endif
3413 mch_exit(0);
3414}
3415
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003416#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003417/*
3418 * Check the result of the ATTENTION dialog:
3419 * When "Quit" selected, exit Vim.
3420 * When "Recover" selected, recover the file.
3421 */
3422 static void
3423check_swap_exists_action()
3424{
3425 if (swap_exists_action == SEA_QUIT)
3426 getout(1);
3427 handle_swap_exists(NULL);
3428}
3429#endif
3430
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003431#endif
3432
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003433#if defined(STARTUPTIME) || defined(PROTO)
3434static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3435
3436static struct timeval prev_timeval;
3437
Bram Moolenaar3f269672009-11-03 11:11:11 +00003438# ifdef WIN3264
3439/*
3440 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3441 */
3442 static int
3443gettimeofday(struct timeval *tv, char *dummy)
3444{
3445 long t = clock();
3446 tv->tv_sec = t / CLOCKS_PER_SEC;
3447 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3448 return 0;
3449}
3450# endif
3451
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003452/*
3453 * Save the previous time before doing something that could nest.
3454 * set "*tv_rel" to the time elapsed so far.
3455 */
3456 void
3457time_push(tv_rel, tv_start)
3458 void *tv_rel, *tv_start;
3459{
3460 *((struct timeval *)tv_rel) = prev_timeval;
3461 gettimeofday(&prev_timeval, NULL);
3462 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3463 - ((struct timeval *)tv_rel)->tv_usec;
3464 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3465 - ((struct timeval *)tv_rel)->tv_sec;
3466 if (((struct timeval *)tv_rel)->tv_usec < 0)
3467 {
3468 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3469 --((struct timeval *)tv_rel)->tv_sec;
3470 }
3471 *(struct timeval *)tv_start = prev_timeval;
3472}
3473
3474/*
3475 * Compute the previous time after doing something that could nest.
3476 * Subtract "*tp" from prev_timeval;
3477 * Note: The arguments are (void *) to avoid trouble with systems that don't
3478 * have struct timeval.
3479 */
3480 void
3481time_pop(tp)
3482 void *tp; /* actually (struct timeval *) */
3483{
3484 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3485 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3486 if (prev_timeval.tv_usec < 0)
3487 {
3488 prev_timeval.tv_usec += 1000000;
3489 --prev_timeval.tv_sec;
3490 }
3491}
3492
3493 static void
3494time_diff(then, now)
3495 struct timeval *then;
3496 struct timeval *now;
3497{
3498 long usec;
3499 long msec;
3500
3501 usec = now->tv_usec - then->tv_usec;
3502 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3503 usec = usec % 1000L;
3504 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3505}
3506
3507 void
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003508time_msg(mesg, tv_start)
3509 char *mesg;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003510 void *tv_start; /* only for do_source: start time; actually
3511 (struct timeval *) */
3512{
3513 static struct timeval start;
3514 struct timeval now;
3515
3516 if (time_fd != NULL)
3517 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003518 if (strstr(mesg, "STARTING") != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003519 {
3520 gettimeofday(&start, NULL);
3521 prev_timeval = start;
3522 fprintf(time_fd, "\n\ntimes in msec\n");
3523 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3524 fprintf(time_fd, " clock elapsed: other lines\n\n");
3525 }
3526 gettimeofday(&now, NULL);
3527 time_diff(&start, &now);
3528 if (((struct timeval *)tv_start) != NULL)
3529 {
3530 fprintf(time_fd, " ");
3531 time_diff(((struct timeval *)tv_start), &now);
3532 }
3533 fprintf(time_fd, " ");
3534 time_diff(&prev_timeval, &now);
3535 prev_timeval = now;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02003536 fprintf(time_fd, ": %s\n", mesg);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003537 }
3538}
3539
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003540#endif
3541
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003542#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003543
3544/*
3545 * Common code for the X command server and the Win32 command server.
3546 */
3547
Bram Moolenaareb94e552006-03-11 21:35:11 +00003548static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003549
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003550/*
3551 * Do the client-server stuff, unless "--servername ''" was used.
3552 */
3553 static void
3554exec_on_server(parmp)
3555 mparm_T *parmp;
3556{
3557 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3558 {
3559# ifdef WIN32
3560 /* Initialise the client/server messaging infrastructure. */
3561 serverInitMessaging();
3562# endif
3563
3564 /*
3565 * When a command server argument was found, execute it. This may
3566 * exit Vim when it was successful. Otherwise it's executed further
3567 * on. Remember the encoding used here in "serverStrEnc".
3568 */
3569 if (parmp->serverArg)
3570 {
3571 cmdsrv_main(&parmp->argc, parmp->argv,
3572 parmp->serverName_arg, &parmp->serverStr);
3573# ifdef FEAT_MBYTE
3574 parmp->serverStrEnc = vim_strsave(p_enc);
3575# endif
3576 }
3577
3578 /* If we're still running, get the name to register ourselves.
3579 * On Win32 can register right now, for X11 need to setup the
3580 * clipboard first, it's further down. */
3581 parmp->servername = serverMakeName(parmp->serverName_arg,
3582 parmp->argv[0]);
3583# ifdef WIN32
3584 if (parmp->servername != NULL)
3585 {
3586 serverSetName(parmp->servername);
3587 vim_free(parmp->servername);
3588 }
3589# endif
3590 }
3591}
3592
3593/*
3594 * Prepare for running as a Vim server.
3595 */
3596 static void
3597prepare_server(parmp)
3598 mparm_T *parmp;
3599{
3600# if defined(FEAT_X11)
3601 /*
3602 * Register for remote command execution with :serversend and --remote
3603 * unless there was a -X or a --servername '' on the command line.
3604 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003605 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003606 */
3607 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3608# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003609 (gui.in_use
3610# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003611 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003612# endif
3613 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003614# endif
3615 parmp->serverName_arg != NULL))
3616 {
3617 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3618 vim_free(parmp->servername);
3619 TIME_MSG("register server name");
3620 }
3621 else
3622 serverDelayedStartName = parmp->servername;
3623# endif
3624
3625 /*
3626 * Execute command ourselves if we're here because the send failed (or
3627 * else we would have exited above).
3628 */
3629 if (parmp->serverStr != NULL)
3630 {
3631 char_u *p;
3632
3633 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3634 parmp->serverStr, &p));
3635 vim_free(p);
3636 }
3637}
3638
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003639 static void
3640cmdsrv_main(argc, argv, serverName_arg, serverStr)
3641 int *argc;
3642 char **argv;
3643 char_u *serverName_arg;
3644 char_u **serverStr;
3645{
3646 char_u *res;
3647 int i;
3648 char_u *sname;
3649 int ret;
3650 int didone = FALSE;
3651 int exiterr = 0;
3652 char **newArgV = argv + 1;
3653 int newArgC = 1,
3654 Argc = *argc;
3655 int argtype;
3656#define ARGTYPE_OTHER 0
3657#define ARGTYPE_EDIT 1
3658#define ARGTYPE_EDIT_WAIT 2
3659#define ARGTYPE_SEND 3
3660 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003661 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003662# ifndef FEAT_X11
3663 HWND srv;
3664# else
3665 Window srv;
3666
3667 setup_term_clip();
3668# endif
3669
3670 sname = serverMakeName(serverName_arg, argv[0]);
3671 if (sname == NULL)
3672 return;
3673
3674 /*
3675 * Execute the command server related arguments and remove them
3676 * from the argc/argv array; We may have to return into main()
3677 */
3678 for (i = 1; i < Argc; i++)
3679 {
3680 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003681 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003682 {
3683 for (; i < *argc; i++)
3684 {
3685 *newArgV++ = argv[i];
3686 newArgC++;
3687 }
3688 break;
3689 }
3690
Bram Moolenaareb94e552006-03-11 21:35:11 +00003691 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003692 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003693 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3694 {
3695 char *p = argv[i] + 8;
3696
3697 argtype = ARGTYPE_EDIT;
3698 while (*p != NUL)
3699 {
3700 if (STRNICMP(p, "-wait", 5) == 0)
3701 {
3702 argtype = ARGTYPE_EDIT_WAIT;
3703 p += 5;
3704 }
3705 else if (STRNICMP(p, "-silent", 7) == 0)
3706 {
3707 silent = TRUE;
3708 p += 7;
3709 }
3710 else if (STRNICMP(p, "-tab", 4) == 0)
3711 {
3712 tabs = TRUE;
3713 p += 4;
3714 }
3715 else
3716 {
3717 argtype = ARGTYPE_OTHER;
3718 break;
3719 }
3720 }
3721 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003722 else
3723 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003724
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003725 if (argtype != ARGTYPE_OTHER)
3726 {
3727 if (i == *argc - 1)
3728 mainerr_arg_missing((char_u *)argv[i]);
3729 if (argtype == ARGTYPE_SEND)
3730 {
3731 *serverStr = (char_u *)argv[i + 1];
3732 i++;
3733 }
3734 else
3735 {
3736 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003737 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003738 if (*serverStr == NULL)
3739 {
3740 /* Probably out of memory, exit. */
3741 didone = TRUE;
3742 exiterr = 1;
3743 break;
3744 }
3745 Argc = i;
3746 }
3747# ifdef FEAT_X11
3748 if (xterm_dpy == NULL)
3749 {
3750 mch_errmsg(_("No display"));
3751 ret = -1;
3752 }
3753 else
3754 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3755 NULL, &srv, 0, 0, silent);
3756# else
3757 /* Win32 always works? */
3758 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3759# endif
3760 if (ret < 0)
3761 {
3762 if (argtype == ARGTYPE_SEND)
3763 {
3764 /* Failed to send, abort. */
3765 mch_errmsg(_(": Send failed.\n"));
3766 didone = TRUE;
3767 exiterr = 1;
3768 }
3769 else if (!silent)
3770 /* Let vim start normally. */
3771 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3772 break;
3773 }
3774
3775# ifdef FEAT_GUI_W32
3776 /* Guess that when the server name starts with "g" it's a GUI
3777 * server, which we can bring to the foreground here.
3778 * Foreground() in the server doesn't work very well. */
3779 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3780 SetForegroundWindow(srv);
3781# endif
3782
3783 /*
3784 * For --remote-wait: Wait until the server did edit each
3785 * file. Also detect that the server no longer runs.
3786 */
3787 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3788 {
3789 int numFiles = *argc - i - 1;
3790 int j;
3791 char_u *done = alloc(numFiles);
3792 char_u *p;
3793# ifdef FEAT_GUI_W32
3794 NOTIFYICONDATA ni;
3795 int count = 0;
3796 extern HWND message_window;
3797# endif
3798
3799 if (numFiles > 0 && argv[i + 1][0] == '+')
3800 /* Skip "+cmd" argument, don't wait for it to be edited. */
3801 --numFiles;
3802
3803# ifdef FEAT_GUI_W32
3804 ni.cbSize = sizeof(ni);
3805 ni.hWnd = message_window;
3806 ni.uID = 0;
3807 ni.uFlags = NIF_ICON|NIF_TIP;
3808 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3809 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3810 Shell_NotifyIcon(NIM_ADD, &ni);
3811# endif
3812
3813 /* Wait for all files to unload in remote */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003814 vim_memset(done, 0, numFiles);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003815 while (memchr(done, 0, numFiles) != NULL)
3816 {
3817# ifdef WIN32
3818 p = serverGetReply(srv, NULL, TRUE, TRUE);
3819 if (p == NULL)
3820 break;
3821# else
3822 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3823 break;
3824# endif
3825 j = atoi((char *)p);
3826 if (j >= 0 && j < numFiles)
3827 {
3828# ifdef FEAT_GUI_W32
3829 ++count;
3830 sprintf(ni.szTip, _("%d of %d edited"),
3831 count, numFiles);
3832 Shell_NotifyIcon(NIM_MODIFY, &ni);
3833# endif
3834 done[j] = 1;
3835 }
3836 }
3837# ifdef FEAT_GUI_W32
3838 Shell_NotifyIcon(NIM_DELETE, &ni);
3839# endif
3840 }
3841 }
3842 else if (STRICMP(argv[i], "--remote-expr") == 0)
3843 {
3844 if (i == *argc - 1)
3845 mainerr_arg_missing((char_u *)argv[i]);
3846# ifdef WIN32
3847 /* Win32 always works? */
3848 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3849 &res, NULL, 1, FALSE) < 0)
3850# else
3851 if (xterm_dpy == NULL)
3852 mch_errmsg(_("No display: Send expression failed.\n"));
3853 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3854 &res, NULL, 1, 1, FALSE) < 0)
3855# endif
3856 {
3857 if (res != NULL && *res != NUL)
3858 {
3859 /* Output error from remote */
3860 mch_errmsg((char *)res);
3861 vim_free(res);
3862 res = NULL;
3863 }
3864 mch_errmsg(_(": Send expression failed.\n"));
3865 }
3866 }
3867 else if (STRICMP(argv[i], "--serverlist") == 0)
3868 {
3869# ifdef WIN32
3870 /* Win32 always works? */
3871 res = serverGetVimNames();
3872# else
3873 if (xterm_dpy != NULL)
3874 res = serverGetVimNames(xterm_dpy);
3875# endif
3876 if (called_emsg)
3877 mch_errmsg("\n");
3878 }
3879 else if (STRICMP(argv[i], "--servername") == 0)
3880 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003881 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003882 i++;
3883 continue;
3884 }
3885 else
3886 {
3887 *newArgV++ = argv[i];
3888 newArgC++;
3889 continue;
3890 }
3891 didone = TRUE;
3892 if (res != NULL && *res != NUL)
3893 {
3894 mch_msg((char *)res);
3895 if (res[STRLEN(res) - 1] != '\n')
3896 mch_msg("\n");
3897 }
3898 vim_free(res);
3899 }
3900
3901 if (didone)
3902 {
3903 display_errors(); /* display any collected messages */
3904 exit(exiterr); /* Mission accomplished - get out */
3905 }
3906
3907 /* Return back into main() */
3908 *argc = newArgC;
3909 vim_free(sname);
3910}
3911
3912/*
3913 * Build a ":drop" command to send to a Vim server.
3914 */
3915 static char_u *
Bram Moolenaareb94e552006-03-11 21:35:11 +00003916build_drop_cmd(filec, filev, tabs, sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003917 int filec;
3918 char **filev;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003919 int tabs; /* Use ":tab drop" instead of ":drop". */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003920 int sendReply;
3921{
3922 garray_T ga;
3923 int i;
3924 char_u *inicmd = NULL;
3925 char_u *p;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003926 char_u *cwd;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003927
3928 if (filec > 0 && filev[0][0] == '+')
3929 {
3930 inicmd = (char_u *)filev[0] + 1;
3931 filev++;
3932 filec--;
3933 }
3934 /* Check if we have at least one argument. */
3935 if (filec <= 0)
3936 mainerr_arg_missing((char_u *)filev[-1]);
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003937
3938 /* Temporarily cd to the current directory to handle relative file names. */
Bram Moolenaard9462e32011-04-11 21:35:11 +02003939 cwd = alloc(MAXPATHL);
3940 if (cwd == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003941 return NULL;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003942 if (mch_dirname(cwd, MAXPATHL) != OK)
3943 {
3944 vim_free(cwd);
3945 return NULL;
3946 }
3947 p = vim_strsave_escaped_ext(cwd,
Bram Moolenaar02b06312007-09-06 15:39:22 +00003948#ifdef BACKSLASH_IN_FILENAME
3949 "", /* rem_backslash() will tell what chars to escape */
3950#else
3951 PATH_ESC_CHARS,
3952#endif
Bram Moolenaard9462e32011-04-11 21:35:11 +02003953 '\\', TRUE);
3954 vim_free(cwd);
3955 if (p == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003956 return NULL;
3957 ga_init2(&ga, 1, 100);
3958 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3959 ga_concat(&ga, p);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003960 vim_free(p);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003961
3962 /* Call inputsave() so that a prompt for an encryption key works. */
3963 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3964 if (tabs)
3965 ga_concat(&ga, (char_u *)"tab ");
3966 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003967 for (i = 0; i < filec; i++)
3968 {
3969 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003970 * do it again in the Vim server. On MS-Windows only escape
3971 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003972 p = vim_strsave_escaped((char_u *)filev[i],
3973#ifdef UNIX
3974 PATH_ESC_CHARS
3975#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003976 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003977#endif
3978 );
3979 if (p == NULL)
3980 {
3981 vim_free(ga.ga_data);
3982 return NULL;
3983 }
3984 ga_concat(&ga, (char_u *)" ");
3985 ga_concat(&ga, p);
3986 vim_free(p);
3987 }
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003988 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3989
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003990 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3991 * CTRL-\ CTRL-N again. */
Bram Moolenaar00b78c12010-11-16 16:25:51 +01003992 ga_concat(&ga, (char_u *)"<C-\\><C-N>");
3993
3994 /* Switch back to the correct current directory (prior to temporary path
3995 * switch) unless 'autochdir' is set, in which case it will already be
3996 * correct after the :drop command. */
3997 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|cd -|endif<CR>");
3998
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003999 if (sendReply)
Bram Moolenaar00b78c12010-11-16 16:25:51 +01004000 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
4001 ga_concat(&ga, (char_u *)":");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004002 if (inicmd != NULL)
4003 {
4004 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
4005 * the following commands to be inserted as text. Use a "|",
4006 * hopefully "inicmd" does allow this... */
4007 ga_concat(&ga, inicmd);
4008 ga_concat(&ga, (char_u *)"|");
4009 }
4010 /* Bring the window to the foreground, goto Insert mode when 'im' set and
4011 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00004012 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004013 ga_append(&ga, NUL);
4014 return ga.ga_data;
4015}
4016
4017/*
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004018 * Make our basic server name: use the specified "arg" if given, otherwise use
4019 * the tail of the command "cmd" we were started with.
4020 * Return the name in allocated memory. This doesn't include a serial number.
4021 */
4022 static char_u *
4023serverMakeName(arg, cmd)
4024 char_u *arg;
4025 char *cmd;
4026{
4027 char_u *p;
4028
4029 if (arg != NULL && *arg != NUL)
4030 p = vim_strsave_up(arg);
4031 else
4032 {
4033 p = vim_strsave_up(gettail((char_u *)cmd));
4034 /* Remove .exe or .bat from the name. */
4035 if (p != NULL && vim_strchr(p, '.') != NULL)
4036 *vim_strchr(p, '.') = NUL;
4037 }
4038 return p;
4039}
4040#endif /* FEAT_CLIENTSERVER */
4041
4042#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
4043/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004044 * Replace termcodes such as <CR> and insert as key presses if there is room.
4045 */
4046 void
4047server_to_input_buf(str)
4048 char_u *str;
4049{
4050 char_u *ptr = NULL;
4051 char_u *cpo_save = p_cpo;
4052
4053 /* Set 'cpoptions' the way we want it.
4054 * B set - backslashes are *not* treated specially
4055 * k set - keycodes are *not* reverse-engineered
4056 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004057 * The last but one parameter of replace_termcodes() is TRUE so that the
4058 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004059 */
4060 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00004061 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004062 p_cpo = cpo_save;
4063
4064 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
4065 {
4066 /*
4067 * Add the string to the input stream.
4068 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
4069 *
4070 * First clear typed characters from the typeahead buffer, there could
4071 * be half a mapping there. Then append to the existing string, so
4072 * that multiple commands from a client are concatenated.
4073 */
4074 if (typebuf.tb_maplen < typebuf.tb_len)
4075 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
4076 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
4077
4078 /* Let input_available() know we inserted text in the typeahead
4079 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004080 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004081 }
4082 vim_free((char_u *)ptr);
4083}
4084
4085/*
4086 * Evaluate an expression that the client sent to a string.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004087 */
4088 char_u *
4089eval_client_expr_to_string(expr)
4090 char_u *expr;
4091{
4092 char_u *res;
4093 int save_dbl = debug_break_level;
4094 int save_ro = redir_off;
4095
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004096 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be
4097 * typed. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004098 debug_break_level = -1;
4099 redir_off = 0;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004100 /* Do not display error message, otherwise Vim hangs, waiting for "cont"
4101 * to be typed. Do generate errors so that try/catch works. */
4102 ++emsg_silent;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004103
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004104 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004105
4106 debug_break_level = save_dbl;
4107 redir_off = save_ro;
Bram Moolenaar1e284f52013-03-13 20:23:22 +01004108 --emsg_silent;
4109 if (emsg_silent < 0)
4110 emsg_silent = 0;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004111
Bram Moolenaar63a121b2005-12-11 21:36:39 +00004112 /* A client can tell us to redraw, but not to display the cursor, so do
4113 * that here. */
4114 setcursor();
4115 out_flush();
4116#ifdef FEAT_GUI
4117 if (gui.in_use)
4118 gui_update_cursor(FALSE, FALSE);
4119#endif
4120
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004121 return res;
4122}
4123
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004124/*
4125 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
4126 * return an allocated string. Otherwise return "data".
4127 * "*tofree" is set to the result when it needs to be freed later.
4128 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004129 char_u *
4130serverConvert(client_enc, data, tofree)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004131 char_u *client_enc UNUSED;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004132 char_u *data;
4133 char_u **tofree;
4134{
4135 char_u *res = data;
4136
4137 *tofree = NULL;
4138# ifdef FEAT_MBYTE
4139 if (client_enc != NULL && p_enc != NULL)
4140 {
4141 vimconv_T vimconv;
4142
4143 vimconv.vc_type = CONV_NONE;
4144 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
4145 && vimconv.vc_type != CONV_NONE)
4146 {
4147 res = string_convert(&vimconv, data, NULL);
4148 if (res == NULL)
4149 res = data;
4150 else
4151 *tofree = res;
4152 }
4153 convert_setup(&vimconv, NULL, NULL);
4154 }
4155# endif
4156 return res;
4157}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01004158#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00004159
4160/*
4161 * When FEAT_FKMAP is defined, also compile the Farsi source code.
4162 */
4163#if defined(FEAT_FKMAP) || defined(PROTO)
4164# include "farsi.c"
4165#endif
4166
4167/*
4168 * When FEAT_ARABIC is defined, also compile the Arabic source code.
4169 */
4170#if defined(FEAT_ARABIC) || defined(PROTO)
4171# include "arabic.c"
4172#endif