blob: ab5d31bf2491275a155e9c7f2fcb60b01449f218 [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
1334
1335 mch_exit(exitval);
1336}
1337
1338/*
1339 * Get a (optional) count for a Vim argument.
1340 */
1341 static int
1342get_number_arg(p, idx, def)
1343 char_u *p; /* pointer to argument */
1344 int *idx; /* index in argument, is incremented */
1345 int def; /* default value */
1346{
1347 if (vim_isdigit(p[*idx]))
1348 {
1349 def = atoi((char *)&(p[*idx]));
1350 while (vim_isdigit(p[*idx]))
1351 *idx = *idx + 1;
1352 }
1353 return def;
1354}
1355
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001356#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1357/*
1358 * Setup to use the current locale (for ctype() and many other things).
1359 */
1360 static void
1361init_locale()
1362{
1363 setlocale(LC_ALL, "");
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001364# ifdef WIN32
1365 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1366 * text while it's expecting text in the current locale. This call avoids
1367 * that. */
1368 setlocale(LC_CTYPE, "C");
1369# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001370
1371# ifdef FEAT_GETTEXT
1372 {
1373 int mustfree = FALSE;
1374 char_u *p;
1375
1376# ifdef DYNAMIC_GETTEXT
1377 /* Initialize the gettext library */
1378 dyn_libintl_init(NULL);
1379# endif
1380 /* expand_env() doesn't work yet, because chartab[] is not initialized
1381 * yet, call vim_getenv() directly */
1382 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1383 if (p != NULL && *p != NUL)
1384 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001385 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001386 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1387 }
1388 if (mustfree)
1389 vim_free(p);
1390 textdomain(VIMPACKAGE);
1391 }
1392# endif
1393}
1394#endif
1395
1396/*
1397 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1398 * If the executable name starts with "r" we disable shell commands.
1399 * If the next character is "e" we run in Easy mode.
1400 * If the next character is "g" we run the GUI version.
1401 * If the next characters are "view" we start in readonly mode.
1402 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1403 * If the next characters are "ex" we start in Ex mode. If it's followed
1404 * by "im" use improved Ex mode.
1405 */
1406 static void
1407parse_command_name(parmp)
1408 mparm_T *parmp;
1409{
1410 char_u *initstr;
1411
1412 initstr = gettail((char_u *)parmp->argv[0]);
1413
1414#ifdef MACOS_X_UNIX
1415 /* An issue has been seen when launching Vim in such a way that
1416 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1417 * executable or a symbolic link of it. Until this issue is resolved
1418 * we prohibit the GUI from being used.
1419 */
1420 if (STRCMP(initstr, parmp->argv[0]) == 0)
1421 disallow_gui = TRUE;
1422
1423 /* TODO: On MacOS X default to gui if argv[0] ends in:
Bram Moolenaar27dc1952006-03-15 23:06:44 +00001424 * /Vim.app/Contents/MacOS/Vim */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001425#endif
1426
1427#ifdef FEAT_EVAL
1428 set_vim_var_string(VV_PROGNAME, initstr, -1);
1429#endif
1430
1431 if (TOLOWER_ASC(initstr[0]) == 'r')
1432 {
1433 restricted = TRUE;
1434 ++initstr;
1435 }
1436
1437 /* Avoid using evim mode for "editor". */
1438 if (TOLOWER_ASC(initstr[0]) == 'e'
1439 && (TOLOWER_ASC(initstr[1]) == 'v'
1440 || TOLOWER_ASC(initstr[1]) == 'g'))
1441 {
1442#ifdef FEAT_GUI
1443 gui.starting = TRUE;
1444#endif
1445 parmp->evim_mode = TRUE;
1446 ++initstr;
1447 }
1448
1449 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1450 {
1451 main_start_gui();
1452#ifdef FEAT_GUI
1453 ++initstr;
1454#endif
1455 }
1456
1457 if (STRNICMP(initstr, "view", 4) == 0)
1458 {
1459 readonlymode = TRUE;
1460 curbuf->b_p_ro = TRUE;
1461 p_uc = 10000; /* don't update very often */
1462 initstr += 4;
1463 }
1464 else if (STRNICMP(initstr, "vim", 3) == 0)
1465 initstr += 3;
1466
1467 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1468 if (STRICMP(initstr, "diff") == 0)
1469 {
1470#ifdef FEAT_DIFF
1471 parmp->diff_mode = TRUE;
1472#else
1473 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1474 mch_errmsg("\n");
1475 mch_exit(2);
1476#endif
1477 }
1478
1479 if (STRNICMP(initstr, "ex", 2) == 0)
1480 {
1481 if (STRNICMP(initstr + 2, "im", 2) == 0)
1482 exmode_active = EXMODE_VIM;
1483 else
1484 exmode_active = EXMODE_NORMAL;
1485 change_compatible(TRUE); /* set 'compatible' */
1486 }
1487}
1488
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001489/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001490 * Get the name of the display, before gui_prepare() removes it from
1491 * argv[]. Used for the xterm-clipboard display.
1492 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001493 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001494 */
1495/*ARGSUSED*/
1496 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001497early_arg_scan(parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001498 mparm_T *parmp;
1499{
1500#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001501 int argc = parmp->argc;
1502 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001503 int i;
1504
1505 for (i = 1; i < argc; i++)
1506 {
1507 if (STRCMP(argv[i], "--") == 0)
1508 break;
1509# ifdef FEAT_XCLIPBOARD
1510 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001511# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001512 || STRICMP(argv[i], "--display") == 0
1513# endif
1514 )
1515 {
1516 if (i == argc - 1)
1517 mainerr_arg_missing((char_u *)argv[i]);
1518 xterm_display = argv[++i];
1519 }
1520# endif
1521# ifdef FEAT_CLIENTSERVER
1522 else if (STRICMP(argv[i], "--servername") == 0)
1523 {
1524 if (i == argc - 1)
1525 mainerr_arg_missing((char_u *)argv[i]);
1526 parmp->serverName_arg = (char_u *)argv[++i];
1527 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001528 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001529 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001530 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001531 {
1532 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001533# ifdef FEAT_GUI
1534 if (strstr(argv[i], "-wait") != 0)
1535 /* don't fork() when starting the GUI to edit files ourself */
1536 gui.dofork = FALSE;
1537# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001538 }
1539# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001540
1541# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1542# ifdef FEAT_GUI_W32
1543 else if (STRICMP(argv[i], "--windowid") == 0)
1544# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001545 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001546# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001547 {
Bram Moolenaar78e17622007-08-30 10:26:19 +00001548 unsigned int id;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001549 int count;
1550
1551 if (i == argc - 1)
1552 mainerr_arg_missing((char_u *)argv[i]);
1553 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001554 count = sscanf(&(argv[i + 1][2]), "%x", &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001555 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001556 count = sscanf(argv[i+1], "%u", &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001557 if (count != 1)
1558 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1559 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001560# ifdef FEAT_GUI_W32
1561 win_socket_id = id;
1562# else
1563 gtk_socket_id = id;
1564# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001565 i++;
1566 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001567# endif
1568# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001569 else if (STRICMP(argv[i], "--echo-wid") == 0)
1570 echo_wid_arg = TRUE;
1571# endif
1572 }
1573#endif
1574}
1575
1576/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001577 * Scan the command line arguments.
1578 */
1579 static void
1580command_line_scan(parmp)
1581 mparm_T *parmp;
1582{
1583 int argc = parmp->argc;
1584 char **argv = parmp->argv;
1585 int argv_idx; /* index in argv[n][] */
1586 int had_minmin = FALSE; /* found "--" argument */
1587 int want_argument; /* option argument with argument */
1588 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001589 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001590 long n;
1591
1592 --argc;
1593 ++argv;
1594 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1595 while (argc > 0)
1596 {
1597 /*
1598 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1599 */
1600 if (argv[0][0] == '+' && !had_minmin)
1601 {
1602 if (parmp->n_commands >= MAX_ARG_CMDS)
1603 mainerr(ME_EXTRA_CMD, NULL);
1604 argv_idx = -1; /* skip to next argument */
1605 if (argv[0][1] == NUL)
1606 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1607 else
1608 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1609 }
1610
1611 /*
1612 * Optional argument.
1613 */
1614 else if (argv[0][0] == '-' && !had_minmin)
1615 {
1616 want_argument = FALSE;
1617 c = argv[0][argv_idx++];
1618#ifdef VMS
1619 /*
1620 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1621 * and "-/X" as "-X".
1622 */
1623 if (c == '/')
1624 {
1625 c = argv[0][argv_idx++];
1626 c = TOUPPER_ASC(c);
1627 }
1628 else
1629 c = TOLOWER_ASC(c);
1630#endif
1631 switch (c)
1632 {
1633 case NUL: /* "vim -" read from stdin */
1634 /* "ex -" silent mode */
1635 if (exmode_active)
1636 silent_mode = TRUE;
1637 else
1638 {
1639 if (parmp->edit_type != EDIT_NONE)
1640 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1641 parmp->edit_type = EDIT_STDIN;
1642 read_cmd_fd = 2; /* read from stderr instead of stdin */
1643 }
1644 argv_idx = -1; /* skip to next argument */
1645 break;
1646
1647 case '-': /* "--" don't take any more option arguments */
1648 /* "--help" give help message */
1649 /* "--version" give version message */
1650 /* "--literal" take files literally */
1651 /* "--nofork" don't fork */
1652 /* "--noplugin[s]" skip plugins */
1653 /* "--cmd <cmd>" execute cmd before vimrc */
1654 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1655 usage();
1656 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1657 {
1658 Columns = 80; /* need to init Columns */
1659 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1660 list_version();
1661 msg_putchar('\n');
1662 msg_didout = FALSE;
1663 mch_exit(0);
1664 }
1665 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1666 {
1667#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1668 parmp->literal = TRUE;
1669#endif
1670 }
1671 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1672 {
1673#ifdef FEAT_GUI
1674 gui.dofork = FALSE; /* don't fork() when starting GUI */
1675#endif
1676 }
1677 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1678 p_lpl = FALSE;
1679 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1680 {
1681 want_argument = TRUE;
1682 argv_idx += 3;
1683 }
1684#ifdef FEAT_CLIENTSERVER
1685 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1686 ; /* already processed -- no arg */
1687 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1688 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1689 {
1690 /* already processed -- snatch the following arg */
1691 if (argc > 1)
1692 {
1693 --argc;
1694 ++argv;
1695 }
1696 }
1697#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001698#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1699# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001700 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001701# else
1702 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1703# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001704 {
1705 /* already processed -- snatch the following arg */
1706 if (argc > 1)
1707 {
1708 --argc;
1709 ++argv;
1710 }
1711 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001712#endif
1713#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001714 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1715 {
1716 /* already processed, skip */
1717 }
1718#endif
1719 else
1720 {
1721 if (argv[0][argv_idx])
1722 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1723 had_minmin = TRUE;
1724 }
1725 if (!want_argument)
1726 argv_idx = -1; /* skip to next argument */
1727 break;
1728
1729 case 'A': /* "-A" start in Arabic mode */
1730#ifdef FEAT_ARABIC
1731 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1732#else
1733 mch_errmsg(_(e_noarabic));
1734 mch_exit(2);
1735#endif
1736 break;
1737
1738 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001739 /* Needs to be effective before expanding file names, because
1740 * for Win32 this makes us edit a shortcut file itself,
1741 * instead of the file it links to. */
1742 set_options_bin(curbuf->b_p_bin, 1, 0);
1743 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001744 break;
1745
1746 case 'C': /* "-C" Compatible */
1747 change_compatible(TRUE);
1748 break;
1749
1750 case 'e': /* "-e" Ex mode */
1751 exmode_active = EXMODE_NORMAL;
1752 break;
1753
1754 case 'E': /* "-E" Improved Ex mode */
1755 exmode_active = EXMODE_VIM;
1756 break;
1757
1758 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1759 window directly, not with newcli */
1760#ifdef FEAT_GUI
1761 gui.dofork = FALSE; /* don't fork() when starting GUI */
1762#endif
1763 break;
1764
1765 case 'g': /* "-g" start GUI */
1766 main_start_gui();
1767 break;
1768
1769 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1770#ifdef FEAT_FKMAP
1771 curwin->w_p_rl = p_fkmap = TRUE;
1772#else
1773 mch_errmsg(_(e_nofarsi));
1774 mch_exit(2);
1775#endif
1776 break;
1777
1778 case 'h': /* "-h" give help message */
1779#ifdef FEAT_GUI_GNOME
1780 /* Tell usage() to exit for "gvim". */
1781 gui.starting = FALSE;
1782#endif
1783 usage();
1784 break;
1785
1786 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1787#ifdef FEAT_RIGHTLEFT
1788 curwin->w_p_rl = p_hkmap = TRUE;
1789#else
1790 mch_errmsg(_(e_nohebrew));
1791 mch_exit(2);
1792#endif
1793 break;
1794
1795 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1796#ifdef FEAT_LISP
1797 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1798 p_sm = TRUE;
1799#endif
1800 break;
1801
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001802 case 'M': /* "-M" no changes or writing of files */
1803 reset_modifiable();
1804 /* FALLTHROUGH */
1805
1806 case 'm': /* "-m" no writing of files */
1807 p_write = FALSE;
1808 break;
1809
1810 case 'y': /* "-y" easy mode */
1811#ifdef FEAT_GUI
1812 gui.starting = TRUE; /* start GUI a bit later */
1813#endif
1814 parmp->evim_mode = TRUE;
1815 break;
1816
1817 case 'N': /* "-N" Nocompatible */
1818 change_compatible(FALSE);
1819 break;
1820
1821 case 'n': /* "-n" no swap file */
1822 parmp->no_swap_file = TRUE;
1823 break;
1824
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001825 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00001826#ifdef TARGET_API_MAC_OSX
1827 /* For some reason on MacOS X, an argument like:
1828 -psn_0_10223617 is passed in when invoke from Finder
1829 or with the 'open' command */
1830 if (argv[0][argv_idx] == 's')
1831 {
1832 argv_idx = -1; /* bypass full -psn */
1833 main_start_gui();
1834 break;
1835 }
1836#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001837#ifdef FEAT_WINDOWS
1838 /* default is 0: open window for each file */
1839 parmp->window_count = get_number_arg((char_u *)argv[0],
1840 &argv_idx, 0);
1841 parmp->window_layout = WIN_TABS;
1842#endif
1843 break;
1844
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001845 case 'o': /* "-o[N]" open N horizontal split windows */
1846#ifdef FEAT_WINDOWS
1847 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001848 parmp->window_count = get_number_arg((char_u *)argv[0],
1849 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001850 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001851#endif
1852 break;
1853
1854 case 'O': /* "-O[N]" open N vertical split windows */
1855#if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1856 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001857 parmp->window_count = get_number_arg((char_u *)argv[0],
1858 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001859 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001860#endif
1861 break;
1862
1863#ifdef FEAT_QUICKFIX
1864 case 'q': /* "-q" QuickFix mode */
1865 if (parmp->edit_type != EDIT_NONE)
1866 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1867 parmp->edit_type = EDIT_QF;
1868 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1869 {
1870 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1871 argv_idx = -1;
1872 }
1873 else if (argc > 1) /* "-q {errorfile}" */
1874 want_argument = TRUE;
1875 break;
1876#endif
1877
1878 case 'R': /* "-R" readonly mode */
1879 readonlymode = TRUE;
1880 curbuf->b_p_ro = TRUE;
1881 p_uc = 10000; /* don't update very often */
1882 break;
1883
1884 case 'r': /* "-r" recovery mode */
1885 case 'L': /* "-L" recovery mode */
1886 recoverymode = 1;
1887 break;
1888
1889 case 's':
1890 if (exmode_active) /* "-s" silent (batch) mode */
1891 silent_mode = TRUE;
1892 else /* "-s {scriptin}" read from script file */
1893 want_argument = TRUE;
1894 break;
1895
1896 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1897 if (parmp->edit_type != EDIT_NONE)
1898 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1899 parmp->edit_type = EDIT_TAG;
1900 if (argv[0][argv_idx]) /* "-t{tag}" */
1901 {
1902 parmp->tagname = (char_u *)argv[0] + argv_idx;
1903 argv_idx = -1;
1904 }
1905 else /* "-t {tag}" */
1906 want_argument = TRUE;
1907 break;
1908
1909#ifdef FEAT_EVAL
1910 case 'D': /* "-D" Debugging */
1911 parmp->use_debug_break_level = 9999;
1912 break;
1913#endif
1914#ifdef FEAT_DIFF
1915 case 'd': /* "-d" 'diff' */
1916# ifdef AMIGA
1917 /* check for "-dev {device}" */
1918 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1919 want_argument = TRUE;
1920 else
1921# endif
1922 parmp->diff_mode = TRUE;
1923 break;
1924#endif
1925 case 'V': /* "-V{N}" Verbose level */
1926 /* default is 10: a little bit verbose */
1927 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1928 if (argv[0][argv_idx] != NUL)
1929 {
1930 set_option_value((char_u *)"verbosefile", 0L,
1931 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001932 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001933 }
1934 break;
1935
1936 case 'v': /* "-v" Vi-mode (as if called "vi") */
1937 exmode_active = 0;
1938#ifdef FEAT_GUI
1939 gui.starting = FALSE; /* don't start GUI */
1940#endif
1941 break;
1942
1943 case 'w': /* "-w{number}" set window height */
1944 /* "-w {scriptout}" write to script */
1945 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1946 {
1947 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1948 set_option_value((char_u *)"window", n, NULL, 0);
1949 break;
1950 }
1951 want_argument = TRUE;
1952 break;
1953
1954#ifdef FEAT_CRYPT
1955 case 'x': /* "-x" encrypted reading/writing of files */
1956 parmp->ask_for_key = TRUE;
1957 break;
1958#endif
1959
1960 case 'X': /* "-X" don't connect to X server */
1961#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
1962 x_no_connect = TRUE;
1963#endif
1964 break;
1965
1966 case 'Z': /* "-Z" restricted mode */
1967 restricted = TRUE;
1968 break;
1969
1970 case 'c': /* "-c{command}" or "-c {command}" execute
1971 command */
1972 if (argv[0][argv_idx] != NUL)
1973 {
1974 if (parmp->n_commands >= MAX_ARG_CMDS)
1975 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00001976 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
1977 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001978 argv_idx = -1;
1979 break;
1980 }
1981 /*FALLTHROUGH*/
1982 case 'S': /* "-S {file}" execute Vim script */
1983 case 'i': /* "-i {viminfo}" use for viminfo */
1984#ifndef FEAT_DIFF
1985 case 'd': /* "-d {device}" device (for Amiga) */
1986#endif
1987 case 'T': /* "-T {terminal}" terminal name */
1988 case 'u': /* "-u {vimrc}" vim inits file */
1989 case 'U': /* "-U {gvimrc}" gvim inits file */
1990 case 'W': /* "-W {scriptout}" overwrite */
1991#ifdef FEAT_GUI_W32
1992 case 'P': /* "-P {parent title}" MDI parent */
1993#endif
1994 want_argument = TRUE;
1995 break;
1996
1997 default:
1998 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1999 }
2000
2001 /*
2002 * Handle option arguments with argument.
2003 */
2004 if (want_argument)
2005 {
2006 /*
2007 * Check for garbage immediately after the option letter.
2008 */
2009 if (argv[0][argv_idx] != NUL)
2010 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2011
2012 --argc;
2013 if (argc < 1 && c != 'S')
2014 mainerr_arg_missing((char_u *)argv[0]);
2015 ++argv;
2016 argv_idx = -1;
2017
2018 switch (c)
2019 {
2020 case 'c': /* "-c {command}" execute command */
2021 case 'S': /* "-S {file}" execute Vim script */
2022 if (parmp->n_commands >= MAX_ARG_CMDS)
2023 mainerr(ME_EXTRA_CMD, NULL);
2024 if (c == 'S')
2025 {
2026 char *a;
2027
2028 if (argc < 1)
2029 /* "-S" without argument: use default session file
2030 * name. */
2031 a = SESSION_FILE;
2032 else if (argv[0][0] == '-')
2033 {
2034 /* "-S" followed by another option: use default
2035 * session file name. */
2036 a = SESSION_FILE;
2037 ++argc;
2038 --argv;
2039 }
2040 else
2041 a = argv[0];
2042 p = alloc((unsigned)(STRLEN(a) + 4));
2043 if (p == NULL)
2044 mch_exit(2);
2045 sprintf((char *)p, "so %s", a);
2046 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2047 parmp->commands[parmp->n_commands++] = p;
2048 }
2049 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002050 parmp->commands[parmp->n_commands++] =
2051 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002052 break;
2053
2054 case '-': /* "--cmd {command}" execute command */
2055 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2056 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002057 parmp->pre_commands[parmp->n_pre_commands++] =
2058 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002059 break;
2060
2061 /* case 'd': -d {device} is handled in mch_check_win() for the
2062 * Amiga */
2063
2064#ifdef FEAT_QUICKFIX
2065 case 'q': /* "-q {errorfile}" QuickFix mode */
2066 parmp->use_ef = (char_u *)argv[0];
2067 break;
2068#endif
2069
2070 case 'i': /* "-i {viminfo}" use for viminfo */
2071 use_viminfo = (char_u *)argv[0];
2072 break;
2073
2074 case 's': /* "-s {scriptin}" read from script file */
2075 if (scriptin[0] != NULL)
2076 {
2077scripterror:
2078 mch_errmsg(_("Attempt to open script file again: \""));
2079 mch_errmsg(argv[-1]);
2080 mch_errmsg(" ");
2081 mch_errmsg(argv[0]);
2082 mch_errmsg("\"\n");
2083 mch_exit(2);
2084 }
2085 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2086 {
2087 mch_errmsg(_("Cannot open for reading: \""));
2088 mch_errmsg(argv[0]);
2089 mch_errmsg("\"\n");
2090 mch_exit(2);
2091 }
2092 if (save_typebuf() == FAIL)
2093 mch_exit(2); /* out of memory */
2094 break;
2095
2096 case 't': /* "-t {tag}" */
2097 parmp->tagname = (char_u *)argv[0];
2098 break;
2099
2100 case 'T': /* "-T {terminal}" terminal name */
2101 /*
2102 * The -T term argument is always available and when
2103 * HAVE_TERMLIB is supported it overrides the environment
2104 * variable TERM.
2105 */
2106#ifdef FEAT_GUI
2107 if (term_is_gui((char_u *)argv[0]))
2108 gui.starting = TRUE; /* start GUI a bit later */
2109 else
2110#endif
2111 parmp->term = (char_u *)argv[0];
2112 break;
2113
2114 case 'u': /* "-u {vimrc}" vim inits file */
2115 parmp->use_vimrc = (char_u *)argv[0];
2116 break;
2117
2118 case 'U': /* "-U {gvimrc}" gvim inits file */
2119#ifdef FEAT_GUI
2120 use_gvimrc = (char_u *)argv[0];
2121#endif
2122 break;
2123
2124 case 'w': /* "-w {nr}" 'window' value */
2125 /* "-w {scriptout}" append to script file */
2126 if (vim_isdigit(*((char_u *)argv[0])))
2127 {
2128 argv_idx = 0;
2129 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2130 set_option_value((char_u *)"window", n, NULL, 0);
2131 argv_idx = -1;
2132 break;
2133 }
2134 /*FALLTHROUGH*/
2135 case 'W': /* "-W {scriptout}" overwrite script file */
2136 if (scriptout != NULL)
2137 goto scripterror;
2138 if ((scriptout = mch_fopen(argv[0],
2139 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2140 {
2141 mch_errmsg(_("Cannot open for script output: \""));
2142 mch_errmsg(argv[0]);
2143 mch_errmsg("\"\n");
2144 mch_exit(2);
2145 }
2146 break;
2147
2148#ifdef FEAT_GUI_W32
2149 case 'P': /* "-P {parent title}" MDI parent */
2150 gui_mch_set_parent(argv[0]);
2151 break;
2152#endif
2153 }
2154 }
2155 }
2156
2157 /*
2158 * File name argument.
2159 */
2160 else
2161 {
2162 argv_idx = -1; /* skip to next argument */
2163
2164 /* Check for only one type of editing. */
2165 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2166 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2167 parmp->edit_type = EDIT_FILE;
2168
2169#ifdef MSWIN
2170 /* Remember if the argument was a full path before changing
2171 * slashes to backslashes. */
2172 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2173 parmp->full_path = TRUE;
2174#endif
2175
2176 /* Add the file to the global argument list. */
2177 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2178 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2179 mch_exit(2);
2180#ifdef FEAT_DIFF
2181 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2182 && !mch_isdir(alist_name(&GARGLIST[0])))
2183 {
2184 char_u *r;
2185
2186 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2187 if (r != NULL)
2188 {
2189 vim_free(p);
2190 p = r;
2191 }
2192 }
2193#endif
2194#if defined(__CYGWIN32__) && !defined(WIN32)
2195 /*
2196 * If vim is invoked by non-Cygwin tools, convert away any
2197 * DOS paths, so things like .swp files are created correctly.
2198 * Look for evidence of non-Cygwin paths before we bother.
2199 * This is only for when using the Unix files.
2200 */
2201 if (strpbrk(p, "\\:") != NULL)
2202 {
2203 char posix_path[PATH_MAX];
2204
2205 cygwin_conv_to_posix_path(p, posix_path);
2206 vim_free(p);
2207 p = vim_strsave(posix_path);
2208 if (p == NULL)
2209 mch_exit(2);
2210 }
2211#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002212
2213#ifdef USE_FNAME_CASE
2214 /* Make the case of the file name match the actual file. */
2215 fname_case(p, 0);
2216#endif
2217
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002218 alist_add(&global_alist, p,
2219#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
Bram Moolenaar231334e2005-07-25 20:46:57 +00002220 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002221#else
2222 2 /* add buffer number now and use curbuf */
2223#endif
2224 );
2225
2226#if defined(FEAT_MBYTE) && defined(WIN32)
2227 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002228 /* Remember this argument has been added to the argument list.
2229 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002230 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2231 parmp->diff_mode);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002232 }
2233#endif
2234 }
2235
2236 /*
2237 * If there are no more letters after the current "-", go to next
2238 * argument. argv_idx is set to -1 when the current argument is to be
2239 * skipped.
2240 */
2241 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2242 {
2243 --argc;
2244 ++argv;
2245 argv_idx = 1;
2246 }
2247 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002248
2249#ifdef FEAT_EVAL
2250 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2251 * one. */
2252 if (parmp->n_commands > 0)
2253 {
2254 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2255 if (p != NULL)
2256 {
2257 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2258 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2259 vim_free(p);
2260 }
2261 }
2262#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002263}
2264
2265/*
2266 * Print a warning if stdout is not a terminal.
2267 * When starting in Ex mode and commands come from a file, set Silent mode.
2268 */
2269 static void
2270check_tty(parmp)
2271 mparm_T *parmp;
2272{
2273 int input_isatty; /* is active input a terminal? */
2274
2275 input_isatty = mch_input_isatty();
2276 if (exmode_active)
2277 {
2278 if (!input_isatty)
2279 silent_mode = TRUE;
2280 }
2281 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2282#ifdef FEAT_GUI
2283 /* don't want the delay when started from the desktop */
2284 && !gui.starting
2285#endif
2286 )
2287 {
2288#ifdef NBDEBUG
2289 /*
2290 * This shouldn't be necessary. But if I run netbeans with the log
2291 * output coming to the console and XOpenDisplay fails, I get vim
2292 * trying to start with input/output to my console tty. This fills my
2293 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002294 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002295 */
2296 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2297 {
2298 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2299 exit(1);
2300 }
2301#endif
2302 if (!parmp->stdout_isatty)
2303 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2304 if (!input_isatty)
2305 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2306 out_flush();
2307 if (scriptin[0] == NULL)
2308 ui_delay(2000L, TRUE);
2309 TIME_MSG("Warning delay");
2310 }
2311}
2312
2313/*
2314 * Read text from stdin.
2315 */
2316 static void
2317read_stdin()
2318{
2319 int i;
2320
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002321#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002322 /* When getting the ATTENTION prompt here, use a dialog */
2323 swap_exists_action = SEA_DIALOG;
2324#endif
2325 no_wait_return = TRUE;
2326 i = msg_didany;
2327 set_buflisted(TRUE);
2328 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2329 no_wait_return = FALSE;
2330 msg_didany = i;
2331 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002332#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002333 check_swap_exists_action();
2334#endif
2335#if !(defined(AMIGA) || defined(MACOS))
2336 /*
2337 * Close stdin and dup it from stderr. Required for GPM to work
2338 * properly, and for running external commands.
2339 * Is there any other system that cannot do this?
2340 */
2341 close(0);
2342 dup(2);
2343#endif
2344}
2345
2346/*
2347 * Create the requested number of windows and edit buffers in them.
2348 * Also does recovery if "recoverymode" set.
2349 */
2350/*ARGSUSED*/
2351 static void
2352create_windows(parmp)
2353 mparm_T *parmp;
2354{
2355#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002356 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002357 int done = 0;
2358
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002359 /*
2360 * Create the number of windows that was requested.
2361 */
2362 if (parmp->window_count == -1) /* was not set */
2363 parmp->window_count = 1;
2364 if (parmp->window_count == 0)
2365 parmp->window_count = GARGCOUNT;
2366 if (parmp->window_count > 1)
2367 {
2368 /* Don't change the windows if there was a command in .vimrc that
2369 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002370 if (parmp->window_layout == 0)
2371 parmp->window_layout = WIN_HOR;
2372 if (parmp->window_layout == WIN_TABS)
2373 {
2374 parmp->window_count = make_tabpages(parmp->window_count);
2375 TIME_MSG("making tab pages");
2376 }
2377 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002378 {
2379 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002380 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002381 TIME_MSG("making windows");
2382 }
2383 else
2384 parmp->window_count = win_count();
2385 }
2386 else
2387 parmp->window_count = 1;
2388#endif
2389
2390 if (recoverymode) /* do recover */
2391 {
2392 msg_scroll = TRUE; /* scroll message up */
2393 ml_recover();
2394 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2395 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002396 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002397 }
2398 else
2399 {
2400 /*
2401 * Open a buffer for windows that don't have one yet.
2402 * Commands in the .vimrc might have loaded a file or split the window.
2403 * Watch out for autocommands that delete a window.
2404 */
2405#ifdef FEAT_AUTOCMD
2406 /*
2407 * Don't execute Win/Buf Enter/Leave autocommands here
2408 */
2409 ++autocmd_no_enter;
2410 ++autocmd_no_leave;
2411#endif
2412#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002413 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002414 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002415 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002416 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002417 {
2418 if (parmp->window_layout == WIN_TABS)
2419 goto_tabpage(1);
2420 else
2421 curwin = firstwin;
2422 }
2423 else if (parmp->window_layout == WIN_TABS)
2424 {
2425 if (curtab->tp_next == NULL)
2426 break;
2427 goto_tabpage(0);
2428 }
2429 else
2430 {
2431 if (curwin->w_next == NULL)
2432 break;
2433 curwin = curwin->w_next;
2434 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002435 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002436#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002437 curbuf = curwin->w_buffer;
2438 if (curbuf->b_ml.ml_mfp == NULL)
2439 {
2440#ifdef FEAT_FOLDING
2441 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2442 if (p_fdls >= 0)
2443 curwin->w_p_fdl = p_fdls;
2444#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002445#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002446 /* When getting the ATTENTION prompt here, use a dialog */
2447 swap_exists_action = SEA_DIALOG;
2448#endif
2449 set_buflisted(TRUE);
2450 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2451
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002452#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002453 if (swap_exists_action == SEA_QUIT)
2454 {
2455 if (got_int || only_one_window())
2456 {
2457 /* abort selected or quit and only one window */
2458 did_emsg = FALSE; /* avoid hit-enter prompt */
2459 getout(1);
2460 }
2461 /* We can't close the window, it would disturb what
2462 * happens next. Clear the file name and set the arg
2463 * index to -1 to delete it later. */
2464 setfname(curbuf, NULL, NULL, FALSE);
2465 curwin->w_arg_idx = -1;
2466 swap_exists_action = SEA_NONE;
2467 }
2468 else
2469 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002470#endif
2471#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002472 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002473#endif
2474 }
2475#ifdef FEAT_WINDOWS
2476 ui_breakcheck();
2477 if (got_int)
2478 {
2479 (void)vgetc(); /* only break the file loading, not the rest */
2480 break;
2481 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002482 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002483#endif
2484#ifdef FEAT_WINDOWS
2485 if (parmp->window_layout == WIN_TABS)
2486 goto_tabpage(1);
2487 else
2488 curwin = firstwin;
2489 curbuf = curwin->w_buffer;
2490#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002491#ifdef FEAT_AUTOCMD
2492 --autocmd_no_enter;
2493 --autocmd_no_leave;
2494#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002495 }
2496}
2497
2498#ifdef FEAT_WINDOWS
2499 /*
2500 * If opened more than one window, start editing files in the other
2501 * windows. make_windows() has already opened the windows.
2502 */
2503 static void
2504edit_buffers(parmp)
2505 mparm_T *parmp;
2506{
2507 int arg_idx; /* index in argument list */
2508 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002509 int advance = TRUE;
2510 buf_T *old_curbuf;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002511
2512# ifdef FEAT_AUTOCMD
2513 /*
2514 * Don't execute Win/Buf Enter/Leave autocommands here
2515 */
2516 ++autocmd_no_enter;
2517 ++autocmd_no_leave;
2518# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002519
2520 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2521 if (curwin->w_arg_idx == -1)
2522 {
2523 win_close(curwin, TRUE);
2524 advance = FALSE;
2525 }
2526
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002527 arg_idx = 1;
2528 for (i = 1; i < parmp->window_count; ++i)
2529 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002530 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2531 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002532 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002533 ++arg_idx;
2534 win_close(curwin, TRUE);
2535 advance = FALSE;
2536 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002537 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002538
Bram Moolenaar84212822006-11-07 21:59:47 +00002539 if (advance)
2540 {
2541 if (parmp->window_layout == WIN_TABS)
2542 {
2543 if (curtab->tp_next == NULL) /* just checking */
2544 break;
2545 goto_tabpage(0);
2546 }
2547 else
2548 {
2549 if (curwin->w_next == NULL) /* just checking */
2550 break;
2551 win_enter(curwin->w_next, FALSE);
2552 }
2553 }
2554 advance = TRUE;
2555
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002556 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002557 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002558 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2559 {
2560 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002561 /* Edit file from arg list, if there is one. When "Quit" selected
2562 * at the ATTENTION prompt close the window. */
2563 old_curbuf = curbuf;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002564 (void)do_ecmd(0, arg_idx < GARGCOUNT
2565 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2566 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
Bram Moolenaar84212822006-11-07 21:59:47 +00002567 if (curbuf == old_curbuf)
2568 {
2569 if (got_int || only_one_window())
2570 {
2571 /* abort selected or quit and only one window */
2572 did_emsg = FALSE; /* avoid hit-enter prompt */
2573 getout(1);
2574 }
2575 win_close(curwin, TRUE);
2576 advance = FALSE;
2577 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002578 if (arg_idx == GARGCOUNT - 1)
2579 arg_had_last = TRUE;
2580 ++arg_idx;
2581 }
2582 ui_breakcheck();
2583 if (got_int)
2584 {
2585 (void)vgetc(); /* only break the file loading, not the rest */
2586 break;
2587 }
2588 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002589
2590 if (parmp->window_layout == WIN_TABS)
2591 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002592# ifdef FEAT_AUTOCMD
2593 --autocmd_no_enter;
2594# endif
2595 win_enter(firstwin, FALSE); /* back to first window */
2596# ifdef FEAT_AUTOCMD
2597 --autocmd_no_leave;
2598# endif
2599 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002600 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002601 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2602}
2603#endif /* FEAT_WINDOWS */
2604
2605/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002606 * Execute the commands from --cmd arguments "cmds[cnt]".
2607 */
2608 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002609exe_pre_commands(parmp)
2610 mparm_T *parmp;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002611{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002612 char_u **cmds = parmp->pre_commands;
2613 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002614 int i;
2615
2616 if (cnt > 0)
2617 {
2618 curwin->w_cursor.lnum = 0; /* just in case.. */
2619 sourcing_name = (char_u *)_("pre-vimrc command line");
2620# ifdef FEAT_EVAL
2621 current_SID = SID_CMDARG;
2622# endif
2623 for (i = 0; i < cnt; ++i)
2624 do_cmdline_cmd(cmds[i]);
2625 sourcing_name = NULL;
2626# ifdef FEAT_EVAL
2627 current_SID = 0;
2628# endif
2629 TIME_MSG("--cmd commands");
2630 }
2631}
2632
2633/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002634 * Execute "+", "-c" and "-S" arguments.
2635 */
2636 static void
2637exe_commands(parmp)
2638 mparm_T *parmp;
2639{
2640 int i;
2641
2642 /*
2643 * We start commands on line 0, make "vim +/pat file" match a
2644 * pattern on line 1. But don't move the cursor when an autocommand
2645 * with g`" was used.
2646 */
2647 msg_scroll = TRUE;
2648 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2649 curwin->w_cursor.lnum = 0;
2650 sourcing_name = (char_u *)"command line";
2651#ifdef FEAT_EVAL
2652 current_SID = SID_CARG;
2653#endif
2654 for (i = 0; i < parmp->n_commands; ++i)
2655 {
2656 do_cmdline_cmd(parmp->commands[i]);
2657 if (parmp->cmds_tofree[i])
2658 vim_free(parmp->commands[i]);
2659 }
2660 sourcing_name = NULL;
2661#ifdef FEAT_EVAL
2662 current_SID = 0;
2663#endif
2664 if (curwin->w_cursor.lnum == 0)
2665 curwin->w_cursor.lnum = 1;
2666
2667 if (!exmode_active)
2668 msg_scroll = FALSE;
2669
2670#ifdef FEAT_QUICKFIX
2671 /* When started with "-q errorfile" jump to first error again. */
2672 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002673 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002674#endif
2675 TIME_MSG("executing command arguments");
2676}
2677
2678/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002679 * Source startup scripts.
2680 */
2681 static void
2682source_startup_scripts(parmp)
2683 mparm_T *parmp;
2684{
2685 int i;
2686
2687 /*
2688 * For "evim" source evim.vim first of all, so that the user can overrule
2689 * any things he doesn't like.
2690 */
2691 if (parmp->evim_mode)
2692 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002693 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002694 TIME_MSG("source evim file");
2695 }
2696
2697 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002698 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002699 * nothing else.
2700 */
2701 if (parmp->use_vimrc != NULL)
2702 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002703 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2704 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002705 {
2706#ifdef FEAT_GUI
2707 if (use_gvimrc == NULL) /* don't load gvimrc either */
2708 use_gvimrc = parmp->use_vimrc;
2709#endif
2710 if (parmp->use_vimrc[2] == 'N')
2711 p_lpl = FALSE; /* don't load plugins either */
2712 }
2713 else
2714 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002715 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002716 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2717 }
2718 }
2719 else if (!silent_mode)
2720 {
2721#ifdef AMIGA
2722 struct Process *proc = (struct Process *)FindTask(0L);
2723 APTR save_winptr = proc->pr_WindowPtr;
2724
2725 /* Avoid a requester here for a volume that doesn't exist. */
2726 proc->pr_WindowPtr = (APTR)-1L;
2727#endif
2728
2729 /*
2730 * Get system wide defaults, if the file name is defined.
2731 */
2732#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002733 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002734#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002735#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002736 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002737#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002738
2739 /*
2740 * Try to read initialization commands from the following places:
2741 * - environment variable VIMINIT
2742 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2743 * - second user vimrc file ($VIM/.vimrc for Dos)
2744 * - environment variable EXINIT
2745 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2746 * - second user exrc file ($VIM/.exrc for Dos)
2747 * The first that exists is used, the rest is ignored.
2748 */
2749 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2750 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002751 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002752#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002753 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2754 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002755#endif
2756#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002757 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2758 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002759#endif
2760 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002761 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002762 {
2763#ifdef USR_EXRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002764 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002765#endif
2766 }
2767 }
2768
2769 /*
2770 * Read initialization commands from ".vimrc" or ".exrc" in current
2771 * directory. This is only done if the 'exrc' option is set.
2772 * Because of security reasons we disallow shell and write commands
2773 * now, except for unix if the file is owned by the user or 'secure'
2774 * option has been reset in environment of global ".exrc" or ".vimrc".
2775 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2776 * SYS_VIMRC_FILE.
2777 */
2778 if (p_exrc)
2779 {
2780#if defined(UNIX) || defined(VMS)
2781 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2782 if (!file_owned(VIMRC_FILE))
2783#endif
2784 secure = p_secure;
2785
2786 i = FAIL;
2787 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2788 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2789#ifdef USR_VIMRC_FILE2
2790 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2791 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2792#endif
2793#ifdef USR_VIMRC_FILE3
2794 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2795 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2796#endif
2797#ifdef SYS_VIMRC_FILE
2798 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2799 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2800#endif
2801 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002802 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002803
2804 if (i == FAIL)
2805 {
2806#if defined(UNIX) || defined(VMS)
2807 /* if ".exrc" is not owned by user set 'secure' mode */
2808 if (!file_owned(EXRC_FILE))
2809 secure = p_secure;
2810 else
2811 secure = 0;
2812#endif
2813 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2814 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2815#ifdef USR_EXRC_FILE2
2816 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2817 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2818#endif
2819 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002820 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002821 }
2822 }
2823 if (secure == 2)
2824 need_wait_return = TRUE;
2825 secure = 0;
2826#ifdef AMIGA
2827 proc->pr_WindowPtr = save_winptr;
2828#endif
2829 }
2830 TIME_MSG("sourcing vimrc file(s)");
2831}
2832
2833/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002834 * Setup to start using the GUI. Exit with an error when not available.
2835 */
2836 static void
2837main_start_gui()
2838{
2839#ifdef FEAT_GUI
2840 gui.starting = TRUE; /* start GUI a bit later */
2841#else
2842 mch_errmsg(_(e_nogvim));
2843 mch_errmsg("\n");
2844 mch_exit(2);
2845#endif
2846}
2847
2848/*
Bram Moolenaar49325942007-05-10 19:19:59 +00002849 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002850 * Returns FAIL if the environment variable was not executed, OK otherwise.
2851 */
2852 int
2853process_env(env, is_viminit)
2854 char_u *env;
2855 int is_viminit; /* when TRUE, called for VIMINIT */
2856{
2857 char_u *initstr;
2858 char_u *save_sourcing_name;
2859 linenr_T save_sourcing_lnum;
2860#ifdef FEAT_EVAL
2861 scid_T save_sid;
2862#endif
2863
2864 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2865 {
2866 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002867 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002868 save_sourcing_name = sourcing_name;
2869 save_sourcing_lnum = sourcing_lnum;
2870 sourcing_name = env;
2871 sourcing_lnum = 0;
2872#ifdef FEAT_EVAL
2873 save_sid = current_SID;
2874 current_SID = SID_ENV;
2875#endif
2876 do_cmdline_cmd(initstr);
2877 sourcing_name = save_sourcing_name;
2878 sourcing_lnum = save_sourcing_lnum;
2879#ifdef FEAT_EVAL
2880 current_SID = save_sid;;
2881#endif
2882 return OK;
2883 }
2884 return FAIL;
2885}
2886
2887#if defined(UNIX) || defined(VMS)
2888/*
2889 * Return TRUE if we are certain the user owns the file "fname".
2890 * Used for ".vimrc" and ".exrc".
2891 * Use both stat() and lstat() for extra security.
2892 */
2893 static int
2894file_owned(fname)
2895 char *fname;
2896{
2897 struct stat s;
2898# ifdef UNIX
2899 uid_t uid = getuid();
2900# else /* VMS */
2901 uid_t uid = ((getgid() << 16) | getuid());
2902# endif
2903
2904 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2905# ifdef HAVE_LSTAT
2906 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2907# endif
2908 );
2909}
2910#endif
2911
2912/*
2913 * Give an error message main_errors["n"] and exit.
2914 */
2915 static void
2916mainerr(n, str)
2917 int n; /* one of the ME_ defines */
2918 char_u *str; /* extra argument or NULL */
2919{
2920#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2921 reset_signals(); /* kill us with CTRL-C here, if you like */
2922#endif
2923
2924 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002925 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002926 mch_errmsg(_(main_errors[n]));
2927 if (str != NULL)
2928 {
2929 mch_errmsg(": \"");
2930 mch_errmsg((char *)str);
2931 mch_errmsg("\"");
2932 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002933 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002934
2935 mch_exit(1);
2936}
2937
2938 void
2939mainerr_arg_missing(str)
2940 char_u *str;
2941{
2942 mainerr(ME_ARG_MISSING, str);
2943}
2944
2945/*
2946 * print a message with three spaces prepended and '\n' appended.
2947 */
2948 static void
2949main_msg(s)
2950 char *s;
2951{
2952 mch_msg(" ");
2953 mch_msg(s);
2954 mch_msg("\n");
2955}
2956
2957/*
2958 * Print messages for "vim -h" or "vim --help" and exit.
2959 */
2960 static void
2961usage()
2962{
2963 int i;
2964 static char *(use[]) =
2965 {
2966 N_("[file ..] edit specified file(s)"),
2967 N_("- read text from stdin"),
2968 N_("-t tag edit file where tag is defined"),
2969#ifdef FEAT_QUICKFIX
2970 N_("-q [errorfile] edit file with first error")
2971#endif
2972 };
2973
2974#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2975 reset_signals(); /* kill us with CTRL-C here, if you like */
2976#endif
2977
2978 mch_msg(longVersion);
2979 mch_msg(_("\n\nusage:"));
2980 for (i = 0; ; ++i)
2981 {
2982 mch_msg(_(" vim [arguments] "));
2983 mch_msg(_(use[i]));
2984 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
2985 break;
2986 mch_msg(_("\n or:"));
2987 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002988#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00002989 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002990#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002991
2992 mch_msg(_("\n\nArguments:\n"));
2993 main_msg(_("--\t\t\tOnly file names after this"));
2994#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2995 main_msg(_("--literal\t\tDon't expand wildcards"));
2996#endif
2997#ifdef FEAT_OLE
2998 main_msg(_("-register\t\tRegister this gvim for OLE"));
2999 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3000#endif
3001#ifdef FEAT_GUI
3002 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3003 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3004#endif
3005 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3006 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3007 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3008#ifdef FEAT_DIFF
3009 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3010#endif
3011 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3012 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3013 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3014 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3015 main_msg(_("-M\t\t\tModifications in text not allowed"));
3016 main_msg(_("-b\t\t\tBinary mode"));
3017#ifdef FEAT_LISP
3018 main_msg(_("-l\t\t\tLisp mode"));
3019#endif
3020 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3021 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003022 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3023#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003024 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003025#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003026 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3027 main_msg(_("-r\t\t\tList swap files and exit"));
3028 main_msg(_("-r (with file name)\tRecover crashed session"));
3029 main_msg(_("-L\t\t\tSame as -r"));
3030#ifdef AMIGA
3031 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3032 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3033#endif
3034#ifdef FEAT_ARABIC
3035 main_msg(_("-A\t\t\tstart in Arabic mode"));
3036#endif
3037#ifdef FEAT_RIGHTLEFT
3038 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3039#endif
3040#ifdef FEAT_FKMAP
3041 main_msg(_("-F\t\t\tStart in Farsi mode"));
3042#endif
3043 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3044 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3045#ifdef FEAT_GUI
3046 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3047#endif
3048 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003049#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003050 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003051 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3052 main_msg(_("-O[N]\t\tLike -o but split vertically"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003053#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003054 main_msg(_("+\t\t\tStart at end of file"));
3055 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003056 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003057 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3058 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3059 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3060 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3061 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3062#ifdef FEAT_CRYPT
3063 main_msg(_("-x\t\t\tEdit encrypted files"));
3064#endif
3065#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3066# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3067 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3068# endif
3069 main_msg(_("-X\t\t\tDo not connect to X server"));
3070#endif
3071#ifdef FEAT_CLIENTSERVER
3072 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3073 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3074 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3075 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003076# ifdef FEAT_WINDOWS
3077 main_msg(_("--remote-tab <files> As --remote but open tab page for each file"));
3078# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003079 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3080 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3081 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3082 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3083#endif
3084#ifdef FEAT_VIMINFO
3085 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3086#endif
3087 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3088 main_msg(_("--version\t\tPrint version information and exit"));
3089
3090#ifdef FEAT_GUI_X11
3091# ifdef FEAT_GUI_MOTIF
3092 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3093# else
3094# ifdef FEAT_GUI_ATHENA
3095# ifdef FEAT_GUI_NEXTAW
3096 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3097# else
3098 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3099# endif
3100# endif
3101# endif
3102 main_msg(_("-display <display>\tRun vim on <display>"));
3103 main_msg(_("-iconic\t\tStart vim iconified"));
3104# if 0
3105 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3106 mch_msg(_("\t\t\t (Unimplemented)\n"));
3107# endif
3108 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3109 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3110 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3111 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3112 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3113 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3114 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3115 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3116# ifdef FEAT_GUI_ATHENA
3117 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3118# endif
3119 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3120 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3121 main_msg(_("-xrm <resource>\tSet the specified resource"));
3122#endif /* FEAT_GUI_X11 */
3123#if defined(FEAT_GUI) && defined(RISCOS)
3124 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3125 main_msg(_("--columns <number>\tInitial width of window in columns"));
3126 main_msg(_("--rows <number>\tInitial height of window in rows"));
3127#endif
3128#ifdef FEAT_GUI_GTK
3129 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3130 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3131 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3132 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3133 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3134# ifdef HAVE_GTK2
3135 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3136# endif
3137 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3138#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003139#ifdef FEAT_GUI_W32
3140 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003141 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003142#endif
3143
3144#ifdef FEAT_GUI_GNOME
3145 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3146 if (gui.starting)
3147 mch_msg("\n");
3148 else
3149#endif
3150 mch_exit(0);
3151}
3152
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003153#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003154/*
3155 * Check the result of the ATTENTION dialog:
3156 * When "Quit" selected, exit Vim.
3157 * When "Recover" selected, recover the file.
3158 */
3159 static void
3160check_swap_exists_action()
3161{
3162 if (swap_exists_action == SEA_QUIT)
3163 getout(1);
3164 handle_swap_exists(NULL);
3165}
3166#endif
3167
3168#if defined(STARTUPTIME) || defined(PROTO)
3169static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3170
3171static struct timeval prev_timeval;
3172
3173/*
3174 * Save the previous time before doing something that could nest.
3175 * set "*tv_rel" to the time elapsed so far.
3176 */
3177 void
3178time_push(tv_rel, tv_start)
3179 void *tv_rel, *tv_start;
3180{
3181 *((struct timeval *)tv_rel) = prev_timeval;
3182 gettimeofday(&prev_timeval, NULL);
3183 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3184 - ((struct timeval *)tv_rel)->tv_usec;
3185 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3186 - ((struct timeval *)tv_rel)->tv_sec;
3187 if (((struct timeval *)tv_rel)->tv_usec < 0)
3188 {
3189 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3190 --((struct timeval *)tv_rel)->tv_sec;
3191 }
3192 *(struct timeval *)tv_start = prev_timeval;
3193}
3194
3195/*
3196 * Compute the previous time after doing something that could nest.
3197 * Subtract "*tp" from prev_timeval;
3198 * Note: The arguments are (void *) to avoid trouble with systems that don't
3199 * have struct timeval.
3200 */
3201 void
3202time_pop(tp)
3203 void *tp; /* actually (struct timeval *) */
3204{
3205 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3206 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3207 if (prev_timeval.tv_usec < 0)
3208 {
3209 prev_timeval.tv_usec += 1000000;
3210 --prev_timeval.tv_sec;
3211 }
3212}
3213
3214 static void
3215time_diff(then, now)
3216 struct timeval *then;
3217 struct timeval *now;
3218{
3219 long usec;
3220 long msec;
3221
3222 usec = now->tv_usec - then->tv_usec;
3223 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3224 usec = usec % 1000L;
3225 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3226}
3227
3228 void
3229time_msg(msg, tv_start)
3230 char *msg;
3231 void *tv_start; /* only for do_source: start time; actually
3232 (struct timeval *) */
3233{
3234 static struct timeval start;
3235 struct timeval now;
3236
3237 if (time_fd != NULL)
3238 {
3239 if (strstr(msg, "STARTING") != NULL)
3240 {
3241 gettimeofday(&start, NULL);
3242 prev_timeval = start;
3243 fprintf(time_fd, "\n\ntimes in msec\n");
3244 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3245 fprintf(time_fd, " clock elapsed: other lines\n\n");
3246 }
3247 gettimeofday(&now, NULL);
3248 time_diff(&start, &now);
3249 if (((struct timeval *)tv_start) != NULL)
3250 {
3251 fprintf(time_fd, " ");
3252 time_diff(((struct timeval *)tv_start), &now);
3253 }
3254 fprintf(time_fd, " ");
3255 time_diff(&prev_timeval, &now);
3256 prev_timeval = now;
3257 fprintf(time_fd, ": %s\n", msg);
3258 }
3259}
3260
3261# ifdef WIN3264
3262/*
3263 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3264 */
3265 int
3266gettimeofday(struct timeval *tv, char *dummy)
3267{
3268 long t = clock();
3269 tv->tv_sec = t / CLOCKS_PER_SEC;
3270 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3271 return 0;
3272}
3273# endif
3274
3275#endif
3276
3277#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3278
3279/*
3280 * Common code for the X command server and the Win32 command server.
3281 */
3282
Bram Moolenaareb94e552006-03-11 21:35:11 +00003283static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003284
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003285/*
3286 * Do the client-server stuff, unless "--servername ''" was used.
3287 */
3288 static void
3289exec_on_server(parmp)
3290 mparm_T *parmp;
3291{
3292 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3293 {
3294# ifdef WIN32
3295 /* Initialise the client/server messaging infrastructure. */
3296 serverInitMessaging();
3297# endif
3298
3299 /*
3300 * When a command server argument was found, execute it. This may
3301 * exit Vim when it was successful. Otherwise it's executed further
3302 * on. Remember the encoding used here in "serverStrEnc".
3303 */
3304 if (parmp->serverArg)
3305 {
3306 cmdsrv_main(&parmp->argc, parmp->argv,
3307 parmp->serverName_arg, &parmp->serverStr);
3308# ifdef FEAT_MBYTE
3309 parmp->serverStrEnc = vim_strsave(p_enc);
3310# endif
3311 }
3312
3313 /* If we're still running, get the name to register ourselves.
3314 * On Win32 can register right now, for X11 need to setup the
3315 * clipboard first, it's further down. */
3316 parmp->servername = serverMakeName(parmp->serverName_arg,
3317 parmp->argv[0]);
3318# ifdef WIN32
3319 if (parmp->servername != NULL)
3320 {
3321 serverSetName(parmp->servername);
3322 vim_free(parmp->servername);
3323 }
3324# endif
3325 }
3326}
3327
3328/*
3329 * Prepare for running as a Vim server.
3330 */
3331 static void
3332prepare_server(parmp)
3333 mparm_T *parmp;
3334{
3335# if defined(FEAT_X11)
3336 /*
3337 * Register for remote command execution with :serversend and --remote
3338 * unless there was a -X or a --servername '' on the command line.
3339 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003340 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003341 */
3342 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3343# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003344 (gui.in_use
3345# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003346 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003347# endif
3348 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003349# endif
3350 parmp->serverName_arg != NULL))
3351 {
3352 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3353 vim_free(parmp->servername);
3354 TIME_MSG("register server name");
3355 }
3356 else
3357 serverDelayedStartName = parmp->servername;
3358# endif
3359
3360 /*
3361 * Execute command ourselves if we're here because the send failed (or
3362 * else we would have exited above).
3363 */
3364 if (parmp->serverStr != NULL)
3365 {
3366 char_u *p;
3367
3368 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3369 parmp->serverStr, &p));
3370 vim_free(p);
3371 }
3372}
3373
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003374 static void
3375cmdsrv_main(argc, argv, serverName_arg, serverStr)
3376 int *argc;
3377 char **argv;
3378 char_u *serverName_arg;
3379 char_u **serverStr;
3380{
3381 char_u *res;
3382 int i;
3383 char_u *sname;
3384 int ret;
3385 int didone = FALSE;
3386 int exiterr = 0;
3387 char **newArgV = argv + 1;
3388 int newArgC = 1,
3389 Argc = *argc;
3390 int argtype;
3391#define ARGTYPE_OTHER 0
3392#define ARGTYPE_EDIT 1
3393#define ARGTYPE_EDIT_WAIT 2
3394#define ARGTYPE_SEND 3
3395 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003396 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003397# ifndef FEAT_X11
3398 HWND srv;
3399# else
3400 Window srv;
3401
3402 setup_term_clip();
3403# endif
3404
3405 sname = serverMakeName(serverName_arg, argv[0]);
3406 if (sname == NULL)
3407 return;
3408
3409 /*
3410 * Execute the command server related arguments and remove them
3411 * from the argc/argv array; We may have to return into main()
3412 */
3413 for (i = 1; i < Argc; i++)
3414 {
3415 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003416 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003417 {
3418 for (; i < *argc; i++)
3419 {
3420 *newArgV++ = argv[i];
3421 newArgC++;
3422 }
3423 break;
3424 }
3425
Bram Moolenaareb94e552006-03-11 21:35:11 +00003426 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003427 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003428 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3429 {
3430 char *p = argv[i] + 8;
3431
3432 argtype = ARGTYPE_EDIT;
3433 while (*p != NUL)
3434 {
3435 if (STRNICMP(p, "-wait", 5) == 0)
3436 {
3437 argtype = ARGTYPE_EDIT_WAIT;
3438 p += 5;
3439 }
3440 else if (STRNICMP(p, "-silent", 7) == 0)
3441 {
3442 silent = TRUE;
3443 p += 7;
3444 }
3445 else if (STRNICMP(p, "-tab", 4) == 0)
3446 {
3447 tabs = TRUE;
3448 p += 4;
3449 }
3450 else
3451 {
3452 argtype = ARGTYPE_OTHER;
3453 break;
3454 }
3455 }
3456 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003457 else
3458 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003459
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003460 if (argtype != ARGTYPE_OTHER)
3461 {
3462 if (i == *argc - 1)
3463 mainerr_arg_missing((char_u *)argv[i]);
3464 if (argtype == ARGTYPE_SEND)
3465 {
3466 *serverStr = (char_u *)argv[i + 1];
3467 i++;
3468 }
3469 else
3470 {
3471 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003472 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003473 if (*serverStr == NULL)
3474 {
3475 /* Probably out of memory, exit. */
3476 didone = TRUE;
3477 exiterr = 1;
3478 break;
3479 }
3480 Argc = i;
3481 }
3482# ifdef FEAT_X11
3483 if (xterm_dpy == NULL)
3484 {
3485 mch_errmsg(_("No display"));
3486 ret = -1;
3487 }
3488 else
3489 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3490 NULL, &srv, 0, 0, silent);
3491# else
3492 /* Win32 always works? */
3493 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3494# endif
3495 if (ret < 0)
3496 {
3497 if (argtype == ARGTYPE_SEND)
3498 {
3499 /* Failed to send, abort. */
3500 mch_errmsg(_(": Send failed.\n"));
3501 didone = TRUE;
3502 exiterr = 1;
3503 }
3504 else if (!silent)
3505 /* Let vim start normally. */
3506 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3507 break;
3508 }
3509
3510# ifdef FEAT_GUI_W32
3511 /* Guess that when the server name starts with "g" it's a GUI
3512 * server, which we can bring to the foreground here.
3513 * Foreground() in the server doesn't work very well. */
3514 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3515 SetForegroundWindow(srv);
3516# endif
3517
3518 /*
3519 * For --remote-wait: Wait until the server did edit each
3520 * file. Also detect that the server no longer runs.
3521 */
3522 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3523 {
3524 int numFiles = *argc - i - 1;
3525 int j;
3526 char_u *done = alloc(numFiles);
3527 char_u *p;
3528# ifdef FEAT_GUI_W32
3529 NOTIFYICONDATA ni;
3530 int count = 0;
3531 extern HWND message_window;
3532# endif
3533
3534 if (numFiles > 0 && argv[i + 1][0] == '+')
3535 /* Skip "+cmd" argument, don't wait for it to be edited. */
3536 --numFiles;
3537
3538# ifdef FEAT_GUI_W32
3539 ni.cbSize = sizeof(ni);
3540 ni.hWnd = message_window;
3541 ni.uID = 0;
3542 ni.uFlags = NIF_ICON|NIF_TIP;
3543 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3544 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3545 Shell_NotifyIcon(NIM_ADD, &ni);
3546# endif
3547
3548 /* Wait for all files to unload in remote */
3549 memset(done, 0, numFiles);
3550 while (memchr(done, 0, numFiles) != NULL)
3551 {
3552# ifdef WIN32
3553 p = serverGetReply(srv, NULL, TRUE, TRUE);
3554 if (p == NULL)
3555 break;
3556# else
3557 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3558 break;
3559# endif
3560 j = atoi((char *)p);
3561 if (j >= 0 && j < numFiles)
3562 {
3563# ifdef FEAT_GUI_W32
3564 ++count;
3565 sprintf(ni.szTip, _("%d of %d edited"),
3566 count, numFiles);
3567 Shell_NotifyIcon(NIM_MODIFY, &ni);
3568# endif
3569 done[j] = 1;
3570 }
3571 }
3572# ifdef FEAT_GUI_W32
3573 Shell_NotifyIcon(NIM_DELETE, &ni);
3574# endif
3575 }
3576 }
3577 else if (STRICMP(argv[i], "--remote-expr") == 0)
3578 {
3579 if (i == *argc - 1)
3580 mainerr_arg_missing((char_u *)argv[i]);
3581# ifdef WIN32
3582 /* Win32 always works? */
3583 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3584 &res, NULL, 1, FALSE) < 0)
3585# else
3586 if (xterm_dpy == NULL)
3587 mch_errmsg(_("No display: Send expression failed.\n"));
3588 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3589 &res, NULL, 1, 1, FALSE) < 0)
3590# endif
3591 {
3592 if (res != NULL && *res != NUL)
3593 {
3594 /* Output error from remote */
3595 mch_errmsg((char *)res);
3596 vim_free(res);
3597 res = NULL;
3598 }
3599 mch_errmsg(_(": Send expression failed.\n"));
3600 }
3601 }
3602 else if (STRICMP(argv[i], "--serverlist") == 0)
3603 {
3604# ifdef WIN32
3605 /* Win32 always works? */
3606 res = serverGetVimNames();
3607# else
3608 if (xterm_dpy != NULL)
3609 res = serverGetVimNames(xterm_dpy);
3610# endif
3611 if (called_emsg)
3612 mch_errmsg("\n");
3613 }
3614 else if (STRICMP(argv[i], "--servername") == 0)
3615 {
3616 /* Alredy processed. Take it out of the command line */
3617 i++;
3618 continue;
3619 }
3620 else
3621 {
3622 *newArgV++ = argv[i];
3623 newArgC++;
3624 continue;
3625 }
3626 didone = TRUE;
3627 if (res != NULL && *res != NUL)
3628 {
3629 mch_msg((char *)res);
3630 if (res[STRLEN(res) - 1] != '\n')
3631 mch_msg("\n");
3632 }
3633 vim_free(res);
3634 }
3635
3636 if (didone)
3637 {
3638 display_errors(); /* display any collected messages */
3639 exit(exiterr); /* Mission accomplished - get out */
3640 }
3641
3642 /* Return back into main() */
3643 *argc = newArgC;
3644 vim_free(sname);
3645}
3646
3647/*
3648 * Build a ":drop" command to send to a Vim server.
3649 */
3650 static char_u *
Bram Moolenaareb94e552006-03-11 21:35:11 +00003651build_drop_cmd(filec, filev, tabs, sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003652 int filec;
3653 char **filev;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003654 int tabs; /* Use ":tab drop" instead of ":drop". */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003655 int sendReply;
3656{
3657 garray_T ga;
3658 int i;
3659 char_u *inicmd = NULL;
3660 char_u *p;
3661 char_u cwd[MAXPATHL];
3662
3663 if (filec > 0 && filev[0][0] == '+')
3664 {
3665 inicmd = (char_u *)filev[0] + 1;
3666 filev++;
3667 filec--;
3668 }
3669 /* Check if we have at least one argument. */
3670 if (filec <= 0)
3671 mainerr_arg_missing((char_u *)filev[-1]);
3672 if (mch_dirname(cwd, MAXPATHL) != OK)
3673 return NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00003674 if ((p = vim_strsave_escaped_ext(cwd, PATH_ESC_CHARS, '\\', TRUE)) == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003675 return NULL;
3676 ga_init2(&ga, 1, 100);
3677 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3678 ga_concat(&ga, p);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003679 vim_free(p);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003680
3681 /* Call inputsave() so that a prompt for an encryption key works. */
3682 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3683 if (tabs)
3684 ga_concat(&ga, (char_u *)"tab ");
3685 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003686 for (i = 0; i < filec; i++)
3687 {
3688 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003689 * do it again in the Vim server. On MS-Windows only escape
3690 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003691 p = vim_strsave_escaped((char_u *)filev[i],
3692#ifdef UNIX
3693 PATH_ESC_CHARS
3694#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003695 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003696#endif
3697 );
3698 if (p == NULL)
3699 {
3700 vim_free(ga.ga_data);
3701 return NULL;
3702 }
3703 ga_concat(&ga, (char_u *)" ");
3704 ga_concat(&ga, p);
3705 vim_free(p);
3706 }
3707 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3708 * CTRL-\ CTRL-N again. */
3709 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3710 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3711 if (sendReply)
3712 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3713 ga_concat(&ga, (char_u *)"<CR>:");
3714 if (inicmd != NULL)
3715 {
3716 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3717 * the following commands to be inserted as text. Use a "|",
3718 * hopefully "inicmd" does allow this... */
3719 ga_concat(&ga, inicmd);
3720 ga_concat(&ga, (char_u *)"|");
3721 }
3722 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3723 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00003724 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003725 ga_append(&ga, NUL);
3726 return ga.ga_data;
3727}
3728
3729/*
3730 * Replace termcodes such as <CR> and insert as key presses if there is room.
3731 */
3732 void
3733server_to_input_buf(str)
3734 char_u *str;
3735{
3736 char_u *ptr = NULL;
3737 char_u *cpo_save = p_cpo;
3738
3739 /* Set 'cpoptions' the way we want it.
3740 * B set - backslashes are *not* treated specially
3741 * k set - keycodes are *not* reverse-engineered
3742 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003743 * The last but one parameter of replace_termcodes() is TRUE so that the
3744 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003745 */
3746 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003747 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003748 p_cpo = cpo_save;
3749
3750 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3751 {
3752 /*
3753 * Add the string to the input stream.
3754 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3755 *
3756 * First clear typed characters from the typeahead buffer, there could
3757 * be half a mapping there. Then append to the existing string, so
3758 * that multiple commands from a client are concatenated.
3759 */
3760 if (typebuf.tb_maplen < typebuf.tb_len)
3761 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3762 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3763
3764 /* Let input_available() know we inserted text in the typeahead
3765 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003766 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003767 }
3768 vim_free((char_u *)ptr);
3769}
3770
3771/*
3772 * Evaluate an expression that the client sent to a string.
3773 * Handles disabling error messages and disables debugging, otherwise Vim
3774 * hangs, waiting for "cont" to be typed.
3775 */
3776 char_u *
3777eval_client_expr_to_string(expr)
3778 char_u *expr;
3779{
3780 char_u *res;
3781 int save_dbl = debug_break_level;
3782 int save_ro = redir_off;
3783
3784 debug_break_level = -1;
3785 redir_off = 0;
3786 ++emsg_skip;
3787
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003788 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003789
3790 debug_break_level = save_dbl;
3791 redir_off = save_ro;
3792 --emsg_skip;
3793
Bram Moolenaar63a121b2005-12-11 21:36:39 +00003794 /* A client can tell us to redraw, but not to display the cursor, so do
3795 * that here. */
3796 setcursor();
3797 out_flush();
3798#ifdef FEAT_GUI
3799 if (gui.in_use)
3800 gui_update_cursor(FALSE, FALSE);
3801#endif
3802
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003803 return res;
3804}
3805
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003806/*
3807 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3808 * return an allocated string. Otherwise return "data".
3809 * "*tofree" is set to the result when it needs to be freed later.
3810 */
3811/*ARGSUSED*/
3812 char_u *
3813serverConvert(client_enc, data, tofree)
3814 char_u *client_enc;
3815 char_u *data;
3816 char_u **tofree;
3817{
3818 char_u *res = data;
3819
3820 *tofree = NULL;
3821# ifdef FEAT_MBYTE
3822 if (client_enc != NULL && p_enc != NULL)
3823 {
3824 vimconv_T vimconv;
3825
3826 vimconv.vc_type = CONV_NONE;
3827 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3828 && vimconv.vc_type != CONV_NONE)
3829 {
3830 res = string_convert(&vimconv, data, NULL);
3831 if (res == NULL)
3832 res = data;
3833 else
3834 *tofree = res;
3835 }
3836 convert_setup(&vimconv, NULL, NULL);
3837 }
3838# endif
3839 return res;
3840}
3841
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003842
3843/*
3844 * Make our basic server name: use the specified "arg" if given, otherwise use
3845 * the tail of the command "cmd" we were started with.
3846 * Return the name in allocated memory. This doesn't include a serial number.
3847 */
3848 static char_u *
3849serverMakeName(arg, cmd)
3850 char_u *arg;
3851 char *cmd;
3852{
3853 char_u *p;
3854
3855 if (arg != NULL && *arg != NUL)
3856 p = vim_strsave_up(arg);
3857 else
3858 {
3859 p = vim_strsave_up(gettail((char_u *)cmd));
3860 /* Remove .exe or .bat from the name. */
3861 if (p != NULL && vim_strchr(p, '.') != NULL)
3862 *vim_strchr(p, '.') = NUL;
3863 }
3864 return p;
3865}
3866#endif /* FEAT_CLIENTSERVER */
3867
3868/*
3869 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3870 */
3871#if defined(FEAT_FKMAP) || defined(PROTO)
3872# include "farsi.c"
3873#endif
3874
3875/*
3876 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3877 */
3878#if defined(FEAT_ARABIC) || defined(PROTO)
3879# include "arabic.c"
3880#endif