blob: 7d553f15587219024032f67cec5a79b235b155c9 [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
10#if defined(MSDOS) || 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
21#ifdef HAVE_FCNTL_H
22# include <fcntl.h>
23#endif
24
25#ifdef __CYGWIN__
26# ifndef WIN32
27# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() */
28# endif
29# include <limits.h>
30#endif
31
Bram Moolenaarc013cb62005-07-24 21:18:31 +000032/* Maximum number of commands from + or -c arguments. */
33#define MAX_ARG_CMDS 10
34
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000035/* values for "window_layout" */
36#define WIN_HOR 1 /* "-o" horizontally split windows */
37#define WIN_VER 2 /* "-O" vertically split windows */
38#define WIN_TABS 3 /* "-p" windows on tab pages */
39
Bram Moolenaar58d98232005-07-23 22:25:46 +000040/* Struct for various parameters passed between main() and other functions. */
41typedef struct
42{
Bram Moolenaarc013cb62005-07-24 21:18:31 +000043 int argc;
44 char **argv;
45
46 int evim_mode; /* started as "evim" */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000047 char_u *use_vimrc; /* vimrc from -u argument */
48
49 int n_commands; /* no. of commands from + or -c */
50 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
51 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
52 int n_pre_commands; /* no. of commands from --cmd */
53 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
54
55 int edit_type; /* type of editing to do */
56 char_u *tagname; /* tag from -t argument */
57#ifdef FEAT_QUICKFIX
58 char_u *use_ef; /* 'errorfile' from -q argument */
59#endif
60
61 int want_full_screen;
62 int stdout_isatty; /* is stdout a terminal? */
63 char_u *term; /* specified terminal name */
64#ifdef FEAT_CRYPT
65 int ask_for_key; /* -x argument */
66#endif
67 int no_swap_file; /* "-n" argument used */
68#ifdef FEAT_EVAL
69 int use_debug_break_level;
70#endif
71#ifdef FEAT_WINDOWS
72 int window_count; /* number of windows to use */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000073 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000074#endif
75
76#ifdef FEAT_CLIENTSERVER
Bram Moolenaar58d98232005-07-23 22:25:46 +000077 int serverArg; /* TRUE when argument for a server */
78 char_u *serverName_arg; /* cmdline arg for server name */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000079 char_u *serverStr; /* remote server command */
80 char_u *serverStrEnc; /* encoding of serverStr */
81 char_u *servername; /* allocated name for our server */
82#endif
83#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
84 int literal; /* don't expand file names */
85#endif
86#ifdef MSWIN
87 int full_path; /* file name argument was full path */
88#endif
89#ifdef FEAT_DIFF
90 int diff_mode; /* start with 'diff' set */
91#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +000092} mparm_T;
93
Bram Moolenaarc013cb62005-07-24 21:18:31 +000094/* Values for edit_type. */
95#define EDIT_NONE 0 /* no edit type yet */
96#define EDIT_FILE 1 /* file name argument[s] given, use argument list */
97#define EDIT_STDIN 2 /* read file from stdin */
98#define EDIT_TAG 3 /* tag name argument given, use tagname */
99#define EDIT_QF 4 /* start in quickfix mode */
100
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000101#if defined(UNIX) || defined(VMS)
102static int file_owned __ARGS((char *fname));
103#endif
104static void mainerr __ARGS((int, char_u *));
105static void main_msg __ARGS((char *s));
106static void usage __ARGS((void));
107static int get_number_arg __ARGS((char_u *p, int *idx, int def));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000108#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
109static void init_locale __ARGS((void));
110#endif
111static void parse_command_name __ARGS((mparm_T *parmp));
112static void early_arg_scan __ARGS((mparm_T *parmp));
113static void command_line_scan __ARGS((mparm_T *parmp));
114static void check_tty __ARGS((mparm_T *parmp));
115static void read_stdin __ARGS((void));
116static void create_windows __ARGS((mparm_T *parmp));
117#ifdef FEAT_WINDOWS
118static void edit_buffers __ARGS((mparm_T *parmp));
119#endif
120static void exe_pre_commands __ARGS((mparm_T *parmp));
121static void exe_commands __ARGS((mparm_T *parmp));
Bram Moolenaar58d98232005-07-23 22:25:46 +0000122static void source_startup_scripts __ARGS((mparm_T *parmp));
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000123static void main_start_gui __ARGS((void));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +0000124#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000125static void check_swap_exists_action __ARGS((void));
126#endif
127#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000128static void exec_on_server __ARGS((mparm_T *parmp));
129static void prepare_server __ARGS((mparm_T *parmp));
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000130static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
131static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
132#endif
133
134
135#ifdef STARTUPTIME
136static FILE *time_fd = NULL;
137#endif
138
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000139/*
140 * Different types of error messages.
141 */
142static char *(main_errors[]) =
143{
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000144 N_("Unknown option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000145#define ME_UNKNOWN_OPTION 0
146 N_("Too many edit arguments"),
147#define ME_TOO_MANY_ARGS 1
148 N_("Argument missing after"),
149#define ME_ARG_MISSING 2
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000150 N_("Garbage after option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000151#define ME_GARBAGE 3
152 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
153#define ME_EXTRA_CMD 4
154 N_("Invalid argument for"),
155#define ME_INVALID_ARG 5
156};
157
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000158#ifndef PROTO /* don't want a prototype for main() */
159 int
160# ifdef VIMDLL
161_export
162# endif
163# ifdef FEAT_GUI_MSWIN
164# ifdef __BORLANDC__
165_cdecl
166# endif
167VimMain
168# else
169main
170# endif
171(argc, argv)
172 int argc;
173 char **argv;
174{
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000175 char_u *fname = NULL; /* file name from command line */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000176 mparm_T params; /* various parameters passed between
177 * main() and other functions. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000178
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000179 /*
180 * Do any system-specific initialisations. These can NOT use IObuff or
181 * NameBuff. Thus emsg2() cannot be called!
182 */
183 mch_early_init();
184
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000185 /* Many variables are in "params" so that we can pass them to invoked
186 * functions without a lot of arguments. "argc" and "argv" are also
187 * copied, so that they can be changed. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000188 vim_memset(&params, 0, sizeof(params));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000189 params.argc = argc;
190 params.argv = argv;
191 params.want_full_screen = TRUE;
192#ifdef FEAT_EVAL
193 params.use_debug_break_level = -1;
194#endif
195#ifdef FEAT_WINDOWS
196 params.window_count = -1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000197#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +0000198
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000199#ifdef FEAT_TCL
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000200 vim_tcl_init(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000201#endif
202
203#ifdef MEM_PROFILE
204 atexit(vim_mem_profile_dump);
205#endif
206
207#ifdef STARTUPTIME
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000208 time_fd = mch_fopen(STARTUPTIME, "a");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000209 TIME_MSG("--- VIM STARTING ---");
210#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +0000211 starttime = time(NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000212
213#ifdef __EMX__
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000214 _wildcard(&params.argc, &params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000215#endif
216
217#ifdef FEAT_MBYTE
218 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
219#endif
Bram Moolenaardcaf10e2005-01-21 11:55:25 +0000220#ifdef FEAT_EVAL
221 eval_init(); /* init global variables */
222#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000223
224#ifdef __QNXNTO__
225 qnx_init(); /* PhAttach() for clipboard, (and gui) */
226#endif
227
228#ifdef MAC_OS_CLASSIC
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000229 /* Prepare for possibly starting GUI sometime */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000230 /* Macintosh needs this before any memory is allocated. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000231 gui_prepare(&params.argc, params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000232 TIME_MSG("GUI prepared");
233#endif
234
235 /* Init the table of Normal mode commands. */
236 init_normal_cmds();
237
238#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
Bram Moolenaar58d98232005-07-23 22:25:46 +0000239 make_version(); /* Construct the long version string. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000240#endif
241
242 /*
243 * Allocate space for the generic buffers (needed for set_init_1() and
244 * EMSG2()).
245 */
246 if ((IObuff = alloc(IOSIZE)) == NULL
247 || (NameBuff = alloc(MAXPATHL)) == NULL)
248 mch_exit(0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000249 TIME_MSG("Allocated generic buffers");
250
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000251#ifdef NBDEBUG
252 /* Wait a moment for debugging NetBeans. Must be after allocating
253 * NameBuff. */
254 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
255 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000256 TIME_MSG("NetBeans debug wait");
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000257#endif
258
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000259#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
260 /*
261 * Setup to use the current locale (for ctype() and many other things).
262 * NOTE: Translated messages with encodings other than latin1 will not
263 * work until set_init_1() has been called!
264 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000265 init_locale();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000266 TIME_MSG("locale set");
267#endif
268
269#ifdef FEAT_GUI
270 gui.dofork = TRUE; /* default is to use fork() */
271#endif
272
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000273 /*
Bram Moolenaar58d98232005-07-23 22:25:46 +0000274 * Do a first scan of the arguments in "argv[]":
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000275 * -display or --display
Bram Moolenaar58d98232005-07-23 22:25:46 +0000276 * --server...
277 * --socketid
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000278 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000279 early_arg_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000280
281#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000282 findYourself(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000283#endif
284#if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000285 /* Prepare for possibly starting GUI sometime */
286 gui_prepare(&params.argc, params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000287 TIME_MSG("GUI prepared");
288#endif
289
290#ifdef FEAT_CLIPBOARD
291 clip_init(FALSE); /* Initialise clipboard stuff */
292 TIME_MSG("clipboard setup");
293#endif
294
295 /*
296 * Check if we have an interactive window.
297 * On the Amiga: If there is no window, we open one with a newcli command
298 * (needed for :! to * work). mch_check_win() will also handle the -d or
299 * -dev argument.
300 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000301 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000302 TIME_MSG("window checked");
303
304 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000305 * Allocate the first window and buffer.
306 * Can't do anything without it, exit when it fails.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000307 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000308 if (win_alloc_first() == FAIL)
309 mch_exit(0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000310
311 init_yank(); /* init yank buffers */
312
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000313 alist_init(&global_alist); /* Init the argument list to empty. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000314
315 /*
316 * Set the default values for the options.
317 * NOTE: Non-latin1 translated messages are working only after this,
318 * because this is where "has_mbyte" will be set, which is used by
319 * msg_outtrans_len_attr().
320 * First find out the home directory, needed to expand "~" in options.
321 */
322 init_homedir(); /* find real value of $HOME */
323 set_init_1();
324 TIME_MSG("inits 1");
325
326#ifdef FEAT_EVAL
327 set_lang_var(); /* set v:lang and v:ctype */
328#endif
329
330#ifdef FEAT_CLIENTSERVER
331 /*
332 * Do the client-server stuff, unless "--servername ''" was used.
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000333 * This may exit Vim if the command was sent to the server.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000334 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000335 exec_on_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000336#endif
337
338 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000339 * Figure out the way to work from the command name argv[0].
340 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000341 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000342 parse_command_name(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000343
344 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000345 * Process the command line arguments. File names are put in the global
346 * argument list "global_alist".
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000347 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000348 command_line_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000349 TIME_MSG("parsing arguments");
350
351 /*
352 * On some systems, when we compile with the GUI, we always use it. On Mac
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000353 * there is no terminal version, and on Windows we can't fork one off with
354 * :gui.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000355 */
356#ifdef ALWAYS_USE_GUI
357 gui.starting = TRUE;
358#else
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000359# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000360 /*
361 * Check if the GUI can be started. Reset gui.starting if not.
362 * Don't know about other systems, stay on the safe side and don't check.
363 */
364 if (gui.starting && gui_init_check() == FAIL)
365 {
366 gui.starting = FALSE;
367
368 /* When running "evim" or "gvim -y" we need the menus, exit if we
369 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000370 if (params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000371 mch_exit(1);
372 }
373# endif
374#endif
375
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000376 if (GARGCOUNT > 0)
377 {
378#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
379 /*
380 * Expand wildcards in file names.
381 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000382 if (!params.literal)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000383 {
384 /* Temporarily add '(' and ')' to 'isfname'. These are valid
385 * filename characters but are excluded from 'isfname' to make
386 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
387 do_cmdline_cmd((char_u *)":set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +0000388 alist_expand(NULL, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000389 do_cmdline_cmd((char_u *)":set isf&");
390 }
391#endif
392 fname = alist_name(&GARGLIST[0]);
393 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000394
395#if defined(WIN32) && defined(FEAT_MBYTE)
396 {
397 extern void set_alist_count(void);
398
399 /* Remember the number of entries in the argument list. If it changes
400 * we don't react on setting 'encoding'. */
401 set_alist_count();
402 }
403#endif
404
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000405#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000406 if (GARGCOUNT == 1 && params.full_path)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000407 {
408 /*
409 * If there is one filename, fully qualified, we have very probably
410 * been invoked from explorer, so change to the file's directory.
411 * Hint: to avoid this when typing a command use a forward slash.
412 * If the cd fails, it doesn't matter.
413 */
414 (void)vim_chdirfile(fname);
415 }
416#endif
417 TIME_MSG("expanding arguments");
418
419#ifdef FEAT_DIFF
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000420 if (params.diff_mode && params.window_count == -1)
421 params.window_count = 0; /* open up to 3 windows */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000422#endif
423
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000424 /* Don't redraw until much later. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000425 ++RedrawingDisabled;
426
427 /*
428 * When listing swap file names, don't do cursor positioning et. al.
429 */
430 if (recoverymode && fname == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000431 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000432
433 /*
434 * When certain to start the GUI, don't check capabilities of terminal.
435 * For GTK we can't be sure, but when started from the desktop it doesn't
436 * make sense to try using a terminal.
437 */
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000438#if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000439 if (gui.starting
440# ifdef FEAT_GUI_GTK
441 && !isatty(2)
442# endif
443 )
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000444 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000445#endif
446
447#if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
448 /* When the GUI is started from Finder, need to display messages in a
449 * message box. isatty(2) returns TRUE anyway, thus we need to check the
450 * name to know we're not started from a terminal. */
451 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000452 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000453 params.want_full_screen = FALSE;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000454
455 /* Avoid always using "/" as the current directory. Note that when
456 * started from Finder the arglist will be filled later in
457 * HandleODocAE() and "fname" will be NULL. */
458 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
459 && STRCMP(NameBuff, "/") == 0)
460 {
461 if (fname != NULL)
462 (void)vim_chdirfile(fname);
463 else
464 {
465 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
466 vim_chdir(NameBuff);
467 }
468 }
469 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000470#endif
471
472 /*
473 * mch_init() sets up the terminal (window) for use. This must be
474 * done after resetting full_screen, otherwise it may move the cursor
475 * (MSDOS).
476 * Note that we may use mch_exit() before mch_init()!
477 */
478 mch_init();
479 TIME_MSG("shell init");
480
481#ifdef USE_XSMP
482 /*
483 * For want of anywhere else to do it, try to connect to xsmp here.
484 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
485 * Hijacking -X 'no X connection' to also disable XSMP connection as that
486 * has a similar delay upon failure.
487 * Only try if SESSION_MANAGER is set to something non-null.
488 */
489 if (!x_no_connect)
490 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000491 char *p = getenv("SESSION_MANAGER");
492
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000493 if (p != NULL && *p != NUL)
494 {
495 xsmp_init();
496 TIME_MSG("xsmp init");
497 }
498 }
499#endif
500
501 /*
502 * Print a warning if stdout is not a terminal.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000503 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000504 check_tty(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000505
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000506 /* This message comes before term inits, but after setting "silent_mode"
507 * when the input is not a tty. */
508 if (GARGCOUNT > 1 && !silent_mode)
509 printf(_("%d files to edit\n"), GARGCOUNT);
510
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000511 if (params.want_full_screen && !silent_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000512 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000513 termcapinit(params.term); /* set terminal name and get terminal
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000514 capabilities (will set full_screen) */
515 screen_start(); /* don't know where cursor is now */
516 TIME_MSG("Termcap init");
517 }
518
519 /*
520 * Set the default values for the options that use Rows and Columns.
521 */
522 ui_get_shellsize(); /* inits Rows and Columns */
523#ifdef FEAT_NETBEANS_INTG
524 if (usingNetbeans)
525 Columns += 2; /* leave room for glyph gutter */
526#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000527 win_init_size();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000528#ifdef FEAT_DIFF
529 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
530 * file. There is no buffer yet though. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000531 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000532 diff_win_options(firstwin, FALSE);
533#endif
534
535 cmdline_row = Rows - p_ch;
536 msg_row = cmdline_row;
537 screenalloc(FALSE); /* allocate screen buffers */
538 set_init_2();
539 TIME_MSG("inits 2");
540
541 msg_scroll = TRUE;
542 no_wait_return = TRUE;
543
544 init_mappings(); /* set up initial mappings */
545
546 init_highlight(TRUE, FALSE); /* set the default highlight groups */
547 TIME_MSG("init highlight");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000548
549#ifdef FEAT_EVAL
550 /* Set the break level after the terminal is initialized. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000551 debug_break_level = params.use_debug_break_level;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000552#endif
553
Bram Moolenaar58d98232005-07-23 22:25:46 +0000554 /* Execute --cmd arguments. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000555 exe_pre_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000556
Bram Moolenaar58d98232005-07-23 22:25:46 +0000557 /* Source startup scripts. */
558 source_startup_scripts(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000559
560#ifdef FEAT_EVAL
561 /*
562 * Read all the plugin files.
563 * Only when compiled with +eval, since most plugins need it.
564 */
565 if (p_lpl)
566 {
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000567# ifdef VMS /* Somehow VMS doesn't handle the "**". */
568 source_runtime((char_u *)"plugin/*.vim", TRUE);
569# else
Bram Moolenaar07d4d732005-10-03 22:04:08 +0000570 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000571# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000572 TIME_MSG("loading plugins");
573 }
574#endif
575
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000576#ifdef FEAT_DIFF
577 /* Decide about window layout for diff mode after reading vimrc. */
578 if (params.diff_mode && params.window_layout == 0)
579 {
580 if (diffopt_horizontal())
581 params.window_layout = WIN_HOR; /* use horizontal split */
582 else
583 params.window_layout = WIN_VER; /* use vertical split */
584 }
585#endif
586
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000587 /*
588 * Recovery mode without a file name: List swap files.
589 * This uses the 'dir' option, therefore it must be after the
590 * initializations.
591 */
592 if (recoverymode && fname == NULL)
593 {
594 recover_names(NULL, TRUE, 0);
595 mch_exit(0);
596 }
597
598 /*
599 * Set a few option defaults after reading .vimrc files:
600 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
601 */
602 set_init_3();
603 TIME_MSG("inits 3");
604
605 /*
606 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
607 * Note that this overrides anything from a vimrc file.
608 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000609 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000610 p_uc = 0;
611
612#ifdef FEAT_FKMAP
613 if (curwin->w_p_rl && p_altkeymap)
614 {
615 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
616# ifdef FEAT_ARABIC
617 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
618# endif
619 p_fkmap = TRUE; /* Set the Farsi keymap mode */
620 }
621#endif
622
623#ifdef FEAT_GUI
624 if (gui.starting)
625 {
626#if defined(UNIX) || defined(VMS)
627 /* When something caused a message from a vimrc script, need to output
628 * an extra newline before the shell prompt. */
629 if (did_emsg || msg_didout)
630 putchar('\n');
631#endif
632
633 gui_start(); /* will set full_screen to TRUE */
634 TIME_MSG("starting GUI");
635
636 /* When running "evim" or "gvim -y" we need the menus, exit if we
637 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000638 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000639 mch_exit(1);
640 }
641#endif
642
643#ifdef SPAWNO /* special MSDOS swapping library */
644 init_SPAWNO("", SWAP_ANY);
645#endif
646
647#ifdef FEAT_VIMINFO
648 /*
649 * Read in registers, history etc, but not marks, from the viminfo file
650 */
651 if (*p_viminfo != NUL)
652 {
653 read_viminfo(NULL, TRUE, FALSE, FALSE);
654 TIME_MSG("reading viminfo");
655 }
656#endif
657
658#ifdef FEAT_QUICKFIX
659 /*
660 * "-q errorfile": Load the error file now.
661 * If the error file can't be read, exit before doing anything else.
662 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000663 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000664 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000665 if (params.use_ef != NULL)
666 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000667 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000668 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000669 {
670 out_char('\n');
671 mch_exit(3);
672 }
673 TIME_MSG("reading errorfile");
674 }
675#endif
676
677 /*
678 * Start putting things on the screen.
679 * Scroll screen down before drawing over it
680 * Clear screen now, so file message will not be cleared.
681 */
682 starting = NO_BUFFERS;
683 no_wait_return = FALSE;
684 if (!exmode_active)
685 msg_scroll = FALSE;
686
687#ifdef FEAT_GUI
688 /*
689 * This seems to be required to make callbacks to be called now, instead
690 * of after things have been put on the screen, which then may be deleted
691 * when getting a resize callback.
692 * For the Mac this handles putting files dropped on the Vim icon to
693 * global_alist.
694 */
695 if (gui.in_use)
696 {
697# ifdef FEAT_SUN_WORKSHOP
698 if (!usingSunWorkShop)
699# endif
700 gui_wait_for_chars(50L);
701 TIME_MSG("GUI delay");
702 }
703#endif
704
705#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
706 qnx_clip_init();
707#endif
708
709#ifdef FEAT_XCLIPBOARD
710 /* Start using the X clipboard, unless the GUI was started. */
711# ifdef FEAT_GUI
712 if (!gui.in_use)
713# endif
714 {
715 setup_term_clip();
716 TIME_MSG("setup clipboard");
717 }
718#endif
719
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000720#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000721 /* Prepare for being a Vim server. */
722 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000723#endif
724
725 /*
726 * If "-" argument given: Read file from stdin.
727 * Do this before starting Raw mode, because it may change things that the
728 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
729 * are the same terminal: "cat | vim -".
730 * Using autocommands here may cause trouble...
731 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000732 if (params.edit_type == EDIT_STDIN && !recoverymode)
733 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000734
735#if defined(UNIX) || defined(VMS)
736 /* When switching screens and something caused a message from a vimrc
737 * script, need to output an extra newline on exit. */
738 if ((did_emsg || msg_didout) && *T_TI != NUL)
739 newline_on_exit = TRUE;
740#endif
741
742 /*
743 * When done something that is not allowed or error message call
744 * wait_return. This must be done before starttermcap(), because it may
745 * switch to another screen. It must be done after settmode(TMODE_RAW),
746 * because we want to react on a single key stroke.
747 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000748 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000749 */
750 settmode(TMODE_RAW);
751 TIME_MSG("setting raw mode");
752
753 if (need_wait_return || msg_didany)
754 {
755 wait_return(TRUE);
756 TIME_MSG("waiting for return");
757 }
758
759 starttermcap(); /* start termcap if not done by wait_return() */
760 TIME_MSG("start termcap");
761
762#ifdef FEAT_MOUSE
763 setmouse(); /* may start using the mouse */
764#endif
765 if (scroll_region)
766 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000767 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000768
769 /*
770 * Don't clear the screen when starting in Ex mode, unless using the GUI.
771 */
772 if (exmode_active
773#ifdef FEAT_GUI
774 && !gui.in_use
775#endif
776 )
777 must_redraw = CLEAR;
778 else
779 {
780 screenclear(); /* clear screen */
781 TIME_MSG("clearing screen");
782 }
783
784#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000785 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000786 {
787 (void)get_crypt_key(TRUE, TRUE);
788 TIME_MSG("getting crypt key");
789 }
790#endif
791
792 no_wait_return = TRUE;
793
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000794 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000795 * Create the requested number of windows and edit buffers in them.
796 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000797 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000798 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000799 TIME_MSG("opening buffers");
800
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000801#ifdef FEAT_EVAL
802 /* clear v:swapcommand */
803 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
804#endif
805
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000806 /* Ex starts at last line of the file */
807 if (exmode_active)
808 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
809
810#ifdef FEAT_AUTOCMD
811 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
812 TIME_MSG("BufEnter autocommands");
813#endif
814 setpcmark();
815
816#ifdef FEAT_QUICKFIX
817 /*
818 * When started with "-q errorfile" jump to first error now.
819 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000820 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000821 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000822 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000823 TIME_MSG("jump to first error");
824 }
825#endif
826
827#ifdef FEAT_WINDOWS
828 /*
829 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000830 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000831 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000832 edit_buffers(&params);
833#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000834
835#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000836 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000837 {
838 win_T *wp;
839
840 /* set options in each window for "vimdiff". */
841 for (wp = firstwin; wp != NULL; wp = wp->w_next)
842 diff_win_options(wp, TRUE);
843 }
844#endif
845
846 /*
847 * Shorten any of the filenames, but only when absolute.
848 */
849 shorten_fnames(FALSE);
850
851 /*
852 * Need to jump to the tag before executing the '-c command'.
853 * Makes "vim -c '/return' -t main" work.
854 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000855 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000856 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000857#if defined(HAS_SWAP_EXISTS_ACTION)
858 swap_exists_did_quit = FALSE;
859#endif
860
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000861 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000862 do_cmdline_cmd(IObuff);
863 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000864
865#if defined(HAS_SWAP_EXISTS_ACTION)
866 /* If the user doesn't want to edit the file then we quit here. */
867 if (swap_exists_did_quit)
868 getout(1);
869#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000870 }
871
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000872 /* Execute any "+", "-c" and "-S" arguments. */
873 if (params.n_commands > 0)
874 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000875
876 RedrawingDisabled = 0;
877 redraw_all_later(NOT_VALID);
878 no_wait_return = FALSE;
879 starting = 0;
880
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000881#ifdef FEAT_TERMRESPONSE
882 /* Requesting the termresponse is postponed until here, so that a "-c q"
883 * argument doesn't make it appear in the shell Vim was started from. */
884 may_req_termresponse();
885#endif
886
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000887 /* start in insert mode */
888 if (p_im)
889 need_start_insertmode = TRUE;
890
891#ifdef FEAT_AUTOCMD
892 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
893 TIME_MSG("VimEnter autocommands");
894#endif
895
896#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
897 /* When a startup script or session file setup for diff'ing and
898 * scrollbind, sync the scrollbind now. */
899 if (curwin->w_p_diff && curwin->w_p_scb)
900 {
901 update_topline();
902 check_scrollbind((linenr_T)0, 0L);
903 TIME_MSG("diff scrollbinding");
904 }
905#endif
906
907#if defined(WIN3264) && !defined(FEAT_GUI_W32)
908 mch_set_winsize_now(); /* Allow winsize changes from now on */
909#endif
910
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000911#if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
912 /* When tab pages were created, may need to update the tab pages line and
913 * scrollbars. This is skipped while creating them. */
914 if (first_tabpage->tp_next != NULL)
915 {
916 out_flush();
917 gui_init_which_components(NULL);
918 gui_update_scrollbars(TRUE);
919 }
920 need_mouse_correct = TRUE;
921#endif
922
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000923 /* If ":startinsert" command used, stuff a dummy command to be able to
924 * call normal_cmd(), which will then start Insert mode. */
925 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000926 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000927
928#ifdef FEAT_NETBEANS_INTG
929 if (usingNetbeans)
930 /* Tell the client that it can start sending commands. */
931 netbeans_startup_done();
932#endif
933
934 TIME_MSG("before starting main loop");
935
936 /*
937 * Call the main command loop. This never returns.
938 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000939 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000940
941 return 0;
942}
943#endif /* PROTO */
944
945/*
946 * Main loop: Execute Normal mode commands until exiting Vim.
947 * Also used to handle commands in the command-line window, until the window
948 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000949 * Also used to handle ":visual" command after ":global": execute Normal mode
950 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000951 */
952 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000953main_loop(cmdwin, noexmode)
954 int cmdwin; /* TRUE when working in the command-line window */
955 int noexmode; /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000956{
Bram Moolenaar225d32b2007-08-10 19:33:47 +0000957 oparg_T oa; /* operator arguments */
958 int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000959
960#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
961 /* Setup to catch a terminating error from the X server. Just ignore
962 * it, restore the state and continue. This might not always work
963 * properly, but at least we don't exit unexpectedly when the X server
964 * exists while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000965 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000966 {
967 State = NORMAL;
968# ifdef FEAT_VISUAL
969 VIsual_active = FALSE;
970# endif
971 got_int = TRUE;
972 need_wait_return = FALSE;
973 global_busy = FALSE;
974 exmode_active = 0;
975 skip_redraw = FALSE;
976 RedrawingDisabled = 0;
977 no_wait_return = 0;
978# ifdef FEAT_EVAL
979 emsg_skip = 0;
980# endif
981 emsg_off = 0;
982# ifdef FEAT_MOUSE
983 setmouse();
984# endif
985 settmode(TMODE_RAW);
986 starttermcap();
987 scroll_start();
988 redraw_later_clear();
989 }
990#endif
991
992 clear_oparg(&oa);
993 while (!cmdwin
994#ifdef FEAT_CMDWIN
995 || cmdwin_result == 0
996#endif
997 )
998 {
999 if (stuff_empty())
1000 {
1001 did_check_timestamps = FALSE;
1002 if (need_check_timestamps)
1003 check_timestamps(FALSE);
1004 if (need_wait_return) /* if wait_return still needed ... */
1005 wait_return(FALSE); /* ... call it now */
1006 if (need_start_insertmode && goto_im()
1007#ifdef FEAT_VISUAL
1008 && !VIsual_active
1009#endif
1010 )
1011 {
1012 need_start_insertmode = FALSE;
1013 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1014 /* skip the fileinfo message now, because it would be shown
1015 * after insert mode finishes! */
1016 need_fileinfo = FALSE;
1017 }
1018 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001019
1020 /* Reset "got_int" now that we got back to the main loop. Except when
1021 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1022 * the ":g" command.
1023 * For ":g/pat/vi" we reset "got_int" when used once. When used
1024 * a second time we go back to Ex mode and abort the ":g" command. */
1025 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001026 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001027 if (noexmode && global_busy && !exmode_active && previous_got_int)
1028 {
1029 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1030 * used and keep "got_int" set, so that it aborts ":g". */
1031 exmode_active = EXMODE_NORMAL;
1032 State = NORMAL;
1033 }
1034 else if (!global_busy || !exmode_active)
1035 {
1036 if (!quit_more)
1037 (void)vgetc(); /* flush all buffers */
1038 got_int = FALSE;
1039 }
1040 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001041 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001042 else
1043 previous_got_int = FALSE;
1044
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001045 if (!exmode_active)
1046 msg_scroll = FALSE;
1047 quit_more = FALSE;
1048
1049 /*
1050 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1051 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1052 * update cursor and redraw.
1053 */
1054 if (skip_redraw || exmode_active)
1055 skip_redraw = FALSE;
1056 else if (do_redraw || stuff_empty())
1057 {
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001058#ifdef FEAT_AUTOCMD
1059 /* Trigger CursorMoved if the cursor moved. */
1060 if (!finish_op && has_cursormoved()
1061 && !equalpos(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001062 {
1063 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1064 last_cursormoved = curwin->w_cursor;
1065 }
1066#endif
1067
Bram Moolenaar33aec762006-01-22 23:30:12 +00001068#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1069 /* Scroll-binding for diff mode may have been postponed until
1070 * here. Avoids doing it for every change. */
1071 if (diff_need_scrollbind)
1072 {
1073 check_scrollbind((linenr_T)0, 0L);
1074 diff_need_scrollbind = FALSE;
1075 }
1076#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001077#if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1078 /* Include a closed fold completely in the Visual area. */
1079 foldAdjustVisual();
1080#endif
1081#ifdef FEAT_FOLDING
1082 /*
1083 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1084 * contain the cursor.
1085 * When 'foldopen' is "all", open the fold(s) under the cursor.
1086 * This may mark the window for redrawing.
1087 */
1088 if (hasAnyFolding(curwin) && !char_avail())
1089 {
1090 foldCheckClose();
1091 if (fdo_flags & FDO_ALL)
1092 foldOpenCursor();
1093 }
1094#endif
1095
1096 /*
1097 * Before redrawing, make sure w_topline is correct, and w_leftcol
1098 * if lines don't wrap, and w_skipcol if lines wrap.
1099 */
1100 update_topline();
1101 validate_cursor();
1102
1103#ifdef FEAT_VISUAL
1104 if (VIsual_active)
1105 update_curbuf(INVERTED);/* update inverted part */
1106 else
1107#endif
1108 if (must_redraw)
1109 update_screen(0);
1110 else if (redraw_cmdline || clear_cmdline)
1111 showmode();
1112#ifdef FEAT_WINDOWS
1113 redraw_statuslines();
1114#endif
1115#ifdef FEAT_TITLE
1116 if (need_maketitle)
1117 maketitle();
1118#endif
1119 /* display message after redraw */
1120 if (keep_msg != NULL)
1121 {
1122 char_u *p;
1123
1124 /* msg_attr_keep() will set keep_msg to NULL, must free the
1125 * string here. */
1126 p = keep_msg;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001127 keep_msg = NULL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001128 msg_attr(p, keep_msg_attr);
1129 vim_free(p);
1130 }
1131 if (need_fileinfo) /* show file info after redraw */
1132 {
1133 fileinfo(FALSE, TRUE, FALSE);
1134 need_fileinfo = FALSE;
1135 }
1136
1137 emsg_on_display = FALSE; /* can delete error message now */
1138 did_emsg = FALSE;
1139 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001140 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001141 showruler(FALSE);
1142
1143 setcursor();
1144 cursor_on();
1145
1146 do_redraw = FALSE;
1147 }
1148#ifdef FEAT_GUI
1149 if (need_mouse_correct)
1150 gui_mouse_correct();
1151#endif
1152
1153 /*
1154 * Update w_curswant if w_set_curswant has been set.
1155 * Postponed until here to avoid computing w_virtcol too often.
1156 */
1157 update_curswant();
1158
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001159#ifdef FEAT_EVAL
1160 /*
1161 * May perform garbage collection when waiting for a character, but
1162 * only at the very toplevel. Otherwise we may be using a List or
1163 * Dict internally somewhere.
1164 * "may_garbage_collect" is reset in vgetc() which is invoked through
1165 * do_exmode() and normal_cmd().
1166 */
1167 may_garbage_collect = (!cmdwin && !noexmode);
1168#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001169 /*
1170 * If we're invoked as ex, do a round of ex commands.
1171 * Otherwise, get and execute a normal mode command.
1172 */
1173 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001174 {
1175 if (noexmode) /* End of ":global/path/visual" commands */
1176 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001177 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001178 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001179 else
1180 normal_cmd(&oa, TRUE);
1181 }
1182}
1183
1184
1185#if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1186/*
1187 * Exit, but leave behind swap files for modified buffers.
1188 */
1189 void
1190getout_preserve_modified(exitval)
1191 int exitval;
1192{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001193# if defined(SIGHUP) && defined(SIG_IGN)
1194 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1195 * makes Vim exit and then handling SIGHUP causes various reentrance
1196 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001197 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001198# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001199
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001200 ml_close_notmod(); /* close all not-modified buffers */
1201 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1202 ml_close_all(FALSE); /* close all memfiles, without deleting */
1203 getout(exitval); /* exit Vim properly */
1204}
1205#endif
1206
1207
1208/* Exit properly */
1209 void
1210getout(exitval)
1211 int exitval;
1212{
1213#ifdef FEAT_AUTOCMD
1214 buf_T *buf;
1215 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001216 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001217#endif
1218
1219 exiting = TRUE;
1220
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001221 /* When running in Ex mode an error causes us to exit with a non-zero exit
1222 * code. POSIX requires this, although it's not 100% clear from the
1223 * standard. */
1224 if (exmode_active)
1225 exitval += ex_exitval;
1226
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001227 /* Position the cursor on the last screen line, below all the text */
1228#ifdef FEAT_GUI
1229 if (!gui.in_use)
1230#endif
1231 windgoto((int)Rows - 1, 0);
1232
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001233#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1234 /* Optionally print hashtable efficiency. */
1235 hash_debug_results();
1236#endif
1237
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001238#ifdef FEAT_GUI
1239 msg_didany = FALSE;
1240#endif
1241
1242#ifdef FEAT_AUTOCMD
1243 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001244# if defined FEAT_WINDOWS
1245 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001246 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001247 next_tp = tp->tp_next;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001248 for (wp = (tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001249 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001250 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001251 buf = wp->w_buffer;
1252 if (buf->b_changedtick != -1)
1253 {
1254 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001255 FALSE, buf);
Bram Moolenaarf740b292006-02-16 22:11:02 +00001256 buf->b_changedtick = -1; /* note that we did it already */
1257 /* start all over, autocommands may mess up the lists */
1258 next_tp = first_tabpage;
1259 break;
1260 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001261 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001262 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001263# else
1264 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1265# endif
Bram Moolenaar33aec762006-01-22 23:30:12 +00001266
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001267 /* Trigger BufUnload for buffers that are loaded */
1268 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1269 if (buf->b_ml.ml_mfp != NULL)
1270 {
1271 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1272 FALSE, buf);
1273 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1274 break;
1275 }
1276 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1277#endif
1278
1279#ifdef FEAT_VIMINFO
1280 if (*p_viminfo != NUL)
1281 /* Write out the registers, history, marks etc, to the viminfo file */
1282 write_viminfo(NULL, FALSE);
1283#endif
1284
1285#ifdef FEAT_AUTOCMD
1286 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1287#endif
1288
Bram Moolenaar05159a02005-02-26 23:04:13 +00001289#ifdef FEAT_PROFILE
1290 profile_dump();
1291#endif
1292
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001293 if (did_emsg
1294#ifdef FEAT_GUI
1295 || (gui.in_use && msg_didany && p_verbose > 0)
1296#endif
1297 )
1298 {
1299 /* give the user a chance to read the (error) message */
1300 no_wait_return = FALSE;
1301 wait_return(FALSE);
1302 }
1303
1304#ifdef FEAT_AUTOCMD
1305 /* Position the cursor again, the autocommands may have moved it */
1306# ifdef FEAT_GUI
1307 if (!gui.in_use)
1308# endif
1309 windgoto((int)Rows - 1, 0);
1310#endif
1311
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001312#ifdef FEAT_MZSCHEME
1313 mzscheme_end();
1314#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001315#ifdef FEAT_TCL
1316 tcl_end();
1317#endif
1318#ifdef FEAT_RUBY
1319 ruby_end();
1320#endif
1321#ifdef FEAT_PYTHON
1322 python_end();
1323#endif
1324#ifdef FEAT_PERL
1325 perl_end();
1326#endif
1327#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1328 iconv_end();
1329#endif
1330#ifdef FEAT_NETBEANS_INTG
1331 netbeans_end();
1332#endif
1333
1334 mch_exit(exitval);
1335}
1336
1337/*
1338 * Get a (optional) count for a Vim argument.
1339 */
1340 static int
1341get_number_arg(p, idx, def)
1342 char_u *p; /* pointer to argument */
1343 int *idx; /* index in argument, is incremented */
1344 int def; /* default value */
1345{
1346 if (vim_isdigit(p[*idx]))
1347 {
1348 def = atoi((char *)&(p[*idx]));
1349 while (vim_isdigit(p[*idx]))
1350 *idx = *idx + 1;
1351 }
1352 return def;
1353}
1354
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001355#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1356/*
1357 * Setup to use the current locale (for ctype() and many other things).
1358 */
1359 static void
1360init_locale()
1361{
1362 setlocale(LC_ALL, "");
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001363# ifdef WIN32
1364 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1365 * text while it's expecting text in the current locale. This call avoids
1366 * that. */
1367 setlocale(LC_CTYPE, "C");
1368# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001369
1370# ifdef FEAT_GETTEXT
1371 {
1372 int mustfree = FALSE;
1373 char_u *p;
1374
1375# ifdef DYNAMIC_GETTEXT
1376 /* Initialize the gettext library */
1377 dyn_libintl_init(NULL);
1378# endif
1379 /* expand_env() doesn't work yet, because chartab[] is not initialized
1380 * yet, call vim_getenv() directly */
1381 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1382 if (p != NULL && *p != NUL)
1383 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001384 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001385 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1386 }
1387 if (mustfree)
1388 vim_free(p);
1389 textdomain(VIMPACKAGE);
1390 }
1391# endif
1392}
1393#endif
1394
1395/*
1396 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1397 * If the executable name starts with "r" we disable shell commands.
1398 * If the next character is "e" we run in Easy mode.
1399 * If the next character is "g" we run the GUI version.
1400 * If the next characters are "view" we start in readonly mode.
1401 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1402 * If the next characters are "ex" we start in Ex mode. If it's followed
1403 * by "im" use improved Ex mode.
1404 */
1405 static void
1406parse_command_name(parmp)
1407 mparm_T *parmp;
1408{
1409 char_u *initstr;
1410
1411 initstr = gettail((char_u *)parmp->argv[0]);
1412
1413#ifdef MACOS_X_UNIX
1414 /* An issue has been seen when launching Vim in such a way that
1415 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1416 * executable or a symbolic link of it. Until this issue is resolved
1417 * we prohibit the GUI from being used.
1418 */
1419 if (STRCMP(initstr, parmp->argv[0]) == 0)
1420 disallow_gui = TRUE;
1421
1422 /* TODO: On MacOS X default to gui if argv[0] ends in:
Bram Moolenaar27dc1952006-03-15 23:06:44 +00001423 * /Vim.app/Contents/MacOS/Vim */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001424#endif
1425
1426#ifdef FEAT_EVAL
1427 set_vim_var_string(VV_PROGNAME, initstr, -1);
1428#endif
1429
1430 if (TOLOWER_ASC(initstr[0]) == 'r')
1431 {
1432 restricted = TRUE;
1433 ++initstr;
1434 }
1435
1436 /* Avoid using evim mode for "editor". */
1437 if (TOLOWER_ASC(initstr[0]) == 'e'
1438 && (TOLOWER_ASC(initstr[1]) == 'v'
1439 || TOLOWER_ASC(initstr[1]) == 'g'))
1440 {
1441#ifdef FEAT_GUI
1442 gui.starting = TRUE;
1443#endif
1444 parmp->evim_mode = TRUE;
1445 ++initstr;
1446 }
1447
1448 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1449 {
1450 main_start_gui();
1451#ifdef FEAT_GUI
1452 ++initstr;
1453#endif
1454 }
1455
1456 if (STRNICMP(initstr, "view", 4) == 0)
1457 {
1458 readonlymode = TRUE;
1459 curbuf->b_p_ro = TRUE;
1460 p_uc = 10000; /* don't update very often */
1461 initstr += 4;
1462 }
1463 else if (STRNICMP(initstr, "vim", 3) == 0)
1464 initstr += 3;
1465
1466 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1467 if (STRICMP(initstr, "diff") == 0)
1468 {
1469#ifdef FEAT_DIFF
1470 parmp->diff_mode = TRUE;
1471#else
1472 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1473 mch_errmsg("\n");
1474 mch_exit(2);
1475#endif
1476 }
1477
1478 if (STRNICMP(initstr, "ex", 2) == 0)
1479 {
1480 if (STRNICMP(initstr + 2, "im", 2) == 0)
1481 exmode_active = EXMODE_VIM;
1482 else
1483 exmode_active = EXMODE_NORMAL;
1484 change_compatible(TRUE); /* set 'compatible' */
1485 }
1486}
1487
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001488/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001489 * Get the name of the display, before gui_prepare() removes it from
1490 * argv[]. Used for the xterm-clipboard display.
1491 *
1492 * Also find the --server... arguments and --socketid
1493 */
1494/*ARGSUSED*/
1495 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001496early_arg_scan(parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001497 mparm_T *parmp;
1498{
1499#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001500 int argc = parmp->argc;
1501 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001502 int i;
1503
1504 for (i = 1; i < argc; i++)
1505 {
1506 if (STRCMP(argv[i], "--") == 0)
1507 break;
1508# ifdef FEAT_XCLIPBOARD
1509 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001510# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001511 || STRICMP(argv[i], "--display") == 0
1512# endif
1513 )
1514 {
1515 if (i == argc - 1)
1516 mainerr_arg_missing((char_u *)argv[i]);
1517 xterm_display = argv[++i];
1518 }
1519# endif
1520# ifdef FEAT_CLIENTSERVER
1521 else if (STRICMP(argv[i], "--servername") == 0)
1522 {
1523 if (i == argc - 1)
1524 mainerr_arg_missing((char_u *)argv[i]);
1525 parmp->serverName_arg = (char_u *)argv[++i];
1526 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001527 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001528 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001529 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001530 {
1531 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001532# ifdef FEAT_GUI
1533 if (strstr(argv[i], "-wait") != 0)
1534 /* don't fork() when starting the GUI to edit files ourself */
1535 gui.dofork = FALSE;
1536# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001537 }
1538# endif
1539# ifdef FEAT_GUI_GTK
1540 else if (STRICMP(argv[i], "--socketid") == 0)
1541 {
1542 unsigned int socket_id;
1543 int count;
1544
1545 if (i == argc - 1)
1546 mainerr_arg_missing((char_u *)argv[i]);
1547 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1548 count = sscanf(&(argv[i + 1][2]), "%x", &socket_id);
1549 else
1550 count = sscanf(argv[i+1], "%u", &socket_id);
1551 if (count != 1)
1552 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1553 else
1554 gtk_socket_id = socket_id;
1555 i++;
1556 }
1557 else if (STRICMP(argv[i], "--echo-wid") == 0)
1558 echo_wid_arg = TRUE;
1559# endif
1560 }
1561#endif
1562}
1563
1564/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001565 * Scan the command line arguments.
1566 */
1567 static void
1568command_line_scan(parmp)
1569 mparm_T *parmp;
1570{
1571 int argc = parmp->argc;
1572 char **argv = parmp->argv;
1573 int argv_idx; /* index in argv[n][] */
1574 int had_minmin = FALSE; /* found "--" argument */
1575 int want_argument; /* option argument with argument */
1576 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001577 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001578 long n;
1579
1580 --argc;
1581 ++argv;
1582 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1583 while (argc > 0)
1584 {
1585 /*
1586 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1587 */
1588 if (argv[0][0] == '+' && !had_minmin)
1589 {
1590 if (parmp->n_commands >= MAX_ARG_CMDS)
1591 mainerr(ME_EXTRA_CMD, NULL);
1592 argv_idx = -1; /* skip to next argument */
1593 if (argv[0][1] == NUL)
1594 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1595 else
1596 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1597 }
1598
1599 /*
1600 * Optional argument.
1601 */
1602 else if (argv[0][0] == '-' && !had_minmin)
1603 {
1604 want_argument = FALSE;
1605 c = argv[0][argv_idx++];
1606#ifdef VMS
1607 /*
1608 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1609 * and "-/X" as "-X".
1610 */
1611 if (c == '/')
1612 {
1613 c = argv[0][argv_idx++];
1614 c = TOUPPER_ASC(c);
1615 }
1616 else
1617 c = TOLOWER_ASC(c);
1618#endif
1619 switch (c)
1620 {
1621 case NUL: /* "vim -" read from stdin */
1622 /* "ex -" silent mode */
1623 if (exmode_active)
1624 silent_mode = TRUE;
1625 else
1626 {
1627 if (parmp->edit_type != EDIT_NONE)
1628 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1629 parmp->edit_type = EDIT_STDIN;
1630 read_cmd_fd = 2; /* read from stderr instead of stdin */
1631 }
1632 argv_idx = -1; /* skip to next argument */
1633 break;
1634
1635 case '-': /* "--" don't take any more option arguments */
1636 /* "--help" give help message */
1637 /* "--version" give version message */
1638 /* "--literal" take files literally */
1639 /* "--nofork" don't fork */
1640 /* "--noplugin[s]" skip plugins */
1641 /* "--cmd <cmd>" execute cmd before vimrc */
1642 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1643 usage();
1644 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1645 {
1646 Columns = 80; /* need to init Columns */
1647 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1648 list_version();
1649 msg_putchar('\n');
1650 msg_didout = FALSE;
1651 mch_exit(0);
1652 }
1653 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1654 {
1655#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1656 parmp->literal = TRUE;
1657#endif
1658 }
1659 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1660 {
1661#ifdef FEAT_GUI
1662 gui.dofork = FALSE; /* don't fork() when starting GUI */
1663#endif
1664 }
1665 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1666 p_lpl = FALSE;
1667 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1668 {
1669 want_argument = TRUE;
1670 argv_idx += 3;
1671 }
1672#ifdef FEAT_CLIENTSERVER
1673 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1674 ; /* already processed -- no arg */
1675 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1676 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1677 {
1678 /* already processed -- snatch the following arg */
1679 if (argc > 1)
1680 {
1681 --argc;
1682 ++argv;
1683 }
1684 }
1685#endif
1686#ifdef FEAT_GUI_GTK
1687 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1688 {
1689 /* already processed -- snatch the following arg */
1690 if (argc > 1)
1691 {
1692 --argc;
1693 ++argv;
1694 }
1695 }
1696 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1697 {
1698 /* already processed, skip */
1699 }
1700#endif
1701 else
1702 {
1703 if (argv[0][argv_idx])
1704 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1705 had_minmin = TRUE;
1706 }
1707 if (!want_argument)
1708 argv_idx = -1; /* skip to next argument */
1709 break;
1710
1711 case 'A': /* "-A" start in Arabic mode */
1712#ifdef FEAT_ARABIC
1713 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1714#else
1715 mch_errmsg(_(e_noarabic));
1716 mch_exit(2);
1717#endif
1718 break;
1719
1720 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001721 /* Needs to be effective before expanding file names, because
1722 * for Win32 this makes us edit a shortcut file itself,
1723 * instead of the file it links to. */
1724 set_options_bin(curbuf->b_p_bin, 1, 0);
1725 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001726 break;
1727
1728 case 'C': /* "-C" Compatible */
1729 change_compatible(TRUE);
1730 break;
1731
1732 case 'e': /* "-e" Ex mode */
1733 exmode_active = EXMODE_NORMAL;
1734 break;
1735
1736 case 'E': /* "-E" Improved Ex mode */
1737 exmode_active = EXMODE_VIM;
1738 break;
1739
1740 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1741 window directly, not with newcli */
1742#ifdef FEAT_GUI
1743 gui.dofork = FALSE; /* don't fork() when starting GUI */
1744#endif
1745 break;
1746
1747 case 'g': /* "-g" start GUI */
1748 main_start_gui();
1749 break;
1750
1751 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1752#ifdef FEAT_FKMAP
1753 curwin->w_p_rl = p_fkmap = TRUE;
1754#else
1755 mch_errmsg(_(e_nofarsi));
1756 mch_exit(2);
1757#endif
1758 break;
1759
1760 case 'h': /* "-h" give help message */
1761#ifdef FEAT_GUI_GNOME
1762 /* Tell usage() to exit for "gvim". */
1763 gui.starting = FALSE;
1764#endif
1765 usage();
1766 break;
1767
1768 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1769#ifdef FEAT_RIGHTLEFT
1770 curwin->w_p_rl = p_hkmap = TRUE;
1771#else
1772 mch_errmsg(_(e_nohebrew));
1773 mch_exit(2);
1774#endif
1775 break;
1776
1777 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1778#ifdef FEAT_LISP
1779 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1780 p_sm = TRUE;
1781#endif
1782 break;
1783
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001784 case 'M': /* "-M" no changes or writing of files */
1785 reset_modifiable();
1786 /* FALLTHROUGH */
1787
1788 case 'm': /* "-m" no writing of files */
1789 p_write = FALSE;
1790 break;
1791
1792 case 'y': /* "-y" easy mode */
1793#ifdef FEAT_GUI
1794 gui.starting = TRUE; /* start GUI a bit later */
1795#endif
1796 parmp->evim_mode = TRUE;
1797 break;
1798
1799 case 'N': /* "-N" Nocompatible */
1800 change_compatible(FALSE);
1801 break;
1802
1803 case 'n': /* "-n" no swap file */
1804 parmp->no_swap_file = TRUE;
1805 break;
1806
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001807 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00001808#ifdef TARGET_API_MAC_OSX
1809 /* For some reason on MacOS X, an argument like:
1810 -psn_0_10223617 is passed in when invoke from Finder
1811 or with the 'open' command */
1812 if (argv[0][argv_idx] == 's')
1813 {
1814 argv_idx = -1; /* bypass full -psn */
1815 main_start_gui();
1816 break;
1817 }
1818#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001819#ifdef FEAT_WINDOWS
1820 /* default is 0: open window for each file */
1821 parmp->window_count = get_number_arg((char_u *)argv[0],
1822 &argv_idx, 0);
1823 parmp->window_layout = WIN_TABS;
1824#endif
1825 break;
1826
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001827 case 'o': /* "-o[N]" open N horizontal split windows */
1828#ifdef FEAT_WINDOWS
1829 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001830 parmp->window_count = get_number_arg((char_u *)argv[0],
1831 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001832 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001833#endif
1834 break;
1835
1836 case 'O': /* "-O[N]" open N vertical split windows */
1837#if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1838 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001839 parmp->window_count = get_number_arg((char_u *)argv[0],
1840 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001841 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001842#endif
1843 break;
1844
1845#ifdef FEAT_QUICKFIX
1846 case 'q': /* "-q" QuickFix mode */
1847 if (parmp->edit_type != EDIT_NONE)
1848 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1849 parmp->edit_type = EDIT_QF;
1850 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1851 {
1852 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1853 argv_idx = -1;
1854 }
1855 else if (argc > 1) /* "-q {errorfile}" */
1856 want_argument = TRUE;
1857 break;
1858#endif
1859
1860 case 'R': /* "-R" readonly mode */
1861 readonlymode = TRUE;
1862 curbuf->b_p_ro = TRUE;
1863 p_uc = 10000; /* don't update very often */
1864 break;
1865
1866 case 'r': /* "-r" recovery mode */
1867 case 'L': /* "-L" recovery mode */
1868 recoverymode = 1;
1869 break;
1870
1871 case 's':
1872 if (exmode_active) /* "-s" silent (batch) mode */
1873 silent_mode = TRUE;
1874 else /* "-s {scriptin}" read from script file */
1875 want_argument = TRUE;
1876 break;
1877
1878 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1879 if (parmp->edit_type != EDIT_NONE)
1880 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1881 parmp->edit_type = EDIT_TAG;
1882 if (argv[0][argv_idx]) /* "-t{tag}" */
1883 {
1884 parmp->tagname = (char_u *)argv[0] + argv_idx;
1885 argv_idx = -1;
1886 }
1887 else /* "-t {tag}" */
1888 want_argument = TRUE;
1889 break;
1890
1891#ifdef FEAT_EVAL
1892 case 'D': /* "-D" Debugging */
1893 parmp->use_debug_break_level = 9999;
1894 break;
1895#endif
1896#ifdef FEAT_DIFF
1897 case 'd': /* "-d" 'diff' */
1898# ifdef AMIGA
1899 /* check for "-dev {device}" */
1900 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1901 want_argument = TRUE;
1902 else
1903# endif
1904 parmp->diff_mode = TRUE;
1905 break;
1906#endif
1907 case 'V': /* "-V{N}" Verbose level */
1908 /* default is 10: a little bit verbose */
1909 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1910 if (argv[0][argv_idx] != NUL)
1911 {
1912 set_option_value((char_u *)"verbosefile", 0L,
1913 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001914 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001915 }
1916 break;
1917
1918 case 'v': /* "-v" Vi-mode (as if called "vi") */
1919 exmode_active = 0;
1920#ifdef FEAT_GUI
1921 gui.starting = FALSE; /* don't start GUI */
1922#endif
1923 break;
1924
1925 case 'w': /* "-w{number}" set window height */
1926 /* "-w {scriptout}" write to script */
1927 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1928 {
1929 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1930 set_option_value((char_u *)"window", n, NULL, 0);
1931 break;
1932 }
1933 want_argument = TRUE;
1934 break;
1935
1936#ifdef FEAT_CRYPT
1937 case 'x': /* "-x" encrypted reading/writing of files */
1938 parmp->ask_for_key = TRUE;
1939 break;
1940#endif
1941
1942 case 'X': /* "-X" don't connect to X server */
1943#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
1944 x_no_connect = TRUE;
1945#endif
1946 break;
1947
1948 case 'Z': /* "-Z" restricted mode */
1949 restricted = TRUE;
1950 break;
1951
1952 case 'c': /* "-c{command}" or "-c {command}" execute
1953 command */
1954 if (argv[0][argv_idx] != NUL)
1955 {
1956 if (parmp->n_commands >= MAX_ARG_CMDS)
1957 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00001958 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
1959 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001960 argv_idx = -1;
1961 break;
1962 }
1963 /*FALLTHROUGH*/
1964 case 'S': /* "-S {file}" execute Vim script */
1965 case 'i': /* "-i {viminfo}" use for viminfo */
1966#ifndef FEAT_DIFF
1967 case 'd': /* "-d {device}" device (for Amiga) */
1968#endif
1969 case 'T': /* "-T {terminal}" terminal name */
1970 case 'u': /* "-u {vimrc}" vim inits file */
1971 case 'U': /* "-U {gvimrc}" gvim inits file */
1972 case 'W': /* "-W {scriptout}" overwrite */
1973#ifdef FEAT_GUI_W32
1974 case 'P': /* "-P {parent title}" MDI parent */
1975#endif
1976 want_argument = TRUE;
1977 break;
1978
1979 default:
1980 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1981 }
1982
1983 /*
1984 * Handle option arguments with argument.
1985 */
1986 if (want_argument)
1987 {
1988 /*
1989 * Check for garbage immediately after the option letter.
1990 */
1991 if (argv[0][argv_idx] != NUL)
1992 mainerr(ME_GARBAGE, (char_u *)argv[0]);
1993
1994 --argc;
1995 if (argc < 1 && c != 'S')
1996 mainerr_arg_missing((char_u *)argv[0]);
1997 ++argv;
1998 argv_idx = -1;
1999
2000 switch (c)
2001 {
2002 case 'c': /* "-c {command}" execute command */
2003 case 'S': /* "-S {file}" execute Vim script */
2004 if (parmp->n_commands >= MAX_ARG_CMDS)
2005 mainerr(ME_EXTRA_CMD, NULL);
2006 if (c == 'S')
2007 {
2008 char *a;
2009
2010 if (argc < 1)
2011 /* "-S" without argument: use default session file
2012 * name. */
2013 a = SESSION_FILE;
2014 else if (argv[0][0] == '-')
2015 {
2016 /* "-S" followed by another option: use default
2017 * session file name. */
2018 a = SESSION_FILE;
2019 ++argc;
2020 --argv;
2021 }
2022 else
2023 a = argv[0];
2024 p = alloc((unsigned)(STRLEN(a) + 4));
2025 if (p == NULL)
2026 mch_exit(2);
2027 sprintf((char *)p, "so %s", a);
2028 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2029 parmp->commands[parmp->n_commands++] = p;
2030 }
2031 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002032 parmp->commands[parmp->n_commands++] =
2033 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002034 break;
2035
2036 case '-': /* "--cmd {command}" execute command */
2037 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2038 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002039 parmp->pre_commands[parmp->n_pre_commands++] =
2040 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002041 break;
2042
2043 /* case 'd': -d {device} is handled in mch_check_win() for the
2044 * Amiga */
2045
2046#ifdef FEAT_QUICKFIX
2047 case 'q': /* "-q {errorfile}" QuickFix mode */
2048 parmp->use_ef = (char_u *)argv[0];
2049 break;
2050#endif
2051
2052 case 'i': /* "-i {viminfo}" use for viminfo */
2053 use_viminfo = (char_u *)argv[0];
2054 break;
2055
2056 case 's': /* "-s {scriptin}" read from script file */
2057 if (scriptin[0] != NULL)
2058 {
2059scripterror:
2060 mch_errmsg(_("Attempt to open script file again: \""));
2061 mch_errmsg(argv[-1]);
2062 mch_errmsg(" ");
2063 mch_errmsg(argv[0]);
2064 mch_errmsg("\"\n");
2065 mch_exit(2);
2066 }
2067 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2068 {
2069 mch_errmsg(_("Cannot open for reading: \""));
2070 mch_errmsg(argv[0]);
2071 mch_errmsg("\"\n");
2072 mch_exit(2);
2073 }
2074 if (save_typebuf() == FAIL)
2075 mch_exit(2); /* out of memory */
2076 break;
2077
2078 case 't': /* "-t {tag}" */
2079 parmp->tagname = (char_u *)argv[0];
2080 break;
2081
2082 case 'T': /* "-T {terminal}" terminal name */
2083 /*
2084 * The -T term argument is always available and when
2085 * HAVE_TERMLIB is supported it overrides the environment
2086 * variable TERM.
2087 */
2088#ifdef FEAT_GUI
2089 if (term_is_gui((char_u *)argv[0]))
2090 gui.starting = TRUE; /* start GUI a bit later */
2091 else
2092#endif
2093 parmp->term = (char_u *)argv[0];
2094 break;
2095
2096 case 'u': /* "-u {vimrc}" vim inits file */
2097 parmp->use_vimrc = (char_u *)argv[0];
2098 break;
2099
2100 case 'U': /* "-U {gvimrc}" gvim inits file */
2101#ifdef FEAT_GUI
2102 use_gvimrc = (char_u *)argv[0];
2103#endif
2104 break;
2105
2106 case 'w': /* "-w {nr}" 'window' value */
2107 /* "-w {scriptout}" append to script file */
2108 if (vim_isdigit(*((char_u *)argv[0])))
2109 {
2110 argv_idx = 0;
2111 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2112 set_option_value((char_u *)"window", n, NULL, 0);
2113 argv_idx = -1;
2114 break;
2115 }
2116 /*FALLTHROUGH*/
2117 case 'W': /* "-W {scriptout}" overwrite script file */
2118 if (scriptout != NULL)
2119 goto scripterror;
2120 if ((scriptout = mch_fopen(argv[0],
2121 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2122 {
2123 mch_errmsg(_("Cannot open for script output: \""));
2124 mch_errmsg(argv[0]);
2125 mch_errmsg("\"\n");
2126 mch_exit(2);
2127 }
2128 break;
2129
2130#ifdef FEAT_GUI_W32
2131 case 'P': /* "-P {parent title}" MDI parent */
2132 gui_mch_set_parent(argv[0]);
2133 break;
2134#endif
2135 }
2136 }
2137 }
2138
2139 /*
2140 * File name argument.
2141 */
2142 else
2143 {
2144 argv_idx = -1; /* skip to next argument */
2145
2146 /* Check for only one type of editing. */
2147 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2148 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2149 parmp->edit_type = EDIT_FILE;
2150
2151#ifdef MSWIN
2152 /* Remember if the argument was a full path before changing
2153 * slashes to backslashes. */
2154 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2155 parmp->full_path = TRUE;
2156#endif
2157
2158 /* Add the file to the global argument list. */
2159 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2160 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2161 mch_exit(2);
2162#ifdef FEAT_DIFF
2163 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2164 && !mch_isdir(alist_name(&GARGLIST[0])))
2165 {
2166 char_u *r;
2167
2168 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2169 if (r != NULL)
2170 {
2171 vim_free(p);
2172 p = r;
2173 }
2174 }
2175#endif
2176#if defined(__CYGWIN32__) && !defined(WIN32)
2177 /*
2178 * If vim is invoked by non-Cygwin tools, convert away any
2179 * DOS paths, so things like .swp files are created correctly.
2180 * Look for evidence of non-Cygwin paths before we bother.
2181 * This is only for when using the Unix files.
2182 */
2183 if (strpbrk(p, "\\:") != NULL)
2184 {
2185 char posix_path[PATH_MAX];
2186
2187 cygwin_conv_to_posix_path(p, posix_path);
2188 vim_free(p);
2189 p = vim_strsave(posix_path);
2190 if (p == NULL)
2191 mch_exit(2);
2192 }
2193#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002194
2195#ifdef USE_FNAME_CASE
2196 /* Make the case of the file name match the actual file. */
2197 fname_case(p, 0);
2198#endif
2199
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002200 alist_add(&global_alist, p,
2201#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
Bram Moolenaar231334e2005-07-25 20:46:57 +00002202 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002203#else
2204 2 /* add buffer number now and use curbuf */
2205#endif
2206 );
2207
2208#if defined(FEAT_MBYTE) && defined(WIN32)
2209 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002210 /* Remember this argument has been added to the argument list.
2211 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002212 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2213 parmp->diff_mode);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002214 }
2215#endif
2216 }
2217
2218 /*
2219 * If there are no more letters after the current "-", go to next
2220 * argument. argv_idx is set to -1 when the current argument is to be
2221 * skipped.
2222 */
2223 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2224 {
2225 --argc;
2226 ++argv;
2227 argv_idx = 1;
2228 }
2229 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002230
2231#ifdef FEAT_EVAL
2232 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2233 * one. */
2234 if (parmp->n_commands > 0)
2235 {
2236 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2237 if (p != NULL)
2238 {
2239 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2240 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2241 vim_free(p);
2242 }
2243 }
2244#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002245}
2246
2247/*
2248 * Print a warning if stdout is not a terminal.
2249 * When starting in Ex mode and commands come from a file, set Silent mode.
2250 */
2251 static void
2252check_tty(parmp)
2253 mparm_T *parmp;
2254{
2255 int input_isatty; /* is active input a terminal? */
2256
2257 input_isatty = mch_input_isatty();
2258 if (exmode_active)
2259 {
2260 if (!input_isatty)
2261 silent_mode = TRUE;
2262 }
2263 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2264#ifdef FEAT_GUI
2265 /* don't want the delay when started from the desktop */
2266 && !gui.starting
2267#endif
2268 )
2269 {
2270#ifdef NBDEBUG
2271 /*
2272 * This shouldn't be necessary. But if I run netbeans with the log
2273 * output coming to the console and XOpenDisplay fails, I get vim
2274 * trying to start with input/output to my console tty. This fills my
2275 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002276 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002277 */
2278 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2279 {
2280 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2281 exit(1);
2282 }
2283#endif
2284 if (!parmp->stdout_isatty)
2285 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2286 if (!input_isatty)
2287 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2288 out_flush();
2289 if (scriptin[0] == NULL)
2290 ui_delay(2000L, TRUE);
2291 TIME_MSG("Warning delay");
2292 }
2293}
2294
2295/*
2296 * Read text from stdin.
2297 */
2298 static void
2299read_stdin()
2300{
2301 int i;
2302
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002303#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002304 /* When getting the ATTENTION prompt here, use a dialog */
2305 swap_exists_action = SEA_DIALOG;
2306#endif
2307 no_wait_return = TRUE;
2308 i = msg_didany;
2309 set_buflisted(TRUE);
2310 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2311 no_wait_return = FALSE;
2312 msg_didany = i;
2313 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002314#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002315 check_swap_exists_action();
2316#endif
2317#if !(defined(AMIGA) || defined(MACOS))
2318 /*
2319 * Close stdin and dup it from stderr. Required for GPM to work
2320 * properly, and for running external commands.
2321 * Is there any other system that cannot do this?
2322 */
2323 close(0);
2324 dup(2);
2325#endif
2326}
2327
2328/*
2329 * Create the requested number of windows and edit buffers in them.
2330 * Also does recovery if "recoverymode" set.
2331 */
2332/*ARGSUSED*/
2333 static void
2334create_windows(parmp)
2335 mparm_T *parmp;
2336{
2337#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002338 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002339 int done = 0;
2340
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002341 /*
2342 * Create the number of windows that was requested.
2343 */
2344 if (parmp->window_count == -1) /* was not set */
2345 parmp->window_count = 1;
2346 if (parmp->window_count == 0)
2347 parmp->window_count = GARGCOUNT;
2348 if (parmp->window_count > 1)
2349 {
2350 /* Don't change the windows if there was a command in .vimrc that
2351 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002352 if (parmp->window_layout == 0)
2353 parmp->window_layout = WIN_HOR;
2354 if (parmp->window_layout == WIN_TABS)
2355 {
2356 parmp->window_count = make_tabpages(parmp->window_count);
2357 TIME_MSG("making tab pages");
2358 }
2359 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002360 {
2361 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002362 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002363 TIME_MSG("making windows");
2364 }
2365 else
2366 parmp->window_count = win_count();
2367 }
2368 else
2369 parmp->window_count = 1;
2370#endif
2371
2372 if (recoverymode) /* do recover */
2373 {
2374 msg_scroll = TRUE; /* scroll message up */
2375 ml_recover();
2376 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2377 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002378 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002379 }
2380 else
2381 {
2382 /*
2383 * Open a buffer for windows that don't have one yet.
2384 * Commands in the .vimrc might have loaded a file or split the window.
2385 * Watch out for autocommands that delete a window.
2386 */
2387#ifdef FEAT_AUTOCMD
2388 /*
2389 * Don't execute Win/Buf Enter/Leave autocommands here
2390 */
2391 ++autocmd_no_enter;
2392 ++autocmd_no_leave;
2393#endif
2394#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002395 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002396 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002397 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002398 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002399 {
2400 if (parmp->window_layout == WIN_TABS)
2401 goto_tabpage(1);
2402 else
2403 curwin = firstwin;
2404 }
2405 else if (parmp->window_layout == WIN_TABS)
2406 {
2407 if (curtab->tp_next == NULL)
2408 break;
2409 goto_tabpage(0);
2410 }
2411 else
2412 {
2413 if (curwin->w_next == NULL)
2414 break;
2415 curwin = curwin->w_next;
2416 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002417 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002418#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002419 curbuf = curwin->w_buffer;
2420 if (curbuf->b_ml.ml_mfp == NULL)
2421 {
2422#ifdef FEAT_FOLDING
2423 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2424 if (p_fdls >= 0)
2425 curwin->w_p_fdl = p_fdls;
2426#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002427#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002428 /* When getting the ATTENTION prompt here, use a dialog */
2429 swap_exists_action = SEA_DIALOG;
2430#endif
2431 set_buflisted(TRUE);
2432 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2433
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002434#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002435 if (swap_exists_action == SEA_QUIT)
2436 {
2437 if (got_int || only_one_window())
2438 {
2439 /* abort selected or quit and only one window */
2440 did_emsg = FALSE; /* avoid hit-enter prompt */
2441 getout(1);
2442 }
2443 /* We can't close the window, it would disturb what
2444 * happens next. Clear the file name and set the arg
2445 * index to -1 to delete it later. */
2446 setfname(curbuf, NULL, NULL, FALSE);
2447 curwin->w_arg_idx = -1;
2448 swap_exists_action = SEA_NONE;
2449 }
2450 else
2451 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002452#endif
2453#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002454 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002455#endif
2456 }
2457#ifdef FEAT_WINDOWS
2458 ui_breakcheck();
2459 if (got_int)
2460 {
2461 (void)vgetc(); /* only break the file loading, not the rest */
2462 break;
2463 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002464 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002465#endif
2466#ifdef FEAT_WINDOWS
2467 if (parmp->window_layout == WIN_TABS)
2468 goto_tabpage(1);
2469 else
2470 curwin = firstwin;
2471 curbuf = curwin->w_buffer;
2472#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002473#ifdef FEAT_AUTOCMD
2474 --autocmd_no_enter;
2475 --autocmd_no_leave;
2476#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002477 }
2478}
2479
2480#ifdef FEAT_WINDOWS
2481 /*
2482 * If opened more than one window, start editing files in the other
2483 * windows. make_windows() has already opened the windows.
2484 */
2485 static void
2486edit_buffers(parmp)
2487 mparm_T *parmp;
2488{
2489 int arg_idx; /* index in argument list */
2490 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002491 int advance = TRUE;
2492 buf_T *old_curbuf;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002493
2494# ifdef FEAT_AUTOCMD
2495 /*
2496 * Don't execute Win/Buf Enter/Leave autocommands here
2497 */
2498 ++autocmd_no_enter;
2499 ++autocmd_no_leave;
2500# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002501
2502 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2503 if (curwin->w_arg_idx == -1)
2504 {
2505 win_close(curwin, TRUE);
2506 advance = FALSE;
2507 }
2508
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002509 arg_idx = 1;
2510 for (i = 1; i < parmp->window_count; ++i)
2511 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002512 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2513 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002514 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002515 ++arg_idx;
2516 win_close(curwin, TRUE);
2517 advance = FALSE;
2518 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002519 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002520
Bram Moolenaar84212822006-11-07 21:59:47 +00002521 if (advance)
2522 {
2523 if (parmp->window_layout == WIN_TABS)
2524 {
2525 if (curtab->tp_next == NULL) /* just checking */
2526 break;
2527 goto_tabpage(0);
2528 }
2529 else
2530 {
2531 if (curwin->w_next == NULL) /* just checking */
2532 break;
2533 win_enter(curwin->w_next, FALSE);
2534 }
2535 }
2536 advance = TRUE;
2537
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002538 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002539 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002540 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2541 {
2542 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002543 /* Edit file from arg list, if there is one. When "Quit" selected
2544 * at the ATTENTION prompt close the window. */
2545 old_curbuf = curbuf;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002546 (void)do_ecmd(0, arg_idx < GARGCOUNT
2547 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2548 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
Bram Moolenaar84212822006-11-07 21:59:47 +00002549 if (curbuf == old_curbuf)
2550 {
2551 if (got_int || only_one_window())
2552 {
2553 /* abort selected or quit and only one window */
2554 did_emsg = FALSE; /* avoid hit-enter prompt */
2555 getout(1);
2556 }
2557 win_close(curwin, TRUE);
2558 advance = FALSE;
2559 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002560 if (arg_idx == GARGCOUNT - 1)
2561 arg_had_last = TRUE;
2562 ++arg_idx;
2563 }
2564 ui_breakcheck();
2565 if (got_int)
2566 {
2567 (void)vgetc(); /* only break the file loading, not the rest */
2568 break;
2569 }
2570 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002571
2572 if (parmp->window_layout == WIN_TABS)
2573 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002574# ifdef FEAT_AUTOCMD
2575 --autocmd_no_enter;
2576# endif
2577 win_enter(firstwin, FALSE); /* back to first window */
2578# ifdef FEAT_AUTOCMD
2579 --autocmd_no_leave;
2580# endif
2581 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002582 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002583 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2584}
2585#endif /* FEAT_WINDOWS */
2586
2587/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002588 * Execute the commands from --cmd arguments "cmds[cnt]".
2589 */
2590 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002591exe_pre_commands(parmp)
2592 mparm_T *parmp;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002593{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002594 char_u **cmds = parmp->pre_commands;
2595 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002596 int i;
2597
2598 if (cnt > 0)
2599 {
2600 curwin->w_cursor.lnum = 0; /* just in case.. */
2601 sourcing_name = (char_u *)_("pre-vimrc command line");
2602# ifdef FEAT_EVAL
2603 current_SID = SID_CMDARG;
2604# endif
2605 for (i = 0; i < cnt; ++i)
2606 do_cmdline_cmd(cmds[i]);
2607 sourcing_name = NULL;
2608# ifdef FEAT_EVAL
2609 current_SID = 0;
2610# endif
2611 TIME_MSG("--cmd commands");
2612 }
2613}
2614
2615/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002616 * Execute "+", "-c" and "-S" arguments.
2617 */
2618 static void
2619exe_commands(parmp)
2620 mparm_T *parmp;
2621{
2622 int i;
2623
2624 /*
2625 * We start commands on line 0, make "vim +/pat file" match a
2626 * pattern on line 1. But don't move the cursor when an autocommand
2627 * with g`" was used.
2628 */
2629 msg_scroll = TRUE;
2630 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2631 curwin->w_cursor.lnum = 0;
2632 sourcing_name = (char_u *)"command line";
2633#ifdef FEAT_EVAL
2634 current_SID = SID_CARG;
2635#endif
2636 for (i = 0; i < parmp->n_commands; ++i)
2637 {
2638 do_cmdline_cmd(parmp->commands[i]);
2639 if (parmp->cmds_tofree[i])
2640 vim_free(parmp->commands[i]);
2641 }
2642 sourcing_name = NULL;
2643#ifdef FEAT_EVAL
2644 current_SID = 0;
2645#endif
2646 if (curwin->w_cursor.lnum == 0)
2647 curwin->w_cursor.lnum = 1;
2648
2649 if (!exmode_active)
2650 msg_scroll = FALSE;
2651
2652#ifdef FEAT_QUICKFIX
2653 /* When started with "-q errorfile" jump to first error again. */
2654 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002655 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002656#endif
2657 TIME_MSG("executing command arguments");
2658}
2659
2660/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002661 * Source startup scripts.
2662 */
2663 static void
2664source_startup_scripts(parmp)
2665 mparm_T *parmp;
2666{
2667 int i;
2668
2669 /*
2670 * For "evim" source evim.vim first of all, so that the user can overrule
2671 * any things he doesn't like.
2672 */
2673 if (parmp->evim_mode)
2674 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002675 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002676 TIME_MSG("source evim file");
2677 }
2678
2679 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002680 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002681 * nothing else.
2682 */
2683 if (parmp->use_vimrc != NULL)
2684 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002685 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2686 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002687 {
2688#ifdef FEAT_GUI
2689 if (use_gvimrc == NULL) /* don't load gvimrc either */
2690 use_gvimrc = parmp->use_vimrc;
2691#endif
2692 if (parmp->use_vimrc[2] == 'N')
2693 p_lpl = FALSE; /* don't load plugins either */
2694 }
2695 else
2696 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002697 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002698 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2699 }
2700 }
2701 else if (!silent_mode)
2702 {
2703#ifdef AMIGA
2704 struct Process *proc = (struct Process *)FindTask(0L);
2705 APTR save_winptr = proc->pr_WindowPtr;
2706
2707 /* Avoid a requester here for a volume that doesn't exist. */
2708 proc->pr_WindowPtr = (APTR)-1L;
2709#endif
2710
2711 /*
2712 * Get system wide defaults, if the file name is defined.
2713 */
2714#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002715 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002716#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002717#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002718 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002719#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002720
2721 /*
2722 * Try to read initialization commands from the following places:
2723 * - environment variable VIMINIT
2724 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2725 * - second user vimrc file ($VIM/.vimrc for Dos)
2726 * - environment variable EXINIT
2727 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2728 * - second user exrc file ($VIM/.exrc for Dos)
2729 * The first that exists is used, the rest is ignored.
2730 */
2731 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2732 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002733 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002734#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002735 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2736 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002737#endif
2738#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002739 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2740 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002741#endif
2742 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002743 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002744 {
2745#ifdef USR_EXRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002746 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002747#endif
2748 }
2749 }
2750
2751 /*
2752 * Read initialization commands from ".vimrc" or ".exrc" in current
2753 * directory. This is only done if the 'exrc' option is set.
2754 * Because of security reasons we disallow shell and write commands
2755 * now, except for unix if the file is owned by the user or 'secure'
2756 * option has been reset in environment of global ".exrc" or ".vimrc".
2757 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2758 * SYS_VIMRC_FILE.
2759 */
2760 if (p_exrc)
2761 {
2762#if defined(UNIX) || defined(VMS)
2763 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2764 if (!file_owned(VIMRC_FILE))
2765#endif
2766 secure = p_secure;
2767
2768 i = FAIL;
2769 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2770 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2771#ifdef USR_VIMRC_FILE2
2772 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2773 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2774#endif
2775#ifdef USR_VIMRC_FILE3
2776 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2777 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2778#endif
2779#ifdef SYS_VIMRC_FILE
2780 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2781 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2782#endif
2783 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002784 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002785
2786 if (i == FAIL)
2787 {
2788#if defined(UNIX) || defined(VMS)
2789 /* if ".exrc" is not owned by user set 'secure' mode */
2790 if (!file_owned(EXRC_FILE))
2791 secure = p_secure;
2792 else
2793 secure = 0;
2794#endif
2795 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2796 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2797#ifdef USR_EXRC_FILE2
2798 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2799 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2800#endif
2801 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002802 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002803 }
2804 }
2805 if (secure == 2)
2806 need_wait_return = TRUE;
2807 secure = 0;
2808#ifdef AMIGA
2809 proc->pr_WindowPtr = save_winptr;
2810#endif
2811 }
2812 TIME_MSG("sourcing vimrc file(s)");
2813}
2814
2815/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002816 * Setup to start using the GUI. Exit with an error when not available.
2817 */
2818 static void
2819main_start_gui()
2820{
2821#ifdef FEAT_GUI
2822 gui.starting = TRUE; /* start GUI a bit later */
2823#else
2824 mch_errmsg(_(e_nogvim));
2825 mch_errmsg("\n");
2826 mch_exit(2);
2827#endif
2828}
2829
2830/*
Bram Moolenaar49325942007-05-10 19:19:59 +00002831 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002832 * Returns FAIL if the environment variable was not executed, OK otherwise.
2833 */
2834 int
2835process_env(env, is_viminit)
2836 char_u *env;
2837 int is_viminit; /* when TRUE, called for VIMINIT */
2838{
2839 char_u *initstr;
2840 char_u *save_sourcing_name;
2841 linenr_T save_sourcing_lnum;
2842#ifdef FEAT_EVAL
2843 scid_T save_sid;
2844#endif
2845
2846 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2847 {
2848 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002849 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002850 save_sourcing_name = sourcing_name;
2851 save_sourcing_lnum = sourcing_lnum;
2852 sourcing_name = env;
2853 sourcing_lnum = 0;
2854#ifdef FEAT_EVAL
2855 save_sid = current_SID;
2856 current_SID = SID_ENV;
2857#endif
2858 do_cmdline_cmd(initstr);
2859 sourcing_name = save_sourcing_name;
2860 sourcing_lnum = save_sourcing_lnum;
2861#ifdef FEAT_EVAL
2862 current_SID = save_sid;;
2863#endif
2864 return OK;
2865 }
2866 return FAIL;
2867}
2868
2869#if defined(UNIX) || defined(VMS)
2870/*
2871 * Return TRUE if we are certain the user owns the file "fname".
2872 * Used for ".vimrc" and ".exrc".
2873 * Use both stat() and lstat() for extra security.
2874 */
2875 static int
2876file_owned(fname)
2877 char *fname;
2878{
2879 struct stat s;
2880# ifdef UNIX
2881 uid_t uid = getuid();
2882# else /* VMS */
2883 uid_t uid = ((getgid() << 16) | getuid());
2884# endif
2885
2886 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2887# ifdef HAVE_LSTAT
2888 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2889# endif
2890 );
2891}
2892#endif
2893
2894/*
2895 * Give an error message main_errors["n"] and exit.
2896 */
2897 static void
2898mainerr(n, str)
2899 int n; /* one of the ME_ defines */
2900 char_u *str; /* extra argument or NULL */
2901{
2902#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2903 reset_signals(); /* kill us with CTRL-C here, if you like */
2904#endif
2905
2906 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002907 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002908 mch_errmsg(_(main_errors[n]));
2909 if (str != NULL)
2910 {
2911 mch_errmsg(": \"");
2912 mch_errmsg((char *)str);
2913 mch_errmsg("\"");
2914 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002915 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002916
2917 mch_exit(1);
2918}
2919
2920 void
2921mainerr_arg_missing(str)
2922 char_u *str;
2923{
2924 mainerr(ME_ARG_MISSING, str);
2925}
2926
2927/*
2928 * print a message with three spaces prepended and '\n' appended.
2929 */
2930 static void
2931main_msg(s)
2932 char *s;
2933{
2934 mch_msg(" ");
2935 mch_msg(s);
2936 mch_msg("\n");
2937}
2938
2939/*
2940 * Print messages for "vim -h" or "vim --help" and exit.
2941 */
2942 static void
2943usage()
2944{
2945 int i;
2946 static char *(use[]) =
2947 {
2948 N_("[file ..] edit specified file(s)"),
2949 N_("- read text from stdin"),
2950 N_("-t tag edit file where tag is defined"),
2951#ifdef FEAT_QUICKFIX
2952 N_("-q [errorfile] edit file with first error")
2953#endif
2954 };
2955
2956#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2957 reset_signals(); /* kill us with CTRL-C here, if you like */
2958#endif
2959
2960 mch_msg(longVersion);
2961 mch_msg(_("\n\nusage:"));
2962 for (i = 0; ; ++i)
2963 {
2964 mch_msg(_(" vim [arguments] "));
2965 mch_msg(_(use[i]));
2966 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
2967 break;
2968 mch_msg(_("\n or:"));
2969 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002970#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00002971 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002972#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002973
2974 mch_msg(_("\n\nArguments:\n"));
2975 main_msg(_("--\t\t\tOnly file names after this"));
2976#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2977 main_msg(_("--literal\t\tDon't expand wildcards"));
2978#endif
2979#ifdef FEAT_OLE
2980 main_msg(_("-register\t\tRegister this gvim for OLE"));
2981 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
2982#endif
2983#ifdef FEAT_GUI
2984 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
2985 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
2986#endif
2987 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
2988 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
2989 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
2990#ifdef FEAT_DIFF
2991 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
2992#endif
2993 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
2994 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
2995 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
2996 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
2997 main_msg(_("-M\t\t\tModifications in text not allowed"));
2998 main_msg(_("-b\t\t\tBinary mode"));
2999#ifdef FEAT_LISP
3000 main_msg(_("-l\t\t\tLisp mode"));
3001#endif
3002 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3003 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003004 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3005#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003006 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003007#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003008 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3009 main_msg(_("-r\t\t\tList swap files and exit"));
3010 main_msg(_("-r (with file name)\tRecover crashed session"));
3011 main_msg(_("-L\t\t\tSame as -r"));
3012#ifdef AMIGA
3013 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3014 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3015#endif
3016#ifdef FEAT_ARABIC
3017 main_msg(_("-A\t\t\tstart in Arabic mode"));
3018#endif
3019#ifdef FEAT_RIGHTLEFT
3020 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3021#endif
3022#ifdef FEAT_FKMAP
3023 main_msg(_("-F\t\t\tStart in Farsi mode"));
3024#endif
3025 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3026 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3027#ifdef FEAT_GUI
3028 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3029#endif
3030 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003031#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003032 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003033 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3034 main_msg(_("-O[N]\t\tLike -o but split vertically"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003035#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003036 main_msg(_("+\t\t\tStart at end of file"));
3037 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003038 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003039 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3040 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3041 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3042 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3043 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3044#ifdef FEAT_CRYPT
3045 main_msg(_("-x\t\t\tEdit encrypted files"));
3046#endif
3047#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3048# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3049 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3050# endif
3051 main_msg(_("-X\t\t\tDo not connect to X server"));
3052#endif
3053#ifdef FEAT_CLIENTSERVER
3054 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3055 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3056 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3057 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003058# ifdef FEAT_WINDOWS
3059 main_msg(_("--remote-tab <files> As --remote but open tab page for each file"));
3060# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003061 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3062 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3063 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3064 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3065#endif
3066#ifdef FEAT_VIMINFO
3067 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3068#endif
3069 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3070 main_msg(_("--version\t\tPrint version information and exit"));
3071
3072#ifdef FEAT_GUI_X11
3073# ifdef FEAT_GUI_MOTIF
3074 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3075# else
3076# ifdef FEAT_GUI_ATHENA
3077# ifdef FEAT_GUI_NEXTAW
3078 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3079# else
3080 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3081# endif
3082# endif
3083# endif
3084 main_msg(_("-display <display>\tRun vim on <display>"));
3085 main_msg(_("-iconic\t\tStart vim iconified"));
3086# if 0
3087 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3088 mch_msg(_("\t\t\t (Unimplemented)\n"));
3089# endif
3090 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3091 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3092 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3093 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3094 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3095 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3096 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3097 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3098# ifdef FEAT_GUI_ATHENA
3099 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3100# endif
3101 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3102 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3103 main_msg(_("-xrm <resource>\tSet the specified resource"));
3104#endif /* FEAT_GUI_X11 */
3105#if defined(FEAT_GUI) && defined(RISCOS)
3106 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3107 main_msg(_("--columns <number>\tInitial width of window in columns"));
3108 main_msg(_("--rows <number>\tInitial height of window in rows"));
3109#endif
3110#ifdef FEAT_GUI_GTK
3111 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3112 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3113 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3114 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3115 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3116# ifdef HAVE_GTK2
3117 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3118# endif
3119 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3120#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003121#ifdef FEAT_GUI_W32
3122 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3123#endif
3124
3125#ifdef FEAT_GUI_GNOME
3126 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3127 if (gui.starting)
3128 mch_msg("\n");
3129 else
3130#endif
3131 mch_exit(0);
3132}
3133
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003134#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003135/*
3136 * Check the result of the ATTENTION dialog:
3137 * When "Quit" selected, exit Vim.
3138 * When "Recover" selected, recover the file.
3139 */
3140 static void
3141check_swap_exists_action()
3142{
3143 if (swap_exists_action == SEA_QUIT)
3144 getout(1);
3145 handle_swap_exists(NULL);
3146}
3147#endif
3148
3149#if defined(STARTUPTIME) || defined(PROTO)
3150static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3151
3152static struct timeval prev_timeval;
3153
3154/*
3155 * Save the previous time before doing something that could nest.
3156 * set "*tv_rel" to the time elapsed so far.
3157 */
3158 void
3159time_push(tv_rel, tv_start)
3160 void *tv_rel, *tv_start;
3161{
3162 *((struct timeval *)tv_rel) = prev_timeval;
3163 gettimeofday(&prev_timeval, NULL);
3164 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3165 - ((struct timeval *)tv_rel)->tv_usec;
3166 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3167 - ((struct timeval *)tv_rel)->tv_sec;
3168 if (((struct timeval *)tv_rel)->tv_usec < 0)
3169 {
3170 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3171 --((struct timeval *)tv_rel)->tv_sec;
3172 }
3173 *(struct timeval *)tv_start = prev_timeval;
3174}
3175
3176/*
3177 * Compute the previous time after doing something that could nest.
3178 * Subtract "*tp" from prev_timeval;
3179 * Note: The arguments are (void *) to avoid trouble with systems that don't
3180 * have struct timeval.
3181 */
3182 void
3183time_pop(tp)
3184 void *tp; /* actually (struct timeval *) */
3185{
3186 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3187 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3188 if (prev_timeval.tv_usec < 0)
3189 {
3190 prev_timeval.tv_usec += 1000000;
3191 --prev_timeval.tv_sec;
3192 }
3193}
3194
3195 static void
3196time_diff(then, now)
3197 struct timeval *then;
3198 struct timeval *now;
3199{
3200 long usec;
3201 long msec;
3202
3203 usec = now->tv_usec - then->tv_usec;
3204 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3205 usec = usec % 1000L;
3206 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3207}
3208
3209 void
3210time_msg(msg, tv_start)
3211 char *msg;
3212 void *tv_start; /* only for do_source: start time; actually
3213 (struct timeval *) */
3214{
3215 static struct timeval start;
3216 struct timeval now;
3217
3218 if (time_fd != NULL)
3219 {
3220 if (strstr(msg, "STARTING") != NULL)
3221 {
3222 gettimeofday(&start, NULL);
3223 prev_timeval = start;
3224 fprintf(time_fd, "\n\ntimes in msec\n");
3225 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3226 fprintf(time_fd, " clock elapsed: other lines\n\n");
3227 }
3228 gettimeofday(&now, NULL);
3229 time_diff(&start, &now);
3230 if (((struct timeval *)tv_start) != NULL)
3231 {
3232 fprintf(time_fd, " ");
3233 time_diff(((struct timeval *)tv_start), &now);
3234 }
3235 fprintf(time_fd, " ");
3236 time_diff(&prev_timeval, &now);
3237 prev_timeval = now;
3238 fprintf(time_fd, ": %s\n", msg);
3239 }
3240}
3241
3242# ifdef WIN3264
3243/*
3244 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3245 */
3246 int
3247gettimeofday(struct timeval *tv, char *dummy)
3248{
3249 long t = clock();
3250 tv->tv_sec = t / CLOCKS_PER_SEC;
3251 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3252 return 0;
3253}
3254# endif
3255
3256#endif
3257
3258#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3259
3260/*
3261 * Common code for the X command server and the Win32 command server.
3262 */
3263
Bram Moolenaareb94e552006-03-11 21:35:11 +00003264static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003265
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003266/*
3267 * Do the client-server stuff, unless "--servername ''" was used.
3268 */
3269 static void
3270exec_on_server(parmp)
3271 mparm_T *parmp;
3272{
3273 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3274 {
3275# ifdef WIN32
3276 /* Initialise the client/server messaging infrastructure. */
3277 serverInitMessaging();
3278# endif
3279
3280 /*
3281 * When a command server argument was found, execute it. This may
3282 * exit Vim when it was successful. Otherwise it's executed further
3283 * on. Remember the encoding used here in "serverStrEnc".
3284 */
3285 if (parmp->serverArg)
3286 {
3287 cmdsrv_main(&parmp->argc, parmp->argv,
3288 parmp->serverName_arg, &parmp->serverStr);
3289# ifdef FEAT_MBYTE
3290 parmp->serverStrEnc = vim_strsave(p_enc);
3291# endif
3292 }
3293
3294 /* If we're still running, get the name to register ourselves.
3295 * On Win32 can register right now, for X11 need to setup the
3296 * clipboard first, it's further down. */
3297 parmp->servername = serverMakeName(parmp->serverName_arg,
3298 parmp->argv[0]);
3299# ifdef WIN32
3300 if (parmp->servername != NULL)
3301 {
3302 serverSetName(parmp->servername);
3303 vim_free(parmp->servername);
3304 }
3305# endif
3306 }
3307}
3308
3309/*
3310 * Prepare for running as a Vim server.
3311 */
3312 static void
3313prepare_server(parmp)
3314 mparm_T *parmp;
3315{
3316# if defined(FEAT_X11)
3317 /*
3318 * Register for remote command execution with :serversend and --remote
3319 * unless there was a -X or a --servername '' on the command line.
3320 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003321 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003322 */
3323 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3324# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003325 (gui.in_use
3326# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003327 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003328# endif
3329 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003330# endif
3331 parmp->serverName_arg != NULL))
3332 {
3333 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3334 vim_free(parmp->servername);
3335 TIME_MSG("register server name");
3336 }
3337 else
3338 serverDelayedStartName = parmp->servername;
3339# endif
3340
3341 /*
3342 * Execute command ourselves if we're here because the send failed (or
3343 * else we would have exited above).
3344 */
3345 if (parmp->serverStr != NULL)
3346 {
3347 char_u *p;
3348
3349 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3350 parmp->serverStr, &p));
3351 vim_free(p);
3352 }
3353}
3354
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003355 static void
3356cmdsrv_main(argc, argv, serverName_arg, serverStr)
3357 int *argc;
3358 char **argv;
3359 char_u *serverName_arg;
3360 char_u **serverStr;
3361{
3362 char_u *res;
3363 int i;
3364 char_u *sname;
3365 int ret;
3366 int didone = FALSE;
3367 int exiterr = 0;
3368 char **newArgV = argv + 1;
3369 int newArgC = 1,
3370 Argc = *argc;
3371 int argtype;
3372#define ARGTYPE_OTHER 0
3373#define ARGTYPE_EDIT 1
3374#define ARGTYPE_EDIT_WAIT 2
3375#define ARGTYPE_SEND 3
3376 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003377 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003378# ifndef FEAT_X11
3379 HWND srv;
3380# else
3381 Window srv;
3382
3383 setup_term_clip();
3384# endif
3385
3386 sname = serverMakeName(serverName_arg, argv[0]);
3387 if (sname == NULL)
3388 return;
3389
3390 /*
3391 * Execute the command server related arguments and remove them
3392 * from the argc/argv array; We may have to return into main()
3393 */
3394 for (i = 1; i < Argc; i++)
3395 {
3396 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003397 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003398 {
3399 for (; i < *argc; i++)
3400 {
3401 *newArgV++ = argv[i];
3402 newArgC++;
3403 }
3404 break;
3405 }
3406
Bram Moolenaareb94e552006-03-11 21:35:11 +00003407 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003408 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003409 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3410 {
3411 char *p = argv[i] + 8;
3412
3413 argtype = ARGTYPE_EDIT;
3414 while (*p != NUL)
3415 {
3416 if (STRNICMP(p, "-wait", 5) == 0)
3417 {
3418 argtype = ARGTYPE_EDIT_WAIT;
3419 p += 5;
3420 }
3421 else if (STRNICMP(p, "-silent", 7) == 0)
3422 {
3423 silent = TRUE;
3424 p += 7;
3425 }
3426 else if (STRNICMP(p, "-tab", 4) == 0)
3427 {
3428 tabs = TRUE;
3429 p += 4;
3430 }
3431 else
3432 {
3433 argtype = ARGTYPE_OTHER;
3434 break;
3435 }
3436 }
3437 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003438 else
3439 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003440
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003441 if (argtype != ARGTYPE_OTHER)
3442 {
3443 if (i == *argc - 1)
3444 mainerr_arg_missing((char_u *)argv[i]);
3445 if (argtype == ARGTYPE_SEND)
3446 {
3447 *serverStr = (char_u *)argv[i + 1];
3448 i++;
3449 }
3450 else
3451 {
3452 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003453 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003454 if (*serverStr == NULL)
3455 {
3456 /* Probably out of memory, exit. */
3457 didone = TRUE;
3458 exiterr = 1;
3459 break;
3460 }
3461 Argc = i;
3462 }
3463# ifdef FEAT_X11
3464 if (xterm_dpy == NULL)
3465 {
3466 mch_errmsg(_("No display"));
3467 ret = -1;
3468 }
3469 else
3470 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3471 NULL, &srv, 0, 0, silent);
3472# else
3473 /* Win32 always works? */
3474 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3475# endif
3476 if (ret < 0)
3477 {
3478 if (argtype == ARGTYPE_SEND)
3479 {
3480 /* Failed to send, abort. */
3481 mch_errmsg(_(": Send failed.\n"));
3482 didone = TRUE;
3483 exiterr = 1;
3484 }
3485 else if (!silent)
3486 /* Let vim start normally. */
3487 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3488 break;
3489 }
3490
3491# ifdef FEAT_GUI_W32
3492 /* Guess that when the server name starts with "g" it's a GUI
3493 * server, which we can bring to the foreground here.
3494 * Foreground() in the server doesn't work very well. */
3495 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3496 SetForegroundWindow(srv);
3497# endif
3498
3499 /*
3500 * For --remote-wait: Wait until the server did edit each
3501 * file. Also detect that the server no longer runs.
3502 */
3503 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3504 {
3505 int numFiles = *argc - i - 1;
3506 int j;
3507 char_u *done = alloc(numFiles);
3508 char_u *p;
3509# ifdef FEAT_GUI_W32
3510 NOTIFYICONDATA ni;
3511 int count = 0;
3512 extern HWND message_window;
3513# endif
3514
3515 if (numFiles > 0 && argv[i + 1][0] == '+')
3516 /* Skip "+cmd" argument, don't wait for it to be edited. */
3517 --numFiles;
3518
3519# ifdef FEAT_GUI_W32
3520 ni.cbSize = sizeof(ni);
3521 ni.hWnd = message_window;
3522 ni.uID = 0;
3523 ni.uFlags = NIF_ICON|NIF_TIP;
3524 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3525 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3526 Shell_NotifyIcon(NIM_ADD, &ni);
3527# endif
3528
3529 /* Wait for all files to unload in remote */
3530 memset(done, 0, numFiles);
3531 while (memchr(done, 0, numFiles) != NULL)
3532 {
3533# ifdef WIN32
3534 p = serverGetReply(srv, NULL, TRUE, TRUE);
3535 if (p == NULL)
3536 break;
3537# else
3538 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3539 break;
3540# endif
3541 j = atoi((char *)p);
3542 if (j >= 0 && j < numFiles)
3543 {
3544# ifdef FEAT_GUI_W32
3545 ++count;
3546 sprintf(ni.szTip, _("%d of %d edited"),
3547 count, numFiles);
3548 Shell_NotifyIcon(NIM_MODIFY, &ni);
3549# endif
3550 done[j] = 1;
3551 }
3552 }
3553# ifdef FEAT_GUI_W32
3554 Shell_NotifyIcon(NIM_DELETE, &ni);
3555# endif
3556 }
3557 }
3558 else if (STRICMP(argv[i], "--remote-expr") == 0)
3559 {
3560 if (i == *argc - 1)
3561 mainerr_arg_missing((char_u *)argv[i]);
3562# ifdef WIN32
3563 /* Win32 always works? */
3564 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3565 &res, NULL, 1, FALSE) < 0)
3566# else
3567 if (xterm_dpy == NULL)
3568 mch_errmsg(_("No display: Send expression failed.\n"));
3569 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3570 &res, NULL, 1, 1, FALSE) < 0)
3571# endif
3572 {
3573 if (res != NULL && *res != NUL)
3574 {
3575 /* Output error from remote */
3576 mch_errmsg((char *)res);
3577 vim_free(res);
3578 res = NULL;
3579 }
3580 mch_errmsg(_(": Send expression failed.\n"));
3581 }
3582 }
3583 else if (STRICMP(argv[i], "--serverlist") == 0)
3584 {
3585# ifdef WIN32
3586 /* Win32 always works? */
3587 res = serverGetVimNames();
3588# else
3589 if (xterm_dpy != NULL)
3590 res = serverGetVimNames(xterm_dpy);
3591# endif
3592 if (called_emsg)
3593 mch_errmsg("\n");
3594 }
3595 else if (STRICMP(argv[i], "--servername") == 0)
3596 {
3597 /* Alredy processed. Take it out of the command line */
3598 i++;
3599 continue;
3600 }
3601 else
3602 {
3603 *newArgV++ = argv[i];
3604 newArgC++;
3605 continue;
3606 }
3607 didone = TRUE;
3608 if (res != NULL && *res != NUL)
3609 {
3610 mch_msg((char *)res);
3611 if (res[STRLEN(res) - 1] != '\n')
3612 mch_msg("\n");
3613 }
3614 vim_free(res);
3615 }
3616
3617 if (didone)
3618 {
3619 display_errors(); /* display any collected messages */
3620 exit(exiterr); /* Mission accomplished - get out */
3621 }
3622
3623 /* Return back into main() */
3624 *argc = newArgC;
3625 vim_free(sname);
3626}
3627
3628/*
3629 * Build a ":drop" command to send to a Vim server.
3630 */
3631 static char_u *
Bram Moolenaareb94e552006-03-11 21:35:11 +00003632build_drop_cmd(filec, filev, tabs, sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003633 int filec;
3634 char **filev;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003635 int tabs; /* Use ":tab drop" instead of ":drop". */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003636 int sendReply;
3637{
3638 garray_T ga;
3639 int i;
3640 char_u *inicmd = NULL;
3641 char_u *p;
3642 char_u cwd[MAXPATHL];
3643
3644 if (filec > 0 && filev[0][0] == '+')
3645 {
3646 inicmd = (char_u *)filev[0] + 1;
3647 filev++;
3648 filec--;
3649 }
3650 /* Check if we have at least one argument. */
3651 if (filec <= 0)
3652 mainerr_arg_missing((char_u *)filev[-1]);
3653 if (mch_dirname(cwd, MAXPATHL) != OK)
3654 return NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003655 if ((p = vim_strsave_escaped_ext(cwd, PATH_ESC_CHARS, '\\', TRUE)) == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003656 return NULL;
3657 ga_init2(&ga, 1, 100);
3658 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3659 ga_concat(&ga, p);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003660 vim_free(p);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003661
3662 /* Call inputsave() so that a prompt for an encryption key works. */
3663 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3664 if (tabs)
3665 ga_concat(&ga, (char_u *)"tab ");
3666 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003667 for (i = 0; i < filec; i++)
3668 {
3669 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003670 * do it again in the Vim server. On MS-Windows only escape
3671 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003672 p = vim_strsave_escaped((char_u *)filev[i],
3673#ifdef UNIX
3674 PATH_ESC_CHARS
3675#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003676 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003677#endif
3678 );
3679 if (p == NULL)
3680 {
3681 vim_free(ga.ga_data);
3682 return NULL;
3683 }
3684 ga_concat(&ga, (char_u *)" ");
3685 ga_concat(&ga, p);
3686 vim_free(p);
3687 }
3688 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3689 * CTRL-\ CTRL-N again. */
3690 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3691 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3692 if (sendReply)
3693 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3694 ga_concat(&ga, (char_u *)"<CR>:");
3695 if (inicmd != NULL)
3696 {
3697 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3698 * the following commands to be inserted as text. Use a "|",
3699 * hopefully "inicmd" does allow this... */
3700 ga_concat(&ga, inicmd);
3701 ga_concat(&ga, (char_u *)"|");
3702 }
3703 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3704 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00003705 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003706 ga_append(&ga, NUL);
3707 return ga.ga_data;
3708}
3709
3710/*
3711 * Replace termcodes such as <CR> and insert as key presses if there is room.
3712 */
3713 void
3714server_to_input_buf(str)
3715 char_u *str;
3716{
3717 char_u *ptr = NULL;
3718 char_u *cpo_save = p_cpo;
3719
3720 /* Set 'cpoptions' the way we want it.
3721 * B set - backslashes are *not* treated specially
3722 * k set - keycodes are *not* reverse-engineered
3723 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003724 * The last but one parameter of replace_termcodes() is TRUE so that the
3725 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003726 */
3727 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003728 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003729 p_cpo = cpo_save;
3730
3731 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3732 {
3733 /*
3734 * Add the string to the input stream.
3735 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3736 *
3737 * First clear typed characters from the typeahead buffer, there could
3738 * be half a mapping there. Then append to the existing string, so
3739 * that multiple commands from a client are concatenated.
3740 */
3741 if (typebuf.tb_maplen < typebuf.tb_len)
3742 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3743 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3744
3745 /* Let input_available() know we inserted text in the typeahead
3746 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003747 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003748 }
3749 vim_free((char_u *)ptr);
3750}
3751
3752/*
3753 * Evaluate an expression that the client sent to a string.
3754 * Handles disabling error messages and disables debugging, otherwise Vim
3755 * hangs, waiting for "cont" to be typed.
3756 */
3757 char_u *
3758eval_client_expr_to_string(expr)
3759 char_u *expr;
3760{
3761 char_u *res;
3762 int save_dbl = debug_break_level;
3763 int save_ro = redir_off;
3764
3765 debug_break_level = -1;
3766 redir_off = 0;
3767 ++emsg_skip;
3768
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003769 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003770
3771 debug_break_level = save_dbl;
3772 redir_off = save_ro;
3773 --emsg_skip;
3774
Bram Moolenaar63a121b2005-12-11 21:36:39 +00003775 /* A client can tell us to redraw, but not to display the cursor, so do
3776 * that here. */
3777 setcursor();
3778 out_flush();
3779#ifdef FEAT_GUI
3780 if (gui.in_use)
3781 gui_update_cursor(FALSE, FALSE);
3782#endif
3783
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003784 return res;
3785}
3786
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003787/*
3788 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3789 * return an allocated string. Otherwise return "data".
3790 * "*tofree" is set to the result when it needs to be freed later.
3791 */
3792/*ARGSUSED*/
3793 char_u *
3794serverConvert(client_enc, data, tofree)
3795 char_u *client_enc;
3796 char_u *data;
3797 char_u **tofree;
3798{
3799 char_u *res = data;
3800
3801 *tofree = NULL;
3802# ifdef FEAT_MBYTE
3803 if (client_enc != NULL && p_enc != NULL)
3804 {
3805 vimconv_T vimconv;
3806
3807 vimconv.vc_type = CONV_NONE;
3808 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3809 && vimconv.vc_type != CONV_NONE)
3810 {
3811 res = string_convert(&vimconv, data, NULL);
3812 if (res == NULL)
3813 res = data;
3814 else
3815 *tofree = res;
3816 }
3817 convert_setup(&vimconv, NULL, NULL);
3818 }
3819# endif
3820 return res;
3821}
3822
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003823
3824/*
3825 * Make our basic server name: use the specified "arg" if given, otherwise use
3826 * the tail of the command "cmd" we were started with.
3827 * Return the name in allocated memory. This doesn't include a serial number.
3828 */
3829 static char_u *
3830serverMakeName(arg, cmd)
3831 char_u *arg;
3832 char *cmd;
3833{
3834 char_u *p;
3835
3836 if (arg != NULL && *arg != NUL)
3837 p = vim_strsave_up(arg);
3838 else
3839 {
3840 p = vim_strsave_up(gettail((char_u *)cmd));
3841 /* Remove .exe or .bat from the name. */
3842 if (p != NULL && vim_strchr(p, '.') != NULL)
3843 *vim_strchr(p, '.') = NUL;
3844 }
3845 return p;
3846}
3847#endif /* FEAT_CLIENTSERVER */
3848
3849/*
3850 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3851 */
3852#if defined(FEAT_FKMAP) || defined(PROTO)
3853# include "farsi.c"
3854#endif
3855
3856/*
3857 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3858 */
3859#if defined(FEAT_ARABIC) || defined(PROTO)
3860# include "arabic.c"
3861#endif