blob: 906d8bd5eedefc47cf2ddac156951e86774cf470 [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 Moolenaar78e17622007-08-30 10:26:19 +0000278 * --windowid
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000279 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000280 early_arg_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000281
282#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000283 findYourself(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000284#endif
285#if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000286 /* Prepare for possibly starting GUI sometime */
287 gui_prepare(&params.argc, params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000288 TIME_MSG("GUI prepared");
289#endif
290
291#ifdef FEAT_CLIPBOARD
292 clip_init(FALSE); /* Initialise clipboard stuff */
293 TIME_MSG("clipboard setup");
294#endif
295
296 /*
297 * Check if we have an interactive window.
298 * On the Amiga: If there is no window, we open one with a newcli command
299 * (needed for :! to * work). mch_check_win() will also handle the -d or
300 * -dev argument.
301 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000302 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000303 TIME_MSG("window checked");
304
305 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000306 * Allocate the first window and buffer.
307 * Can't do anything without it, exit when it fails.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000308 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000309 if (win_alloc_first() == FAIL)
310 mch_exit(0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000311
312 init_yank(); /* init yank buffers */
313
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000314 alist_init(&global_alist); /* Init the argument list to empty. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000315
316 /*
317 * Set the default values for the options.
318 * NOTE: Non-latin1 translated messages are working only after this,
319 * because this is where "has_mbyte" will be set, which is used by
320 * msg_outtrans_len_attr().
321 * First find out the home directory, needed to expand "~" in options.
322 */
323 init_homedir(); /* find real value of $HOME */
324 set_init_1();
325 TIME_MSG("inits 1");
326
327#ifdef FEAT_EVAL
328 set_lang_var(); /* set v:lang and v:ctype */
329#endif
330
331#ifdef FEAT_CLIENTSERVER
332 /*
333 * Do the client-server stuff, unless "--servername ''" was used.
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000334 * This may exit Vim if the command was sent to the server.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000335 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000336 exec_on_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000337#endif
338
339 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000340 * Figure out the way to work from the command name argv[0].
341 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000342 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000343 parse_command_name(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000344
345 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000346 * Process the command line arguments. File names are put in the global
347 * argument list "global_alist".
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000348 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000349 command_line_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000350 TIME_MSG("parsing arguments");
351
352 /*
353 * On some systems, when we compile with the GUI, we always use it. On Mac
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000354 * there is no terminal version, and on Windows we can't fork one off with
355 * :gui.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000356 */
357#ifdef ALWAYS_USE_GUI
358 gui.starting = TRUE;
359#else
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000360# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000361 /*
362 * Check if the GUI can be started. Reset gui.starting if not.
363 * Don't know about other systems, stay on the safe side and don't check.
364 */
365 if (gui.starting && gui_init_check() == FAIL)
366 {
367 gui.starting = FALSE;
368
369 /* When running "evim" or "gvim -y" we need the menus, exit if we
370 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000371 if (params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000372 mch_exit(1);
373 }
374# endif
375#endif
376
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000377 if (GARGCOUNT > 0)
378 {
379#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
380 /*
381 * Expand wildcards in file names.
382 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000383 if (!params.literal)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000384 {
385 /* Temporarily add '(' and ')' to 'isfname'. These are valid
386 * filename characters but are excluded from 'isfname' to make
387 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
388 do_cmdline_cmd((char_u *)":set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +0000389 alist_expand(NULL, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000390 do_cmdline_cmd((char_u *)":set isf&");
391 }
392#endif
393 fname = alist_name(&GARGLIST[0]);
394 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000395
396#if defined(WIN32) && defined(FEAT_MBYTE)
397 {
398 extern void set_alist_count(void);
399
400 /* Remember the number of entries in the argument list. If it changes
401 * we don't react on setting 'encoding'. */
402 set_alist_count();
403 }
404#endif
405
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000406#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000407 if (GARGCOUNT == 1 && params.full_path)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000408 {
409 /*
410 * If there is one filename, fully qualified, we have very probably
411 * been invoked from explorer, so change to the file's directory.
412 * Hint: to avoid this when typing a command use a forward slash.
413 * If the cd fails, it doesn't matter.
414 */
415 (void)vim_chdirfile(fname);
416 }
417#endif
418 TIME_MSG("expanding arguments");
419
420#ifdef FEAT_DIFF
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000421 if (params.diff_mode && params.window_count == -1)
422 params.window_count = 0; /* open up to 3 windows */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000423#endif
424
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000425 /* Don't redraw until much later. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000426 ++RedrawingDisabled;
427
428 /*
429 * When listing swap file names, don't do cursor positioning et. al.
430 */
431 if (recoverymode && fname == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000432 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000433
434 /*
435 * When certain to start the GUI, don't check capabilities of terminal.
436 * For GTK we can't be sure, but when started from the desktop it doesn't
437 * make sense to try using a terminal.
438 */
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000439#if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000440 if (gui.starting
441# ifdef FEAT_GUI_GTK
442 && !isatty(2)
443# endif
444 )
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000445 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000446#endif
447
448#if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
449 /* When the GUI is started from Finder, need to display messages in a
450 * message box. isatty(2) returns TRUE anyway, thus we need to check the
451 * name to know we're not started from a terminal. */
452 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000453 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000454 params.want_full_screen = FALSE;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000455
456 /* Avoid always using "/" as the current directory. Note that when
457 * started from Finder the arglist will be filled later in
458 * HandleODocAE() and "fname" will be NULL. */
459 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
460 && STRCMP(NameBuff, "/") == 0)
461 {
462 if (fname != NULL)
463 (void)vim_chdirfile(fname);
464 else
465 {
466 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
467 vim_chdir(NameBuff);
468 }
469 }
470 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000471#endif
472
473 /*
474 * mch_init() sets up the terminal (window) for use. This must be
475 * done after resetting full_screen, otherwise it may move the cursor
476 * (MSDOS).
477 * Note that we may use mch_exit() before mch_init()!
478 */
479 mch_init();
480 TIME_MSG("shell init");
481
482#ifdef USE_XSMP
483 /*
484 * For want of anywhere else to do it, try to connect to xsmp here.
485 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
486 * Hijacking -X 'no X connection' to also disable XSMP connection as that
487 * has a similar delay upon failure.
488 * Only try if SESSION_MANAGER is set to something non-null.
489 */
490 if (!x_no_connect)
491 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000492 char *p = getenv("SESSION_MANAGER");
493
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000494 if (p != NULL && *p != NUL)
495 {
496 xsmp_init();
497 TIME_MSG("xsmp init");
498 }
499 }
500#endif
501
502 /*
503 * Print a warning if stdout is not a terminal.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000504 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000505 check_tty(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000506
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000507 /* This message comes before term inits, but after setting "silent_mode"
508 * when the input is not a tty. */
509 if (GARGCOUNT > 1 && !silent_mode)
510 printf(_("%d files to edit\n"), GARGCOUNT);
511
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000512 if (params.want_full_screen && !silent_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000513 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000514 termcapinit(params.term); /* set terminal name and get terminal
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000515 capabilities (will set full_screen) */
516 screen_start(); /* don't know where cursor is now */
517 TIME_MSG("Termcap init");
518 }
519
520 /*
521 * Set the default values for the options that use Rows and Columns.
522 */
523 ui_get_shellsize(); /* inits Rows and Columns */
524#ifdef FEAT_NETBEANS_INTG
525 if (usingNetbeans)
526 Columns += 2; /* leave room for glyph gutter */
527#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000528 win_init_size();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000529#ifdef FEAT_DIFF
530 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
531 * file. There is no buffer yet though. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000532 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000533 diff_win_options(firstwin, FALSE);
534#endif
535
536 cmdline_row = Rows - p_ch;
537 msg_row = cmdline_row;
538 screenalloc(FALSE); /* allocate screen buffers */
539 set_init_2();
540 TIME_MSG("inits 2");
541
542 msg_scroll = TRUE;
543 no_wait_return = TRUE;
544
545 init_mappings(); /* set up initial mappings */
546
547 init_highlight(TRUE, FALSE); /* set the default highlight groups */
548 TIME_MSG("init highlight");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000549
550#ifdef FEAT_EVAL
551 /* Set the break level after the terminal is initialized. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000552 debug_break_level = params.use_debug_break_level;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000553#endif
554
Bram Moolenaar58d98232005-07-23 22:25:46 +0000555 /* Execute --cmd arguments. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000556 exe_pre_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000557
Bram Moolenaar58d98232005-07-23 22:25:46 +0000558 /* Source startup scripts. */
559 source_startup_scripts(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000560
561#ifdef FEAT_EVAL
562 /*
563 * Read all the plugin files.
564 * Only when compiled with +eval, since most plugins need it.
565 */
566 if (p_lpl)
567 {
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000568# ifdef VMS /* Somehow VMS doesn't handle the "**". */
569 source_runtime((char_u *)"plugin/*.vim", TRUE);
570# else
Bram Moolenaar07d4d732005-10-03 22:04:08 +0000571 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000572# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000573 TIME_MSG("loading plugins");
574 }
575#endif
576
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000577#ifdef FEAT_DIFF
578 /* Decide about window layout for diff mode after reading vimrc. */
579 if (params.diff_mode && params.window_layout == 0)
580 {
581 if (diffopt_horizontal())
582 params.window_layout = WIN_HOR; /* use horizontal split */
583 else
584 params.window_layout = WIN_VER; /* use vertical split */
585 }
586#endif
587
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000588 /*
589 * Recovery mode without a file name: List swap files.
590 * This uses the 'dir' option, therefore it must be after the
591 * initializations.
592 */
593 if (recoverymode && fname == NULL)
594 {
595 recover_names(NULL, TRUE, 0);
596 mch_exit(0);
597 }
598
599 /*
600 * Set a few option defaults after reading .vimrc files:
601 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
602 */
603 set_init_3();
604 TIME_MSG("inits 3");
605
606 /*
607 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
608 * Note that this overrides anything from a vimrc file.
609 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000610 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000611 p_uc = 0;
612
613#ifdef FEAT_FKMAP
614 if (curwin->w_p_rl && p_altkeymap)
615 {
616 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
617# ifdef FEAT_ARABIC
618 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
619# endif
620 p_fkmap = TRUE; /* Set the Farsi keymap mode */
621 }
622#endif
623
624#ifdef FEAT_GUI
625 if (gui.starting)
626 {
627#if defined(UNIX) || defined(VMS)
628 /* When something caused a message from a vimrc script, need to output
629 * an extra newline before the shell prompt. */
630 if (did_emsg || msg_didout)
631 putchar('\n');
632#endif
633
634 gui_start(); /* will set full_screen to TRUE */
635 TIME_MSG("starting GUI");
636
637 /* When running "evim" or "gvim -y" we need the menus, exit if we
638 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000639 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000640 mch_exit(1);
641 }
642#endif
643
644#ifdef SPAWNO /* special MSDOS swapping library */
645 init_SPAWNO("", SWAP_ANY);
646#endif
647
648#ifdef FEAT_VIMINFO
649 /*
650 * Read in registers, history etc, but not marks, from the viminfo file
651 */
652 if (*p_viminfo != NUL)
653 {
654 read_viminfo(NULL, TRUE, FALSE, FALSE);
655 TIME_MSG("reading viminfo");
656 }
657#endif
658
659#ifdef FEAT_QUICKFIX
660 /*
661 * "-q errorfile": Load the error file now.
662 * If the error file can't be read, exit before doing anything else.
663 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000664 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000665 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000666 if (params.use_ef != NULL)
667 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000668 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000669 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000670 {
671 out_char('\n');
672 mch_exit(3);
673 }
674 TIME_MSG("reading errorfile");
675 }
676#endif
677
678 /*
679 * Start putting things on the screen.
680 * Scroll screen down before drawing over it
681 * Clear screen now, so file message will not be cleared.
682 */
683 starting = NO_BUFFERS;
684 no_wait_return = FALSE;
685 if (!exmode_active)
686 msg_scroll = FALSE;
687
688#ifdef FEAT_GUI
689 /*
690 * This seems to be required to make callbacks to be called now, instead
691 * of after things have been put on the screen, which then may be deleted
692 * when getting a resize callback.
693 * For the Mac this handles putting files dropped on the Vim icon to
694 * global_alist.
695 */
696 if (gui.in_use)
697 {
698# ifdef FEAT_SUN_WORKSHOP
699 if (!usingSunWorkShop)
700# endif
701 gui_wait_for_chars(50L);
702 TIME_MSG("GUI delay");
703 }
704#endif
705
706#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
707 qnx_clip_init();
708#endif
709
710#ifdef FEAT_XCLIPBOARD
711 /* Start using the X clipboard, unless the GUI was started. */
712# ifdef FEAT_GUI
713 if (!gui.in_use)
714# endif
715 {
716 setup_term_clip();
717 TIME_MSG("setup clipboard");
718 }
719#endif
720
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000721#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000722 /* Prepare for being a Vim server. */
723 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000724#endif
725
726 /*
727 * If "-" argument given: Read file from stdin.
728 * Do this before starting Raw mode, because it may change things that the
729 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
730 * are the same terminal: "cat | vim -".
731 * Using autocommands here may cause trouble...
732 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000733 if (params.edit_type == EDIT_STDIN && !recoverymode)
734 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000735
736#if defined(UNIX) || defined(VMS)
737 /* When switching screens and something caused a message from a vimrc
738 * script, need to output an extra newline on exit. */
739 if ((did_emsg || msg_didout) && *T_TI != NUL)
740 newline_on_exit = TRUE;
741#endif
742
743 /*
744 * When done something that is not allowed or error message call
745 * wait_return. This must be done before starttermcap(), because it may
746 * switch to another screen. It must be done after settmode(TMODE_RAW),
747 * because we want to react on a single key stroke.
748 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000749 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000750 */
751 settmode(TMODE_RAW);
752 TIME_MSG("setting raw mode");
753
754 if (need_wait_return || msg_didany)
755 {
756 wait_return(TRUE);
757 TIME_MSG("waiting for return");
758 }
759
760 starttermcap(); /* start termcap if not done by wait_return() */
761 TIME_MSG("start termcap");
762
763#ifdef FEAT_MOUSE
764 setmouse(); /* may start using the mouse */
765#endif
766 if (scroll_region)
767 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000768 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000769
770 /*
771 * Don't clear the screen when starting in Ex mode, unless using the GUI.
772 */
773 if (exmode_active
774#ifdef FEAT_GUI
775 && !gui.in_use
776#endif
777 )
778 must_redraw = CLEAR;
779 else
780 {
781 screenclear(); /* clear screen */
782 TIME_MSG("clearing screen");
783 }
784
785#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000786 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000787 {
788 (void)get_crypt_key(TRUE, TRUE);
789 TIME_MSG("getting crypt key");
790 }
791#endif
792
793 no_wait_return = TRUE;
794
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000795 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000796 * Create the requested number of windows and edit buffers in them.
797 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000798 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000799 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000800 TIME_MSG("opening buffers");
801
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000802#ifdef FEAT_EVAL
803 /* clear v:swapcommand */
804 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
805#endif
806
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000807 /* Ex starts at last line of the file */
808 if (exmode_active)
809 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
810
811#ifdef FEAT_AUTOCMD
812 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
813 TIME_MSG("BufEnter autocommands");
814#endif
815 setpcmark();
816
817#ifdef FEAT_QUICKFIX
818 /*
819 * When started with "-q errorfile" jump to first error now.
820 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000821 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000822 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000823 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000824 TIME_MSG("jump to first error");
825 }
826#endif
827
828#ifdef FEAT_WINDOWS
829 /*
830 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000831 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000832 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000833 edit_buffers(&params);
834#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000835
836#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000837 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000838 {
839 win_T *wp;
840
841 /* set options in each window for "vimdiff". */
842 for (wp = firstwin; wp != NULL; wp = wp->w_next)
843 diff_win_options(wp, TRUE);
844 }
845#endif
846
847 /*
848 * Shorten any of the filenames, but only when absolute.
849 */
850 shorten_fnames(FALSE);
851
852 /*
853 * Need to jump to the tag before executing the '-c command'.
854 * Makes "vim -c '/return' -t main" work.
855 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000856 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000857 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000858#if defined(HAS_SWAP_EXISTS_ACTION)
859 swap_exists_did_quit = FALSE;
860#endif
861
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000862 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000863 do_cmdline_cmd(IObuff);
864 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000865
866#if defined(HAS_SWAP_EXISTS_ACTION)
867 /* If the user doesn't want to edit the file then we quit here. */
868 if (swap_exists_did_quit)
869 getout(1);
870#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000871 }
872
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000873 /* Execute any "+", "-c" and "-S" arguments. */
874 if (params.n_commands > 0)
875 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000876
877 RedrawingDisabled = 0;
878 redraw_all_later(NOT_VALID);
879 no_wait_return = FALSE;
880 starting = 0;
881
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000882#ifdef FEAT_TERMRESPONSE
883 /* Requesting the termresponse is postponed until here, so that a "-c q"
884 * argument doesn't make it appear in the shell Vim was started from. */
885 may_req_termresponse();
886#endif
887
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000888 /* start in insert mode */
889 if (p_im)
890 need_start_insertmode = TRUE;
891
892#ifdef FEAT_AUTOCMD
893 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
894 TIME_MSG("VimEnter autocommands");
895#endif
896
897#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
898 /* When a startup script or session file setup for diff'ing and
899 * scrollbind, sync the scrollbind now. */
900 if (curwin->w_p_diff && curwin->w_p_scb)
901 {
902 update_topline();
903 check_scrollbind((linenr_T)0, 0L);
904 TIME_MSG("diff scrollbinding");
905 }
906#endif
907
908#if defined(WIN3264) && !defined(FEAT_GUI_W32)
909 mch_set_winsize_now(); /* Allow winsize changes from now on */
910#endif
911
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000912#if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
913 /* When tab pages were created, may need to update the tab pages line and
914 * scrollbars. This is skipped while creating them. */
915 if (first_tabpage->tp_next != NULL)
916 {
917 out_flush();
918 gui_init_which_components(NULL);
919 gui_update_scrollbars(TRUE);
920 }
921 need_mouse_correct = TRUE;
922#endif
923
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000924 /* If ":startinsert" command used, stuff a dummy command to be able to
925 * call normal_cmd(), which will then start Insert mode. */
926 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000927 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000928
929#ifdef FEAT_NETBEANS_INTG
930 if (usingNetbeans)
931 /* Tell the client that it can start sending commands. */
932 netbeans_startup_done();
933#endif
934
935 TIME_MSG("before starting main loop");
936
937 /*
938 * Call the main command loop. This never returns.
939 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000940 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000941
942 return 0;
943}
944#endif /* PROTO */
945
946/*
947 * Main loop: Execute Normal mode commands until exiting Vim.
948 * Also used to handle commands in the command-line window, until the window
949 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000950 * Also used to handle ":visual" command after ":global": execute Normal mode
951 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000952 */
953 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000954main_loop(cmdwin, noexmode)
955 int cmdwin; /* TRUE when working in the command-line window */
956 int noexmode; /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000957{
Bram Moolenaar225d32b2007-08-10 19:33:47 +0000958 oparg_T oa; /* operator arguments */
959 int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000960
961#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
962 /* Setup to catch a terminating error from the X server. Just ignore
963 * it, restore the state and continue. This might not always work
964 * properly, but at least we don't exit unexpectedly when the X server
965 * exists while Vim is running in a console. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000966 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000967 {
968 State = NORMAL;
969# ifdef FEAT_VISUAL
970 VIsual_active = FALSE;
971# endif
972 got_int = TRUE;
973 need_wait_return = FALSE;
974 global_busy = FALSE;
975 exmode_active = 0;
976 skip_redraw = FALSE;
977 RedrawingDisabled = 0;
978 no_wait_return = 0;
979# ifdef FEAT_EVAL
980 emsg_skip = 0;
981# endif
982 emsg_off = 0;
983# ifdef FEAT_MOUSE
984 setmouse();
985# endif
986 settmode(TMODE_RAW);
987 starttermcap();
988 scroll_start();
989 redraw_later_clear();
990 }
991#endif
992
993 clear_oparg(&oa);
994 while (!cmdwin
995#ifdef FEAT_CMDWIN
996 || cmdwin_result == 0
997#endif
998 )
999 {
1000 if (stuff_empty())
1001 {
1002 did_check_timestamps = FALSE;
1003 if (need_check_timestamps)
1004 check_timestamps(FALSE);
1005 if (need_wait_return) /* if wait_return still needed ... */
1006 wait_return(FALSE); /* ... call it now */
1007 if (need_start_insertmode && goto_im()
1008#ifdef FEAT_VISUAL
1009 && !VIsual_active
1010#endif
1011 )
1012 {
1013 need_start_insertmode = FALSE;
1014 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1015 /* skip the fileinfo message now, because it would be shown
1016 * after insert mode finishes! */
1017 need_fileinfo = FALSE;
1018 }
1019 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001020
1021 /* Reset "got_int" now that we got back to the main loop. Except when
1022 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1023 * the ":g" command.
1024 * For ":g/pat/vi" we reset "got_int" when used once. When used
1025 * a second time we go back to Ex mode and abort the ":g" command. */
1026 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001027 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001028 if (noexmode && global_busy && !exmode_active && previous_got_int)
1029 {
1030 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1031 * used and keep "got_int" set, so that it aborts ":g". */
1032 exmode_active = EXMODE_NORMAL;
1033 State = NORMAL;
1034 }
1035 else if (!global_busy || !exmode_active)
1036 {
1037 if (!quit_more)
1038 (void)vgetc(); /* flush all buffers */
1039 got_int = FALSE;
1040 }
1041 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001042 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001043 else
1044 previous_got_int = FALSE;
1045
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001046 if (!exmode_active)
1047 msg_scroll = FALSE;
1048 quit_more = FALSE;
1049
1050 /*
1051 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1052 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1053 * update cursor and redraw.
1054 */
1055 if (skip_redraw || exmode_active)
1056 skip_redraw = FALSE;
1057 else if (do_redraw || stuff_empty())
1058 {
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001059#ifdef FEAT_AUTOCMD
1060 /* Trigger CursorMoved if the cursor moved. */
1061 if (!finish_op && has_cursormoved()
1062 && !equalpos(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001063 {
1064 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1065 last_cursormoved = curwin->w_cursor;
1066 }
1067#endif
1068
Bram Moolenaar33aec762006-01-22 23:30:12 +00001069#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1070 /* Scroll-binding for diff mode may have been postponed until
1071 * here. Avoids doing it for every change. */
1072 if (diff_need_scrollbind)
1073 {
1074 check_scrollbind((linenr_T)0, 0L);
1075 diff_need_scrollbind = FALSE;
1076 }
1077#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001078#if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1079 /* Include a closed fold completely in the Visual area. */
1080 foldAdjustVisual();
1081#endif
1082#ifdef FEAT_FOLDING
1083 /*
1084 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1085 * contain the cursor.
1086 * When 'foldopen' is "all", open the fold(s) under the cursor.
1087 * This may mark the window for redrawing.
1088 */
1089 if (hasAnyFolding(curwin) && !char_avail())
1090 {
1091 foldCheckClose();
1092 if (fdo_flags & FDO_ALL)
1093 foldOpenCursor();
1094 }
1095#endif
1096
1097 /*
1098 * Before redrawing, make sure w_topline is correct, and w_leftcol
1099 * if lines don't wrap, and w_skipcol if lines wrap.
1100 */
1101 update_topline();
1102 validate_cursor();
1103
1104#ifdef FEAT_VISUAL
1105 if (VIsual_active)
1106 update_curbuf(INVERTED);/* update inverted part */
1107 else
1108#endif
1109 if (must_redraw)
1110 update_screen(0);
1111 else if (redraw_cmdline || clear_cmdline)
1112 showmode();
1113#ifdef FEAT_WINDOWS
1114 redraw_statuslines();
1115#endif
1116#ifdef FEAT_TITLE
1117 if (need_maketitle)
1118 maketitle();
1119#endif
1120 /* display message after redraw */
1121 if (keep_msg != NULL)
1122 {
1123 char_u *p;
1124
1125 /* msg_attr_keep() will set keep_msg to NULL, must free the
1126 * string here. */
1127 p = keep_msg;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001128 keep_msg = NULL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001129 msg_attr(p, keep_msg_attr);
1130 vim_free(p);
1131 }
1132 if (need_fileinfo) /* show file info after redraw */
1133 {
1134 fileinfo(FALSE, TRUE, FALSE);
1135 need_fileinfo = FALSE;
1136 }
1137
1138 emsg_on_display = FALSE; /* can delete error message now */
1139 did_emsg = FALSE;
1140 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001141 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001142 showruler(FALSE);
1143
1144 setcursor();
1145 cursor_on();
1146
1147 do_redraw = FALSE;
1148 }
1149#ifdef FEAT_GUI
1150 if (need_mouse_correct)
1151 gui_mouse_correct();
1152#endif
1153
1154 /*
1155 * Update w_curswant if w_set_curswant has been set.
1156 * Postponed until here to avoid computing w_virtcol too often.
1157 */
1158 update_curswant();
1159
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001160#ifdef FEAT_EVAL
1161 /*
1162 * May perform garbage collection when waiting for a character, but
1163 * only at the very toplevel. Otherwise we may be using a List or
1164 * Dict internally somewhere.
1165 * "may_garbage_collect" is reset in vgetc() which is invoked through
1166 * do_exmode() and normal_cmd().
1167 */
1168 may_garbage_collect = (!cmdwin && !noexmode);
1169#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001170 /*
1171 * If we're invoked as ex, do a round of ex commands.
1172 * Otherwise, get and execute a normal mode command.
1173 */
1174 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001175 {
1176 if (noexmode) /* End of ":global/path/visual" commands */
1177 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001178 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001179 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001180 else
1181 normal_cmd(&oa, TRUE);
1182 }
1183}
1184
1185
1186#if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1187/*
1188 * Exit, but leave behind swap files for modified buffers.
1189 */
1190 void
1191getout_preserve_modified(exitval)
1192 int exitval;
1193{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001194# if defined(SIGHUP) && defined(SIG_IGN)
1195 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1196 * makes Vim exit and then handling SIGHUP causes various reentrance
1197 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001198 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001199# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001200
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001201 ml_close_notmod(); /* close all not-modified buffers */
1202 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1203 ml_close_all(FALSE); /* close all memfiles, without deleting */
1204 getout(exitval); /* exit Vim properly */
1205}
1206#endif
1207
1208
1209/* Exit properly */
1210 void
1211getout(exitval)
1212 int exitval;
1213{
1214#ifdef FEAT_AUTOCMD
1215 buf_T *buf;
1216 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001217 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001218#endif
1219
1220 exiting = TRUE;
1221
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001222 /* When running in Ex mode an error causes us to exit with a non-zero exit
1223 * code. POSIX requires this, although it's not 100% clear from the
1224 * standard. */
1225 if (exmode_active)
1226 exitval += ex_exitval;
1227
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001228 /* Position the cursor on the last screen line, below all the text */
1229#ifdef FEAT_GUI
1230 if (!gui.in_use)
1231#endif
1232 windgoto((int)Rows - 1, 0);
1233
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001234#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1235 /* Optionally print hashtable efficiency. */
1236 hash_debug_results();
1237#endif
1238
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001239#ifdef FEAT_GUI
1240 msg_didany = FALSE;
1241#endif
1242
1243#ifdef FEAT_AUTOCMD
1244 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001245# if defined FEAT_WINDOWS
1246 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001247 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001248 next_tp = tp->tp_next;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001249 for (wp = (tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001250 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001251 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001252 buf = wp->w_buffer;
1253 if (buf->b_changedtick != -1)
1254 {
1255 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001256 FALSE, buf);
Bram Moolenaarf740b292006-02-16 22:11:02 +00001257 buf->b_changedtick = -1; /* note that we did it already */
1258 /* start all over, autocommands may mess up the lists */
1259 next_tp = first_tabpage;
1260 break;
1261 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001262 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001263 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001264# else
1265 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1266# endif
Bram Moolenaar33aec762006-01-22 23:30:12 +00001267
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001268 /* Trigger BufUnload for buffers that are loaded */
1269 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1270 if (buf->b_ml.ml_mfp != NULL)
1271 {
1272 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1273 FALSE, buf);
1274 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1275 break;
1276 }
1277 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1278#endif
1279
1280#ifdef FEAT_VIMINFO
1281 if (*p_viminfo != NUL)
1282 /* Write out the registers, history, marks etc, to the viminfo file */
1283 write_viminfo(NULL, FALSE);
1284#endif
1285
1286#ifdef FEAT_AUTOCMD
1287 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1288#endif
1289
Bram Moolenaar05159a02005-02-26 23:04:13 +00001290#ifdef FEAT_PROFILE
1291 profile_dump();
1292#endif
1293
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001294 if (did_emsg
1295#ifdef FEAT_GUI
1296 || (gui.in_use && msg_didany && p_verbose > 0)
1297#endif
1298 )
1299 {
1300 /* give the user a chance to read the (error) message */
1301 no_wait_return = FALSE;
1302 wait_return(FALSE);
1303 }
1304
1305#ifdef FEAT_AUTOCMD
1306 /* Position the cursor again, the autocommands may have moved it */
1307# ifdef FEAT_GUI
1308 if (!gui.in_use)
1309# endif
1310 windgoto((int)Rows - 1, 0);
1311#endif
1312
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001313#ifdef FEAT_MZSCHEME
1314 mzscheme_end();
1315#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001316#ifdef FEAT_TCL
1317 tcl_end();
1318#endif
1319#ifdef FEAT_RUBY
1320 ruby_end();
1321#endif
1322#ifdef FEAT_PYTHON
1323 python_end();
1324#endif
1325#ifdef FEAT_PERL
1326 perl_end();
1327#endif
1328#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1329 iconv_end();
1330#endif
1331#ifdef FEAT_NETBEANS_INTG
1332 netbeans_end();
1333#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001334#ifdef FEAT_CSCOPE
1335 cs_end();
1336#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001337
1338 mch_exit(exitval);
1339}
1340
1341/*
1342 * Get a (optional) count for a Vim argument.
1343 */
1344 static int
1345get_number_arg(p, idx, def)
1346 char_u *p; /* pointer to argument */
1347 int *idx; /* index in argument, is incremented */
1348 int def; /* default value */
1349{
1350 if (vim_isdigit(p[*idx]))
1351 {
1352 def = atoi((char *)&(p[*idx]));
1353 while (vim_isdigit(p[*idx]))
1354 *idx = *idx + 1;
1355 }
1356 return def;
1357}
1358
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001359#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1360/*
1361 * Setup to use the current locale (for ctype() and many other things).
1362 */
1363 static void
1364init_locale()
1365{
1366 setlocale(LC_ALL, "");
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001367# ifdef WIN32
1368 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1369 * text while it's expecting text in the current locale. This call avoids
1370 * that. */
1371 setlocale(LC_CTYPE, "C");
1372# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001373
1374# ifdef FEAT_GETTEXT
1375 {
1376 int mustfree = FALSE;
1377 char_u *p;
1378
1379# ifdef DYNAMIC_GETTEXT
1380 /* Initialize the gettext library */
1381 dyn_libintl_init(NULL);
1382# endif
1383 /* expand_env() doesn't work yet, because chartab[] is not initialized
1384 * yet, call vim_getenv() directly */
1385 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1386 if (p != NULL && *p != NUL)
1387 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001388 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001389 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1390 }
1391 if (mustfree)
1392 vim_free(p);
1393 textdomain(VIMPACKAGE);
1394 }
1395# endif
1396}
1397#endif
1398
1399/*
1400 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1401 * If the executable name starts with "r" we disable shell commands.
1402 * If the next character is "e" we run in Easy mode.
1403 * If the next character is "g" we run the GUI version.
1404 * If the next characters are "view" we start in readonly mode.
1405 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1406 * If the next characters are "ex" we start in Ex mode. If it's followed
1407 * by "im" use improved Ex mode.
1408 */
1409 static void
1410parse_command_name(parmp)
1411 mparm_T *parmp;
1412{
1413 char_u *initstr;
1414
1415 initstr = gettail((char_u *)parmp->argv[0]);
1416
1417#ifdef MACOS_X_UNIX
1418 /* An issue has been seen when launching Vim in such a way that
1419 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1420 * executable or a symbolic link of it. Until this issue is resolved
1421 * we prohibit the GUI from being used.
1422 */
1423 if (STRCMP(initstr, parmp->argv[0]) == 0)
1424 disallow_gui = TRUE;
1425
1426 /* TODO: On MacOS X default to gui if argv[0] ends in:
Bram Moolenaar27dc1952006-03-15 23:06:44 +00001427 * /Vim.app/Contents/MacOS/Vim */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001428#endif
1429
1430#ifdef FEAT_EVAL
1431 set_vim_var_string(VV_PROGNAME, initstr, -1);
1432#endif
1433
1434 if (TOLOWER_ASC(initstr[0]) == 'r')
1435 {
1436 restricted = TRUE;
1437 ++initstr;
1438 }
1439
1440 /* Avoid using evim mode for "editor". */
1441 if (TOLOWER_ASC(initstr[0]) == 'e'
1442 && (TOLOWER_ASC(initstr[1]) == 'v'
1443 || TOLOWER_ASC(initstr[1]) == 'g'))
1444 {
1445#ifdef FEAT_GUI
1446 gui.starting = TRUE;
1447#endif
1448 parmp->evim_mode = TRUE;
1449 ++initstr;
1450 }
1451
1452 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1453 {
1454 main_start_gui();
1455#ifdef FEAT_GUI
1456 ++initstr;
1457#endif
1458 }
1459
1460 if (STRNICMP(initstr, "view", 4) == 0)
1461 {
1462 readonlymode = TRUE;
1463 curbuf->b_p_ro = TRUE;
1464 p_uc = 10000; /* don't update very often */
1465 initstr += 4;
1466 }
1467 else if (STRNICMP(initstr, "vim", 3) == 0)
1468 initstr += 3;
1469
1470 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1471 if (STRICMP(initstr, "diff") == 0)
1472 {
1473#ifdef FEAT_DIFF
1474 parmp->diff_mode = TRUE;
1475#else
1476 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1477 mch_errmsg("\n");
1478 mch_exit(2);
1479#endif
1480 }
1481
1482 if (STRNICMP(initstr, "ex", 2) == 0)
1483 {
1484 if (STRNICMP(initstr + 2, "im", 2) == 0)
1485 exmode_active = EXMODE_VIM;
1486 else
1487 exmode_active = EXMODE_NORMAL;
1488 change_compatible(TRUE); /* set 'compatible' */
1489 }
1490}
1491
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001492/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001493 * Get the name of the display, before gui_prepare() removes it from
1494 * argv[]. Used for the xterm-clipboard display.
1495 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001496 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001497 */
1498/*ARGSUSED*/
1499 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001500early_arg_scan(parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001501 mparm_T *parmp;
1502{
1503#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001504 int argc = parmp->argc;
1505 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001506 int i;
1507
1508 for (i = 1; i < argc; i++)
1509 {
1510 if (STRCMP(argv[i], "--") == 0)
1511 break;
1512# ifdef FEAT_XCLIPBOARD
1513 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001514# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001515 || STRICMP(argv[i], "--display") == 0
1516# endif
1517 )
1518 {
1519 if (i == argc - 1)
1520 mainerr_arg_missing((char_u *)argv[i]);
1521 xterm_display = argv[++i];
1522 }
1523# endif
1524# ifdef FEAT_CLIENTSERVER
1525 else if (STRICMP(argv[i], "--servername") == 0)
1526 {
1527 if (i == argc - 1)
1528 mainerr_arg_missing((char_u *)argv[i]);
1529 parmp->serverName_arg = (char_u *)argv[++i];
1530 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001531 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001532 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001533 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001534 {
1535 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001536# ifdef FEAT_GUI
1537 if (strstr(argv[i], "-wait") != 0)
1538 /* don't fork() when starting the GUI to edit files ourself */
1539 gui.dofork = FALSE;
1540# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001541 }
1542# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001543
1544# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1545# ifdef FEAT_GUI_W32
1546 else if (STRICMP(argv[i], "--windowid") == 0)
1547# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001548 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001549# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001550 {
Bram Moolenaar78e17622007-08-30 10:26:19 +00001551 unsigned int id;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001552 int count;
1553
1554 if (i == argc - 1)
1555 mainerr_arg_missing((char_u *)argv[i]);
1556 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001557 count = sscanf(&(argv[i + 1][2]), "%x", &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001558 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001559 count = sscanf(argv[i+1], "%u", &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001560 if (count != 1)
1561 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1562 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001563# ifdef FEAT_GUI_W32
1564 win_socket_id = id;
1565# else
1566 gtk_socket_id = id;
1567# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001568 i++;
1569 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001570# endif
1571# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001572 else if (STRICMP(argv[i], "--echo-wid") == 0)
1573 echo_wid_arg = TRUE;
1574# endif
1575 }
1576#endif
1577}
1578
1579/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001580 * Scan the command line arguments.
1581 */
1582 static void
1583command_line_scan(parmp)
1584 mparm_T *parmp;
1585{
1586 int argc = parmp->argc;
1587 char **argv = parmp->argv;
1588 int argv_idx; /* index in argv[n][] */
1589 int had_minmin = FALSE; /* found "--" argument */
1590 int want_argument; /* option argument with argument */
1591 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001592 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001593 long n;
1594
1595 --argc;
1596 ++argv;
1597 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1598 while (argc > 0)
1599 {
1600 /*
1601 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1602 */
1603 if (argv[0][0] == '+' && !had_minmin)
1604 {
1605 if (parmp->n_commands >= MAX_ARG_CMDS)
1606 mainerr(ME_EXTRA_CMD, NULL);
1607 argv_idx = -1; /* skip to next argument */
1608 if (argv[0][1] == NUL)
1609 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1610 else
1611 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1612 }
1613
1614 /*
1615 * Optional argument.
1616 */
1617 else if (argv[0][0] == '-' && !had_minmin)
1618 {
1619 want_argument = FALSE;
1620 c = argv[0][argv_idx++];
1621#ifdef VMS
1622 /*
1623 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1624 * and "-/X" as "-X".
1625 */
1626 if (c == '/')
1627 {
1628 c = argv[0][argv_idx++];
1629 c = TOUPPER_ASC(c);
1630 }
1631 else
1632 c = TOLOWER_ASC(c);
1633#endif
1634 switch (c)
1635 {
1636 case NUL: /* "vim -" read from stdin */
1637 /* "ex -" silent mode */
1638 if (exmode_active)
1639 silent_mode = TRUE;
1640 else
1641 {
1642 if (parmp->edit_type != EDIT_NONE)
1643 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1644 parmp->edit_type = EDIT_STDIN;
1645 read_cmd_fd = 2; /* read from stderr instead of stdin */
1646 }
1647 argv_idx = -1; /* skip to next argument */
1648 break;
1649
1650 case '-': /* "--" don't take any more option arguments */
1651 /* "--help" give help message */
1652 /* "--version" give version message */
1653 /* "--literal" take files literally */
1654 /* "--nofork" don't fork */
1655 /* "--noplugin[s]" skip plugins */
1656 /* "--cmd <cmd>" execute cmd before vimrc */
1657 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1658 usage();
1659 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1660 {
1661 Columns = 80; /* need to init Columns */
1662 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1663 list_version();
1664 msg_putchar('\n');
1665 msg_didout = FALSE;
1666 mch_exit(0);
1667 }
1668 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1669 {
1670#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1671 parmp->literal = TRUE;
1672#endif
1673 }
1674 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1675 {
1676#ifdef FEAT_GUI
1677 gui.dofork = FALSE; /* don't fork() when starting GUI */
1678#endif
1679 }
1680 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1681 p_lpl = FALSE;
1682 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1683 {
1684 want_argument = TRUE;
1685 argv_idx += 3;
1686 }
1687#ifdef FEAT_CLIENTSERVER
1688 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1689 ; /* already processed -- no arg */
1690 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1691 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1692 {
1693 /* already processed -- snatch the following arg */
1694 if (argc > 1)
1695 {
1696 --argc;
1697 ++argv;
1698 }
1699 }
1700#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001701#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1702# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001703 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001704# else
1705 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1706# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001707 {
1708 /* already processed -- snatch the following arg */
1709 if (argc > 1)
1710 {
1711 --argc;
1712 ++argv;
1713 }
1714 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001715#endif
1716#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001717 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1718 {
1719 /* already processed, skip */
1720 }
1721#endif
1722 else
1723 {
1724 if (argv[0][argv_idx])
1725 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1726 had_minmin = TRUE;
1727 }
1728 if (!want_argument)
1729 argv_idx = -1; /* skip to next argument */
1730 break;
1731
1732 case 'A': /* "-A" start in Arabic mode */
1733#ifdef FEAT_ARABIC
1734 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1735#else
1736 mch_errmsg(_(e_noarabic));
1737 mch_exit(2);
1738#endif
1739 break;
1740
1741 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001742 /* Needs to be effective before expanding file names, because
1743 * for Win32 this makes us edit a shortcut file itself,
1744 * instead of the file it links to. */
1745 set_options_bin(curbuf->b_p_bin, 1, 0);
1746 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001747 break;
1748
1749 case 'C': /* "-C" Compatible */
1750 change_compatible(TRUE);
1751 break;
1752
1753 case 'e': /* "-e" Ex mode */
1754 exmode_active = EXMODE_NORMAL;
1755 break;
1756
1757 case 'E': /* "-E" Improved Ex mode */
1758 exmode_active = EXMODE_VIM;
1759 break;
1760
1761 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1762 window directly, not with newcli */
1763#ifdef FEAT_GUI
1764 gui.dofork = FALSE; /* don't fork() when starting GUI */
1765#endif
1766 break;
1767
1768 case 'g': /* "-g" start GUI */
1769 main_start_gui();
1770 break;
1771
1772 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1773#ifdef FEAT_FKMAP
1774 curwin->w_p_rl = p_fkmap = TRUE;
1775#else
1776 mch_errmsg(_(e_nofarsi));
1777 mch_exit(2);
1778#endif
1779 break;
1780
1781 case 'h': /* "-h" give help message */
1782#ifdef FEAT_GUI_GNOME
1783 /* Tell usage() to exit for "gvim". */
1784 gui.starting = FALSE;
1785#endif
1786 usage();
1787 break;
1788
1789 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1790#ifdef FEAT_RIGHTLEFT
1791 curwin->w_p_rl = p_hkmap = TRUE;
1792#else
1793 mch_errmsg(_(e_nohebrew));
1794 mch_exit(2);
1795#endif
1796 break;
1797
1798 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1799#ifdef FEAT_LISP
1800 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1801 p_sm = TRUE;
1802#endif
1803 break;
1804
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001805 case 'M': /* "-M" no changes or writing of files */
1806 reset_modifiable();
1807 /* FALLTHROUGH */
1808
1809 case 'm': /* "-m" no writing of files */
1810 p_write = FALSE;
1811 break;
1812
1813 case 'y': /* "-y" easy mode */
1814#ifdef FEAT_GUI
1815 gui.starting = TRUE; /* start GUI a bit later */
1816#endif
1817 parmp->evim_mode = TRUE;
1818 break;
1819
1820 case 'N': /* "-N" Nocompatible */
1821 change_compatible(FALSE);
1822 break;
1823
1824 case 'n': /* "-n" no swap file */
1825 parmp->no_swap_file = TRUE;
1826 break;
1827
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001828 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00001829#ifdef TARGET_API_MAC_OSX
1830 /* For some reason on MacOS X, an argument like:
1831 -psn_0_10223617 is passed in when invoke from Finder
1832 or with the 'open' command */
1833 if (argv[0][argv_idx] == 's')
1834 {
1835 argv_idx = -1; /* bypass full -psn */
1836 main_start_gui();
1837 break;
1838 }
1839#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001840#ifdef FEAT_WINDOWS
1841 /* default is 0: open window for each file */
1842 parmp->window_count = get_number_arg((char_u *)argv[0],
1843 &argv_idx, 0);
1844 parmp->window_layout = WIN_TABS;
1845#endif
1846 break;
1847
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001848 case 'o': /* "-o[N]" open N horizontal split windows */
1849#ifdef FEAT_WINDOWS
1850 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001851 parmp->window_count = get_number_arg((char_u *)argv[0],
1852 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001853 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001854#endif
1855 break;
1856
1857 case 'O': /* "-O[N]" open N vertical split windows */
1858#if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1859 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001860 parmp->window_count = get_number_arg((char_u *)argv[0],
1861 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001862 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001863#endif
1864 break;
1865
1866#ifdef FEAT_QUICKFIX
1867 case 'q': /* "-q" QuickFix mode */
1868 if (parmp->edit_type != EDIT_NONE)
1869 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1870 parmp->edit_type = EDIT_QF;
1871 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1872 {
1873 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1874 argv_idx = -1;
1875 }
1876 else if (argc > 1) /* "-q {errorfile}" */
1877 want_argument = TRUE;
1878 break;
1879#endif
1880
1881 case 'R': /* "-R" readonly mode */
1882 readonlymode = TRUE;
1883 curbuf->b_p_ro = TRUE;
1884 p_uc = 10000; /* don't update very often */
1885 break;
1886
1887 case 'r': /* "-r" recovery mode */
1888 case 'L': /* "-L" recovery mode */
1889 recoverymode = 1;
1890 break;
1891
1892 case 's':
1893 if (exmode_active) /* "-s" silent (batch) mode */
1894 silent_mode = TRUE;
1895 else /* "-s {scriptin}" read from script file */
1896 want_argument = TRUE;
1897 break;
1898
1899 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1900 if (parmp->edit_type != EDIT_NONE)
1901 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1902 parmp->edit_type = EDIT_TAG;
1903 if (argv[0][argv_idx]) /* "-t{tag}" */
1904 {
1905 parmp->tagname = (char_u *)argv[0] + argv_idx;
1906 argv_idx = -1;
1907 }
1908 else /* "-t {tag}" */
1909 want_argument = TRUE;
1910 break;
1911
1912#ifdef FEAT_EVAL
1913 case 'D': /* "-D" Debugging */
1914 parmp->use_debug_break_level = 9999;
1915 break;
1916#endif
1917#ifdef FEAT_DIFF
1918 case 'd': /* "-d" 'diff' */
1919# ifdef AMIGA
1920 /* check for "-dev {device}" */
1921 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1922 want_argument = TRUE;
1923 else
1924# endif
1925 parmp->diff_mode = TRUE;
1926 break;
1927#endif
1928 case 'V': /* "-V{N}" Verbose level */
1929 /* default is 10: a little bit verbose */
1930 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1931 if (argv[0][argv_idx] != NUL)
1932 {
1933 set_option_value((char_u *)"verbosefile", 0L,
1934 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001935 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001936 }
1937 break;
1938
1939 case 'v': /* "-v" Vi-mode (as if called "vi") */
1940 exmode_active = 0;
1941#ifdef FEAT_GUI
1942 gui.starting = FALSE; /* don't start GUI */
1943#endif
1944 break;
1945
1946 case 'w': /* "-w{number}" set window height */
1947 /* "-w {scriptout}" write to script */
1948 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1949 {
1950 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1951 set_option_value((char_u *)"window", n, NULL, 0);
1952 break;
1953 }
1954 want_argument = TRUE;
1955 break;
1956
1957#ifdef FEAT_CRYPT
1958 case 'x': /* "-x" encrypted reading/writing of files */
1959 parmp->ask_for_key = TRUE;
1960 break;
1961#endif
1962
1963 case 'X': /* "-X" don't connect to X server */
1964#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
1965 x_no_connect = TRUE;
1966#endif
1967 break;
1968
1969 case 'Z': /* "-Z" restricted mode */
1970 restricted = TRUE;
1971 break;
1972
1973 case 'c': /* "-c{command}" or "-c {command}" execute
1974 command */
1975 if (argv[0][argv_idx] != NUL)
1976 {
1977 if (parmp->n_commands >= MAX_ARG_CMDS)
1978 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00001979 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
1980 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001981 argv_idx = -1;
1982 break;
1983 }
1984 /*FALLTHROUGH*/
1985 case 'S': /* "-S {file}" execute Vim script */
1986 case 'i': /* "-i {viminfo}" use for viminfo */
1987#ifndef FEAT_DIFF
1988 case 'd': /* "-d {device}" device (for Amiga) */
1989#endif
1990 case 'T': /* "-T {terminal}" terminal name */
1991 case 'u': /* "-u {vimrc}" vim inits file */
1992 case 'U': /* "-U {gvimrc}" gvim inits file */
1993 case 'W': /* "-W {scriptout}" overwrite */
1994#ifdef FEAT_GUI_W32
1995 case 'P': /* "-P {parent title}" MDI parent */
1996#endif
1997 want_argument = TRUE;
1998 break;
1999
2000 default:
2001 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2002 }
2003
2004 /*
2005 * Handle option arguments with argument.
2006 */
2007 if (want_argument)
2008 {
2009 /*
2010 * Check for garbage immediately after the option letter.
2011 */
2012 if (argv[0][argv_idx] != NUL)
2013 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2014
2015 --argc;
2016 if (argc < 1 && c != 'S')
2017 mainerr_arg_missing((char_u *)argv[0]);
2018 ++argv;
2019 argv_idx = -1;
2020
2021 switch (c)
2022 {
2023 case 'c': /* "-c {command}" execute command */
2024 case 'S': /* "-S {file}" execute Vim script */
2025 if (parmp->n_commands >= MAX_ARG_CMDS)
2026 mainerr(ME_EXTRA_CMD, NULL);
2027 if (c == 'S')
2028 {
2029 char *a;
2030
2031 if (argc < 1)
2032 /* "-S" without argument: use default session file
2033 * name. */
2034 a = SESSION_FILE;
2035 else if (argv[0][0] == '-')
2036 {
2037 /* "-S" followed by another option: use default
2038 * session file name. */
2039 a = SESSION_FILE;
2040 ++argc;
2041 --argv;
2042 }
2043 else
2044 a = argv[0];
2045 p = alloc((unsigned)(STRLEN(a) + 4));
2046 if (p == NULL)
2047 mch_exit(2);
2048 sprintf((char *)p, "so %s", a);
2049 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2050 parmp->commands[parmp->n_commands++] = p;
2051 }
2052 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002053 parmp->commands[parmp->n_commands++] =
2054 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002055 break;
2056
2057 case '-': /* "--cmd {command}" execute command */
2058 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2059 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002060 parmp->pre_commands[parmp->n_pre_commands++] =
2061 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002062 break;
2063
2064 /* case 'd': -d {device} is handled in mch_check_win() for the
2065 * Amiga */
2066
2067#ifdef FEAT_QUICKFIX
2068 case 'q': /* "-q {errorfile}" QuickFix mode */
2069 parmp->use_ef = (char_u *)argv[0];
2070 break;
2071#endif
2072
2073 case 'i': /* "-i {viminfo}" use for viminfo */
2074 use_viminfo = (char_u *)argv[0];
2075 break;
2076
2077 case 's': /* "-s {scriptin}" read from script file */
2078 if (scriptin[0] != NULL)
2079 {
2080scripterror:
2081 mch_errmsg(_("Attempt to open script file again: \""));
2082 mch_errmsg(argv[-1]);
2083 mch_errmsg(" ");
2084 mch_errmsg(argv[0]);
2085 mch_errmsg("\"\n");
2086 mch_exit(2);
2087 }
2088 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2089 {
2090 mch_errmsg(_("Cannot open for reading: \""));
2091 mch_errmsg(argv[0]);
2092 mch_errmsg("\"\n");
2093 mch_exit(2);
2094 }
2095 if (save_typebuf() == FAIL)
2096 mch_exit(2); /* out of memory */
2097 break;
2098
2099 case 't': /* "-t {tag}" */
2100 parmp->tagname = (char_u *)argv[0];
2101 break;
2102
2103 case 'T': /* "-T {terminal}" terminal name */
2104 /*
2105 * The -T term argument is always available and when
2106 * HAVE_TERMLIB is supported it overrides the environment
2107 * variable TERM.
2108 */
2109#ifdef FEAT_GUI
2110 if (term_is_gui((char_u *)argv[0]))
2111 gui.starting = TRUE; /* start GUI a bit later */
2112 else
2113#endif
2114 parmp->term = (char_u *)argv[0];
2115 break;
2116
2117 case 'u': /* "-u {vimrc}" vim inits file */
2118 parmp->use_vimrc = (char_u *)argv[0];
2119 break;
2120
2121 case 'U': /* "-U {gvimrc}" gvim inits file */
2122#ifdef FEAT_GUI
2123 use_gvimrc = (char_u *)argv[0];
2124#endif
2125 break;
2126
2127 case 'w': /* "-w {nr}" 'window' value */
2128 /* "-w {scriptout}" append to script file */
2129 if (vim_isdigit(*((char_u *)argv[0])))
2130 {
2131 argv_idx = 0;
2132 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2133 set_option_value((char_u *)"window", n, NULL, 0);
2134 argv_idx = -1;
2135 break;
2136 }
2137 /*FALLTHROUGH*/
2138 case 'W': /* "-W {scriptout}" overwrite script file */
2139 if (scriptout != NULL)
2140 goto scripterror;
2141 if ((scriptout = mch_fopen(argv[0],
2142 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2143 {
2144 mch_errmsg(_("Cannot open for script output: \""));
2145 mch_errmsg(argv[0]);
2146 mch_errmsg("\"\n");
2147 mch_exit(2);
2148 }
2149 break;
2150
2151#ifdef FEAT_GUI_W32
2152 case 'P': /* "-P {parent title}" MDI parent */
2153 gui_mch_set_parent(argv[0]);
2154 break;
2155#endif
2156 }
2157 }
2158 }
2159
2160 /*
2161 * File name argument.
2162 */
2163 else
2164 {
2165 argv_idx = -1; /* skip to next argument */
2166
2167 /* Check for only one type of editing. */
2168 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2169 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2170 parmp->edit_type = EDIT_FILE;
2171
2172#ifdef MSWIN
2173 /* Remember if the argument was a full path before changing
2174 * slashes to backslashes. */
2175 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2176 parmp->full_path = TRUE;
2177#endif
2178
2179 /* Add the file to the global argument list. */
2180 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2181 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2182 mch_exit(2);
2183#ifdef FEAT_DIFF
2184 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2185 && !mch_isdir(alist_name(&GARGLIST[0])))
2186 {
2187 char_u *r;
2188
2189 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2190 if (r != NULL)
2191 {
2192 vim_free(p);
2193 p = r;
2194 }
2195 }
2196#endif
2197#if defined(__CYGWIN32__) && !defined(WIN32)
2198 /*
2199 * If vim is invoked by non-Cygwin tools, convert away any
2200 * DOS paths, so things like .swp files are created correctly.
2201 * Look for evidence of non-Cygwin paths before we bother.
2202 * This is only for when using the Unix files.
2203 */
2204 if (strpbrk(p, "\\:") != NULL)
2205 {
2206 char posix_path[PATH_MAX];
2207
2208 cygwin_conv_to_posix_path(p, posix_path);
2209 vim_free(p);
2210 p = vim_strsave(posix_path);
2211 if (p == NULL)
2212 mch_exit(2);
2213 }
2214#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002215
2216#ifdef USE_FNAME_CASE
2217 /* Make the case of the file name match the actual file. */
2218 fname_case(p, 0);
2219#endif
2220
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002221 alist_add(&global_alist, p,
2222#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
Bram Moolenaar231334e2005-07-25 20:46:57 +00002223 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002224#else
2225 2 /* add buffer number now and use curbuf */
2226#endif
2227 );
2228
2229#if defined(FEAT_MBYTE) && defined(WIN32)
2230 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002231 /* Remember this argument has been added to the argument list.
2232 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002233 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2234 parmp->diff_mode);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002235 }
2236#endif
2237 }
2238
2239 /*
2240 * If there are no more letters after the current "-", go to next
2241 * argument. argv_idx is set to -1 when the current argument is to be
2242 * skipped.
2243 */
2244 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2245 {
2246 --argc;
2247 ++argv;
2248 argv_idx = 1;
2249 }
2250 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002251
2252#ifdef FEAT_EVAL
2253 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2254 * one. */
2255 if (parmp->n_commands > 0)
2256 {
2257 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2258 if (p != NULL)
2259 {
2260 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2261 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2262 vim_free(p);
2263 }
2264 }
2265#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002266}
2267
2268/*
2269 * Print a warning if stdout is not a terminal.
2270 * When starting in Ex mode and commands come from a file, set Silent mode.
2271 */
2272 static void
2273check_tty(parmp)
2274 mparm_T *parmp;
2275{
2276 int input_isatty; /* is active input a terminal? */
2277
2278 input_isatty = mch_input_isatty();
2279 if (exmode_active)
2280 {
2281 if (!input_isatty)
2282 silent_mode = TRUE;
2283 }
2284 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2285#ifdef FEAT_GUI
2286 /* don't want the delay when started from the desktop */
2287 && !gui.starting
2288#endif
2289 )
2290 {
2291#ifdef NBDEBUG
2292 /*
2293 * This shouldn't be necessary. But if I run netbeans with the log
2294 * output coming to the console and XOpenDisplay fails, I get vim
2295 * trying to start with input/output to my console tty. This fills my
2296 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002297 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002298 */
2299 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2300 {
2301 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2302 exit(1);
2303 }
2304#endif
2305 if (!parmp->stdout_isatty)
2306 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2307 if (!input_isatty)
2308 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2309 out_flush();
2310 if (scriptin[0] == NULL)
2311 ui_delay(2000L, TRUE);
2312 TIME_MSG("Warning delay");
2313 }
2314}
2315
2316/*
2317 * Read text from stdin.
2318 */
2319 static void
2320read_stdin()
2321{
2322 int i;
2323
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002324#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002325 /* When getting the ATTENTION prompt here, use a dialog */
2326 swap_exists_action = SEA_DIALOG;
2327#endif
2328 no_wait_return = TRUE;
2329 i = msg_didany;
2330 set_buflisted(TRUE);
2331 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2332 no_wait_return = FALSE;
2333 msg_didany = i;
2334 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002335#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002336 check_swap_exists_action();
2337#endif
2338#if !(defined(AMIGA) || defined(MACOS))
2339 /*
2340 * Close stdin and dup it from stderr. Required for GPM to work
2341 * properly, and for running external commands.
2342 * Is there any other system that cannot do this?
2343 */
2344 close(0);
2345 dup(2);
2346#endif
2347}
2348
2349/*
2350 * Create the requested number of windows and edit buffers in them.
2351 * Also does recovery if "recoverymode" set.
2352 */
2353/*ARGSUSED*/
2354 static void
2355create_windows(parmp)
2356 mparm_T *parmp;
2357{
2358#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002359 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002360 int done = 0;
2361
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002362 /*
2363 * Create the number of windows that was requested.
2364 */
2365 if (parmp->window_count == -1) /* was not set */
2366 parmp->window_count = 1;
2367 if (parmp->window_count == 0)
2368 parmp->window_count = GARGCOUNT;
2369 if (parmp->window_count > 1)
2370 {
2371 /* Don't change the windows if there was a command in .vimrc that
2372 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002373 if (parmp->window_layout == 0)
2374 parmp->window_layout = WIN_HOR;
2375 if (parmp->window_layout == WIN_TABS)
2376 {
2377 parmp->window_count = make_tabpages(parmp->window_count);
2378 TIME_MSG("making tab pages");
2379 }
2380 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002381 {
2382 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002383 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002384 TIME_MSG("making windows");
2385 }
2386 else
2387 parmp->window_count = win_count();
2388 }
2389 else
2390 parmp->window_count = 1;
2391#endif
2392
2393 if (recoverymode) /* do recover */
2394 {
2395 msg_scroll = TRUE; /* scroll message up */
2396 ml_recover();
2397 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2398 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002399 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002400 }
2401 else
2402 {
2403 /*
2404 * Open a buffer for windows that don't have one yet.
2405 * Commands in the .vimrc might have loaded a file or split the window.
2406 * Watch out for autocommands that delete a window.
2407 */
2408#ifdef FEAT_AUTOCMD
2409 /*
2410 * Don't execute Win/Buf Enter/Leave autocommands here
2411 */
2412 ++autocmd_no_enter;
2413 ++autocmd_no_leave;
2414#endif
2415#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002416 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002417 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002418 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002419 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002420 {
2421 if (parmp->window_layout == WIN_TABS)
2422 goto_tabpage(1);
2423 else
2424 curwin = firstwin;
2425 }
2426 else if (parmp->window_layout == WIN_TABS)
2427 {
2428 if (curtab->tp_next == NULL)
2429 break;
2430 goto_tabpage(0);
2431 }
2432 else
2433 {
2434 if (curwin->w_next == NULL)
2435 break;
2436 curwin = curwin->w_next;
2437 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002438 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002439#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002440 curbuf = curwin->w_buffer;
2441 if (curbuf->b_ml.ml_mfp == NULL)
2442 {
2443#ifdef FEAT_FOLDING
2444 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2445 if (p_fdls >= 0)
2446 curwin->w_p_fdl = p_fdls;
2447#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002448#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002449 /* When getting the ATTENTION prompt here, use a dialog */
2450 swap_exists_action = SEA_DIALOG;
2451#endif
2452 set_buflisted(TRUE);
2453 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2454
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002455#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002456 if (swap_exists_action == SEA_QUIT)
2457 {
2458 if (got_int || only_one_window())
2459 {
2460 /* abort selected or quit and only one window */
2461 did_emsg = FALSE; /* avoid hit-enter prompt */
2462 getout(1);
2463 }
2464 /* We can't close the window, it would disturb what
2465 * happens next. Clear the file name and set the arg
2466 * index to -1 to delete it later. */
2467 setfname(curbuf, NULL, NULL, FALSE);
2468 curwin->w_arg_idx = -1;
2469 swap_exists_action = SEA_NONE;
2470 }
2471 else
2472 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002473#endif
2474#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002475 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002476#endif
2477 }
2478#ifdef FEAT_WINDOWS
2479 ui_breakcheck();
2480 if (got_int)
2481 {
2482 (void)vgetc(); /* only break the file loading, not the rest */
2483 break;
2484 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002485 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002486#endif
2487#ifdef FEAT_WINDOWS
2488 if (parmp->window_layout == WIN_TABS)
2489 goto_tabpage(1);
2490 else
2491 curwin = firstwin;
2492 curbuf = curwin->w_buffer;
2493#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002494#ifdef FEAT_AUTOCMD
2495 --autocmd_no_enter;
2496 --autocmd_no_leave;
2497#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002498 }
2499}
2500
2501#ifdef FEAT_WINDOWS
2502 /*
2503 * If opened more than one window, start editing files in the other
2504 * windows. make_windows() has already opened the windows.
2505 */
2506 static void
2507edit_buffers(parmp)
2508 mparm_T *parmp;
2509{
2510 int arg_idx; /* index in argument list */
2511 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002512 int advance = TRUE;
2513 buf_T *old_curbuf;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002514
2515# ifdef FEAT_AUTOCMD
2516 /*
2517 * Don't execute Win/Buf Enter/Leave autocommands here
2518 */
2519 ++autocmd_no_enter;
2520 ++autocmd_no_leave;
2521# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002522
2523 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2524 if (curwin->w_arg_idx == -1)
2525 {
2526 win_close(curwin, TRUE);
2527 advance = FALSE;
2528 }
2529
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002530 arg_idx = 1;
2531 for (i = 1; i < parmp->window_count; ++i)
2532 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002533 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2534 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002535 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002536 ++arg_idx;
2537 win_close(curwin, TRUE);
2538 advance = FALSE;
2539 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002540 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002541
Bram Moolenaar84212822006-11-07 21:59:47 +00002542 if (advance)
2543 {
2544 if (parmp->window_layout == WIN_TABS)
2545 {
2546 if (curtab->tp_next == NULL) /* just checking */
2547 break;
2548 goto_tabpage(0);
2549 }
2550 else
2551 {
2552 if (curwin->w_next == NULL) /* just checking */
2553 break;
2554 win_enter(curwin->w_next, FALSE);
2555 }
2556 }
2557 advance = TRUE;
2558
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002559 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002560 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002561 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2562 {
2563 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002564 /* Edit file from arg list, if there is one. When "Quit" selected
2565 * at the ATTENTION prompt close the window. */
2566 old_curbuf = curbuf;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002567 (void)do_ecmd(0, arg_idx < GARGCOUNT
2568 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2569 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
Bram Moolenaar84212822006-11-07 21:59:47 +00002570 if (curbuf == old_curbuf)
2571 {
2572 if (got_int || only_one_window())
2573 {
2574 /* abort selected or quit and only one window */
2575 did_emsg = FALSE; /* avoid hit-enter prompt */
2576 getout(1);
2577 }
2578 win_close(curwin, TRUE);
2579 advance = FALSE;
2580 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002581 if (arg_idx == GARGCOUNT - 1)
2582 arg_had_last = TRUE;
2583 ++arg_idx;
2584 }
2585 ui_breakcheck();
2586 if (got_int)
2587 {
2588 (void)vgetc(); /* only break the file loading, not the rest */
2589 break;
2590 }
2591 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002592
2593 if (parmp->window_layout == WIN_TABS)
2594 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002595# ifdef FEAT_AUTOCMD
2596 --autocmd_no_enter;
2597# endif
2598 win_enter(firstwin, FALSE); /* back to first window */
2599# ifdef FEAT_AUTOCMD
2600 --autocmd_no_leave;
2601# endif
2602 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002603 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002604 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2605}
2606#endif /* FEAT_WINDOWS */
2607
2608/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002609 * Execute the commands from --cmd arguments "cmds[cnt]".
2610 */
2611 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002612exe_pre_commands(parmp)
2613 mparm_T *parmp;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002614{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002615 char_u **cmds = parmp->pre_commands;
2616 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002617 int i;
2618
2619 if (cnt > 0)
2620 {
2621 curwin->w_cursor.lnum = 0; /* just in case.. */
2622 sourcing_name = (char_u *)_("pre-vimrc command line");
2623# ifdef FEAT_EVAL
2624 current_SID = SID_CMDARG;
2625# endif
2626 for (i = 0; i < cnt; ++i)
2627 do_cmdline_cmd(cmds[i]);
2628 sourcing_name = NULL;
2629# ifdef FEAT_EVAL
2630 current_SID = 0;
2631# endif
2632 TIME_MSG("--cmd commands");
2633 }
2634}
2635
2636/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002637 * Execute "+", "-c" and "-S" arguments.
2638 */
2639 static void
2640exe_commands(parmp)
2641 mparm_T *parmp;
2642{
2643 int i;
2644
2645 /*
2646 * We start commands on line 0, make "vim +/pat file" match a
2647 * pattern on line 1. But don't move the cursor when an autocommand
2648 * with g`" was used.
2649 */
2650 msg_scroll = TRUE;
2651 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2652 curwin->w_cursor.lnum = 0;
2653 sourcing_name = (char_u *)"command line";
2654#ifdef FEAT_EVAL
2655 current_SID = SID_CARG;
2656#endif
2657 for (i = 0; i < parmp->n_commands; ++i)
2658 {
2659 do_cmdline_cmd(parmp->commands[i]);
2660 if (parmp->cmds_tofree[i])
2661 vim_free(parmp->commands[i]);
2662 }
2663 sourcing_name = NULL;
2664#ifdef FEAT_EVAL
2665 current_SID = 0;
2666#endif
2667 if (curwin->w_cursor.lnum == 0)
2668 curwin->w_cursor.lnum = 1;
2669
2670 if (!exmode_active)
2671 msg_scroll = FALSE;
2672
2673#ifdef FEAT_QUICKFIX
2674 /* When started with "-q errorfile" jump to first error again. */
2675 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002676 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002677#endif
2678 TIME_MSG("executing command arguments");
2679}
2680
2681/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002682 * Source startup scripts.
2683 */
2684 static void
2685source_startup_scripts(parmp)
2686 mparm_T *parmp;
2687{
2688 int i;
2689
2690 /*
2691 * For "evim" source evim.vim first of all, so that the user can overrule
2692 * any things he doesn't like.
2693 */
2694 if (parmp->evim_mode)
2695 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002696 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002697 TIME_MSG("source evim file");
2698 }
2699
2700 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002701 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002702 * nothing else.
2703 */
2704 if (parmp->use_vimrc != NULL)
2705 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002706 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2707 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002708 {
2709#ifdef FEAT_GUI
2710 if (use_gvimrc == NULL) /* don't load gvimrc either */
2711 use_gvimrc = parmp->use_vimrc;
2712#endif
2713 if (parmp->use_vimrc[2] == 'N')
2714 p_lpl = FALSE; /* don't load plugins either */
2715 }
2716 else
2717 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002718 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002719 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2720 }
2721 }
2722 else if (!silent_mode)
2723 {
2724#ifdef AMIGA
2725 struct Process *proc = (struct Process *)FindTask(0L);
2726 APTR save_winptr = proc->pr_WindowPtr;
2727
2728 /* Avoid a requester here for a volume that doesn't exist. */
2729 proc->pr_WindowPtr = (APTR)-1L;
2730#endif
2731
2732 /*
2733 * Get system wide defaults, if the file name is defined.
2734 */
2735#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002736 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002737#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002738#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002739 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002740#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002741
2742 /*
2743 * Try to read initialization commands from the following places:
2744 * - environment variable VIMINIT
2745 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2746 * - second user vimrc file ($VIM/.vimrc for Dos)
2747 * - environment variable EXINIT
2748 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2749 * - second user exrc file ($VIM/.exrc for Dos)
2750 * The first that exists is used, the rest is ignored.
2751 */
2752 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2753 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002754 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002755#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002756 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2757 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002758#endif
2759#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002760 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2761 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002762#endif
2763 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002764 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002765 {
2766#ifdef USR_EXRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002767 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002768#endif
2769 }
2770 }
2771
2772 /*
2773 * Read initialization commands from ".vimrc" or ".exrc" in current
2774 * directory. This is only done if the 'exrc' option is set.
2775 * Because of security reasons we disallow shell and write commands
2776 * now, except for unix if the file is owned by the user or 'secure'
2777 * option has been reset in environment of global ".exrc" or ".vimrc".
2778 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2779 * SYS_VIMRC_FILE.
2780 */
2781 if (p_exrc)
2782 {
2783#if defined(UNIX) || defined(VMS)
2784 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2785 if (!file_owned(VIMRC_FILE))
2786#endif
2787 secure = p_secure;
2788
2789 i = FAIL;
2790 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2791 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2792#ifdef USR_VIMRC_FILE2
2793 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2794 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2795#endif
2796#ifdef USR_VIMRC_FILE3
2797 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2798 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2799#endif
2800#ifdef SYS_VIMRC_FILE
2801 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2802 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2803#endif
2804 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002805 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002806
2807 if (i == FAIL)
2808 {
2809#if defined(UNIX) || defined(VMS)
2810 /* if ".exrc" is not owned by user set 'secure' mode */
2811 if (!file_owned(EXRC_FILE))
2812 secure = p_secure;
2813 else
2814 secure = 0;
2815#endif
2816 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2817 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2818#ifdef USR_EXRC_FILE2
2819 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2820 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2821#endif
2822 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002823 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002824 }
2825 }
2826 if (secure == 2)
2827 need_wait_return = TRUE;
2828 secure = 0;
2829#ifdef AMIGA
2830 proc->pr_WindowPtr = save_winptr;
2831#endif
2832 }
2833 TIME_MSG("sourcing vimrc file(s)");
2834}
2835
2836/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002837 * Setup to start using the GUI. Exit with an error when not available.
2838 */
2839 static void
2840main_start_gui()
2841{
2842#ifdef FEAT_GUI
2843 gui.starting = TRUE; /* start GUI a bit later */
2844#else
2845 mch_errmsg(_(e_nogvim));
2846 mch_errmsg("\n");
2847 mch_exit(2);
2848#endif
2849}
2850
2851/*
Bram Moolenaar49325942007-05-10 19:19:59 +00002852 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002853 * Returns FAIL if the environment variable was not executed, OK otherwise.
2854 */
2855 int
2856process_env(env, is_viminit)
2857 char_u *env;
2858 int is_viminit; /* when TRUE, called for VIMINIT */
2859{
2860 char_u *initstr;
2861 char_u *save_sourcing_name;
2862 linenr_T save_sourcing_lnum;
2863#ifdef FEAT_EVAL
2864 scid_T save_sid;
2865#endif
2866
2867 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2868 {
2869 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002870 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002871 save_sourcing_name = sourcing_name;
2872 save_sourcing_lnum = sourcing_lnum;
2873 sourcing_name = env;
2874 sourcing_lnum = 0;
2875#ifdef FEAT_EVAL
2876 save_sid = current_SID;
2877 current_SID = SID_ENV;
2878#endif
2879 do_cmdline_cmd(initstr);
2880 sourcing_name = save_sourcing_name;
2881 sourcing_lnum = save_sourcing_lnum;
2882#ifdef FEAT_EVAL
2883 current_SID = save_sid;;
2884#endif
2885 return OK;
2886 }
2887 return FAIL;
2888}
2889
2890#if defined(UNIX) || defined(VMS)
2891/*
2892 * Return TRUE if we are certain the user owns the file "fname".
2893 * Used for ".vimrc" and ".exrc".
2894 * Use both stat() and lstat() for extra security.
2895 */
2896 static int
2897file_owned(fname)
2898 char *fname;
2899{
2900 struct stat s;
2901# ifdef UNIX
2902 uid_t uid = getuid();
2903# else /* VMS */
2904 uid_t uid = ((getgid() << 16) | getuid());
2905# endif
2906
2907 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2908# ifdef HAVE_LSTAT
2909 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2910# endif
2911 );
2912}
2913#endif
2914
2915/*
2916 * Give an error message main_errors["n"] and exit.
2917 */
2918 static void
2919mainerr(n, str)
2920 int n; /* one of the ME_ defines */
2921 char_u *str; /* extra argument or NULL */
2922{
2923#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2924 reset_signals(); /* kill us with CTRL-C here, if you like */
2925#endif
2926
2927 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002928 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002929 mch_errmsg(_(main_errors[n]));
2930 if (str != NULL)
2931 {
2932 mch_errmsg(": \"");
2933 mch_errmsg((char *)str);
2934 mch_errmsg("\"");
2935 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002936 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002937
2938 mch_exit(1);
2939}
2940
2941 void
2942mainerr_arg_missing(str)
2943 char_u *str;
2944{
2945 mainerr(ME_ARG_MISSING, str);
2946}
2947
2948/*
2949 * print a message with three spaces prepended and '\n' appended.
2950 */
2951 static void
2952main_msg(s)
2953 char *s;
2954{
2955 mch_msg(" ");
2956 mch_msg(s);
2957 mch_msg("\n");
2958}
2959
2960/*
2961 * Print messages for "vim -h" or "vim --help" and exit.
2962 */
2963 static void
2964usage()
2965{
2966 int i;
2967 static char *(use[]) =
2968 {
2969 N_("[file ..] edit specified file(s)"),
2970 N_("- read text from stdin"),
2971 N_("-t tag edit file where tag is defined"),
2972#ifdef FEAT_QUICKFIX
2973 N_("-q [errorfile] edit file with first error")
2974#endif
2975 };
2976
2977#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2978 reset_signals(); /* kill us with CTRL-C here, if you like */
2979#endif
2980
2981 mch_msg(longVersion);
2982 mch_msg(_("\n\nusage:"));
2983 for (i = 0; ; ++i)
2984 {
2985 mch_msg(_(" vim [arguments] "));
2986 mch_msg(_(use[i]));
2987 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
2988 break;
2989 mch_msg(_("\n or:"));
2990 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002991#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00002992 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002993#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002994
2995 mch_msg(_("\n\nArguments:\n"));
2996 main_msg(_("--\t\t\tOnly file names after this"));
2997#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2998 main_msg(_("--literal\t\tDon't expand wildcards"));
2999#endif
3000#ifdef FEAT_OLE
3001 main_msg(_("-register\t\tRegister this gvim for OLE"));
3002 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3003#endif
3004#ifdef FEAT_GUI
3005 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3006 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3007#endif
3008 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3009 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3010 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3011#ifdef FEAT_DIFF
3012 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3013#endif
3014 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3015 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3016 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3017 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3018 main_msg(_("-M\t\t\tModifications in text not allowed"));
3019 main_msg(_("-b\t\t\tBinary mode"));
3020#ifdef FEAT_LISP
3021 main_msg(_("-l\t\t\tLisp mode"));
3022#endif
3023 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3024 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003025 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3026#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003027 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003028#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003029 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3030 main_msg(_("-r\t\t\tList swap files and exit"));
3031 main_msg(_("-r (with file name)\tRecover crashed session"));
3032 main_msg(_("-L\t\t\tSame as -r"));
3033#ifdef AMIGA
3034 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3035 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3036#endif
3037#ifdef FEAT_ARABIC
3038 main_msg(_("-A\t\t\tstart in Arabic mode"));
3039#endif
3040#ifdef FEAT_RIGHTLEFT
3041 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3042#endif
3043#ifdef FEAT_FKMAP
3044 main_msg(_("-F\t\t\tStart in Farsi mode"));
3045#endif
3046 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3047 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3048#ifdef FEAT_GUI
3049 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3050#endif
3051 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003052#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003053 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003054 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3055 main_msg(_("-O[N]\t\tLike -o but split vertically"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003056#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003057 main_msg(_("+\t\t\tStart at end of file"));
3058 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003059 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003060 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3061 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3062 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3063 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3064 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3065#ifdef FEAT_CRYPT
3066 main_msg(_("-x\t\t\tEdit encrypted files"));
3067#endif
3068#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3069# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3070 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3071# endif
3072 main_msg(_("-X\t\t\tDo not connect to X server"));
3073#endif
3074#ifdef FEAT_CLIENTSERVER
3075 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3076 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3077 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3078 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003079# ifdef FEAT_WINDOWS
3080 main_msg(_("--remote-tab <files> As --remote but open tab page for each file"));
3081# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003082 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3083 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3084 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3085 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3086#endif
3087#ifdef FEAT_VIMINFO
3088 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3089#endif
3090 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3091 main_msg(_("--version\t\tPrint version information and exit"));
3092
3093#ifdef FEAT_GUI_X11
3094# ifdef FEAT_GUI_MOTIF
3095 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3096# else
3097# ifdef FEAT_GUI_ATHENA
3098# ifdef FEAT_GUI_NEXTAW
3099 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3100# else
3101 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3102# endif
3103# endif
3104# endif
3105 main_msg(_("-display <display>\tRun vim on <display>"));
3106 main_msg(_("-iconic\t\tStart vim iconified"));
3107# if 0
3108 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3109 mch_msg(_("\t\t\t (Unimplemented)\n"));
3110# endif
3111 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3112 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3113 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3114 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3115 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3116 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3117 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3118 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3119# ifdef FEAT_GUI_ATHENA
3120 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3121# endif
3122 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3123 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3124 main_msg(_("-xrm <resource>\tSet the specified resource"));
3125#endif /* FEAT_GUI_X11 */
3126#if defined(FEAT_GUI) && defined(RISCOS)
3127 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3128 main_msg(_("--columns <number>\tInitial width of window in columns"));
3129 main_msg(_("--rows <number>\tInitial height of window in rows"));
3130#endif
3131#ifdef FEAT_GUI_GTK
3132 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3133 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3134 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3135 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3136 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3137# ifdef HAVE_GTK2
3138 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3139# endif
3140 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3141#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003142#ifdef FEAT_GUI_W32
3143 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003144 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003145#endif
3146
3147#ifdef FEAT_GUI_GNOME
3148 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3149 if (gui.starting)
3150 mch_msg("\n");
3151 else
3152#endif
3153 mch_exit(0);
3154}
3155
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003156#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003157/*
3158 * Check the result of the ATTENTION dialog:
3159 * When "Quit" selected, exit Vim.
3160 * When "Recover" selected, recover the file.
3161 */
3162 static void
3163check_swap_exists_action()
3164{
3165 if (swap_exists_action == SEA_QUIT)
3166 getout(1);
3167 handle_swap_exists(NULL);
3168}
3169#endif
3170
3171#if defined(STARTUPTIME) || defined(PROTO)
3172static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3173
3174static struct timeval prev_timeval;
3175
3176/*
3177 * Save the previous time before doing something that could nest.
3178 * set "*tv_rel" to the time elapsed so far.
3179 */
3180 void
3181time_push(tv_rel, tv_start)
3182 void *tv_rel, *tv_start;
3183{
3184 *((struct timeval *)tv_rel) = prev_timeval;
3185 gettimeofday(&prev_timeval, NULL);
3186 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3187 - ((struct timeval *)tv_rel)->tv_usec;
3188 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3189 - ((struct timeval *)tv_rel)->tv_sec;
3190 if (((struct timeval *)tv_rel)->tv_usec < 0)
3191 {
3192 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3193 --((struct timeval *)tv_rel)->tv_sec;
3194 }
3195 *(struct timeval *)tv_start = prev_timeval;
3196}
3197
3198/*
3199 * Compute the previous time after doing something that could nest.
3200 * Subtract "*tp" from prev_timeval;
3201 * Note: The arguments are (void *) to avoid trouble with systems that don't
3202 * have struct timeval.
3203 */
3204 void
3205time_pop(tp)
3206 void *tp; /* actually (struct timeval *) */
3207{
3208 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3209 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3210 if (prev_timeval.tv_usec < 0)
3211 {
3212 prev_timeval.tv_usec += 1000000;
3213 --prev_timeval.tv_sec;
3214 }
3215}
3216
3217 static void
3218time_diff(then, now)
3219 struct timeval *then;
3220 struct timeval *now;
3221{
3222 long usec;
3223 long msec;
3224
3225 usec = now->tv_usec - then->tv_usec;
3226 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3227 usec = usec % 1000L;
3228 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3229}
3230
3231 void
3232time_msg(msg, tv_start)
3233 char *msg;
3234 void *tv_start; /* only for do_source: start time; actually
3235 (struct timeval *) */
3236{
3237 static struct timeval start;
3238 struct timeval now;
3239
3240 if (time_fd != NULL)
3241 {
3242 if (strstr(msg, "STARTING") != NULL)
3243 {
3244 gettimeofday(&start, NULL);
3245 prev_timeval = start;
3246 fprintf(time_fd, "\n\ntimes in msec\n");
3247 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3248 fprintf(time_fd, " clock elapsed: other lines\n\n");
3249 }
3250 gettimeofday(&now, NULL);
3251 time_diff(&start, &now);
3252 if (((struct timeval *)tv_start) != NULL)
3253 {
3254 fprintf(time_fd, " ");
3255 time_diff(((struct timeval *)tv_start), &now);
3256 }
3257 fprintf(time_fd, " ");
3258 time_diff(&prev_timeval, &now);
3259 prev_timeval = now;
3260 fprintf(time_fd, ": %s\n", msg);
3261 }
3262}
3263
3264# ifdef WIN3264
3265/*
3266 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3267 */
3268 int
3269gettimeofday(struct timeval *tv, char *dummy)
3270{
3271 long t = clock();
3272 tv->tv_sec = t / CLOCKS_PER_SEC;
3273 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3274 return 0;
3275}
3276# endif
3277
3278#endif
3279
3280#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3281
3282/*
3283 * Common code for the X command server and the Win32 command server.
3284 */
3285
Bram Moolenaareb94e552006-03-11 21:35:11 +00003286static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003287
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003288/*
3289 * Do the client-server stuff, unless "--servername ''" was used.
3290 */
3291 static void
3292exec_on_server(parmp)
3293 mparm_T *parmp;
3294{
3295 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3296 {
3297# ifdef WIN32
3298 /* Initialise the client/server messaging infrastructure. */
3299 serverInitMessaging();
3300# endif
3301
3302 /*
3303 * When a command server argument was found, execute it. This may
3304 * exit Vim when it was successful. Otherwise it's executed further
3305 * on. Remember the encoding used here in "serverStrEnc".
3306 */
3307 if (parmp->serverArg)
3308 {
3309 cmdsrv_main(&parmp->argc, parmp->argv,
3310 parmp->serverName_arg, &parmp->serverStr);
3311# ifdef FEAT_MBYTE
3312 parmp->serverStrEnc = vim_strsave(p_enc);
3313# endif
3314 }
3315
3316 /* If we're still running, get the name to register ourselves.
3317 * On Win32 can register right now, for X11 need to setup the
3318 * clipboard first, it's further down. */
3319 parmp->servername = serverMakeName(parmp->serverName_arg,
3320 parmp->argv[0]);
3321# ifdef WIN32
3322 if (parmp->servername != NULL)
3323 {
3324 serverSetName(parmp->servername);
3325 vim_free(parmp->servername);
3326 }
3327# endif
3328 }
3329}
3330
3331/*
3332 * Prepare for running as a Vim server.
3333 */
3334 static void
3335prepare_server(parmp)
3336 mparm_T *parmp;
3337{
3338# if defined(FEAT_X11)
3339 /*
3340 * Register for remote command execution with :serversend and --remote
3341 * unless there was a -X or a --servername '' on the command line.
3342 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003343 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003344 */
3345 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3346# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003347 (gui.in_use
3348# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003349 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003350# endif
3351 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003352# endif
3353 parmp->serverName_arg != NULL))
3354 {
3355 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3356 vim_free(parmp->servername);
3357 TIME_MSG("register server name");
3358 }
3359 else
3360 serverDelayedStartName = parmp->servername;
3361# endif
3362
3363 /*
3364 * Execute command ourselves if we're here because the send failed (or
3365 * else we would have exited above).
3366 */
3367 if (parmp->serverStr != NULL)
3368 {
3369 char_u *p;
3370
3371 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3372 parmp->serverStr, &p));
3373 vim_free(p);
3374 }
3375}
3376
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003377 static void
3378cmdsrv_main(argc, argv, serverName_arg, serverStr)
3379 int *argc;
3380 char **argv;
3381 char_u *serverName_arg;
3382 char_u **serverStr;
3383{
3384 char_u *res;
3385 int i;
3386 char_u *sname;
3387 int ret;
3388 int didone = FALSE;
3389 int exiterr = 0;
3390 char **newArgV = argv + 1;
3391 int newArgC = 1,
3392 Argc = *argc;
3393 int argtype;
3394#define ARGTYPE_OTHER 0
3395#define ARGTYPE_EDIT 1
3396#define ARGTYPE_EDIT_WAIT 2
3397#define ARGTYPE_SEND 3
3398 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003399 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003400# ifndef FEAT_X11
3401 HWND srv;
3402# else
3403 Window srv;
3404
3405 setup_term_clip();
3406# endif
3407
3408 sname = serverMakeName(serverName_arg, argv[0]);
3409 if (sname == NULL)
3410 return;
3411
3412 /*
3413 * Execute the command server related arguments and remove them
3414 * from the argc/argv array; We may have to return into main()
3415 */
3416 for (i = 1; i < Argc; i++)
3417 {
3418 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003419 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003420 {
3421 for (; i < *argc; i++)
3422 {
3423 *newArgV++ = argv[i];
3424 newArgC++;
3425 }
3426 break;
3427 }
3428
Bram Moolenaareb94e552006-03-11 21:35:11 +00003429 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003430 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003431 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3432 {
3433 char *p = argv[i] + 8;
3434
3435 argtype = ARGTYPE_EDIT;
3436 while (*p != NUL)
3437 {
3438 if (STRNICMP(p, "-wait", 5) == 0)
3439 {
3440 argtype = ARGTYPE_EDIT_WAIT;
3441 p += 5;
3442 }
3443 else if (STRNICMP(p, "-silent", 7) == 0)
3444 {
3445 silent = TRUE;
3446 p += 7;
3447 }
3448 else if (STRNICMP(p, "-tab", 4) == 0)
3449 {
3450 tabs = TRUE;
3451 p += 4;
3452 }
3453 else
3454 {
3455 argtype = ARGTYPE_OTHER;
3456 break;
3457 }
3458 }
3459 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003460 else
3461 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003462
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003463 if (argtype != ARGTYPE_OTHER)
3464 {
3465 if (i == *argc - 1)
3466 mainerr_arg_missing((char_u *)argv[i]);
3467 if (argtype == ARGTYPE_SEND)
3468 {
3469 *serverStr = (char_u *)argv[i + 1];
3470 i++;
3471 }
3472 else
3473 {
3474 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003475 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003476 if (*serverStr == NULL)
3477 {
3478 /* Probably out of memory, exit. */
3479 didone = TRUE;
3480 exiterr = 1;
3481 break;
3482 }
3483 Argc = i;
3484 }
3485# ifdef FEAT_X11
3486 if (xterm_dpy == NULL)
3487 {
3488 mch_errmsg(_("No display"));
3489 ret = -1;
3490 }
3491 else
3492 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3493 NULL, &srv, 0, 0, silent);
3494# else
3495 /* Win32 always works? */
3496 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3497# endif
3498 if (ret < 0)
3499 {
3500 if (argtype == ARGTYPE_SEND)
3501 {
3502 /* Failed to send, abort. */
3503 mch_errmsg(_(": Send failed.\n"));
3504 didone = TRUE;
3505 exiterr = 1;
3506 }
3507 else if (!silent)
3508 /* Let vim start normally. */
3509 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3510 break;
3511 }
3512
3513# ifdef FEAT_GUI_W32
3514 /* Guess that when the server name starts with "g" it's a GUI
3515 * server, which we can bring to the foreground here.
3516 * Foreground() in the server doesn't work very well. */
3517 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3518 SetForegroundWindow(srv);
3519# endif
3520
3521 /*
3522 * For --remote-wait: Wait until the server did edit each
3523 * file. Also detect that the server no longer runs.
3524 */
3525 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3526 {
3527 int numFiles = *argc - i - 1;
3528 int j;
3529 char_u *done = alloc(numFiles);
3530 char_u *p;
3531# ifdef FEAT_GUI_W32
3532 NOTIFYICONDATA ni;
3533 int count = 0;
3534 extern HWND message_window;
3535# endif
3536
3537 if (numFiles > 0 && argv[i + 1][0] == '+')
3538 /* Skip "+cmd" argument, don't wait for it to be edited. */
3539 --numFiles;
3540
3541# ifdef FEAT_GUI_W32
3542 ni.cbSize = sizeof(ni);
3543 ni.hWnd = message_window;
3544 ni.uID = 0;
3545 ni.uFlags = NIF_ICON|NIF_TIP;
3546 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3547 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3548 Shell_NotifyIcon(NIM_ADD, &ni);
3549# endif
3550
3551 /* Wait for all files to unload in remote */
3552 memset(done, 0, numFiles);
3553 while (memchr(done, 0, numFiles) != NULL)
3554 {
3555# ifdef WIN32
3556 p = serverGetReply(srv, NULL, TRUE, TRUE);
3557 if (p == NULL)
3558 break;
3559# else
3560 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3561 break;
3562# endif
3563 j = atoi((char *)p);
3564 if (j >= 0 && j < numFiles)
3565 {
3566# ifdef FEAT_GUI_W32
3567 ++count;
3568 sprintf(ni.szTip, _("%d of %d edited"),
3569 count, numFiles);
3570 Shell_NotifyIcon(NIM_MODIFY, &ni);
3571# endif
3572 done[j] = 1;
3573 }
3574 }
3575# ifdef FEAT_GUI_W32
3576 Shell_NotifyIcon(NIM_DELETE, &ni);
3577# endif
3578 }
3579 }
3580 else if (STRICMP(argv[i], "--remote-expr") == 0)
3581 {
3582 if (i == *argc - 1)
3583 mainerr_arg_missing((char_u *)argv[i]);
3584# ifdef WIN32
3585 /* Win32 always works? */
3586 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3587 &res, NULL, 1, FALSE) < 0)
3588# else
3589 if (xterm_dpy == NULL)
3590 mch_errmsg(_("No display: Send expression failed.\n"));
3591 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3592 &res, NULL, 1, 1, FALSE) < 0)
3593# endif
3594 {
3595 if (res != NULL && *res != NUL)
3596 {
3597 /* Output error from remote */
3598 mch_errmsg((char *)res);
3599 vim_free(res);
3600 res = NULL;
3601 }
3602 mch_errmsg(_(": Send expression failed.\n"));
3603 }
3604 }
3605 else if (STRICMP(argv[i], "--serverlist") == 0)
3606 {
3607# ifdef WIN32
3608 /* Win32 always works? */
3609 res = serverGetVimNames();
3610# else
3611 if (xterm_dpy != NULL)
3612 res = serverGetVimNames(xterm_dpy);
3613# endif
3614 if (called_emsg)
3615 mch_errmsg("\n");
3616 }
3617 else if (STRICMP(argv[i], "--servername") == 0)
3618 {
3619 /* Alredy processed. Take it out of the command line */
3620 i++;
3621 continue;
3622 }
3623 else
3624 {
3625 *newArgV++ = argv[i];
3626 newArgC++;
3627 continue;
3628 }
3629 didone = TRUE;
3630 if (res != NULL && *res != NUL)
3631 {
3632 mch_msg((char *)res);
3633 if (res[STRLEN(res) - 1] != '\n')
3634 mch_msg("\n");
3635 }
3636 vim_free(res);
3637 }
3638
3639 if (didone)
3640 {
3641 display_errors(); /* display any collected messages */
3642 exit(exiterr); /* Mission accomplished - get out */
3643 }
3644
3645 /* Return back into main() */
3646 *argc = newArgC;
3647 vim_free(sname);
3648}
3649
3650/*
3651 * Build a ":drop" command to send to a Vim server.
3652 */
3653 static char_u *
Bram Moolenaareb94e552006-03-11 21:35:11 +00003654build_drop_cmd(filec, filev, tabs, sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003655 int filec;
3656 char **filev;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003657 int tabs; /* Use ":tab drop" instead of ":drop". */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003658 int sendReply;
3659{
3660 garray_T ga;
3661 int i;
3662 char_u *inicmd = NULL;
3663 char_u *p;
3664 char_u cwd[MAXPATHL];
3665
3666 if (filec > 0 && filev[0][0] == '+')
3667 {
3668 inicmd = (char_u *)filev[0] + 1;
3669 filev++;
3670 filec--;
3671 }
3672 /* Check if we have at least one argument. */
3673 if (filec <= 0)
3674 mainerr_arg_missing((char_u *)filev[-1]);
3675 if (mch_dirname(cwd, MAXPATHL) != OK)
3676 return NULL;
Bram Moolenaar02b06312007-09-06 15:39:22 +00003677 if ((p = vim_strsave_escaped_ext(cwd,
3678#ifdef BACKSLASH_IN_FILENAME
3679 "", /* rem_backslash() will tell what chars to escape */
3680#else
3681 PATH_ESC_CHARS,
3682#endif
3683 '\\', TRUE)) == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003684 return NULL;
3685 ga_init2(&ga, 1, 100);
3686 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3687 ga_concat(&ga, p);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003688 vim_free(p);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003689
3690 /* Call inputsave() so that a prompt for an encryption key works. */
3691 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3692 if (tabs)
3693 ga_concat(&ga, (char_u *)"tab ");
3694 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003695 for (i = 0; i < filec; i++)
3696 {
3697 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003698 * do it again in the Vim server. On MS-Windows only escape
3699 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003700 p = vim_strsave_escaped((char_u *)filev[i],
3701#ifdef UNIX
3702 PATH_ESC_CHARS
3703#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003704 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003705#endif
3706 );
3707 if (p == NULL)
3708 {
3709 vim_free(ga.ga_data);
3710 return NULL;
3711 }
3712 ga_concat(&ga, (char_u *)" ");
3713 ga_concat(&ga, p);
3714 vim_free(p);
3715 }
3716 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3717 * CTRL-\ CTRL-N again. */
3718 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3719 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3720 if (sendReply)
3721 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3722 ga_concat(&ga, (char_u *)"<CR>:");
3723 if (inicmd != NULL)
3724 {
3725 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3726 * the following commands to be inserted as text. Use a "|",
3727 * hopefully "inicmd" does allow this... */
3728 ga_concat(&ga, inicmd);
3729 ga_concat(&ga, (char_u *)"|");
3730 }
3731 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3732 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00003733 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003734 ga_append(&ga, NUL);
3735 return ga.ga_data;
3736}
3737
3738/*
3739 * Replace termcodes such as <CR> and insert as key presses if there is room.
3740 */
3741 void
3742server_to_input_buf(str)
3743 char_u *str;
3744{
3745 char_u *ptr = NULL;
3746 char_u *cpo_save = p_cpo;
3747
3748 /* Set 'cpoptions' the way we want it.
3749 * B set - backslashes are *not* treated specially
3750 * k set - keycodes are *not* reverse-engineered
3751 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003752 * The last but one parameter of replace_termcodes() is TRUE so that the
3753 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003754 */
3755 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003756 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003757 p_cpo = cpo_save;
3758
3759 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3760 {
3761 /*
3762 * Add the string to the input stream.
3763 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3764 *
3765 * First clear typed characters from the typeahead buffer, there could
3766 * be half a mapping there. Then append to the existing string, so
3767 * that multiple commands from a client are concatenated.
3768 */
3769 if (typebuf.tb_maplen < typebuf.tb_len)
3770 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3771 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3772
3773 /* Let input_available() know we inserted text in the typeahead
3774 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003775 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003776 }
3777 vim_free((char_u *)ptr);
3778}
3779
3780/*
3781 * Evaluate an expression that the client sent to a string.
3782 * Handles disabling error messages and disables debugging, otherwise Vim
3783 * hangs, waiting for "cont" to be typed.
3784 */
3785 char_u *
3786eval_client_expr_to_string(expr)
3787 char_u *expr;
3788{
3789 char_u *res;
3790 int save_dbl = debug_break_level;
3791 int save_ro = redir_off;
3792
3793 debug_break_level = -1;
3794 redir_off = 0;
3795 ++emsg_skip;
3796
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003797 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003798
3799 debug_break_level = save_dbl;
3800 redir_off = save_ro;
3801 --emsg_skip;
3802
Bram Moolenaar63a121b2005-12-11 21:36:39 +00003803 /* A client can tell us to redraw, but not to display the cursor, so do
3804 * that here. */
3805 setcursor();
3806 out_flush();
3807#ifdef FEAT_GUI
3808 if (gui.in_use)
3809 gui_update_cursor(FALSE, FALSE);
3810#endif
3811
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003812 return res;
3813}
3814
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003815/*
3816 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3817 * return an allocated string. Otherwise return "data".
3818 * "*tofree" is set to the result when it needs to be freed later.
3819 */
3820/*ARGSUSED*/
3821 char_u *
3822serverConvert(client_enc, data, tofree)
3823 char_u *client_enc;
3824 char_u *data;
3825 char_u **tofree;
3826{
3827 char_u *res = data;
3828
3829 *tofree = NULL;
3830# ifdef FEAT_MBYTE
3831 if (client_enc != NULL && p_enc != NULL)
3832 {
3833 vimconv_T vimconv;
3834
3835 vimconv.vc_type = CONV_NONE;
3836 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3837 && vimconv.vc_type != CONV_NONE)
3838 {
3839 res = string_convert(&vimconv, data, NULL);
3840 if (res == NULL)
3841 res = data;
3842 else
3843 *tofree = res;
3844 }
3845 convert_setup(&vimconv, NULL, NULL);
3846 }
3847# endif
3848 return res;
3849}
3850
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003851
3852/*
3853 * Make our basic server name: use the specified "arg" if given, otherwise use
3854 * the tail of the command "cmd" we were started with.
3855 * Return the name in allocated memory. This doesn't include a serial number.
3856 */
3857 static char_u *
3858serverMakeName(arg, cmd)
3859 char_u *arg;
3860 char *cmd;
3861{
3862 char_u *p;
3863
3864 if (arg != NULL && *arg != NUL)
3865 p = vim_strsave_up(arg);
3866 else
3867 {
3868 p = vim_strsave_up(gettail((char_u *)cmd));
3869 /* Remove .exe or .bat from the name. */
3870 if (p != NULL && vim_strchr(p, '.') != NULL)
3871 *vim_strchr(p, '.') = NUL;
3872 }
3873 return p;
3874}
3875#endif /* FEAT_CLIENTSERVER */
3876
3877/*
3878 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3879 */
3880#if defined(FEAT_FKMAP) || defined(PROTO)
3881# include "farsi.c"
3882#endif
3883
3884/*
3885 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3886 */
3887#if defined(FEAT_ARABIC) || defined(PROTO)
3888# include "arabic.c"
3889#endif