blob: 0fc59412cdbd7e3abd7447c0042f4d78adb10f5b [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
Bram Moolenaarc236c162008-07-13 17:41:49 +000010#if defined(MSDOS) || defined(WIN16) || 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
Bram Moolenaarb4210b32004-06-13 14:51:16 +000021#ifdef __CYGWIN__
22# ifndef WIN32
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000023# include <cygwin/version.h>
24# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
25 * cygwin_conv_path() */
Bram Moolenaarb4210b32004-06-13 14:51:16 +000026# endif
27# include <limits.h>
28#endif
29
Bram Moolenaarc013cb62005-07-24 21:18:31 +000030/* Maximum number of commands from + or -c arguments. */
31#define MAX_ARG_CMDS 10
32
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000033/* values for "window_layout" */
34#define WIN_HOR 1 /* "-o" horizontally split windows */
35#define WIN_VER 2 /* "-O" vertically split windows */
36#define WIN_TABS 3 /* "-p" windows on tab pages */
37
Bram Moolenaar58d98232005-07-23 22:25:46 +000038/* Struct for various parameters passed between main() and other functions. */
39typedef struct
40{
Bram Moolenaarc013cb62005-07-24 21:18:31 +000041 int argc;
42 char **argv;
43
44 int evim_mode; /* started as "evim" */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000045 char_u *use_vimrc; /* vimrc from -u argument */
46
47 int n_commands; /* no. of commands from + or -c */
48 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
49 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
50 int n_pre_commands; /* no. of commands from --cmd */
51 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
52
53 int edit_type; /* type of editing to do */
54 char_u *tagname; /* tag from -t argument */
55#ifdef FEAT_QUICKFIX
56 char_u *use_ef; /* 'errorfile' from -q argument */
57#endif
58
59 int want_full_screen;
60 int stdout_isatty; /* is stdout a terminal? */
61 char_u *term; /* specified terminal name */
62#ifdef FEAT_CRYPT
63 int ask_for_key; /* -x argument */
64#endif
65 int no_swap_file; /* "-n" argument used */
66#ifdef FEAT_EVAL
67 int use_debug_break_level;
68#endif
69#ifdef FEAT_WINDOWS
70 int window_count; /* number of windows to use */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000071 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000072#endif
73
74#ifdef FEAT_CLIENTSERVER
Bram Moolenaar58d98232005-07-23 22:25:46 +000075 int serverArg; /* TRUE when argument for a server */
76 char_u *serverName_arg; /* cmdline arg for server name */
Bram Moolenaarc013cb62005-07-24 21:18:31 +000077 char_u *serverStr; /* remote server command */
78 char_u *serverStrEnc; /* encoding of serverStr */
79 char_u *servername; /* allocated name for our server */
80#endif
81#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
82 int literal; /* don't expand file names */
83#endif
84#ifdef MSWIN
85 int full_path; /* file name argument was full path */
86#endif
87#ifdef FEAT_DIFF
88 int diff_mode; /* start with 'diff' set */
89#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +000090} mparm_T;
91
Bram Moolenaarc013cb62005-07-24 21:18:31 +000092/* Values for edit_type. */
93#define EDIT_NONE 0 /* no edit type yet */
94#define EDIT_FILE 1 /* file name argument[s] given, use argument list */
95#define EDIT_STDIN 2 /* read file from stdin */
96#define EDIT_TAG 3 /* tag name argument given, use tagname */
97#define EDIT_QF 4 /* start in quickfix mode */
98
Bram Moolenaarb4210b32004-06-13 14:51:16 +000099#if defined(UNIX) || defined(VMS)
100static int file_owned __ARGS((char *fname));
101#endif
102static void mainerr __ARGS((int, char_u *));
103static void main_msg __ARGS((char *s));
104static void usage __ARGS((void));
105static int get_number_arg __ARGS((char_u *p, int *idx, int def));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000106#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
107static void init_locale __ARGS((void));
108#endif
109static void parse_command_name __ARGS((mparm_T *parmp));
110static void early_arg_scan __ARGS((mparm_T *parmp));
111static void command_line_scan __ARGS((mparm_T *parmp));
112static void check_tty __ARGS((mparm_T *parmp));
113static void read_stdin __ARGS((void));
114static void create_windows __ARGS((mparm_T *parmp));
115#ifdef FEAT_WINDOWS
116static void edit_buffers __ARGS((mparm_T *parmp));
117#endif
118static void exe_pre_commands __ARGS((mparm_T *parmp));
119static void exe_commands __ARGS((mparm_T *parmp));
Bram Moolenaar58d98232005-07-23 22:25:46 +0000120static void source_startup_scripts __ARGS((mparm_T *parmp));
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000121static void main_start_gui __ARGS((void));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +0000122#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000123static void check_swap_exists_action __ARGS((void));
124#endif
125#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000126static void exec_on_server __ARGS((mparm_T *parmp));
127static void prepare_server __ARGS((mparm_T *parmp));
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000128static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
129static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
130#endif
131
132
133#ifdef STARTUPTIME
134static FILE *time_fd = NULL;
135#endif
136
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000137/*
138 * Different types of error messages.
139 */
140static char *(main_errors[]) =
141{
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000142 N_("Unknown option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000143#define ME_UNKNOWN_OPTION 0
144 N_("Too many edit arguments"),
145#define ME_TOO_MANY_ARGS 1
146 N_("Argument missing after"),
147#define ME_ARG_MISSING 2
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000148 N_("Garbage after option argument"),
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000149#define ME_GARBAGE 3
150 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
151#define ME_EXTRA_CMD 4
152 N_("Invalid argument for"),
153#define ME_INVALID_ARG 5
154};
155
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000156#ifndef PROTO /* don't want a prototype for main() */
157 int
158# ifdef VIMDLL
159_export
160# endif
161# ifdef FEAT_GUI_MSWIN
162# ifdef __BORLANDC__
163_cdecl
164# endif
165VimMain
166# else
167main
168# endif
169(argc, argv)
170 int argc;
171 char **argv;
172{
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000173 char_u *fname = NULL; /* file name from command line */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000174 mparm_T params; /* various parameters passed between
175 * main() and other functions. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000176
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000177 /*
178 * Do any system-specific initialisations. These can NOT use IObuff or
179 * NameBuff. Thus emsg2() cannot be called!
180 */
181 mch_early_init();
182
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000183 /* Many variables are in "params" so that we can pass them to invoked
184 * functions without a lot of arguments. "argc" and "argv" are also
185 * copied, so that they can be changed. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000186 vim_memset(&params, 0, sizeof(params));
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000187 params.argc = argc;
188 params.argv = argv;
189 params.want_full_screen = TRUE;
190#ifdef FEAT_EVAL
191 params.use_debug_break_level = -1;
192#endif
193#ifdef FEAT_WINDOWS
194 params.window_count = -1;
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000195#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +0000196
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000197#ifdef FEAT_TCL
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000198 vim_tcl_init(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000199#endif
200
201#ifdef MEM_PROFILE
202 atexit(vim_mem_profile_dump);
203#endif
204
205#ifdef STARTUPTIME
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000206 time_fd = mch_fopen(STARTUPTIME, "a");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000207 TIME_MSG("--- VIM STARTING ---");
208#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +0000209 starttime = time(NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000210
211#ifdef __EMX__
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000212 _wildcard(&params.argc, &params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000213#endif
214
215#ifdef FEAT_MBYTE
216 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
217#endif
Bram Moolenaardcaf10e2005-01-21 11:55:25 +0000218#ifdef FEAT_EVAL
219 eval_init(); /* init global variables */
220#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000221
222#ifdef __QNXNTO__
223 qnx_init(); /* PhAttach() for clipboard, (and gui) */
224#endif
225
226#ifdef MAC_OS_CLASSIC
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000227 /* Prepare for possibly starting GUI sometime */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000228 /* Macintosh needs this before any memory is allocated. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000229 gui_prepare(&params.argc, params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000230 TIME_MSG("GUI prepared");
231#endif
232
233 /* Init the table of Normal mode commands. */
234 init_normal_cmds();
235
236#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
Bram Moolenaar58d98232005-07-23 22:25:46 +0000237 make_version(); /* Construct the long version string. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000238#endif
239
240 /*
241 * Allocate space for the generic buffers (needed for set_init_1() and
242 * EMSG2()).
243 */
244 if ((IObuff = alloc(IOSIZE)) == NULL
245 || (NameBuff = alloc(MAXPATHL)) == NULL)
246 mch_exit(0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000247 TIME_MSG("Allocated generic buffers");
248
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000249#ifdef NBDEBUG
250 /* Wait a moment for debugging NetBeans. Must be after allocating
251 * NameBuff. */
252 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
253 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000254 TIME_MSG("NetBeans debug wait");
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000255#endif
256
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000257#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
258 /*
259 * Setup to use the current locale (for ctype() and many other things).
260 * NOTE: Translated messages with encodings other than latin1 will not
261 * work until set_init_1() has been called!
262 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000263 init_locale();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000264 TIME_MSG("locale set");
265#endif
266
267#ifdef FEAT_GUI
268 gui.dofork = TRUE; /* default is to use fork() */
269#endif
270
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000271 /*
Bram Moolenaar58d98232005-07-23 22:25:46 +0000272 * Do a first scan of the arguments in "argv[]":
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000273 * -display or --display
Bram Moolenaar58d98232005-07-23 22:25:46 +0000274 * --server...
275 * --socketid
Bram Moolenaar78e17622007-08-30 10:26:19 +0000276 * --windowid
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000277 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000278 early_arg_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000279
280#ifdef FEAT_SUN_WORKSHOP
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000281 findYourself(params.argv[0]);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000282#endif
283#if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000284 /* Prepare for possibly starting GUI sometime */
285 gui_prepare(&params.argc, params.argv);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000286 TIME_MSG("GUI prepared");
287#endif
288
289#ifdef FEAT_CLIPBOARD
290 clip_init(FALSE); /* Initialise clipboard stuff */
291 TIME_MSG("clipboard setup");
292#endif
293
294 /*
295 * Check if we have an interactive window.
296 * On the Amiga: If there is no window, we open one with a newcli command
297 * (needed for :! to * work). mch_check_win() will also handle the -d or
298 * -dev argument.
299 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000300 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000301 TIME_MSG("window checked");
302
303 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000304 * Allocate the first window and buffer.
305 * Can't do anything without it, exit when it fails.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000306 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000307 if (win_alloc_first() == FAIL)
308 mch_exit(0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000309
310 init_yank(); /* init yank buffers */
311
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000312 alist_init(&global_alist); /* Init the argument list to empty. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000313
314 /*
315 * Set the default values for the options.
316 * NOTE: Non-latin1 translated messages are working only after this,
317 * because this is where "has_mbyte" will be set, which is used by
318 * msg_outtrans_len_attr().
319 * First find out the home directory, needed to expand "~" in options.
320 */
321 init_homedir(); /* find real value of $HOME */
322 set_init_1();
323 TIME_MSG("inits 1");
324
325#ifdef FEAT_EVAL
326 set_lang_var(); /* set v:lang and v:ctype */
327#endif
328
329#ifdef FEAT_CLIENTSERVER
330 /*
331 * Do the client-server stuff, unless "--servername ''" was used.
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000332 * This may exit Vim if the command was sent to the server.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000333 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000334 exec_on_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000335#endif
336
337 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000338 * Figure out the way to work from the command name argv[0].
339 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000340 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000341 parse_command_name(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000342
343 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000344 * Process the command line arguments. File names are put in the global
345 * argument list "global_alist".
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000346 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000347 command_line_scan(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000348 TIME_MSG("parsing arguments");
349
350 /*
351 * On some systems, when we compile with the GUI, we always use it. On Mac
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000352 * there is no terminal version, and on Windows we can't fork one off with
353 * :gui.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000354 */
355#ifdef ALWAYS_USE_GUI
356 gui.starting = TRUE;
357#else
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000358# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000359 /*
360 * Check if the GUI can be started. Reset gui.starting if not.
361 * Don't know about other systems, stay on the safe side and don't check.
362 */
363 if (gui.starting && gui_init_check() == FAIL)
364 {
365 gui.starting = FALSE;
366
367 /* When running "evim" or "gvim -y" we need the menus, exit if we
368 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000369 if (params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000370 mch_exit(1);
371 }
372# endif
373#endif
374
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000375 if (GARGCOUNT > 0)
376 {
377#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
378 /*
379 * Expand wildcards in file names.
380 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000381 if (!params.literal)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000382 {
383 /* Temporarily add '(' and ')' to 'isfname'. These are valid
384 * filename characters but are excluded from 'isfname' to make
385 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
386 do_cmdline_cmd((char_u *)":set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +0000387 alist_expand(NULL, 0);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000388 do_cmdline_cmd((char_u *)":set isf&");
389 }
390#endif
391 fname = alist_name(&GARGLIST[0]);
392 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000393
394#if defined(WIN32) && defined(FEAT_MBYTE)
395 {
396 extern void set_alist_count(void);
397
398 /* Remember the number of entries in the argument list. If it changes
399 * we don't react on setting 'encoding'. */
400 set_alist_count();
401 }
402#endif
403
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000404#ifdef MSWIN
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000405 if (GARGCOUNT == 1 && params.full_path)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000406 {
407 /*
408 * If there is one filename, fully qualified, we have very probably
409 * been invoked from explorer, so change to the file's directory.
410 * Hint: to avoid this when typing a command use a forward slash.
411 * If the cd fails, it doesn't matter.
412 */
413 (void)vim_chdirfile(fname);
414 }
415#endif
416 TIME_MSG("expanding arguments");
417
418#ifdef FEAT_DIFF
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000419 if (params.diff_mode && params.window_count == -1)
420 params.window_count = 0; /* open up to 3 windows */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000421#endif
422
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000423 /* Don't redraw until much later. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000424 ++RedrawingDisabled;
425
426 /*
427 * When listing swap file names, don't do cursor positioning et. al.
428 */
429 if (recoverymode && fname == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000430 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000431
432 /*
433 * When certain to start the GUI, don't check capabilities of terminal.
434 * For GTK we can't be sure, but when started from the desktop it doesn't
435 * make sense to try using a terminal.
436 */
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000437#if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000438 if (gui.starting
439# ifdef FEAT_GUI_GTK
440 && !isatty(2)
441# endif
442 )
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000443 params.want_full_screen = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000444#endif
445
446#if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
447 /* When the GUI is started from Finder, need to display messages in a
448 * message box. isatty(2) returns TRUE anyway, thus we need to check the
449 * name to know we're not started from a terminal. */
450 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000451 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000452 params.want_full_screen = FALSE;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000453
454 /* Avoid always using "/" as the current directory. Note that when
455 * started from Finder the arglist will be filled later in
456 * HandleODocAE() and "fname" will be NULL. */
457 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
458 && STRCMP(NameBuff, "/") == 0)
459 {
460 if (fname != NULL)
461 (void)vim_chdirfile(fname);
462 else
463 {
464 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
465 vim_chdir(NameBuff);
466 }
467 }
468 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000469#endif
470
471 /*
472 * mch_init() sets up the terminal (window) for use. This must be
473 * done after resetting full_screen, otherwise it may move the cursor
474 * (MSDOS).
475 * Note that we may use mch_exit() before mch_init()!
476 */
477 mch_init();
478 TIME_MSG("shell init");
479
480#ifdef USE_XSMP
481 /*
482 * For want of anywhere else to do it, try to connect to xsmp here.
483 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
484 * Hijacking -X 'no X connection' to also disable XSMP connection as that
485 * has a similar delay upon failure.
486 * Only try if SESSION_MANAGER is set to something non-null.
487 */
488 if (!x_no_connect)
489 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000490 char *p = getenv("SESSION_MANAGER");
491
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000492 if (p != NULL && *p != NUL)
493 {
494 xsmp_init();
495 TIME_MSG("xsmp init");
496 }
497 }
498#endif
499
500 /*
501 * Print a warning if stdout is not a terminal.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000502 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000503 check_tty(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000504
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000505 /* This message comes before term inits, but after setting "silent_mode"
506 * when the input is not a tty. */
507 if (GARGCOUNT > 1 && !silent_mode)
508 printf(_("%d files to edit\n"), GARGCOUNT);
509
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000510 if (params.want_full_screen && !silent_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000511 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000512 termcapinit(params.term); /* set terminal name and get terminal
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000513 capabilities (will set full_screen) */
514 screen_start(); /* don't know where cursor is now */
515 TIME_MSG("Termcap init");
516 }
517
518 /*
519 * Set the default values for the options that use Rows and Columns.
520 */
521 ui_get_shellsize(); /* inits Rows and Columns */
522#ifdef FEAT_NETBEANS_INTG
523 if (usingNetbeans)
524 Columns += 2; /* leave room for glyph gutter */
525#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000526 win_init_size();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000527#ifdef FEAT_DIFF
528 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
529 * file. There is no buffer yet though. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000530 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000531 diff_win_options(firstwin, FALSE);
532#endif
533
534 cmdline_row = Rows - p_ch;
535 msg_row = cmdline_row;
536 screenalloc(FALSE); /* allocate screen buffers */
537 set_init_2();
538 TIME_MSG("inits 2");
539
540 msg_scroll = TRUE;
541 no_wait_return = TRUE;
542
543 init_mappings(); /* set up initial mappings */
544
545 init_highlight(TRUE, FALSE); /* set the default highlight groups */
546 TIME_MSG("init highlight");
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000547
548#ifdef FEAT_EVAL
549 /* Set the break level after the terminal is initialized. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000550 debug_break_level = params.use_debug_break_level;
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000551#endif
552
Bram Moolenaar58d98232005-07-23 22:25:46 +0000553 /* Execute --cmd arguments. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000554 exe_pre_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000555
Bram Moolenaar58d98232005-07-23 22:25:46 +0000556 /* Source startup scripts. */
557 source_startup_scripts(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000558
559#ifdef FEAT_EVAL
560 /*
561 * Read all the plugin files.
562 * Only when compiled with +eval, since most plugins need it.
563 */
564 if (p_lpl)
565 {
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000566# ifdef VMS /* Somehow VMS doesn't handle the "**". */
567 source_runtime((char_u *)"plugin/*.vim", TRUE);
568# else
Bram Moolenaar07d4d732005-10-03 22:04:08 +0000569 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
Bram Moolenaarc1cb78c2006-06-20 16:51:47 +0000570# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000571 TIME_MSG("loading plugins");
572 }
573#endif
574
Bram Moolenaar27dc1952006-03-15 23:06:44 +0000575#ifdef FEAT_DIFF
576 /* Decide about window layout for diff mode after reading vimrc. */
577 if (params.diff_mode && params.window_layout == 0)
578 {
579 if (diffopt_horizontal())
580 params.window_layout = WIN_HOR; /* use horizontal split */
581 else
582 params.window_layout = WIN_VER; /* use vertical split */
583 }
584#endif
585
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000586 /*
587 * Recovery mode without a file name: List swap files.
588 * This uses the 'dir' option, therefore it must be after the
589 * initializations.
590 */
591 if (recoverymode && fname == NULL)
592 {
593 recover_names(NULL, TRUE, 0);
594 mch_exit(0);
595 }
596
597 /*
598 * Set a few option defaults after reading .vimrc files:
599 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
600 */
601 set_init_3();
602 TIME_MSG("inits 3");
603
604 /*
605 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
606 * Note that this overrides anything from a vimrc file.
607 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000608 if (params.no_swap_file)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000609 p_uc = 0;
610
611#ifdef FEAT_FKMAP
612 if (curwin->w_p_rl && p_altkeymap)
613 {
614 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
615# ifdef FEAT_ARABIC
616 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
617# endif
618 p_fkmap = TRUE; /* Set the Farsi keymap mode */
619 }
620#endif
621
622#ifdef FEAT_GUI
623 if (gui.starting)
624 {
625#if defined(UNIX) || defined(VMS)
626 /* When something caused a message from a vimrc script, need to output
627 * an extra newline before the shell prompt. */
628 if (did_emsg || msg_didout)
629 putchar('\n');
630#endif
631
632 gui_start(); /* will set full_screen to TRUE */
633 TIME_MSG("starting GUI");
634
635 /* When running "evim" or "gvim -y" we need the menus, exit if we
636 * don't have them. */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000637 if (!gui.in_use && params.evim_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000638 mch_exit(1);
639 }
640#endif
641
642#ifdef SPAWNO /* special MSDOS swapping library */
643 init_SPAWNO("", SWAP_ANY);
644#endif
645
646#ifdef FEAT_VIMINFO
647 /*
648 * Read in registers, history etc, but not marks, from the viminfo file
649 */
650 if (*p_viminfo != NUL)
651 {
652 read_viminfo(NULL, TRUE, FALSE, FALSE);
653 TIME_MSG("reading viminfo");
654 }
655#endif
656
657#ifdef FEAT_QUICKFIX
658 /*
659 * "-q errorfile": Load the error file now.
660 * If the error file can't be read, exit before doing anything else.
661 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000662 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000663 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000664 if (params.use_ef != NULL)
665 set_string_option_direct((char_u *)"ef", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000666 params.use_ef, OPT_FREE, SID_CARG);
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000667 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000668 {
669 out_char('\n');
670 mch_exit(3);
671 }
672 TIME_MSG("reading errorfile");
673 }
674#endif
675
676 /*
677 * Start putting things on the screen.
678 * Scroll screen down before drawing over it
679 * Clear screen now, so file message will not be cleared.
680 */
681 starting = NO_BUFFERS;
682 no_wait_return = FALSE;
683 if (!exmode_active)
684 msg_scroll = FALSE;
685
686#ifdef FEAT_GUI
687 /*
688 * This seems to be required to make callbacks to be called now, instead
689 * of after things have been put on the screen, which then may be deleted
690 * when getting a resize callback.
691 * For the Mac this handles putting files dropped on the Vim icon to
692 * global_alist.
693 */
694 if (gui.in_use)
695 {
696# ifdef FEAT_SUN_WORKSHOP
697 if (!usingSunWorkShop)
698# endif
699 gui_wait_for_chars(50L);
700 TIME_MSG("GUI delay");
701 }
702#endif
703
704#if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
705 qnx_clip_init();
706#endif
707
708#ifdef FEAT_XCLIPBOARD
709 /* Start using the X clipboard, unless the GUI was started. */
710# ifdef FEAT_GUI
711 if (!gui.in_use)
712# endif
713 {
714 setup_term_clip();
715 TIME_MSG("setup clipboard");
716 }
717#endif
718
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000719#ifdef FEAT_CLIENTSERVER
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000720 /* Prepare for being a Vim server. */
721 prepare_server(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000722#endif
723
724 /*
725 * If "-" argument given: Read file from stdin.
726 * Do this before starting Raw mode, because it may change things that the
727 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
728 * are the same terminal: "cat | vim -".
729 * Using autocommands here may cause trouble...
730 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000731 if (params.edit_type == EDIT_STDIN && !recoverymode)
732 read_stdin();
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000733
734#if defined(UNIX) || defined(VMS)
735 /* When switching screens and something caused a message from a vimrc
736 * script, need to output an extra newline on exit. */
737 if ((did_emsg || msg_didout) && *T_TI != NUL)
738 newline_on_exit = TRUE;
739#endif
740
741 /*
742 * When done something that is not allowed or error message call
743 * wait_return. This must be done before starttermcap(), because it may
744 * switch to another screen. It must be done after settmode(TMODE_RAW),
745 * because we want to react on a single key stroke.
746 * Call settmode and starttermcap here, so the T_KS and T_TI may be
Bram Moolenaar49325942007-05-10 19:19:59 +0000747 * defined by termcapinit and redefined in .exrc.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000748 */
749 settmode(TMODE_RAW);
750 TIME_MSG("setting raw mode");
751
752 if (need_wait_return || msg_didany)
753 {
754 wait_return(TRUE);
755 TIME_MSG("waiting for return");
756 }
757
758 starttermcap(); /* start termcap if not done by wait_return() */
759 TIME_MSG("start termcap");
760
761#ifdef FEAT_MOUSE
762 setmouse(); /* may start using the mouse */
763#endif
764 if (scroll_region)
765 scroll_region_reset(); /* In case Rows changed */
Bram Moolenaar58d98232005-07-23 22:25:46 +0000766 scroll_start(); /* may scroll the screen to the right position */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000767
768 /*
769 * Don't clear the screen when starting in Ex mode, unless using the GUI.
770 */
771 if (exmode_active
772#ifdef FEAT_GUI
773 && !gui.in_use
774#endif
775 )
776 must_redraw = CLEAR;
777 else
778 {
779 screenclear(); /* clear screen */
780 TIME_MSG("clearing screen");
781 }
782
783#ifdef FEAT_CRYPT
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000784 if (params.ask_for_key)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000785 {
786 (void)get_crypt_key(TRUE, TRUE);
787 TIME_MSG("getting crypt key");
788 }
789#endif
790
791 no_wait_return = TRUE;
792
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000793 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000794 * Create the requested number of windows and edit buffers in them.
795 * Also does recovery if "recoverymode" set.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000796 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000797 create_windows(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000798 TIME_MSG("opening buffers");
799
Bram Moolenaar867a4b72007-03-18 20:51:46 +0000800#ifdef FEAT_EVAL
801 /* clear v:swapcommand */
802 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
803#endif
804
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000805 /* Ex starts at last line of the file */
806 if (exmode_active)
807 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
808
809#ifdef FEAT_AUTOCMD
810 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
811 TIME_MSG("BufEnter autocommands");
812#endif
813 setpcmark();
814
815#ifdef FEAT_QUICKFIX
816 /*
817 * When started with "-q errorfile" jump to first error now.
818 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000819 if (params.edit_type == EDIT_QF)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000820 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000821 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000822 TIME_MSG("jump to first error");
823 }
824#endif
825
826#ifdef FEAT_WINDOWS
827 /*
828 * If opened more than one window, start editing files in the other
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000829 * windows.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000830 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000831 edit_buffers(&params);
832#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000833
834#ifdef FEAT_DIFF
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000835 if (params.diff_mode)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000836 {
837 win_T *wp;
838
839 /* set options in each window for "vimdiff". */
840 for (wp = firstwin; wp != NULL; wp = wp->w_next)
841 diff_win_options(wp, TRUE);
842 }
843#endif
844
845 /*
846 * Shorten any of the filenames, but only when absolute.
847 */
848 shorten_fnames(FALSE);
849
850 /*
851 * Need to jump to the tag before executing the '-c command'.
852 * Makes "vim -c '/return' -t main" work.
853 */
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000854 if (params.tagname != NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000855 {
Bram Moolenaar146522e2005-12-16 21:55:46 +0000856#if defined(HAS_SWAP_EXISTS_ACTION)
857 swap_exists_did_quit = FALSE;
858#endif
859
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000860 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000861 do_cmdline_cmd(IObuff);
862 TIME_MSG("jumping to tag");
Bram Moolenaar146522e2005-12-16 21:55:46 +0000863
864#if defined(HAS_SWAP_EXISTS_ACTION)
865 /* If the user doesn't want to edit the file then we quit here. */
866 if (swap_exists_did_quit)
867 getout(1);
868#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000869 }
870
Bram Moolenaarc013cb62005-07-24 21:18:31 +0000871 /* Execute any "+", "-c" and "-S" arguments. */
872 if (params.n_commands > 0)
873 exe_commands(&params);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000874
875 RedrawingDisabled = 0;
876 redraw_all_later(NOT_VALID);
877 no_wait_return = FALSE;
878 starting = 0;
879
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000880#ifdef FEAT_TERMRESPONSE
881 /* Requesting the termresponse is postponed until here, so that a "-c q"
882 * argument doesn't make it appear in the shell Vim was started from. */
883 may_req_termresponse();
884#endif
885
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000886 /* start in insert mode */
887 if (p_im)
888 need_start_insertmode = TRUE;
889
890#ifdef FEAT_AUTOCMD
891 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
892 TIME_MSG("VimEnter autocommands");
893#endif
894
895#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
896 /* When a startup script or session file setup for diff'ing and
897 * scrollbind, sync the scrollbind now. */
898 if (curwin->w_p_diff && curwin->w_p_scb)
899 {
900 update_topline();
901 check_scrollbind((linenr_T)0, 0L);
902 TIME_MSG("diff scrollbinding");
903 }
904#endif
905
906#if defined(WIN3264) && !defined(FEAT_GUI_W32)
907 mch_set_winsize_now(); /* Allow winsize changes from now on */
908#endif
909
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000910#if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
911 /* When tab pages were created, may need to update the tab pages line and
912 * scrollbars. This is skipped while creating them. */
913 if (first_tabpage->tp_next != NULL)
914 {
915 out_flush();
916 gui_init_which_components(NULL);
917 gui_update_scrollbars(TRUE);
918 }
919 need_mouse_correct = TRUE;
920#endif
921
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000922 /* If ":startinsert" command used, stuff a dummy command to be able to
923 * call normal_cmd(), which will then start Insert mode. */
924 if (restart_edit != 0)
Bram Moolenaarebefac62005-12-28 22:39:57 +0000925 stuffcharReadbuff(K_NOP);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000926
927#ifdef FEAT_NETBEANS_INTG
928 if (usingNetbeans)
929 /* Tell the client that it can start sending commands. */
930 netbeans_startup_done();
931#endif
932
933 TIME_MSG("before starting main loop");
934
935 /*
936 * Call the main command loop. This never returns.
937 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000938 main_loop(FALSE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000939
940 return 0;
941}
942#endif /* PROTO */
943
944/*
945 * Main loop: Execute Normal mode commands until exiting Vim.
946 * Also used to handle commands in the command-line window, until the window
947 * is closed.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000948 * Also used to handle ":visual" command after ":global": execute Normal mode
949 * commands, return when entering Ex mode. "noexmode" is TRUE then.
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000950 */
951 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000952main_loop(cmdwin, noexmode)
953 int cmdwin; /* TRUE when working in the command-line window */
954 int noexmode; /* TRUE when return on entering Ex mode */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000955{
Bram Moolenaar225d32b2007-08-10 19:33:47 +0000956 oparg_T oa; /* operator arguments */
957 int previous_got_int = FALSE; /* "got_int" was TRUE */
Bram Moolenaarb4210b32004-06-13 14:51:16 +0000958
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 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001018
1019 /* Reset "got_int" now that we got back to the main loop. Except when
1020 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1021 * the ":g" command.
1022 * For ":g/pat/vi" we reset "got_int" when used once. When used
1023 * a second time we go back to Ex mode and abort the ":g" command. */
1024 if (got_int)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001025 {
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001026 if (noexmode && global_busy && !exmode_active && previous_got_int)
1027 {
1028 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1029 * used and keep "got_int" set, so that it aborts ":g". */
1030 exmode_active = EXMODE_NORMAL;
1031 State = NORMAL;
1032 }
1033 else if (!global_busy || !exmode_active)
1034 {
1035 if (!quit_more)
1036 (void)vgetc(); /* flush all buffers */
1037 got_int = FALSE;
1038 }
1039 previous_got_int = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001040 }
Bram Moolenaar225d32b2007-08-10 19:33:47 +00001041 else
1042 previous_got_int = FALSE;
1043
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001044 if (!exmode_active)
1045 msg_scroll = FALSE;
1046 quit_more = FALSE;
1047
1048 /*
1049 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1050 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1051 * update cursor and redraw.
1052 */
1053 if (skip_redraw || exmode_active)
1054 skip_redraw = FALSE;
1055 else if (do_redraw || stuff_empty())
1056 {
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001057#ifdef FEAT_AUTOCMD
1058 /* Trigger CursorMoved if the cursor moved. */
1059 if (!finish_op && has_cursormoved()
1060 && !equalpos(last_cursormoved, curwin->w_cursor))
Bram Moolenaar3d0a6032006-02-09 23:54:54 +00001061 {
1062 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1063 last_cursormoved = curwin->w_cursor;
1064 }
1065#endif
1066
Bram Moolenaar33aec762006-01-22 23:30:12 +00001067#if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1068 /* Scroll-binding for diff mode may have been postponed until
1069 * here. Avoids doing it for every change. */
1070 if (diff_need_scrollbind)
1071 {
1072 check_scrollbind((linenr_T)0, 0L);
1073 diff_need_scrollbind = FALSE;
1074 }
1075#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001076#if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1077 /* Include a closed fold completely in the Visual area. */
1078 foldAdjustVisual();
1079#endif
1080#ifdef FEAT_FOLDING
1081 /*
1082 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1083 * contain the cursor.
1084 * When 'foldopen' is "all", open the fold(s) under the cursor.
1085 * This may mark the window for redrawing.
1086 */
1087 if (hasAnyFolding(curwin) && !char_avail())
1088 {
1089 foldCheckClose();
1090 if (fdo_flags & FDO_ALL)
1091 foldOpenCursor();
1092 }
1093#endif
1094
1095 /*
1096 * Before redrawing, make sure w_topline is correct, and w_leftcol
1097 * if lines don't wrap, and w_skipcol if lines wrap.
1098 */
1099 update_topline();
1100 validate_cursor();
1101
1102#ifdef FEAT_VISUAL
1103 if (VIsual_active)
1104 update_curbuf(INVERTED);/* update inverted part */
1105 else
1106#endif
1107 if (must_redraw)
1108 update_screen(0);
1109 else if (redraw_cmdline || clear_cmdline)
1110 showmode();
1111#ifdef FEAT_WINDOWS
1112 redraw_statuslines();
1113#endif
1114#ifdef FEAT_TITLE
1115 if (need_maketitle)
1116 maketitle();
1117#endif
1118 /* display message after redraw */
1119 if (keep_msg != NULL)
1120 {
1121 char_u *p;
1122
1123 /* msg_attr_keep() will set keep_msg to NULL, must free the
1124 * string here. */
1125 p = keep_msg;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001126 keep_msg = NULL;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001127 msg_attr(p, keep_msg_attr);
1128 vim_free(p);
1129 }
1130 if (need_fileinfo) /* show file info after redraw */
1131 {
1132 fileinfo(FALSE, TRUE, FALSE);
1133 need_fileinfo = FALSE;
1134 }
1135
1136 emsg_on_display = FALSE; /* can delete error message now */
1137 did_emsg = FALSE;
1138 msg_didany = FALSE; /* reset lines_left in msg_start() */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001139 may_clear_sb_text(); /* clear scroll-back text on next msg */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001140 showruler(FALSE);
1141
1142 setcursor();
1143 cursor_on();
1144
1145 do_redraw = FALSE;
1146 }
1147#ifdef FEAT_GUI
1148 if (need_mouse_correct)
1149 gui_mouse_correct();
1150#endif
1151
1152 /*
1153 * Update w_curswant if w_set_curswant has been set.
1154 * Postponed until here to avoid computing w_virtcol too often.
1155 */
1156 update_curswant();
1157
Bram Moolenaar9fecb462006-09-05 10:59:47 +00001158#ifdef FEAT_EVAL
1159 /*
1160 * May perform garbage collection when waiting for a character, but
1161 * only at the very toplevel. Otherwise we may be using a List or
1162 * Dict internally somewhere.
1163 * "may_garbage_collect" is reset in vgetc() which is invoked through
1164 * do_exmode() and normal_cmd().
1165 */
1166 may_garbage_collect = (!cmdwin && !noexmode);
1167#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001168 /*
1169 * If we're invoked as ex, do a round of ex commands.
1170 * Otherwise, get and execute a normal mode command.
1171 */
1172 if (exmode_active)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001173 {
1174 if (noexmode) /* End of ":global/path/visual" commands */
1175 return;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001176 do_exmode(exmode_active == EXMODE_VIM);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001177 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001178 else
1179 normal_cmd(&oa, TRUE);
1180 }
1181}
1182
1183
1184#if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1185/*
1186 * Exit, but leave behind swap files for modified buffers.
1187 */
1188 void
1189getout_preserve_modified(exitval)
1190 int exitval;
1191{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001192# if defined(SIGHUP) && defined(SIG_IGN)
1193 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1194 * makes Vim exit and then handling SIGHUP causes various reentrance
1195 * problems. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001196 signal(SIGHUP, SIG_IGN);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001197# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001198
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001199 ml_close_notmod(); /* close all not-modified buffers */
1200 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1201 ml_close_all(FALSE); /* close all memfiles, without deleting */
1202 getout(exitval); /* exit Vim properly */
1203}
1204#endif
1205
1206
1207/* Exit properly */
1208 void
1209getout(exitval)
1210 int exitval;
1211{
1212#ifdef FEAT_AUTOCMD
1213 buf_T *buf;
1214 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001215 tabpage_T *tp, *next_tp;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001216#endif
1217
1218 exiting = TRUE;
1219
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001220 /* When running in Ex mode an error causes us to exit with a non-zero exit
1221 * code. POSIX requires this, although it's not 100% clear from the
1222 * standard. */
1223 if (exmode_active)
1224 exitval += ex_exitval;
1225
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001226 /* Position the cursor on the last screen line, below all the text */
1227#ifdef FEAT_GUI
1228 if (!gui.in_use)
1229#endif
1230 windgoto((int)Rows - 1, 0);
1231
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00001232#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1233 /* Optionally print hashtable efficiency. */
1234 hash_debug_results();
1235#endif
1236
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001237#ifdef FEAT_GUI
1238 msg_didany = FALSE;
1239#endif
1240
1241#ifdef FEAT_AUTOCMD
1242 /* Trigger BufWinLeave for all windows, but only once per buffer. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001243# if defined FEAT_WINDOWS
1244 for (tp = first_tabpage; tp != NULL; tp = next_tp)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001245 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001246 next_tp = tp->tp_next;
Bram Moolenaar238a5642006-02-21 22:12:05 +00001247 for (wp = (tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00001248 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001249 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001250 buf = wp->w_buffer;
1251 if (buf->b_changedtick != -1)
1252 {
1253 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001254 FALSE, buf);
Bram Moolenaarf740b292006-02-16 22:11:02 +00001255 buf->b_changedtick = -1; /* note that we did it already */
1256 /* start all over, autocommands may mess up the lists */
1257 next_tp = first_tabpage;
1258 break;
1259 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001260 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001261 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001262# else
1263 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1264# endif
Bram Moolenaar33aec762006-01-22 23:30:12 +00001265
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001266 /* Trigger BufUnload for buffers that are loaded */
1267 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1268 if (buf->b_ml.ml_mfp != NULL)
1269 {
1270 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1271 FALSE, buf);
1272 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1273 break;
1274 }
1275 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1276#endif
1277
1278#ifdef FEAT_VIMINFO
1279 if (*p_viminfo != NUL)
1280 /* Write out the registers, history, marks etc, to the viminfo file */
1281 write_viminfo(NULL, FALSE);
1282#endif
1283
1284#ifdef FEAT_AUTOCMD
1285 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1286#endif
1287
Bram Moolenaar05159a02005-02-26 23:04:13 +00001288#ifdef FEAT_PROFILE
1289 profile_dump();
1290#endif
1291
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001292 if (did_emsg
1293#ifdef FEAT_GUI
1294 || (gui.in_use && msg_didany && p_verbose > 0)
1295#endif
1296 )
1297 {
1298 /* give the user a chance to read the (error) message */
1299 no_wait_return = FALSE;
1300 wait_return(FALSE);
1301 }
1302
1303#ifdef FEAT_AUTOCMD
1304 /* Position the cursor again, the autocommands may have moved it */
1305# ifdef FEAT_GUI
1306 if (!gui.in_use)
1307# endif
1308 windgoto((int)Rows - 1, 0);
1309#endif
1310
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001311#ifdef FEAT_MZSCHEME
1312 mzscheme_end();
1313#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001314#ifdef FEAT_TCL
1315 tcl_end();
1316#endif
1317#ifdef FEAT_RUBY
1318 ruby_end();
1319#endif
1320#ifdef FEAT_PYTHON
1321 python_end();
1322#endif
1323#ifdef FEAT_PERL
1324 perl_end();
1325#endif
1326#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1327 iconv_end();
1328#endif
1329#ifdef FEAT_NETBEANS_INTG
1330 netbeans_end();
1331#endif
Bram Moolenaar02b06312007-09-06 15:39:22 +00001332#ifdef FEAT_CSCOPE
1333 cs_end();
1334#endif
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00001335#ifdef FEAT_EVAL
1336 if (garbage_collect_at_exit)
1337 garbage_collect();
1338#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001339
1340 mch_exit(exitval);
1341}
1342
1343/*
1344 * Get a (optional) count for a Vim argument.
1345 */
1346 static int
1347get_number_arg(p, idx, def)
1348 char_u *p; /* pointer to argument */
1349 int *idx; /* index in argument, is incremented */
1350 int def; /* default value */
1351{
1352 if (vim_isdigit(p[*idx]))
1353 {
1354 def = atoi((char *)&(p[*idx]));
1355 while (vim_isdigit(p[*idx]))
1356 *idx = *idx + 1;
1357 }
1358 return def;
1359}
1360
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001361#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1362/*
1363 * Setup to use the current locale (for ctype() and many other things).
1364 */
1365 static void
1366init_locale()
1367{
1368 setlocale(LC_ALL, "");
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001369
1370# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1371 /* Make sure strtod() uses a decimal point, not a comma. */
1372 setlocale(LC_NUMERIC, "C");
1373# endif
1374
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001375# ifdef WIN32
1376 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1377 * text while it's expecting text in the current locale. This call avoids
1378 * that. */
1379 setlocale(LC_CTYPE, "C");
1380# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001381
1382# ifdef FEAT_GETTEXT
1383 {
1384 int mustfree = FALSE;
1385 char_u *p;
1386
1387# ifdef DYNAMIC_GETTEXT
1388 /* Initialize the gettext library */
1389 dyn_libintl_init(NULL);
1390# endif
1391 /* expand_env() doesn't work yet, because chartab[] is not initialized
1392 * yet, call vim_getenv() directly */
1393 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1394 if (p != NULL && *p != NUL)
1395 {
Bram Moolenaar1ad2f132007-06-19 18:27:18 +00001396 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001397 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1398 }
1399 if (mustfree)
1400 vim_free(p);
1401 textdomain(VIMPACKAGE);
1402 }
1403# endif
1404}
1405#endif
1406
1407/*
1408 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1409 * If the executable name starts with "r" we disable shell commands.
1410 * If the next character is "e" we run in Easy mode.
1411 * If the next character is "g" we run the GUI version.
1412 * If the next characters are "view" we start in readonly mode.
1413 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1414 * If the next characters are "ex" we start in Ex mode. If it's followed
1415 * by "im" use improved Ex mode.
1416 */
1417 static void
1418parse_command_name(parmp)
1419 mparm_T *parmp;
1420{
1421 char_u *initstr;
1422
1423 initstr = gettail((char_u *)parmp->argv[0]);
1424
1425#ifdef MACOS_X_UNIX
1426 /* An issue has been seen when launching Vim in such a way that
1427 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1428 * executable or a symbolic link of it. Until this issue is resolved
1429 * we prohibit the GUI from being used.
1430 */
1431 if (STRCMP(initstr, parmp->argv[0]) == 0)
1432 disallow_gui = TRUE;
1433
1434 /* TODO: On MacOS X default to gui if argv[0] ends in:
Bram Moolenaar27dc1952006-03-15 23:06:44 +00001435 * /Vim.app/Contents/MacOS/Vim */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001436#endif
1437
1438#ifdef FEAT_EVAL
1439 set_vim_var_string(VV_PROGNAME, initstr, -1);
1440#endif
1441
1442 if (TOLOWER_ASC(initstr[0]) == 'r')
1443 {
1444 restricted = TRUE;
1445 ++initstr;
1446 }
1447
1448 /* Avoid using evim mode for "editor". */
1449 if (TOLOWER_ASC(initstr[0]) == 'e'
1450 && (TOLOWER_ASC(initstr[1]) == 'v'
1451 || TOLOWER_ASC(initstr[1]) == 'g'))
1452 {
1453#ifdef FEAT_GUI
1454 gui.starting = TRUE;
1455#endif
1456 parmp->evim_mode = TRUE;
1457 ++initstr;
1458 }
1459
Bram Moolenaar806875d2008-09-18 18:57:10 +00001460 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1461 if (TOLOWER_ASC(initstr[0]) == 'g')
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001462 {
1463 main_start_gui();
1464#ifdef FEAT_GUI
1465 ++initstr;
1466#endif
1467 }
1468
1469 if (STRNICMP(initstr, "view", 4) == 0)
1470 {
1471 readonlymode = TRUE;
1472 curbuf->b_p_ro = TRUE;
1473 p_uc = 10000; /* don't update very often */
1474 initstr += 4;
1475 }
1476 else if (STRNICMP(initstr, "vim", 3) == 0)
1477 initstr += 3;
1478
1479 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1480 if (STRICMP(initstr, "diff") == 0)
1481 {
1482#ifdef FEAT_DIFF
1483 parmp->diff_mode = TRUE;
1484#else
1485 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1486 mch_errmsg("\n");
1487 mch_exit(2);
1488#endif
1489 }
1490
1491 if (STRNICMP(initstr, "ex", 2) == 0)
1492 {
1493 if (STRNICMP(initstr + 2, "im", 2) == 0)
1494 exmode_active = EXMODE_VIM;
1495 else
1496 exmode_active = EXMODE_NORMAL;
1497 change_compatible(TRUE); /* set 'compatible' */
1498 }
1499}
1500
Bram Moolenaarb4210b32004-06-13 14:51:16 +00001501/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00001502 * Get the name of the display, before gui_prepare() removes it from
1503 * argv[]. Used for the xterm-clipboard display.
1504 *
Bram Moolenaar78e17622007-08-30 10:26:19 +00001505 * Also find the --server... arguments and --socketid and --windowid
Bram Moolenaar58d98232005-07-23 22:25:46 +00001506 */
1507/*ARGSUSED*/
1508 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001509early_arg_scan(parmp)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001510 mparm_T *parmp;
1511{
1512#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001513 int argc = parmp->argc;
1514 char **argv = parmp->argv;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001515 int i;
1516
1517 for (i = 1; i < argc; i++)
1518 {
1519 if (STRCMP(argv[i], "--") == 0)
1520 break;
1521# ifdef FEAT_XCLIPBOARD
1522 else if (STRICMP(argv[i], "-display") == 0
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001523# if defined(FEAT_GUI_GTK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001524 || STRICMP(argv[i], "--display") == 0
1525# endif
1526 )
1527 {
1528 if (i == argc - 1)
1529 mainerr_arg_missing((char_u *)argv[i]);
1530 xterm_display = argv[++i];
1531 }
1532# endif
1533# ifdef FEAT_CLIENTSERVER
1534 else if (STRICMP(argv[i], "--servername") == 0)
1535 {
1536 if (i == argc - 1)
1537 mainerr_arg_missing((char_u *)argv[i]);
1538 parmp->serverName_arg = (char_u *)argv[++i];
1539 }
Bram Moolenaareb94e552006-03-11 21:35:11 +00001540 else if (STRICMP(argv[i], "--serverlist") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001541 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001542 else if (STRNICMP(argv[i], "--remote", 8) == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00001543 {
1544 parmp->serverArg = TRUE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00001545# ifdef FEAT_GUI
1546 if (strstr(argv[i], "-wait") != 0)
1547 /* don't fork() when starting the GUI to edit files ourself */
1548 gui.dofork = FALSE;
1549# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001550 }
1551# endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001552
1553# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1554# ifdef FEAT_GUI_W32
1555 else if (STRICMP(argv[i], "--windowid") == 0)
1556# else
Bram Moolenaar58d98232005-07-23 22:25:46 +00001557 else if (STRICMP(argv[i], "--socketid") == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001558# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001559 {
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001560 long_u id;
1561 int count;
Bram Moolenaar58d98232005-07-23 22:25:46 +00001562
1563 if (i == argc - 1)
1564 mainerr_arg_missing((char_u *)argv[i]);
1565 if (STRNICMP(argv[i+1], "0x", 2) == 0)
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001566 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001567 else
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001568 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
Bram Moolenaar58d98232005-07-23 22:25:46 +00001569 if (count != 1)
1570 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1571 else
Bram Moolenaar78e17622007-08-30 10:26:19 +00001572# ifdef FEAT_GUI_W32
1573 win_socket_id = id;
1574# else
1575 gtk_socket_id = id;
1576# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00001577 i++;
1578 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001579# endif
1580# ifdef FEAT_GUI_GTK
Bram Moolenaar58d98232005-07-23 22:25:46 +00001581 else if (STRICMP(argv[i], "--echo-wid") == 0)
1582 echo_wid_arg = TRUE;
1583# endif
1584 }
1585#endif
1586}
1587
1588/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001589 * Scan the command line arguments.
1590 */
1591 static void
1592command_line_scan(parmp)
1593 mparm_T *parmp;
1594{
1595 int argc = parmp->argc;
1596 char **argv = parmp->argv;
1597 int argv_idx; /* index in argv[n][] */
1598 int had_minmin = FALSE; /* found "--" argument */
1599 int want_argument; /* option argument with argument */
1600 int c;
Bram Moolenaar231334e2005-07-25 20:46:57 +00001601 char_u *p = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001602 long n;
1603
1604 --argc;
1605 ++argv;
1606 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1607 while (argc > 0)
1608 {
1609 /*
1610 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1611 */
1612 if (argv[0][0] == '+' && !had_minmin)
1613 {
1614 if (parmp->n_commands >= MAX_ARG_CMDS)
1615 mainerr(ME_EXTRA_CMD, NULL);
1616 argv_idx = -1; /* skip to next argument */
1617 if (argv[0][1] == NUL)
1618 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1619 else
1620 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1621 }
1622
1623 /*
1624 * Optional argument.
1625 */
1626 else if (argv[0][0] == '-' && !had_minmin)
1627 {
1628 want_argument = FALSE;
1629 c = argv[0][argv_idx++];
1630#ifdef VMS
1631 /*
1632 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1633 * and "-/X" as "-X".
1634 */
1635 if (c == '/')
1636 {
1637 c = argv[0][argv_idx++];
1638 c = TOUPPER_ASC(c);
1639 }
1640 else
1641 c = TOLOWER_ASC(c);
1642#endif
1643 switch (c)
1644 {
1645 case NUL: /* "vim -" read from stdin */
1646 /* "ex -" silent mode */
1647 if (exmode_active)
1648 silent_mode = TRUE;
1649 else
1650 {
1651 if (parmp->edit_type != EDIT_NONE)
1652 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1653 parmp->edit_type = EDIT_STDIN;
1654 read_cmd_fd = 2; /* read from stderr instead of stdin */
1655 }
1656 argv_idx = -1; /* skip to next argument */
1657 break;
1658
1659 case '-': /* "--" don't take any more option arguments */
1660 /* "--help" give help message */
1661 /* "--version" give version message */
1662 /* "--literal" take files literally */
1663 /* "--nofork" don't fork */
1664 /* "--noplugin[s]" skip plugins */
1665 /* "--cmd <cmd>" execute cmd before vimrc */
1666 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1667 usage();
1668 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1669 {
1670 Columns = 80; /* need to init Columns */
1671 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1672 list_version();
1673 msg_putchar('\n');
1674 msg_didout = FALSE;
1675 mch_exit(0);
1676 }
1677 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1678 {
1679#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1680 parmp->literal = TRUE;
1681#endif
1682 }
1683 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1684 {
1685#ifdef FEAT_GUI
1686 gui.dofork = FALSE; /* don't fork() when starting GUI */
1687#endif
1688 }
1689 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1690 p_lpl = FALSE;
1691 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1692 {
1693 want_argument = TRUE;
1694 argv_idx += 3;
1695 }
1696#ifdef FEAT_CLIENTSERVER
1697 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1698 ; /* already processed -- no arg */
1699 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1700 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1701 {
1702 /* already processed -- snatch the following arg */
1703 if (argc > 1)
1704 {
1705 --argc;
1706 ++argv;
1707 }
1708 }
1709#endif
Bram Moolenaar78e17622007-08-30 10:26:19 +00001710#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1711# ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001712 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
Bram Moolenaar78e17622007-08-30 10:26:19 +00001713# else
1714 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1715# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001716 {
1717 /* already processed -- snatch the following arg */
1718 if (argc > 1)
1719 {
1720 --argc;
1721 ++argv;
1722 }
1723 }
Bram Moolenaar78e17622007-08-30 10:26:19 +00001724#endif
1725#ifdef FEAT_GUI_GTK
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001726 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1727 {
1728 /* already processed, skip */
1729 }
1730#endif
1731 else
1732 {
1733 if (argv[0][argv_idx])
1734 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1735 had_minmin = TRUE;
1736 }
1737 if (!want_argument)
1738 argv_idx = -1; /* skip to next argument */
1739 break;
1740
1741 case 'A': /* "-A" start in Arabic mode */
1742#ifdef FEAT_ARABIC
1743 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1744#else
1745 mch_errmsg(_(e_noarabic));
1746 mch_exit(2);
1747#endif
1748 break;
1749
1750 case 'b': /* "-b" binary mode */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001751 /* Needs to be effective before expanding file names, because
1752 * for Win32 this makes us edit a shortcut file itself,
1753 * instead of the file it links to. */
1754 set_options_bin(curbuf->b_p_bin, 1, 0);
1755 curbuf->b_p_bin = 1; /* binary file I/O */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001756 break;
1757
1758 case 'C': /* "-C" Compatible */
1759 change_compatible(TRUE);
1760 break;
1761
1762 case 'e': /* "-e" Ex mode */
1763 exmode_active = EXMODE_NORMAL;
1764 break;
1765
1766 case 'E': /* "-E" Improved Ex mode */
1767 exmode_active = EXMODE_VIM;
1768 break;
1769
1770 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1771 window directly, not with newcli */
1772#ifdef FEAT_GUI
1773 gui.dofork = FALSE; /* don't fork() when starting GUI */
1774#endif
1775 break;
1776
1777 case 'g': /* "-g" start GUI */
1778 main_start_gui();
1779 break;
1780
1781 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1782#ifdef FEAT_FKMAP
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001783 p_fkmap = TRUE;
1784 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001785#else
1786 mch_errmsg(_(e_nofarsi));
1787 mch_exit(2);
1788#endif
1789 break;
1790
1791 case 'h': /* "-h" give help message */
1792#ifdef FEAT_GUI_GNOME
1793 /* Tell usage() to exit for "gvim". */
1794 gui.starting = FALSE;
1795#endif
1796 usage();
1797 break;
1798
1799 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1800#ifdef FEAT_RIGHTLEFT
Bram Moolenaarc4cd38f2008-01-13 15:18:01 +00001801 p_hkmap = TRUE;
1802 set_option_value((char_u *)"rl", 1L, NULL, 0);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001803#else
1804 mch_errmsg(_(e_nohebrew));
1805 mch_exit(2);
1806#endif
1807 break;
1808
1809 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1810#ifdef FEAT_LISP
1811 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1812 p_sm = TRUE;
1813#endif
1814 break;
1815
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001816 case 'M': /* "-M" no changes or writing of files */
1817 reset_modifiable();
1818 /* FALLTHROUGH */
1819
1820 case 'm': /* "-m" no writing of files */
1821 p_write = FALSE;
1822 break;
1823
1824 case 'y': /* "-y" easy mode */
1825#ifdef FEAT_GUI
1826 gui.starting = TRUE; /* start GUI a bit later */
1827#endif
1828 parmp->evim_mode = TRUE;
1829 break;
1830
1831 case 'N': /* "-N" Nocompatible */
1832 change_compatible(FALSE);
1833 break;
1834
1835 case 'n': /* "-n" no swap file */
1836 parmp->no_swap_file = TRUE;
1837 break;
1838
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001839 case 'p': /* "-p[N]" open N tab pages */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00001840#ifdef TARGET_API_MAC_OSX
1841 /* For some reason on MacOS X, an argument like:
1842 -psn_0_10223617 is passed in when invoke from Finder
1843 or with the 'open' command */
1844 if (argv[0][argv_idx] == 's')
1845 {
1846 argv_idx = -1; /* bypass full -psn */
1847 main_start_gui();
1848 break;
1849 }
1850#endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001851#ifdef FEAT_WINDOWS
1852 /* default is 0: open window for each file */
1853 parmp->window_count = get_number_arg((char_u *)argv[0],
1854 &argv_idx, 0);
1855 parmp->window_layout = WIN_TABS;
1856#endif
1857 break;
1858
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001859 case 'o': /* "-o[N]" open N horizontal split windows */
1860#ifdef FEAT_WINDOWS
1861 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001862 parmp->window_count = get_number_arg((char_u *)argv[0],
1863 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001864 parmp->window_layout = WIN_HOR;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001865#endif
1866 break;
1867
1868 case 'O': /* "-O[N]" open N vertical split windows */
1869#if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1870 /* default is 0: open window for each file */
Bram Moolenaar231334e2005-07-25 20:46:57 +00001871 parmp->window_count = get_number_arg((char_u *)argv[0],
1872 &argv_idx, 0);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001873 parmp->window_layout = WIN_VER;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001874#endif
1875 break;
1876
1877#ifdef FEAT_QUICKFIX
1878 case 'q': /* "-q" QuickFix mode */
1879 if (parmp->edit_type != EDIT_NONE)
1880 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1881 parmp->edit_type = EDIT_QF;
1882 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1883 {
1884 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1885 argv_idx = -1;
1886 }
1887 else if (argc > 1) /* "-q {errorfile}" */
1888 want_argument = TRUE;
1889 break;
1890#endif
1891
1892 case 'R': /* "-R" readonly mode */
1893 readonlymode = TRUE;
1894 curbuf->b_p_ro = TRUE;
1895 p_uc = 10000; /* don't update very often */
1896 break;
1897
1898 case 'r': /* "-r" recovery mode */
1899 case 'L': /* "-L" recovery mode */
1900 recoverymode = 1;
1901 break;
1902
1903 case 's':
1904 if (exmode_active) /* "-s" silent (batch) mode */
1905 silent_mode = TRUE;
1906 else /* "-s {scriptin}" read from script file */
1907 want_argument = TRUE;
1908 break;
1909
1910 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1911 if (parmp->edit_type != EDIT_NONE)
1912 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1913 parmp->edit_type = EDIT_TAG;
1914 if (argv[0][argv_idx]) /* "-t{tag}" */
1915 {
1916 parmp->tagname = (char_u *)argv[0] + argv_idx;
1917 argv_idx = -1;
1918 }
1919 else /* "-t {tag}" */
1920 want_argument = TRUE;
1921 break;
1922
1923#ifdef FEAT_EVAL
1924 case 'D': /* "-D" Debugging */
1925 parmp->use_debug_break_level = 9999;
1926 break;
1927#endif
1928#ifdef FEAT_DIFF
1929 case 'd': /* "-d" 'diff' */
1930# ifdef AMIGA
1931 /* check for "-dev {device}" */
1932 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1933 want_argument = TRUE;
1934 else
1935# endif
1936 parmp->diff_mode = TRUE;
1937 break;
1938#endif
1939 case 'V': /* "-V{N}" Verbose level */
1940 /* default is 10: a little bit verbose */
1941 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1942 if (argv[0][argv_idx] != NUL)
1943 {
1944 set_option_value((char_u *)"verbosefile", 0L,
1945 (char_u *)argv[0] + argv_idx, 0);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001946 argv_idx = (int)STRLEN(argv[0]);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001947 }
1948 break;
1949
1950 case 'v': /* "-v" Vi-mode (as if called "vi") */
1951 exmode_active = 0;
1952#ifdef FEAT_GUI
1953 gui.starting = FALSE; /* don't start GUI */
1954#endif
1955 break;
1956
1957 case 'w': /* "-w{number}" set window height */
1958 /* "-w {scriptout}" write to script */
1959 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1960 {
1961 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1962 set_option_value((char_u *)"window", n, NULL, 0);
1963 break;
1964 }
1965 want_argument = TRUE;
1966 break;
1967
1968#ifdef FEAT_CRYPT
1969 case 'x': /* "-x" encrypted reading/writing of files */
1970 parmp->ask_for_key = TRUE;
1971 break;
1972#endif
1973
1974 case 'X': /* "-X" don't connect to X server */
1975#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
1976 x_no_connect = TRUE;
1977#endif
1978 break;
1979
1980 case 'Z': /* "-Z" restricted mode */
1981 restricted = TRUE;
1982 break;
1983
1984 case 'c': /* "-c{command}" or "-c {command}" execute
1985 command */
1986 if (argv[0][argv_idx] != NUL)
1987 {
1988 if (parmp->n_commands >= MAX_ARG_CMDS)
1989 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00001990 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
1991 + argv_idx;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00001992 argv_idx = -1;
1993 break;
1994 }
1995 /*FALLTHROUGH*/
1996 case 'S': /* "-S {file}" execute Vim script */
1997 case 'i': /* "-i {viminfo}" use for viminfo */
1998#ifndef FEAT_DIFF
1999 case 'd': /* "-d {device}" device (for Amiga) */
2000#endif
2001 case 'T': /* "-T {terminal}" terminal name */
2002 case 'u': /* "-u {vimrc}" vim inits file */
2003 case 'U': /* "-U {gvimrc}" gvim inits file */
2004 case 'W': /* "-W {scriptout}" overwrite */
2005#ifdef FEAT_GUI_W32
2006 case 'P': /* "-P {parent title}" MDI parent */
2007#endif
2008 want_argument = TRUE;
2009 break;
2010
2011 default:
2012 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2013 }
2014
2015 /*
2016 * Handle option arguments with argument.
2017 */
2018 if (want_argument)
2019 {
2020 /*
2021 * Check for garbage immediately after the option letter.
2022 */
2023 if (argv[0][argv_idx] != NUL)
2024 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2025
2026 --argc;
2027 if (argc < 1 && c != 'S')
2028 mainerr_arg_missing((char_u *)argv[0]);
2029 ++argv;
2030 argv_idx = -1;
2031
2032 switch (c)
2033 {
2034 case 'c': /* "-c {command}" execute command */
2035 case 'S': /* "-S {file}" execute Vim script */
2036 if (parmp->n_commands >= MAX_ARG_CMDS)
2037 mainerr(ME_EXTRA_CMD, NULL);
2038 if (c == 'S')
2039 {
2040 char *a;
2041
2042 if (argc < 1)
2043 /* "-S" without argument: use default session file
2044 * name. */
2045 a = SESSION_FILE;
2046 else if (argv[0][0] == '-')
2047 {
2048 /* "-S" followed by another option: use default
2049 * session file name. */
2050 a = SESSION_FILE;
2051 ++argc;
2052 --argv;
2053 }
2054 else
2055 a = argv[0];
2056 p = alloc((unsigned)(STRLEN(a) + 4));
2057 if (p == NULL)
2058 mch_exit(2);
2059 sprintf((char *)p, "so %s", a);
2060 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2061 parmp->commands[parmp->n_commands++] = p;
2062 }
2063 else
Bram Moolenaar231334e2005-07-25 20:46:57 +00002064 parmp->commands[parmp->n_commands++] =
2065 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002066 break;
2067
2068 case '-': /* "--cmd {command}" execute command */
2069 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2070 mainerr(ME_EXTRA_CMD, NULL);
Bram Moolenaar231334e2005-07-25 20:46:57 +00002071 parmp->pre_commands[parmp->n_pre_commands++] =
2072 (char_u *)argv[0];
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002073 break;
2074
2075 /* case 'd': -d {device} is handled in mch_check_win() for the
2076 * Amiga */
2077
2078#ifdef FEAT_QUICKFIX
2079 case 'q': /* "-q {errorfile}" QuickFix mode */
2080 parmp->use_ef = (char_u *)argv[0];
2081 break;
2082#endif
2083
2084 case 'i': /* "-i {viminfo}" use for viminfo */
2085 use_viminfo = (char_u *)argv[0];
2086 break;
2087
2088 case 's': /* "-s {scriptin}" read from script file */
2089 if (scriptin[0] != NULL)
2090 {
2091scripterror:
2092 mch_errmsg(_("Attempt to open script file again: \""));
2093 mch_errmsg(argv[-1]);
2094 mch_errmsg(" ");
2095 mch_errmsg(argv[0]);
2096 mch_errmsg("\"\n");
2097 mch_exit(2);
2098 }
2099 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2100 {
2101 mch_errmsg(_("Cannot open for reading: \""));
2102 mch_errmsg(argv[0]);
2103 mch_errmsg("\"\n");
2104 mch_exit(2);
2105 }
2106 if (save_typebuf() == FAIL)
2107 mch_exit(2); /* out of memory */
2108 break;
2109
2110 case 't': /* "-t {tag}" */
2111 parmp->tagname = (char_u *)argv[0];
2112 break;
2113
2114 case 'T': /* "-T {terminal}" terminal name */
2115 /*
2116 * The -T term argument is always available and when
2117 * HAVE_TERMLIB is supported it overrides the environment
2118 * variable TERM.
2119 */
2120#ifdef FEAT_GUI
2121 if (term_is_gui((char_u *)argv[0]))
2122 gui.starting = TRUE; /* start GUI a bit later */
2123 else
2124#endif
2125 parmp->term = (char_u *)argv[0];
2126 break;
2127
2128 case 'u': /* "-u {vimrc}" vim inits file */
2129 parmp->use_vimrc = (char_u *)argv[0];
2130 break;
2131
2132 case 'U': /* "-U {gvimrc}" gvim inits file */
2133#ifdef FEAT_GUI
2134 use_gvimrc = (char_u *)argv[0];
2135#endif
2136 break;
2137
2138 case 'w': /* "-w {nr}" 'window' value */
2139 /* "-w {scriptout}" append to script file */
2140 if (vim_isdigit(*((char_u *)argv[0])))
2141 {
2142 argv_idx = 0;
2143 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2144 set_option_value((char_u *)"window", n, NULL, 0);
2145 argv_idx = -1;
2146 break;
2147 }
2148 /*FALLTHROUGH*/
2149 case 'W': /* "-W {scriptout}" overwrite script file */
2150 if (scriptout != NULL)
2151 goto scripterror;
2152 if ((scriptout = mch_fopen(argv[0],
2153 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2154 {
2155 mch_errmsg(_("Cannot open for script output: \""));
2156 mch_errmsg(argv[0]);
2157 mch_errmsg("\"\n");
2158 mch_exit(2);
2159 }
2160 break;
2161
2162#ifdef FEAT_GUI_W32
2163 case 'P': /* "-P {parent title}" MDI parent */
2164 gui_mch_set_parent(argv[0]);
2165 break;
2166#endif
2167 }
2168 }
2169 }
2170
2171 /*
2172 * File name argument.
2173 */
2174 else
2175 {
2176 argv_idx = -1; /* skip to next argument */
2177
2178 /* Check for only one type of editing. */
2179 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2180 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2181 parmp->edit_type = EDIT_FILE;
2182
2183#ifdef MSWIN
2184 /* Remember if the argument was a full path before changing
2185 * slashes to backslashes. */
2186 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2187 parmp->full_path = TRUE;
2188#endif
2189
2190 /* Add the file to the global argument list. */
2191 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2192 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2193 mch_exit(2);
2194#ifdef FEAT_DIFF
2195 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2196 && !mch_isdir(alist_name(&GARGLIST[0])))
2197 {
2198 char_u *r;
2199
2200 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2201 if (r != NULL)
2202 {
2203 vim_free(p);
2204 p = r;
2205 }
2206 }
2207#endif
2208#if defined(__CYGWIN32__) && !defined(WIN32)
2209 /*
2210 * If vim is invoked by non-Cygwin tools, convert away any
2211 * DOS paths, so things like .swp files are created correctly.
2212 * Look for evidence of non-Cygwin paths before we bother.
2213 * This is only for when using the Unix files.
2214 */
2215 if (strpbrk(p, "\\:") != NULL)
2216 {
2217 char posix_path[PATH_MAX];
2218
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002219# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2220 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2221# else
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002222 cygwin_conv_to_posix_path(p, posix_path);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002223# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002224 vim_free(p);
2225 p = vim_strsave(posix_path);
2226 if (p == NULL)
2227 mch_exit(2);
2228 }
2229#endif
Bram Moolenaarcc016f52005-12-10 20:23:46 +00002230
2231#ifdef USE_FNAME_CASE
2232 /* Make the case of the file name match the actual file. */
2233 fname_case(p, 0);
2234#endif
2235
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002236 alist_add(&global_alist, p,
2237#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
Bram Moolenaar231334e2005-07-25 20:46:57 +00002238 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002239#else
2240 2 /* add buffer number now and use curbuf */
2241#endif
2242 );
2243
2244#if defined(FEAT_MBYTE) && defined(WIN32)
2245 {
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002246 /* Remember this argument has been added to the argument list.
2247 * Needed when 'encoding' is changed. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002248 used_file_arg(argv[0], parmp->literal, parmp->full_path,
Bram Moolenaar688e5f72008-07-24 11:51:40 +00002249# ifdef FEAT_DIFF
2250 parmp->diff_mode
2251# else
2252 FALSE
2253# endif
2254 );
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002255 }
2256#endif
2257 }
2258
2259 /*
2260 * If there are no more letters after the current "-", go to next
2261 * argument. argv_idx is set to -1 when the current argument is to be
2262 * skipped.
2263 */
2264 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2265 {
2266 --argc;
2267 ++argv;
2268 argv_idx = 1;
2269 }
2270 }
Bram Moolenaar867a4b72007-03-18 20:51:46 +00002271
2272#ifdef FEAT_EVAL
2273 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2274 * one. */
2275 if (parmp->n_commands > 0)
2276 {
2277 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2278 if (p != NULL)
2279 {
2280 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2281 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2282 vim_free(p);
2283 }
2284 }
2285#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002286}
2287
2288/*
2289 * Print a warning if stdout is not a terminal.
2290 * When starting in Ex mode and commands come from a file, set Silent mode.
2291 */
2292 static void
2293check_tty(parmp)
2294 mparm_T *parmp;
2295{
2296 int input_isatty; /* is active input a terminal? */
2297
2298 input_isatty = mch_input_isatty();
2299 if (exmode_active)
2300 {
2301 if (!input_isatty)
2302 silent_mode = TRUE;
2303 }
2304 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2305#ifdef FEAT_GUI
2306 /* don't want the delay when started from the desktop */
2307 && !gui.starting
2308#endif
2309 )
2310 {
2311#ifdef NBDEBUG
2312 /*
2313 * This shouldn't be necessary. But if I run netbeans with the log
2314 * output coming to the console and XOpenDisplay fails, I get vim
2315 * trying to start with input/output to my console tty. This fills my
2316 * input buffer so fast I can't even kill the process in under 2
Bram Moolenaar49325942007-05-10 19:19:59 +00002317 * minutes (and it beeps continuously the whole time :-)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002318 */
2319 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2320 {
2321 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2322 exit(1);
2323 }
2324#endif
2325 if (!parmp->stdout_isatty)
2326 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2327 if (!input_isatty)
2328 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2329 out_flush();
2330 if (scriptin[0] == NULL)
2331 ui_delay(2000L, TRUE);
2332 TIME_MSG("Warning delay");
2333 }
2334}
2335
2336/*
2337 * Read text from stdin.
2338 */
2339 static void
2340read_stdin()
2341{
2342 int i;
2343
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002344#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002345 /* When getting the ATTENTION prompt here, use a dialog */
2346 swap_exists_action = SEA_DIALOG;
2347#endif
2348 no_wait_return = TRUE;
2349 i = msg_didany;
2350 set_buflisted(TRUE);
2351 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2352 no_wait_return = FALSE;
2353 msg_didany = i;
2354 TIME_MSG("reading stdin");
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002355#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002356 check_swap_exists_action();
2357#endif
2358#if !(defined(AMIGA) || defined(MACOS))
2359 /*
2360 * Close stdin and dup it from stderr. Required for GPM to work
2361 * properly, and for running external commands.
2362 * Is there any other system that cannot do this?
2363 */
2364 close(0);
2365 dup(2);
2366#endif
2367}
2368
2369/*
2370 * Create the requested number of windows and edit buffers in them.
2371 * Also does recovery if "recoverymode" set.
2372 */
2373/*ARGSUSED*/
2374 static void
2375create_windows(parmp)
2376 mparm_T *parmp;
2377{
2378#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002379 int dorewind;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002380 int done = 0;
2381
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002382 /*
2383 * Create the number of windows that was requested.
2384 */
2385 if (parmp->window_count == -1) /* was not set */
2386 parmp->window_count = 1;
2387 if (parmp->window_count == 0)
2388 parmp->window_count = GARGCOUNT;
2389 if (parmp->window_count > 1)
2390 {
2391 /* Don't change the windows if there was a command in .vimrc that
2392 * already split some windows */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002393 if (parmp->window_layout == 0)
2394 parmp->window_layout = WIN_HOR;
2395 if (parmp->window_layout == WIN_TABS)
2396 {
2397 parmp->window_count = make_tabpages(parmp->window_count);
2398 TIME_MSG("making tab pages");
2399 }
2400 else if (firstwin->w_next == NULL)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002401 {
2402 parmp->window_count = make_windows(parmp->window_count,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002403 parmp->window_layout == WIN_VER);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002404 TIME_MSG("making windows");
2405 }
2406 else
2407 parmp->window_count = win_count();
2408 }
2409 else
2410 parmp->window_count = 1;
2411#endif
2412
2413 if (recoverymode) /* do recover */
2414 {
2415 msg_scroll = TRUE; /* scroll message up */
2416 ml_recover();
2417 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2418 getout(1);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002419 do_modelines(0); /* do modelines */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002420 }
2421 else
2422 {
2423 /*
2424 * Open a buffer for windows that don't have one yet.
2425 * Commands in the .vimrc might have loaded a file or split the window.
2426 * Watch out for autocommands that delete a window.
2427 */
2428#ifdef FEAT_AUTOCMD
2429 /*
2430 * Don't execute Win/Buf Enter/Leave autocommands here
2431 */
2432 ++autocmd_no_enter;
2433 ++autocmd_no_leave;
2434#endif
2435#ifdef FEAT_WINDOWS
Bram Moolenaar89d40322006-08-29 15:30:07 +00002436 dorewind = TRUE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002437 while (done++ < 1000)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002438 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002439 if (dorewind)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002440 {
2441 if (parmp->window_layout == WIN_TABS)
2442 goto_tabpage(1);
2443 else
2444 curwin = firstwin;
2445 }
2446 else if (parmp->window_layout == WIN_TABS)
2447 {
2448 if (curtab->tp_next == NULL)
2449 break;
2450 goto_tabpage(0);
2451 }
2452 else
2453 {
2454 if (curwin->w_next == NULL)
2455 break;
2456 curwin = curwin->w_next;
2457 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002458 dorewind = FALSE;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002459#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002460 curbuf = curwin->w_buffer;
2461 if (curbuf->b_ml.ml_mfp == NULL)
2462 {
2463#ifdef FEAT_FOLDING
2464 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2465 if (p_fdls >= 0)
2466 curwin->w_p_fdl = p_fdls;
2467#endif
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002468#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002469 /* When getting the ATTENTION prompt here, use a dialog */
2470 swap_exists_action = SEA_DIALOG;
2471#endif
2472 set_buflisted(TRUE);
2473 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2474
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002475#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar84212822006-11-07 21:59:47 +00002476 if (swap_exists_action == SEA_QUIT)
2477 {
2478 if (got_int || only_one_window())
2479 {
2480 /* abort selected or quit and only one window */
2481 did_emsg = FALSE; /* avoid hit-enter prompt */
2482 getout(1);
2483 }
2484 /* We can't close the window, it would disturb what
2485 * happens next. Clear the file name and set the arg
2486 * index to -1 to delete it later. */
2487 setfname(curbuf, NULL, NULL, FALSE);
2488 curwin->w_arg_idx = -1;
2489 swap_exists_action = SEA_NONE;
2490 }
2491 else
2492 handle_swap_exists(NULL);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002493#endif
2494#ifdef FEAT_AUTOCMD
Bram Moolenaar89d40322006-08-29 15:30:07 +00002495 dorewind = TRUE; /* start again */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002496#endif
2497 }
2498#ifdef FEAT_WINDOWS
2499 ui_breakcheck();
2500 if (got_int)
2501 {
2502 (void)vgetc(); /* only break the file loading, not the rest */
2503 break;
2504 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002505 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002506#endif
2507#ifdef FEAT_WINDOWS
2508 if (parmp->window_layout == WIN_TABS)
2509 goto_tabpage(1);
2510 else
2511 curwin = firstwin;
2512 curbuf = curwin->w_buffer;
2513#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002514#ifdef FEAT_AUTOCMD
2515 --autocmd_no_enter;
2516 --autocmd_no_leave;
2517#endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002518 }
2519}
2520
2521#ifdef FEAT_WINDOWS
2522 /*
2523 * If opened more than one window, start editing files in the other
2524 * windows. make_windows() has already opened the windows.
2525 */
2526 static void
2527edit_buffers(parmp)
2528 mparm_T *parmp;
2529{
2530 int arg_idx; /* index in argument list */
2531 int i;
Bram Moolenaar84212822006-11-07 21:59:47 +00002532 int advance = TRUE;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002533
2534# ifdef FEAT_AUTOCMD
2535 /*
2536 * Don't execute Win/Buf Enter/Leave autocommands here
2537 */
2538 ++autocmd_no_enter;
2539 ++autocmd_no_leave;
2540# endif
Bram Moolenaar84212822006-11-07 21:59:47 +00002541
2542 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2543 if (curwin->w_arg_idx == -1)
2544 {
2545 win_close(curwin, TRUE);
2546 advance = FALSE;
2547 }
2548
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002549 arg_idx = 1;
2550 for (i = 1; i < parmp->window_count; ++i)
2551 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002552 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2553 if (curwin->w_arg_idx == -1)
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002554 {
Bram Moolenaar84212822006-11-07 21:59:47 +00002555 ++arg_idx;
2556 win_close(curwin, TRUE);
2557 advance = FALSE;
2558 continue;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002559 }
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002560
Bram Moolenaar84212822006-11-07 21:59:47 +00002561 if (advance)
2562 {
2563 if (parmp->window_layout == WIN_TABS)
2564 {
2565 if (curtab->tp_next == NULL) /* just checking */
2566 break;
2567 goto_tabpage(0);
2568 }
2569 else
2570 {
2571 if (curwin->w_next == NULL) /* just checking */
2572 break;
2573 win_enter(curwin->w_next, FALSE);
2574 }
2575 }
2576 advance = TRUE;
2577
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002578 /* Only open the file if there is no file in this window yet (that can
Bram Moolenaar84212822006-11-07 21:59:47 +00002579 * happen when .vimrc contains ":sall"). */
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002580 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2581 {
2582 curwin->w_arg_idx = arg_idx;
Bram Moolenaar84212822006-11-07 21:59:47 +00002583 /* Edit file from arg list, if there is one. When "Quit" selected
2584 * at the ATTENTION prompt close the window. */
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002585# ifdef HAS_SWAP_EXISTS_ACTION
2586 swap_exists_did_quit = FALSE;
2587# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002588 (void)do_ecmd(0, arg_idx < GARGCOUNT
2589 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2590 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002591# ifdef HAS_SWAP_EXISTS_ACTION
2592 if (swap_exists_did_quit)
Bram Moolenaar84212822006-11-07 21:59:47 +00002593 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002594 /* abort or quit selected */
Bram Moolenaar84212822006-11-07 21:59:47 +00002595 if (got_int || only_one_window())
2596 {
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002597 /* abort selected and only one window */
Bram Moolenaar84212822006-11-07 21:59:47 +00002598 did_emsg = FALSE; /* avoid hit-enter prompt */
2599 getout(1);
2600 }
2601 win_close(curwin, TRUE);
2602 advance = FALSE;
2603 }
Bram Moolenaar4bfa6082008-07-24 17:34:23 +00002604# endif
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002605 if (arg_idx == GARGCOUNT - 1)
2606 arg_had_last = TRUE;
2607 ++arg_idx;
2608 }
2609 ui_breakcheck();
2610 if (got_int)
2611 {
2612 (void)vgetc(); /* only break the file loading, not the rest */
2613 break;
2614 }
2615 }
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002616
2617 if (parmp->window_layout == WIN_TABS)
2618 goto_tabpage(1);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002619# ifdef FEAT_AUTOCMD
2620 --autocmd_no_enter;
2621# endif
2622 win_enter(firstwin, FALSE); /* back to first window */
2623# ifdef FEAT_AUTOCMD
2624 --autocmd_no_leave;
2625# endif
2626 TIME_MSG("editing files in windows");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002627 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002628 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2629}
2630#endif /* FEAT_WINDOWS */
2631
2632/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002633 * Execute the commands from --cmd arguments "cmds[cnt]".
2634 */
2635 static void
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002636exe_pre_commands(parmp)
2637 mparm_T *parmp;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002638{
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002639 char_u **cmds = parmp->pre_commands;
2640 int cnt = parmp->n_pre_commands;
Bram Moolenaar58d98232005-07-23 22:25:46 +00002641 int i;
2642
2643 if (cnt > 0)
2644 {
2645 curwin->w_cursor.lnum = 0; /* just in case.. */
2646 sourcing_name = (char_u *)_("pre-vimrc command line");
2647# ifdef FEAT_EVAL
2648 current_SID = SID_CMDARG;
2649# endif
2650 for (i = 0; i < cnt; ++i)
2651 do_cmdline_cmd(cmds[i]);
2652 sourcing_name = NULL;
2653# ifdef FEAT_EVAL
2654 current_SID = 0;
2655# endif
2656 TIME_MSG("--cmd commands");
2657 }
2658}
2659
2660/*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002661 * Execute "+", "-c" and "-S" arguments.
2662 */
2663 static void
2664exe_commands(parmp)
2665 mparm_T *parmp;
2666{
2667 int i;
2668
2669 /*
2670 * We start commands on line 0, make "vim +/pat file" match a
2671 * pattern on line 1. But don't move the cursor when an autocommand
2672 * with g`" was used.
2673 */
2674 msg_scroll = TRUE;
2675 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2676 curwin->w_cursor.lnum = 0;
2677 sourcing_name = (char_u *)"command line";
2678#ifdef FEAT_EVAL
2679 current_SID = SID_CARG;
2680#endif
2681 for (i = 0; i < parmp->n_commands; ++i)
2682 {
2683 do_cmdline_cmd(parmp->commands[i]);
2684 if (parmp->cmds_tofree[i])
2685 vim_free(parmp->commands[i]);
2686 }
2687 sourcing_name = NULL;
2688#ifdef FEAT_EVAL
2689 current_SID = 0;
2690#endif
2691 if (curwin->w_cursor.lnum == 0)
2692 curwin->w_cursor.lnum = 1;
2693
2694 if (!exmode_active)
2695 msg_scroll = FALSE;
2696
2697#ifdef FEAT_QUICKFIX
2698 /* When started with "-q errorfile" jump to first error again. */
2699 if (parmp->edit_type == EDIT_QF)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002700 qf_jump(NULL, 0, 0, FALSE);
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002701#endif
2702 TIME_MSG("executing command arguments");
2703}
2704
2705/*
Bram Moolenaar58d98232005-07-23 22:25:46 +00002706 * Source startup scripts.
2707 */
2708 static void
2709source_startup_scripts(parmp)
2710 mparm_T *parmp;
2711{
2712 int i;
2713
2714 /*
2715 * For "evim" source evim.vim first of all, so that the user can overrule
2716 * any things he doesn't like.
2717 */
2718 if (parmp->evim_mode)
2719 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002720 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002721 TIME_MSG("source evim file");
2722 }
2723
2724 /*
Bram Moolenaarc013cb62005-07-24 21:18:31 +00002725 * If -u argument given, use only the initializations from that file and
Bram Moolenaar58d98232005-07-23 22:25:46 +00002726 * nothing else.
2727 */
2728 if (parmp->use_vimrc != NULL)
2729 {
Bram Moolenaar231334e2005-07-25 20:46:57 +00002730 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2731 || STRCMP(parmp->use_vimrc, "NORC") == 0)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002732 {
2733#ifdef FEAT_GUI
2734 if (use_gvimrc == NULL) /* don't load gvimrc either */
2735 use_gvimrc = parmp->use_vimrc;
2736#endif
2737 if (parmp->use_vimrc[2] == 'N')
2738 p_lpl = FALSE; /* don't load plugins either */
2739 }
2740 else
2741 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002742 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002743 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2744 }
2745 }
2746 else if (!silent_mode)
2747 {
2748#ifdef AMIGA
2749 struct Process *proc = (struct Process *)FindTask(0L);
2750 APTR save_winptr = proc->pr_WindowPtr;
2751
2752 /* Avoid a requester here for a volume that doesn't exist. */
2753 proc->pr_WindowPtr = (APTR)-1L;
2754#endif
2755
2756 /*
2757 * Get system wide defaults, if the file name is defined.
2758 */
2759#ifdef SYS_VIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002760 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002761#endif
Bram Moolenaar1056d982006-03-09 22:37:52 +00002762#ifdef MACOS_X
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002763 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
Bram Moolenaar1056d982006-03-09 22:37:52 +00002764#endif
Bram Moolenaar58d98232005-07-23 22:25:46 +00002765
2766 /*
2767 * Try to read initialization commands from the following places:
2768 * - environment variable VIMINIT
2769 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2770 * - second user vimrc file ($VIM/.vimrc for Dos)
2771 * - environment variable EXINIT
2772 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2773 * - second user exrc file ($VIM/.exrc for Dos)
2774 * The first that exists is used, the rest is ignored.
2775 */
2776 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2777 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002778 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002779#ifdef USR_VIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002780 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2781 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002782#endif
2783#ifdef USR_VIMRC_FILE3
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002784 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2785 DOSO_VIMRC) == FAIL
Bram Moolenaar58d98232005-07-23 22:25:46 +00002786#endif
2787 && process_env((char_u *)"EXINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002788 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
Bram Moolenaar58d98232005-07-23 22:25:46 +00002789 {
2790#ifdef USR_EXRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002791 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002792#endif
2793 }
2794 }
2795
2796 /*
2797 * Read initialization commands from ".vimrc" or ".exrc" in current
2798 * directory. This is only done if the 'exrc' option is set.
2799 * Because of security reasons we disallow shell and write commands
2800 * now, except for unix if the file is owned by the user or 'secure'
2801 * option has been reset in environment of global ".exrc" or ".vimrc".
2802 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2803 * SYS_VIMRC_FILE.
2804 */
2805 if (p_exrc)
2806 {
2807#if defined(UNIX) || defined(VMS)
2808 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2809 if (!file_owned(VIMRC_FILE))
2810#endif
2811 secure = p_secure;
2812
2813 i = FAIL;
2814 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2815 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2816#ifdef USR_VIMRC_FILE2
2817 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2818 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2819#endif
2820#ifdef USR_VIMRC_FILE3
2821 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2822 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2823#endif
2824#ifdef SYS_VIMRC_FILE
2825 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2826 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2827#endif
2828 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002829 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002830
2831 if (i == FAIL)
2832 {
2833#if defined(UNIX) || defined(VMS)
2834 /* if ".exrc" is not owned by user set 'secure' mode */
2835 if (!file_owned(EXRC_FILE))
2836 secure = p_secure;
2837 else
2838 secure = 0;
2839#endif
2840 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2841 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2842#ifdef USR_EXRC_FILE2
2843 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2844 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2845#endif
2846 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002847 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar58d98232005-07-23 22:25:46 +00002848 }
2849 }
2850 if (secure == 2)
2851 need_wait_return = TRUE;
2852 secure = 0;
2853#ifdef AMIGA
2854 proc->pr_WindowPtr = save_winptr;
2855#endif
2856 }
2857 TIME_MSG("sourcing vimrc file(s)");
2858}
2859
2860/*
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002861 * Setup to start using the GUI. Exit with an error when not available.
2862 */
2863 static void
2864main_start_gui()
2865{
2866#ifdef FEAT_GUI
2867 gui.starting = TRUE; /* start GUI a bit later */
2868#else
2869 mch_errmsg(_(e_nogvim));
2870 mch_errmsg("\n");
2871 mch_exit(2);
2872#endif
2873}
2874
2875/*
Bram Moolenaar49325942007-05-10 19:19:59 +00002876 * Get an environment variable, and execute it as Ex commands.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002877 * Returns FAIL if the environment variable was not executed, OK otherwise.
2878 */
2879 int
2880process_env(env, is_viminit)
2881 char_u *env;
2882 int is_viminit; /* when TRUE, called for VIMINIT */
2883{
2884 char_u *initstr;
2885 char_u *save_sourcing_name;
2886 linenr_T save_sourcing_lnum;
2887#ifdef FEAT_EVAL
2888 scid_T save_sid;
2889#endif
2890
2891 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2892 {
2893 if (is_viminit)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002894 vimrc_found(NULL, NULL);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002895 save_sourcing_name = sourcing_name;
2896 save_sourcing_lnum = sourcing_lnum;
2897 sourcing_name = env;
2898 sourcing_lnum = 0;
2899#ifdef FEAT_EVAL
2900 save_sid = current_SID;
2901 current_SID = SID_ENV;
2902#endif
2903 do_cmdline_cmd(initstr);
2904 sourcing_name = save_sourcing_name;
2905 sourcing_lnum = save_sourcing_lnum;
2906#ifdef FEAT_EVAL
2907 current_SID = save_sid;;
2908#endif
2909 return OK;
2910 }
2911 return FAIL;
2912}
2913
2914#if defined(UNIX) || defined(VMS)
2915/*
2916 * Return TRUE if we are certain the user owns the file "fname".
2917 * Used for ".vimrc" and ".exrc".
2918 * Use both stat() and lstat() for extra security.
2919 */
2920 static int
2921file_owned(fname)
2922 char *fname;
2923{
2924 struct stat s;
2925# ifdef UNIX
2926 uid_t uid = getuid();
2927# else /* VMS */
2928 uid_t uid = ((getgid() << 16) | getuid());
2929# endif
2930
2931 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2932# ifdef HAVE_LSTAT
2933 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2934# endif
2935 );
2936}
2937#endif
2938
2939/*
2940 * Give an error message main_errors["n"] and exit.
2941 */
2942 static void
2943mainerr(n, str)
2944 int n; /* one of the ME_ defines */
2945 char_u *str; /* extra argument or NULL */
2946{
2947#if defined(UNIX) || defined(__EMX__) || defined(VMS)
2948 reset_signals(); /* kill us with CTRL-C here, if you like */
2949#endif
2950
2951 mch_errmsg(longVersion);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002952 mch_errmsg("\n");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002953 mch_errmsg(_(main_errors[n]));
2954 if (str != NULL)
2955 {
2956 mch_errmsg(": \"");
2957 mch_errmsg((char *)str);
2958 mch_errmsg("\"");
2959 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002960 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00002961
2962 mch_exit(1);
2963}
2964
2965 void
2966mainerr_arg_missing(str)
2967 char_u *str;
2968{
2969 mainerr(ME_ARG_MISSING, str);
2970}
2971
2972/*
2973 * print a message with three spaces prepended and '\n' appended.
2974 */
2975 static void
2976main_msg(s)
2977 char *s;
2978{
2979 mch_msg(" ");
2980 mch_msg(s);
2981 mch_msg("\n");
2982}
2983
2984/*
2985 * Print messages for "vim -h" or "vim --help" and exit.
2986 */
2987 static void
2988usage()
2989{
2990 int i;
2991 static char *(use[]) =
2992 {
2993 N_("[file ..] edit specified file(s)"),
2994 N_("- read text from stdin"),
2995 N_("-t tag edit file where tag is defined"),
2996#ifdef FEAT_QUICKFIX
2997 N_("-q [errorfile] edit file with first error")
2998#endif
2999 };
3000
3001#if defined(UNIX) || defined(__EMX__) || defined(VMS)
3002 reset_signals(); /* kill us with CTRL-C here, if you like */
3003#endif
3004
3005 mch_msg(longVersion);
3006 mch_msg(_("\n\nusage:"));
3007 for (i = 0; ; ++i)
3008 {
3009 mch_msg(_(" vim [arguments] "));
3010 mch_msg(_(use[i]));
3011 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3012 break;
3013 mch_msg(_("\n or:"));
3014 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003015#ifdef VMS
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003016 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003017#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003018
3019 mch_msg(_("\n\nArguments:\n"));
3020 main_msg(_("--\t\t\tOnly file names after this"));
3021#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3022 main_msg(_("--literal\t\tDon't expand wildcards"));
3023#endif
3024#ifdef FEAT_OLE
3025 main_msg(_("-register\t\tRegister this gvim for OLE"));
3026 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3027#endif
3028#ifdef FEAT_GUI
3029 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3030 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3031#endif
3032 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3033 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3034 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3035#ifdef FEAT_DIFF
3036 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3037#endif
3038 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3039 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3040 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3041 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3042 main_msg(_("-M\t\t\tModifications in text not allowed"));
3043 main_msg(_("-b\t\t\tBinary mode"));
3044#ifdef FEAT_LISP
3045 main_msg(_("-l\t\t\tLisp mode"));
3046#endif
3047 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3048 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003049 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3050#ifdef FEAT_EVAL
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003051 main_msg(_("-D\t\t\tDebugging mode"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003052#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003053 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3054 main_msg(_("-r\t\t\tList swap files and exit"));
3055 main_msg(_("-r (with file name)\tRecover crashed session"));
3056 main_msg(_("-L\t\t\tSame as -r"));
3057#ifdef AMIGA
3058 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3059 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3060#endif
3061#ifdef FEAT_ARABIC
3062 main_msg(_("-A\t\t\tstart in Arabic mode"));
3063#endif
3064#ifdef FEAT_RIGHTLEFT
3065 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3066#endif
3067#ifdef FEAT_FKMAP
3068 main_msg(_("-F\t\t\tStart in Farsi mode"));
3069#endif
3070 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3071 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3072#ifdef FEAT_GUI
3073 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3074#endif
3075 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003076#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003077 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003078 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3079 main_msg(_("-O[N]\t\tLike -o but split vertically"));
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003080#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003081 main_msg(_("+\t\t\tStart at end of file"));
3082 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003083 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003084 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3085 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3086 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3087 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3088 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3089#ifdef FEAT_CRYPT
3090 main_msg(_("-x\t\t\tEdit encrypted files"));
3091#endif
3092#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3093# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3094 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3095# endif
3096 main_msg(_("-X\t\t\tDo not connect to X server"));
3097#endif
3098#ifdef FEAT_CLIENTSERVER
3099 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3100 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3101 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3102 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003103# ifdef FEAT_WINDOWS
Bram Moolenaar82ad3242008-01-11 19:26:36 +00003104 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
Bram Moolenaar0ce29932006-03-13 22:18:45 +00003105# endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003106 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3107 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3108 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3109 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3110#endif
3111#ifdef FEAT_VIMINFO
3112 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3113#endif
3114 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3115 main_msg(_("--version\t\tPrint version information and exit"));
3116
3117#ifdef FEAT_GUI_X11
3118# ifdef FEAT_GUI_MOTIF
3119 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3120# else
3121# ifdef FEAT_GUI_ATHENA
3122# ifdef FEAT_GUI_NEXTAW
3123 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3124# else
3125 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3126# endif
3127# endif
3128# endif
3129 main_msg(_("-display <display>\tRun vim on <display>"));
3130 main_msg(_("-iconic\t\tStart vim iconified"));
3131# if 0
3132 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3133 mch_msg(_("\t\t\t (Unimplemented)\n"));
3134# endif
3135 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3136 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3137 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3138 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3139 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3140 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3141 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3142 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3143# ifdef FEAT_GUI_ATHENA
3144 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3145# endif
3146 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3147 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3148 main_msg(_("-xrm <resource>\tSet the specified resource"));
3149#endif /* FEAT_GUI_X11 */
3150#if defined(FEAT_GUI) && defined(RISCOS)
3151 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3152 main_msg(_("--columns <number>\tInitial width of window in columns"));
3153 main_msg(_("--rows <number>\tInitial height of window in rows"));
3154#endif
3155#ifdef FEAT_GUI_GTK
3156 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3157 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3158 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3159 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3160 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3161# ifdef HAVE_GTK2
3162 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3163# endif
3164 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3165#endif
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003166#ifdef FEAT_GUI_W32
3167 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
Bram Moolenaar78e17622007-08-30 10:26:19 +00003168 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003169#endif
3170
3171#ifdef FEAT_GUI_GNOME
3172 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3173 if (gui.starting)
3174 mch_msg("\n");
3175 else
3176#endif
3177 mch_exit(0);
3178}
3179
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003180#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003181/*
3182 * Check the result of the ATTENTION dialog:
3183 * When "Quit" selected, exit Vim.
3184 * When "Recover" selected, recover the file.
3185 */
3186 static void
3187check_swap_exists_action()
3188{
3189 if (swap_exists_action == SEA_QUIT)
3190 getout(1);
3191 handle_swap_exists(NULL);
3192}
3193#endif
3194
3195#if defined(STARTUPTIME) || defined(PROTO)
3196static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3197
3198static struct timeval prev_timeval;
3199
3200/*
3201 * Save the previous time before doing something that could nest.
3202 * set "*tv_rel" to the time elapsed so far.
3203 */
3204 void
3205time_push(tv_rel, tv_start)
3206 void *tv_rel, *tv_start;
3207{
3208 *((struct timeval *)tv_rel) = prev_timeval;
3209 gettimeofday(&prev_timeval, NULL);
3210 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3211 - ((struct timeval *)tv_rel)->tv_usec;
3212 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3213 - ((struct timeval *)tv_rel)->tv_sec;
3214 if (((struct timeval *)tv_rel)->tv_usec < 0)
3215 {
3216 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3217 --((struct timeval *)tv_rel)->tv_sec;
3218 }
3219 *(struct timeval *)tv_start = prev_timeval;
3220}
3221
3222/*
3223 * Compute the previous time after doing something that could nest.
3224 * Subtract "*tp" from prev_timeval;
3225 * Note: The arguments are (void *) to avoid trouble with systems that don't
3226 * have struct timeval.
3227 */
3228 void
3229time_pop(tp)
3230 void *tp; /* actually (struct timeval *) */
3231{
3232 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3233 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3234 if (prev_timeval.tv_usec < 0)
3235 {
3236 prev_timeval.tv_usec += 1000000;
3237 --prev_timeval.tv_sec;
3238 }
3239}
3240
3241 static void
3242time_diff(then, now)
3243 struct timeval *then;
3244 struct timeval *now;
3245{
3246 long usec;
3247 long msec;
3248
3249 usec = now->tv_usec - then->tv_usec;
3250 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3251 usec = usec % 1000L;
3252 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3253}
3254
3255 void
3256time_msg(msg, tv_start)
3257 char *msg;
3258 void *tv_start; /* only for do_source: start time; actually
3259 (struct timeval *) */
3260{
3261 static struct timeval start;
3262 struct timeval now;
3263
3264 if (time_fd != NULL)
3265 {
3266 if (strstr(msg, "STARTING") != NULL)
3267 {
3268 gettimeofday(&start, NULL);
3269 prev_timeval = start;
3270 fprintf(time_fd, "\n\ntimes in msec\n");
3271 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3272 fprintf(time_fd, " clock elapsed: other lines\n\n");
3273 }
3274 gettimeofday(&now, NULL);
3275 time_diff(&start, &now);
3276 if (((struct timeval *)tv_start) != NULL)
3277 {
3278 fprintf(time_fd, " ");
3279 time_diff(((struct timeval *)tv_start), &now);
3280 }
3281 fprintf(time_fd, " ");
3282 time_diff(&prev_timeval, &now);
3283 prev_timeval = now;
3284 fprintf(time_fd, ": %s\n", msg);
3285 }
3286}
3287
3288# ifdef WIN3264
3289/*
3290 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3291 */
3292 int
3293gettimeofday(struct timeval *tv, char *dummy)
3294{
3295 long t = clock();
3296 tv->tv_sec = t / CLOCKS_PER_SEC;
3297 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3298 return 0;
3299}
3300# endif
3301
3302#endif
3303
3304#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3305
3306/*
3307 * Common code for the X command server and the Win32 command server.
3308 */
3309
Bram Moolenaareb94e552006-03-11 21:35:11 +00003310static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003311
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003312/*
3313 * Do the client-server stuff, unless "--servername ''" was used.
3314 */
3315 static void
3316exec_on_server(parmp)
3317 mparm_T *parmp;
3318{
3319 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3320 {
3321# ifdef WIN32
3322 /* Initialise the client/server messaging infrastructure. */
3323 serverInitMessaging();
3324# endif
3325
3326 /*
3327 * When a command server argument was found, execute it. This may
3328 * exit Vim when it was successful. Otherwise it's executed further
3329 * on. Remember the encoding used here in "serverStrEnc".
3330 */
3331 if (parmp->serverArg)
3332 {
3333 cmdsrv_main(&parmp->argc, parmp->argv,
3334 parmp->serverName_arg, &parmp->serverStr);
3335# ifdef FEAT_MBYTE
3336 parmp->serverStrEnc = vim_strsave(p_enc);
3337# endif
3338 }
3339
3340 /* If we're still running, get the name to register ourselves.
3341 * On Win32 can register right now, for X11 need to setup the
3342 * clipboard first, it's further down. */
3343 parmp->servername = serverMakeName(parmp->serverName_arg,
3344 parmp->argv[0]);
3345# ifdef WIN32
3346 if (parmp->servername != NULL)
3347 {
3348 serverSetName(parmp->servername);
3349 vim_free(parmp->servername);
3350 }
3351# endif
3352 }
3353}
3354
3355/*
3356 * Prepare for running as a Vim server.
3357 */
3358 static void
3359prepare_server(parmp)
3360 mparm_T *parmp;
3361{
3362# if defined(FEAT_X11)
3363 /*
3364 * Register for remote command execution with :serversend and --remote
3365 * unless there was a -X or a --servername '' on the command line.
3366 * Only register nongui-vim's with an explicit --servername argument.
Bram Moolenaar5f402312006-08-15 19:40:35 +00003367 * When running as root --servername is also required.
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003368 */
3369 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3370# ifdef FEAT_GUI
Bram Moolenaar5f402312006-08-15 19:40:35 +00003371 (gui.in_use
3372# ifdef UNIX
Bram Moolenaar311d9822007-02-27 15:48:28 +00003373 && getuid() != ROOT_UID
Bram Moolenaar5f402312006-08-15 19:40:35 +00003374# endif
3375 ) ||
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003376# endif
3377 parmp->serverName_arg != NULL))
3378 {
3379 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3380 vim_free(parmp->servername);
3381 TIME_MSG("register server name");
3382 }
3383 else
3384 serverDelayedStartName = parmp->servername;
3385# endif
3386
3387 /*
3388 * Execute command ourselves if we're here because the send failed (or
3389 * else we would have exited above).
3390 */
3391 if (parmp->serverStr != NULL)
3392 {
3393 char_u *p;
3394
3395 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3396 parmp->serverStr, &p));
3397 vim_free(p);
3398 }
3399}
3400
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003401 static void
3402cmdsrv_main(argc, argv, serverName_arg, serverStr)
3403 int *argc;
3404 char **argv;
3405 char_u *serverName_arg;
3406 char_u **serverStr;
3407{
3408 char_u *res;
3409 int i;
3410 char_u *sname;
3411 int ret;
3412 int didone = FALSE;
3413 int exiterr = 0;
3414 char **newArgV = argv + 1;
3415 int newArgC = 1,
3416 Argc = *argc;
3417 int argtype;
3418#define ARGTYPE_OTHER 0
3419#define ARGTYPE_EDIT 1
3420#define ARGTYPE_EDIT_WAIT 2
3421#define ARGTYPE_SEND 3
3422 int silent = FALSE;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003423 int tabs = FALSE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003424# ifndef FEAT_X11
3425 HWND srv;
3426# else
3427 Window srv;
3428
3429 setup_term_clip();
3430# endif
3431
3432 sname = serverMakeName(serverName_arg, argv[0]);
3433 if (sname == NULL)
3434 return;
3435
3436 /*
3437 * Execute the command server related arguments and remove them
3438 * from the argc/argv array; We may have to return into main()
3439 */
3440 for (i = 1; i < Argc; i++)
3441 {
3442 res = NULL;
Bram Moolenaarc013cb62005-07-24 21:18:31 +00003443 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003444 {
3445 for (; i < *argc; i++)
3446 {
3447 *newArgV++ = argv[i];
3448 newArgC++;
3449 }
3450 break;
3451 }
3452
Bram Moolenaareb94e552006-03-11 21:35:11 +00003453 if (STRICMP(argv[i], "--remote-send") == 0)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003454 argtype = ARGTYPE_SEND;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003455 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3456 {
3457 char *p = argv[i] + 8;
3458
3459 argtype = ARGTYPE_EDIT;
3460 while (*p != NUL)
3461 {
3462 if (STRNICMP(p, "-wait", 5) == 0)
3463 {
3464 argtype = ARGTYPE_EDIT_WAIT;
3465 p += 5;
3466 }
3467 else if (STRNICMP(p, "-silent", 7) == 0)
3468 {
3469 silent = TRUE;
3470 p += 7;
3471 }
3472 else if (STRNICMP(p, "-tab", 4) == 0)
3473 {
3474 tabs = TRUE;
3475 p += 4;
3476 }
3477 else
3478 {
3479 argtype = ARGTYPE_OTHER;
3480 break;
3481 }
3482 }
3483 }
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003484 else
3485 argtype = ARGTYPE_OTHER;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003486
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003487 if (argtype != ARGTYPE_OTHER)
3488 {
3489 if (i == *argc - 1)
3490 mainerr_arg_missing((char_u *)argv[i]);
3491 if (argtype == ARGTYPE_SEND)
3492 {
3493 *serverStr = (char_u *)argv[i + 1];
3494 i++;
3495 }
3496 else
3497 {
3498 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
Bram Moolenaareb94e552006-03-11 21:35:11 +00003499 tabs, argtype == ARGTYPE_EDIT_WAIT);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003500 if (*serverStr == NULL)
3501 {
3502 /* Probably out of memory, exit. */
3503 didone = TRUE;
3504 exiterr = 1;
3505 break;
3506 }
3507 Argc = i;
3508 }
3509# ifdef FEAT_X11
3510 if (xterm_dpy == NULL)
3511 {
3512 mch_errmsg(_("No display"));
3513 ret = -1;
3514 }
3515 else
3516 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3517 NULL, &srv, 0, 0, silent);
3518# else
3519 /* Win32 always works? */
3520 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3521# endif
3522 if (ret < 0)
3523 {
3524 if (argtype == ARGTYPE_SEND)
3525 {
3526 /* Failed to send, abort. */
3527 mch_errmsg(_(": Send failed.\n"));
3528 didone = TRUE;
3529 exiterr = 1;
3530 }
3531 else if (!silent)
3532 /* Let vim start normally. */
3533 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3534 break;
3535 }
3536
3537# ifdef FEAT_GUI_W32
3538 /* Guess that when the server name starts with "g" it's a GUI
3539 * server, which we can bring to the foreground here.
3540 * Foreground() in the server doesn't work very well. */
3541 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3542 SetForegroundWindow(srv);
3543# endif
3544
3545 /*
3546 * For --remote-wait: Wait until the server did edit each
3547 * file. Also detect that the server no longer runs.
3548 */
3549 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3550 {
3551 int numFiles = *argc - i - 1;
3552 int j;
3553 char_u *done = alloc(numFiles);
3554 char_u *p;
3555# ifdef FEAT_GUI_W32
3556 NOTIFYICONDATA ni;
3557 int count = 0;
3558 extern HWND message_window;
3559# endif
3560
3561 if (numFiles > 0 && argv[i + 1][0] == '+')
3562 /* Skip "+cmd" argument, don't wait for it to be edited. */
3563 --numFiles;
3564
3565# ifdef FEAT_GUI_W32
3566 ni.cbSize = sizeof(ni);
3567 ni.hWnd = message_window;
3568 ni.uID = 0;
3569 ni.uFlags = NIF_ICON|NIF_TIP;
3570 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3571 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3572 Shell_NotifyIcon(NIM_ADD, &ni);
3573# endif
3574
3575 /* Wait for all files to unload in remote */
3576 memset(done, 0, numFiles);
3577 while (memchr(done, 0, numFiles) != NULL)
3578 {
3579# ifdef WIN32
3580 p = serverGetReply(srv, NULL, TRUE, TRUE);
3581 if (p == NULL)
3582 break;
3583# else
3584 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3585 break;
3586# endif
3587 j = atoi((char *)p);
3588 if (j >= 0 && j < numFiles)
3589 {
3590# ifdef FEAT_GUI_W32
3591 ++count;
3592 sprintf(ni.szTip, _("%d of %d edited"),
3593 count, numFiles);
3594 Shell_NotifyIcon(NIM_MODIFY, &ni);
3595# endif
3596 done[j] = 1;
3597 }
3598 }
3599# ifdef FEAT_GUI_W32
3600 Shell_NotifyIcon(NIM_DELETE, &ni);
3601# endif
3602 }
3603 }
3604 else if (STRICMP(argv[i], "--remote-expr") == 0)
3605 {
3606 if (i == *argc - 1)
3607 mainerr_arg_missing((char_u *)argv[i]);
3608# ifdef WIN32
3609 /* Win32 always works? */
3610 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3611 &res, NULL, 1, FALSE) < 0)
3612# else
3613 if (xterm_dpy == NULL)
3614 mch_errmsg(_("No display: Send expression failed.\n"));
3615 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3616 &res, NULL, 1, 1, FALSE) < 0)
3617# endif
3618 {
3619 if (res != NULL && *res != NUL)
3620 {
3621 /* Output error from remote */
3622 mch_errmsg((char *)res);
3623 vim_free(res);
3624 res = NULL;
3625 }
3626 mch_errmsg(_(": Send expression failed.\n"));
3627 }
3628 }
3629 else if (STRICMP(argv[i], "--serverlist") == 0)
3630 {
3631# ifdef WIN32
3632 /* Win32 always works? */
3633 res = serverGetVimNames();
3634# else
3635 if (xterm_dpy != NULL)
3636 res = serverGetVimNames(xterm_dpy);
3637# endif
3638 if (called_emsg)
3639 mch_errmsg("\n");
3640 }
3641 else if (STRICMP(argv[i], "--servername") == 0)
3642 {
3643 /* Alredy processed. Take it out of the command line */
3644 i++;
3645 continue;
3646 }
3647 else
3648 {
3649 *newArgV++ = argv[i];
3650 newArgC++;
3651 continue;
3652 }
3653 didone = TRUE;
3654 if (res != NULL && *res != NUL)
3655 {
3656 mch_msg((char *)res);
3657 if (res[STRLEN(res) - 1] != '\n')
3658 mch_msg("\n");
3659 }
3660 vim_free(res);
3661 }
3662
3663 if (didone)
3664 {
3665 display_errors(); /* display any collected messages */
3666 exit(exiterr); /* Mission accomplished - get out */
3667 }
3668
3669 /* Return back into main() */
3670 *argc = newArgC;
3671 vim_free(sname);
3672}
3673
3674/*
3675 * Build a ":drop" command to send to a Vim server.
3676 */
3677 static char_u *
Bram Moolenaareb94e552006-03-11 21:35:11 +00003678build_drop_cmd(filec, filev, tabs, sendReply)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003679 int filec;
3680 char **filev;
Bram Moolenaareb94e552006-03-11 21:35:11 +00003681 int tabs; /* Use ":tab drop" instead of ":drop". */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003682 int sendReply;
3683{
3684 garray_T ga;
3685 int i;
3686 char_u *inicmd = NULL;
3687 char_u *p;
3688 char_u cwd[MAXPATHL];
3689
3690 if (filec > 0 && filev[0][0] == '+')
3691 {
3692 inicmd = (char_u *)filev[0] + 1;
3693 filev++;
3694 filec--;
3695 }
3696 /* Check if we have at least one argument. */
3697 if (filec <= 0)
3698 mainerr_arg_missing((char_u *)filev[-1]);
3699 if (mch_dirname(cwd, MAXPATHL) != OK)
3700 return NULL;
Bram Moolenaar02b06312007-09-06 15:39:22 +00003701 if ((p = vim_strsave_escaped_ext(cwd,
3702#ifdef BACKSLASH_IN_FILENAME
3703 "", /* rem_backslash() will tell what chars to escape */
3704#else
3705 PATH_ESC_CHARS,
3706#endif
3707 '\\', TRUE)) == NULL)
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003708 return NULL;
3709 ga_init2(&ga, 1, 100);
3710 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3711 ga_concat(&ga, p);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003712 vim_free(p);
Bram Moolenaareb94e552006-03-11 21:35:11 +00003713
3714 /* Call inputsave() so that a prompt for an encryption key works. */
3715 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3716 if (tabs)
3717 ga_concat(&ga, (char_u *)"tab ");
3718 ga_concat(&ga, (char_u *)"drop");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003719 for (i = 0; i < filec; i++)
3720 {
3721 /* On Unix the shell has already expanded the wildcards, don't want to
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003722 * do it again in the Vim server. On MS-Windows only escape
3723 * non-wildcard characters. */
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003724 p = vim_strsave_escaped((char_u *)filev[i],
3725#ifdef UNIX
3726 PATH_ESC_CHARS
3727#else
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003728 (char_u *)" \t%#"
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003729#endif
3730 );
3731 if (p == NULL)
3732 {
3733 vim_free(ga.ga_data);
3734 return NULL;
3735 }
3736 ga_concat(&ga, (char_u *)" ");
3737 ga_concat(&ga, p);
3738 vim_free(p);
3739 }
3740 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3741 * CTRL-\ CTRL-N again. */
3742 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3743 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3744 if (sendReply)
3745 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3746 ga_concat(&ga, (char_u *)"<CR>:");
3747 if (inicmd != NULL)
3748 {
3749 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3750 * the following commands to be inserted as text. Use a "|",
3751 * hopefully "inicmd" does allow this... */
3752 ga_concat(&ga, inicmd);
3753 ga_concat(&ga, (char_u *)"|");
3754 }
3755 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3756 * clear command line. */
Bram Moolenaar567e4de2004-12-31 21:01:02 +00003757 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003758 ga_append(&ga, NUL);
3759 return ga.ga_data;
3760}
3761
3762/*
3763 * Replace termcodes such as <CR> and insert as key presses if there is room.
3764 */
3765 void
3766server_to_input_buf(str)
3767 char_u *str;
3768{
3769 char_u *ptr = NULL;
3770 char_u *cpo_save = p_cpo;
3771
3772 /* Set 'cpoptions' the way we want it.
3773 * B set - backslashes are *not* treated specially
3774 * k set - keycodes are *not* reverse-engineered
3775 * < unset - <Key> sequences *are* interpreted
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003776 * The last but one parameter of replace_termcodes() is TRUE so that the
3777 * <lt> sequence is recognised - needed for a real backslash.
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003778 */
3779 p_cpo = (char_u *)"Bk";
Bram Moolenaar8b2d9c42006-05-03 21:28:47 +00003780 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003781 p_cpo = cpo_save;
3782
3783 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3784 {
3785 /*
3786 * Add the string to the input stream.
3787 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3788 *
3789 * First clear typed characters from the typeahead buffer, there could
3790 * be half a mapping there. Then append to the existing string, so
3791 * that multiple commands from a client are concatenated.
3792 */
3793 if (typebuf.tb_maplen < typebuf.tb_len)
3794 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3795 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3796
3797 /* Let input_available() know we inserted text in the typeahead
3798 * buffer. */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003799 typebuf_was_filled = TRUE;
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003800 }
3801 vim_free((char_u *)ptr);
3802}
3803
3804/*
3805 * Evaluate an expression that the client sent to a string.
3806 * Handles disabling error messages and disables debugging, otherwise Vim
3807 * hangs, waiting for "cont" to be typed.
3808 */
3809 char_u *
3810eval_client_expr_to_string(expr)
3811 char_u *expr;
3812{
3813 char_u *res;
3814 int save_dbl = debug_break_level;
3815 int save_ro = redir_off;
3816
3817 debug_break_level = -1;
3818 redir_off = 0;
3819 ++emsg_skip;
3820
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003821 res = eval_to_string(expr, NULL, TRUE);
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003822
3823 debug_break_level = save_dbl;
3824 redir_off = save_ro;
3825 --emsg_skip;
3826
Bram Moolenaar63a121b2005-12-11 21:36:39 +00003827 /* A client can tell us to redraw, but not to display the cursor, so do
3828 * that here. */
3829 setcursor();
3830 out_flush();
3831#ifdef FEAT_GUI
3832 if (gui.in_use)
3833 gui_update_cursor(FALSE, FALSE);
3834#endif
3835
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003836 return res;
3837}
3838
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003839/*
3840 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3841 * return an allocated string. Otherwise return "data".
3842 * "*tofree" is set to the result when it needs to be freed later.
3843 */
3844/*ARGSUSED*/
3845 char_u *
3846serverConvert(client_enc, data, tofree)
3847 char_u *client_enc;
3848 char_u *data;
3849 char_u **tofree;
3850{
3851 char_u *res = data;
3852
3853 *tofree = NULL;
3854# ifdef FEAT_MBYTE
3855 if (client_enc != NULL && p_enc != NULL)
3856 {
3857 vimconv_T vimconv;
3858
3859 vimconv.vc_type = CONV_NONE;
3860 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3861 && vimconv.vc_type != CONV_NONE)
3862 {
3863 res = string_convert(&vimconv, data, NULL);
3864 if (res == NULL)
3865 res = data;
3866 else
3867 *tofree = res;
3868 }
3869 convert_setup(&vimconv, NULL, NULL);
3870 }
3871# endif
3872 return res;
3873}
3874
Bram Moolenaarb4210b32004-06-13 14:51:16 +00003875
3876/*
3877 * Make our basic server name: use the specified "arg" if given, otherwise use
3878 * the tail of the command "cmd" we were started with.
3879 * Return the name in allocated memory. This doesn't include a serial number.
3880 */
3881 static char_u *
3882serverMakeName(arg, cmd)
3883 char_u *arg;
3884 char *cmd;
3885{
3886 char_u *p;
3887
3888 if (arg != NULL && *arg != NUL)
3889 p = vim_strsave_up(arg);
3890 else
3891 {
3892 p = vim_strsave_up(gettail((char_u *)cmd));
3893 /* Remove .exe or .bat from the name. */
3894 if (p != NULL && vim_strchr(p, '.') != NULL)
3895 *vim_strchr(p, '.') = NUL;
3896 }
3897 return p;
3898}
3899#endif /* FEAT_CLIENTSERVER */
3900
3901/*
3902 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3903 */
3904#if defined(FEAT_FKMAP) || defined(PROTO)
3905# include "farsi.c"
3906#endif
3907
3908/*
3909 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3910 */
3911#if defined(FEAT_ARABIC) || defined(PROTO)
3912# include "arabic.c"
3913#endif