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