Merged from the latest developing branch.
[MacVim.git] / src / main.c
blob2a02615f43f4abf0b8c66741920b98fb732ced22
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
10 #if defined(MSDOS) || defined(WIN32) || defined(_WIN64)
11 # include "vimio.h" /* for close() and dup() */
12 #endif
14 #define EXTERN
15 #include "vim.h"
17 #ifdef SPAWNO
18 # include <spawno.h> /* special MS-DOS swapping library */
19 #endif
21 #ifdef HAVE_FCNTL_H
22 # include <fcntl.h>
23 #endif
25 #ifdef __CYGWIN__
26 # ifndef WIN32
27 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() */
28 # endif
29 # include <limits.h>
30 #endif
32 /* Maximum number of commands from + or -c arguments. */
33 #define MAX_ARG_CMDS 10
35 /* values for "window_layout" */
36 #define WIN_HOR 1 /* "-o" horizontally split windows */
37 #define WIN_VER 2 /* "-O" vertically split windows */
38 #define WIN_TABS 3 /* "-p" windows on tab pages */
40 /* Struct for various parameters passed between main() and other functions. */
41 typedef struct
43 int argc;
44 char **argv;
46 int evim_mode; /* started as "evim" */
47 char_u *use_vimrc; /* vimrc from -u argument */
49 int n_commands; /* no. of commands from + or -c */
50 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
51 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
52 int n_pre_commands; /* no. of commands from --cmd */
53 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
55 int edit_type; /* type of editing to do */
56 char_u *tagname; /* tag from -t argument */
57 #ifdef FEAT_QUICKFIX
58 char_u *use_ef; /* 'errorfile' from -q argument */
59 #endif
61 int want_full_screen;
62 int stdout_isatty; /* is stdout a terminal? */
63 char_u *term; /* specified terminal name */
64 #ifdef FEAT_CRYPT
65 int ask_for_key; /* -x argument */
66 #endif
67 int no_swap_file; /* "-n" argument used */
68 #ifdef FEAT_EVAL
69 int use_debug_break_level;
70 #endif
71 #ifdef FEAT_WINDOWS
72 int window_count; /* number of windows to use */
73 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
74 #endif
76 #ifdef FEAT_CLIENTSERVER
77 int serverArg; /* TRUE when argument for a server */
78 char_u *serverName_arg; /* cmdline arg for server name */
79 char_u *serverStr; /* remote server command */
80 char_u *serverStrEnc; /* encoding of serverStr */
81 char_u *servername; /* allocated name for our server */
82 #endif
83 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
84 int literal; /* don't expand file names */
85 #endif
86 #ifdef MSWIN
87 int full_path; /* file name argument was full path */
88 #endif
89 #ifdef FEAT_DIFF
90 int diff_mode; /* start with 'diff' set */
91 #endif
92 } mparm_T;
94 /* Values for edit_type. */
95 #define EDIT_NONE 0 /* no edit type yet */
96 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */
97 #define EDIT_STDIN 2 /* read file from stdin */
98 #define EDIT_TAG 3 /* tag name argument given, use tagname */
99 #define EDIT_QF 4 /* start in quickfix mode */
101 #if defined(UNIX) || defined(VMS)
102 static int file_owned __ARGS((char *fname));
103 #endif
104 static void mainerr __ARGS((int, char_u *));
105 static void main_msg __ARGS((char *s));
106 static void usage __ARGS((void));
107 static int get_number_arg __ARGS((char_u *p, int *idx, int def));
108 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
109 static void init_locale __ARGS((void));
110 #endif
111 static void parse_command_name __ARGS((mparm_T *parmp));
112 static void early_arg_scan __ARGS((mparm_T *parmp));
113 static void command_line_scan __ARGS((mparm_T *parmp));
114 static void check_tty __ARGS((mparm_T *parmp));
115 static void read_stdin __ARGS((void));
116 static void create_windows __ARGS((mparm_T *parmp));
117 #ifdef FEAT_WINDOWS
118 static void edit_buffers __ARGS((mparm_T *parmp));
119 #endif
120 static void exe_pre_commands __ARGS((mparm_T *parmp));
121 static void exe_commands __ARGS((mparm_T *parmp));
122 static void source_startup_scripts __ARGS((mparm_T *parmp));
123 static void main_start_gui __ARGS((void));
124 #if defined(HAS_SWAP_EXISTS_ACTION)
125 static void check_swap_exists_action __ARGS((void));
126 #endif
127 #ifdef FEAT_CLIENTSERVER
128 static void exec_on_server __ARGS((mparm_T *parmp));
129 static void prepare_server __ARGS((mparm_T *parmp));
130 static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
131 static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
132 #endif
135 #ifdef STARTUPTIME
136 static FILE *time_fd = NULL;
137 #endif
140 * Different types of error messages.
142 static char *(main_errors[]) =
144 N_("Unknown option argument"),
145 #define ME_UNKNOWN_OPTION 0
146 N_("Too many edit arguments"),
147 #define ME_TOO_MANY_ARGS 1
148 N_("Argument missing after"),
149 #define ME_ARG_MISSING 2
150 N_("Garbage after option argument"),
151 #define ME_GARBAGE 3
152 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
153 #define ME_EXTRA_CMD 4
154 N_("Invalid argument for"),
155 #define ME_INVALID_ARG 5
158 #ifndef PROTO /* don't want a prototype for main() */
160 # ifdef VIMDLL
161 _export
162 # endif
163 # ifdef FEAT_GUI_MSWIN
164 # ifdef __BORLANDC__
165 _cdecl
166 # endif
167 VimMain
168 # else
169 main
170 # endif
171 (argc, argv)
172 int argc;
173 char **argv;
175 char_u *fname = NULL; /* file name from command line */
176 mparm_T params; /* various parameters passed between
177 * main() and other functions. */
180 * Do any system-specific initialisations. These can NOT use IObuff or
181 * NameBuff. Thus emsg2() cannot be called!
183 mch_early_init();
185 /* Many variables are in "params" so that we can pass them to invoked
186 * functions without a lot of arguments. "argc" and "argv" are also
187 * copied, so that they can be changed. */
188 vim_memset(&params, 0, sizeof(params));
189 params.argc = argc;
190 params.argv = argv;
191 params.want_full_screen = TRUE;
192 #ifdef FEAT_EVAL
193 params.use_debug_break_level = -1;
194 #endif
195 #ifdef FEAT_WINDOWS
196 params.window_count = -1;
197 #endif
199 #ifdef FEAT_TCL
200 vim_tcl_init(params.argv[0]);
201 #endif
203 #ifdef MEM_PROFILE
204 atexit(vim_mem_profile_dump);
205 #endif
207 #ifdef STARTUPTIME
208 time_fd = mch_fopen(STARTUPTIME, "a");
209 TIME_MSG("--- VIM STARTING ---");
210 #endif
211 starttime = time(NULL);
213 #ifdef __EMX__
214 _wildcard(&params.argc, &params.argv);
215 #endif
217 #ifdef FEAT_MBYTE
218 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
219 #endif
220 #ifdef FEAT_EVAL
221 eval_init(); /* init global variables */
222 #endif
224 #ifdef __QNXNTO__
225 qnx_init(); /* PhAttach() for clipboard, (and gui) */
226 #endif
228 #ifdef MAC_OS_CLASSIC
229 /* Prepare for possibly starting GUI sometime */
230 /* Macintosh needs this before any memory is allocated. */
231 gui_prepare(&params.argc, params.argv);
232 TIME_MSG("GUI prepared");
233 #endif
235 /* Init the table of Normal mode commands. */
236 init_normal_cmds();
238 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
239 make_version(); /* Construct the long version string. */
240 #endif
243 * Allocate space for the generic buffers (needed for set_init_1() and
244 * EMSG2()).
246 if ((IObuff = alloc(IOSIZE)) == NULL
247 || (NameBuff = alloc(MAXPATHL)) == NULL)
248 mch_exit(0);
249 TIME_MSG("Allocated generic buffers");
251 #ifdef NBDEBUG
252 /* Wait a moment for debugging NetBeans. Must be after allocating
253 * NameBuff. */
254 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
255 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
256 TIME_MSG("NetBeans debug wait");
257 #endif
259 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
261 * Setup to use the current locale (for ctype() and many other things).
262 * NOTE: Translated messages with encodings other than latin1 will not
263 * work until set_init_1() has been called!
265 init_locale();
266 TIME_MSG("locale set");
267 #endif
269 #ifdef FEAT_GUI
270 gui.dofork = TRUE; /* default is to use fork() */
271 #endif
274 * Do a first scan of the arguments in "argv[]":
275 * -display or --display
276 * --server...
277 * --socketid
278 * --windowid
280 early_arg_scan(&params);
282 #ifdef FEAT_SUN_WORKSHOP
283 findYourself(params.argv[0]);
284 #endif
285 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
286 /* Prepare for possibly starting GUI sometime */
287 gui_prepare(&params.argc, params.argv);
288 TIME_MSG("GUI prepared");
289 #endif
291 #ifdef FEAT_CLIPBOARD
292 clip_init(FALSE); /* Initialise clipboard stuff */
293 TIME_MSG("clipboard setup");
294 #endif
297 * Check if we have an interactive window.
298 * On the Amiga: If there is no window, we open one with a newcli command
299 * (needed for :! to * work). mch_check_win() will also handle the -d or
300 * -dev argument.
302 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
303 TIME_MSG("window checked");
306 * Allocate the first window and buffer.
307 * Can't do anything without it, exit when it fails.
309 if (win_alloc_first() == FAIL)
310 mch_exit(0);
312 init_yank(); /* init yank buffers */
314 alist_init(&global_alist); /* Init the argument list to empty. */
317 * Set the default values for the options.
318 * NOTE: Non-latin1 translated messages are working only after this,
319 * because this is where "has_mbyte" will be set, which is used by
320 * msg_outtrans_len_attr().
321 * First find out the home directory, needed to expand "~" in options.
323 init_homedir(); /* find real value of $HOME */
324 set_init_1();
325 TIME_MSG("inits 1");
327 #ifdef FEAT_EVAL
328 set_lang_var(); /* set v:lang and v:ctype */
329 #endif
331 #ifdef FEAT_CLIENTSERVER
333 * Do the client-server stuff, unless "--servername ''" was used.
334 * This may exit Vim if the command was sent to the server.
336 exec_on_server(&params);
337 #endif
340 * Figure out the way to work from the command name argv[0].
341 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
343 parse_command_name(&params);
346 * Process the command line arguments. File names are put in the global
347 * argument list "global_alist".
349 command_line_scan(&params);
350 TIME_MSG("parsing arguments");
353 * On some systems, when we compile with the GUI, we always use it. On Mac
354 * there is no terminal version, and on Windows we can't fork one off with
355 * :gui.
357 #ifdef ALWAYS_USE_GUI
358 gui.starting = TRUE;
359 #else
360 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
362 * Check if the GUI can be started. Reset gui.starting if not.
363 * Don't know about other systems, stay on the safe side and don't check.
365 if (gui.starting && gui_init_check() == FAIL)
367 gui.starting = FALSE;
369 /* When running "evim" or "gvim -y" we need the menus, exit if we
370 * don't have them. */
371 if (params.evim_mode)
372 mch_exit(1);
374 # endif
375 #endif
377 if (GARGCOUNT > 0)
379 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
381 * Expand wildcards in file names.
383 if (!params.literal)
385 /* Temporarily add '(' and ')' to 'isfname'. These are valid
386 * filename characters but are excluded from 'isfname' to make
387 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
388 do_cmdline_cmd((char_u *)":set isf+=(,)");
389 alist_expand(NULL, 0);
390 do_cmdline_cmd((char_u *)":set isf&");
392 #endif
393 fname = alist_name(&GARGLIST[0]);
396 #if defined(WIN32) && defined(FEAT_MBYTE)
398 extern void set_alist_count(void);
400 /* Remember the number of entries in the argument list. If it changes
401 * we don't react on setting 'encoding'. */
402 set_alist_count();
404 #endif
406 #ifdef MSWIN
407 if (GARGCOUNT == 1 && params.full_path)
410 * If there is one filename, fully qualified, we have very probably
411 * been invoked from explorer, so change to the file's directory.
412 * Hint: to avoid this when typing a command use a forward slash.
413 * If the cd fails, it doesn't matter.
415 (void)vim_chdirfile(fname);
417 #endif
418 TIME_MSG("expanding arguments");
420 #ifdef FEAT_DIFF
421 if (params.diff_mode && params.window_count == -1)
422 params.window_count = 0; /* open up to 3 windows */
423 #endif
425 /* Don't redraw until much later. */
426 ++RedrawingDisabled;
429 * When listing swap file names, don't do cursor positioning et. al.
431 if (recoverymode && fname == NULL)
432 params.want_full_screen = FALSE;
435 * When certain to start the GUI, don't check capabilities of terminal.
436 * For GTK we can't be sure, but when started from the desktop it doesn't
437 * make sense to try using a terminal.
439 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
440 if (gui.starting
441 # ifdef FEAT_GUI_GTK
442 && !isatty(2)
443 # endif
445 params.want_full_screen = FALSE;
446 #endif
448 #if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
449 /* When the GUI is started from Finder, need to display messages in a
450 * message box. isatty(2) returns TRUE anyway, thus we need to check the
451 * name to know we're not started from a terminal. */
452 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
454 params.want_full_screen = FALSE;
456 /* Avoid always using "/" as the current directory. Note that when
457 * started from Finder the arglist will be filled later in
458 * HandleODocAE() and "fname" will be NULL. */
459 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
460 && STRCMP(NameBuff, "/") == 0)
462 if (fname != NULL)
463 (void)vim_chdirfile(fname);
464 else
466 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
467 vim_chdir(NameBuff);
471 #endif
474 * mch_init() sets up the terminal (window) for use. This must be
475 * done after resetting full_screen, otherwise it may move the cursor
476 * (MSDOS).
477 * Note that we may use mch_exit() before mch_init()!
479 mch_init();
480 TIME_MSG("shell init");
482 #ifdef USE_XSMP
484 * For want of anywhere else to do it, try to connect to xsmp here.
485 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
486 * Hijacking -X 'no X connection' to also disable XSMP connection as that
487 * has a similar delay upon failure.
488 * Only try if SESSION_MANAGER is set to something non-null.
490 if (!x_no_connect)
492 char *p = getenv("SESSION_MANAGER");
494 if (p != NULL && *p != NUL)
496 xsmp_init();
497 TIME_MSG("xsmp init");
500 #endif
503 * Print a warning if stdout is not a terminal.
505 check_tty(&params);
507 /* This message comes before term inits, but after setting "silent_mode"
508 * when the input is not a tty. */
509 if (GARGCOUNT > 1 && !silent_mode)
510 printf(_("%d files to edit\n"), GARGCOUNT);
512 if (params.want_full_screen && !silent_mode)
514 termcapinit(params.term); /* set terminal name and get terminal
515 capabilities (will set full_screen) */
516 screen_start(); /* don't know where cursor is now */
517 TIME_MSG("Termcap init");
521 * Set the default values for the options that use Rows and Columns.
523 ui_get_shellsize(); /* inits Rows and Columns */
524 #ifdef FEAT_NETBEANS_INTG
525 if (usingNetbeans)
526 Columns += 2; /* leave room for glyph gutter */
527 #endif
528 win_init_size();
529 #ifdef FEAT_DIFF
530 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
531 * file. There is no buffer yet though. */
532 if (params.diff_mode)
533 diff_win_options(firstwin, FALSE);
534 #endif
536 cmdline_row = Rows - p_ch;
537 msg_row = cmdline_row;
538 screenalloc(FALSE); /* allocate screen buffers */
539 set_init_2();
540 TIME_MSG("inits 2");
542 msg_scroll = TRUE;
543 no_wait_return = TRUE;
545 init_mappings(); /* set up initial mappings */
547 init_highlight(TRUE, FALSE); /* set the default highlight groups */
548 TIME_MSG("init highlight");
550 #ifdef FEAT_EVAL
551 /* Set the break level after the terminal is initialized. */
552 debug_break_level = params.use_debug_break_level;
553 #endif
555 /* Execute --cmd arguments. */
556 exe_pre_commands(&params);
558 /* Source startup scripts. */
559 source_startup_scripts(&params);
561 #ifdef FEAT_EVAL
563 * Read all the plugin files.
564 * Only when compiled with +eval, since most plugins need it.
566 if (p_lpl)
568 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
569 source_runtime((char_u *)"plugin/*.vim", TRUE);
570 # else
571 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
572 # endif
573 TIME_MSG("loading plugins");
575 #endif
577 #ifdef FEAT_DIFF
578 /* Decide about window layout for diff mode after reading vimrc. */
579 if (params.diff_mode && params.window_layout == 0)
581 if (diffopt_horizontal())
582 params.window_layout = WIN_HOR; /* use horizontal split */
583 else
584 params.window_layout = WIN_VER; /* use vertical split */
586 #endif
589 * Recovery mode without a file name: List swap files.
590 * This uses the 'dir' option, therefore it must be after the
591 * initializations.
593 if (recoverymode && fname == NULL)
595 recover_names(NULL, TRUE, 0);
596 mch_exit(0);
600 * Set a few option defaults after reading .vimrc files:
601 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
603 set_init_3();
604 TIME_MSG("inits 3");
607 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
608 * Note that this overrides anything from a vimrc file.
610 if (params.no_swap_file)
611 p_uc = 0;
613 #ifdef FEAT_FKMAP
614 if (curwin->w_p_rl && p_altkeymap)
616 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
617 # ifdef FEAT_ARABIC
618 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
619 # endif
620 p_fkmap = TRUE; /* Set the Farsi keymap mode */
622 #endif
624 #ifdef FEAT_GUI
625 if (gui.starting)
627 #if defined(UNIX) || defined(VMS)
628 /* When something caused a message from a vimrc script, need to output
629 * an extra newline before the shell prompt. */
630 if (did_emsg || msg_didout)
631 putchar('\n');
632 #endif
634 gui_start(); /* will set full_screen to TRUE */
635 TIME_MSG("starting GUI");
637 /* When running "evim" or "gvim -y" we need the menus, exit if we
638 * don't have them. */
639 if (!gui.in_use && params.evim_mode)
640 mch_exit(1);
642 #endif
644 #ifdef SPAWNO /* special MSDOS swapping library */
645 init_SPAWNO("", SWAP_ANY);
646 #endif
648 #ifdef FEAT_VIMINFO
650 * Read in registers, history etc, but not marks, from the viminfo file
652 if (*p_viminfo != NUL)
654 read_viminfo(NULL, TRUE, FALSE, FALSE);
655 TIME_MSG("reading viminfo");
657 #endif
659 #ifdef FEAT_QUICKFIX
661 * "-q errorfile": Load the error file now.
662 * If the error file can't be read, exit before doing anything else.
664 if (params.edit_type == EDIT_QF)
666 if (params.use_ef != NULL)
667 set_string_option_direct((char_u *)"ef", -1,
668 params.use_ef, OPT_FREE, SID_CARG);
669 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
671 out_char('\n');
672 mch_exit(3);
674 TIME_MSG("reading errorfile");
676 #endif
679 * Start putting things on the screen.
680 * Scroll screen down before drawing over it
681 * Clear screen now, so file message will not be cleared.
683 starting = NO_BUFFERS;
684 no_wait_return = FALSE;
685 if (!exmode_active)
686 msg_scroll = FALSE;
688 #ifdef FEAT_GUI
690 * This seems to be required to make callbacks to be called now, instead
691 * of after things have been put on the screen, which then may be deleted
692 * when getting a resize callback.
693 * For the Mac this handles putting files dropped on the Vim icon to
694 * global_alist.
696 if (gui.in_use)
698 # ifdef FEAT_SUN_WORKSHOP
699 if (!usingSunWorkShop)
700 # endif
701 gui_wait_for_chars(50L);
702 TIME_MSG("GUI delay");
704 #endif
706 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
707 qnx_clip_init();
708 #endif
710 #ifdef FEAT_XCLIPBOARD
711 /* Start using the X clipboard, unless the GUI was started. */
712 # ifdef FEAT_GUI
713 if (!gui.in_use)
714 # endif
716 setup_term_clip();
717 TIME_MSG("setup clipboard");
719 #endif
721 #ifdef FEAT_CLIENTSERVER
722 /* Prepare for being a Vim server. */
723 prepare_server(&params);
724 #endif
727 * If "-" argument given: Read file from stdin.
728 * Do this before starting Raw mode, because it may change things that the
729 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
730 * are the same terminal: "cat | vim -".
731 * Using autocommands here may cause trouble...
733 if (params.edit_type == EDIT_STDIN && !recoverymode)
734 read_stdin();
736 #if defined(UNIX) || defined(VMS)
737 /* When switching screens and something caused a message from a vimrc
738 * script, need to output an extra newline on exit. */
739 if ((did_emsg || msg_didout) && *T_TI != NUL)
740 newline_on_exit = TRUE;
741 #endif
744 * When done something that is not allowed or error message call
745 * wait_return. This must be done before starttermcap(), because it may
746 * switch to another screen. It must be done after settmode(TMODE_RAW),
747 * because we want to react on a single key stroke.
748 * Call settmode and starttermcap here, so the T_KS and T_TI may be
749 * defined by termcapinit and redefined in .exrc.
751 settmode(TMODE_RAW);
752 TIME_MSG("setting raw mode");
754 if (need_wait_return || msg_didany)
756 wait_return(TRUE);
757 TIME_MSG("waiting for return");
760 starttermcap(); /* start termcap if not done by wait_return() */
761 TIME_MSG("start termcap");
763 #ifdef FEAT_MOUSE
764 setmouse(); /* may start using the mouse */
765 #endif
766 if (scroll_region)
767 scroll_region_reset(); /* In case Rows changed */
768 scroll_start(); /* may scroll the screen to the right position */
771 * Don't clear the screen when starting in Ex mode, unless using the GUI.
773 if (exmode_active
774 #ifdef FEAT_GUI
775 && !gui.in_use
776 #endif
778 must_redraw = CLEAR;
779 else
781 screenclear(); /* clear screen */
782 TIME_MSG("clearing screen");
785 #ifdef FEAT_CRYPT
786 if (params.ask_for_key)
788 (void)get_crypt_key(TRUE, TRUE);
789 TIME_MSG("getting crypt key");
791 #endif
793 no_wait_return = TRUE;
796 * Create the requested number of windows and edit buffers in them.
797 * Also does recovery if "recoverymode" set.
799 create_windows(&params);
800 TIME_MSG("opening buffers");
802 #ifdef FEAT_EVAL
803 /* clear v:swapcommand */
804 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
805 #endif
807 /* Ex starts at last line of the file */
808 if (exmode_active)
809 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
811 #ifdef FEAT_AUTOCMD
812 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
813 TIME_MSG("BufEnter autocommands");
814 #endif
815 setpcmark();
817 #ifdef FEAT_QUICKFIX
819 * When started with "-q errorfile" jump to first error now.
821 if (params.edit_type == EDIT_QF)
823 qf_jump(NULL, 0, 0, FALSE);
824 TIME_MSG("jump to first error");
826 #endif
828 #ifdef FEAT_WINDOWS
830 * If opened more than one window, start editing files in the other
831 * windows.
833 edit_buffers(&params);
834 #endif
836 #ifdef FEAT_DIFF
837 if (params.diff_mode)
839 win_T *wp;
841 /* set options in each window for "vimdiff". */
842 for (wp = firstwin; wp != NULL; wp = wp->w_next)
843 diff_win_options(wp, TRUE);
845 #endif
848 * Shorten any of the filenames, but only when absolute.
850 shorten_fnames(FALSE);
853 * Need to jump to the tag before executing the '-c command'.
854 * Makes "vim -c '/return' -t main" work.
856 if (params.tagname != NULL)
858 #if defined(HAS_SWAP_EXISTS_ACTION)
859 swap_exists_did_quit = FALSE;
860 #endif
862 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
863 do_cmdline_cmd(IObuff);
864 TIME_MSG("jumping to tag");
866 #if defined(HAS_SWAP_EXISTS_ACTION)
867 /* If the user doesn't want to edit the file then we quit here. */
868 if (swap_exists_did_quit)
869 getout(1);
870 #endif
873 /* Execute any "+", "-c" and "-S" arguments. */
874 if (params.n_commands > 0)
875 exe_commands(&params);
877 RedrawingDisabled = 0;
878 redraw_all_later(NOT_VALID);
879 no_wait_return = FALSE;
880 starting = 0;
882 #ifdef FEAT_TERMRESPONSE
883 /* Requesting the termresponse is postponed until here, so that a "-c q"
884 * argument doesn't make it appear in the shell Vim was started from. */
885 may_req_termresponse();
886 #endif
888 /* start in insert mode */
889 if (p_im)
890 need_start_insertmode = TRUE;
892 #ifdef FEAT_AUTOCMD
893 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
894 TIME_MSG("VimEnter autocommands");
895 #endif
897 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
898 /* When a startup script or session file setup for diff'ing and
899 * scrollbind, sync the scrollbind now. */
900 if (curwin->w_p_diff && curwin->w_p_scb)
902 update_topline();
903 check_scrollbind((linenr_T)0, 0L);
904 TIME_MSG("diff scrollbinding");
906 #endif
908 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
909 mch_set_winsize_now(); /* Allow winsize changes from now on */
910 #endif
912 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
913 /* When tab pages were created, may need to update the tab pages line and
914 * scrollbars. This is skipped while creating them. */
915 if (first_tabpage->tp_next != NULL)
917 out_flush();
918 gui_init_which_components(NULL);
919 gui_update_scrollbars(TRUE);
921 need_mouse_correct = TRUE;
922 #endif
924 /* If ":startinsert" command used, stuff a dummy command to be able to
925 * call normal_cmd(), which will then start Insert mode. */
926 if (restart_edit != 0)
927 stuffcharReadbuff(K_NOP);
929 #ifdef FEAT_NETBEANS_INTG
930 if (usingNetbeans)
931 /* Tell the client that it can start sending commands. */
932 netbeans_startup_done();
933 #endif
935 TIME_MSG("before starting main loop");
938 * Call the main command loop. This never returns.
940 main_loop(FALSE, FALSE);
942 return 0;
944 #endif /* PROTO */
947 * Main loop: Execute Normal mode commands until exiting Vim.
948 * Also used to handle commands in the command-line window, until the window
949 * is closed.
950 * Also used to handle ":visual" command after ":global": execute Normal mode
951 * commands, return when entering Ex mode. "noexmode" is TRUE then.
953 void
954 main_loop(cmdwin, noexmode)
955 int cmdwin; /* TRUE when working in the command-line window */
956 int noexmode; /* TRUE when return on entering Ex mode */
958 oparg_T oa; /* operator arguments */
959 int previous_got_int = FALSE; /* "got_int" was TRUE */
961 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
962 /* Setup to catch a terminating error from the X server. Just ignore
963 * it, restore the state and continue. This might not always work
964 * properly, but at least we don't exit unexpectedly when the X server
965 * exists while Vim is running in a console. */
966 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
968 State = NORMAL;
969 # ifdef FEAT_VISUAL
970 VIsual_active = FALSE;
971 # endif
972 got_int = TRUE;
973 need_wait_return = FALSE;
974 global_busy = FALSE;
975 exmode_active = 0;
976 skip_redraw = FALSE;
977 RedrawingDisabled = 0;
978 no_wait_return = 0;
979 # ifdef FEAT_EVAL
980 emsg_skip = 0;
981 # endif
982 emsg_off = 0;
983 # ifdef FEAT_MOUSE
984 setmouse();
985 # endif
986 settmode(TMODE_RAW);
987 starttermcap();
988 scroll_start();
989 redraw_later_clear();
991 #endif
993 clear_oparg(&oa);
994 while (!cmdwin
995 #ifdef FEAT_CMDWIN
996 || cmdwin_result == 0
997 #endif
1000 if (stuff_empty())
1002 did_check_timestamps = FALSE;
1003 if (need_check_timestamps)
1004 check_timestamps(FALSE);
1005 if (need_wait_return) /* if wait_return still needed ... */
1006 wait_return(FALSE); /* ... call it now */
1007 if (need_start_insertmode && goto_im()
1008 #ifdef FEAT_VISUAL
1009 && !VIsual_active
1010 #endif
1013 need_start_insertmode = FALSE;
1014 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1015 /* skip the fileinfo message now, because it would be shown
1016 * after insert mode finishes! */
1017 need_fileinfo = FALSE;
1021 /* Reset "got_int" now that we got back to the main loop. Except when
1022 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1023 * the ":g" command.
1024 * For ":g/pat/vi" we reset "got_int" when used once. When used
1025 * a second time we go back to Ex mode and abort the ":g" command. */
1026 if (got_int)
1028 if (noexmode && global_busy && !exmode_active && previous_got_int)
1030 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1031 * used and keep "got_int" set, so that it aborts ":g". */
1032 exmode_active = EXMODE_NORMAL;
1033 State = NORMAL;
1035 else if (!global_busy || !exmode_active)
1037 if (!quit_more)
1038 (void)vgetc(); /* flush all buffers */
1039 got_int = FALSE;
1041 previous_got_int = TRUE;
1043 else
1044 previous_got_int = FALSE;
1046 if (!exmode_active)
1047 msg_scroll = FALSE;
1048 quit_more = FALSE;
1051 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1052 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1053 * update cursor and redraw.
1055 if (skip_redraw || exmode_active)
1056 skip_redraw = FALSE;
1057 else if (do_redraw || stuff_empty())
1059 #ifdef FEAT_AUTOCMD
1060 /* Trigger CursorMoved if the cursor moved. */
1061 if (!finish_op && has_cursormoved()
1062 && !equalpos(last_cursormoved, curwin->w_cursor))
1064 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1065 last_cursormoved = curwin->w_cursor;
1067 #endif
1069 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1070 /* Scroll-binding for diff mode may have been postponed until
1071 * here. Avoids doing it for every change. */
1072 if (diff_need_scrollbind)
1074 check_scrollbind((linenr_T)0, 0L);
1075 diff_need_scrollbind = FALSE;
1077 #endif
1078 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1079 /* Include a closed fold completely in the Visual area. */
1080 foldAdjustVisual();
1081 #endif
1082 #ifdef FEAT_FOLDING
1084 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1085 * contain the cursor.
1086 * When 'foldopen' is "all", open the fold(s) under the cursor.
1087 * This may mark the window for redrawing.
1089 if (hasAnyFolding(curwin) && !char_avail())
1091 foldCheckClose();
1092 if (fdo_flags & FDO_ALL)
1093 foldOpenCursor();
1095 #endif
1098 * Before redrawing, make sure w_topline is correct, and w_leftcol
1099 * if lines don't wrap, and w_skipcol if lines wrap.
1101 update_topline();
1102 validate_cursor();
1104 #ifdef FEAT_VISUAL
1105 if (VIsual_active)
1106 update_curbuf(INVERTED);/* update inverted part */
1107 else
1108 #endif
1109 if (must_redraw)
1110 update_screen(0);
1111 else if (redraw_cmdline || clear_cmdline)
1112 showmode();
1113 #ifdef FEAT_WINDOWS
1114 redraw_statuslines();
1115 #endif
1116 #ifdef FEAT_TITLE
1117 if (need_maketitle)
1118 maketitle();
1119 #endif
1120 /* display message after redraw */
1121 if (keep_msg != NULL)
1123 char_u *p;
1125 /* msg_attr_keep() will set keep_msg to NULL, must free the
1126 * string here. */
1127 p = keep_msg;
1128 keep_msg = NULL;
1129 msg_attr(p, keep_msg_attr);
1130 vim_free(p);
1132 if (need_fileinfo) /* show file info after redraw */
1134 fileinfo(FALSE, TRUE, FALSE);
1135 need_fileinfo = FALSE;
1138 emsg_on_display = FALSE; /* can delete error message now */
1139 did_emsg = FALSE;
1140 msg_didany = FALSE; /* reset lines_left in msg_start() */
1141 may_clear_sb_text(); /* clear scroll-back text on next msg */
1142 showruler(FALSE);
1144 setcursor();
1145 cursor_on();
1147 do_redraw = FALSE;
1149 #ifdef FEAT_GUI
1150 if (need_mouse_correct)
1151 gui_mouse_correct();
1152 #endif
1155 * Update w_curswant if w_set_curswant has been set.
1156 * Postponed until here to avoid computing w_virtcol too often.
1158 update_curswant();
1160 #ifdef FEAT_EVAL
1162 * May perform garbage collection when waiting for a character, but
1163 * only at the very toplevel. Otherwise we may be using a List or
1164 * Dict internally somewhere.
1165 * "may_garbage_collect" is reset in vgetc() which is invoked through
1166 * do_exmode() and normal_cmd().
1168 may_garbage_collect = (!cmdwin && !noexmode);
1169 #endif
1171 * If we're invoked as ex, do a round of ex commands.
1172 * Otherwise, get and execute a normal mode command.
1174 if (exmode_active)
1176 if (noexmode) /* End of ":global/path/visual" commands */
1177 return;
1178 do_exmode(exmode_active == EXMODE_VIM);
1180 else
1181 normal_cmd(&oa, TRUE);
1186 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1188 * Exit, but leave behind swap files for modified buffers.
1190 void
1191 getout_preserve_modified(exitval)
1192 int exitval;
1194 # if defined(SIGHUP) && defined(SIG_IGN)
1195 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1196 * makes Vim exit and then handling SIGHUP causes various reentrance
1197 * problems. */
1198 signal(SIGHUP, SIG_IGN);
1199 # endif
1201 ml_close_notmod(); /* close all not-modified buffers */
1202 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1203 ml_close_all(FALSE); /* close all memfiles, without deleting */
1204 getout(exitval); /* exit Vim properly */
1206 #endif
1209 /* Exit properly */
1210 void
1211 getout(exitval)
1212 int exitval;
1214 #ifdef FEAT_AUTOCMD
1215 buf_T *buf;
1216 win_T *wp;
1217 tabpage_T *tp, *next_tp;
1218 #endif
1220 exiting = TRUE;
1222 /* When running in Ex mode an error causes us to exit with a non-zero exit
1223 * code. POSIX requires this, although it's not 100% clear from the
1224 * standard. */
1225 if (exmode_active)
1226 exitval += ex_exitval;
1228 /* Position the cursor on the last screen line, below all the text */
1229 #ifdef FEAT_GUI
1230 if (!gui.in_use)
1231 #endif
1232 windgoto((int)Rows - 1, 0);
1234 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1235 /* Optionally print hashtable efficiency. */
1236 hash_debug_results();
1237 #endif
1239 #ifdef FEAT_GUI
1240 msg_didany = FALSE;
1241 #endif
1243 #ifdef FEAT_AUTOCMD
1244 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1245 # if defined FEAT_WINDOWS
1246 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1248 next_tp = tp->tp_next;
1249 for (wp = (tp == curtab)
1250 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1252 buf = wp->w_buffer;
1253 if (buf->b_changedtick != -1)
1255 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1256 FALSE, buf);
1257 buf->b_changedtick = -1; /* note that we did it already */
1258 /* start all over, autocommands may mess up the lists */
1259 next_tp = first_tabpage;
1260 break;
1264 # else
1265 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1266 # endif
1268 /* Trigger BufUnload for buffers that are loaded */
1269 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1270 if (buf->b_ml.ml_mfp != NULL)
1272 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1273 FALSE, buf);
1274 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1275 break;
1277 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1278 #endif
1280 #ifdef FEAT_VIMINFO
1281 if (*p_viminfo != NUL)
1282 /* Write out the registers, history, marks etc, to the viminfo file */
1283 write_viminfo(NULL, FALSE);
1284 #endif
1286 #ifdef FEAT_AUTOCMD
1287 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1288 #endif
1290 #ifdef FEAT_PROFILE
1291 profile_dump();
1292 #endif
1294 if (did_emsg
1295 #ifdef FEAT_GUI
1296 || (gui.in_use && msg_didany && p_verbose > 0)
1297 #endif
1300 /* give the user a chance to read the (error) message */
1301 no_wait_return = FALSE;
1302 wait_return(FALSE);
1305 #ifdef FEAT_AUTOCMD
1306 /* Position the cursor again, the autocommands may have moved it */
1307 # ifdef FEAT_GUI
1308 if (!gui.in_use)
1309 # endif
1310 windgoto((int)Rows - 1, 0);
1311 #endif
1313 #ifdef FEAT_MZSCHEME
1314 mzscheme_end();
1315 #endif
1316 #ifdef FEAT_TCL
1317 tcl_end();
1318 #endif
1319 #ifdef FEAT_RUBY
1320 ruby_end();
1321 #endif
1322 #ifdef FEAT_PYTHON
1323 python_end();
1324 #endif
1325 #ifdef FEAT_PERL
1326 perl_end();
1327 #endif
1328 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1329 iconv_end();
1330 #endif
1331 #ifdef FEAT_NETBEANS_INTG
1332 netbeans_end();
1333 #endif
1334 #ifdef FEAT_CSCOPE
1335 cs_end();
1336 #endif
1337 #ifdef FEAT_EVAL
1338 if (garbage_collect_at_exit)
1339 garbage_collect();
1340 #endif
1342 mch_exit(exitval);
1346 * Get a (optional) count for a Vim argument.
1348 static int
1349 get_number_arg(p, idx, def)
1350 char_u *p; /* pointer to argument */
1351 int *idx; /* index in argument, is incremented */
1352 int def; /* default value */
1354 if (vim_isdigit(p[*idx]))
1356 def = atoi((char *)&(p[*idx]));
1357 while (vim_isdigit(p[*idx]))
1358 *idx = *idx + 1;
1360 return def;
1363 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1365 * Setup to use the current locale (for ctype() and many other things).
1367 static void
1368 init_locale()
1370 setlocale(LC_ALL, "");
1371 # ifdef WIN32
1372 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1373 * text while it's expecting text in the current locale. This call avoids
1374 * that. */
1375 setlocale(LC_CTYPE, "C");
1376 # endif
1378 # ifdef FEAT_GETTEXT
1380 int mustfree = FALSE;
1381 char_u *p;
1383 # ifdef DYNAMIC_GETTEXT
1384 /* Initialize the gettext library */
1385 dyn_libintl_init(NULL);
1386 # endif
1387 /* expand_env() doesn't work yet, because chartab[] is not initialized
1388 * yet, call vim_getenv() directly */
1389 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1390 if (p != NULL && *p != NUL)
1392 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1393 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1395 if (mustfree)
1396 vim_free(p);
1397 textdomain(VIMPACKAGE);
1399 # endif
1401 #endif
1404 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1405 * If the executable name starts with "r" we disable shell commands.
1406 * If the next character is "e" we run in Easy mode.
1407 * If the next character is "g" we run the GUI version.
1408 * If the next characters are "view" we start in readonly mode.
1409 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1410 * If the next characters are "ex" we start in Ex mode. If it's followed
1411 * by "im" use improved Ex mode.
1413 static void
1414 parse_command_name(parmp)
1415 mparm_T *parmp;
1417 char_u *initstr;
1419 initstr = gettail((char_u *)parmp->argv[0]);
1421 #ifdef MACOS_X_UNIX
1422 /* An issue has been seen when launching Vim in such a way that
1423 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1424 * executable or a symbolic link of it. Until this issue is resolved
1425 * we prohibit the GUI from being used.
1427 if (STRCMP(initstr, parmp->argv[0]) == 0)
1428 disallow_gui = TRUE;
1430 /* TODO: On MacOS X default to gui if argv[0] ends in:
1431 * /Vim.app/Contents/MacOS/Vim */
1432 #endif
1434 #ifdef FEAT_EVAL
1435 set_vim_var_string(VV_PROGNAME, initstr, -1);
1436 #endif
1438 if (TOLOWER_ASC(initstr[0]) == 'r')
1440 restricted = TRUE;
1441 ++initstr;
1444 /* Avoid using evim mode for "editor". */
1445 if (TOLOWER_ASC(initstr[0]) == 'e'
1446 && (TOLOWER_ASC(initstr[1]) == 'v'
1447 || TOLOWER_ASC(initstr[1]) == 'g'))
1449 #ifdef FEAT_GUI
1450 gui.starting = TRUE;
1451 #endif
1452 parmp->evim_mode = TRUE;
1453 ++initstr;
1456 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1458 main_start_gui();
1459 #ifdef FEAT_GUI
1460 ++initstr;
1461 #endif
1464 if (STRNICMP(initstr, "view", 4) == 0)
1466 readonlymode = TRUE;
1467 curbuf->b_p_ro = TRUE;
1468 p_uc = 10000; /* don't update very often */
1469 initstr += 4;
1471 else if (STRNICMP(initstr, "vim", 3) == 0)
1472 initstr += 3;
1474 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1475 if (STRICMP(initstr, "diff") == 0)
1477 #ifdef FEAT_DIFF
1478 parmp->diff_mode = TRUE;
1479 #else
1480 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1481 mch_errmsg("\n");
1482 mch_exit(2);
1483 #endif
1486 if (STRNICMP(initstr, "ex", 2) == 0)
1488 if (STRNICMP(initstr + 2, "im", 2) == 0)
1489 exmode_active = EXMODE_VIM;
1490 else
1491 exmode_active = EXMODE_NORMAL;
1492 change_compatible(TRUE); /* set 'compatible' */
1497 * Get the name of the display, before gui_prepare() removes it from
1498 * argv[]. Used for the xterm-clipboard display.
1500 * Also find the --server... arguments and --socketid and --windowid
1502 /*ARGSUSED*/
1503 static void
1504 early_arg_scan(parmp)
1505 mparm_T *parmp;
1507 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
1508 int argc = parmp->argc;
1509 char **argv = parmp->argv;
1510 int i;
1512 for (i = 1; i < argc; i++)
1514 if (STRCMP(argv[i], "--") == 0)
1515 break;
1516 # ifdef FEAT_XCLIPBOARD
1517 else if (STRICMP(argv[i], "-display") == 0
1518 # if defined(FEAT_GUI_GTK)
1519 || STRICMP(argv[i], "--display") == 0
1520 # endif
1523 if (i == argc - 1)
1524 mainerr_arg_missing((char_u *)argv[i]);
1525 xterm_display = argv[++i];
1527 # endif
1528 # ifdef FEAT_CLIENTSERVER
1529 else if (STRICMP(argv[i], "--servername") == 0)
1531 if (i == argc - 1)
1532 mainerr_arg_missing((char_u *)argv[i]);
1533 parmp->serverName_arg = (char_u *)argv[++i];
1535 else if (STRICMP(argv[i], "--serverlist") == 0)
1536 parmp->serverArg = TRUE;
1537 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1539 parmp->serverArg = TRUE;
1540 # ifdef FEAT_GUI
1541 if (strstr(argv[i], "-wait") != 0)
1542 /* don't fork() when starting the GUI to edit files ourself */
1543 gui.dofork = FALSE;
1544 # endif
1546 # endif
1548 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1549 # ifdef FEAT_GUI_W32
1550 else if (STRICMP(argv[i], "--windowid") == 0)
1551 # else
1552 else if (STRICMP(argv[i], "--socketid") == 0)
1553 # endif
1555 long_u id;
1556 int count;
1558 if (i == argc - 1)
1559 mainerr_arg_missing((char_u *)argv[i]);
1560 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1561 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1562 else
1563 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1564 if (count != 1)
1565 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1566 else
1567 # ifdef FEAT_GUI_W32
1568 win_socket_id = id;
1569 # else
1570 gtk_socket_id = id;
1571 # endif
1572 i++;
1574 # endif
1575 # ifdef FEAT_GUI_GTK
1576 else if (STRICMP(argv[i], "--echo-wid") == 0)
1577 echo_wid_arg = TRUE;
1578 # endif
1580 #endif
1584 * Scan the command line arguments.
1586 static void
1587 command_line_scan(parmp)
1588 mparm_T *parmp;
1590 int argc = parmp->argc;
1591 char **argv = parmp->argv;
1592 int argv_idx; /* index in argv[n][] */
1593 int had_minmin = FALSE; /* found "--" argument */
1594 int want_argument; /* option argument with argument */
1595 int c;
1596 char_u *p = NULL;
1597 long n;
1599 --argc;
1600 ++argv;
1601 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1602 while (argc > 0)
1605 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1607 if (argv[0][0] == '+' && !had_minmin)
1609 if (parmp->n_commands >= MAX_ARG_CMDS)
1610 mainerr(ME_EXTRA_CMD, NULL);
1611 argv_idx = -1; /* skip to next argument */
1612 if (argv[0][1] == NUL)
1613 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1614 else
1615 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1619 * Optional argument.
1621 else if (argv[0][0] == '-' && !had_minmin)
1623 want_argument = FALSE;
1624 c = argv[0][argv_idx++];
1625 #ifdef VMS
1627 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1628 * and "-/X" as "-X".
1630 if (c == '/')
1632 c = argv[0][argv_idx++];
1633 c = TOUPPER_ASC(c);
1635 else
1636 c = TOLOWER_ASC(c);
1637 #endif
1638 switch (c)
1640 case NUL: /* "vim -" read from stdin */
1641 /* "ex -" silent mode */
1642 if (exmode_active)
1643 silent_mode = TRUE;
1644 else
1646 if (parmp->edit_type != EDIT_NONE)
1647 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1648 parmp->edit_type = EDIT_STDIN;
1649 read_cmd_fd = 2; /* read from stderr instead of stdin */
1651 argv_idx = -1; /* skip to next argument */
1652 break;
1654 case '-': /* "--" don't take any more option arguments */
1655 /* "--help" give help message */
1656 /* "--version" give version message */
1657 /* "--literal" take files literally */
1658 /* "--nofork" don't fork */
1659 /* "--noplugin[s]" skip plugins */
1660 /* "--cmd <cmd>" execute cmd before vimrc */
1661 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1662 usage();
1663 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1665 Columns = 80; /* need to init Columns */
1666 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1667 list_version();
1668 msg_putchar('\n');
1669 msg_didout = FALSE;
1670 mch_exit(0);
1672 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1674 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1675 parmp->literal = TRUE;
1676 #endif
1678 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1680 #ifdef FEAT_GUI
1681 gui.dofork = FALSE; /* don't fork() when starting GUI */
1682 #endif
1684 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1685 p_lpl = FALSE;
1686 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1688 want_argument = TRUE;
1689 argv_idx += 3;
1691 #ifdef FEAT_CLIENTSERVER
1692 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1693 ; /* already processed -- no arg */
1694 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1695 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1697 /* already processed -- snatch the following arg */
1698 if (argc > 1)
1700 --argc;
1701 ++argv;
1704 #endif
1705 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1706 # ifdef FEAT_GUI_GTK
1707 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1708 # else
1709 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1710 # endif
1712 /* already processed -- snatch the following arg */
1713 if (argc > 1)
1715 --argc;
1716 ++argv;
1719 #endif
1720 #ifdef FEAT_GUI_GTK
1721 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1723 /* already processed, skip */
1725 #endif
1726 else
1728 if (argv[0][argv_idx])
1729 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1730 had_minmin = TRUE;
1732 if (!want_argument)
1733 argv_idx = -1; /* skip to next argument */
1734 break;
1736 case 'A': /* "-A" start in Arabic mode */
1737 #ifdef FEAT_ARABIC
1738 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1739 #else
1740 mch_errmsg(_(e_noarabic));
1741 mch_exit(2);
1742 #endif
1743 break;
1745 case 'b': /* "-b" binary mode */
1746 /* Needs to be effective before expanding file names, because
1747 * for Win32 this makes us edit a shortcut file itself,
1748 * instead of the file it links to. */
1749 set_options_bin(curbuf->b_p_bin, 1, 0);
1750 curbuf->b_p_bin = 1; /* binary file I/O */
1751 break;
1753 case 'C': /* "-C" Compatible */
1754 change_compatible(TRUE);
1755 break;
1757 case 'e': /* "-e" Ex mode */
1758 exmode_active = EXMODE_NORMAL;
1759 break;
1761 case 'E': /* "-E" Improved Ex mode */
1762 exmode_active = EXMODE_VIM;
1763 break;
1765 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1766 window directly, not with newcli */
1767 #ifdef FEAT_GUI
1768 gui.dofork = FALSE; /* don't fork() when starting GUI */
1769 #endif
1770 break;
1772 case 'g': /* "-g" start GUI */
1773 main_start_gui();
1774 break;
1776 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1777 #ifdef FEAT_FKMAP
1778 p_fkmap = TRUE;
1779 set_option_value((char_u *)"rl", 1L, NULL, 0);
1780 #else
1781 mch_errmsg(_(e_nofarsi));
1782 mch_exit(2);
1783 #endif
1784 break;
1786 case 'h': /* "-h" give help message */
1787 #ifdef FEAT_GUI_GNOME
1788 /* Tell usage() to exit for "gvim". */
1789 gui.starting = FALSE;
1790 #endif
1791 usage();
1792 break;
1794 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1795 #ifdef FEAT_RIGHTLEFT
1796 p_hkmap = TRUE;
1797 set_option_value((char_u *)"rl", 1L, NULL, 0);
1798 #else
1799 mch_errmsg(_(e_nohebrew));
1800 mch_exit(2);
1801 #endif
1802 break;
1804 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1805 #ifdef FEAT_LISP
1806 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1807 p_sm = TRUE;
1808 #endif
1809 break;
1811 case 'M': /* "-M" no changes or writing of files */
1812 reset_modifiable();
1813 /* FALLTHROUGH */
1815 case 'm': /* "-m" no writing of files */
1816 p_write = FALSE;
1817 break;
1819 case 'y': /* "-y" easy mode */
1820 #ifdef FEAT_GUI
1821 gui.starting = TRUE; /* start GUI a bit later */
1822 #endif
1823 parmp->evim_mode = TRUE;
1824 break;
1826 case 'N': /* "-N" Nocompatible */
1827 change_compatible(FALSE);
1828 break;
1830 case 'n': /* "-n" no swap file */
1831 parmp->no_swap_file = TRUE;
1832 break;
1834 case 'p': /* "-p[N]" open N tab pages */
1835 #ifdef TARGET_API_MAC_OSX
1836 /* For some reason on MacOS X, an argument like:
1837 -psn_0_10223617 is passed in when invoke from Finder
1838 or with the 'open' command */
1839 if (argv[0][argv_idx] == 's')
1841 argv_idx = -1; /* bypass full -psn */
1842 main_start_gui();
1843 break;
1845 #endif
1846 #ifdef FEAT_WINDOWS
1847 /* default is 0: open window for each file */
1848 parmp->window_count = get_number_arg((char_u *)argv[0],
1849 &argv_idx, 0);
1850 parmp->window_layout = WIN_TABS;
1851 #endif
1852 break;
1854 case 'o': /* "-o[N]" open N horizontal split windows */
1855 #ifdef FEAT_WINDOWS
1856 /* default is 0: open window for each file */
1857 parmp->window_count = get_number_arg((char_u *)argv[0],
1858 &argv_idx, 0);
1859 parmp->window_layout = WIN_HOR;
1860 #endif
1861 break;
1863 case 'O': /* "-O[N]" open N vertical split windows */
1864 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1865 /* default is 0: open window for each file */
1866 parmp->window_count = get_number_arg((char_u *)argv[0],
1867 &argv_idx, 0);
1868 parmp->window_layout = WIN_VER;
1869 #endif
1870 break;
1872 #ifdef FEAT_QUICKFIX
1873 case 'q': /* "-q" QuickFix mode */
1874 if (parmp->edit_type != EDIT_NONE)
1875 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1876 parmp->edit_type = EDIT_QF;
1877 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1879 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1880 argv_idx = -1;
1882 else if (argc > 1) /* "-q {errorfile}" */
1883 want_argument = TRUE;
1884 break;
1885 #endif
1887 case 'R': /* "-R" readonly mode */
1888 readonlymode = TRUE;
1889 curbuf->b_p_ro = TRUE;
1890 p_uc = 10000; /* don't update very often */
1891 break;
1893 case 'r': /* "-r" recovery mode */
1894 case 'L': /* "-L" recovery mode */
1895 recoverymode = 1;
1896 break;
1898 case 's':
1899 if (exmode_active) /* "-s" silent (batch) mode */
1900 silent_mode = TRUE;
1901 else /* "-s {scriptin}" read from script file */
1902 want_argument = TRUE;
1903 break;
1905 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1906 if (parmp->edit_type != EDIT_NONE)
1907 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1908 parmp->edit_type = EDIT_TAG;
1909 if (argv[0][argv_idx]) /* "-t{tag}" */
1911 parmp->tagname = (char_u *)argv[0] + argv_idx;
1912 argv_idx = -1;
1914 else /* "-t {tag}" */
1915 want_argument = TRUE;
1916 break;
1918 #ifdef FEAT_EVAL
1919 case 'D': /* "-D" Debugging */
1920 parmp->use_debug_break_level = 9999;
1921 break;
1922 #endif
1923 #ifdef FEAT_DIFF
1924 case 'd': /* "-d" 'diff' */
1925 # ifdef AMIGA
1926 /* check for "-dev {device}" */
1927 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1928 want_argument = TRUE;
1929 else
1930 # endif
1931 parmp->diff_mode = TRUE;
1932 break;
1933 #endif
1934 case 'V': /* "-V{N}" Verbose level */
1935 /* default is 10: a little bit verbose */
1936 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1937 if (argv[0][argv_idx] != NUL)
1939 set_option_value((char_u *)"verbosefile", 0L,
1940 (char_u *)argv[0] + argv_idx, 0);
1941 argv_idx = (int)STRLEN(argv[0]);
1943 break;
1945 case 'v': /* "-v" Vi-mode (as if called "vi") */
1946 exmode_active = 0;
1947 #ifdef FEAT_GUI
1948 gui.starting = FALSE; /* don't start GUI */
1949 #endif
1950 break;
1952 case 'w': /* "-w{number}" set window height */
1953 /* "-w {scriptout}" write to script */
1954 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1956 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1957 set_option_value((char_u *)"window", n, NULL, 0);
1958 break;
1960 want_argument = TRUE;
1961 break;
1963 #ifdef FEAT_CRYPT
1964 case 'x': /* "-x" encrypted reading/writing of files */
1965 parmp->ask_for_key = TRUE;
1966 break;
1967 #endif
1969 case 'X': /* "-X" don't connect to X server */
1970 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
1971 x_no_connect = TRUE;
1972 #endif
1973 break;
1975 case 'Z': /* "-Z" restricted mode */
1976 restricted = TRUE;
1977 break;
1979 case 'c': /* "-c{command}" or "-c {command}" execute
1980 command */
1981 if (argv[0][argv_idx] != NUL)
1983 if (parmp->n_commands >= MAX_ARG_CMDS)
1984 mainerr(ME_EXTRA_CMD, NULL);
1985 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
1986 + argv_idx;
1987 argv_idx = -1;
1988 break;
1990 /*FALLTHROUGH*/
1991 case 'S': /* "-S {file}" execute Vim script */
1992 case 'i': /* "-i {viminfo}" use for viminfo */
1993 #ifndef FEAT_DIFF
1994 case 'd': /* "-d {device}" device (for Amiga) */
1995 #endif
1996 case 'T': /* "-T {terminal}" terminal name */
1997 case 'u': /* "-u {vimrc}" vim inits file */
1998 case 'U': /* "-U {gvimrc}" gvim inits file */
1999 case 'W': /* "-W {scriptout}" overwrite */
2000 #ifdef FEAT_GUI_W32
2001 case 'P': /* "-P {parent title}" MDI parent */
2002 #endif
2003 want_argument = TRUE;
2004 break;
2006 default:
2007 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2011 * Handle option arguments with argument.
2013 if (want_argument)
2016 * Check for garbage immediately after the option letter.
2018 if (argv[0][argv_idx] != NUL)
2019 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2021 --argc;
2022 if (argc < 1 && c != 'S')
2023 mainerr_arg_missing((char_u *)argv[0]);
2024 ++argv;
2025 argv_idx = -1;
2027 switch (c)
2029 case 'c': /* "-c {command}" execute command */
2030 case 'S': /* "-S {file}" execute Vim script */
2031 if (parmp->n_commands >= MAX_ARG_CMDS)
2032 mainerr(ME_EXTRA_CMD, NULL);
2033 if (c == 'S')
2035 char *a;
2037 if (argc < 1)
2038 /* "-S" without argument: use default session file
2039 * name. */
2040 a = SESSION_FILE;
2041 else if (argv[0][0] == '-')
2043 /* "-S" followed by another option: use default
2044 * session file name. */
2045 a = SESSION_FILE;
2046 ++argc;
2047 --argv;
2049 else
2050 a = argv[0];
2051 p = alloc((unsigned)(STRLEN(a) + 4));
2052 if (p == NULL)
2053 mch_exit(2);
2054 sprintf((char *)p, "so %s", a);
2055 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2056 parmp->commands[parmp->n_commands++] = p;
2058 else
2059 parmp->commands[parmp->n_commands++] =
2060 (char_u *)argv[0];
2061 break;
2063 case '-': /* "--cmd {command}" execute command */
2064 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2065 mainerr(ME_EXTRA_CMD, NULL);
2066 parmp->pre_commands[parmp->n_pre_commands++] =
2067 (char_u *)argv[0];
2068 break;
2070 /* case 'd': -d {device} is handled in mch_check_win() for the
2071 * Amiga */
2073 #ifdef FEAT_QUICKFIX
2074 case 'q': /* "-q {errorfile}" QuickFix mode */
2075 parmp->use_ef = (char_u *)argv[0];
2076 break;
2077 #endif
2079 case 'i': /* "-i {viminfo}" use for viminfo */
2080 use_viminfo = (char_u *)argv[0];
2081 break;
2083 case 's': /* "-s {scriptin}" read from script file */
2084 if (scriptin[0] != NULL)
2086 scripterror:
2087 mch_errmsg(_("Attempt to open script file again: \""));
2088 mch_errmsg(argv[-1]);
2089 mch_errmsg(" ");
2090 mch_errmsg(argv[0]);
2091 mch_errmsg("\"\n");
2092 mch_exit(2);
2094 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2096 mch_errmsg(_("Cannot open for reading: \""));
2097 mch_errmsg(argv[0]);
2098 mch_errmsg("\"\n");
2099 mch_exit(2);
2101 if (save_typebuf() == FAIL)
2102 mch_exit(2); /* out of memory */
2103 break;
2105 case 't': /* "-t {tag}" */
2106 parmp->tagname = (char_u *)argv[0];
2107 break;
2109 case 'T': /* "-T {terminal}" terminal name */
2111 * The -T term argument is always available and when
2112 * HAVE_TERMLIB is supported it overrides the environment
2113 * variable TERM.
2115 #ifdef FEAT_GUI
2116 if (term_is_gui((char_u *)argv[0]))
2117 gui.starting = TRUE; /* start GUI a bit later */
2118 else
2119 #endif
2120 parmp->term = (char_u *)argv[0];
2121 break;
2123 case 'u': /* "-u {vimrc}" vim inits file */
2124 parmp->use_vimrc = (char_u *)argv[0];
2125 break;
2127 case 'U': /* "-U {gvimrc}" gvim inits file */
2128 #ifdef FEAT_GUI
2129 use_gvimrc = (char_u *)argv[0];
2130 #endif
2131 break;
2133 case 'w': /* "-w {nr}" 'window' value */
2134 /* "-w {scriptout}" append to script file */
2135 if (vim_isdigit(*((char_u *)argv[0])))
2137 argv_idx = 0;
2138 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2139 set_option_value((char_u *)"window", n, NULL, 0);
2140 argv_idx = -1;
2141 break;
2143 /*FALLTHROUGH*/
2144 case 'W': /* "-W {scriptout}" overwrite script file */
2145 if (scriptout != NULL)
2146 goto scripterror;
2147 if ((scriptout = mch_fopen(argv[0],
2148 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2150 mch_errmsg(_("Cannot open for script output: \""));
2151 mch_errmsg(argv[0]);
2152 mch_errmsg("\"\n");
2153 mch_exit(2);
2155 break;
2157 #ifdef FEAT_GUI_W32
2158 case 'P': /* "-P {parent title}" MDI parent */
2159 gui_mch_set_parent(argv[0]);
2160 break;
2161 #endif
2167 * File name argument.
2169 else
2171 argv_idx = -1; /* skip to next argument */
2173 /* Check for only one type of editing. */
2174 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2175 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2176 parmp->edit_type = EDIT_FILE;
2178 #ifdef MSWIN
2179 /* Remember if the argument was a full path before changing
2180 * slashes to backslashes. */
2181 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2182 parmp->full_path = TRUE;
2183 #endif
2185 /* Add the file to the global argument list. */
2186 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2187 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2188 mch_exit(2);
2189 #ifdef FEAT_DIFF
2190 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2191 && !mch_isdir(alist_name(&GARGLIST[0])))
2193 char_u *r;
2195 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2196 if (r != NULL)
2198 vim_free(p);
2199 p = r;
2202 #endif
2203 #if defined(__CYGWIN32__) && !defined(WIN32)
2205 * If vim is invoked by non-Cygwin tools, convert away any
2206 * DOS paths, so things like .swp files are created correctly.
2207 * Look for evidence of non-Cygwin paths before we bother.
2208 * This is only for when using the Unix files.
2210 if (strpbrk(p, "\\:") != NULL)
2212 char posix_path[PATH_MAX];
2214 cygwin_conv_to_posix_path(p, posix_path);
2215 vim_free(p);
2216 p = vim_strsave(posix_path);
2217 if (p == NULL)
2218 mch_exit(2);
2220 #endif
2222 #ifdef USE_FNAME_CASE
2223 /* Make the case of the file name match the actual file. */
2224 fname_case(p, 0);
2225 #endif
2227 alist_add(&global_alist, p,
2228 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2229 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2230 #else
2231 2 /* add buffer number now and use curbuf */
2232 #endif
2235 #if defined(FEAT_MBYTE) && defined(WIN32)
2237 /* Remember this argument has been added to the argument list.
2238 * Needed when 'encoding' is changed. */
2239 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2240 parmp->diff_mode);
2242 #endif
2246 * If there are no more letters after the current "-", go to next
2247 * argument. argv_idx is set to -1 when the current argument is to be
2248 * skipped.
2250 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2252 --argc;
2253 ++argv;
2254 argv_idx = 1;
2258 #ifdef FEAT_EVAL
2259 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2260 * one. */
2261 if (parmp->n_commands > 0)
2263 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2264 if (p != NULL)
2266 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2267 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2268 vim_free(p);
2271 #endif
2275 * Print a warning if stdout is not a terminal.
2276 * When starting in Ex mode and commands come from a file, set Silent mode.
2278 static void
2279 check_tty(parmp)
2280 mparm_T *parmp;
2282 int input_isatty; /* is active input a terminal? */
2284 input_isatty = mch_input_isatty();
2285 if (exmode_active)
2287 if (!input_isatty)
2288 silent_mode = TRUE;
2290 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2291 #ifdef FEAT_GUI
2292 /* don't want the delay when started from the desktop */
2293 && !gui.starting
2294 #endif
2297 #ifdef NBDEBUG
2299 * This shouldn't be necessary. But if I run netbeans with the log
2300 * output coming to the console and XOpenDisplay fails, I get vim
2301 * trying to start with input/output to my console tty. This fills my
2302 * input buffer so fast I can't even kill the process in under 2
2303 * minutes (and it beeps continuously the whole time :-)
2305 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2307 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2308 exit(1);
2310 #endif
2311 if (!parmp->stdout_isatty)
2312 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2313 if (!input_isatty)
2314 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2315 out_flush();
2316 if (scriptin[0] == NULL)
2317 ui_delay(2000L, TRUE);
2318 TIME_MSG("Warning delay");
2323 * Read text from stdin.
2325 static void
2326 read_stdin()
2328 int i;
2330 #if defined(HAS_SWAP_EXISTS_ACTION)
2331 /* When getting the ATTENTION prompt here, use a dialog */
2332 swap_exists_action = SEA_DIALOG;
2333 #endif
2334 no_wait_return = TRUE;
2335 i = msg_didany;
2336 set_buflisted(TRUE);
2337 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2338 no_wait_return = FALSE;
2339 msg_didany = i;
2340 TIME_MSG("reading stdin");
2341 #if defined(HAS_SWAP_EXISTS_ACTION)
2342 check_swap_exists_action();
2343 #endif
2344 #if !(defined(AMIGA) || defined(MACOS))
2346 * Close stdin and dup it from stderr. Required for GPM to work
2347 * properly, and for running external commands.
2348 * Is there any other system that cannot do this?
2350 close(0);
2351 dup(2);
2352 #endif
2356 * Create the requested number of windows and edit buffers in them.
2357 * Also does recovery if "recoverymode" set.
2359 /*ARGSUSED*/
2360 static void
2361 create_windows(parmp)
2362 mparm_T *parmp;
2364 #ifdef FEAT_WINDOWS
2365 int dorewind;
2366 int done = 0;
2369 * Create the number of windows that was requested.
2371 if (parmp->window_count == -1) /* was not set */
2372 parmp->window_count = 1;
2373 if (parmp->window_count == 0)
2374 parmp->window_count = GARGCOUNT;
2375 if (parmp->window_count > 1)
2377 /* Don't change the windows if there was a command in .vimrc that
2378 * already split some windows */
2379 if (parmp->window_layout == 0)
2380 parmp->window_layout = WIN_HOR;
2381 if (parmp->window_layout == WIN_TABS)
2383 parmp->window_count = make_tabpages(parmp->window_count);
2384 TIME_MSG("making tab pages");
2386 else if (firstwin->w_next == NULL)
2388 parmp->window_count = make_windows(parmp->window_count,
2389 parmp->window_layout == WIN_VER);
2390 TIME_MSG("making windows");
2392 else
2393 parmp->window_count = win_count();
2395 else
2396 parmp->window_count = 1;
2397 #endif
2399 if (recoverymode) /* do recover */
2401 msg_scroll = TRUE; /* scroll message up */
2402 ml_recover();
2403 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2404 getout(1);
2405 do_modelines(0); /* do modelines */
2407 else
2410 * Open a buffer for windows that don't have one yet.
2411 * Commands in the .vimrc might have loaded a file or split the window.
2412 * Watch out for autocommands that delete a window.
2414 #ifdef FEAT_AUTOCMD
2416 * Don't execute Win/Buf Enter/Leave autocommands here
2418 ++autocmd_no_enter;
2419 ++autocmd_no_leave;
2420 #endif
2421 #ifdef FEAT_WINDOWS
2422 dorewind = TRUE;
2423 while (done++ < 1000)
2425 if (dorewind)
2427 if (parmp->window_layout == WIN_TABS)
2428 goto_tabpage(1);
2429 else
2430 curwin = firstwin;
2432 else if (parmp->window_layout == WIN_TABS)
2434 if (curtab->tp_next == NULL)
2435 break;
2436 goto_tabpage(0);
2438 else
2440 if (curwin->w_next == NULL)
2441 break;
2442 curwin = curwin->w_next;
2444 dorewind = FALSE;
2445 #endif
2446 curbuf = curwin->w_buffer;
2447 if (curbuf->b_ml.ml_mfp == NULL)
2449 #ifdef FEAT_FOLDING
2450 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2451 if (p_fdls >= 0)
2452 curwin->w_p_fdl = p_fdls;
2453 #endif
2454 #if defined(HAS_SWAP_EXISTS_ACTION)
2455 /* When getting the ATTENTION prompt here, use a dialog */
2456 swap_exists_action = SEA_DIALOG;
2457 #endif
2458 set_buflisted(TRUE);
2459 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2461 #if defined(HAS_SWAP_EXISTS_ACTION)
2462 if (swap_exists_action == SEA_QUIT)
2464 if (got_int || only_one_window())
2466 /* abort selected or quit and only one window */
2467 did_emsg = FALSE; /* avoid hit-enter prompt */
2468 getout(1);
2470 /* We can't close the window, it would disturb what
2471 * happens next. Clear the file name and set the arg
2472 * index to -1 to delete it later. */
2473 setfname(curbuf, NULL, NULL, FALSE);
2474 curwin->w_arg_idx = -1;
2475 swap_exists_action = SEA_NONE;
2477 else
2478 handle_swap_exists(NULL);
2479 #endif
2480 #ifdef FEAT_AUTOCMD
2481 dorewind = TRUE; /* start again */
2482 #endif
2484 #ifdef FEAT_WINDOWS
2485 ui_breakcheck();
2486 if (got_int)
2488 (void)vgetc(); /* only break the file loading, not the rest */
2489 break;
2492 #endif
2493 #ifdef FEAT_WINDOWS
2494 if (parmp->window_layout == WIN_TABS)
2495 goto_tabpage(1);
2496 else
2497 curwin = firstwin;
2498 curbuf = curwin->w_buffer;
2499 #endif
2500 #ifdef FEAT_AUTOCMD
2501 --autocmd_no_enter;
2502 --autocmd_no_leave;
2503 #endif
2507 #ifdef FEAT_WINDOWS
2509 * If opened more than one window, start editing files in the other
2510 * windows. make_windows() has already opened the windows.
2512 static void
2513 edit_buffers(parmp)
2514 mparm_T *parmp;
2516 int arg_idx; /* index in argument list */
2517 int i;
2518 int advance = TRUE;
2519 buf_T *old_curbuf;
2521 # ifdef FEAT_AUTOCMD
2523 * Don't execute Win/Buf Enter/Leave autocommands here
2525 ++autocmd_no_enter;
2526 ++autocmd_no_leave;
2527 # endif
2529 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2530 if (curwin->w_arg_idx == -1)
2532 win_close(curwin, TRUE);
2533 advance = FALSE;
2536 arg_idx = 1;
2537 for (i = 1; i < parmp->window_count; ++i)
2539 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2540 if (curwin->w_arg_idx == -1)
2542 ++arg_idx;
2543 win_close(curwin, TRUE);
2544 advance = FALSE;
2545 continue;
2548 if (advance)
2550 if (parmp->window_layout == WIN_TABS)
2552 if (curtab->tp_next == NULL) /* just checking */
2553 break;
2554 goto_tabpage(0);
2556 else
2558 if (curwin->w_next == NULL) /* just checking */
2559 break;
2560 win_enter(curwin->w_next, FALSE);
2563 advance = TRUE;
2565 /* Only open the file if there is no file in this window yet (that can
2566 * happen when .vimrc contains ":sall"). */
2567 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2569 curwin->w_arg_idx = arg_idx;
2570 /* Edit file from arg list, if there is one. When "Quit" selected
2571 * at the ATTENTION prompt close the window. */
2572 old_curbuf = curbuf;
2573 (void)do_ecmd(0, arg_idx < GARGCOUNT
2574 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2575 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
2576 if (curbuf == old_curbuf)
2578 if (got_int || only_one_window())
2580 /* abort selected or quit and only one window */
2581 did_emsg = FALSE; /* avoid hit-enter prompt */
2582 getout(1);
2584 win_close(curwin, TRUE);
2585 advance = FALSE;
2587 if (arg_idx == GARGCOUNT - 1)
2588 arg_had_last = TRUE;
2589 ++arg_idx;
2591 ui_breakcheck();
2592 if (got_int)
2594 (void)vgetc(); /* only break the file loading, not the rest */
2595 break;
2599 if (parmp->window_layout == WIN_TABS)
2600 goto_tabpage(1);
2601 # ifdef FEAT_AUTOCMD
2602 --autocmd_no_enter;
2603 # endif
2604 win_enter(firstwin, FALSE); /* back to first window */
2605 # ifdef FEAT_AUTOCMD
2606 --autocmd_no_leave;
2607 # endif
2608 TIME_MSG("editing files in windows");
2609 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2610 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2612 #endif /* FEAT_WINDOWS */
2615 * Execute the commands from --cmd arguments "cmds[cnt]".
2617 static void
2618 exe_pre_commands(parmp)
2619 mparm_T *parmp;
2621 char_u **cmds = parmp->pre_commands;
2622 int cnt = parmp->n_pre_commands;
2623 int i;
2625 if (cnt > 0)
2627 curwin->w_cursor.lnum = 0; /* just in case.. */
2628 sourcing_name = (char_u *)_("pre-vimrc command line");
2629 # ifdef FEAT_EVAL
2630 current_SID = SID_CMDARG;
2631 # endif
2632 for (i = 0; i < cnt; ++i)
2633 do_cmdline_cmd(cmds[i]);
2634 sourcing_name = NULL;
2635 # ifdef FEAT_EVAL
2636 current_SID = 0;
2637 # endif
2638 TIME_MSG("--cmd commands");
2643 * Execute "+", "-c" and "-S" arguments.
2645 static void
2646 exe_commands(parmp)
2647 mparm_T *parmp;
2649 int i;
2652 * We start commands on line 0, make "vim +/pat file" match a
2653 * pattern on line 1. But don't move the cursor when an autocommand
2654 * with g`" was used.
2656 msg_scroll = TRUE;
2657 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2658 curwin->w_cursor.lnum = 0;
2659 sourcing_name = (char_u *)"command line";
2660 #ifdef FEAT_EVAL
2661 current_SID = SID_CARG;
2662 #endif
2663 for (i = 0; i < parmp->n_commands; ++i)
2665 do_cmdline_cmd(parmp->commands[i]);
2666 if (parmp->cmds_tofree[i])
2667 vim_free(parmp->commands[i]);
2669 sourcing_name = NULL;
2670 #ifdef FEAT_EVAL
2671 current_SID = 0;
2672 #endif
2673 if (curwin->w_cursor.lnum == 0)
2674 curwin->w_cursor.lnum = 1;
2676 if (!exmode_active)
2677 msg_scroll = FALSE;
2679 #ifdef FEAT_QUICKFIX
2680 /* When started with "-q errorfile" jump to first error again. */
2681 if (parmp->edit_type == EDIT_QF)
2682 qf_jump(NULL, 0, 0, FALSE);
2683 #endif
2684 TIME_MSG("executing command arguments");
2688 * Source startup scripts.
2690 static void
2691 source_startup_scripts(parmp)
2692 mparm_T *parmp;
2694 int i;
2697 * For "evim" source evim.vim first of all, so that the user can overrule
2698 * any things he doesn't like.
2700 if (parmp->evim_mode)
2702 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2703 TIME_MSG("source evim file");
2707 * If -u argument given, use only the initializations from that file and
2708 * nothing else.
2710 if (parmp->use_vimrc != NULL)
2712 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2713 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2715 #ifdef FEAT_GUI
2716 if (use_gvimrc == NULL) /* don't load gvimrc either */
2717 use_gvimrc = parmp->use_vimrc;
2718 #endif
2719 if (parmp->use_vimrc[2] == 'N')
2720 p_lpl = FALSE; /* don't load plugins either */
2722 else
2724 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2725 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2728 else if (!silent_mode)
2730 #ifdef AMIGA
2731 struct Process *proc = (struct Process *)FindTask(0L);
2732 APTR save_winptr = proc->pr_WindowPtr;
2734 /* Avoid a requester here for a volume that doesn't exist. */
2735 proc->pr_WindowPtr = (APTR)-1L;
2736 #endif
2739 * Get system wide defaults, if the file name is defined.
2741 #ifdef SYS_VIMRC_FILE
2742 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2743 #endif
2744 #ifdef MACOS_X
2745 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2746 #endif
2749 * Try to read initialization commands from the following places:
2750 * - environment variable VIMINIT
2751 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2752 * - second user vimrc file ($VIM/.vimrc for Dos)
2753 * - environment variable EXINIT
2754 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2755 * - second user exrc file ($VIM/.exrc for Dos)
2756 * The first that exists is used, the rest is ignored.
2758 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2760 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2761 #ifdef USR_VIMRC_FILE2
2762 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2763 DOSO_VIMRC) == FAIL
2764 #endif
2765 #ifdef USR_VIMRC_FILE3
2766 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2767 DOSO_VIMRC) == FAIL
2768 #endif
2769 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2770 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2772 #ifdef USR_EXRC_FILE2
2773 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2774 #endif
2779 * Read initialization commands from ".vimrc" or ".exrc" in current
2780 * directory. This is only done if the 'exrc' option is set.
2781 * Because of security reasons we disallow shell and write commands
2782 * now, except for unix if the file is owned by the user or 'secure'
2783 * option has been reset in environment of global ".exrc" or ".vimrc".
2784 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2785 * SYS_VIMRC_FILE.
2787 if (p_exrc)
2789 #if defined(UNIX) || defined(VMS)
2790 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2791 if (!file_owned(VIMRC_FILE))
2792 #endif
2793 secure = p_secure;
2795 i = FAIL;
2796 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2797 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2798 #ifdef USR_VIMRC_FILE2
2799 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2800 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2801 #endif
2802 #ifdef USR_VIMRC_FILE3
2803 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2804 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2805 #endif
2806 #ifdef SYS_VIMRC_FILE
2807 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2808 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2809 #endif
2811 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2813 if (i == FAIL)
2815 #if defined(UNIX) || defined(VMS)
2816 /* if ".exrc" is not owned by user set 'secure' mode */
2817 if (!file_owned(EXRC_FILE))
2818 secure = p_secure;
2819 else
2820 secure = 0;
2821 #endif
2822 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2823 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2824 #ifdef USR_EXRC_FILE2
2825 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2826 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2827 #endif
2829 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2832 if (secure == 2)
2833 need_wait_return = TRUE;
2834 secure = 0;
2835 #ifdef AMIGA
2836 proc->pr_WindowPtr = save_winptr;
2837 #endif
2839 TIME_MSG("sourcing vimrc file(s)");
2843 * Setup to start using the GUI. Exit with an error when not available.
2845 static void
2846 main_start_gui()
2848 #ifdef FEAT_GUI
2849 gui.starting = TRUE; /* start GUI a bit later */
2850 #else
2851 mch_errmsg(_(e_nogvim));
2852 mch_errmsg("\n");
2853 mch_exit(2);
2854 #endif
2858 * Get an environment variable, and execute it as Ex commands.
2859 * Returns FAIL if the environment variable was not executed, OK otherwise.
2862 process_env(env, is_viminit)
2863 char_u *env;
2864 int is_viminit; /* when TRUE, called for VIMINIT */
2866 char_u *initstr;
2867 char_u *save_sourcing_name;
2868 linenr_T save_sourcing_lnum;
2869 #ifdef FEAT_EVAL
2870 scid_T save_sid;
2871 #endif
2873 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2875 if (is_viminit)
2876 vimrc_found(NULL, NULL);
2877 save_sourcing_name = sourcing_name;
2878 save_sourcing_lnum = sourcing_lnum;
2879 sourcing_name = env;
2880 sourcing_lnum = 0;
2881 #ifdef FEAT_EVAL
2882 save_sid = current_SID;
2883 current_SID = SID_ENV;
2884 #endif
2885 do_cmdline_cmd(initstr);
2886 sourcing_name = save_sourcing_name;
2887 sourcing_lnum = save_sourcing_lnum;
2888 #ifdef FEAT_EVAL
2889 current_SID = save_sid;;
2890 #endif
2891 return OK;
2893 return FAIL;
2896 #if defined(UNIX) || defined(VMS)
2898 * Return TRUE if we are certain the user owns the file "fname".
2899 * Used for ".vimrc" and ".exrc".
2900 * Use both stat() and lstat() for extra security.
2902 static int
2903 file_owned(fname)
2904 char *fname;
2906 struct stat s;
2907 # ifdef UNIX
2908 uid_t uid = getuid();
2909 # else /* VMS */
2910 uid_t uid = ((getgid() << 16) | getuid());
2911 # endif
2913 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2914 # ifdef HAVE_LSTAT
2915 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2916 # endif
2919 #endif
2922 * Give an error message main_errors["n"] and exit.
2924 static void
2925 mainerr(n, str)
2926 int n; /* one of the ME_ defines */
2927 char_u *str; /* extra argument or NULL */
2929 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2930 reset_signals(); /* kill us with CTRL-C here, if you like */
2931 #endif
2933 mch_errmsg(longVersion);
2934 mch_errmsg("\n");
2935 mch_errmsg(_(main_errors[n]));
2936 if (str != NULL)
2938 mch_errmsg(": \"");
2939 mch_errmsg((char *)str);
2940 mch_errmsg("\"");
2942 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
2944 mch_exit(1);
2947 void
2948 mainerr_arg_missing(str)
2949 char_u *str;
2951 mainerr(ME_ARG_MISSING, str);
2955 * print a message with three spaces prepended and '\n' appended.
2957 static void
2958 main_msg(s)
2959 char *s;
2961 mch_msg(" ");
2962 mch_msg(s);
2963 mch_msg("\n");
2967 * Print messages for "vim -h" or "vim --help" and exit.
2969 static void
2970 usage()
2972 int i;
2973 static char *(use[]) =
2975 N_("[file ..] edit specified file(s)"),
2976 N_("- read text from stdin"),
2977 N_("-t tag edit file where tag is defined"),
2978 #ifdef FEAT_QUICKFIX
2979 N_("-q [errorfile] edit file with first error")
2980 #endif
2983 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2984 reset_signals(); /* kill us with CTRL-C here, if you like */
2985 #endif
2987 mch_msg(longVersion);
2988 mch_msg(_("\n\nusage:"));
2989 for (i = 0; ; ++i)
2991 mch_msg(_(" vim [arguments] "));
2992 mch_msg(_(use[i]));
2993 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
2994 break;
2995 mch_msg(_("\n or:"));
2997 #ifdef VMS
2998 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
2999 #endif
3001 mch_msg(_("\n\nArguments:\n"));
3002 main_msg(_("--\t\t\tOnly file names after this"));
3003 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3004 main_msg(_("--literal\t\tDon't expand wildcards"));
3005 #endif
3006 #ifdef FEAT_OLE
3007 main_msg(_("-register\t\tRegister this gvim for OLE"));
3008 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3009 #endif
3010 #ifdef FEAT_GUI
3011 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3012 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3013 #endif
3014 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3015 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3016 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3017 #ifdef FEAT_DIFF
3018 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3019 #endif
3020 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3021 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3022 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3023 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3024 main_msg(_("-M\t\t\tModifications in text not allowed"));
3025 main_msg(_("-b\t\t\tBinary mode"));
3026 #ifdef FEAT_LISP
3027 main_msg(_("-l\t\t\tLisp mode"));
3028 #endif
3029 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3030 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3031 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3032 #ifdef FEAT_EVAL
3033 main_msg(_("-D\t\t\tDebugging mode"));
3034 #endif
3035 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3036 main_msg(_("-r\t\t\tList swap files and exit"));
3037 main_msg(_("-r (with file name)\tRecover crashed session"));
3038 main_msg(_("-L\t\t\tSame as -r"));
3039 #ifdef AMIGA
3040 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3041 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3042 #endif
3043 #ifdef FEAT_ARABIC
3044 main_msg(_("-A\t\t\tstart in Arabic mode"));
3045 #endif
3046 #ifdef FEAT_RIGHTLEFT
3047 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3048 #endif
3049 #ifdef FEAT_FKMAP
3050 main_msg(_("-F\t\t\tStart in Farsi mode"));
3051 #endif
3052 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3053 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3054 #ifdef FEAT_GUI
3055 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3056 #endif
3057 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3058 #ifdef FEAT_WINDOWS
3059 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3060 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3061 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3062 #endif
3063 main_msg(_("+\t\t\tStart at end of file"));
3064 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3065 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3066 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3067 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3068 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3069 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3070 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3071 #ifdef FEAT_CRYPT
3072 main_msg(_("-x\t\t\tEdit encrypted files"));
3073 #endif
3074 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3075 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3076 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3077 # endif
3078 main_msg(_("-X\t\t\tDo not connect to X server"));
3079 #endif
3080 #ifdef FEAT_CLIENTSERVER
3081 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3082 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3083 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3084 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3085 # ifdef FEAT_WINDOWS
3086 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3087 # endif
3088 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3089 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3090 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3091 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3092 #endif
3093 #ifdef FEAT_VIMINFO
3094 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3095 #endif
3096 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3097 main_msg(_("--version\t\tPrint version information and exit"));
3099 #ifdef FEAT_GUI_X11
3100 # ifdef FEAT_GUI_MOTIF
3101 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3102 # else
3103 # ifdef FEAT_GUI_ATHENA
3104 # ifdef FEAT_GUI_NEXTAW
3105 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3106 # else
3107 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3108 # endif
3109 # endif
3110 # endif
3111 main_msg(_("-display <display>\tRun vim on <display>"));
3112 main_msg(_("-iconic\t\tStart vim iconified"));
3113 # if 0
3114 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3115 mch_msg(_("\t\t\t (Unimplemented)\n"));
3116 # endif
3117 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3118 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3119 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3120 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3121 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3122 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3123 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3124 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3125 # ifdef FEAT_GUI_ATHENA
3126 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3127 # endif
3128 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3129 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3130 main_msg(_("-xrm <resource>\tSet the specified resource"));
3131 #endif /* FEAT_GUI_X11 */
3132 #if defined(FEAT_GUI) && defined(RISCOS)
3133 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3134 main_msg(_("--columns <number>\tInitial width of window in columns"));
3135 main_msg(_("--rows <number>\tInitial height of window in rows"));
3136 #endif
3137 #ifdef FEAT_GUI_GTK
3138 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3139 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3140 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3141 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3142 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3143 # ifdef HAVE_GTK2
3144 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3145 # endif
3146 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3147 #endif
3148 #ifdef FEAT_GUI_W32
3149 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3150 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3151 #endif
3153 #ifdef FEAT_GUI_GNOME
3154 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3155 if (gui.starting)
3156 mch_msg("\n");
3157 else
3158 #endif
3159 mch_exit(0);
3162 #if defined(HAS_SWAP_EXISTS_ACTION)
3164 * Check the result of the ATTENTION dialog:
3165 * When "Quit" selected, exit Vim.
3166 * When "Recover" selected, recover the file.
3168 static void
3169 check_swap_exists_action()
3171 if (swap_exists_action == SEA_QUIT)
3172 getout(1);
3173 handle_swap_exists(NULL);
3175 #endif
3177 #if defined(STARTUPTIME) || defined(PROTO)
3178 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3180 static struct timeval prev_timeval;
3183 * Save the previous time before doing something that could nest.
3184 * set "*tv_rel" to the time elapsed so far.
3186 void
3187 time_push(tv_rel, tv_start)
3188 void *tv_rel, *tv_start;
3190 *((struct timeval *)tv_rel) = prev_timeval;
3191 gettimeofday(&prev_timeval, NULL);
3192 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3193 - ((struct timeval *)tv_rel)->tv_usec;
3194 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3195 - ((struct timeval *)tv_rel)->tv_sec;
3196 if (((struct timeval *)tv_rel)->tv_usec < 0)
3198 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3199 --((struct timeval *)tv_rel)->tv_sec;
3201 *(struct timeval *)tv_start = prev_timeval;
3205 * Compute the previous time after doing something that could nest.
3206 * Subtract "*tp" from prev_timeval;
3207 * Note: The arguments are (void *) to avoid trouble with systems that don't
3208 * have struct timeval.
3210 void
3211 time_pop(tp)
3212 void *tp; /* actually (struct timeval *) */
3214 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3215 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3216 if (prev_timeval.tv_usec < 0)
3218 prev_timeval.tv_usec += 1000000;
3219 --prev_timeval.tv_sec;
3223 static void
3224 time_diff(then, now)
3225 struct timeval *then;
3226 struct timeval *now;
3228 long usec;
3229 long msec;
3231 usec = now->tv_usec - then->tv_usec;
3232 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3233 usec = usec % 1000L;
3234 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3237 void
3238 time_msg(msg, tv_start)
3239 char *msg;
3240 void *tv_start; /* only for do_source: start time; actually
3241 (struct timeval *) */
3243 static struct timeval start;
3244 struct timeval now;
3246 if (time_fd != NULL)
3248 if (strstr(msg, "STARTING") != NULL)
3250 gettimeofday(&start, NULL);
3251 prev_timeval = start;
3252 fprintf(time_fd, "\n\ntimes in msec\n");
3253 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3254 fprintf(time_fd, " clock elapsed: other lines\n\n");
3256 gettimeofday(&now, NULL);
3257 time_diff(&start, &now);
3258 if (((struct timeval *)tv_start) != NULL)
3260 fprintf(time_fd, " ");
3261 time_diff(((struct timeval *)tv_start), &now);
3263 fprintf(time_fd, " ");
3264 time_diff(&prev_timeval, &now);
3265 prev_timeval = now;
3266 fprintf(time_fd, ": %s\n", msg);
3270 # ifdef WIN3264
3272 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3275 gettimeofday(struct timeval *tv, char *dummy)
3277 long t = clock();
3278 tv->tv_sec = t / CLOCKS_PER_SEC;
3279 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3280 return 0;
3282 # endif
3284 #endif
3286 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3289 * Common code for the X command server and the Win32 command server.
3292 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3295 * Do the client-server stuff, unless "--servername ''" was used.
3297 static void
3298 exec_on_server(parmp)
3299 mparm_T *parmp;
3301 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3303 # ifdef WIN32
3304 /* Initialise the client/server messaging infrastructure. */
3305 serverInitMessaging();
3306 # endif
3309 * When a command server argument was found, execute it. This may
3310 * exit Vim when it was successful. Otherwise it's executed further
3311 * on. Remember the encoding used here in "serverStrEnc".
3313 if (parmp->serverArg)
3315 cmdsrv_main(&parmp->argc, parmp->argv,
3316 parmp->serverName_arg, &parmp->serverStr);
3317 # ifdef FEAT_MBYTE
3318 parmp->serverStrEnc = vim_strsave(p_enc);
3319 # endif
3322 /* If we're still running, get the name to register ourselves.
3323 * On Win32 can register right now, for X11 need to setup the
3324 * clipboard first, it's further down. */
3325 parmp->servername = serverMakeName(parmp->serverName_arg,
3326 parmp->argv[0]);
3327 # ifdef WIN32
3328 if (parmp->servername != NULL)
3330 serverSetName(parmp->servername);
3331 vim_free(parmp->servername);
3333 # endif
3338 * Prepare for running as a Vim server.
3340 static void
3341 prepare_server(parmp)
3342 mparm_T *parmp;
3344 # if defined(FEAT_X11)
3346 * Register for remote command execution with :serversend and --remote
3347 * unless there was a -X or a --servername '' on the command line.
3348 * Only register nongui-vim's with an explicit --servername argument.
3349 * When running as root --servername is also required.
3351 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3352 # ifdef FEAT_GUI
3353 (gui.in_use
3354 # ifdef UNIX
3355 && getuid() != ROOT_UID
3356 # endif
3357 ) ||
3358 # endif
3359 parmp->serverName_arg != NULL))
3361 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3362 vim_free(parmp->servername);
3363 TIME_MSG("register server name");
3365 else
3366 serverDelayedStartName = parmp->servername;
3367 # endif
3370 * Execute command ourselves if we're here because the send failed (or
3371 * else we would have exited above).
3373 if (parmp->serverStr != NULL)
3375 char_u *p;
3377 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3378 parmp->serverStr, &p));
3379 vim_free(p);
3383 static void
3384 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3385 int *argc;
3386 char **argv;
3387 char_u *serverName_arg;
3388 char_u **serverStr;
3390 char_u *res;
3391 int i;
3392 char_u *sname;
3393 int ret;
3394 int didone = FALSE;
3395 int exiterr = 0;
3396 char **newArgV = argv + 1;
3397 int newArgC = 1,
3398 Argc = *argc;
3399 int argtype;
3400 #define ARGTYPE_OTHER 0
3401 #define ARGTYPE_EDIT 1
3402 #define ARGTYPE_EDIT_WAIT 2
3403 #define ARGTYPE_SEND 3
3404 int silent = FALSE;
3405 int tabs = FALSE;
3406 # ifndef FEAT_X11
3407 HWND srv;
3408 # else
3409 Window srv;
3411 setup_term_clip();
3412 # endif
3414 sname = serverMakeName(serverName_arg, argv[0]);
3415 if (sname == NULL)
3416 return;
3419 * Execute the command server related arguments and remove them
3420 * from the argc/argv array; We may have to return into main()
3422 for (i = 1; i < Argc; i++)
3424 res = NULL;
3425 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3427 for (; i < *argc; i++)
3429 *newArgV++ = argv[i];
3430 newArgC++;
3432 break;
3435 if (STRICMP(argv[i], "--remote-send") == 0)
3436 argtype = ARGTYPE_SEND;
3437 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3439 char *p = argv[i] + 8;
3441 argtype = ARGTYPE_EDIT;
3442 while (*p != NUL)
3444 if (STRNICMP(p, "-wait", 5) == 0)
3446 argtype = ARGTYPE_EDIT_WAIT;
3447 p += 5;
3449 else if (STRNICMP(p, "-silent", 7) == 0)
3451 silent = TRUE;
3452 p += 7;
3454 else if (STRNICMP(p, "-tab", 4) == 0)
3456 tabs = TRUE;
3457 p += 4;
3459 else
3461 argtype = ARGTYPE_OTHER;
3462 break;
3466 else
3467 argtype = ARGTYPE_OTHER;
3469 if (argtype != ARGTYPE_OTHER)
3471 if (i == *argc - 1)
3472 mainerr_arg_missing((char_u *)argv[i]);
3473 if (argtype == ARGTYPE_SEND)
3475 *serverStr = (char_u *)argv[i + 1];
3476 i++;
3478 else
3480 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3481 tabs, argtype == ARGTYPE_EDIT_WAIT);
3482 if (*serverStr == NULL)
3484 /* Probably out of memory, exit. */
3485 didone = TRUE;
3486 exiterr = 1;
3487 break;
3489 Argc = i;
3491 # ifdef FEAT_X11
3492 if (xterm_dpy == NULL)
3494 mch_errmsg(_("No display"));
3495 ret = -1;
3497 else
3498 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3499 NULL, &srv, 0, 0, silent);
3500 # else
3501 /* Win32 always works? */
3502 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3503 # endif
3504 if (ret < 0)
3506 if (argtype == ARGTYPE_SEND)
3508 /* Failed to send, abort. */
3509 mch_errmsg(_(": Send failed.\n"));
3510 didone = TRUE;
3511 exiterr = 1;
3513 else if (!silent)
3514 /* Let vim start normally. */
3515 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3516 break;
3519 # ifdef FEAT_GUI_W32
3520 /* Guess that when the server name starts with "g" it's a GUI
3521 * server, which we can bring to the foreground here.
3522 * Foreground() in the server doesn't work very well. */
3523 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3524 SetForegroundWindow(srv);
3525 # endif
3528 * For --remote-wait: Wait until the server did edit each
3529 * file. Also detect that the server no longer runs.
3531 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3533 int numFiles = *argc - i - 1;
3534 int j;
3535 char_u *done = alloc(numFiles);
3536 char_u *p;
3537 # ifdef FEAT_GUI_W32
3538 NOTIFYICONDATA ni;
3539 int count = 0;
3540 extern HWND message_window;
3541 # endif
3543 if (numFiles > 0 && argv[i + 1][0] == '+')
3544 /* Skip "+cmd" argument, don't wait for it to be edited. */
3545 --numFiles;
3547 # ifdef FEAT_GUI_W32
3548 ni.cbSize = sizeof(ni);
3549 ni.hWnd = message_window;
3550 ni.uID = 0;
3551 ni.uFlags = NIF_ICON|NIF_TIP;
3552 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3553 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3554 Shell_NotifyIcon(NIM_ADD, &ni);
3555 # endif
3557 /* Wait for all files to unload in remote */
3558 memset(done, 0, numFiles);
3559 while (memchr(done, 0, numFiles) != NULL)
3561 # ifdef WIN32
3562 p = serverGetReply(srv, NULL, TRUE, TRUE);
3563 if (p == NULL)
3564 break;
3565 # else
3566 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3567 break;
3568 # endif
3569 j = atoi((char *)p);
3570 if (j >= 0 && j < numFiles)
3572 # ifdef FEAT_GUI_W32
3573 ++count;
3574 sprintf(ni.szTip, _("%d of %d edited"),
3575 count, numFiles);
3576 Shell_NotifyIcon(NIM_MODIFY, &ni);
3577 # endif
3578 done[j] = 1;
3581 # ifdef FEAT_GUI_W32
3582 Shell_NotifyIcon(NIM_DELETE, &ni);
3583 # endif
3586 else if (STRICMP(argv[i], "--remote-expr") == 0)
3588 if (i == *argc - 1)
3589 mainerr_arg_missing((char_u *)argv[i]);
3590 # ifdef WIN32
3591 /* Win32 always works? */
3592 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3593 &res, NULL, 1, FALSE) < 0)
3594 # else
3595 if (xterm_dpy == NULL)
3596 mch_errmsg(_("No display: Send expression failed.\n"));
3597 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3598 &res, NULL, 1, 1, FALSE) < 0)
3599 # endif
3601 if (res != NULL && *res != NUL)
3603 /* Output error from remote */
3604 mch_errmsg((char *)res);
3605 vim_free(res);
3606 res = NULL;
3608 mch_errmsg(_(": Send expression failed.\n"));
3611 else if (STRICMP(argv[i], "--serverlist") == 0)
3613 # ifdef WIN32
3614 /* Win32 always works? */
3615 res = serverGetVimNames();
3616 # else
3617 if (xterm_dpy != NULL)
3618 res = serverGetVimNames(xterm_dpy);
3619 # endif
3620 if (called_emsg)
3621 mch_errmsg("\n");
3623 else if (STRICMP(argv[i], "--servername") == 0)
3625 /* Alredy processed. Take it out of the command line */
3626 i++;
3627 continue;
3629 else
3631 *newArgV++ = argv[i];
3632 newArgC++;
3633 continue;
3635 didone = TRUE;
3636 if (res != NULL && *res != NUL)
3638 mch_msg((char *)res);
3639 if (res[STRLEN(res) - 1] != '\n')
3640 mch_msg("\n");
3642 vim_free(res);
3645 if (didone)
3647 display_errors(); /* display any collected messages */
3648 exit(exiterr); /* Mission accomplished - get out */
3651 /* Return back into main() */
3652 *argc = newArgC;
3653 vim_free(sname);
3657 * Build a ":drop" command to send to a Vim server.
3659 static char_u *
3660 build_drop_cmd(filec, filev, tabs, sendReply)
3661 int filec;
3662 char **filev;
3663 int tabs; /* Use ":tab drop" instead of ":drop". */
3664 int sendReply;
3666 garray_T ga;
3667 int i;
3668 char_u *inicmd = NULL;
3669 char_u *p;
3670 char_u cwd[MAXPATHL];
3672 if (filec > 0 && filev[0][0] == '+')
3674 inicmd = (char_u *)filev[0] + 1;
3675 filev++;
3676 filec--;
3678 /* Check if we have at least one argument. */
3679 if (filec <= 0)
3680 mainerr_arg_missing((char_u *)filev[-1]);
3681 if (mch_dirname(cwd, MAXPATHL) != OK)
3682 return NULL;
3683 if ((p = vim_strsave_escaped_ext(cwd,
3684 #ifdef BACKSLASH_IN_FILENAME
3685 "", /* rem_backslash() will tell what chars to escape */
3686 #else
3687 PATH_ESC_CHARS,
3688 #endif
3689 '\\', TRUE)) == NULL)
3690 return NULL;
3691 ga_init2(&ga, 1, 100);
3692 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3693 ga_concat(&ga, p);
3694 vim_free(p);
3696 /* Call inputsave() so that a prompt for an encryption key works. */
3697 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3698 if (tabs)
3699 ga_concat(&ga, (char_u *)"tab ");
3700 ga_concat(&ga, (char_u *)"drop");
3701 for (i = 0; i < filec; i++)
3703 /* On Unix the shell has already expanded the wildcards, don't want to
3704 * do it again in the Vim server. On MS-Windows only escape
3705 * non-wildcard characters. */
3706 p = vim_strsave_escaped((char_u *)filev[i],
3707 #ifdef UNIX
3708 PATH_ESC_CHARS
3709 #else
3710 (char_u *)" \t%#"
3711 #endif
3713 if (p == NULL)
3715 vim_free(ga.ga_data);
3716 return NULL;
3718 ga_concat(&ga, (char_u *)" ");
3719 ga_concat(&ga, p);
3720 vim_free(p);
3722 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3723 * CTRL-\ CTRL-N again. */
3724 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3725 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3726 if (sendReply)
3727 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3728 ga_concat(&ga, (char_u *)"<CR>:");
3729 if (inicmd != NULL)
3731 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3732 * the following commands to be inserted as text. Use a "|",
3733 * hopefully "inicmd" does allow this... */
3734 ga_concat(&ga, inicmd);
3735 ga_concat(&ga, (char_u *)"|");
3737 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3738 * clear command line. */
3739 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3740 ga_append(&ga, NUL);
3741 return ga.ga_data;
3745 * Replace termcodes such as <CR> and insert as key presses if there is room.
3747 void
3748 server_to_input_buf(str)
3749 char_u *str;
3751 char_u *ptr = NULL;
3752 char_u *cpo_save = p_cpo;
3754 /* Set 'cpoptions' the way we want it.
3755 * B set - backslashes are *not* treated specially
3756 * k set - keycodes are *not* reverse-engineered
3757 * < unset - <Key> sequences *are* interpreted
3758 * The last but one parameter of replace_termcodes() is TRUE so that the
3759 * <lt> sequence is recognised - needed for a real backslash.
3761 p_cpo = (char_u *)"Bk";
3762 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3763 p_cpo = cpo_save;
3765 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3768 * Add the string to the input stream.
3769 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3771 * First clear typed characters from the typeahead buffer, there could
3772 * be half a mapping there. Then append to the existing string, so
3773 * that multiple commands from a client are concatenated.
3775 if (typebuf.tb_maplen < typebuf.tb_len)
3776 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3777 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3779 /* Let input_available() know we inserted text in the typeahead
3780 * buffer. */
3781 typebuf_was_filled = TRUE;
3783 vim_free((char_u *)ptr);
3787 * Evaluate an expression that the client sent to a string.
3788 * Handles disabling error messages and disables debugging, otherwise Vim
3789 * hangs, waiting for "cont" to be typed.
3791 char_u *
3792 eval_client_expr_to_string(expr)
3793 char_u *expr;
3795 char_u *res;
3796 int save_dbl = debug_break_level;
3797 int save_ro = redir_off;
3799 debug_break_level = -1;
3800 redir_off = 0;
3801 ++emsg_skip;
3803 res = eval_to_string(expr, NULL, TRUE);
3805 debug_break_level = save_dbl;
3806 redir_off = save_ro;
3807 --emsg_skip;
3809 /* A client can tell us to redraw, but not to display the cursor, so do
3810 * that here. */
3811 setcursor();
3812 out_flush();
3813 #ifdef FEAT_GUI
3814 if (gui.in_use)
3815 gui_update_cursor(FALSE, FALSE);
3816 #endif
3818 return res;
3822 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3823 * return an allocated string. Otherwise return "data".
3824 * "*tofree" is set to the result when it needs to be freed later.
3826 /*ARGSUSED*/
3827 char_u *
3828 serverConvert(client_enc, data, tofree)
3829 char_u *client_enc;
3830 char_u *data;
3831 char_u **tofree;
3833 char_u *res = data;
3835 *tofree = NULL;
3836 # ifdef FEAT_MBYTE
3837 if (client_enc != NULL && p_enc != NULL)
3839 vimconv_T vimconv;
3841 vimconv.vc_type = CONV_NONE;
3842 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3843 && vimconv.vc_type != CONV_NONE)
3845 res = string_convert(&vimconv, data, NULL);
3846 if (res == NULL)
3847 res = data;
3848 else
3849 *tofree = res;
3851 convert_setup(&vimconv, NULL, NULL);
3853 # endif
3854 return res;
3859 * Make our basic server name: use the specified "arg" if given, otherwise use
3860 * the tail of the command "cmd" we were started with.
3861 * Return the name in allocated memory. This doesn't include a serial number.
3863 static char_u *
3864 serverMakeName(arg, cmd)
3865 char_u *arg;
3866 char *cmd;
3868 char_u *p;
3870 if (arg != NULL && *arg != NUL)
3871 p = vim_strsave_up(arg);
3872 else
3874 p = vim_strsave_up(gettail((char_u *)cmd));
3875 /* Remove .exe or .bat from the name. */
3876 if (p != NULL && vim_strchr(p, '.') != NULL)
3877 *vim_strchr(p, '.') = NUL;
3879 return p;
3881 #endif /* FEAT_CLIENTSERVER */
3884 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3886 #if defined(FEAT_FKMAP) || defined(PROTO)
3887 # include "farsi.c"
3888 #endif
3891 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3893 #if defined(FEAT_ARABIC) || defined(PROTO)
3894 # include "arabic.c"
3895 #endif