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