blob: 3c37698df8f29705e0dcfd6661a117a685e6e78d [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
748 * defined by termcapinit and redifined in .exrc.
749 */
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
801 /* Ex starts at last line of the file */
802 if (exmode_active)
803 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
804
805#ifdef FEAT_AUTOCMD
806 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
807 TIME_MSG("BufEnter autocommands");
808#endif
809 setpcmark();
810
811#ifdef FEAT_QUICKFIX
812 /*
813 * When started with "-q errorfile" jump to first error now.
814 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000815 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000816 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000817 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000818 TIME_MSG("jump to first error");
819 }
820#endif
821
822#ifdef FEAT_WINDOWS
823 /*
824 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000825 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000826 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000827 edit_buffers(&params);
828#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000829
830#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000831 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000832 {
833 win_T *wp;
834
835 /* set options in each window for "vimdiff". */
836 for (wp = firstwin; wp != NULL; wp = wp->w_next)
837 diff_win_options(wp, TRUE);
838 }
839#endif
840
841 /*
842 * Shorten any of the filenames, but only when absolute.
843 */
844 shorten_fnames(FALSE);
845
846 /*
847 * Need to jump to the tag before executing the '-c command'.
848 * Makes "vim -c '/return' -t main" work.
849 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000850 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000851 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000852#if defined(HAS_SWAP_EXISTS_ACTION)
853 swap_exists_did_quit = FALSE;
854#endif
855
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000856 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000857 do_cmdline_cmd(IObuff);
858 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000859
860#if defined(HAS_SWAP_EXISTS_ACTION)
861 /* If the user doesn't want to edit the file then we quit here. */
862 if (swap_exists_did_quit)
863 getout(1);
864#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000865 }
866
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000867 /* Execute any "+", "-c" and "-S" arguments. */
868 if (params.n_commands > 0)
869 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000870
871 RedrawingDisabled = 0;
872 redraw_all_later(NOT_VALID);
873 no_wait_return = FALSE;
874 starting = 0;
875
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000876#ifdef FEAT_TERMRESPONSE
877 /* Requesting the termresponse is postponed until here, so that a "-c q"
878 * argument doesn't make it appear in the shell Vim was started from. */
879 may_req_termresponse();
880#endif
881
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000882 /* start in insert mode */
883 if (p_im)
884 need_start_insertmode = TRUE;
885
886#ifdef FEAT_AUTOCMD
887 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
888 TIME_MSG("VimEnter autocommands");
889#endif
890
891#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
892 /* When a startup script or session file setup for diff'ing and
893 * scrollbind, sync the scrollbind now. */
894 if (curwin->w_p_diff && curwin->w_p_scb)
895 {
896 update_topline();
897 check_scrollbind((linenr_T)0, 0L);
898 TIME_MSG("diff scrollbinding");
899 }
900#endif
901
902#if defined(WIN3264) && !defined(FEAT_GUI_W32)
903 mch_set_winsize_now(); /* Allow winsize changes from now on */
904#endif
905
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000906#if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
907 /* When tab pages were created, may need to update the tab pages line and
908 * scrollbars. This is skipped while creating them. */
909 if (first_tabpage->tp_next != NULL)
910 {
911 out_flush();
912 gui_init_which_components(NULL);
913 gui_update_scrollbars(TRUE);
914 }
915 need_mouse_correct = TRUE;
916#endif
917
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000918 /* If ":startinsert" command used, stuff a dummy command to be able to
919 * call normal_cmd(), which will then start Insert mode. */
920 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000921 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000922
923#ifdef FEAT_NETBEANS_INTG
924 if (usingNetbeans)
925 /* Tell the client that it can start sending commands. */
926 netbeans_startup_done();
927#endif
928
929 TIME_MSG("before starting main loop");
930
931 /*
932 * Call the main command loop. This never returns.
933 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000934 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000935
936 return 0;
937}
938#endif /* PROTO */
939
940/*
941 * Main loop: Execute Normal mode commands until exiting Vim.
942 * Also used to handle commands in the command-line window, until the window
943 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000944 * Also used to handle ":visual" command after ":global": execute Normal mode
945 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000946 */
947 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000948main_loop(cmdwin, noexmode)
949 int cmdwin; /* TRUE when working in the command-line window */
950 int noexmode; /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000951{
952 oparg_T oa; /* operator arguments */
953
954#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
955 /* Setup to catch a terminating error from the X server. Just ignore
956 * it, restore the state and continue. This might not always work
957 * properly, but at least we don't exit unexpectedly when the X server
958 * exists while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000959 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000960 {
961 State = NORMAL;
962# ifdef FEAT_VISUAL
963 VIsual_active = FALSE;
964# endif
965 got_int = TRUE;
966 need_wait_return = FALSE;
967 global_busy = FALSE;
968 exmode_active = 0;
969 skip_redraw = FALSE;
970 RedrawingDisabled = 0;
971 no_wait_return = 0;
972# ifdef FEAT_EVAL
973 emsg_skip = 0;
974# endif
975 emsg_off = 0;
976# ifdef FEAT_MOUSE
977 setmouse();
978# endif
979 settmode(TMODE_RAW);
980 starttermcap();
981 scroll_start();
982 redraw_later_clear();
983 }
984#endif
985
986 clear_oparg(&oa);
987 while (!cmdwin
988#ifdef FEAT_CMDWIN
989 || cmdwin_result == 0
990#endif
991 )
992 {
993 if (stuff_empty())
994 {
995 did_check_timestamps = FALSE;
996 if (need_check_timestamps)
997 check_timestamps(FALSE);
998 if (need_wait_return) /* if wait_return still needed ... */
999 wait_return(FALSE); /* ... call it now */
1000 if (need_start_insertmode && goto_im()
1001#ifdef FEAT_VISUAL
1002 && !VIsual_active
1003#endif
1004 )
1005 {
1006 need_start_insertmode = FALSE;
1007 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1008 /* skip the fileinfo message now, because it would be shown
1009 * after insert mode finishes! */
1010 need_fileinfo = FALSE;
1011 }
1012 }
1013 if (got_int && !global_busy)
1014 {
1015 if (!quit_more)
1016 (void)vgetc(); /* flush all buffers */
1017 got_int = FALSE;
1018 }
1019 if (!exmode_active)
1020 msg_scroll = FALSE;
1021 quit_more = FALSE;
1022
1023 /*
1024 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1025 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1026 * update cursor and redraw.
1027 */
1028 if (skip_redraw || exmode_active)
1029 skip_redraw = FALSE;
1030 else if (do_redraw || stuff_empty())
1031 {
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001032#ifdef FEAT_AUTOCMD
1033 /* Trigger CursorMoved if the cursor moved. */
1034 if (!finish_op && has_cursormoved()
1035 && !equalpos(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001036 {
1037 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1038 last_cursormoved = curwin->w_cursor;
1039 }
1040#endif
1041
Bram Moolenaar33aec762006-01-22 23:30:12 +00001042#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1043 /* Scroll-binding for diff mode may have been postponed until
1044 * here. Avoids doing it for every change. */
1045 if (diff_need_scrollbind)
1046 {
1047 check_scrollbind((linenr_T)0, 0L);
1048 diff_need_scrollbind = FALSE;
1049 }
1050#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001051#if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1052 /* Include a closed fold completely in the Visual area. */
1053 foldAdjustVisual();
1054#endif
1055#ifdef FEAT_FOLDING
1056 /*
1057 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1058 * contain the cursor.
1059 * When 'foldopen' is "all", open the fold(s) under the cursor.
1060 * This may mark the window for redrawing.
1061 */
1062 if (hasAnyFolding(curwin) && !char_avail())
1063 {
1064 foldCheckClose();
1065 if (fdo_flags & FDO_ALL)
1066 foldOpenCursor();
1067 }
1068#endif
1069
1070 /*
1071 * Before redrawing, make sure w_topline is correct, and w_leftcol
1072 * if lines don't wrap, and w_skipcol if lines wrap.
1073 */
1074 update_topline();
1075 validate_cursor();
1076
1077#ifdef FEAT_VISUAL
1078 if (VIsual_active)
1079 update_curbuf(INVERTED);/* update inverted part */
1080 else
1081#endif
1082 if (must_redraw)
1083 update_screen(0);
1084 else if (redraw_cmdline || clear_cmdline)
1085 showmode();
1086#ifdef FEAT_WINDOWS
1087 redraw_statuslines();
1088#endif
1089#ifdef FEAT_TITLE
1090 if (need_maketitle)
1091 maketitle();
1092#endif
1093 /* display message after redraw */
1094 if (keep_msg != NULL)
1095 {
1096 char_u *p;
1097
1098 /* msg_attr_keep() will set keep_msg to NULL, must free the
1099 * string here. */
1100 p = keep_msg;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001101 keep_msg = NULL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001102 msg_attr(p, keep_msg_attr);
1103 vim_free(p);
1104 }
1105 if (need_fileinfo) /* show file info after redraw */
1106 {
1107 fileinfo(FALSE, TRUE, FALSE);
1108 need_fileinfo = FALSE;
1109 }
1110
1111 emsg_on_display = FALSE; /* can delete error message now */
1112 did_emsg = FALSE;
1113 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001114 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001115 showruler(FALSE);
1116
1117 setcursor();
1118 cursor_on();
1119
1120 do_redraw = FALSE;
1121 }
1122#ifdef FEAT_GUI
1123 if (need_mouse_correct)
1124 gui_mouse_correct();
1125#endif
1126
1127 /*
1128 * Update w_curswant if w_set_curswant has been set.
1129 * Postponed until here to avoid computing w_virtcol too often.
1130 */
1131 update_curswant();
1132
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001133#ifdef FEAT_EVAL
1134 /*
1135 * May perform garbage collection when waiting for a character, but
1136 * only at the very toplevel. Otherwise we may be using a List or
1137 * Dict internally somewhere.
1138 * "may_garbage_collect" is reset in vgetc() which is invoked through
1139 * do_exmode() and normal_cmd().
1140 */
1141 may_garbage_collect = (!cmdwin && !noexmode);
1142#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001143 /*
1144 * If we're invoked as ex, do a round of ex commands.
1145 * Otherwise, get and execute a normal mode command.
1146 */
1147 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001148 {
1149 if (noexmode) /* End of ":global/path/visual" commands */
1150 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001151 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001152 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001153 else
1154 normal_cmd(&oa, TRUE);
1155 }
1156}
1157
1158
1159#if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1160/*
1161 * Exit, but leave behind swap files for modified buffers.
1162 */
1163 void
1164getout_preserve_modified(exitval)
1165 int exitval;
1166{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001167# if defined(SIGHUP) && defined(SIG_IGN)
1168 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1169 * makes Vim exit and then handling SIGHUP causes various reentrance
1170 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001171 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001172# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001173
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001174 ml_close_notmod(); /* close all not-modified buffers */
1175 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1176 ml_close_all(FALSE); /* close all memfiles, without deleting */
1177 getout(exitval); /* exit Vim properly */
1178}
1179#endif
1180
1181
1182/* Exit properly */
1183 void
1184getout(exitval)
1185 int exitval;
1186{
1187#ifdef FEAT_AUTOCMD
1188 buf_T *buf;
1189 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001190 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001191#endif
1192
1193 exiting = TRUE;
1194
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001195 /* When running in Ex mode an error causes us to exit with a non-zero exit
1196 * code. POSIX requires this, although it's not 100% clear from the
1197 * standard. */
1198 if (exmode_active)
1199 exitval += ex_exitval;
1200
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001201 /* Position the cursor on the last screen line, below all the text */
1202#ifdef FEAT_GUI
1203 if (!gui.in_use)
1204#endif
1205 windgoto((int)Rows - 1, 0);
1206
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001207#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1208 /* Optionally print hashtable efficiency. */
1209 hash_debug_results();
1210#endif
1211
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001212#ifdef FEAT_GUI
1213 msg_didany = FALSE;
1214#endif
1215
1216#ifdef FEAT_AUTOCMD
1217 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001218# if defined FEAT_WINDOWS
1219 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001220 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001221 next_tp = tp->tp_next;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001222 for (wp = (tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001223 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001224 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001225 buf = wp->w_buffer;
1226 if (buf->b_changedtick != -1)
1227 {
1228 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001229 FALSE, buf);
Bram Moolenaarf740b292006-02-16 22:11:02 +00001230 buf->b_changedtick = -1; /* note that we did it already */
1231 /* start all over, autocommands may mess up the lists */
1232 next_tp = first_tabpage;
1233 break;
1234 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001235 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001236 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001237# else
1238 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1239# endif
Bram Moolenaar33aec762006-01-22 23:30:12 +00001240
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001241 /* Trigger BufUnload for buffers that are loaded */
1242 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1243 if (buf->b_ml.ml_mfp != NULL)
1244 {
1245 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1246 FALSE, buf);
1247 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1248 break;
1249 }
1250 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1251#endif
1252
1253#ifdef FEAT_VIMINFO
1254 if (*p_viminfo != NUL)
1255 /* Write out the registers, history, marks etc, to the viminfo file */
1256 write_viminfo(NULL, FALSE);
1257#endif
1258
1259#ifdef FEAT_AUTOCMD
1260 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1261#endif
1262
Bram Moolenaar05159a02005-02-26 23:04:13 +00001263#ifdef FEAT_PROFILE
1264 profile_dump();
1265#endif
1266
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001267 if (did_emsg
1268#ifdef FEAT_GUI
1269 || (gui.in_use && msg_didany && p_verbose > 0)
1270#endif
1271 )
1272 {
1273 /* give the user a chance to read the (error) message */
1274 no_wait_return = FALSE;
1275 wait_return(FALSE);
1276 }
1277
1278#ifdef FEAT_AUTOCMD
1279 /* Position the cursor again, the autocommands may have moved it */
1280# ifdef FEAT_GUI
1281 if (!gui.in_use)
1282# endif
1283 windgoto((int)Rows - 1, 0);
1284#endif
1285
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001286#ifdef FEAT_MZSCHEME
1287 mzscheme_end();
1288#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001289#ifdef FEAT_TCL
1290 tcl_end();
1291#endif
1292#ifdef FEAT_RUBY
1293 ruby_end();
1294#endif
1295#ifdef FEAT_PYTHON
1296 python_end();
1297#endif
1298#ifdef FEAT_PERL
1299 perl_end();
1300#endif
1301#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1302 iconv_end();
1303#endif
1304#ifdef FEAT_NETBEANS_INTG
1305 netbeans_end();
1306#endif
1307
1308 mch_exit(exitval);
1309}
1310
1311/*
1312 * Get a (optional) count for a Vim argument.
1313 */
1314 static int
1315get_number_arg(p, idx, def)
1316 char_u *p; /* pointer to argument */
1317 int *idx; /* index in argument, is incremented */
1318 int def; /* default value */
1319{
1320 if (vim_isdigit(p[*idx]))
1321 {
1322 def = atoi((char *)&(p[*idx]));
1323 while (vim_isdigit(p[*idx]))
1324 *idx = *idx + 1;
1325 }
1326 return def;
1327}
1328
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001329#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1330/*
1331 * Setup to use the current locale (for ctype() and many other things).
1332 */
1333 static void
1334init_locale()
1335{
1336 setlocale(LC_ALL, "");
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001337# ifdef WIN32
1338 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1339 * text while it's expecting text in the current locale. This call avoids
1340 * that. */
1341 setlocale(LC_CTYPE, "C");
1342# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001343
1344# ifdef FEAT_GETTEXT
1345 {
1346 int mustfree = FALSE;
1347 char_u *p;
1348
1349# ifdef DYNAMIC_GETTEXT
1350 /* Initialize the gettext library */
1351 dyn_libintl_init(NULL);
1352# endif
1353 /* expand_env() doesn't work yet, because chartab[] is not initialized
1354 * yet, call vim_getenv() directly */
1355 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1356 if (p != NULL && *p != NUL)
1357 {
1358 STRCPY(NameBuff, p);
1359 STRCAT(NameBuff, "/lang");
1360 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1361 }
1362 if (mustfree)
1363 vim_free(p);
1364 textdomain(VIMPACKAGE);
1365 }
1366# endif
1367}
1368#endif
1369
1370/*
1371 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1372 * If the executable name starts with "r" we disable shell commands.
1373 * If the next character is "e" we run in Easy mode.
1374 * If the next character is "g" we run the GUI version.
1375 * If the next characters are "view" we start in readonly mode.
1376 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1377 * If the next characters are "ex" we start in Ex mode. If it's followed
1378 * by "im" use improved Ex mode.
1379 */
1380 static void
1381parse_command_name(parmp)
1382 mparm_T *parmp;
1383{
1384 char_u *initstr;
1385
1386 initstr = gettail((char_u *)parmp->argv[0]);
1387
1388#ifdef MACOS_X_UNIX
1389 /* An issue has been seen when launching Vim in such a way that
1390 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1391 * executable or a symbolic link of it. Until this issue is resolved
1392 * we prohibit the GUI from being used.
1393 */
1394 if (STRCMP(initstr, parmp->argv[0]) == 0)
1395 disallow_gui = TRUE;
1396
1397 /* TODO: On MacOS X default to gui if argv[0] ends in:
Bram Moolenaar27dc1952006-03-15 23:06:44 +00001398 * /Vim.app/Contents/MacOS/Vim */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001399#endif
1400
1401#ifdef FEAT_EVAL
1402 set_vim_var_string(VV_PROGNAME, initstr, -1);
1403#endif
1404
1405 if (TOLOWER_ASC(initstr[0]) == 'r')
1406 {
1407 restricted = TRUE;
1408 ++initstr;
1409 }
1410
1411 /* Avoid using evim mode for "editor". */
1412 if (TOLOWER_ASC(initstr[0]) == 'e'
1413 && (TOLOWER_ASC(initstr[1]) == 'v'
1414 || TOLOWER_ASC(initstr[1]) == 'g'))
1415 {
1416#ifdef FEAT_GUI
1417 gui.starting = TRUE;
1418#endif
1419 parmp->evim_mode = TRUE;
1420 ++initstr;
1421 }
1422
1423 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1424 {
1425 main_start_gui();
1426#ifdef FEAT_GUI
1427 ++initstr;
1428#endif
1429 }
1430
1431 if (STRNICMP(initstr, "view", 4) == 0)
1432 {
1433 readonlymode = TRUE;
1434 curbuf->b_p_ro = TRUE;
1435 p_uc = 10000; /* don't update very often */
1436 initstr += 4;
1437 }
1438 else if (STRNICMP(initstr, "vim", 3) == 0)
1439 initstr += 3;
1440
1441 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1442 if (STRICMP(initstr, "diff") == 0)
1443 {
1444#ifdef FEAT_DIFF
1445 parmp->diff_mode = TRUE;
1446#else
1447 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1448 mch_errmsg("\n");
1449 mch_exit(2);
1450#endif
1451 }
1452
1453 if (STRNICMP(initstr, "ex", 2) == 0)
1454 {
1455 if (STRNICMP(initstr + 2, "im", 2) == 0)
1456 exmode_active = EXMODE_VIM;
1457 else
1458 exmode_active = EXMODE_NORMAL;
1459 change_compatible(TRUE); /* set 'compatible' */
1460 }
1461}
1462
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001463/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001464 * Get the name of the display, before gui_prepare() removes it from
1465 * argv[]. Used for the xterm-clipboard display.
1466 *
1467 * Also find the --server... arguments and --socketid
1468 */
1469/*ARGSUSED*/
1470 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001471early_arg_scan(parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001472 mparm_T *parmp;
1473{
1474#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001475 int argc = parmp->argc;
1476 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001477 int i;
1478
1479 for (i = 1; i < argc; i++)
1480 {
1481 if (STRCMP(argv[i], "--") == 0)
1482 break;
1483# ifdef FEAT_XCLIPBOARD
1484 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001485# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001486 || STRICMP(argv[i], "--display") == 0
1487# endif
1488 )
1489 {
1490 if (i == argc - 1)
1491 mainerr_arg_missing((char_u *)argv[i]);
1492 xterm_display = argv[++i];
1493 }
1494# endif
1495# ifdef FEAT_CLIENTSERVER
1496 else if (STRICMP(argv[i], "--servername") == 0)
1497 {
1498 if (i == argc - 1)
1499 mainerr_arg_missing((char_u *)argv[i]);
1500 parmp->serverName_arg = (char_u *)argv[++i];
1501 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001502 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001503 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001504 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001505 {
1506 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001507# ifdef FEAT_GUI
1508 if (strstr(argv[i], "-wait") != 0)
1509 /* don't fork() when starting the GUI to edit files ourself */
1510 gui.dofork = FALSE;
1511# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001512 }
1513# endif
1514# ifdef FEAT_GUI_GTK
1515 else if (STRICMP(argv[i], "--socketid") == 0)
1516 {
1517 unsigned int socket_id;
1518 int count;
1519
1520 if (i == argc - 1)
1521 mainerr_arg_missing((char_u *)argv[i]);
1522 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1523 count = sscanf(&(argv[i + 1][2]), "%x", &socket_id);
1524 else
1525 count = sscanf(argv[i+1], "%u", &socket_id);
1526 if (count != 1)
1527 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1528 else
1529 gtk_socket_id = socket_id;
1530 i++;
1531 }
1532 else if (STRICMP(argv[i], "--echo-wid") == 0)
1533 echo_wid_arg = TRUE;
1534# endif
1535 }
1536#endif
1537}
1538
1539/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001540 * Scan the command line arguments.
1541 */
1542 static void
1543command_line_scan(parmp)
1544 mparm_T *parmp;
1545{
1546 int argc = parmp->argc;
1547 char **argv = parmp->argv;
1548 int argv_idx; /* index in argv[n][] */
1549 int had_minmin = FALSE; /* found "--" argument */
1550 int want_argument; /* option argument with argument */
1551 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001552 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001553 long n;
1554
1555 --argc;
1556 ++argv;
1557 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1558 while (argc > 0)
1559 {
1560 /*
1561 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1562 */
1563 if (argv[0][0] == '+' && !had_minmin)
1564 {
1565 if (parmp->n_commands >= MAX_ARG_CMDS)
1566 mainerr(ME_EXTRA_CMD, NULL);
1567 argv_idx = -1; /* skip to next argument */
1568 if (argv[0][1] == NUL)
1569 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1570 else
1571 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1572 }
1573
1574 /*
1575 * Optional argument.
1576 */
1577 else if (argv[0][0] == '-' && !had_minmin)
1578 {
1579 want_argument = FALSE;
1580 c = argv[0][argv_idx++];
1581#ifdef VMS
1582 /*
1583 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1584 * and "-/X" as "-X".
1585 */
1586 if (c == '/')
1587 {
1588 c = argv[0][argv_idx++];
1589 c = TOUPPER_ASC(c);
1590 }
1591 else
1592 c = TOLOWER_ASC(c);
1593#endif
1594 switch (c)
1595 {
1596 case NUL: /* "vim -" read from stdin */
1597 /* "ex -" silent mode */
1598 if (exmode_active)
1599 silent_mode = TRUE;
1600 else
1601 {
1602 if (parmp->edit_type != EDIT_NONE)
1603 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1604 parmp->edit_type = EDIT_STDIN;
1605 read_cmd_fd = 2; /* read from stderr instead of stdin */
1606 }
1607 argv_idx = -1; /* skip to next argument */
1608 break;
1609
1610 case '-': /* "--" don't take any more option arguments */
1611 /* "--help" give help message */
1612 /* "--version" give version message */
1613 /* "--literal" take files literally */
1614 /* "--nofork" don't fork */
1615 /* "--noplugin[s]" skip plugins */
1616 /* "--cmd <cmd>" execute cmd before vimrc */
1617 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1618 usage();
1619 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1620 {
1621 Columns = 80; /* need to init Columns */
1622 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1623 list_version();
1624 msg_putchar('\n');
1625 msg_didout = FALSE;
1626 mch_exit(0);
1627 }
1628 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1629 {
1630#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1631 parmp->literal = TRUE;
1632#endif
1633 }
1634 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1635 {
1636#ifdef FEAT_GUI
1637 gui.dofork = FALSE; /* don't fork() when starting GUI */
1638#endif
1639 }
1640 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1641 p_lpl = FALSE;
1642 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1643 {
1644 want_argument = TRUE;
1645 argv_idx += 3;
1646 }
1647#ifdef FEAT_CLIENTSERVER
1648 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1649 ; /* already processed -- no arg */
1650 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1651 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1652 {
1653 /* already processed -- snatch the following arg */
1654 if (argc > 1)
1655 {
1656 --argc;
1657 ++argv;
1658 }
1659 }
1660#endif
1661#ifdef FEAT_GUI_GTK
1662 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1663 {
1664 /* already processed -- snatch the following arg */
1665 if (argc > 1)
1666 {
1667 --argc;
1668 ++argv;
1669 }
1670 }
1671 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1672 {
1673 /* already processed, skip */
1674 }
1675#endif
1676 else
1677 {
1678 if (argv[0][argv_idx])
1679 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1680 had_minmin = TRUE;
1681 }
1682 if (!want_argument)
1683 argv_idx = -1; /* skip to next argument */
1684 break;
1685
1686 case 'A': /* "-A" start in Arabic mode */
1687#ifdef FEAT_ARABIC
1688 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1689#else
1690 mch_errmsg(_(e_noarabic));
1691 mch_exit(2);
1692#endif
1693 break;
1694
1695 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001696 /* Needs to be effective before expanding file names, because
1697 * for Win32 this makes us edit a shortcut file itself,
1698 * instead of the file it links to. */
1699 set_options_bin(curbuf->b_p_bin, 1, 0);
1700 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001701 break;
1702
1703 case 'C': /* "-C" Compatible */
1704 change_compatible(TRUE);
1705 break;
1706
1707 case 'e': /* "-e" Ex mode */
1708 exmode_active = EXMODE_NORMAL;
1709 break;
1710
1711 case 'E': /* "-E" Improved Ex mode */
1712 exmode_active = EXMODE_VIM;
1713 break;
1714
1715 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1716 window directly, not with newcli */
1717#ifdef FEAT_GUI
1718 gui.dofork = FALSE; /* don't fork() when starting GUI */
1719#endif
1720 break;
1721
1722 case 'g': /* "-g" start GUI */
1723 main_start_gui();
1724 break;
1725
1726 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1727#ifdef FEAT_FKMAP
1728 curwin->w_p_rl = p_fkmap = TRUE;
1729#else
1730 mch_errmsg(_(e_nofarsi));
1731 mch_exit(2);
1732#endif
1733 break;
1734
1735 case 'h': /* "-h" give help message */
1736#ifdef FEAT_GUI_GNOME
1737 /* Tell usage() to exit for "gvim". */
1738 gui.starting = FALSE;
1739#endif
1740 usage();
1741 break;
1742
1743 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1744#ifdef FEAT_RIGHTLEFT
1745 curwin->w_p_rl = p_hkmap = TRUE;
1746#else
1747 mch_errmsg(_(e_nohebrew));
1748 mch_exit(2);
1749#endif
1750 break;
1751
1752 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1753#ifdef FEAT_LISP
1754 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1755 p_sm = TRUE;
1756#endif
1757 break;
1758
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001759 case 'M': /* "-M" no changes or writing of files */
1760 reset_modifiable();
1761 /* FALLTHROUGH */
1762
1763 case 'm': /* "-m" no writing of files */
1764 p_write = FALSE;
1765 break;
1766
1767 case 'y': /* "-y" easy mode */
1768#ifdef FEAT_GUI
1769 gui.starting = TRUE; /* start GUI a bit later */
1770#endif
1771 parmp->evim_mode = TRUE;
1772 break;
1773
1774 case 'N': /* "-N" Nocompatible */
1775 change_compatible(FALSE);
1776 break;
1777
1778 case 'n': /* "-n" no swap file */
1779 parmp->no_swap_file = TRUE;
1780 break;
1781
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001782 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00001783#ifdef TARGET_API_MAC_OSX
1784 /* For some reason on MacOS X, an argument like:
1785 -psn_0_10223617 is passed in when invoke from Finder
1786 or with the 'open' command */
1787 if (argv[0][argv_idx] == 's')
1788 {
1789 argv_idx = -1; /* bypass full -psn */
1790 main_start_gui();
1791 break;
1792 }
1793#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001794#ifdef FEAT_WINDOWS
1795 /* default is 0: open window for each file */
1796 parmp->window_count = get_number_arg((char_u *)argv[0],
1797 &argv_idx, 0);
1798 parmp->window_layout = WIN_TABS;
1799#endif
1800 break;
1801
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001802 case 'o': /* "-o[N]" open N horizontal split windows */
1803#ifdef FEAT_WINDOWS
1804 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001805 parmp->window_count = get_number_arg((char_u *)argv[0],
1806 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001807 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001808#endif
1809 break;
1810
1811 case 'O': /* "-O[N]" open N vertical split windows */
1812#if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1813 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001814 parmp->window_count = get_number_arg((char_u *)argv[0],
1815 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001816 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001817#endif
1818 break;
1819
1820#ifdef FEAT_QUICKFIX
1821 case 'q': /* "-q" QuickFix mode */
1822 if (parmp->edit_type != EDIT_NONE)
1823 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1824 parmp->edit_type = EDIT_QF;
1825 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1826 {
1827 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1828 argv_idx = -1;
1829 }
1830 else if (argc > 1) /* "-q {errorfile}" */
1831 want_argument = TRUE;
1832 break;
1833#endif
1834
1835 case 'R': /* "-R" readonly mode */
1836 readonlymode = TRUE;
1837 curbuf->b_p_ro = TRUE;
1838 p_uc = 10000; /* don't update very often */
1839 break;
1840
1841 case 'r': /* "-r" recovery mode */
1842 case 'L': /* "-L" recovery mode */
1843 recoverymode = 1;
1844 break;
1845
1846 case 's':
1847 if (exmode_active) /* "-s" silent (batch) mode */
1848 silent_mode = TRUE;
1849 else /* "-s {scriptin}" read from script file */
1850 want_argument = TRUE;
1851 break;
1852
1853 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1854 if (parmp->edit_type != EDIT_NONE)
1855 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1856 parmp->edit_type = EDIT_TAG;
1857 if (argv[0][argv_idx]) /* "-t{tag}" */
1858 {
1859 parmp->tagname = (char_u *)argv[0] + argv_idx;
1860 argv_idx = -1;
1861 }
1862 else /* "-t {tag}" */
1863 want_argument = TRUE;
1864 break;
1865
1866#ifdef FEAT_EVAL
1867 case 'D': /* "-D" Debugging */
1868 parmp->use_debug_break_level = 9999;
1869 break;
1870#endif
1871#ifdef FEAT_DIFF
1872 case 'd': /* "-d" 'diff' */
1873# ifdef AMIGA
1874 /* check for "-dev {device}" */
1875 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1876 want_argument = TRUE;
1877 else
1878# endif
1879 parmp->diff_mode = TRUE;
1880 break;
1881#endif
1882 case 'V': /* "-V{N}" Verbose level */
1883 /* default is 10: a little bit verbose */
1884 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1885 if (argv[0][argv_idx] != NUL)
1886 {
1887 set_option_value((char_u *)"verbosefile", 0L,
1888 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001889 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001890 }
1891 break;
1892
1893 case 'v': /* "-v" Vi-mode (as if called "vi") */
1894 exmode_active = 0;
1895#ifdef FEAT_GUI
1896 gui.starting = FALSE; /* don't start GUI */
1897#endif
1898 break;
1899
1900 case 'w': /* "-w{number}" set window height */
1901 /* "-w {scriptout}" write to script */
1902 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1903 {
1904 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1905 set_option_value((char_u *)"window", n, NULL, 0);
1906 break;
1907 }
1908 want_argument = TRUE;
1909 break;
1910
1911#ifdef FEAT_CRYPT
1912 case 'x': /* "-x" encrypted reading/writing of files */
1913 parmp->ask_for_key = TRUE;
1914 break;
1915#endif
1916
1917 case 'X': /* "-X" don't connect to X server */
1918#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
1919 x_no_connect = TRUE;
1920#endif
1921 break;
1922
1923 case 'Z': /* "-Z" restricted mode */
1924 restricted = TRUE;
1925 break;
1926
1927 case 'c': /* "-c{command}" or "-c {command}" execute
1928 command */
1929 if (argv[0][argv_idx] != NUL)
1930 {
1931 if (parmp->n_commands >= MAX_ARG_CMDS)
1932 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00001933 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
1934 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001935 argv_idx = -1;
1936 break;
1937 }
1938 /*FALLTHROUGH*/
1939 case 'S': /* "-S {file}" execute Vim script */
1940 case 'i': /* "-i {viminfo}" use for viminfo */
1941#ifndef FEAT_DIFF
1942 case 'd': /* "-d {device}" device (for Amiga) */
1943#endif
1944 case 'T': /* "-T {terminal}" terminal name */
1945 case 'u': /* "-u {vimrc}" vim inits file */
1946 case 'U': /* "-U {gvimrc}" gvim inits file */
1947 case 'W': /* "-W {scriptout}" overwrite */
1948#ifdef FEAT_GUI_W32
1949 case 'P': /* "-P {parent title}" MDI parent */
1950#endif
1951 want_argument = TRUE;
1952 break;
1953
1954 default:
1955 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1956 }
1957
1958 /*
1959 * Handle option arguments with argument.
1960 */
1961 if (want_argument)
1962 {
1963 /*
1964 * Check for garbage immediately after the option letter.
1965 */
1966 if (argv[0][argv_idx] != NUL)
1967 mainerr(ME_GARBAGE, (char_u *)argv[0]);
1968
1969 --argc;
1970 if (argc < 1 && c != 'S')
1971 mainerr_arg_missing((char_u *)argv[0]);
1972 ++argv;
1973 argv_idx = -1;
1974
1975 switch (c)
1976 {
1977 case 'c': /* "-c {command}" execute command */
1978 case 'S': /* "-S {file}" execute Vim script */
1979 if (parmp->n_commands >= MAX_ARG_CMDS)
1980 mainerr(ME_EXTRA_CMD, NULL);
1981 if (c == 'S')
1982 {
1983 char *a;
1984
1985 if (argc < 1)
1986 /* "-S" without argument: use default session file
1987 * name. */
1988 a = SESSION_FILE;
1989 else if (argv[0][0] == '-')
1990 {
1991 /* "-S" followed by another option: use default
1992 * session file name. */
1993 a = SESSION_FILE;
1994 ++argc;
1995 --argv;
1996 }
1997 else
1998 a = argv[0];
1999 p = alloc((unsigned)(STRLEN(a) + 4));
2000 if (p == NULL)
2001 mch_exit(2);
2002 sprintf((char *)p, "so %s", a);
2003 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2004 parmp->commands[parmp->n_commands++] = p;
2005 }
2006 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002007 parmp->commands[parmp->n_commands++] =
2008 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002009 break;
2010
2011 case '-': /* "--cmd {command}" execute command */
2012 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2013 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002014 parmp->pre_commands[parmp->n_pre_commands++] =
2015 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002016 break;
2017
2018 /* case 'd': -d {device} is handled in mch_check_win() for the
2019 * Amiga */
2020
2021#ifdef FEAT_QUICKFIX
2022 case 'q': /* "-q {errorfile}" QuickFix mode */
2023 parmp->use_ef = (char_u *)argv[0];
2024 break;
2025#endif
2026
2027 case 'i': /* "-i {viminfo}" use for viminfo */
2028 use_viminfo = (char_u *)argv[0];
2029 break;
2030
2031 case 's': /* "-s {scriptin}" read from script file */
2032 if (scriptin[0] != NULL)
2033 {
2034scripterror:
2035 mch_errmsg(_("Attempt to open script file again: \""));
2036 mch_errmsg(argv[-1]);
2037 mch_errmsg(" ");
2038 mch_errmsg(argv[0]);
2039 mch_errmsg("\"\n");
2040 mch_exit(2);
2041 }
2042 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2043 {
2044 mch_errmsg(_("Cannot open for reading: \""));
2045 mch_errmsg(argv[0]);
2046 mch_errmsg("\"\n");
2047 mch_exit(2);
2048 }
2049 if (save_typebuf() == FAIL)
2050 mch_exit(2); /* out of memory */
2051 break;
2052
2053 case 't': /* "-t {tag}" */
2054 parmp->tagname = (char_u *)argv[0];
2055 break;
2056
2057 case 'T': /* "-T {terminal}" terminal name */
2058 /*
2059 * The -T term argument is always available and when
2060 * HAVE_TERMLIB is supported it overrides the environment
2061 * variable TERM.
2062 */
2063#ifdef FEAT_GUI
2064 if (term_is_gui((char_u *)argv[0]))
2065 gui.starting = TRUE; /* start GUI a bit later */
2066 else
2067#endif
2068 parmp->term = (char_u *)argv[0];
2069 break;
2070
2071 case 'u': /* "-u {vimrc}" vim inits file */
2072 parmp->use_vimrc = (char_u *)argv[0];
2073 break;
2074
2075 case 'U': /* "-U {gvimrc}" gvim inits file */
2076#ifdef FEAT_GUI
2077 use_gvimrc = (char_u *)argv[0];
2078#endif
2079 break;
2080
2081 case 'w': /* "-w {nr}" 'window' value */
2082 /* "-w {scriptout}" append to script file */
2083 if (vim_isdigit(*((char_u *)argv[0])))
2084 {
2085 argv_idx = 0;
2086 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2087 set_option_value((char_u *)"window", n, NULL, 0);
2088 argv_idx = -1;
2089 break;
2090 }
2091 /*FALLTHROUGH*/
2092 case 'W': /* "-W {scriptout}" overwrite script file */
2093 if (scriptout != NULL)
2094 goto scripterror;
2095 if ((scriptout = mch_fopen(argv[0],
2096 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2097 {
2098 mch_errmsg(_("Cannot open for script output: \""));
2099 mch_errmsg(argv[0]);
2100 mch_errmsg("\"\n");
2101 mch_exit(2);
2102 }
2103 break;
2104
2105#ifdef FEAT_GUI_W32
2106 case 'P': /* "-P {parent title}" MDI parent */
2107 gui_mch_set_parent(argv[0]);
2108 break;
2109#endif
2110 }
2111 }
2112 }
2113
2114 /*
2115 * File name argument.
2116 */
2117 else
2118 {
2119 argv_idx = -1; /* skip to next argument */
2120
2121 /* Check for only one type of editing. */
2122 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2123 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2124 parmp->edit_type = EDIT_FILE;
2125
2126#ifdef MSWIN
2127 /* Remember if the argument was a full path before changing
2128 * slashes to backslashes. */
2129 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2130 parmp->full_path = TRUE;
2131#endif
2132
2133 /* Add the file to the global argument list. */
2134 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2135 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2136 mch_exit(2);
2137#ifdef FEAT_DIFF
2138 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2139 && !mch_isdir(alist_name(&GARGLIST[0])))
2140 {
2141 char_u *r;
2142
2143 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2144 if (r != NULL)
2145 {
2146 vim_free(p);
2147 p = r;
2148 }
2149 }
2150#endif
2151#if defined(__CYGWIN32__) && !defined(WIN32)
2152 /*
2153 * If vim is invoked by non-Cygwin tools, convert away any
2154 * DOS paths, so things like .swp files are created correctly.
2155 * Look for evidence of non-Cygwin paths before we bother.
2156 * This is only for when using the Unix files.
2157 */
2158 if (strpbrk(p, "\\:") != NULL)
2159 {
2160 char posix_path[PATH_MAX];
2161
2162 cygwin_conv_to_posix_path(p, posix_path);
2163 vim_free(p);
2164 p = vim_strsave(posix_path);
2165 if (p == NULL)
2166 mch_exit(2);
2167 }
2168#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002169
2170#ifdef USE_FNAME_CASE
2171 /* Make the case of the file name match the actual file. */
2172 fname_case(p, 0);
2173#endif
2174
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002175 alist_add(&global_alist, p,
2176#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
Bram Moolenaar231334e2005-07-25 20:46:57 +00002177 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002178#else
2179 2 /* add buffer number now and use curbuf */
2180#endif
2181 );
2182
2183#if defined(FEAT_MBYTE) && defined(WIN32)
2184 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002185 /* Remember this argument has been added to the argument list.
2186 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002187 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2188 parmp->diff_mode);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002189 }
2190#endif
2191 }
2192
2193 /*
2194 * If there are no more letters after the current "-", go to next
2195 * argument. argv_idx is set to -1 when the current argument is to be
2196 * skipped.
2197 */
2198 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2199 {
2200 --argc;
2201 ++argv;
2202 argv_idx = 1;
2203 }
2204 }
2205}
2206
2207/*
2208 * Print a warning if stdout is not a terminal.
2209 * When starting in Ex mode and commands come from a file, set Silent mode.
2210 */
2211 static void
2212check_tty(parmp)
2213 mparm_T *parmp;
2214{
2215 int input_isatty; /* is active input a terminal? */
2216
2217 input_isatty = mch_input_isatty();
2218 if (exmode_active)
2219 {
2220 if (!input_isatty)
2221 silent_mode = TRUE;
2222 }
2223 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2224#ifdef FEAT_GUI
2225 /* don't want the delay when started from the desktop */
2226 && !gui.starting
2227#endif
2228 )
2229 {
2230#ifdef NBDEBUG
2231 /*
2232 * This shouldn't be necessary. But if I run netbeans with the log
2233 * output coming to the console and XOpenDisplay fails, I get vim
2234 * trying to start with input/output to my console tty. This fills my
2235 * input buffer so fast I can't even kill the process in under 2
2236 * minutes (and it beeps continuosly the whole time :-)
2237 */
2238 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2239 {
2240 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2241 exit(1);
2242 }
2243#endif
2244 if (!parmp->stdout_isatty)
2245 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2246 if (!input_isatty)
2247 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2248 out_flush();
2249 if (scriptin[0] == NULL)
2250 ui_delay(2000L, TRUE);
2251 TIME_MSG("Warning delay");
2252 }
2253}
2254
2255/*
2256 * Read text from stdin.
2257 */
2258 static void
2259read_stdin()
2260{
2261 int i;
2262
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002263#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002264 /* When getting the ATTENTION prompt here, use a dialog */
2265 swap_exists_action = SEA_DIALOG;
2266#endif
2267 no_wait_return = TRUE;
2268 i = msg_didany;
2269 set_buflisted(TRUE);
2270 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2271 no_wait_return = FALSE;
2272 msg_didany = i;
2273 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002274#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002275 check_swap_exists_action();
2276#endif
2277#if !(defined(AMIGA) || defined(MACOS))
2278 /*
2279 * Close stdin and dup it from stderr. Required for GPM to work
2280 * properly, and for running external commands.
2281 * Is there any other system that cannot do this?
2282 */
2283 close(0);
2284 dup(2);
2285#endif
2286}
2287
2288/*
2289 * Create the requested number of windows and edit buffers in them.
2290 * Also does recovery if "recoverymode" set.
2291 */
2292/*ARGSUSED*/
2293 static void
2294create_windows(parmp)
2295 mparm_T *parmp;
2296{
2297#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002298 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002299 int done = 0;
2300
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002301 /*
2302 * Create the number of windows that was requested.
2303 */
2304 if (parmp->window_count == -1) /* was not set */
2305 parmp->window_count = 1;
2306 if (parmp->window_count == 0)
2307 parmp->window_count = GARGCOUNT;
2308 if (parmp->window_count > 1)
2309 {
2310 /* Don't change the windows if there was a command in .vimrc that
2311 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002312 if (parmp->window_layout == 0)
2313 parmp->window_layout = WIN_HOR;
2314 if (parmp->window_layout == WIN_TABS)
2315 {
2316 parmp->window_count = make_tabpages(parmp->window_count);
2317 TIME_MSG("making tab pages");
2318 }
2319 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002320 {
2321 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002322 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002323 TIME_MSG("making windows");
2324 }
2325 else
2326 parmp->window_count = win_count();
2327 }
2328 else
2329 parmp->window_count = 1;
2330#endif
2331
2332 if (recoverymode) /* do recover */
2333 {
2334 msg_scroll = TRUE; /* scroll message up */
2335 ml_recover();
2336 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2337 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002338 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002339 }
2340 else
2341 {
2342 /*
2343 * Open a buffer for windows that don't have one yet.
2344 * Commands in the .vimrc might have loaded a file or split the window.
2345 * Watch out for autocommands that delete a window.
2346 */
2347#ifdef FEAT_AUTOCMD
2348 /*
2349 * Don't execute Win/Buf Enter/Leave autocommands here
2350 */
2351 ++autocmd_no_enter;
2352 ++autocmd_no_leave;
2353#endif
2354#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002355 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002356 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002357 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002358 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002359 {
2360 if (parmp->window_layout == WIN_TABS)
2361 goto_tabpage(1);
2362 else
2363 curwin = firstwin;
2364 }
2365 else if (parmp->window_layout == WIN_TABS)
2366 {
2367 if (curtab->tp_next == NULL)
2368 break;
2369 goto_tabpage(0);
2370 }
2371 else
2372 {
2373 if (curwin->w_next == NULL)
2374 break;
2375 curwin = curwin->w_next;
2376 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002377 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002378#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002379 curbuf = curwin->w_buffer;
2380 if (curbuf->b_ml.ml_mfp == NULL)
2381 {
2382#ifdef FEAT_FOLDING
2383 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2384 if (p_fdls >= 0)
2385 curwin->w_p_fdl = p_fdls;
2386#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002387#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002388 /* When getting the ATTENTION prompt here, use a dialog */
2389 swap_exists_action = SEA_DIALOG;
2390#endif
2391 set_buflisted(TRUE);
2392 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2393
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002394#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002395 if (swap_exists_action == SEA_QUIT)
2396 {
2397 if (got_int || only_one_window())
2398 {
2399 /* abort selected or quit and only one window */
2400 did_emsg = FALSE; /* avoid hit-enter prompt */
2401 getout(1);
2402 }
2403 /* We can't close the window, it would disturb what
2404 * happens next. Clear the file name and set the arg
2405 * index to -1 to delete it later. */
2406 setfname(curbuf, NULL, NULL, FALSE);
2407 curwin->w_arg_idx = -1;
2408 swap_exists_action = SEA_NONE;
2409 }
2410 else
2411 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002412#endif
2413#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002414 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002415#endif
2416 }
2417#ifdef FEAT_WINDOWS
2418 ui_breakcheck();
2419 if (got_int)
2420 {
2421 (void)vgetc(); /* only break the file loading, not the rest */
2422 break;
2423 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002424 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002425#endif
2426#ifdef FEAT_WINDOWS
2427 if (parmp->window_layout == WIN_TABS)
2428 goto_tabpage(1);
2429 else
2430 curwin = firstwin;
2431 curbuf = curwin->w_buffer;
2432#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002433#ifdef FEAT_AUTOCMD
2434 --autocmd_no_enter;
2435 --autocmd_no_leave;
2436#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002437 }
2438}
2439
2440#ifdef FEAT_WINDOWS
2441 /*
2442 * If opened more than one window, start editing files in the other
2443 * windows. make_windows() has already opened the windows.
2444 */
2445 static void
2446edit_buffers(parmp)
2447 mparm_T *parmp;
2448{
2449 int arg_idx; /* index in argument list */
2450 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002451 int advance = TRUE;
2452 buf_T *old_curbuf;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002453
2454# ifdef FEAT_AUTOCMD
2455 /*
2456 * Don't execute Win/Buf Enter/Leave autocommands here
2457 */
2458 ++autocmd_no_enter;
2459 ++autocmd_no_leave;
2460# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002461
2462 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2463 if (curwin->w_arg_idx == -1)
2464 {
2465 win_close(curwin, TRUE);
2466 advance = FALSE;
2467 }
2468
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002469 arg_idx = 1;
2470 for (i = 1; i < parmp->window_count; ++i)
2471 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002472 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2473 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002474 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002475 ++arg_idx;
2476 win_close(curwin, TRUE);
2477 advance = FALSE;
2478 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002479 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002480
Bram Moolenaar84212822006-11-07 21:59:47 +00002481 if (advance)
2482 {
2483 if (parmp->window_layout == WIN_TABS)
2484 {
2485 if (curtab->tp_next == NULL) /* just checking */
2486 break;
2487 goto_tabpage(0);
2488 }
2489 else
2490 {
2491 if (curwin->w_next == NULL) /* just checking */
2492 break;
2493 win_enter(curwin->w_next, FALSE);
2494 }
2495 }
2496 advance = TRUE;
2497
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002498 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002499 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002500 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2501 {
2502 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002503 /* Edit file from arg list, if there is one. When "Quit" selected
2504 * at the ATTENTION prompt close the window. */
2505 old_curbuf = curbuf;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002506 (void)do_ecmd(0, arg_idx < GARGCOUNT
2507 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2508 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
Bram Moolenaar84212822006-11-07 21:59:47 +00002509 if (curbuf == old_curbuf)
2510 {
2511 if (got_int || only_one_window())
2512 {
2513 /* abort selected or quit and only one window */
2514 did_emsg = FALSE; /* avoid hit-enter prompt */
2515 getout(1);
2516 }
2517 win_close(curwin, TRUE);
2518 advance = FALSE;
2519 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002520 if (arg_idx == GARGCOUNT - 1)
2521 arg_had_last = TRUE;
2522 ++arg_idx;
2523 }
2524 ui_breakcheck();
2525 if (got_int)
2526 {
2527 (void)vgetc(); /* only break the file loading, not the rest */
2528 break;
2529 }
2530 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002531
2532 if (parmp->window_layout == WIN_TABS)
2533 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002534# ifdef FEAT_AUTOCMD
2535 --autocmd_no_enter;
2536# endif
2537 win_enter(firstwin, FALSE); /* back to first window */
2538# ifdef FEAT_AUTOCMD
2539 --autocmd_no_leave;
2540# endif
2541 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002542 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002543 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2544}
2545#endif /* FEAT_WINDOWS */
2546
2547/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002548 * Execute the commands from --cmd arguments "cmds[cnt]".
2549 */
2550 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002551exe_pre_commands(parmp)
2552 mparm_T *parmp;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002553{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002554 char_u **cmds = parmp->pre_commands;
2555 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002556 int i;
2557
2558 if (cnt > 0)
2559 {
2560 curwin->w_cursor.lnum = 0; /* just in case.. */
2561 sourcing_name = (char_u *)_("pre-vimrc command line");
2562# ifdef FEAT_EVAL
2563 current_SID = SID_CMDARG;
2564# endif
2565 for (i = 0; i < cnt; ++i)
2566 do_cmdline_cmd(cmds[i]);
2567 sourcing_name = NULL;
2568# ifdef FEAT_EVAL
2569 current_SID = 0;
2570# endif
2571 TIME_MSG("--cmd commands");
2572 }
2573}
2574
2575/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002576 * Execute "+", "-c" and "-S" arguments.
2577 */
2578 static void
2579exe_commands(parmp)
2580 mparm_T *parmp;
2581{
2582 int i;
2583
2584 /*
2585 * We start commands on line 0, make "vim +/pat file" match a
2586 * pattern on line 1. But don't move the cursor when an autocommand
2587 * with g`" was used.
2588 */
2589 msg_scroll = TRUE;
2590 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2591 curwin->w_cursor.lnum = 0;
2592 sourcing_name = (char_u *)"command line";
2593#ifdef FEAT_EVAL
2594 current_SID = SID_CARG;
2595#endif
2596 for (i = 0; i < parmp->n_commands; ++i)
2597 {
2598 do_cmdline_cmd(parmp->commands[i]);
2599 if (parmp->cmds_tofree[i])
2600 vim_free(parmp->commands[i]);
2601 }
2602 sourcing_name = NULL;
2603#ifdef FEAT_EVAL
2604 current_SID = 0;
2605#endif
2606 if (curwin->w_cursor.lnum == 0)
2607 curwin->w_cursor.lnum = 1;
2608
2609 if (!exmode_active)
2610 msg_scroll = FALSE;
2611
2612#ifdef FEAT_QUICKFIX
2613 /* When started with "-q errorfile" jump to first error again. */
2614 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002615 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002616#endif
2617 TIME_MSG("executing command arguments");
2618}
2619
2620/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002621 * Source startup scripts.
2622 */
2623 static void
2624source_startup_scripts(parmp)
2625 mparm_T *parmp;
2626{
2627 int i;
2628
2629 /*
2630 * For "evim" source evim.vim first of all, so that the user can overrule
2631 * any things he doesn't like.
2632 */
2633 if (parmp->evim_mode)
2634 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002635 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002636 TIME_MSG("source evim file");
2637 }
2638
2639 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002640 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002641 * nothing else.
2642 */
2643 if (parmp->use_vimrc != NULL)
2644 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002645 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2646 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002647 {
2648#ifdef FEAT_GUI
2649 if (use_gvimrc == NULL) /* don't load gvimrc either */
2650 use_gvimrc = parmp->use_vimrc;
2651#endif
2652 if (parmp->use_vimrc[2] == 'N')
2653 p_lpl = FALSE; /* don't load plugins either */
2654 }
2655 else
2656 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002657 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002658 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2659 }
2660 }
2661 else if (!silent_mode)
2662 {
2663#ifdef AMIGA
2664 struct Process *proc = (struct Process *)FindTask(0L);
2665 APTR save_winptr = proc->pr_WindowPtr;
2666
2667 /* Avoid a requester here for a volume that doesn't exist. */
2668 proc->pr_WindowPtr = (APTR)-1L;
2669#endif
2670
2671 /*
2672 * Get system wide defaults, if the file name is defined.
2673 */
2674#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002675 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002676#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002677#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002678 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002679#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002680
2681 /*
2682 * Try to read initialization commands from the following places:
2683 * - environment variable VIMINIT
2684 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2685 * - second user vimrc file ($VIM/.vimrc for Dos)
2686 * - environment variable EXINIT
2687 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2688 * - second user exrc file ($VIM/.exrc for Dos)
2689 * The first that exists is used, the rest is ignored.
2690 */
2691 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2692 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002693 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002694#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002695 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2696 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002697#endif
2698#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002699 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2700 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002701#endif
2702 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002703 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002704 {
2705#ifdef USR_EXRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002706 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002707#endif
2708 }
2709 }
2710
2711 /*
2712 * Read initialization commands from ".vimrc" or ".exrc" in current
2713 * directory. This is only done if the 'exrc' option is set.
2714 * Because of security reasons we disallow shell and write commands
2715 * now, except for unix if the file is owned by the user or 'secure'
2716 * option has been reset in environment of global ".exrc" or ".vimrc".
2717 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2718 * SYS_VIMRC_FILE.
2719 */
2720 if (p_exrc)
2721 {
2722#if defined(UNIX) || defined(VMS)
2723 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2724 if (!file_owned(VIMRC_FILE))
2725#endif
2726 secure = p_secure;
2727
2728 i = FAIL;
2729 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2730 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2731#ifdef USR_VIMRC_FILE2
2732 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2733 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2734#endif
2735#ifdef USR_VIMRC_FILE3
2736 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2737 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2738#endif
2739#ifdef SYS_VIMRC_FILE
2740 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2741 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2742#endif
2743 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002744 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002745
2746 if (i == FAIL)
2747 {
2748#if defined(UNIX) || defined(VMS)
2749 /* if ".exrc" is not owned by user set 'secure' mode */
2750 if (!file_owned(EXRC_FILE))
2751 secure = p_secure;
2752 else
2753 secure = 0;
2754#endif
2755 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2756 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2757#ifdef USR_EXRC_FILE2
2758 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2759 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2760#endif
2761 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002762 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002763 }
2764 }
2765 if (secure == 2)
2766 need_wait_return = TRUE;
2767 secure = 0;
2768#ifdef AMIGA
2769 proc->pr_WindowPtr = save_winptr;
2770#endif
2771 }
2772 TIME_MSG("sourcing vimrc file(s)");
2773}
2774
2775/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002776 * Setup to start using the GUI. Exit with an error when not available.
2777 */
2778 static void
2779main_start_gui()
2780{
2781#ifdef FEAT_GUI
2782 gui.starting = TRUE; /* start GUI a bit later */
2783#else
2784 mch_errmsg(_(e_nogvim));
2785 mch_errmsg("\n");
2786 mch_exit(2);
2787#endif
2788}
2789
2790/*
2791 * Get an evironment variable, and execute it as Ex commands.
2792 * Returns FAIL if the environment variable was not executed, OK otherwise.
2793 */
2794 int
2795process_env(env, is_viminit)
2796 char_u *env;
2797 int is_viminit; /* when TRUE, called for VIMINIT */
2798{
2799 char_u *initstr;
2800 char_u *save_sourcing_name;
2801 linenr_T save_sourcing_lnum;
2802#ifdef FEAT_EVAL
2803 scid_T save_sid;
2804#endif
2805
2806 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2807 {
2808 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002809 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002810 save_sourcing_name = sourcing_name;
2811 save_sourcing_lnum = sourcing_lnum;
2812 sourcing_name = env;
2813 sourcing_lnum = 0;
2814#ifdef FEAT_EVAL
2815 save_sid = current_SID;
2816 current_SID = SID_ENV;
2817#endif
2818 do_cmdline_cmd(initstr);
2819 sourcing_name = save_sourcing_name;
2820 sourcing_lnum = save_sourcing_lnum;
2821#ifdef FEAT_EVAL
2822 current_SID = save_sid;;
2823#endif
2824 return OK;
2825 }
2826 return FAIL;
2827}
2828
2829#if defined(UNIX) || defined(VMS)
2830/*
2831 * Return TRUE if we are certain the user owns the file "fname".
2832 * Used for ".vimrc" and ".exrc".
2833 * Use both stat() and lstat() for extra security.
2834 */
2835 static int
2836file_owned(fname)
2837 char *fname;
2838{
2839 struct stat s;
2840# ifdef UNIX
2841 uid_t uid = getuid();
2842# else /* VMS */
2843 uid_t uid = ((getgid() << 16) | getuid());
2844# endif
2845
2846 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2847# ifdef HAVE_LSTAT
2848 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2849# endif
2850 );
2851}
2852#endif
2853
2854/*
2855 * Give an error message main_errors["n"] and exit.
2856 */
2857 static void
2858mainerr(n, str)
2859 int n; /* one of the ME_ defines */
2860 char_u *str; /* extra argument or NULL */
2861{
2862#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2863 reset_signals(); /* kill us with CTRL-C here, if you like */
2864#endif
2865
2866 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002867 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002868 mch_errmsg(_(main_errors[n]));
2869 if (str != NULL)
2870 {
2871 mch_errmsg(": \"");
2872 mch_errmsg((char *)str);
2873 mch_errmsg("\"");
2874 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002875 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002876
2877 mch_exit(1);
2878}
2879
2880 void
2881mainerr_arg_missing(str)
2882 char_u *str;
2883{
2884 mainerr(ME_ARG_MISSING, str);
2885}
2886
2887/*
2888 * print a message with three spaces prepended and '\n' appended.
2889 */
2890 static void
2891main_msg(s)
2892 char *s;
2893{
2894 mch_msg(" ");
2895 mch_msg(s);
2896 mch_msg("\n");
2897}
2898
2899/*
2900 * Print messages for "vim -h" or "vim --help" and exit.
2901 */
2902 static void
2903usage()
2904{
2905 int i;
2906 static char *(use[]) =
2907 {
2908 N_("[file ..] edit specified file(s)"),
2909 N_("- read text from stdin"),
2910 N_("-t tag edit file where tag is defined"),
2911#ifdef FEAT_QUICKFIX
2912 N_("-q [errorfile] edit file with first error")
2913#endif
2914 };
2915
2916#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2917 reset_signals(); /* kill us with CTRL-C here, if you like */
2918#endif
2919
2920 mch_msg(longVersion);
2921 mch_msg(_("\n\nusage:"));
2922 for (i = 0; ; ++i)
2923 {
2924 mch_msg(_(" vim [arguments] "));
2925 mch_msg(_(use[i]));
2926 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
2927 break;
2928 mch_msg(_("\n or:"));
2929 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002930#ifdef VMS
2931 mch_msg(_("where case is ignored prepend / to make flag upper case"));
2932#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002933
2934 mch_msg(_("\n\nArguments:\n"));
2935 main_msg(_("--\t\t\tOnly file names after this"));
2936#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2937 main_msg(_("--literal\t\tDon't expand wildcards"));
2938#endif
2939#ifdef FEAT_OLE
2940 main_msg(_("-register\t\tRegister this gvim for OLE"));
2941 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
2942#endif
2943#ifdef FEAT_GUI
2944 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
2945 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
2946#endif
2947 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
2948 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
2949 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
2950#ifdef FEAT_DIFF
2951 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
2952#endif
2953 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
2954 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
2955 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
2956 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
2957 main_msg(_("-M\t\t\tModifications in text not allowed"));
2958 main_msg(_("-b\t\t\tBinary mode"));
2959#ifdef FEAT_LISP
2960 main_msg(_("-l\t\t\tLisp mode"));
2961#endif
2962 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
2963 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
2964 main_msg(_("-V[N]\t\tVerbose level"));
2965 main_msg(_("-D\t\t\tDebugging mode"));
2966 main_msg(_("-n\t\t\tNo swap file, use memory only"));
2967 main_msg(_("-r\t\t\tList swap files and exit"));
2968 main_msg(_("-r (with file name)\tRecover crashed session"));
2969 main_msg(_("-L\t\t\tSame as -r"));
2970#ifdef AMIGA
2971 main_msg(_("-f\t\t\tDon't use newcli to open window"));
2972 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
2973#endif
2974#ifdef FEAT_ARABIC
2975 main_msg(_("-A\t\t\tstart in Arabic mode"));
2976#endif
2977#ifdef FEAT_RIGHTLEFT
2978 main_msg(_("-H\t\t\tStart in Hebrew mode"));
2979#endif
2980#ifdef FEAT_FKMAP
2981 main_msg(_("-F\t\t\tStart in Farsi mode"));
2982#endif
2983 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
2984 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
2985#ifdef FEAT_GUI
2986 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
2987#endif
2988 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002989 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002990 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
2991 main_msg(_("-O[N]\t\tLike -o but split vertically"));
2992 main_msg(_("+\t\t\tStart at end of file"));
2993 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002994 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002995 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
2996 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
2997 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
2998 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
2999 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3000#ifdef FEAT_CRYPT
3001 main_msg(_("-x\t\t\tEdit encrypted files"));
3002#endif
3003#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3004# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3005 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3006# endif
3007 main_msg(_("-X\t\t\tDo not connect to X server"));
3008#endif
3009#ifdef FEAT_CLIENTSERVER
3010 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3011 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3012 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3013 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003014# ifdef FEAT_WINDOWS
3015 main_msg(_("--remote-tab <files> As --remote but open tab page for each file"));
3016# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003017 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3018 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3019 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3020 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3021#endif
3022#ifdef FEAT_VIMINFO
3023 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3024#endif
3025 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3026 main_msg(_("--version\t\tPrint version information and exit"));
3027
3028#ifdef FEAT_GUI_X11
3029# ifdef FEAT_GUI_MOTIF
3030 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3031# else
3032# ifdef FEAT_GUI_ATHENA
3033# ifdef FEAT_GUI_NEXTAW
3034 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3035# else
3036 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3037# endif
3038# endif
3039# endif
3040 main_msg(_("-display <display>\tRun vim on <display>"));
3041 main_msg(_("-iconic\t\tStart vim iconified"));
3042# if 0
3043 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3044 mch_msg(_("\t\t\t (Unimplemented)\n"));
3045# endif
3046 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3047 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3048 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3049 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3050 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3051 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3052 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3053 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3054# ifdef FEAT_GUI_ATHENA
3055 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3056# endif
3057 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3058 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3059 main_msg(_("-xrm <resource>\tSet the specified resource"));
3060#endif /* FEAT_GUI_X11 */
3061#if defined(FEAT_GUI) && defined(RISCOS)
3062 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3063 main_msg(_("--columns <number>\tInitial width of window in columns"));
3064 main_msg(_("--rows <number>\tInitial height of window in rows"));
3065#endif
3066#ifdef FEAT_GUI_GTK
3067 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3068 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3069 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3070 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3071 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3072# ifdef HAVE_GTK2
3073 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3074# endif
3075 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3076#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003077#ifdef FEAT_GUI_W32
3078 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3079#endif
3080
3081#ifdef FEAT_GUI_GNOME
3082 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3083 if (gui.starting)
3084 mch_msg("\n");
3085 else
3086#endif
3087 mch_exit(0);
3088}
3089
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003090#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003091/*
3092 * Check the result of the ATTENTION dialog:
3093 * When "Quit" selected, exit Vim.
3094 * When "Recover" selected, recover the file.
3095 */
3096 static void
3097check_swap_exists_action()
3098{
3099 if (swap_exists_action == SEA_QUIT)
3100 getout(1);
3101 handle_swap_exists(NULL);
3102}
3103#endif
3104
3105#if defined(STARTUPTIME) || defined(PROTO)
3106static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3107
3108static struct timeval prev_timeval;
3109
3110/*
3111 * Save the previous time before doing something that could nest.
3112 * set "*tv_rel" to the time elapsed so far.
3113 */
3114 void
3115time_push(tv_rel, tv_start)
3116 void *tv_rel, *tv_start;
3117{
3118 *((struct timeval *)tv_rel) = prev_timeval;
3119 gettimeofday(&prev_timeval, NULL);
3120 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3121 - ((struct timeval *)tv_rel)->tv_usec;
3122 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3123 - ((struct timeval *)tv_rel)->tv_sec;
3124 if (((struct timeval *)tv_rel)->tv_usec < 0)
3125 {
3126 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3127 --((struct timeval *)tv_rel)->tv_sec;
3128 }
3129 *(struct timeval *)tv_start = prev_timeval;
3130}
3131
3132/*
3133 * Compute the previous time after doing something that could nest.
3134 * Subtract "*tp" from prev_timeval;
3135 * Note: The arguments are (void *) to avoid trouble with systems that don't
3136 * have struct timeval.
3137 */
3138 void
3139time_pop(tp)
3140 void *tp; /* actually (struct timeval *) */
3141{
3142 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3143 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3144 if (prev_timeval.tv_usec < 0)
3145 {
3146 prev_timeval.tv_usec += 1000000;
3147 --prev_timeval.tv_sec;
3148 }
3149}
3150
3151 static void
3152time_diff(then, now)
3153 struct timeval *then;
3154 struct timeval *now;
3155{
3156 long usec;
3157 long msec;
3158
3159 usec = now->tv_usec - then->tv_usec;
3160 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3161 usec = usec % 1000L;
3162 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3163}
3164
3165 void
3166time_msg(msg, tv_start)
3167 char *msg;
3168 void *tv_start; /* only for do_source: start time; actually
3169 (struct timeval *) */
3170{
3171 static struct timeval start;
3172 struct timeval now;
3173
3174 if (time_fd != NULL)
3175 {
3176 if (strstr(msg, "STARTING") != NULL)
3177 {
3178 gettimeofday(&start, NULL);
3179 prev_timeval = start;
3180 fprintf(time_fd, "\n\ntimes in msec\n");
3181 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3182 fprintf(time_fd, " clock elapsed: other lines\n\n");
3183 }
3184 gettimeofday(&now, NULL);
3185 time_diff(&start, &now);
3186 if (((struct timeval *)tv_start) != NULL)
3187 {
3188 fprintf(time_fd, " ");
3189 time_diff(((struct timeval *)tv_start), &now);
3190 }
3191 fprintf(time_fd, " ");
3192 time_diff(&prev_timeval, &now);
3193 prev_timeval = now;
3194 fprintf(time_fd, ": %s\n", msg);
3195 }
3196}
3197
3198# ifdef WIN3264
3199/*
3200 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3201 */
3202 int
3203gettimeofday(struct timeval *tv, char *dummy)
3204{
3205 long t = clock();
3206 tv->tv_sec = t / CLOCKS_PER_SEC;
3207 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3208 return 0;
3209}
3210# endif
3211
3212#endif
3213
3214#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3215
3216/*
3217 * Common code for the X command server and the Win32 command server.
3218 */
3219
Bram Moolenaareb94e552006-03-11 21:35:11 +00003220static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003221
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003222/*
3223 * Do the client-server stuff, unless "--servername ''" was used.
3224 */
3225 static void
3226exec_on_server(parmp)
3227 mparm_T *parmp;
3228{
3229 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3230 {
3231# ifdef WIN32
3232 /* Initialise the client/server messaging infrastructure. */
3233 serverInitMessaging();
3234# endif
3235
3236 /*
3237 * When a command server argument was found, execute it. This may
3238 * exit Vim when it was successful. Otherwise it's executed further
3239 * on. Remember the encoding used here in "serverStrEnc".
3240 */
3241 if (parmp->serverArg)
3242 {
3243 cmdsrv_main(&parmp->argc, parmp->argv,
3244 parmp->serverName_arg, &parmp->serverStr);
3245# ifdef FEAT_MBYTE
3246 parmp->serverStrEnc = vim_strsave(p_enc);
3247# endif
3248 }
3249
3250 /* If we're still running, get the name to register ourselves.
3251 * On Win32 can register right now, for X11 need to setup the
3252 * clipboard first, it's further down. */
3253 parmp->servername = serverMakeName(parmp->serverName_arg,
3254 parmp->argv[0]);
3255# ifdef WIN32
3256 if (parmp->servername != NULL)
3257 {
3258 serverSetName(parmp->servername);
3259 vim_free(parmp->servername);
3260 }
3261# endif
3262 }
3263}
3264
3265/*
3266 * Prepare for running as a Vim server.
3267 */
3268 static void
3269prepare_server(parmp)
3270 mparm_T *parmp;
3271{
3272# if defined(FEAT_X11)
3273 /*
3274 * Register for remote command execution with :serversend and --remote
3275 * unless there was a -X or a --servername '' on the command line.
3276 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003277 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003278 */
3279 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3280# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003281 (gui.in_use
3282# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003283 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003284# endif
3285 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003286# endif
3287 parmp->serverName_arg != NULL))
3288 {
3289 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3290 vim_free(parmp->servername);
3291 TIME_MSG("register server name");
3292 }
3293 else
3294 serverDelayedStartName = parmp->servername;
3295# endif
3296
3297 /*
3298 * Execute command ourselves if we're here because the send failed (or
3299 * else we would have exited above).
3300 */
3301 if (parmp->serverStr != NULL)
3302 {
3303 char_u *p;
3304
3305 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3306 parmp->serverStr, &p));
3307 vim_free(p);
3308 }
3309}
3310
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003311 static void
3312cmdsrv_main(argc, argv, serverName_arg, serverStr)
3313 int *argc;
3314 char **argv;
3315 char_u *serverName_arg;
3316 char_u **serverStr;
3317{
3318 char_u *res;
3319 int i;
3320 char_u *sname;
3321 int ret;
3322 int didone = FALSE;
3323 int exiterr = 0;
3324 char **newArgV = argv + 1;
3325 int newArgC = 1,
3326 Argc = *argc;
3327 int argtype;
3328#define ARGTYPE_OTHER 0
3329#define ARGTYPE_EDIT 1
3330#define ARGTYPE_EDIT_WAIT 2
3331#define ARGTYPE_SEND 3
3332 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003333 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003334# ifndef FEAT_X11
3335 HWND srv;
3336# else
3337 Window srv;
3338
3339 setup_term_clip();
3340# endif
3341
3342 sname = serverMakeName(serverName_arg, argv[0]);
3343 if (sname == NULL)
3344 return;
3345
3346 /*
3347 * Execute the command server related arguments and remove them
3348 * from the argc/argv array; We may have to return into main()
3349 */
3350 for (i = 1; i < Argc; i++)
3351 {
3352 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003353 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003354 {
3355 for (; i < *argc; i++)
3356 {
3357 *newArgV++ = argv[i];
3358 newArgC++;
3359 }
3360 break;
3361 }
3362
Bram Moolenaareb94e552006-03-11 21:35:11 +00003363 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003364 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003365 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3366 {
3367 char *p = argv[i] + 8;
3368
3369 argtype = ARGTYPE_EDIT;
3370 while (*p != NUL)
3371 {
3372 if (STRNICMP(p, "-wait", 5) == 0)
3373 {
3374 argtype = ARGTYPE_EDIT_WAIT;
3375 p += 5;
3376 }
3377 else if (STRNICMP(p, "-silent", 7) == 0)
3378 {
3379 silent = TRUE;
3380 p += 7;
3381 }
3382 else if (STRNICMP(p, "-tab", 4) == 0)
3383 {
3384 tabs = TRUE;
3385 p += 4;
3386 }
3387 else
3388 {
3389 argtype = ARGTYPE_OTHER;
3390 break;
3391 }
3392 }
3393 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003394 else
3395 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003396
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003397 if (argtype != ARGTYPE_OTHER)
3398 {
3399 if (i == *argc - 1)
3400 mainerr_arg_missing((char_u *)argv[i]);
3401 if (argtype == ARGTYPE_SEND)
3402 {
3403 *serverStr = (char_u *)argv[i + 1];
3404 i++;
3405 }
3406 else
3407 {
3408 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003409 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003410 if (*serverStr == NULL)
3411 {
3412 /* Probably out of memory, exit. */
3413 didone = TRUE;
3414 exiterr = 1;
3415 break;
3416 }
3417 Argc = i;
3418 }
3419# ifdef FEAT_X11
3420 if (xterm_dpy == NULL)
3421 {
3422 mch_errmsg(_("No display"));
3423 ret = -1;
3424 }
3425 else
3426 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3427 NULL, &srv, 0, 0, silent);
3428# else
3429 /* Win32 always works? */
3430 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3431# endif
3432 if (ret < 0)
3433 {
3434 if (argtype == ARGTYPE_SEND)
3435 {
3436 /* Failed to send, abort. */
3437 mch_errmsg(_(": Send failed.\n"));
3438 didone = TRUE;
3439 exiterr = 1;
3440 }
3441 else if (!silent)
3442 /* Let vim start normally. */
3443 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3444 break;
3445 }
3446
3447# ifdef FEAT_GUI_W32
3448 /* Guess that when the server name starts with "g" it's a GUI
3449 * server, which we can bring to the foreground here.
3450 * Foreground() in the server doesn't work very well. */
3451 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3452 SetForegroundWindow(srv);
3453# endif
3454
3455 /*
3456 * For --remote-wait: Wait until the server did edit each
3457 * file. Also detect that the server no longer runs.
3458 */
3459 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3460 {
3461 int numFiles = *argc - i - 1;
3462 int j;
3463 char_u *done = alloc(numFiles);
3464 char_u *p;
3465# ifdef FEAT_GUI_W32
3466 NOTIFYICONDATA ni;
3467 int count = 0;
3468 extern HWND message_window;
3469# endif
3470
3471 if (numFiles > 0 && argv[i + 1][0] == '+')
3472 /* Skip "+cmd" argument, don't wait for it to be edited. */
3473 --numFiles;
3474
3475# ifdef FEAT_GUI_W32
3476 ni.cbSize = sizeof(ni);
3477 ni.hWnd = message_window;
3478 ni.uID = 0;
3479 ni.uFlags = NIF_ICON|NIF_TIP;
3480 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3481 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3482 Shell_NotifyIcon(NIM_ADD, &ni);
3483# endif
3484
3485 /* Wait for all files to unload in remote */
3486 memset(done, 0, numFiles);
3487 while (memchr(done, 0, numFiles) != NULL)
3488 {
3489# ifdef WIN32
3490 p = serverGetReply(srv, NULL, TRUE, TRUE);
3491 if (p == NULL)
3492 break;
3493# else
3494 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3495 break;
3496# endif
3497 j = atoi((char *)p);
3498 if (j >= 0 && j < numFiles)
3499 {
3500# ifdef FEAT_GUI_W32
3501 ++count;
3502 sprintf(ni.szTip, _("%d of %d edited"),
3503 count, numFiles);
3504 Shell_NotifyIcon(NIM_MODIFY, &ni);
3505# endif
3506 done[j] = 1;
3507 }
3508 }
3509# ifdef FEAT_GUI_W32
3510 Shell_NotifyIcon(NIM_DELETE, &ni);
3511# endif
3512 }
3513 }
3514 else if (STRICMP(argv[i], "--remote-expr") == 0)
3515 {
3516 if (i == *argc - 1)
3517 mainerr_arg_missing((char_u *)argv[i]);
3518# ifdef WIN32
3519 /* Win32 always works? */
3520 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3521 &res, NULL, 1, FALSE) < 0)
3522# else
3523 if (xterm_dpy == NULL)
3524 mch_errmsg(_("No display: Send expression failed.\n"));
3525 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3526 &res, NULL, 1, 1, FALSE) < 0)
3527# endif
3528 {
3529 if (res != NULL && *res != NUL)
3530 {
3531 /* Output error from remote */
3532 mch_errmsg((char *)res);
3533 vim_free(res);
3534 res = NULL;
3535 }
3536 mch_errmsg(_(": Send expression failed.\n"));
3537 }
3538 }
3539 else if (STRICMP(argv[i], "--serverlist") == 0)
3540 {
3541# ifdef WIN32
3542 /* Win32 always works? */
3543 res = serverGetVimNames();
3544# else
3545 if (xterm_dpy != NULL)
3546 res = serverGetVimNames(xterm_dpy);
3547# endif
3548 if (called_emsg)
3549 mch_errmsg("\n");
3550 }
3551 else if (STRICMP(argv[i], "--servername") == 0)
3552 {
3553 /* Alredy processed. Take it out of the command line */
3554 i++;
3555 continue;
3556 }
3557 else
3558 {
3559 *newArgV++ = argv[i];
3560 newArgC++;
3561 continue;
3562 }
3563 didone = TRUE;
3564 if (res != NULL && *res != NUL)
3565 {
3566 mch_msg((char *)res);
3567 if (res[STRLEN(res) - 1] != '\n')
3568 mch_msg("\n");
3569 }
3570 vim_free(res);
3571 }
3572
3573 if (didone)
3574 {
3575 display_errors(); /* display any collected messages */
3576 exit(exiterr); /* Mission accomplished - get out */
3577 }
3578
3579 /* Return back into main() */
3580 *argc = newArgC;
3581 vim_free(sname);
3582}
3583
3584/*
3585 * Build a ":drop" command to send to a Vim server.
3586 */
3587 static char_u *
Bram Moolenaareb94e552006-03-11 21:35:11 +00003588build_drop_cmd(filec, filev, tabs, sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003589 int filec;
3590 char **filev;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003591 int tabs; /* Use ":tab drop" instead of ":drop". */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003592 int sendReply;
3593{
3594 garray_T ga;
3595 int i;
3596 char_u *inicmd = NULL;
3597 char_u *p;
3598 char_u cwd[MAXPATHL];
3599
3600 if (filec > 0 && filev[0][0] == '+')
3601 {
3602 inicmd = (char_u *)filev[0] + 1;
3603 filev++;
3604 filec--;
3605 }
3606 /* Check if we have at least one argument. */
3607 if (filec <= 0)
3608 mainerr_arg_missing((char_u *)filev[-1]);
3609 if (mch_dirname(cwd, MAXPATHL) != OK)
3610 return NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003611 if ((p = vim_strsave_escaped_ext(cwd, PATH_ESC_CHARS, '\\', TRUE)) == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003612 return NULL;
3613 ga_init2(&ga, 1, 100);
3614 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3615 ga_concat(&ga, p);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003616 vim_free(p);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003617
3618 /* Call inputsave() so that a prompt for an encryption key works. */
3619 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3620 if (tabs)
3621 ga_concat(&ga, (char_u *)"tab ");
3622 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003623 for (i = 0; i < filec; i++)
3624 {
3625 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003626 * do it again in the Vim server. On MS-Windows only escape
3627 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003628 p = vim_strsave_escaped((char_u *)filev[i],
3629#ifdef UNIX
3630 PATH_ESC_CHARS
3631#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003632 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003633#endif
3634 );
3635 if (p == NULL)
3636 {
3637 vim_free(ga.ga_data);
3638 return NULL;
3639 }
3640 ga_concat(&ga, (char_u *)" ");
3641 ga_concat(&ga, p);
3642 vim_free(p);
3643 }
3644 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3645 * CTRL-\ CTRL-N again. */
3646 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3647 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3648 if (sendReply)
3649 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3650 ga_concat(&ga, (char_u *)"<CR>:");
3651 if (inicmd != NULL)
3652 {
3653 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3654 * the following commands to be inserted as text. Use a "|",
3655 * hopefully "inicmd" does allow this... */
3656 ga_concat(&ga, inicmd);
3657 ga_concat(&ga, (char_u *)"|");
3658 }
3659 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3660 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00003661 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003662 ga_append(&ga, NUL);
3663 return ga.ga_data;
3664}
3665
3666/*
3667 * Replace termcodes such as <CR> and insert as key presses if there is room.
3668 */
3669 void
3670server_to_input_buf(str)
3671 char_u *str;
3672{
3673 char_u *ptr = NULL;
3674 char_u *cpo_save = p_cpo;
3675
3676 /* Set 'cpoptions' the way we want it.
3677 * B set - backslashes are *not* treated specially
3678 * k set - keycodes are *not* reverse-engineered
3679 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003680 * The last but one parameter of replace_termcodes() is TRUE so that the
3681 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003682 */
3683 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003684 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003685 p_cpo = cpo_save;
3686
3687 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3688 {
3689 /*
3690 * Add the string to the input stream.
3691 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3692 *
3693 * First clear typed characters from the typeahead buffer, there could
3694 * be half a mapping there. Then append to the existing string, so
3695 * that multiple commands from a client are concatenated.
3696 */
3697 if (typebuf.tb_maplen < typebuf.tb_len)
3698 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3699 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3700
3701 /* Let input_available() know we inserted text in the typeahead
3702 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003703 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003704 }
3705 vim_free((char_u *)ptr);
3706}
3707
3708/*
3709 * Evaluate an expression that the client sent to a string.
3710 * Handles disabling error messages and disables debugging, otherwise Vim
3711 * hangs, waiting for "cont" to be typed.
3712 */
3713 char_u *
3714eval_client_expr_to_string(expr)
3715 char_u *expr;
3716{
3717 char_u *res;
3718 int save_dbl = debug_break_level;
3719 int save_ro = redir_off;
3720
3721 debug_break_level = -1;
3722 redir_off = 0;
3723 ++emsg_skip;
3724
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003725 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003726
3727 debug_break_level = save_dbl;
3728 redir_off = save_ro;
3729 --emsg_skip;
3730
Bram Moolenaar63a121b2005-12-11 21:36:39 +00003731 /* A client can tell us to redraw, but not to display the cursor, so do
3732 * that here. */
3733 setcursor();
3734 out_flush();
3735#ifdef FEAT_GUI
3736 if (gui.in_use)
3737 gui_update_cursor(FALSE, FALSE);
3738#endif
3739
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003740 return res;
3741}
3742
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003743/*
3744 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3745 * return an allocated string. Otherwise return "data".
3746 * "*tofree" is set to the result when it needs to be freed later.
3747 */
3748/*ARGSUSED*/
3749 char_u *
3750serverConvert(client_enc, data, tofree)
3751 char_u *client_enc;
3752 char_u *data;
3753 char_u **tofree;
3754{
3755 char_u *res = data;
3756
3757 *tofree = NULL;
3758# ifdef FEAT_MBYTE
3759 if (client_enc != NULL && p_enc != NULL)
3760 {
3761 vimconv_T vimconv;
3762
3763 vimconv.vc_type = CONV_NONE;
3764 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3765 && vimconv.vc_type != CONV_NONE)
3766 {
3767 res = string_convert(&vimconv, data, NULL);
3768 if (res == NULL)
3769 res = data;
3770 else
3771 *tofree = res;
3772 }
3773 convert_setup(&vimconv, NULL, NULL);
3774 }
3775# endif
3776 return res;
3777}
3778
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003779
3780/*
3781 * Make our basic server name: use the specified "arg" if given, otherwise use
3782 * the tail of the command "cmd" we were started with.
3783 * Return the name in allocated memory. This doesn't include a serial number.
3784 */
3785 static char_u *
3786serverMakeName(arg, cmd)
3787 char_u *arg;
3788 char *cmd;
3789{
3790 char_u *p;
3791
3792 if (arg != NULL && *arg != NUL)
3793 p = vim_strsave_up(arg);
3794 else
3795 {
3796 p = vim_strsave_up(gettail((char_u *)cmd));
3797 /* Remove .exe or .bat from the name. */
3798 if (p != NULL && vim_strchr(p, '.') != NULL)
3799 *vim_strchr(p, '.') = NUL;
3800 }
3801 return p;
3802}
3803#endif /* FEAT_CLIENTSERVER */
3804
3805/*
3806 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3807 */
3808#if defined(FEAT_FKMAP) || defined(PROTO)
3809# include "farsi.c"
3810#endif
3811
3812/*
3813 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3814 */
3815#if defined(FEAT_ARABIC) || defined(PROTO)
3816# include "arabic.c"
3817#endif