blob: b9e92094ed0bb32636a9ea88635988d5a660a0e9 [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 Moolenaarc236c162008-07-13 17:41:49 +000010#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000011# include "vimio.h" /* for close() and dup() */
Bram Moolenaarb4210b32004-06-13 14:51:16 +000012#endif
13
14#define EXTERN
15#include "vim.h"
16
17#ifdef SPAWNO
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +000018# include <spawno.h> /* special MS-DOS swapping library */
Bram Moolenaarb4210b32004-06-13 14:51:16 +000019#endif
20
Bram Moolenaarb4210b32004-06-13 14:51:16 +000021#ifdef __CYGWIN__
22# ifndef WIN32
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000023# include <cygwin/version.h>
24# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
25 * cygwin_conv_path() */
Bram Moolenaarb4210b32004-06-13 14:51:16 +000026# endif
27# include <limits.h>
28#endif
29
Bram Moolenaarc013cb62005-07-24 21:18:31 +000030/* Maximum number of commands from + or -c arguments. */
31#define MAX_ARG_CMDS 10
32
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000033/* values for "window_layout" */
34#define WIN_HOR 1 /* "-o" horizontally split windows */
35#define WIN_VER 2 /* "-O" vertically split windows */
36#define WIN_TABS 3 /* "-p" windows on tab pages */
37
Bram Moolenaar58d98232005-07-23 22:25:46 +000038/* Struct for various parameters passed between main() and other functions. */
39typedef struct
40{
Bram Moolenaarc013cb62005-07-24 21:18:31 +000041 int argc;
42 char **argv;
43
44 int evim_mode; /* started as "evim" */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000045 char_u *use_vimrc; /* vimrc from -u argument */
46
47 int n_commands; /* no. of commands from + or -c */
48 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
49 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
50 int n_pre_commands; /* no. of commands from --cmd */
51 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
52
53 int edit_type; /* type of editing to do */
54 char_u *tagname; /* tag from -t argument */
55#ifdef FEAT_QUICKFIX
56 char_u *use_ef; /* 'errorfile' from -q argument */
57#endif
58
59 int want_full_screen;
60 int stdout_isatty; /* is stdout a terminal? */
61 char_u *term; /* specified terminal name */
62#ifdef FEAT_CRYPT
63 int ask_for_key; /* -x argument */
64#endif
65 int no_swap_file; /* "-n" argument used */
66#ifdef FEAT_EVAL
67 int use_debug_break_level;
68#endif
69#ifdef FEAT_WINDOWS
70 int window_count; /* number of windows to use */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000071 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000072#endif
73
74#ifdef FEAT_CLIENTSERVER
Bram Moolenaar58d98232005-07-23 22:25:46 +000075 int serverArg; /* TRUE when argument for a server */
76 char_u *serverName_arg; /* cmdline arg for server name */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000077 char_u *serverStr; /* remote server command */
78 char_u *serverStrEnc; /* encoding of serverStr */
79 char_u *servername; /* allocated name for our server */
80#endif
81#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
82 int literal; /* don't expand file names */
83#endif
84#ifdef MSWIN
85 int full_path; /* file name argument was full path */
86#endif
87#ifdef FEAT_DIFF
88 int diff_mode; /* start with 'diff' set */
89#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +000090} mparm_T;
91
Bram Moolenaarc013cb62005-07-24 21:18:31 +000092/* Values for edit_type. */
93#define EDIT_NONE 0 /* no edit type yet */
94#define EDIT_FILE 1 /* file name argument[s] given, use argument list */
95#define EDIT_STDIN 2 /* read file from stdin */
96#define EDIT_TAG 3 /* tag name argument given, use tagname */
97#define EDIT_QF 4 /* start in quickfix mode */
98
Bram Moolenaarb4210b32004-06-13 14:51:16 +000099#if defined(UNIX) || defined(VMS)
100static int file_owned __ARGS((char *fname));
101#endif
102static void mainerr __ARGS((int, char_u *));
103static void main_msg __ARGS((char *s));
104static void usage __ARGS((void));
105static int get_number_arg __ARGS((char_u *p, int *idx, int def));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000106#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
107static void init_locale __ARGS((void));
108#endif
109static void parse_command_name __ARGS((mparm_T *parmp));
110static void early_arg_scan __ARGS((mparm_T *parmp));
111static void command_line_scan __ARGS((mparm_T *parmp));
112static void check_tty __ARGS((mparm_T *parmp));
113static void read_stdin __ARGS((void));
114static void create_windows __ARGS((mparm_T *parmp));
115#ifdef FEAT_WINDOWS
116static void edit_buffers __ARGS((mparm_T *parmp));
117#endif
118static void exe_pre_commands __ARGS((mparm_T *parmp));
119static void exe_commands __ARGS((mparm_T *parmp));
Bram Moolenaar58d98232005-07-23 22:25:46 +0000120static void source_startup_scripts __ARGS((mparm_T *parmp));
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000121static void main_start_gui __ARGS((void));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +0000122#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000123static void check_swap_exists_action __ARGS((void));
124#endif
125#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000126static void exec_on_server __ARGS((mparm_T *parmp));
127static void prepare_server __ARGS((mparm_T *parmp));
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000128static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
129static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
130#endif
131
132
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000133/*
134 * Different types of error messages.
135 */
136static char *(main_errors[]) =
137{
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000138 N_("Unknown option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000139#define ME_UNKNOWN_OPTION 0
140 N_("Too many edit arguments"),
141#define ME_TOO_MANY_ARGS 1
142 N_("Argument missing after"),
143#define ME_ARG_MISSING 2
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000144 N_("Garbage after option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000145#define ME_GARBAGE 3
146 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
147#define ME_EXTRA_CMD 4
148 N_("Invalid argument for"),
149#define ME_INVALID_ARG 5
150};
151
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000152#ifndef PROTO /* don't want a prototype for main() */
153 int
154# ifdef VIMDLL
155_export
156# endif
157# ifdef FEAT_GUI_MSWIN
158# ifdef __BORLANDC__
159_cdecl
160# endif
161VimMain
162# else
163main
164# endif
165(argc, argv)
166 int argc;
167 char **argv;
168{
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000169 char_u *fname = NULL; /* file name from command line */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000170 mparm_T params; /* various parameters passed between
171 * main() and other functions. */
Bram Moolenaar3f269672009-11-03 11:11:11 +0000172#ifdef STARTUPTIME
173 int i;
174#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000175
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000176 /*
177 * Do any system-specific initialisations. These can NOT use IObuff or
178 * NameBuff. Thus emsg2() cannot be called!
179 */
180 mch_early_init();
181
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000182 /* Many variables are in "params" so that we can pass them to invoked
183 * functions without a lot of arguments. "argc" and "argv" are also
184 * copied, so that they can be changed. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000185 vim_memset(&params, 0, sizeof(params));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000186 params.argc = argc;
187 params.argv = argv;
188 params.want_full_screen = TRUE;
189#ifdef FEAT_EVAL
190 params.use_debug_break_level = -1;
191#endif
192#ifdef FEAT_WINDOWS
193 params.window_count = -1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000194#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +0000195
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000196#ifdef FEAT_TCL
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000197 vim_tcl_init(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000198#endif
199
200#ifdef MEM_PROFILE
201 atexit(vim_mem_profile_dump);
202#endif
203
204#ifdef STARTUPTIME
Bram Moolenaar3f269672009-11-03 11:11:11 +0000205 for (i = 1; i < argc; ++i)
206 {
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000207 if (STRICMP(argv[i], "--startuptime") == 0 && i + 1 < argc)
Bram Moolenaar3f269672009-11-03 11:11:11 +0000208 {
Bram Moolenaaref94eec2009-11-11 13:22:11 +0000209 time_fd = mch_fopen(argv[i + 1], "a");
Bram Moolenaar3f269672009-11-03 11:11:11 +0000210 TIME_MSG("--- VIM STARTING ---");
211 break;
212 }
213 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000214#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +0000215 starttime = time(NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000216
217#ifdef __EMX__
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000218 _wildcard(&params.argc, &params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000219#endif
220
221#ifdef FEAT_MBYTE
222 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
223#endif
Bram Moolenaardcaf10e2005-01-21 11:55:25 +0000224#ifdef FEAT_EVAL
225 eval_init(); /* init global variables */
226#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000227
228#ifdef __QNXNTO__
229 qnx_init(); /* PhAttach() for clipboard, (and gui) */
230#endif
231
232#ifdef MAC_OS_CLASSIC
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000233 /* Prepare for possibly starting GUI sometime */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000234 /* Macintosh needs this before any memory is allocated. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000235 gui_prepare(&params.argc, params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000236 TIME_MSG("GUI prepared");
237#endif
238
239 /* Init the table of Normal mode commands. */
240 init_normal_cmds();
241
242#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
Bram Moolenaar58d98232005-07-23 22:25:46 +0000243 make_version(); /* Construct the long version string. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000244#endif
245
246 /*
247 * Allocate space for the generic buffers (needed for set_init_1() and
248 * EMSG2()).
249 */
250 if ((IObuff = alloc(IOSIZE)) == NULL
251 || (NameBuff = alloc(MAXPATHL)) == NULL)
252 mch_exit(0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000253 TIME_MSG("Allocated generic buffers");
254
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000255#ifdef NBDEBUG
256 /* Wait a moment for debugging NetBeans. Must be after allocating
257 * NameBuff. */
258 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
259 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000260 TIME_MSG("NetBeans debug wait");
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000261#endif
262
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000263#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
264 /*
265 * Setup to use the current locale (for ctype() and many other things).
266 * NOTE: Translated messages with encodings other than latin1 will not
267 * work until set_init_1() has been called!
268 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000269 init_locale();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000270 TIME_MSG("locale set");
271#endif
272
273#ifdef FEAT_GUI
274 gui.dofork = TRUE; /* default is to use fork() */
275#endif
276
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000277 /*
Bram Moolenaar58d98232005-07-23 22:25:46 +0000278 * Do a first scan of the arguments in "argv[]":
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000279 * -display or --display
Bram Moolenaar58d98232005-07-23 22:25:46 +0000280 * --server...
281 * --socketid
Bram Moolenaar78e17622007-08-30 10:26:19 +0000282 * --windowid
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000283 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000284 early_arg_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000285
286#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000287 findYourself(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000288#endif
289#if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000290 /* Prepare for possibly starting GUI sometime */
291 gui_prepare(&params.argc, params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000292 TIME_MSG("GUI prepared");
293#endif
294
295#ifdef FEAT_CLIPBOARD
296 clip_init(FALSE); /* Initialise clipboard stuff */
297 TIME_MSG("clipboard setup");
298#endif
299
300 /*
301 * Check if we have an interactive window.
302 * On the Amiga: If there is no window, we open one with a newcli command
303 * (needed for :! to * work). mch_check_win() will also handle the -d or
304 * -dev argument.
305 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000306 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000307 TIME_MSG("window checked");
308
309 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000310 * Allocate the first window and buffer.
311 * Can't do anything without it, exit when it fails.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000312 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000313 if (win_alloc_first() == FAIL)
314 mch_exit(0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000315
316 init_yank(); /* init yank buffers */
317
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000318 alist_init(&global_alist); /* Init the argument list to empty. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000319
320 /*
321 * Set the default values for the options.
322 * NOTE: Non-latin1 translated messages are working only after this,
323 * because this is where "has_mbyte" will be set, which is used by
324 * msg_outtrans_len_attr().
325 * First find out the home directory, needed to expand "~" in options.
326 */
327 init_homedir(); /* find real value of $HOME */
328 set_init_1();
329 TIME_MSG("inits 1");
330
331#ifdef FEAT_EVAL
332 set_lang_var(); /* set v:lang and v:ctype */
333#endif
334
335#ifdef FEAT_CLIENTSERVER
336 /*
337 * Do the client-server stuff, unless "--servername ''" was used.
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000338 * This may exit Vim if the command was sent to the server.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000339 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000340 exec_on_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000341#endif
342
343 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000344 * Figure out the way to work from the command name argv[0].
345 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000346 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000347 parse_command_name(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000348
349 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000350 * Process the command line arguments. File names are put in the global
351 * argument list "global_alist".
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000352 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000353 command_line_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000354 TIME_MSG("parsing arguments");
355
356 /*
357 * On some systems, when we compile with the GUI, we always use it. On Mac
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000358 * there is no terminal version, and on Windows we can't fork one off with
359 * :gui.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000360 */
361#ifdef ALWAYS_USE_GUI
362 gui.starting = TRUE;
363#else
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000364# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000365 /*
366 * Check if the GUI can be started. Reset gui.starting if not.
367 * Don't know about other systems, stay on the safe side and don't check.
368 */
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000369 if (gui.starting)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000370 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000371 if (gui_init_check() == FAIL)
372 {
373 gui.starting = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000374
Bram Moolenaar5d985b92009-12-16 17:28:07 +0000375 /* When running "evim" or "gvim -y" we need the menus, exit if we
376 * don't have them. */
377 if (params.evim_mode)
378 mch_exit(1);
379 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000380 }
381# endif
382#endif
383
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000384 if (GARGCOUNT > 0)
385 {
386#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
387 /*
388 * Expand wildcards in file names.
389 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000390 if (!params.literal)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000391 {
392 /* Temporarily add '(' and ')' to 'isfname'. These are valid
393 * filename characters but are excluded from 'isfname' to make
394 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
395 do_cmdline_cmd((char_u *)":set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +0000396 alist_expand(NULL, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000397 do_cmdline_cmd((char_u *)":set isf&");
398 }
399#endif
400 fname = alist_name(&GARGLIST[0]);
401 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000402
403#if defined(WIN32) && defined(FEAT_MBYTE)
404 {
405 extern void set_alist_count(void);
406
407 /* Remember the number of entries in the argument list. If it changes
408 * we don't react on setting 'encoding'. */
409 set_alist_count();
410 }
411#endif
412
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000413#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000414 if (GARGCOUNT == 1 && params.full_path)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000415 {
416 /*
417 * If there is one filename, fully qualified, we have very probably
418 * been invoked from explorer, so change to the file's directory.
419 * Hint: to avoid this when typing a command use a forward slash.
420 * If the cd fails, it doesn't matter.
421 */
422 (void)vim_chdirfile(fname);
423 }
424#endif
425 TIME_MSG("expanding arguments");
426
427#ifdef FEAT_DIFF
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000428 if (params.diff_mode && params.window_count == -1)
429 params.window_count = 0; /* open up to 3 windows */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000430#endif
431
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000432 /* Don't redraw until much later. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000433 ++RedrawingDisabled;
434
435 /*
436 * When listing swap file names, don't do cursor positioning et. al.
437 */
438 if (recoverymode && fname == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000439 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000440
441 /*
442 * When certain to start the GUI, don't check capabilities of terminal.
443 * For GTK we can't be sure, but when started from the desktop it doesn't
444 * make sense to try using a terminal.
445 */
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000446#if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000447 if (gui.starting
448# ifdef FEAT_GUI_GTK
449 && !isatty(2)
450# endif
451 )
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000452 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000453#endif
454
455#if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
456 /* When the GUI is started from Finder, need to display messages in a
457 * message box. isatty(2) returns TRUE anyway, thus we need to check the
458 * name to know we're not started from a terminal. */
459 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000460 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000461 params.want_full_screen = FALSE;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000462
463 /* Avoid always using "/" as the current directory. Note that when
464 * started from Finder the arglist will be filled later in
465 * HandleODocAE() and "fname" will be NULL. */
466 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
467 && STRCMP(NameBuff, "/") == 0)
468 {
469 if (fname != NULL)
470 (void)vim_chdirfile(fname);
471 else
472 {
473 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
474 vim_chdir(NameBuff);
475 }
476 }
477 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000478#endif
479
480 /*
481 * mch_init() sets up the terminal (window) for use. This must be
482 * done after resetting full_screen, otherwise it may move the cursor
483 * (MSDOS).
484 * Note that we may use mch_exit() before mch_init()!
485 */
486 mch_init();
487 TIME_MSG("shell init");
488
489#ifdef USE_XSMP
490 /*
491 * For want of anywhere else to do it, try to connect to xsmp here.
492 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
493 * Hijacking -X 'no X connection' to also disable XSMP connection as that
494 * has a similar delay upon failure.
495 * Only try if SESSION_MANAGER is set to something non-null.
496 */
497 if (!x_no_connect)
498 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000499 char *p = getenv("SESSION_MANAGER");
500
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000501 if (p != NULL && *p != NUL)
502 {
503 xsmp_init();
504 TIME_MSG("xsmp init");
505 }
506 }
507#endif
508
509 /*
510 * Print a warning if stdout is not a terminal.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000511 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000512 check_tty(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000513
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000514 /* This message comes before term inits, but after setting "silent_mode"
515 * when the input is not a tty. */
516 if (GARGCOUNT > 1 && !silent_mode)
517 printf(_("%d files to edit\n"), GARGCOUNT);
518
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000519 if (params.want_full_screen && !silent_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000520 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000521 termcapinit(params.term); /* set terminal name and get terminal
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000522 capabilities (will set full_screen) */
523 screen_start(); /* don't know where cursor is now */
524 TIME_MSG("Termcap init");
525 }
526
527 /*
528 * Set the default values for the options that use Rows and Columns.
529 */
530 ui_get_shellsize(); /* inits Rows and Columns */
531#ifdef FEAT_NETBEANS_INTG
532 if (usingNetbeans)
533 Columns += 2; /* leave room for glyph gutter */
534#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000535 win_init_size();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000536#ifdef FEAT_DIFF
537 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
538 * file. There is no buffer yet though. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000539 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000540 diff_win_options(firstwin, FALSE);
541#endif
542
543 cmdline_row = Rows - p_ch;
544 msg_row = cmdline_row;
545 screenalloc(FALSE); /* allocate screen buffers */
546 set_init_2();
547 TIME_MSG("inits 2");
548
549 msg_scroll = TRUE;
550 no_wait_return = TRUE;
551
552 init_mappings(); /* set up initial mappings */
553
554 init_highlight(TRUE, FALSE); /* set the default highlight groups */
555 TIME_MSG("init highlight");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000556
557#ifdef FEAT_EVAL
558 /* Set the break level after the terminal is initialized. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000559 debug_break_level = params.use_debug_break_level;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000560#endif
561
Bram Moolenaar58d98232005-07-23 22:25:46 +0000562 /* Execute --cmd arguments. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000563 exe_pre_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000564
Bram Moolenaar58d98232005-07-23 22:25:46 +0000565 /* Source startup scripts. */
566 source_startup_scripts(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000567
568#ifdef FEAT_EVAL
569 /*
570 * Read all the plugin files.
571 * Only when compiled with +eval, since most plugins need it.
572 */
573 if (p_lpl)
574 {
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000575# ifdef VMS /* Somehow VMS doesn't handle the "**". */
576 source_runtime((char_u *)"plugin/*.vim", TRUE);
577# else
Bram Moolenaar07d4d732005-10-03 22:04:08 +0000578 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000579# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000580 TIME_MSG("loading plugins");
581 }
582#endif
583
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000584#ifdef FEAT_DIFF
585 /* Decide about window layout for diff mode after reading vimrc. */
586 if (params.diff_mode && params.window_layout == 0)
587 {
588 if (diffopt_horizontal())
589 params.window_layout = WIN_HOR; /* use horizontal split */
590 else
591 params.window_layout = WIN_VER; /* use vertical split */
592 }
593#endif
594
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000595 /*
596 * Recovery mode without a file name: List swap files.
597 * This uses the 'dir' option, therefore it must be after the
598 * initializations.
599 */
600 if (recoverymode && fname == NULL)
601 {
602 recover_names(NULL, TRUE, 0);
603 mch_exit(0);
604 }
605
606 /*
607 * Set a few option defaults after reading .vimrc files:
608 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
609 */
610 set_init_3();
611 TIME_MSG("inits 3");
612
613 /*
614 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
615 * Note that this overrides anything from a vimrc file.
616 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000617 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000618 p_uc = 0;
619
620#ifdef FEAT_FKMAP
621 if (curwin->w_p_rl && p_altkeymap)
622 {
623 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
624# ifdef FEAT_ARABIC
625 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
626# endif
627 p_fkmap = TRUE; /* Set the Farsi keymap mode */
628 }
629#endif
630
631#ifdef FEAT_GUI
632 if (gui.starting)
633 {
634#if defined(UNIX) || defined(VMS)
635 /* When something caused a message from a vimrc script, need to output
636 * an extra newline before the shell prompt. */
637 if (did_emsg || msg_didout)
638 putchar('\n');
639#endif
640
641 gui_start(); /* will set full_screen to TRUE */
642 TIME_MSG("starting GUI");
643
644 /* When running "evim" or "gvim -y" we need the menus, exit if we
645 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000646 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000647 mch_exit(1);
648 }
649#endif
650
651#ifdef SPAWNO /* special MSDOS swapping library */
652 init_SPAWNO("", SWAP_ANY);
653#endif
654
655#ifdef FEAT_VIMINFO
656 /*
Bram Moolenaard812df62008-11-09 12:46:09 +0000657 * Read in registers, history etc, but not marks, from the viminfo file.
658 * This is where v:oldfiles gets filled.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000659 */
660 if (*p_viminfo != NUL)
661 {
Bram Moolenaard812df62008-11-09 12:46:09 +0000662 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000663 TIME_MSG("reading viminfo");
664 }
665#endif
666
667#ifdef FEAT_QUICKFIX
668 /*
669 * "-q errorfile": Load the error file now.
670 * If the error file can't be read, exit before doing anything else.
671 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000672 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000673 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000674 if (params.use_ef != NULL)
675 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000676 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000677 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000678 {
679 out_char('\n');
680 mch_exit(3);
681 }
682 TIME_MSG("reading errorfile");
683 }
684#endif
685
686 /*
687 * Start putting things on the screen.
688 * Scroll screen down before drawing over it
689 * Clear screen now, so file message will not be cleared.
690 */
691 starting = NO_BUFFERS;
692 no_wait_return = FALSE;
693 if (!exmode_active)
694 msg_scroll = FALSE;
695
696#ifdef FEAT_GUI
697 /*
698 * This seems to be required to make callbacks to be called now, instead
699 * of after things have been put on the screen, which then may be deleted
700 * when getting a resize callback.
701 * For the Mac this handles putting files dropped on the Vim icon to
702 * global_alist.
703 */
704 if (gui.in_use)
705 {
706# ifdef FEAT_SUN_WORKSHOP
707 if (!usingSunWorkShop)
708# endif
709 gui_wait_for_chars(50L);
710 TIME_MSG("GUI delay");
711 }
712#endif
713
714#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
715 qnx_clip_init();
716#endif
717
718#ifdef FEAT_XCLIPBOARD
719 /* Start using the X clipboard, unless the GUI was started. */
720# ifdef FEAT_GUI
721 if (!gui.in_use)
722# endif
723 {
724 setup_term_clip();
725 TIME_MSG("setup clipboard");
726 }
727#endif
728
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000729#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000730 /* Prepare for being a Vim server. */
731 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000732#endif
733
734 /*
735 * If "-" argument given: Read file from stdin.
736 * Do this before starting Raw mode, because it may change things that the
737 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
738 * are the same terminal: "cat | vim -".
739 * Using autocommands here may cause trouble...
740 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000741 if (params.edit_type == EDIT_STDIN && !recoverymode)
742 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000743
744#if defined(UNIX) || defined(VMS)
745 /* When switching screens and something caused a message from a vimrc
746 * script, need to output an extra newline on exit. */
747 if ((did_emsg || msg_didout) && *T_TI != NUL)
748 newline_on_exit = TRUE;
749#endif
750
751 /*
752 * When done something that is not allowed or error message call
753 * wait_return. This must be done before starttermcap(), because it may
754 * switch to another screen. It must be done after settmode(TMODE_RAW),
755 * because we want to react on a single key stroke.
756 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000757 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000758 */
759 settmode(TMODE_RAW);
760 TIME_MSG("setting raw mode");
761
762 if (need_wait_return || msg_didany)
763 {
764 wait_return(TRUE);
765 TIME_MSG("waiting for return");
766 }
767
768 starttermcap(); /* start termcap if not done by wait_return() */
769 TIME_MSG("start termcap");
770
771#ifdef FEAT_MOUSE
772 setmouse(); /* may start using the mouse */
773#endif
774 if (scroll_region)
775 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000776 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000777
778 /*
779 * Don't clear the screen when starting in Ex mode, unless using the GUI.
780 */
781 if (exmode_active
782#ifdef FEAT_GUI
783 && !gui.in_use
784#endif
785 )
786 must_redraw = CLEAR;
787 else
788 {
789 screenclear(); /* clear screen */
790 TIME_MSG("clearing screen");
791 }
792
793#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000794 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000795 {
Bram Moolenaar40e6a712010-05-16 22:32:54 +0200796 (void)blowfish_self_test();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000797 (void)get_crypt_key(TRUE, TRUE);
798 TIME_MSG("getting crypt key");
799 }
800#endif
801
802 no_wait_return = TRUE;
803
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000804 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000805 * Create the requested number of windows and edit buffers in them.
806 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000807 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000808 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000809 TIME_MSG("opening buffers");
810
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000811#ifdef FEAT_EVAL
812 /* clear v:swapcommand */
813 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
814#endif
815
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000816 /* Ex starts at last line of the file */
817 if (exmode_active)
818 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
819
820#ifdef FEAT_AUTOCMD
821 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
822 TIME_MSG("BufEnter autocommands");
823#endif
824 setpcmark();
825
826#ifdef FEAT_QUICKFIX
827 /*
828 * When started with "-q errorfile" jump to first error now.
829 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000830 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000831 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000832 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000833 TIME_MSG("jump to first error");
834 }
835#endif
836
837#ifdef FEAT_WINDOWS
838 /*
839 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000840 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000841 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000842 edit_buffers(&params);
843#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000844
845#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000846 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000847 {
848 win_T *wp;
849
850 /* set options in each window for "vimdiff". */
851 for (wp = firstwin; wp != NULL; wp = wp->w_next)
852 diff_win_options(wp, TRUE);
853 }
854#endif
855
856 /*
857 * Shorten any of the filenames, but only when absolute.
858 */
859 shorten_fnames(FALSE);
860
861 /*
862 * Need to jump to the tag before executing the '-c command'.
863 * Makes "vim -c '/return' -t main" work.
864 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000865 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000866 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000867#if defined(HAS_SWAP_EXISTS_ACTION)
868 swap_exists_did_quit = FALSE;
869#endif
870
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000871 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000872 do_cmdline_cmd(IObuff);
873 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000874
875#if defined(HAS_SWAP_EXISTS_ACTION)
876 /* If the user doesn't want to edit the file then we quit here. */
877 if (swap_exists_did_quit)
878 getout(1);
879#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000880 }
881
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000882 /* Execute any "+", "-c" and "-S" arguments. */
883 if (params.n_commands > 0)
884 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000885
886 RedrawingDisabled = 0;
887 redraw_all_later(NOT_VALID);
888 no_wait_return = FALSE;
889 starting = 0;
890
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000891#ifdef FEAT_TERMRESPONSE
892 /* Requesting the termresponse is postponed until here, so that a "-c q"
893 * argument doesn't make it appear in the shell Vim was started from. */
894 may_req_termresponse();
895#endif
896
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000897 /* start in insert mode */
898 if (p_im)
899 need_start_insertmode = TRUE;
900
901#ifdef FEAT_AUTOCMD
902 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
903 TIME_MSG("VimEnter autocommands");
904#endif
905
906#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
907 /* When a startup script or session file setup for diff'ing and
908 * scrollbind, sync the scrollbind now. */
909 if (curwin->w_p_diff && curwin->w_p_scb)
910 {
911 update_topline();
912 check_scrollbind((linenr_T)0, 0L);
913 TIME_MSG("diff scrollbinding");
914 }
915#endif
916
917#if defined(WIN3264) && !defined(FEAT_GUI_W32)
918 mch_set_winsize_now(); /* Allow winsize changes from now on */
919#endif
920
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000921#if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
922 /* When tab pages were created, may need to update the tab pages line and
923 * scrollbars. This is skipped while creating them. */
924 if (first_tabpage->tp_next != NULL)
925 {
926 out_flush();
927 gui_init_which_components(NULL);
928 gui_update_scrollbars(TRUE);
929 }
930 need_mouse_correct = TRUE;
931#endif
932
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000933 /* If ":startinsert" command used, stuff a dummy command to be able to
934 * call normal_cmd(), which will then start Insert mode. */
935 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000936 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000937
938#ifdef FEAT_NETBEANS_INTG
939 if (usingNetbeans)
940 /* Tell the client that it can start sending commands. */
941 netbeans_startup_done();
942#endif
943
944 TIME_MSG("before starting main loop");
945
946 /*
947 * Call the main command loop. This never returns.
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000948 * For embedded MzScheme the main_loop will be called by Scheme
949 * for proper stack tracking
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000950 */
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000951#ifndef FEAT_MZSCHEME
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000952 main_loop(FALSE, FALSE);
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000953#else
954 mzscheme_main();
955#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000956
957 return 0;
958}
959#endif /* PROTO */
960
961/*
962 * Main loop: Execute Normal mode commands until exiting Vim.
963 * Also used to handle commands in the command-line window, until the window
964 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000965 * Also used to handle ":visual" command after ":global": execute Normal mode
966 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000967 */
968 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000969main_loop(cmdwin, noexmode)
970 int cmdwin; /* TRUE when working in the command-line window */
971 int noexmode; /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000972{
Bram Moolenaar225d32b2007-08-10 19:33:47 +0000973 oparg_T oa; /* operator arguments */
974 int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000975
976#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
977 /* Setup to catch a terminating error from the X server. Just ignore
978 * it, restore the state and continue. This might not always work
979 * properly, but at least we don't exit unexpectedly when the X server
980 * exists while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000981 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000982 {
983 State = NORMAL;
984# ifdef FEAT_VISUAL
985 VIsual_active = FALSE;
986# endif
987 got_int = TRUE;
988 need_wait_return = FALSE;
989 global_busy = FALSE;
990 exmode_active = 0;
991 skip_redraw = FALSE;
992 RedrawingDisabled = 0;
993 no_wait_return = 0;
994# ifdef FEAT_EVAL
995 emsg_skip = 0;
996# endif
997 emsg_off = 0;
998# ifdef FEAT_MOUSE
999 setmouse();
1000# endif
1001 settmode(TMODE_RAW);
1002 starttermcap();
1003 scroll_start();
1004 redraw_later_clear();
1005 }
1006#endif
1007
1008 clear_oparg(&oa);
1009 while (!cmdwin
1010#ifdef FEAT_CMDWIN
1011 || cmdwin_result == 0
1012#endif
1013 )
1014 {
1015 if (stuff_empty())
1016 {
1017 did_check_timestamps = FALSE;
1018 if (need_check_timestamps)
1019 check_timestamps(FALSE);
1020 if (need_wait_return) /* if wait_return still needed ... */
1021 wait_return(FALSE); /* ... call it now */
1022 if (need_start_insertmode && goto_im()
1023#ifdef FEAT_VISUAL
1024 && !VIsual_active
1025#endif
1026 )
1027 {
1028 need_start_insertmode = FALSE;
1029 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1030 /* skip the fileinfo message now, because it would be shown
1031 * after insert mode finishes! */
1032 need_fileinfo = FALSE;
1033 }
1034 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001035
1036 /* Reset "got_int" now that we got back to the main loop. Except when
1037 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1038 * the ":g" command.
1039 * For ":g/pat/vi" we reset "got_int" when used once. When used
1040 * a second time we go back to Ex mode and abort the ":g" command. */
1041 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001042 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001043 if (noexmode && global_busy && !exmode_active && previous_got_int)
1044 {
1045 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1046 * used and keep "got_int" set, so that it aborts ":g". */
1047 exmode_active = EXMODE_NORMAL;
1048 State = NORMAL;
1049 }
1050 else if (!global_busy || !exmode_active)
1051 {
1052 if (!quit_more)
1053 (void)vgetc(); /* flush all buffers */
1054 got_int = FALSE;
1055 }
1056 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001057 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001058 else
1059 previous_got_int = FALSE;
1060
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001061 if (!exmode_active)
1062 msg_scroll = FALSE;
1063 quit_more = FALSE;
1064
1065 /*
1066 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1067 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1068 * update cursor and redraw.
1069 */
1070 if (skip_redraw || exmode_active)
1071 skip_redraw = FALSE;
1072 else if (do_redraw || stuff_empty())
1073 {
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001074#ifdef FEAT_AUTOCMD
1075 /* Trigger CursorMoved if the cursor moved. */
1076 if (!finish_op && has_cursormoved()
1077 && !equalpos(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001078 {
1079 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1080 last_cursormoved = curwin->w_cursor;
1081 }
1082#endif
1083
Bram Moolenaar33aec762006-01-22 23:30:12 +00001084#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1085 /* Scroll-binding for diff mode may have been postponed until
1086 * here. Avoids doing it for every change. */
1087 if (diff_need_scrollbind)
1088 {
1089 check_scrollbind((linenr_T)0, 0L);
1090 diff_need_scrollbind = FALSE;
1091 }
1092#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001093#if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1094 /* Include a closed fold completely in the Visual area. */
1095 foldAdjustVisual();
1096#endif
1097#ifdef FEAT_FOLDING
1098 /*
1099 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1100 * contain the cursor.
1101 * When 'foldopen' is "all", open the fold(s) under the cursor.
1102 * This may mark the window for redrawing.
1103 */
1104 if (hasAnyFolding(curwin) && !char_avail())
1105 {
1106 foldCheckClose();
1107 if (fdo_flags & FDO_ALL)
1108 foldOpenCursor();
1109 }
1110#endif
1111
1112 /*
1113 * Before redrawing, make sure w_topline is correct, and w_leftcol
1114 * if lines don't wrap, and w_skipcol if lines wrap.
1115 */
1116 update_topline();
1117 validate_cursor();
1118
1119#ifdef FEAT_VISUAL
1120 if (VIsual_active)
1121 update_curbuf(INVERTED);/* update inverted part */
1122 else
1123#endif
1124 if (must_redraw)
1125 update_screen(0);
1126 else if (redraw_cmdline || clear_cmdline)
1127 showmode();
1128#ifdef FEAT_WINDOWS
1129 redraw_statuslines();
1130#endif
1131#ifdef FEAT_TITLE
1132 if (need_maketitle)
1133 maketitle();
1134#endif
1135 /* display message after redraw */
1136 if (keep_msg != NULL)
1137 {
1138 char_u *p;
1139
1140 /* msg_attr_keep() will set keep_msg to NULL, must free the
1141 * string here. */
1142 p = keep_msg;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001143 keep_msg = NULL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001144 msg_attr(p, keep_msg_attr);
1145 vim_free(p);
1146 }
1147 if (need_fileinfo) /* show file info after redraw */
1148 {
1149 fileinfo(FALSE, TRUE, FALSE);
1150 need_fileinfo = FALSE;
1151 }
1152
1153 emsg_on_display = FALSE; /* can delete error message now */
1154 did_emsg = FALSE;
1155 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001156 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001157 showruler(FALSE);
1158
1159 setcursor();
1160 cursor_on();
1161
1162 do_redraw = FALSE;
Bram Moolenaar3f269672009-11-03 11:11:11 +00001163
1164#ifdef STARTUPTIME
1165 /* Now that we have drawn the first screen all the startup stuff
1166 * has been done, close any file for startup messages. */
1167 if (time_fd != NULL)
1168 {
1169 TIME_MSG("first screen update");
1170 TIME_MSG("--- VIM STARTED ---");
1171 fclose(time_fd);
1172 time_fd = NULL;
1173 }
1174#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001175 }
1176#ifdef FEAT_GUI
1177 if (need_mouse_correct)
1178 gui_mouse_correct();
1179#endif
1180
1181 /*
1182 * Update w_curswant if w_set_curswant has been set.
1183 * Postponed until here to avoid computing w_virtcol too often.
1184 */
1185 update_curswant();
1186
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001187#ifdef FEAT_EVAL
1188 /*
1189 * May perform garbage collection when waiting for a character, but
1190 * only at the very toplevel. Otherwise we may be using a List or
1191 * Dict internally somewhere.
1192 * "may_garbage_collect" is reset in vgetc() which is invoked through
1193 * do_exmode() and normal_cmd().
1194 */
1195 may_garbage_collect = (!cmdwin && !noexmode);
1196#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001197 /*
1198 * If we're invoked as ex, do a round of ex commands.
1199 * Otherwise, get and execute a normal mode command.
1200 */
1201 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001202 {
1203 if (noexmode) /* End of ":global/path/visual" commands */
1204 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001205 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001206 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001207 else
1208 normal_cmd(&oa, TRUE);
1209 }
1210}
1211
1212
1213#if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1214/*
1215 * Exit, but leave behind swap files for modified buffers.
1216 */
1217 void
1218getout_preserve_modified(exitval)
1219 int exitval;
1220{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001221# if defined(SIGHUP) && defined(SIG_IGN)
1222 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1223 * makes Vim exit and then handling SIGHUP causes various reentrance
1224 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001225 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001226# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001227
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001228 ml_close_notmod(); /* close all not-modified buffers */
1229 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1230 ml_close_all(FALSE); /* close all memfiles, without deleting */
1231 getout(exitval); /* exit Vim properly */
1232}
1233#endif
1234
1235
1236/* Exit properly */
1237 void
1238getout(exitval)
1239 int exitval;
1240{
1241#ifdef FEAT_AUTOCMD
1242 buf_T *buf;
1243 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001244 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001245#endif
1246
1247 exiting = TRUE;
1248
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001249 /* When running in Ex mode an error causes us to exit with a non-zero exit
1250 * code. POSIX requires this, although it's not 100% clear from the
1251 * standard. */
1252 if (exmode_active)
1253 exitval += ex_exitval;
1254
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001255 /* Position the cursor on the last screen line, below all the text */
1256#ifdef FEAT_GUI
1257 if (!gui.in_use)
1258#endif
1259 windgoto((int)Rows - 1, 0);
1260
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001261#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1262 /* Optionally print hashtable efficiency. */
1263 hash_debug_results();
1264#endif
1265
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001266#ifdef FEAT_GUI
1267 msg_didany = FALSE;
1268#endif
1269
1270#ifdef FEAT_AUTOCMD
1271 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001272# if defined FEAT_WINDOWS
1273 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001274 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001275 next_tp = tp->tp_next;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001276 for (wp = (tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001277 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001278 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001279 buf = wp->w_buffer;
1280 if (buf->b_changedtick != -1)
1281 {
1282 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001283 FALSE, buf);
Bram Moolenaarf740b292006-02-16 22:11:02 +00001284 buf->b_changedtick = -1; /* note that we did it already */
1285 /* start all over, autocommands may mess up the lists */
1286 next_tp = first_tabpage;
1287 break;
1288 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001289 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001290 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001291# else
1292 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1293# endif
Bram Moolenaar33aec762006-01-22 23:30:12 +00001294
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001295 /* Trigger BufUnload for buffers that are loaded */
1296 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1297 if (buf->b_ml.ml_mfp != NULL)
1298 {
1299 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1300 FALSE, buf);
1301 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1302 break;
1303 }
1304 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1305#endif
1306
1307#ifdef FEAT_VIMINFO
1308 if (*p_viminfo != NUL)
1309 /* Write out the registers, history, marks etc, to the viminfo file */
1310 write_viminfo(NULL, FALSE);
1311#endif
1312
1313#ifdef FEAT_AUTOCMD
1314 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1315#endif
1316
Bram Moolenaar05159a02005-02-26 23:04:13 +00001317#ifdef FEAT_PROFILE
1318 profile_dump();
1319#endif
1320
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001321 if (did_emsg
1322#ifdef FEAT_GUI
1323 || (gui.in_use && msg_didany && p_verbose > 0)
1324#endif
1325 )
1326 {
1327 /* give the user a chance to read the (error) message */
1328 no_wait_return = FALSE;
1329 wait_return(FALSE);
1330 }
1331
1332#ifdef FEAT_AUTOCMD
1333 /* Position the cursor again, the autocommands may have moved it */
1334# ifdef FEAT_GUI
1335 if (!gui.in_use)
1336# endif
1337 windgoto((int)Rows - 1, 0);
1338#endif
1339
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001340#ifdef FEAT_MZSCHEME
1341 mzscheme_end();
1342#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001343#ifdef FEAT_TCL
1344 tcl_end();
1345#endif
1346#ifdef FEAT_RUBY
1347 ruby_end();
1348#endif
1349#ifdef FEAT_PYTHON
1350 python_end();
1351#endif
1352#ifdef FEAT_PERL
1353 perl_end();
1354#endif
1355#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1356 iconv_end();
1357#endif
1358#ifdef FEAT_NETBEANS_INTG
1359 netbeans_end();
1360#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001361#ifdef FEAT_CSCOPE
1362 cs_end();
1363#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001364#ifdef FEAT_EVAL
1365 if (garbage_collect_at_exit)
1366 garbage_collect();
1367#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001368
1369 mch_exit(exitval);
1370}
1371
1372/*
1373 * Get a (optional) count for a Vim argument.
1374 */
1375 static int
1376get_number_arg(p, idx, def)
1377 char_u *p; /* pointer to argument */
1378 int *idx; /* index in argument, is incremented */
1379 int def; /* default value */
1380{
1381 if (vim_isdigit(p[*idx]))
1382 {
1383 def = atoi((char *)&(p[*idx]));
1384 while (vim_isdigit(p[*idx]))
1385 *idx = *idx + 1;
1386 }
1387 return def;
1388}
1389
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001390#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1391/*
1392 * Setup to use the current locale (for ctype() and many other things).
1393 */
1394 static void
1395init_locale()
1396{
1397 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001398
Bram Moolenaarc6af8122010-05-21 12:04:55 +02001399# ifdef FEAT_GUI_GTK
1400 /* Tell Gtk not to change our locale settings. */
1401 gtk_disable_setlocale();
1402# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001403# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1404 /* Make sure strtod() uses a decimal point, not a comma. */
1405 setlocale(LC_NUMERIC, "C");
1406# endif
1407
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001408# ifdef WIN32
1409 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1410 * text while it's expecting text in the current locale. This call avoids
1411 * that. */
1412 setlocale(LC_CTYPE, "C");
1413# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001414
1415# ifdef FEAT_GETTEXT
1416 {
1417 int mustfree = FALSE;
1418 char_u *p;
1419
1420# ifdef DYNAMIC_GETTEXT
1421 /* Initialize the gettext library */
1422 dyn_libintl_init(NULL);
1423# endif
1424 /* expand_env() doesn't work yet, because chartab[] is not initialized
1425 * yet, call vim_getenv() directly */
1426 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1427 if (p != NULL && *p != NUL)
1428 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001429 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001430 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1431 }
1432 if (mustfree)
1433 vim_free(p);
1434 textdomain(VIMPACKAGE);
1435 }
1436# endif
1437}
1438#endif
1439
1440/*
1441 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1442 * If the executable name starts with "r" we disable shell commands.
1443 * If the next character is "e" we run in Easy mode.
1444 * If the next character is "g" we run the GUI version.
1445 * If the next characters are "view" we start in readonly mode.
1446 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1447 * If the next characters are "ex" we start in Ex mode. If it's followed
1448 * by "im" use improved Ex mode.
1449 */
1450 static void
1451parse_command_name(parmp)
1452 mparm_T *parmp;
1453{
1454 char_u *initstr;
1455
1456 initstr = gettail((char_u *)parmp->argv[0]);
1457
1458#ifdef MACOS_X_UNIX
1459 /* An issue has been seen when launching Vim in such a way that
1460 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1461 * executable or a symbolic link of it. Until this issue is resolved
1462 * we prohibit the GUI from being used.
1463 */
1464 if (STRCMP(initstr, parmp->argv[0]) == 0)
1465 disallow_gui = TRUE;
1466
1467 /* TODO: On MacOS X default to gui if argv[0] ends in:
Bram Moolenaar27dc1952006-03-15 23:06:44 +00001468 * /Vim.app/Contents/MacOS/Vim */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001469#endif
1470
1471#ifdef FEAT_EVAL
1472 set_vim_var_string(VV_PROGNAME, initstr, -1);
1473#endif
1474
1475 if (TOLOWER_ASC(initstr[0]) == 'r')
1476 {
1477 restricted = TRUE;
1478 ++initstr;
1479 }
1480
Bram Moolenaarad249fb2010-05-07 16:35:04 +02001481 /* Use evim mode for "evim" and "egvim", not for "editor". */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001482 if (TOLOWER_ASC(initstr[0]) == 'e'
1483 && (TOLOWER_ASC(initstr[1]) == 'v'
1484 || TOLOWER_ASC(initstr[1]) == 'g'))
1485 {
1486#ifdef FEAT_GUI
1487 gui.starting = TRUE;
1488#endif
1489 parmp->evim_mode = TRUE;
1490 ++initstr;
1491 }
1492
Bram Moolenaar806875d2008-09-18 18:57:10 +00001493 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1494 if (TOLOWER_ASC(initstr[0]) == 'g')
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001495 {
1496 main_start_gui();
1497#ifdef FEAT_GUI
1498 ++initstr;
1499#endif
1500 }
1501
1502 if (STRNICMP(initstr, "view", 4) == 0)
1503 {
1504 readonlymode = TRUE;
1505 curbuf->b_p_ro = TRUE;
1506 p_uc = 10000; /* don't update very often */
1507 initstr += 4;
1508 }
1509 else if (STRNICMP(initstr, "vim", 3) == 0)
1510 initstr += 3;
1511
1512 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1513 if (STRICMP(initstr, "diff") == 0)
1514 {
1515#ifdef FEAT_DIFF
1516 parmp->diff_mode = TRUE;
1517#else
1518 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1519 mch_errmsg("\n");
1520 mch_exit(2);
1521#endif
1522 }
1523
1524 if (STRNICMP(initstr, "ex", 2) == 0)
1525 {
1526 if (STRNICMP(initstr + 2, "im", 2) == 0)
1527 exmode_active = EXMODE_VIM;
1528 else
1529 exmode_active = EXMODE_NORMAL;
1530 change_compatible(TRUE); /* set 'compatible' */
1531 }
1532}
1533
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001534/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001535 * Get the name of the display, before gui_prepare() removes it from
1536 * argv[]. Used for the xterm-clipboard display.
1537 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001538 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001539 */
Bram Moolenaar58d98232005-07-23 22:25:46 +00001540 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001541early_arg_scan(parmp)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001542 mparm_T *parmp UNUSED;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001543{
Bram Moolenaar03005972008-11-20 13:12:36 +00001544#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1545 || !defined(FEAT_NETBEANS_INTG)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001546 int argc = parmp->argc;
1547 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001548 int i;
1549
1550 for (i = 1; i < argc; i++)
1551 {
1552 if (STRCMP(argv[i], "--") == 0)
1553 break;
1554# ifdef FEAT_XCLIPBOARD
1555 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001556# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001557 || STRICMP(argv[i], "--display") == 0
1558# endif
1559 )
1560 {
1561 if (i == argc - 1)
1562 mainerr_arg_missing((char_u *)argv[i]);
1563 xterm_display = argv[++i];
1564 }
1565# endif
1566# ifdef FEAT_CLIENTSERVER
1567 else if (STRICMP(argv[i], "--servername") == 0)
1568 {
1569 if (i == argc - 1)
1570 mainerr_arg_missing((char_u *)argv[i]);
1571 parmp->serverName_arg = (char_u *)argv[++i];
1572 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001573 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001574 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001575 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001576 {
1577 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001578# ifdef FEAT_GUI
1579 if (strstr(argv[i], "-wait") != 0)
1580 /* don't fork() when starting the GUI to edit files ourself */
1581 gui.dofork = FALSE;
1582# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001583 }
1584# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001585
1586# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1587# ifdef FEAT_GUI_W32
1588 else if (STRICMP(argv[i], "--windowid") == 0)
1589# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001590 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001591# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001592 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001593 long_u id;
1594 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001595
1596 if (i == argc - 1)
1597 mainerr_arg_missing((char_u *)argv[i]);
1598 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001599 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001600 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001601 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001602 if (count != 1)
1603 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1604 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001605# ifdef FEAT_GUI_W32
1606 win_socket_id = id;
1607# else
1608 gtk_socket_id = id;
1609# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001610 i++;
1611 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001612# endif
1613# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001614 else if (STRICMP(argv[i], "--echo-wid") == 0)
1615 echo_wid_arg = TRUE;
1616# endif
Bram Moolenaar03005972008-11-20 13:12:36 +00001617# ifndef FEAT_NETBEANS_INTG
1618 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
1619 {
1620 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1621 mch_exit(2);
1622 }
1623# endif
1624
Bram Moolenaar58d98232005-07-23 22:25:46 +00001625 }
1626#endif
1627}
1628
1629/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001630 * Scan the command line arguments.
1631 */
1632 static void
1633command_line_scan(parmp)
1634 mparm_T *parmp;
1635{
1636 int argc = parmp->argc;
1637 char **argv = parmp->argv;
1638 int argv_idx; /* index in argv[n][] */
1639 int had_minmin = FALSE; /* found "--" argument */
1640 int want_argument; /* option argument with argument */
1641 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001642 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001643 long n;
1644
1645 --argc;
1646 ++argv;
1647 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1648 while (argc > 0)
1649 {
1650 /*
1651 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1652 */
1653 if (argv[0][0] == '+' && !had_minmin)
1654 {
1655 if (parmp->n_commands >= MAX_ARG_CMDS)
1656 mainerr(ME_EXTRA_CMD, NULL);
1657 argv_idx = -1; /* skip to next argument */
1658 if (argv[0][1] == NUL)
1659 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1660 else
1661 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1662 }
1663
1664 /*
1665 * Optional argument.
1666 */
1667 else if (argv[0][0] == '-' && !had_minmin)
1668 {
1669 want_argument = FALSE;
1670 c = argv[0][argv_idx++];
1671#ifdef VMS
1672 /*
1673 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1674 * and "-/X" as "-X".
1675 */
1676 if (c == '/')
1677 {
1678 c = argv[0][argv_idx++];
1679 c = TOUPPER_ASC(c);
1680 }
1681 else
1682 c = TOLOWER_ASC(c);
1683#endif
1684 switch (c)
1685 {
1686 case NUL: /* "vim -" read from stdin */
1687 /* "ex -" silent mode */
1688 if (exmode_active)
1689 silent_mode = TRUE;
1690 else
1691 {
1692 if (parmp->edit_type != EDIT_NONE)
1693 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1694 parmp->edit_type = EDIT_STDIN;
1695 read_cmd_fd = 2; /* read from stderr instead of stdin */
1696 }
1697 argv_idx = -1; /* skip to next argument */
1698 break;
1699
1700 case '-': /* "--" don't take any more option arguments */
1701 /* "--help" give help message */
1702 /* "--version" give version message */
1703 /* "--literal" take files literally */
1704 /* "--nofork" don't fork */
1705 /* "--noplugin[s]" skip plugins */
1706 /* "--cmd <cmd>" execute cmd before vimrc */
1707 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1708 usage();
1709 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1710 {
1711 Columns = 80; /* need to init Columns */
1712 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1713 list_version();
1714 msg_putchar('\n');
1715 msg_didout = FALSE;
1716 mch_exit(0);
1717 }
1718 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1719 {
1720#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1721 parmp->literal = TRUE;
1722#endif
1723 }
1724 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1725 {
1726#ifdef FEAT_GUI
1727 gui.dofork = FALSE; /* don't fork() when starting GUI */
1728#endif
1729 }
1730 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1731 p_lpl = FALSE;
1732 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1733 {
1734 want_argument = TRUE;
1735 argv_idx += 3;
1736 }
Bram Moolenaaref94eec2009-11-11 13:22:11 +00001737 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1738 {
1739 want_argument = TRUE;
1740 argv_idx += 11;
1741 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001742#ifdef FEAT_CLIENTSERVER
1743 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1744 ; /* already processed -- no arg */
1745 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1746 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1747 {
1748 /* already processed -- snatch the following arg */
1749 if (argc > 1)
1750 {
1751 --argc;
1752 ++argv;
1753 }
1754 }
1755#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001756#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1757# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001758 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001759# else
1760 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1761# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001762 {
1763 /* already processed -- snatch the following arg */
1764 if (argc > 1)
1765 {
1766 --argc;
1767 ++argv;
1768 }
1769 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001770#endif
1771#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001772 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1773 {
1774 /* already processed, skip */
1775 }
1776#endif
1777 else
1778 {
1779 if (argv[0][argv_idx])
1780 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1781 had_minmin = TRUE;
1782 }
1783 if (!want_argument)
1784 argv_idx = -1; /* skip to next argument */
1785 break;
1786
1787 case 'A': /* "-A" start in Arabic mode */
1788#ifdef FEAT_ARABIC
1789 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1790#else
1791 mch_errmsg(_(e_noarabic));
1792 mch_exit(2);
1793#endif
1794 break;
1795
1796 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001797 /* Needs to be effective before expanding file names, because
1798 * for Win32 this makes us edit a shortcut file itself,
1799 * instead of the file it links to. */
1800 set_options_bin(curbuf->b_p_bin, 1, 0);
1801 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001802 break;
1803
1804 case 'C': /* "-C" Compatible */
1805 change_compatible(TRUE);
1806 break;
1807
1808 case 'e': /* "-e" Ex mode */
1809 exmode_active = EXMODE_NORMAL;
1810 break;
1811
1812 case 'E': /* "-E" Improved Ex mode */
1813 exmode_active = EXMODE_VIM;
1814 break;
1815
1816 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1817 window directly, not with newcli */
1818#ifdef FEAT_GUI
1819 gui.dofork = FALSE; /* don't fork() when starting GUI */
1820#endif
1821 break;
1822
1823 case 'g': /* "-g" start GUI */
1824 main_start_gui();
1825 break;
1826
1827 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1828#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001829 p_fkmap = TRUE;
1830 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001831#else
1832 mch_errmsg(_(e_nofarsi));
1833 mch_exit(2);
1834#endif
1835 break;
1836
1837 case 'h': /* "-h" give help message */
1838#ifdef FEAT_GUI_GNOME
1839 /* Tell usage() to exit for "gvim". */
1840 gui.starting = FALSE;
1841#endif
1842 usage();
1843 break;
1844
1845 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1846#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001847 p_hkmap = TRUE;
1848 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001849#else
1850 mch_errmsg(_(e_nohebrew));
1851 mch_exit(2);
1852#endif
1853 break;
1854
1855 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1856#ifdef FEAT_LISP
1857 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1858 p_sm = TRUE;
1859#endif
1860 break;
1861
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001862 case 'M': /* "-M" no changes or writing of files */
1863 reset_modifiable();
1864 /* FALLTHROUGH */
1865
1866 case 'm': /* "-m" no writing of files */
1867 p_write = FALSE;
1868 break;
1869
1870 case 'y': /* "-y" easy mode */
1871#ifdef FEAT_GUI
1872 gui.starting = TRUE; /* start GUI a bit later */
1873#endif
1874 parmp->evim_mode = TRUE;
1875 break;
1876
1877 case 'N': /* "-N" Nocompatible */
1878 change_compatible(FALSE);
1879 break;
1880
1881 case 'n': /* "-n" no swap file */
1882 parmp->no_swap_file = TRUE;
1883 break;
1884
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001885 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00001886#ifdef TARGET_API_MAC_OSX
1887 /* For some reason on MacOS X, an argument like:
1888 -psn_0_10223617 is passed in when invoke from Finder
1889 or with the 'open' command */
1890 if (argv[0][argv_idx] == 's')
1891 {
1892 argv_idx = -1; /* bypass full -psn */
1893 main_start_gui();
1894 break;
1895 }
1896#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001897#ifdef FEAT_WINDOWS
1898 /* default is 0: open window for each file */
1899 parmp->window_count = get_number_arg((char_u *)argv[0],
1900 &argv_idx, 0);
1901 parmp->window_layout = WIN_TABS;
1902#endif
1903 break;
1904
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001905 case 'o': /* "-o[N]" open N horizontal split windows */
1906#ifdef FEAT_WINDOWS
1907 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001908 parmp->window_count = get_number_arg((char_u *)argv[0],
1909 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001910 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001911#endif
1912 break;
1913
1914 case 'O': /* "-O[N]" open N vertical split windows */
1915#if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1916 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001917 parmp->window_count = get_number_arg((char_u *)argv[0],
1918 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001919 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001920#endif
1921 break;
1922
1923#ifdef FEAT_QUICKFIX
1924 case 'q': /* "-q" QuickFix mode */
1925 if (parmp->edit_type != EDIT_NONE)
1926 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1927 parmp->edit_type = EDIT_QF;
1928 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1929 {
1930 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1931 argv_idx = -1;
1932 }
1933 else if (argc > 1) /* "-q {errorfile}" */
1934 want_argument = TRUE;
1935 break;
1936#endif
1937
1938 case 'R': /* "-R" readonly mode */
1939 readonlymode = TRUE;
1940 curbuf->b_p_ro = TRUE;
1941 p_uc = 10000; /* don't update very often */
1942 break;
1943
1944 case 'r': /* "-r" recovery mode */
1945 case 'L': /* "-L" recovery mode */
1946 recoverymode = 1;
1947 break;
1948
1949 case 's':
1950 if (exmode_active) /* "-s" silent (batch) mode */
1951 silent_mode = TRUE;
1952 else /* "-s {scriptin}" read from script file */
1953 want_argument = TRUE;
1954 break;
1955
1956 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1957 if (parmp->edit_type != EDIT_NONE)
1958 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1959 parmp->edit_type = EDIT_TAG;
1960 if (argv[0][argv_idx]) /* "-t{tag}" */
1961 {
1962 parmp->tagname = (char_u *)argv[0] + argv_idx;
1963 argv_idx = -1;
1964 }
1965 else /* "-t {tag}" */
1966 want_argument = TRUE;
1967 break;
1968
1969#ifdef FEAT_EVAL
1970 case 'D': /* "-D" Debugging */
1971 parmp->use_debug_break_level = 9999;
1972 break;
1973#endif
1974#ifdef FEAT_DIFF
1975 case 'd': /* "-d" 'diff' */
1976# ifdef AMIGA
1977 /* check for "-dev {device}" */
1978 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1979 want_argument = TRUE;
1980 else
1981# endif
1982 parmp->diff_mode = TRUE;
1983 break;
1984#endif
1985 case 'V': /* "-V{N}" Verbose level */
1986 /* default is 10: a little bit verbose */
1987 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1988 if (argv[0][argv_idx] != NUL)
1989 {
1990 set_option_value((char_u *)"verbosefile", 0L,
1991 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001992 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001993 }
1994 break;
1995
1996 case 'v': /* "-v" Vi-mode (as if called "vi") */
1997 exmode_active = 0;
1998#ifdef FEAT_GUI
1999 gui.starting = FALSE; /* don't start GUI */
2000#endif
2001 break;
2002
2003 case 'w': /* "-w{number}" set window height */
2004 /* "-w {scriptout}" write to script */
2005 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2006 {
2007 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2008 set_option_value((char_u *)"window", n, NULL, 0);
2009 break;
2010 }
2011 want_argument = TRUE;
2012 break;
2013
2014#ifdef FEAT_CRYPT
2015 case 'x': /* "-x" encrypted reading/writing of files */
2016 parmp->ask_for_key = TRUE;
2017 break;
2018#endif
2019
2020 case 'X': /* "-X" don't connect to X server */
2021#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2022 x_no_connect = TRUE;
2023#endif
2024 break;
2025
2026 case 'Z': /* "-Z" restricted mode */
2027 restricted = TRUE;
2028 break;
2029
2030 case 'c': /* "-c{command}" or "-c {command}" execute
2031 command */
2032 if (argv[0][argv_idx] != NUL)
2033 {
2034 if (parmp->n_commands >= MAX_ARG_CMDS)
2035 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002036 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2037 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002038 argv_idx = -1;
2039 break;
2040 }
2041 /*FALLTHROUGH*/
2042 case 'S': /* "-S {file}" execute Vim script */
2043 case 'i': /* "-i {viminfo}" use for viminfo */
2044#ifndef FEAT_DIFF
2045 case 'd': /* "-d {device}" device (for Amiga) */
2046#endif
2047 case 'T': /* "-T {terminal}" terminal name */
2048 case 'u': /* "-u {vimrc}" vim inits file */
2049 case 'U': /* "-U {gvimrc}" gvim inits file */
2050 case 'W': /* "-W {scriptout}" overwrite */
2051#ifdef FEAT_GUI_W32
2052 case 'P': /* "-P {parent title}" MDI parent */
2053#endif
2054 want_argument = TRUE;
2055 break;
2056
2057 default:
2058 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2059 }
2060
2061 /*
2062 * Handle option arguments with argument.
2063 */
2064 if (want_argument)
2065 {
2066 /*
2067 * Check for garbage immediately after the option letter.
2068 */
2069 if (argv[0][argv_idx] != NUL)
2070 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2071
2072 --argc;
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002073 if (argc < 1 && c != 'S') /* -S has an optional argument */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002074 mainerr_arg_missing((char_u *)argv[0]);
2075 ++argv;
2076 argv_idx = -1;
2077
2078 switch (c)
2079 {
2080 case 'c': /* "-c {command}" execute command */
2081 case 'S': /* "-S {file}" execute Vim script */
2082 if (parmp->n_commands >= MAX_ARG_CMDS)
2083 mainerr(ME_EXTRA_CMD, NULL);
2084 if (c == 'S')
2085 {
2086 char *a;
2087
2088 if (argc < 1)
2089 /* "-S" without argument: use default session file
2090 * name. */
2091 a = SESSION_FILE;
2092 else if (argv[0][0] == '-')
2093 {
2094 /* "-S" followed by another option: use default
2095 * session file name. */
2096 a = SESSION_FILE;
2097 ++argc;
2098 --argv;
2099 }
2100 else
2101 a = argv[0];
2102 p = alloc((unsigned)(STRLEN(a) + 4));
2103 if (p == NULL)
2104 mch_exit(2);
2105 sprintf((char *)p, "so %s", a);
2106 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2107 parmp->commands[parmp->n_commands++] = p;
2108 }
2109 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002110 parmp->commands[parmp->n_commands++] =
2111 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002112 break;
2113
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002114 case '-':
2115 if (argv[-1][2] == 'c')
2116 {
2117 /* "--cmd {command}" execute command */
2118 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2119 mainerr(ME_EXTRA_CMD, NULL);
2120 parmp->pre_commands[parmp->n_pre_commands++] =
Bram Moolenaar231334e2005-07-25 20:46:57 +00002121 (char_u *)argv[0];
Bram Moolenaaref94eec2009-11-11 13:22:11 +00002122 }
2123 /* "--startuptime <file>" already handled */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002124 break;
2125
2126 /* case 'd': -d {device} is handled in mch_check_win() for the
2127 * Amiga */
2128
2129#ifdef FEAT_QUICKFIX
2130 case 'q': /* "-q {errorfile}" QuickFix mode */
2131 parmp->use_ef = (char_u *)argv[0];
2132 break;
2133#endif
2134
2135 case 'i': /* "-i {viminfo}" use for viminfo */
2136 use_viminfo = (char_u *)argv[0];
2137 break;
2138
2139 case 's': /* "-s {scriptin}" read from script file */
2140 if (scriptin[0] != NULL)
2141 {
2142scripterror:
2143 mch_errmsg(_("Attempt to open script file again: \""));
2144 mch_errmsg(argv[-1]);
2145 mch_errmsg(" ");
2146 mch_errmsg(argv[0]);
2147 mch_errmsg("\"\n");
2148 mch_exit(2);
2149 }
2150 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2151 {
2152 mch_errmsg(_("Cannot open for reading: \""));
2153 mch_errmsg(argv[0]);
2154 mch_errmsg("\"\n");
2155 mch_exit(2);
2156 }
2157 if (save_typebuf() == FAIL)
2158 mch_exit(2); /* out of memory */
2159 break;
2160
2161 case 't': /* "-t {tag}" */
2162 parmp->tagname = (char_u *)argv[0];
2163 break;
2164
2165 case 'T': /* "-T {terminal}" terminal name */
2166 /*
2167 * The -T term argument is always available and when
2168 * HAVE_TERMLIB is supported it overrides the environment
2169 * variable TERM.
2170 */
2171#ifdef FEAT_GUI
2172 if (term_is_gui((char_u *)argv[0]))
2173 gui.starting = TRUE; /* start GUI a bit later */
2174 else
2175#endif
2176 parmp->term = (char_u *)argv[0];
2177 break;
2178
2179 case 'u': /* "-u {vimrc}" vim inits file */
2180 parmp->use_vimrc = (char_u *)argv[0];
2181 break;
2182
2183 case 'U': /* "-U {gvimrc}" gvim inits file */
2184#ifdef FEAT_GUI
2185 use_gvimrc = (char_u *)argv[0];
2186#endif
2187 break;
2188
2189 case 'w': /* "-w {nr}" 'window' value */
2190 /* "-w {scriptout}" append to script file */
2191 if (vim_isdigit(*((char_u *)argv[0])))
2192 {
2193 argv_idx = 0;
2194 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2195 set_option_value((char_u *)"window", n, NULL, 0);
2196 argv_idx = -1;
2197 break;
2198 }
2199 /*FALLTHROUGH*/
2200 case 'W': /* "-W {scriptout}" overwrite script file */
2201 if (scriptout != NULL)
2202 goto scripterror;
2203 if ((scriptout = mch_fopen(argv[0],
2204 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2205 {
2206 mch_errmsg(_("Cannot open for script output: \""));
2207 mch_errmsg(argv[0]);
2208 mch_errmsg("\"\n");
2209 mch_exit(2);
2210 }
2211 break;
2212
2213#ifdef FEAT_GUI_W32
2214 case 'P': /* "-P {parent title}" MDI parent */
2215 gui_mch_set_parent(argv[0]);
2216 break;
2217#endif
2218 }
2219 }
2220 }
2221
2222 /*
2223 * File name argument.
2224 */
2225 else
2226 {
2227 argv_idx = -1; /* skip to next argument */
2228
2229 /* Check for only one type of editing. */
2230 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2231 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2232 parmp->edit_type = EDIT_FILE;
2233
2234#ifdef MSWIN
2235 /* Remember if the argument was a full path before changing
2236 * slashes to backslashes. */
2237 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2238 parmp->full_path = TRUE;
2239#endif
2240
2241 /* Add the file to the global argument list. */
2242 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2243 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2244 mch_exit(2);
2245#ifdef FEAT_DIFF
2246 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2247 && !mch_isdir(alist_name(&GARGLIST[0])))
2248 {
2249 char_u *r;
2250
2251 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2252 if (r != NULL)
2253 {
2254 vim_free(p);
2255 p = r;
2256 }
2257 }
2258#endif
2259#if defined(__CYGWIN32__) && !defined(WIN32)
2260 /*
2261 * If vim is invoked by non-Cygwin tools, convert away any
2262 * DOS paths, so things like .swp files are created correctly.
2263 * Look for evidence of non-Cygwin paths before we bother.
2264 * This is only for when using the Unix files.
2265 */
Bram Moolenaarad249fb2010-05-07 16:35:04 +02002266 if (strpbrk(p, "\\:") != NULL && !path_with_url(p))
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002267 {
2268 char posix_path[PATH_MAX];
2269
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002270# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2271 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2272# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002273 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002274# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002275 vim_free(p);
2276 p = vim_strsave(posix_path);
2277 if (p == NULL)
2278 mch_exit(2);
2279 }
2280#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002281
2282#ifdef USE_FNAME_CASE
2283 /* Make the case of the file name match the actual file. */
2284 fname_case(p, 0);
2285#endif
2286
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002287 alist_add(&global_alist, p,
2288#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
Bram Moolenaar231334e2005-07-25 20:46:57 +00002289 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002290#else
2291 2 /* add buffer number now and use curbuf */
2292#endif
2293 );
2294
2295#if defined(FEAT_MBYTE) && defined(WIN32)
2296 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002297 /* Remember this argument has been added to the argument list.
2298 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002299 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002300# ifdef FEAT_DIFF
2301 parmp->diff_mode
2302# else
2303 FALSE
2304# endif
2305 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002306 }
2307#endif
2308 }
2309
2310 /*
2311 * If there are no more letters after the current "-", go to next
2312 * argument. argv_idx is set to -1 when the current argument is to be
2313 * skipped.
2314 */
2315 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2316 {
2317 --argc;
2318 ++argv;
2319 argv_idx = 1;
2320 }
2321 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002322
2323#ifdef FEAT_EVAL
2324 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2325 * one. */
2326 if (parmp->n_commands > 0)
2327 {
2328 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2329 if (p != NULL)
2330 {
2331 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2332 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2333 vim_free(p);
2334 }
2335 }
2336#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002337}
2338
2339/*
2340 * Print a warning if stdout is not a terminal.
2341 * When starting in Ex mode and commands come from a file, set Silent mode.
2342 */
2343 static void
2344check_tty(parmp)
2345 mparm_T *parmp;
2346{
2347 int input_isatty; /* is active input a terminal? */
2348
2349 input_isatty = mch_input_isatty();
2350 if (exmode_active)
2351 {
2352 if (!input_isatty)
2353 silent_mode = TRUE;
2354 }
2355 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2356#ifdef FEAT_GUI
2357 /* don't want the delay when started from the desktop */
2358 && !gui.starting
2359#endif
2360 )
2361 {
2362#ifdef NBDEBUG
2363 /*
2364 * This shouldn't be necessary. But if I run netbeans with the log
2365 * output coming to the console and XOpenDisplay fails, I get vim
2366 * trying to start with input/output to my console tty. This fills my
2367 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002368 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002369 */
2370 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2371 {
2372 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2373 exit(1);
2374 }
2375#endif
2376 if (!parmp->stdout_isatty)
2377 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2378 if (!input_isatty)
2379 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2380 out_flush();
2381 if (scriptin[0] == NULL)
2382 ui_delay(2000L, TRUE);
2383 TIME_MSG("Warning delay");
2384 }
2385}
2386
2387/*
2388 * Read text from stdin.
2389 */
2390 static void
2391read_stdin()
2392{
2393 int i;
2394
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002395#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002396 /* When getting the ATTENTION prompt here, use a dialog */
2397 swap_exists_action = SEA_DIALOG;
2398#endif
2399 no_wait_return = TRUE;
2400 i = msg_didany;
2401 set_buflisted(TRUE);
2402 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2403 no_wait_return = FALSE;
2404 msg_didany = i;
2405 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002406#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002407 check_swap_exists_action();
2408#endif
2409#if !(defined(AMIGA) || defined(MACOS))
2410 /*
2411 * Close stdin and dup it from stderr. Required for GPM to work
2412 * properly, and for running external commands.
2413 * Is there any other system that cannot do this?
2414 */
2415 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002416 ignored = dup(2);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002417#endif
2418}
2419
2420/*
2421 * Create the requested number of windows and edit buffers in them.
2422 * Also does recovery if "recoverymode" set.
2423 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002424 static void
2425create_windows(parmp)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002426 mparm_T *parmp UNUSED;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002427{
2428#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002429 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002430 int done = 0;
2431
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002432 /*
2433 * Create the number of windows that was requested.
2434 */
2435 if (parmp->window_count == -1) /* was not set */
2436 parmp->window_count = 1;
2437 if (parmp->window_count == 0)
2438 parmp->window_count = GARGCOUNT;
2439 if (parmp->window_count > 1)
2440 {
2441 /* Don't change the windows if there was a command in .vimrc that
2442 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002443 if (parmp->window_layout == 0)
2444 parmp->window_layout = WIN_HOR;
2445 if (parmp->window_layout == WIN_TABS)
2446 {
2447 parmp->window_count = make_tabpages(parmp->window_count);
2448 TIME_MSG("making tab pages");
2449 }
2450 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002451 {
2452 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002453 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002454 TIME_MSG("making windows");
2455 }
2456 else
2457 parmp->window_count = win_count();
2458 }
2459 else
2460 parmp->window_count = 1;
2461#endif
2462
2463 if (recoverymode) /* do recover */
2464 {
2465 msg_scroll = TRUE; /* scroll message up */
2466 ml_recover();
2467 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2468 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002469 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002470 }
2471 else
2472 {
2473 /*
2474 * Open a buffer for windows that don't have one yet.
2475 * Commands in the .vimrc might have loaded a file or split the window.
2476 * Watch out for autocommands that delete a window.
2477 */
2478#ifdef FEAT_AUTOCMD
2479 /*
2480 * Don't execute Win/Buf Enter/Leave autocommands here
2481 */
2482 ++autocmd_no_enter;
2483 ++autocmd_no_leave;
2484#endif
2485#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002486 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002487 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002488 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002489 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002490 {
2491 if (parmp->window_layout == WIN_TABS)
2492 goto_tabpage(1);
2493 else
2494 curwin = firstwin;
2495 }
2496 else if (parmp->window_layout == WIN_TABS)
2497 {
2498 if (curtab->tp_next == NULL)
2499 break;
2500 goto_tabpage(0);
2501 }
2502 else
2503 {
2504 if (curwin->w_next == NULL)
2505 break;
2506 curwin = curwin->w_next;
2507 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002508 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002509#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002510 curbuf = curwin->w_buffer;
2511 if (curbuf->b_ml.ml_mfp == NULL)
2512 {
2513#ifdef FEAT_FOLDING
2514 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2515 if (p_fdls >= 0)
2516 curwin->w_p_fdl = p_fdls;
2517#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002518#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002519 /* When getting the ATTENTION prompt here, use a dialog */
2520 swap_exists_action = SEA_DIALOG;
2521#endif
2522 set_buflisted(TRUE);
2523 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2524
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002525#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002526 if (swap_exists_action == SEA_QUIT)
2527 {
2528 if (got_int || only_one_window())
2529 {
2530 /* abort selected or quit and only one window */
2531 did_emsg = FALSE; /* avoid hit-enter prompt */
2532 getout(1);
2533 }
2534 /* We can't close the window, it would disturb what
2535 * happens next. Clear the file name and set the arg
2536 * index to -1 to delete it later. */
2537 setfname(curbuf, NULL, NULL, FALSE);
2538 curwin->w_arg_idx = -1;
2539 swap_exists_action = SEA_NONE;
2540 }
2541 else
2542 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002543#endif
2544#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002545 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002546#endif
2547 }
2548#ifdef FEAT_WINDOWS
2549 ui_breakcheck();
2550 if (got_int)
2551 {
2552 (void)vgetc(); /* only break the file loading, not the rest */
2553 break;
2554 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002555 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002556#endif
2557#ifdef FEAT_WINDOWS
2558 if (parmp->window_layout == WIN_TABS)
2559 goto_tabpage(1);
2560 else
2561 curwin = firstwin;
2562 curbuf = curwin->w_buffer;
2563#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002564#ifdef FEAT_AUTOCMD
2565 --autocmd_no_enter;
2566 --autocmd_no_leave;
2567#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002568 }
2569}
2570
2571#ifdef FEAT_WINDOWS
2572 /*
2573 * If opened more than one window, start editing files in the other
2574 * windows. make_windows() has already opened the windows.
2575 */
2576 static void
2577edit_buffers(parmp)
2578 mparm_T *parmp;
2579{
2580 int arg_idx; /* index in argument list */
2581 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002582 int advance = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002583
2584# ifdef FEAT_AUTOCMD
2585 /*
2586 * Don't execute Win/Buf Enter/Leave autocommands here
2587 */
2588 ++autocmd_no_enter;
2589 ++autocmd_no_leave;
2590# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002591
2592 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2593 if (curwin->w_arg_idx == -1)
2594 {
2595 win_close(curwin, TRUE);
2596 advance = FALSE;
2597 }
2598
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002599 arg_idx = 1;
2600 for (i = 1; i < parmp->window_count; ++i)
2601 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002602 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2603 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002604 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002605 ++arg_idx;
2606 win_close(curwin, TRUE);
2607 advance = FALSE;
2608 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002609 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002610
Bram Moolenaar84212822006-11-07 21:59:47 +00002611 if (advance)
2612 {
2613 if (parmp->window_layout == WIN_TABS)
2614 {
2615 if (curtab->tp_next == NULL) /* just checking */
2616 break;
2617 goto_tabpage(0);
2618 }
2619 else
2620 {
2621 if (curwin->w_next == NULL) /* just checking */
2622 break;
2623 win_enter(curwin->w_next, FALSE);
2624 }
2625 }
2626 advance = TRUE;
2627
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002628 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002629 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002630 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2631 {
2632 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002633 /* Edit file from arg list, if there is one. When "Quit" selected
2634 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002635# ifdef HAS_SWAP_EXISTS_ACTION
2636 swap_exists_did_quit = FALSE;
2637# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002638 (void)do_ecmd(0, arg_idx < GARGCOUNT
2639 ? alist_name(&GARGLIST[arg_idx]) : NULL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002640 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002641# ifdef HAS_SWAP_EXISTS_ACTION
2642 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002643 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002644 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002645 if (got_int || only_one_window())
2646 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002647 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002648 did_emsg = FALSE; /* avoid hit-enter prompt */
2649 getout(1);
2650 }
2651 win_close(curwin, TRUE);
2652 advance = FALSE;
2653 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002654# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002655 if (arg_idx == GARGCOUNT - 1)
2656 arg_had_last = TRUE;
2657 ++arg_idx;
2658 }
2659 ui_breakcheck();
2660 if (got_int)
2661 {
2662 (void)vgetc(); /* only break the file loading, not the rest */
2663 break;
2664 }
2665 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002666
2667 if (parmp->window_layout == WIN_TABS)
2668 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002669# ifdef FEAT_AUTOCMD
2670 --autocmd_no_enter;
2671# endif
2672 win_enter(firstwin, FALSE); /* back to first window */
2673# ifdef FEAT_AUTOCMD
2674 --autocmd_no_leave;
2675# endif
2676 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002677 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002678 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2679}
2680#endif /* FEAT_WINDOWS */
2681
2682/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002683 * Execute the commands from --cmd arguments "cmds[cnt]".
2684 */
2685 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002686exe_pre_commands(parmp)
2687 mparm_T *parmp;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002688{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002689 char_u **cmds = parmp->pre_commands;
2690 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002691 int i;
2692
2693 if (cnt > 0)
2694 {
2695 curwin->w_cursor.lnum = 0; /* just in case.. */
2696 sourcing_name = (char_u *)_("pre-vimrc command line");
2697# ifdef FEAT_EVAL
2698 current_SID = SID_CMDARG;
2699# endif
2700 for (i = 0; i < cnt; ++i)
2701 do_cmdline_cmd(cmds[i]);
2702 sourcing_name = NULL;
2703# ifdef FEAT_EVAL
2704 current_SID = 0;
2705# endif
2706 TIME_MSG("--cmd commands");
2707 }
2708}
2709
2710/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002711 * Execute "+", "-c" and "-S" arguments.
2712 */
2713 static void
2714exe_commands(parmp)
2715 mparm_T *parmp;
2716{
2717 int i;
2718
2719 /*
2720 * We start commands on line 0, make "vim +/pat file" match a
2721 * pattern on line 1. But don't move the cursor when an autocommand
2722 * with g`" was used.
2723 */
2724 msg_scroll = TRUE;
2725 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2726 curwin->w_cursor.lnum = 0;
2727 sourcing_name = (char_u *)"command line";
2728#ifdef FEAT_EVAL
2729 current_SID = SID_CARG;
2730#endif
2731 for (i = 0; i < parmp->n_commands; ++i)
2732 {
2733 do_cmdline_cmd(parmp->commands[i]);
2734 if (parmp->cmds_tofree[i])
2735 vim_free(parmp->commands[i]);
2736 }
2737 sourcing_name = NULL;
2738#ifdef FEAT_EVAL
2739 current_SID = 0;
2740#endif
2741 if (curwin->w_cursor.lnum == 0)
2742 curwin->w_cursor.lnum = 1;
2743
2744 if (!exmode_active)
2745 msg_scroll = FALSE;
2746
2747#ifdef FEAT_QUICKFIX
2748 /* When started with "-q errorfile" jump to first error again. */
2749 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002750 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002751#endif
2752 TIME_MSG("executing command arguments");
2753}
2754
2755/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002756 * Source startup scripts.
2757 */
2758 static void
2759source_startup_scripts(parmp)
2760 mparm_T *parmp;
2761{
2762 int i;
2763
2764 /*
2765 * For "evim" source evim.vim first of all, so that the user can overrule
2766 * any things he doesn't like.
2767 */
2768 if (parmp->evim_mode)
2769 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002770 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002771 TIME_MSG("source evim file");
2772 }
2773
2774 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002775 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002776 * nothing else.
2777 */
2778 if (parmp->use_vimrc != NULL)
2779 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002780 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2781 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002782 {
2783#ifdef FEAT_GUI
2784 if (use_gvimrc == NULL) /* don't load gvimrc either */
2785 use_gvimrc = parmp->use_vimrc;
2786#endif
2787 if (parmp->use_vimrc[2] == 'N')
2788 p_lpl = FALSE; /* don't load plugins either */
2789 }
2790 else
2791 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002792 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002793 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2794 }
2795 }
2796 else if (!silent_mode)
2797 {
2798#ifdef AMIGA
2799 struct Process *proc = (struct Process *)FindTask(0L);
2800 APTR save_winptr = proc->pr_WindowPtr;
2801
2802 /* Avoid a requester here for a volume that doesn't exist. */
2803 proc->pr_WindowPtr = (APTR)-1L;
2804#endif
2805
2806 /*
2807 * Get system wide defaults, if the file name is defined.
2808 */
2809#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002810 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002811#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002812#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002813 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002814#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002815
2816 /*
2817 * Try to read initialization commands from the following places:
2818 * - environment variable VIMINIT
2819 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2820 * - second user vimrc file ($VIM/.vimrc for Dos)
2821 * - environment variable EXINIT
2822 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2823 * - second user exrc file ($VIM/.exrc for Dos)
2824 * The first that exists is used, the rest is ignored.
2825 */
2826 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2827 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002828 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002829#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002830 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2831 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002832#endif
2833#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002834 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2835 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002836#endif
2837 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002838 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002839 {
2840#ifdef USR_EXRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002841 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002842#endif
2843 }
2844 }
2845
2846 /*
2847 * Read initialization commands from ".vimrc" or ".exrc" in current
2848 * directory. This is only done if the 'exrc' option is set.
2849 * Because of security reasons we disallow shell and write commands
2850 * now, except for unix if the file is owned by the user or 'secure'
2851 * option has been reset in environment of global ".exrc" or ".vimrc".
2852 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2853 * SYS_VIMRC_FILE.
2854 */
2855 if (p_exrc)
2856 {
2857#if defined(UNIX) || defined(VMS)
2858 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2859 if (!file_owned(VIMRC_FILE))
2860#endif
2861 secure = p_secure;
2862
2863 i = FAIL;
2864 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2865 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2866#ifdef USR_VIMRC_FILE2
2867 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2868 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2869#endif
2870#ifdef USR_VIMRC_FILE3
2871 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2872 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2873#endif
2874#ifdef SYS_VIMRC_FILE
2875 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2876 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2877#endif
2878 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002879 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002880
2881 if (i == FAIL)
2882 {
2883#if defined(UNIX) || defined(VMS)
2884 /* if ".exrc" is not owned by user set 'secure' mode */
2885 if (!file_owned(EXRC_FILE))
2886 secure = p_secure;
2887 else
2888 secure = 0;
2889#endif
2890 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2891 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2892#ifdef USR_EXRC_FILE2
2893 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2894 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2895#endif
2896 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002897 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002898 }
2899 }
2900 if (secure == 2)
2901 need_wait_return = TRUE;
2902 secure = 0;
2903#ifdef AMIGA
2904 proc->pr_WindowPtr = save_winptr;
2905#endif
2906 }
2907 TIME_MSG("sourcing vimrc file(s)");
2908}
2909
2910/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002911 * Setup to start using the GUI. Exit with an error when not available.
2912 */
2913 static void
2914main_start_gui()
2915{
2916#ifdef FEAT_GUI
2917 gui.starting = TRUE; /* start GUI a bit later */
2918#else
2919 mch_errmsg(_(e_nogvim));
2920 mch_errmsg("\n");
2921 mch_exit(2);
2922#endif
2923}
2924
2925/*
Bram Moolenaar49325942007-05-10 19:19:59 +00002926 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002927 * Returns FAIL if the environment variable was not executed, OK otherwise.
2928 */
2929 int
2930process_env(env, is_viminit)
2931 char_u *env;
2932 int is_viminit; /* when TRUE, called for VIMINIT */
2933{
2934 char_u *initstr;
2935 char_u *save_sourcing_name;
2936 linenr_T save_sourcing_lnum;
2937#ifdef FEAT_EVAL
2938 scid_T save_sid;
2939#endif
2940
2941 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2942 {
2943 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002944 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002945 save_sourcing_name = sourcing_name;
2946 save_sourcing_lnum = sourcing_lnum;
2947 sourcing_name = env;
2948 sourcing_lnum = 0;
2949#ifdef FEAT_EVAL
2950 save_sid = current_SID;
2951 current_SID = SID_ENV;
2952#endif
2953 do_cmdline_cmd(initstr);
2954 sourcing_name = save_sourcing_name;
2955 sourcing_lnum = save_sourcing_lnum;
2956#ifdef FEAT_EVAL
2957 current_SID = save_sid;;
2958#endif
2959 return OK;
2960 }
2961 return FAIL;
2962}
2963
2964#if defined(UNIX) || defined(VMS)
2965/*
2966 * Return TRUE if we are certain the user owns the file "fname".
2967 * Used for ".vimrc" and ".exrc".
2968 * Use both stat() and lstat() for extra security.
2969 */
2970 static int
2971file_owned(fname)
2972 char *fname;
2973{
2974 struct stat s;
2975# ifdef UNIX
2976 uid_t uid = getuid();
2977# else /* VMS */
2978 uid_t uid = ((getgid() << 16) | getuid());
2979# endif
2980
2981 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2982# ifdef HAVE_LSTAT
2983 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2984# endif
2985 );
2986}
2987#endif
2988
2989/*
2990 * Give an error message main_errors["n"] and exit.
2991 */
2992 static void
2993mainerr(n, str)
2994 int n; /* one of the ME_ defines */
2995 char_u *str; /* extra argument or NULL */
2996{
2997#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2998 reset_signals(); /* kill us with CTRL-C here, if you like */
2999#endif
3000
3001 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003002 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003003 mch_errmsg(_(main_errors[n]));
3004 if (str != NULL)
3005 {
3006 mch_errmsg(": \"");
3007 mch_errmsg((char *)str);
3008 mch_errmsg("\"");
3009 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003010 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003011
3012 mch_exit(1);
3013}
3014
3015 void
3016mainerr_arg_missing(str)
3017 char_u *str;
3018{
3019 mainerr(ME_ARG_MISSING, str);
3020}
3021
3022/*
3023 * print a message with three spaces prepended and '\n' appended.
3024 */
3025 static void
3026main_msg(s)
3027 char *s;
3028{
3029 mch_msg(" ");
3030 mch_msg(s);
3031 mch_msg("\n");
3032}
3033
3034/*
3035 * Print messages for "vim -h" or "vim --help" and exit.
3036 */
3037 static void
3038usage()
3039{
3040 int i;
3041 static char *(use[]) =
3042 {
3043 N_("[file ..] edit specified file(s)"),
3044 N_("- read text from stdin"),
3045 N_("-t tag edit file where tag is defined"),
3046#ifdef FEAT_QUICKFIX
3047 N_("-q [errorfile] edit file with first error")
3048#endif
3049 };
3050
3051#if defined(UNIX) || defined(__EMX__) || defined(VMS)
3052 reset_signals(); /* kill us with CTRL-C here, if you like */
3053#endif
3054
3055 mch_msg(longVersion);
3056 mch_msg(_("\n\nusage:"));
3057 for (i = 0; ; ++i)
3058 {
3059 mch_msg(_(" vim [arguments] "));
3060 mch_msg(_(use[i]));
3061 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3062 break;
3063 mch_msg(_("\n or:"));
3064 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003065#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003066 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003067#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003068
3069 mch_msg(_("\n\nArguments:\n"));
3070 main_msg(_("--\t\t\tOnly file names after this"));
3071#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3072 main_msg(_("--literal\t\tDon't expand wildcards"));
3073#endif
3074#ifdef FEAT_OLE
3075 main_msg(_("-register\t\tRegister this gvim for OLE"));
3076 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3077#endif
3078#ifdef FEAT_GUI
3079 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3080 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3081#endif
3082 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3083 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3084 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3085#ifdef FEAT_DIFF
3086 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3087#endif
3088 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3089 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3090 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3091 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3092 main_msg(_("-M\t\t\tModifications in text not allowed"));
3093 main_msg(_("-b\t\t\tBinary mode"));
3094#ifdef FEAT_LISP
3095 main_msg(_("-l\t\t\tLisp mode"));
3096#endif
3097 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3098 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003099 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3100#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003101 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003102#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003103 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3104 main_msg(_("-r\t\t\tList swap files and exit"));
3105 main_msg(_("-r (with file name)\tRecover crashed session"));
3106 main_msg(_("-L\t\t\tSame as -r"));
3107#ifdef AMIGA
3108 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3109 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3110#endif
3111#ifdef FEAT_ARABIC
3112 main_msg(_("-A\t\t\tstart in Arabic mode"));
3113#endif
3114#ifdef FEAT_RIGHTLEFT
3115 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3116#endif
3117#ifdef FEAT_FKMAP
3118 main_msg(_("-F\t\t\tStart in Farsi mode"));
3119#endif
3120 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3121 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3122#ifdef FEAT_GUI
3123 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3124#endif
3125 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003126#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003127 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003128 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3129 main_msg(_("-O[N]\t\tLike -o but split vertically"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003130#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003131 main_msg(_("+\t\t\tStart at end of file"));
3132 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003133 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003134 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3135 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3136 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3137 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3138 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3139#ifdef FEAT_CRYPT
3140 main_msg(_("-x\t\t\tEdit encrypted files"));
3141#endif
3142#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3143# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3144 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3145# endif
3146 main_msg(_("-X\t\t\tDo not connect to X server"));
3147#endif
3148#ifdef FEAT_CLIENTSERVER
3149 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3150 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3151 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3152 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003153# ifdef FEAT_WINDOWS
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003154 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003155# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003156 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3157 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3158 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3159 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3160#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003161#ifdef STARTUPTIME
Bram Moolenaar34ef52d2009-11-17 11:31:25 +00003162 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
Bram Moolenaaref94eec2009-11-11 13:22:11 +00003163#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003164#ifdef FEAT_VIMINFO
3165 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3166#endif
3167 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3168 main_msg(_("--version\t\tPrint version information and exit"));
3169
3170#ifdef FEAT_GUI_X11
3171# ifdef FEAT_GUI_MOTIF
3172 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3173# else
3174# ifdef FEAT_GUI_ATHENA
3175# ifdef FEAT_GUI_NEXTAW
3176 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3177# else
3178 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3179# endif
3180# endif
3181# endif
3182 main_msg(_("-display <display>\tRun vim on <display>"));
3183 main_msg(_("-iconic\t\tStart vim iconified"));
3184# if 0
3185 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3186 mch_msg(_("\t\t\t (Unimplemented)\n"));
3187# endif
3188 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3189 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3190 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3191 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3192 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3193 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3194 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3195 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3196# ifdef FEAT_GUI_ATHENA
3197 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3198# endif
3199 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3200 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3201 main_msg(_("-xrm <resource>\tSet the specified resource"));
3202#endif /* FEAT_GUI_X11 */
3203#if defined(FEAT_GUI) && defined(RISCOS)
3204 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3205 main_msg(_("--columns <number>\tInitial width of window in columns"));
3206 main_msg(_("--rows <number>\tInitial height of window in rows"));
3207#endif
3208#ifdef FEAT_GUI_GTK
3209 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3210 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3211 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3212 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3213 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3214# ifdef HAVE_GTK2
3215 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3216# endif
3217 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3218#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003219#ifdef FEAT_GUI_W32
3220 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003221 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003222#endif
3223
3224#ifdef FEAT_GUI_GNOME
3225 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3226 if (gui.starting)
3227 mch_msg("\n");
3228 else
3229#endif
3230 mch_exit(0);
3231}
3232
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003233#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003234/*
3235 * Check the result of the ATTENTION dialog:
3236 * When "Quit" selected, exit Vim.
3237 * When "Recover" selected, recover the file.
3238 */
3239 static void
3240check_swap_exists_action()
3241{
3242 if (swap_exists_action == SEA_QUIT)
3243 getout(1);
3244 handle_swap_exists(NULL);
3245}
3246#endif
3247
3248#if defined(STARTUPTIME) || defined(PROTO)
3249static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3250
3251static struct timeval prev_timeval;
3252
Bram Moolenaar3f269672009-11-03 11:11:11 +00003253# ifdef WIN3264
3254/*
3255 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3256 */
3257 static int
3258gettimeofday(struct timeval *tv, char *dummy)
3259{
3260 long t = clock();
3261 tv->tv_sec = t / CLOCKS_PER_SEC;
3262 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3263 return 0;
3264}
3265# endif
3266
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003267/*
3268 * Save the previous time before doing something that could nest.
3269 * set "*tv_rel" to the time elapsed so far.
3270 */
3271 void
3272time_push(tv_rel, tv_start)
3273 void *tv_rel, *tv_start;
3274{
3275 *((struct timeval *)tv_rel) = prev_timeval;
3276 gettimeofday(&prev_timeval, NULL);
3277 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3278 - ((struct timeval *)tv_rel)->tv_usec;
3279 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3280 - ((struct timeval *)tv_rel)->tv_sec;
3281 if (((struct timeval *)tv_rel)->tv_usec < 0)
3282 {
3283 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3284 --((struct timeval *)tv_rel)->tv_sec;
3285 }
3286 *(struct timeval *)tv_start = prev_timeval;
3287}
3288
3289/*
3290 * Compute the previous time after doing something that could nest.
3291 * Subtract "*tp" from prev_timeval;
3292 * Note: The arguments are (void *) to avoid trouble with systems that don't
3293 * have struct timeval.
3294 */
3295 void
3296time_pop(tp)
3297 void *tp; /* actually (struct timeval *) */
3298{
3299 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3300 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3301 if (prev_timeval.tv_usec < 0)
3302 {
3303 prev_timeval.tv_usec += 1000000;
3304 --prev_timeval.tv_sec;
3305 }
3306}
3307
3308 static void
3309time_diff(then, now)
3310 struct timeval *then;
3311 struct timeval *now;
3312{
3313 long usec;
3314 long msec;
3315
3316 usec = now->tv_usec - then->tv_usec;
3317 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3318 usec = usec % 1000L;
3319 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3320}
3321
3322 void
3323time_msg(msg, tv_start)
3324 char *msg;
3325 void *tv_start; /* only for do_source: start time; actually
3326 (struct timeval *) */
3327{
3328 static struct timeval start;
3329 struct timeval now;
3330
3331 if (time_fd != NULL)
3332 {
3333 if (strstr(msg, "STARTING") != NULL)
3334 {
3335 gettimeofday(&start, NULL);
3336 prev_timeval = start;
3337 fprintf(time_fd, "\n\ntimes in msec\n");
3338 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3339 fprintf(time_fd, " clock elapsed: other lines\n\n");
3340 }
3341 gettimeofday(&now, NULL);
3342 time_diff(&start, &now);
3343 if (((struct timeval *)tv_start) != NULL)
3344 {
3345 fprintf(time_fd, " ");
3346 time_diff(((struct timeval *)tv_start), &now);
3347 }
3348 fprintf(time_fd, " ");
3349 time_diff(&prev_timeval, &now);
3350 prev_timeval = now;
3351 fprintf(time_fd, ": %s\n", msg);
3352 }
3353}
3354
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003355#endif
3356
3357#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3358
3359/*
3360 * Common code for the X command server and the Win32 command server.
3361 */
3362
Bram Moolenaareb94e552006-03-11 21:35:11 +00003363static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003364
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003365/*
3366 * Do the client-server stuff, unless "--servername ''" was used.
3367 */
3368 static void
3369exec_on_server(parmp)
3370 mparm_T *parmp;
3371{
3372 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3373 {
3374# ifdef WIN32
3375 /* Initialise the client/server messaging infrastructure. */
3376 serverInitMessaging();
3377# endif
3378
3379 /*
3380 * When a command server argument was found, execute it. This may
3381 * exit Vim when it was successful. Otherwise it's executed further
3382 * on. Remember the encoding used here in "serverStrEnc".
3383 */
3384 if (parmp->serverArg)
3385 {
3386 cmdsrv_main(&parmp->argc, parmp->argv,
3387 parmp->serverName_arg, &parmp->serverStr);
3388# ifdef FEAT_MBYTE
3389 parmp->serverStrEnc = vim_strsave(p_enc);
3390# endif
3391 }
3392
3393 /* If we're still running, get the name to register ourselves.
3394 * On Win32 can register right now, for X11 need to setup the
3395 * clipboard first, it's further down. */
3396 parmp->servername = serverMakeName(parmp->serverName_arg,
3397 parmp->argv[0]);
3398# ifdef WIN32
3399 if (parmp->servername != NULL)
3400 {
3401 serverSetName(parmp->servername);
3402 vim_free(parmp->servername);
3403 }
3404# endif
3405 }
3406}
3407
3408/*
3409 * Prepare for running as a Vim server.
3410 */
3411 static void
3412prepare_server(parmp)
3413 mparm_T *parmp;
3414{
3415# if defined(FEAT_X11)
3416 /*
3417 * Register for remote command execution with :serversend and --remote
3418 * unless there was a -X or a --servername '' on the command line.
3419 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003420 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003421 */
3422 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3423# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003424 (gui.in_use
3425# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003426 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003427# endif
3428 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003429# endif
3430 parmp->serverName_arg != NULL))
3431 {
3432 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3433 vim_free(parmp->servername);
3434 TIME_MSG("register server name");
3435 }
3436 else
3437 serverDelayedStartName = parmp->servername;
3438# endif
3439
3440 /*
3441 * Execute command ourselves if we're here because the send failed (or
3442 * else we would have exited above).
3443 */
3444 if (parmp->serverStr != NULL)
3445 {
3446 char_u *p;
3447
3448 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3449 parmp->serverStr, &p));
3450 vim_free(p);
3451 }
3452}
3453
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003454 static void
3455cmdsrv_main(argc, argv, serverName_arg, serverStr)
3456 int *argc;
3457 char **argv;
3458 char_u *serverName_arg;
3459 char_u **serverStr;
3460{
3461 char_u *res;
3462 int i;
3463 char_u *sname;
3464 int ret;
3465 int didone = FALSE;
3466 int exiterr = 0;
3467 char **newArgV = argv + 1;
3468 int newArgC = 1,
3469 Argc = *argc;
3470 int argtype;
3471#define ARGTYPE_OTHER 0
3472#define ARGTYPE_EDIT 1
3473#define ARGTYPE_EDIT_WAIT 2
3474#define ARGTYPE_SEND 3
3475 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003476 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003477# ifndef FEAT_X11
3478 HWND srv;
3479# else
3480 Window srv;
3481
3482 setup_term_clip();
3483# endif
3484
3485 sname = serverMakeName(serverName_arg, argv[0]);
3486 if (sname == NULL)
3487 return;
3488
3489 /*
3490 * Execute the command server related arguments and remove them
3491 * from the argc/argv array; We may have to return into main()
3492 */
3493 for (i = 1; i < Argc; i++)
3494 {
3495 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003496 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003497 {
3498 for (; i < *argc; i++)
3499 {
3500 *newArgV++ = argv[i];
3501 newArgC++;
3502 }
3503 break;
3504 }
3505
Bram Moolenaareb94e552006-03-11 21:35:11 +00003506 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003507 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003508 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3509 {
3510 char *p = argv[i] + 8;
3511
3512 argtype = ARGTYPE_EDIT;
3513 while (*p != NUL)
3514 {
3515 if (STRNICMP(p, "-wait", 5) == 0)
3516 {
3517 argtype = ARGTYPE_EDIT_WAIT;
3518 p += 5;
3519 }
3520 else if (STRNICMP(p, "-silent", 7) == 0)
3521 {
3522 silent = TRUE;
3523 p += 7;
3524 }
3525 else if (STRNICMP(p, "-tab", 4) == 0)
3526 {
3527 tabs = TRUE;
3528 p += 4;
3529 }
3530 else
3531 {
3532 argtype = ARGTYPE_OTHER;
3533 break;
3534 }
3535 }
3536 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003537 else
3538 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003539
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003540 if (argtype != ARGTYPE_OTHER)
3541 {
3542 if (i == *argc - 1)
3543 mainerr_arg_missing((char_u *)argv[i]);
3544 if (argtype == ARGTYPE_SEND)
3545 {
3546 *serverStr = (char_u *)argv[i + 1];
3547 i++;
3548 }
3549 else
3550 {
3551 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003552 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003553 if (*serverStr == NULL)
3554 {
3555 /* Probably out of memory, exit. */
3556 didone = TRUE;
3557 exiterr = 1;
3558 break;
3559 }
3560 Argc = i;
3561 }
3562# ifdef FEAT_X11
3563 if (xterm_dpy == NULL)
3564 {
3565 mch_errmsg(_("No display"));
3566 ret = -1;
3567 }
3568 else
3569 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3570 NULL, &srv, 0, 0, silent);
3571# else
3572 /* Win32 always works? */
3573 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3574# endif
3575 if (ret < 0)
3576 {
3577 if (argtype == ARGTYPE_SEND)
3578 {
3579 /* Failed to send, abort. */
3580 mch_errmsg(_(": Send failed.\n"));
3581 didone = TRUE;
3582 exiterr = 1;
3583 }
3584 else if (!silent)
3585 /* Let vim start normally. */
3586 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3587 break;
3588 }
3589
3590# ifdef FEAT_GUI_W32
3591 /* Guess that when the server name starts with "g" it's a GUI
3592 * server, which we can bring to the foreground here.
3593 * Foreground() in the server doesn't work very well. */
3594 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3595 SetForegroundWindow(srv);
3596# endif
3597
3598 /*
3599 * For --remote-wait: Wait until the server did edit each
3600 * file. Also detect that the server no longer runs.
3601 */
3602 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3603 {
3604 int numFiles = *argc - i - 1;
3605 int j;
3606 char_u *done = alloc(numFiles);
3607 char_u *p;
3608# ifdef FEAT_GUI_W32
3609 NOTIFYICONDATA ni;
3610 int count = 0;
3611 extern HWND message_window;
3612# endif
3613
3614 if (numFiles > 0 && argv[i + 1][0] == '+')
3615 /* Skip "+cmd" argument, don't wait for it to be edited. */
3616 --numFiles;
3617
3618# ifdef FEAT_GUI_W32
3619 ni.cbSize = sizeof(ni);
3620 ni.hWnd = message_window;
3621 ni.uID = 0;
3622 ni.uFlags = NIF_ICON|NIF_TIP;
3623 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3624 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3625 Shell_NotifyIcon(NIM_ADD, &ni);
3626# endif
3627
3628 /* Wait for all files to unload in remote */
3629 memset(done, 0, numFiles);
3630 while (memchr(done, 0, numFiles) != NULL)
3631 {
3632# ifdef WIN32
3633 p = serverGetReply(srv, NULL, TRUE, TRUE);
3634 if (p == NULL)
3635 break;
3636# else
3637 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3638 break;
3639# endif
3640 j = atoi((char *)p);
3641 if (j >= 0 && j < numFiles)
3642 {
3643# ifdef FEAT_GUI_W32
3644 ++count;
3645 sprintf(ni.szTip, _("%d of %d edited"),
3646 count, numFiles);
3647 Shell_NotifyIcon(NIM_MODIFY, &ni);
3648# endif
3649 done[j] = 1;
3650 }
3651 }
3652# ifdef FEAT_GUI_W32
3653 Shell_NotifyIcon(NIM_DELETE, &ni);
3654# endif
3655 }
3656 }
3657 else if (STRICMP(argv[i], "--remote-expr") == 0)
3658 {
3659 if (i == *argc - 1)
3660 mainerr_arg_missing((char_u *)argv[i]);
3661# ifdef WIN32
3662 /* Win32 always works? */
3663 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3664 &res, NULL, 1, FALSE) < 0)
3665# else
3666 if (xterm_dpy == NULL)
3667 mch_errmsg(_("No display: Send expression failed.\n"));
3668 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3669 &res, NULL, 1, 1, FALSE) < 0)
3670# endif
3671 {
3672 if (res != NULL && *res != NUL)
3673 {
3674 /* Output error from remote */
3675 mch_errmsg((char *)res);
3676 vim_free(res);
3677 res = NULL;
3678 }
3679 mch_errmsg(_(": Send expression failed.\n"));
3680 }
3681 }
3682 else if (STRICMP(argv[i], "--serverlist") == 0)
3683 {
3684# ifdef WIN32
3685 /* Win32 always works? */
3686 res = serverGetVimNames();
3687# else
3688 if (xterm_dpy != NULL)
3689 res = serverGetVimNames(xterm_dpy);
3690# endif
3691 if (called_emsg)
3692 mch_errmsg("\n");
3693 }
3694 else if (STRICMP(argv[i], "--servername") == 0)
3695 {
Bram Moolenaar5d985b92009-12-16 17:28:07 +00003696 /* Already processed. Take it out of the command line */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003697 i++;
3698 continue;
3699 }
3700 else
3701 {
3702 *newArgV++ = argv[i];
3703 newArgC++;
3704 continue;
3705 }
3706 didone = TRUE;
3707 if (res != NULL && *res != NUL)
3708 {
3709 mch_msg((char *)res);
3710 if (res[STRLEN(res) - 1] != '\n')
3711 mch_msg("\n");
3712 }
3713 vim_free(res);
3714 }
3715
3716 if (didone)
3717 {
3718 display_errors(); /* display any collected messages */
3719 exit(exiterr); /* Mission accomplished - get out */
3720 }
3721
3722 /* Return back into main() */
3723 *argc = newArgC;
3724 vim_free(sname);
3725}
3726
3727/*
3728 * Build a ":drop" command to send to a Vim server.
3729 */
3730 static char_u *
Bram Moolenaareb94e552006-03-11 21:35:11 +00003731build_drop_cmd(filec, filev, tabs, sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003732 int filec;
3733 char **filev;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003734 int tabs; /* Use ":tab drop" instead of ":drop". */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003735 int sendReply;
3736{
3737 garray_T ga;
3738 int i;
3739 char_u *inicmd = NULL;
3740 char_u *p;
3741 char_u cwd[MAXPATHL];
3742
3743 if (filec > 0 && filev[0][0] == '+')
3744 {
3745 inicmd = (char_u *)filev[0] + 1;
3746 filev++;
3747 filec--;
3748 }
3749 /* Check if we have at least one argument. */
3750 if (filec <= 0)
3751 mainerr_arg_missing((char_u *)filev[-1]);
3752 if (mch_dirname(cwd, MAXPATHL) != OK)
3753 return NULL;
Bram Moolenaar02b06312007-09-06 15:39:22 +00003754 if ((p = vim_strsave_escaped_ext(cwd,
3755#ifdef BACKSLASH_IN_FILENAME
3756 "", /* rem_backslash() will tell what chars to escape */
3757#else
3758 PATH_ESC_CHARS,
3759#endif
3760 '\\', TRUE)) == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003761 return NULL;
3762 ga_init2(&ga, 1, 100);
3763 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3764 ga_concat(&ga, p);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003765 vim_free(p);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003766
3767 /* Call inputsave() so that a prompt for an encryption key works. */
3768 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3769 if (tabs)
3770 ga_concat(&ga, (char_u *)"tab ");
3771 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003772 for (i = 0; i < filec; i++)
3773 {
3774 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003775 * do it again in the Vim server. On MS-Windows only escape
3776 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003777 p = vim_strsave_escaped((char_u *)filev[i],
3778#ifdef UNIX
3779 PATH_ESC_CHARS
3780#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003781 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003782#endif
3783 );
3784 if (p == NULL)
3785 {
3786 vim_free(ga.ga_data);
3787 return NULL;
3788 }
3789 ga_concat(&ga, (char_u *)" ");
3790 ga_concat(&ga, p);
3791 vim_free(p);
3792 }
3793 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3794 * CTRL-\ CTRL-N again. */
3795 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3796 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3797 if (sendReply)
3798 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3799 ga_concat(&ga, (char_u *)"<CR>:");
3800 if (inicmd != NULL)
3801 {
3802 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3803 * the following commands to be inserted as text. Use a "|",
3804 * hopefully "inicmd" does allow this... */
3805 ga_concat(&ga, inicmd);
3806 ga_concat(&ga, (char_u *)"|");
3807 }
3808 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3809 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00003810 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003811 ga_append(&ga, NUL);
3812 return ga.ga_data;
3813}
3814
3815/*
3816 * Replace termcodes such as <CR> and insert as key presses if there is room.
3817 */
3818 void
3819server_to_input_buf(str)
3820 char_u *str;
3821{
3822 char_u *ptr = NULL;
3823 char_u *cpo_save = p_cpo;
3824
3825 /* Set 'cpoptions' the way we want it.
3826 * B set - backslashes are *not* treated specially
3827 * k set - keycodes are *not* reverse-engineered
3828 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003829 * The last but one parameter of replace_termcodes() is TRUE so that the
3830 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003831 */
3832 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003833 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003834 p_cpo = cpo_save;
3835
3836 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3837 {
3838 /*
3839 * Add the string to the input stream.
3840 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3841 *
3842 * First clear typed characters from the typeahead buffer, there could
3843 * be half a mapping there. Then append to the existing string, so
3844 * that multiple commands from a client are concatenated.
3845 */
3846 if (typebuf.tb_maplen < typebuf.tb_len)
3847 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3848 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3849
3850 /* Let input_available() know we inserted text in the typeahead
3851 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003852 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003853 }
3854 vim_free((char_u *)ptr);
3855}
3856
3857/*
3858 * Evaluate an expression that the client sent to a string.
3859 * Handles disabling error messages and disables debugging, otherwise Vim
3860 * hangs, waiting for "cont" to be typed.
3861 */
3862 char_u *
3863eval_client_expr_to_string(expr)
3864 char_u *expr;
3865{
3866 char_u *res;
3867 int save_dbl = debug_break_level;
3868 int save_ro = redir_off;
3869
3870 debug_break_level = -1;
3871 redir_off = 0;
3872 ++emsg_skip;
3873
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003874 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003875
3876 debug_break_level = save_dbl;
3877 redir_off = save_ro;
3878 --emsg_skip;
3879
Bram Moolenaar63a121b2005-12-11 21:36:39 +00003880 /* A client can tell us to redraw, but not to display the cursor, so do
3881 * that here. */
3882 setcursor();
3883 out_flush();
3884#ifdef FEAT_GUI
3885 if (gui.in_use)
3886 gui_update_cursor(FALSE, FALSE);
3887#endif
3888
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003889 return res;
3890}
3891
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003892/*
3893 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3894 * return an allocated string. Otherwise return "data".
3895 * "*tofree" is set to the result when it needs to be freed later.
3896 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003897 char_u *
3898serverConvert(client_enc, data, tofree)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003899 char_u *client_enc UNUSED;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003900 char_u *data;
3901 char_u **tofree;
3902{
3903 char_u *res = data;
3904
3905 *tofree = NULL;
3906# ifdef FEAT_MBYTE
3907 if (client_enc != NULL && p_enc != NULL)
3908 {
3909 vimconv_T vimconv;
3910
3911 vimconv.vc_type = CONV_NONE;
3912 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3913 && vimconv.vc_type != CONV_NONE)
3914 {
3915 res = string_convert(&vimconv, data, NULL);
3916 if (res == NULL)
3917 res = data;
3918 else
3919 *tofree = res;
3920 }
3921 convert_setup(&vimconv, NULL, NULL);
3922 }
3923# endif
3924 return res;
3925}
3926
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003927
3928/*
3929 * Make our basic server name: use the specified "arg" if given, otherwise use
3930 * the tail of the command "cmd" we were started with.
3931 * Return the name in allocated memory. This doesn't include a serial number.
3932 */
3933 static char_u *
3934serverMakeName(arg, cmd)
3935 char_u *arg;
3936 char *cmd;
3937{
3938 char_u *p;
3939
3940 if (arg != NULL && *arg != NUL)
3941 p = vim_strsave_up(arg);
3942 else
3943 {
3944 p = vim_strsave_up(gettail((char_u *)cmd));
3945 /* Remove .exe or .bat from the name. */
3946 if (p != NULL && vim_strchr(p, '.') != NULL)
3947 *vim_strchr(p, '.') = NUL;
3948 }
3949 return p;
3950}
3951#endif /* FEAT_CLIENTSERVER */
3952
3953/*
3954 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3955 */
3956#if defined(FEAT_FKMAP) || defined(PROTO)
3957# include "farsi.c"
3958#endif
3959
3960/*
3961 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3962 */
3963#if defined(FEAT_ARABIC) || defined(PROTO)
3964# include "arabic.c"
3965#endif