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