vim72-20100325-kaoriya-w64j.zip
[MacVim/KaoriYa.git] / src / main.c
blobd4d616b7ba1d1bf4f6467885911001f9a153a5c2
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(WIN16) || 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 __CYGWIN__
22 # ifndef WIN32
23 # include <cygwin/version.h>
24 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
25 * cygwin_conv_path() */
26 # endif
27 # include <limits.h>
28 #endif
30 /* Maximum number of commands from + or -c arguments. */
31 #define MAX_ARG_CMDS 10
33 /* values for "window_layout" */
34 #define WIN_HOR 1 /* "-o" horizontally split windows */
35 #define WIN_VER 2 /* "-O" vertically split windows */
36 #define WIN_TABS 3 /* "-p" windows on tab pages */
38 /* Struct for various parameters passed between main() and other functions. */
39 typedef struct
41 int argc;
42 char **argv;
44 int evim_mode; /* started as "evim" */
45 char_u *use_vimrc; /* vimrc from -u argument */
47 int n_commands; /* no. of commands from + or -c */
48 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
49 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
50 int n_pre_commands; /* no. of commands from --cmd */
51 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
53 int edit_type; /* type of editing to do */
54 char_u *tagname; /* tag from -t argument */
55 #ifdef FEAT_QUICKFIX
56 char_u *use_ef; /* 'errorfile' from -q argument */
57 #endif
59 int want_full_screen;
60 int stdout_isatty; /* is stdout a terminal? */
61 char_u *term; /* specified terminal name */
62 #ifdef FEAT_CRYPT
63 int ask_for_key; /* -x argument */
64 #endif
65 int no_swap_file; /* "-n" argument used */
66 #ifdef FEAT_EVAL
67 int use_debug_break_level;
68 #endif
69 #ifdef FEAT_WINDOWS
70 int window_count; /* number of windows to use */
71 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
72 #endif
74 #ifdef FEAT_CLIENTSERVER
75 int serverArg; /* TRUE when argument for a server */
76 char_u *serverName_arg; /* cmdline arg for server name */
77 char_u *serverStr; /* remote server command */
78 char_u *serverStrEnc; /* encoding of serverStr */
79 char_u *servername; /* allocated name for our server */
80 #endif
81 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
82 int literal; /* don't expand file names */
83 #endif
84 #ifdef MSWIN
85 int full_path; /* file name argument was full path */
86 #endif
87 #ifdef FEAT_DIFF
88 int diff_mode; /* start with 'diff' set */
89 #endif
90 } mparm_T;
92 /* Values for edit_type. */
93 #define EDIT_NONE 0 /* no edit type yet */
94 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */
95 #define EDIT_STDIN 2 /* read file from stdin */
96 #define EDIT_TAG 3 /* tag name argument given, use tagname */
97 #define EDIT_QF 4 /* start in quickfix mode */
99 #if defined(UNIX) || defined(VMS)
100 static int file_owned __ARGS((char *fname));
101 #endif
102 static void mainerr __ARGS((int, char_u *));
103 static void main_msg __ARGS((char *s));
104 static void usage __ARGS((void));
105 static int get_number_arg __ARGS((char_u *p, int *idx, int def));
106 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
107 static void init_locale __ARGS((void));
108 #endif
109 static void parse_command_name __ARGS((mparm_T *parmp));
110 static void early_arg_scan __ARGS((mparm_T *parmp));
111 static void command_line_scan __ARGS((mparm_T *parmp));
112 static void check_tty __ARGS((mparm_T *parmp));
113 static void read_stdin __ARGS((void));
114 static void create_windows __ARGS((mparm_T *parmp));
115 #ifdef FEAT_WINDOWS
116 static void edit_buffers __ARGS((mparm_T *parmp));
117 #endif
118 static void exe_pre_commands __ARGS((mparm_T *parmp));
119 static void exe_commands __ARGS((mparm_T *parmp));
120 static void source_startup_scripts __ARGS((mparm_T *parmp));
121 static void main_start_gui __ARGS((void));
122 #if defined(HAS_SWAP_EXISTS_ACTION)
123 static void check_swap_exists_action __ARGS((void));
124 #endif
125 #ifdef FEAT_CLIENTSERVER
126 static void exec_on_server __ARGS((mparm_T *parmp));
127 static void prepare_server __ARGS((mparm_T *parmp));
128 static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
129 static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
130 #endif
134 * Different types of error messages.
136 static char *(main_errors[]) =
138 N_("Unknown option argument"),
139 #define ME_UNKNOWN_OPTION 0
140 N_("Too many edit arguments"),
141 #define ME_TOO_MANY_ARGS 1
142 N_("Argument missing after"),
143 #define ME_ARG_MISSING 2
144 N_("Garbage after option argument"),
145 #define ME_GARBAGE 3
146 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
147 #define ME_EXTRA_CMD 4
148 N_("Invalid argument for"),
149 #define ME_INVALID_ARG 5
152 #ifndef PROTO /* don't want a prototype for main() */
154 # ifdef VIMDLL
155 _export
156 # endif
157 # ifdef FEAT_GUI_MSWIN
158 # ifdef __BORLANDC__
159 _cdecl
160 # endif
161 VimMain
162 # else
163 main
164 # endif
165 (argc, argv)
166 int argc;
167 char **argv;
169 char_u *fname = NULL; /* file name from command line */
170 mparm_T params; /* various parameters passed between
171 * main() and other functions. */
172 #ifdef STARTUPTIME
173 int i;
174 #endif
177 * Do any system-specific initialisations. These can NOT use IObuff or
178 * NameBuff. Thus emsg2() cannot be called!
180 mch_early_init();
182 /* Many variables are in "params" so that we can pass them to invoked
183 * functions without a lot of arguments. "argc" and "argv" are also
184 * copied, so that they can be changed. */
185 vim_memset(&params, 0, sizeof(params));
186 params.argc = argc;
187 params.argv = argv;
188 params.want_full_screen = TRUE;
189 #ifdef FEAT_EVAL
190 params.use_debug_break_level = -1;
191 #endif
192 #ifdef FEAT_WINDOWS
193 params.window_count = -1;
194 #endif
196 #ifdef FEAT_TCL
197 vim_tcl_init(params.argv[0]);
198 #endif
200 #ifdef MEM_PROFILE
201 atexit(vim_mem_profile_dump);
202 #endif
204 #ifdef STARTUPTIME
205 for (i = 1; i < argc; ++i)
207 if (STRICMP(argv[i], "--startuptime") == 0 && i + 1 < argc)
209 time_fd = mch_fopen(argv[i + 1], "a");
210 TIME_MSG("--- VIM STARTING ---");
211 break;
214 #endif
215 starttime = time(NULL);
217 #ifdef __EMX__
218 _wildcard(&params.argc, &params.argv);
219 #endif
221 #ifdef FEAT_MBYTE
222 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
223 #endif
224 #ifdef FEAT_EVAL
225 eval_init(); /* init global variables */
226 #endif
228 #ifdef __QNXNTO__
229 qnx_init(); /* PhAttach() for clipboard, (and gui) */
230 #endif
232 #ifdef MAC_OS_CLASSIC
233 /* Prepare for possibly starting GUI sometime */
234 /* Macintosh needs this before any memory is allocated. */
235 gui_prepare(&params.argc, params.argv);
236 TIME_MSG("GUI prepared");
237 #endif
239 /* Init the table of Normal mode commands. */
240 init_normal_cmds();
242 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
243 make_version(); /* Construct the long version string. */
244 #endif
247 * Allocate space for the generic buffers (needed for set_init_1() and
248 * EMSG2()).
250 if ((IObuff = alloc(IOSIZE)) == NULL
251 || (NameBuff = alloc(MAXPATHL)) == NULL)
252 mch_exit(0);
253 TIME_MSG("Allocated generic buffers");
255 #ifdef NBDEBUG
256 /* Wait a moment for debugging NetBeans. Must be after allocating
257 * NameBuff. */
258 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
259 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
260 TIME_MSG("NetBeans debug wait");
261 #endif
263 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
265 * Setup to use the current locale (for ctype() and many other things).
266 * NOTE: Translated messages with encodings other than latin1 will not
267 * work until set_init_1() has been called!
269 init_locale();
270 TIME_MSG("locale set");
271 #endif
273 #ifdef FEAT_GUI
274 gui.dofork = TRUE; /* default is to use fork() */
275 #endif
278 * Do a first scan of the arguments in "argv[]":
279 * -display or --display
280 * --server...
281 * --socketid
282 * --windowid
284 early_arg_scan(&params);
286 #ifdef FEAT_SUN_WORKSHOP
287 findYourself(params.argv[0]);
288 #endif
289 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
290 /* Prepare for possibly starting GUI sometime */
291 gui_prepare(&params.argc, params.argv);
292 TIME_MSG("GUI prepared");
293 #endif
295 #ifdef FEAT_CLIPBOARD
296 clip_init(FALSE); /* Initialise clipboard stuff */
297 TIME_MSG("clipboard setup");
298 #endif
301 * Check if we have an interactive window.
302 * On the Amiga: If there is no window, we open one with a newcli command
303 * (needed for :! to * work). mch_check_win() will also handle the -d or
304 * -dev argument.
306 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
307 TIME_MSG("window checked");
310 * Allocate the first window and buffer.
311 * Can't do anything without it, exit when it fails.
313 if (win_alloc_first() == FAIL)
314 mch_exit(0);
316 init_yank(); /* init yank buffers */
318 alist_init(&global_alist); /* Init the argument list to empty. */
321 * Set the default values for the options.
322 * NOTE: Non-latin1 translated messages are working only after this,
323 * because this is where "has_mbyte" will be set, which is used by
324 * msg_outtrans_len_attr().
325 * First find out the home directory, needed to expand "~" in options.
327 init_homedir(); /* find real value of $HOME */
328 set_init_1();
329 TIME_MSG("inits 1");
331 #ifdef FEAT_EVAL
332 set_lang_var(); /* set v:lang and v:ctype */
333 #endif
335 #ifdef FEAT_CLIENTSERVER
337 * Do the client-server stuff, unless "--servername ''" was used.
338 * This may exit Vim if the command was sent to the server.
340 exec_on_server(&params);
341 #endif
344 * Figure out the way to work from the command name argv[0].
345 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
347 parse_command_name(&params);
350 * Process the command line arguments. File names are put in the global
351 * argument list "global_alist".
353 command_line_scan(&params);
354 TIME_MSG("parsing arguments");
357 * On some systems, when we compile with the GUI, we always use it. On Mac
358 * there is no terminal version, and on Windows we can't fork one off with
359 * :gui.
361 #ifdef ALWAYS_USE_GUI
362 gui.starting = TRUE;
363 #else
364 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
366 * Check if the GUI can be started. Reset gui.starting if not.
367 * Don't know about other systems, stay on the safe side and don't check.
369 if (gui.starting)
371 if (gui_init_check() == FAIL)
373 gui.starting = FALSE;
375 /* When running "evim" or "gvim -y" we need the menus, exit if we
376 * don't have them. */
377 if (params.evim_mode)
378 mch_exit(1);
380 # if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
381 /* Re-initialize locale, it may have been altered by gui_init_check() */
382 init_locale();
383 # endif
385 # endif
386 #endif
388 if (GARGCOUNT > 0)
390 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
392 * Expand wildcards in file names.
394 if (!params.literal)
396 /* Temporarily add '(' and ')' to 'isfname'. These are valid
397 * filename characters but are excluded from 'isfname' to make
398 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
399 do_cmdline_cmd((char_u *)":set isf+=(,)");
400 alist_expand(NULL, 0);
401 do_cmdline_cmd((char_u *)":set isf&");
403 #endif
404 fname = alist_name(&GARGLIST[0]);
407 #if defined(WIN32) && defined(FEAT_MBYTE)
409 extern void set_alist_count(void);
411 /* Remember the number of entries in the argument list. If it changes
412 * we don't react on setting 'encoding'. */
413 set_alist_count();
415 #endif
417 #ifdef MSWIN
418 if (GARGCOUNT == 1 && params.full_path)
421 * If there is one filename, fully qualified, we have very probably
422 * been invoked from explorer, so change to the file's directory.
423 * Hint: to avoid this when typing a command use a forward slash.
424 * If the cd fails, it doesn't matter.
426 (void)vim_chdirfile(fname);
428 #endif
429 TIME_MSG("expanding arguments");
431 #ifdef FEAT_DIFF
432 if (params.diff_mode && params.window_count == -1)
433 params.window_count = 0; /* open up to 3 windows */
434 #endif
436 /* Don't redraw until much later. */
437 ++RedrawingDisabled;
440 * When listing swap file names, don't do cursor positioning et. al.
442 if (recoverymode && fname == NULL)
443 params.want_full_screen = FALSE;
446 * When certain to start the GUI, don't check capabilities of terminal.
447 * For GTK we can't be sure, but when started from the desktop it doesn't
448 * make sense to try using a terminal.
450 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
451 if (gui.starting
452 # ifdef FEAT_GUI_GTK
453 && !isatty(2)
454 # endif
456 params.want_full_screen = FALSE;
457 #endif
459 #if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
460 /* When the GUI is started from Finder, need to display messages in a
461 * message box. isatty(2) returns TRUE anyway, thus we need to check the
462 * name to know we're not started from a terminal. */
463 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
465 params.want_full_screen = FALSE;
467 /* Avoid always using "/" as the current directory. Note that when
468 * started from Finder the arglist will be filled later in
469 * HandleODocAE() and "fname" will be NULL. */
470 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
471 && STRCMP(NameBuff, "/") == 0)
473 if (fname != NULL)
474 (void)vim_chdirfile(fname);
475 else
477 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
478 vim_chdir(NameBuff);
482 #endif
485 * mch_init() sets up the terminal (window) for use. This must be
486 * done after resetting full_screen, otherwise it may move the cursor
487 * (MSDOS).
488 * Note that we may use mch_exit() before mch_init()!
490 mch_init();
491 TIME_MSG("shell init");
493 #ifdef USE_XSMP
495 * For want of anywhere else to do it, try to connect to xsmp here.
496 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
497 * Hijacking -X 'no X connection' to also disable XSMP connection as that
498 * has a similar delay upon failure.
499 * Only try if SESSION_MANAGER is set to something non-null.
501 if (!x_no_connect)
503 char *p = getenv("SESSION_MANAGER");
505 if (p != NULL && *p != NUL)
507 xsmp_init();
508 TIME_MSG("xsmp init");
511 #endif
514 * Print a warning if stdout is not a terminal.
516 check_tty(&params);
518 /* This message comes before term inits, but after setting "silent_mode"
519 * when the input is not a tty. */
520 if (GARGCOUNT > 1 && !silent_mode)
521 printf(_("%d files to edit\n"), GARGCOUNT);
523 if (params.want_full_screen && !silent_mode)
525 termcapinit(params.term); /* set terminal name and get terminal
526 capabilities (will set full_screen) */
527 screen_start(); /* don't know where cursor is now */
528 TIME_MSG("Termcap init");
532 * Set the default values for the options that use Rows and Columns.
534 ui_get_shellsize(); /* inits Rows and Columns */
535 #ifdef FEAT_NETBEANS_INTG
536 if (usingNetbeans)
537 Columns += 2; /* leave room for glyph gutter */
538 #endif
539 win_init_size();
540 #ifdef FEAT_DIFF
541 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
542 * file. There is no buffer yet though. */
543 if (params.diff_mode)
544 diff_win_options(firstwin, FALSE);
545 #endif
547 cmdline_row = Rows - p_ch;
548 msg_row = cmdline_row;
549 screenalloc(FALSE); /* allocate screen buffers */
550 set_init_2();
551 TIME_MSG("inits 2");
553 msg_scroll = TRUE;
554 no_wait_return = TRUE;
556 init_mappings(); /* set up initial mappings */
558 init_highlight(TRUE, FALSE); /* set the default highlight groups */
559 TIME_MSG("init highlight");
561 #ifdef FEAT_EVAL
562 /* Set the break level after the terminal is initialized. */
563 debug_break_level = params.use_debug_break_level;
564 #endif
566 /* Execute --cmd arguments. */
567 exe_pre_commands(&params);
569 /* Source startup scripts. */
570 source_startup_scripts(&params);
572 #ifdef FEAT_EVAL
574 * Read all the plugin files.
575 * Only when compiled with +eval, since most plugins need it.
577 if (p_lpl)
579 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
580 source_runtime((char_u *)"plugin/*.vim", TRUE);
581 # else
582 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
583 # endif
584 TIME_MSG("loading plugins");
586 #endif
588 #ifdef FEAT_DIFF
589 /* Decide about window layout for diff mode after reading vimrc. */
590 if (params.diff_mode && params.window_layout == 0)
592 if (diffopt_horizontal())
593 params.window_layout = WIN_HOR; /* use horizontal split */
594 else
595 params.window_layout = WIN_VER; /* use vertical split */
597 #endif
600 * Recovery mode without a file name: List swap files.
601 * This uses the 'dir' option, therefore it must be after the
602 * initializations.
604 if (recoverymode && fname == NULL)
606 recover_names(NULL, TRUE, 0);
607 mch_exit(0);
611 * Set a few option defaults after reading .vimrc files:
612 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
614 set_init_3();
615 TIME_MSG("inits 3");
618 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
619 * Note that this overrides anything from a vimrc file.
621 if (params.no_swap_file)
622 p_uc = 0;
624 #ifdef FEAT_FKMAP
625 if (curwin->w_p_rl && p_altkeymap)
627 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
628 # ifdef FEAT_ARABIC
629 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
630 # endif
631 p_fkmap = TRUE; /* Set the Farsi keymap mode */
633 #endif
635 #ifdef FEAT_GUI
636 if (gui.starting)
638 #if defined(UNIX) || defined(VMS)
639 /* When something caused a message from a vimrc script, need to output
640 * an extra newline before the shell prompt. */
641 if (did_emsg || msg_didout)
642 putchar('\n');
643 #endif
645 gui_start(); /* will set full_screen to TRUE */
646 TIME_MSG("starting GUI");
648 /* When running "evim" or "gvim -y" we need the menus, exit if we
649 * don't have them. */
650 if (!gui.in_use && params.evim_mode)
651 mch_exit(1);
653 #endif
655 #ifdef SPAWNO /* special MSDOS swapping library */
656 init_SPAWNO("", SWAP_ANY);
657 #endif
659 #ifdef FEAT_VIMINFO
661 * Read in registers, history etc, but not marks, from the viminfo file.
662 * This is where v:oldfiles gets filled.
664 if (*p_viminfo != NUL)
666 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
667 TIME_MSG("reading viminfo");
669 #endif
671 #ifdef FEAT_QUICKFIX
673 * "-q errorfile": Load the error file now.
674 * If the error file can't be read, exit before doing anything else.
676 if (params.edit_type == EDIT_QF)
678 if (params.use_ef != NULL)
679 set_string_option_direct((char_u *)"ef", -1,
680 params.use_ef, OPT_FREE, SID_CARG);
681 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
683 out_char('\n');
684 mch_exit(3);
686 TIME_MSG("reading errorfile");
688 #endif
691 * Start putting things on the screen.
692 * Scroll screen down before drawing over it
693 * Clear screen now, so file message will not be cleared.
695 starting = NO_BUFFERS;
696 no_wait_return = FALSE;
697 if (!exmode_active)
698 msg_scroll = FALSE;
700 #ifdef FEAT_GUI
702 * This seems to be required to make callbacks to be called now, instead
703 * of after things have been put on the screen, which then may be deleted
704 * when getting a resize callback.
705 * For the Mac this handles putting files dropped on the Vim icon to
706 * global_alist.
708 if (gui.in_use)
710 # ifdef FEAT_SUN_WORKSHOP
711 if (!usingSunWorkShop)
712 # endif
713 gui_wait_for_chars(50L);
714 TIME_MSG("GUI delay");
716 #endif
718 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
719 qnx_clip_init();
720 #endif
722 #ifdef FEAT_XCLIPBOARD
723 /* Start using the X clipboard, unless the GUI was started. */
724 # ifdef FEAT_GUI
725 if (!gui.in_use)
726 # endif
728 setup_term_clip();
729 TIME_MSG("setup clipboard");
731 #endif
733 #ifdef FEAT_CLIENTSERVER
734 /* Prepare for being a Vim server. */
735 prepare_server(&params);
736 #endif
739 * If "-" argument given: Read file from stdin.
740 * Do this before starting Raw mode, because it may change things that the
741 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
742 * are the same terminal: "cat | vim -".
743 * Using autocommands here may cause trouble...
745 if (params.edit_type == EDIT_STDIN && !recoverymode)
746 read_stdin();
748 #if defined(UNIX) || defined(VMS)
749 /* When switching screens and something caused a message from a vimrc
750 * script, need to output an extra newline on exit. */
751 if ((did_emsg || msg_didout) && *T_TI != NUL)
752 newline_on_exit = TRUE;
753 #endif
756 * When done something that is not allowed or error message call
757 * wait_return. This must be done before starttermcap(), because it may
758 * switch to another screen. It must be done after settmode(TMODE_RAW),
759 * because we want to react on a single key stroke.
760 * Call settmode and starttermcap here, so the T_KS and T_TI may be
761 * defined by termcapinit and redefined in .exrc.
763 settmode(TMODE_RAW);
764 TIME_MSG("setting raw mode");
766 if (need_wait_return || msg_didany)
768 wait_return(TRUE);
769 TIME_MSG("waiting for return");
772 starttermcap(); /* start termcap if not done by wait_return() */
773 TIME_MSG("start termcap");
775 #ifdef FEAT_MOUSE
776 setmouse(); /* may start using the mouse */
777 #endif
778 if (scroll_region)
779 scroll_region_reset(); /* In case Rows changed */
780 scroll_start(); /* may scroll the screen to the right position */
783 * Don't clear the screen when starting in Ex mode, unless using the GUI.
785 if (exmode_active
786 #ifdef FEAT_GUI
787 && !gui.in_use
788 #endif
790 must_redraw = CLEAR;
791 else
793 screenclear(); /* clear screen */
794 TIME_MSG("clearing screen");
797 #ifdef FEAT_CRYPT
798 if (params.ask_for_key)
800 (void)get_crypt_key(TRUE, TRUE);
801 TIME_MSG("getting crypt key");
803 #endif
805 no_wait_return = TRUE;
808 * Create the requested number of windows and edit buffers in them.
809 * Also does recovery if "recoverymode" set.
811 create_windows(&params);
812 TIME_MSG("opening buffers");
814 #ifdef FEAT_EVAL
815 /* clear v:swapcommand */
816 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
817 #endif
819 /* Ex starts at last line of the file */
820 if (exmode_active)
821 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
823 #ifdef FEAT_AUTOCMD
824 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
825 TIME_MSG("BufEnter autocommands");
826 #endif
827 setpcmark();
829 #ifdef FEAT_QUICKFIX
831 * When started with "-q errorfile" jump to first error now.
833 if (params.edit_type == EDIT_QF)
835 qf_jump(NULL, 0, 0, FALSE);
836 TIME_MSG("jump to first error");
838 #endif
840 #ifdef FEAT_WINDOWS
842 * If opened more than one window, start editing files in the other
843 * windows.
845 edit_buffers(&params);
846 #endif
848 #ifdef FEAT_DIFF
849 if (params.diff_mode)
851 win_T *wp;
853 /* set options in each window for "vimdiff". */
854 for (wp = firstwin; wp != NULL; wp = wp->w_next)
855 diff_win_options(wp, TRUE);
857 #endif
860 * Shorten any of the filenames, but only when absolute.
862 shorten_fnames(FALSE);
865 * Need to jump to the tag before executing the '-c command'.
866 * Makes "vim -c '/return' -t main" work.
868 if (params.tagname != NULL)
870 #if defined(HAS_SWAP_EXISTS_ACTION)
871 swap_exists_did_quit = FALSE;
872 #endif
874 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
875 do_cmdline_cmd(IObuff);
876 TIME_MSG("jumping to tag");
878 #if defined(HAS_SWAP_EXISTS_ACTION)
879 /* If the user doesn't want to edit the file then we quit here. */
880 if (swap_exists_did_quit)
881 getout(1);
882 #endif
885 /* Execute any "+", "-c" and "-S" arguments. */
886 if (params.n_commands > 0)
887 exe_commands(&params);
889 RedrawingDisabled = 0;
890 redraw_all_later(NOT_VALID);
891 no_wait_return = FALSE;
892 starting = 0;
894 #ifdef FEAT_TERMRESPONSE
895 /* Requesting the termresponse is postponed until here, so that a "-c q"
896 * argument doesn't make it appear in the shell Vim was started from. */
897 may_req_termresponse();
898 #endif
900 /* start in insert mode */
901 if (p_im)
902 need_start_insertmode = TRUE;
904 #ifdef FEAT_AUTOCMD
905 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
906 TIME_MSG("VimEnter autocommands");
907 #endif
909 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
910 /* When a startup script or session file setup for diff'ing and
911 * scrollbind, sync the scrollbind now. */
912 if (curwin->w_p_diff && curwin->w_p_scb)
914 update_topline();
915 check_scrollbind((linenr_T)0, 0L);
916 TIME_MSG("diff scrollbinding");
918 #endif
920 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
921 mch_set_winsize_now(); /* Allow winsize changes from now on */
922 #endif
924 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
925 /* When tab pages were created, may need to update the tab pages line and
926 * scrollbars. This is skipped while creating them. */
927 if (first_tabpage->tp_next != NULL)
929 out_flush();
930 gui_init_which_components(NULL);
931 gui_update_scrollbars(TRUE);
933 need_mouse_correct = TRUE;
934 #endif
936 /* If ":startinsert" command used, stuff a dummy command to be able to
937 * call normal_cmd(), which will then start Insert mode. */
938 if (restart_edit != 0)
939 stuffcharReadbuff(K_NOP);
941 #ifdef FEAT_NETBEANS_INTG
942 if (usingNetbeans)
943 /* Tell the client that it can start sending commands. */
944 netbeans_startup_done();
945 #endif
947 TIME_MSG("before starting main loop");
950 * Call the main command loop. This never returns.
951 * For embedded MzScheme the main_loop will be called by Scheme
952 * for proper stack tracking
954 #ifndef FEAT_MZSCHEME
955 main_loop(FALSE, FALSE);
956 #else
957 mzscheme_main();
958 #endif
960 return 0;
962 #endif /* PROTO */
965 * Main loop: Execute Normal mode commands until exiting Vim.
966 * Also used to handle commands in the command-line window, until the window
967 * is closed.
968 * Also used to handle ":visual" command after ":global": execute Normal mode
969 * commands, return when entering Ex mode. "noexmode" is TRUE then.
971 void
972 main_loop(cmdwin, noexmode)
973 int cmdwin; /* TRUE when working in the command-line window */
974 int noexmode; /* TRUE when return on entering Ex mode */
976 oparg_T oa; /* operator arguments */
977 int previous_got_int = FALSE; /* "got_int" was TRUE */
979 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
980 /* Setup to catch a terminating error from the X server. Just ignore
981 * it, restore the state and continue. This might not always work
982 * properly, but at least we don't exit unexpectedly when the X server
983 * exists while Vim is running in a console. */
984 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
986 State = NORMAL;
987 # ifdef FEAT_VISUAL
988 VIsual_active = FALSE;
989 # endif
990 got_int = TRUE;
991 need_wait_return = FALSE;
992 global_busy = FALSE;
993 exmode_active = 0;
994 skip_redraw = FALSE;
995 RedrawingDisabled = 0;
996 no_wait_return = 0;
997 # ifdef FEAT_EVAL
998 emsg_skip = 0;
999 # endif
1000 emsg_off = 0;
1001 # ifdef FEAT_MOUSE
1002 setmouse();
1003 # endif
1004 settmode(TMODE_RAW);
1005 starttermcap();
1006 scroll_start();
1007 redraw_later_clear();
1009 #endif
1011 clear_oparg(&oa);
1012 while (!cmdwin
1013 #ifdef FEAT_CMDWIN
1014 || cmdwin_result == 0
1015 #endif
1018 if (stuff_empty())
1020 did_check_timestamps = FALSE;
1021 if (need_check_timestamps)
1022 check_timestamps(FALSE);
1023 if (need_wait_return) /* if wait_return still needed ... */
1024 wait_return(FALSE); /* ... call it now */
1025 if (need_start_insertmode && goto_im()
1026 #ifdef FEAT_VISUAL
1027 && !VIsual_active
1028 #endif
1031 need_start_insertmode = FALSE;
1032 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1033 /* skip the fileinfo message now, because it would be shown
1034 * after insert mode finishes! */
1035 need_fileinfo = FALSE;
1039 /* Reset "got_int" now that we got back to the main loop. Except when
1040 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1041 * the ":g" command.
1042 * For ":g/pat/vi" we reset "got_int" when used once. When used
1043 * a second time we go back to Ex mode and abort the ":g" command. */
1044 if (got_int)
1046 if (noexmode && global_busy && !exmode_active && previous_got_int)
1048 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1049 * used and keep "got_int" set, so that it aborts ":g". */
1050 exmode_active = EXMODE_NORMAL;
1051 State = NORMAL;
1053 else if (!global_busy || !exmode_active)
1055 if (!quit_more)
1056 (void)vgetc(); /* flush all buffers */
1057 got_int = FALSE;
1059 previous_got_int = TRUE;
1061 else
1062 previous_got_int = FALSE;
1064 if (!exmode_active)
1065 msg_scroll = FALSE;
1066 quit_more = FALSE;
1069 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1070 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1071 * update cursor and redraw.
1073 if (skip_redraw || exmode_active)
1074 skip_redraw = FALSE;
1075 else if (do_redraw || stuff_empty())
1077 #ifdef FEAT_AUTOCMD
1078 /* Trigger CursorMoved if the cursor moved. */
1079 if (!finish_op && has_cursormoved()
1080 && !equalpos(last_cursormoved, curwin->w_cursor))
1082 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1083 last_cursormoved = curwin->w_cursor;
1085 #endif
1087 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1088 /* Scroll-binding for diff mode may have been postponed until
1089 * here. Avoids doing it for every change. */
1090 if (diff_need_scrollbind)
1092 check_scrollbind((linenr_T)0, 0L);
1093 diff_need_scrollbind = FALSE;
1095 #endif
1096 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1097 /* Include a closed fold completely in the Visual area. */
1098 foldAdjustVisual();
1099 #endif
1100 #ifdef FEAT_FOLDING
1102 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1103 * contain the cursor.
1104 * When 'foldopen' is "all", open the fold(s) under the cursor.
1105 * This may mark the window for redrawing.
1107 if (hasAnyFolding(curwin) && !char_avail())
1109 foldCheckClose();
1110 if (fdo_flags & FDO_ALL)
1111 foldOpenCursor();
1113 #endif
1116 * Before redrawing, make sure w_topline is correct, and w_leftcol
1117 * if lines don't wrap, and w_skipcol if lines wrap.
1119 update_topline();
1120 validate_cursor();
1122 #ifdef FEAT_VISUAL
1123 if (VIsual_active)
1124 update_curbuf(INVERTED);/* update inverted part */
1125 else
1126 #endif
1127 if (must_redraw)
1128 update_screen(0);
1129 else if (redraw_cmdline || clear_cmdline)
1130 showmode();
1131 #ifdef FEAT_WINDOWS
1132 redraw_statuslines();
1133 #endif
1134 #ifdef FEAT_TITLE
1135 if (need_maketitle)
1136 maketitle();
1137 #endif
1138 /* display message after redraw */
1139 if (keep_msg != NULL)
1141 char_u *p;
1143 /* msg_attr_keep() will set keep_msg to NULL, must free the
1144 * string here. */
1145 p = keep_msg;
1146 keep_msg = NULL;
1147 msg_attr(p, keep_msg_attr);
1148 vim_free(p);
1150 if (need_fileinfo) /* show file info after redraw */
1152 fileinfo(FALSE, TRUE, FALSE);
1153 need_fileinfo = FALSE;
1156 emsg_on_display = FALSE; /* can delete error message now */
1157 did_emsg = FALSE;
1158 msg_didany = FALSE; /* reset lines_left in msg_start() */
1159 may_clear_sb_text(); /* clear scroll-back text on next msg */
1160 showruler(FALSE);
1162 setcursor();
1163 cursor_on();
1165 do_redraw = FALSE;
1167 #ifdef STARTUPTIME
1168 /* Now that we have drawn the first screen all the startup stuff
1169 * has been done, close any file for startup messages. */
1170 if (time_fd != NULL)
1172 TIME_MSG("first screen update");
1173 TIME_MSG("--- VIM STARTED ---");
1174 fclose(time_fd);
1175 time_fd = NULL;
1177 #endif
1179 #ifdef FEAT_GUI
1180 if (need_mouse_correct)
1181 gui_mouse_correct();
1182 #endif
1185 * Update w_curswant if w_set_curswant has been set.
1186 * Postponed until here to avoid computing w_virtcol too often.
1188 update_curswant();
1190 #ifdef FEAT_EVAL
1192 * May perform garbage collection when waiting for a character, but
1193 * only at the very toplevel. Otherwise we may be using a List or
1194 * Dict internally somewhere.
1195 * "may_garbage_collect" is reset in vgetc() which is invoked through
1196 * do_exmode() and normal_cmd().
1198 may_garbage_collect = (!cmdwin && !noexmode);
1199 #endif
1201 * If we're invoked as ex, do a round of ex commands.
1202 * Otherwise, get and execute a normal mode command.
1204 if (exmode_active)
1206 if (noexmode) /* End of ":global/path/visual" commands */
1207 return;
1208 do_exmode(exmode_active == EXMODE_VIM);
1210 else
1211 normal_cmd(&oa, TRUE);
1216 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1218 * Exit, but leave behind swap files for modified buffers.
1220 void
1221 getout_preserve_modified(exitval)
1222 int exitval;
1224 # if defined(SIGHUP) && defined(SIG_IGN)
1225 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1226 * makes Vim exit and then handling SIGHUP causes various reentrance
1227 * problems. */
1228 signal(SIGHUP, SIG_IGN);
1229 # endif
1231 ml_close_notmod(); /* close all not-modified buffers */
1232 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1233 ml_close_all(FALSE); /* close all memfiles, without deleting */
1234 getout(exitval); /* exit Vim properly */
1236 #endif
1239 /* Exit properly */
1240 void
1241 getout(exitval)
1242 int exitval;
1244 #ifdef FEAT_AUTOCMD
1245 buf_T *buf;
1246 win_T *wp;
1247 tabpage_T *tp, *next_tp;
1248 #endif
1250 exiting = TRUE;
1252 /* When running in Ex mode an error causes us to exit with a non-zero exit
1253 * code. POSIX requires this, although it's not 100% clear from the
1254 * standard. */
1255 if (exmode_active)
1256 exitval += ex_exitval;
1258 /* Position the cursor on the last screen line, below all the text */
1259 #ifdef FEAT_GUI
1260 if (!gui.in_use)
1261 #endif
1262 windgoto((int)Rows - 1, 0);
1264 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1265 /* Optionally print hashtable efficiency. */
1266 hash_debug_results();
1267 #endif
1269 #ifdef FEAT_GUI
1270 msg_didany = FALSE;
1271 #endif
1273 #ifdef FEAT_AUTOCMD
1274 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1275 # if defined FEAT_WINDOWS
1276 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1278 next_tp = tp->tp_next;
1279 for (wp = (tp == curtab)
1280 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1282 buf = wp->w_buffer;
1283 if (buf->b_changedtick != -1)
1285 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1286 FALSE, buf);
1287 buf->b_changedtick = -1; /* note that we did it already */
1288 /* start all over, autocommands may mess up the lists */
1289 next_tp = first_tabpage;
1290 break;
1294 # else
1295 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1296 # endif
1298 /* Trigger BufUnload for buffers that are loaded */
1299 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1300 if (buf->b_ml.ml_mfp != NULL)
1302 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1303 FALSE, buf);
1304 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1305 break;
1307 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1308 #endif
1310 #ifdef FEAT_VIMINFO
1311 if (*p_viminfo != NUL)
1312 /* Write out the registers, history, marks etc, to the viminfo file */
1313 write_viminfo(NULL, FALSE);
1314 #endif
1316 #ifdef FEAT_AUTOCMD
1317 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1318 #endif
1320 #ifdef FEAT_PROFILE
1321 profile_dump();
1322 #endif
1324 if (did_emsg
1325 #ifdef FEAT_GUI
1326 || (gui.in_use && msg_didany && p_verbose > 0)
1327 #endif
1330 /* give the user a chance to read the (error) message */
1331 no_wait_return = FALSE;
1332 wait_return(FALSE);
1335 #ifdef FEAT_AUTOCMD
1336 /* Position the cursor again, the autocommands may have moved it */
1337 # ifdef FEAT_GUI
1338 if (!gui.in_use)
1339 # endif
1340 windgoto((int)Rows - 1, 0);
1341 #endif
1343 #ifdef FEAT_MZSCHEME
1344 mzscheme_end();
1345 #endif
1346 #ifdef FEAT_TCL
1347 tcl_end();
1348 #endif
1349 #ifdef FEAT_RUBY
1350 ruby_end();
1351 #endif
1352 #ifdef FEAT_PYTHON
1353 python_end();
1354 #endif
1355 #ifdef FEAT_PERL
1356 perl_end();
1357 #endif
1358 #ifdef USE_MIGEMO
1359 reset_migemo(TRUE);
1360 #endif
1361 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1362 iconv_end();
1363 #endif
1364 #ifdef FEAT_NETBEANS_INTG
1365 netbeans_end();
1366 #endif
1367 #ifdef FEAT_CSCOPE
1368 cs_end();
1369 #endif
1370 #ifdef FEAT_EVAL
1371 if (garbage_collect_at_exit)
1372 garbage_collect();
1373 #endif
1375 mch_exit(exitval);
1379 * Get a (optional) count for a Vim argument.
1381 static int
1382 get_number_arg(p, idx, def)
1383 char_u *p; /* pointer to argument */
1384 int *idx; /* index in argument, is incremented */
1385 int def; /* default value */
1387 if (vim_isdigit(p[*idx]))
1389 def = atoi((char *)&(p[*idx]));
1390 while (vim_isdigit(p[*idx]))
1391 *idx = *idx + 1;
1393 return def;
1396 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1398 * Setup to use the current locale (for ctype() and many other things).
1400 static void
1401 init_locale()
1403 setlocale(LC_ALL, "");
1405 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1406 /* Make sure strtod() uses a decimal point, not a comma. */
1407 setlocale(LC_NUMERIC, "C");
1408 # endif
1410 # ifdef WIN32
1411 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1412 * text while it's expecting text in the current locale. This call avoids
1413 * that. */
1414 setlocale(LC_CTYPE, "C");
1415 # endif
1417 # ifdef FEAT_GETTEXT
1419 int mustfree = FALSE;
1420 char_u *p;
1422 # ifdef DYNAMIC_GETTEXT
1423 /* Initialize the gettext library */
1424 dyn_libintl_init(NULL);
1425 # endif
1426 /* expand_env() doesn't work yet, because chartab[] is not initialized
1427 * yet, call vim_getenv() directly */
1428 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1429 if (p != NULL && *p != NUL)
1431 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1432 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1434 if (mustfree)
1435 vim_free(p);
1436 textdomain(VIMPACKAGE);
1438 # endif
1440 #endif
1443 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1444 * If the executable name starts with "r" we disable shell commands.
1445 * If the next character is "e" we run in Easy mode.
1446 * If the next character is "g" we run the GUI version.
1447 * If the next characters are "view" we start in readonly mode.
1448 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1449 * If the next characters are "ex" we start in Ex mode. If it's followed
1450 * by "im" use improved Ex mode.
1452 static void
1453 parse_command_name(parmp)
1454 mparm_T *parmp;
1456 char_u *initstr;
1458 initstr = gettail((char_u *)parmp->argv[0]);
1460 #ifdef MACOS_X_UNIX
1461 /* An issue has been seen when launching Vim in such a way that
1462 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1463 * executable or a symbolic link of it. Until this issue is resolved
1464 * we prohibit the GUI from being used.
1466 if (STRCMP(initstr, parmp->argv[0]) == 0)
1467 disallow_gui = TRUE;
1469 /* TODO: On MacOS X default to gui if argv[0] ends in:
1470 * /Vim.app/Contents/MacOS/Vim */
1471 #endif
1473 #ifdef FEAT_EVAL
1474 set_vim_var_string(VV_PROGNAME, initstr, -1);
1475 #endif
1477 if (TOLOWER_ASC(initstr[0]) == 'r')
1479 restricted = TRUE;
1480 ++initstr;
1483 /* Avoid using evim mode for "editor". */
1484 if (TOLOWER_ASC(initstr[0]) == 'e'
1485 && (TOLOWER_ASC(initstr[1]) == 'v'
1486 || TOLOWER_ASC(initstr[1]) == 'g'))
1488 #ifdef FEAT_GUI
1489 gui.starting = TRUE;
1490 #endif
1491 parmp->evim_mode = TRUE;
1492 ++initstr;
1495 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1496 if (TOLOWER_ASC(initstr[0]) == 'g')
1498 main_start_gui();
1499 #ifdef FEAT_GUI
1500 ++initstr;
1501 #endif
1504 if (STRNICMP(initstr, "view", 4) == 0)
1506 readonlymode = TRUE;
1507 curbuf->b_p_ro = TRUE;
1508 p_uc = 10000; /* don't update very often */
1509 initstr += 4;
1511 else if (STRNICMP(initstr, "vim", 3) == 0)
1512 initstr += 3;
1514 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1515 if (STRICMP(initstr, "diff") == 0)
1517 #ifdef FEAT_DIFF
1518 parmp->diff_mode = TRUE;
1519 #else
1520 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1521 mch_errmsg("\n");
1522 mch_exit(2);
1523 #endif
1526 if (STRNICMP(initstr, "ex", 2) == 0)
1528 if (STRNICMP(initstr + 2, "im", 2) == 0)
1529 exmode_active = EXMODE_VIM;
1530 else
1531 exmode_active = EXMODE_NORMAL;
1532 change_compatible(TRUE); /* set 'compatible' */
1537 * Get the name of the display, before gui_prepare() removes it from
1538 * argv[]. Used for the xterm-clipboard display.
1540 * Also find the --server... arguments and --socketid and --windowid
1542 static void
1543 early_arg_scan(parmp)
1544 mparm_T *parmp UNUSED;
1546 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1547 || !defined(FEAT_NETBEANS_INTG)
1548 int argc = parmp->argc;
1549 char **argv = parmp->argv;
1550 int i;
1552 for (i = 1; i < argc; i++)
1554 if (STRCMP(argv[i], "--") == 0)
1555 break;
1556 # ifdef FEAT_XCLIPBOARD
1557 else if (STRICMP(argv[i], "-display") == 0
1558 # if defined(FEAT_GUI_GTK)
1559 || STRICMP(argv[i], "--display") == 0
1560 # endif
1563 if (i == argc - 1)
1564 mainerr_arg_missing((char_u *)argv[i]);
1565 xterm_display = argv[++i];
1567 # endif
1568 # ifdef FEAT_CLIENTSERVER
1569 else if (STRICMP(argv[i], "--servername") == 0)
1571 if (i == argc - 1)
1572 mainerr_arg_missing((char_u *)argv[i]);
1573 parmp->serverName_arg = (char_u *)argv[++i];
1575 else if (STRICMP(argv[i], "--serverlist") == 0)
1576 parmp->serverArg = TRUE;
1577 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1579 parmp->serverArg = TRUE;
1580 # ifdef FEAT_GUI
1581 if (strstr(argv[i], "-wait") != 0)
1582 /* don't fork() when starting the GUI to edit files ourself */
1583 gui.dofork = FALSE;
1584 # endif
1586 # endif
1588 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1589 # ifdef FEAT_GUI_W32
1590 else if (STRICMP(argv[i], "--windowid") == 0)
1591 # else
1592 else if (STRICMP(argv[i], "--socketid") == 0)
1593 # endif
1595 long_u id;
1596 int count;
1598 if (i == argc - 1)
1599 mainerr_arg_missing((char_u *)argv[i]);
1600 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1601 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1602 else
1603 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1604 if (count != 1)
1605 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1606 else
1607 # ifdef FEAT_GUI_W32
1608 win_socket_id = id;
1609 # else
1610 gtk_socket_id = id;
1611 # endif
1612 i++;
1614 # endif
1615 # ifdef FEAT_GUI_GTK
1616 else if (STRICMP(argv[i], "--echo-wid") == 0)
1617 echo_wid_arg = TRUE;
1618 # endif
1619 # ifndef FEAT_NETBEANS_INTG
1620 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
1622 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1623 mch_exit(2);
1625 # endif
1628 #endif
1632 * Scan the command line arguments.
1634 static void
1635 command_line_scan(parmp)
1636 mparm_T *parmp;
1638 int argc = parmp->argc;
1639 char **argv = parmp->argv;
1640 int argv_idx; /* index in argv[n][] */
1641 int had_minmin = FALSE; /* found "--" argument */
1642 int want_argument; /* option argument with argument */
1643 int c;
1644 char_u *p = NULL;
1645 long n;
1647 --argc;
1648 ++argv;
1649 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1650 while (argc > 0)
1653 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1655 if (argv[0][0] == '+' && !had_minmin)
1657 if (parmp->n_commands >= MAX_ARG_CMDS)
1658 mainerr(ME_EXTRA_CMD, NULL);
1659 argv_idx = -1; /* skip to next argument */
1660 if (argv[0][1] == NUL)
1661 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1662 else
1663 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1667 * Optional argument.
1669 else if (argv[0][0] == '-' && !had_minmin)
1671 want_argument = FALSE;
1672 c = argv[0][argv_idx++];
1673 #ifdef VMS
1675 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1676 * and "-/X" as "-X".
1678 if (c == '/')
1680 c = argv[0][argv_idx++];
1681 c = TOUPPER_ASC(c);
1683 else
1684 c = TOLOWER_ASC(c);
1685 #endif
1686 switch (c)
1688 case NUL: /* "vim -" read from stdin */
1689 /* "ex -" silent mode */
1690 if (exmode_active)
1691 silent_mode = TRUE;
1692 else
1694 if (parmp->edit_type != EDIT_NONE)
1695 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1696 parmp->edit_type = EDIT_STDIN;
1697 read_cmd_fd = 2; /* read from stderr instead of stdin */
1699 argv_idx = -1; /* skip to next argument */
1700 break;
1702 case '-': /* "--" don't take any more option arguments */
1703 /* "--help" give help message */
1704 /* "--version" give version message */
1705 /* "--literal" take files literally */
1706 /* "--nofork" don't fork */
1707 /* "--noplugin[s]" skip plugins */
1708 /* "--cmd <cmd>" execute cmd before vimrc */
1709 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1710 usage();
1711 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1713 Columns = 80; /* need to init Columns */
1714 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1715 list_version();
1716 msg_putchar('\n');
1717 msg_didout = FALSE;
1718 mch_exit(0);
1720 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1722 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1723 parmp->literal = TRUE;
1724 #endif
1726 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1728 #ifdef FEAT_GUI
1729 gui.dofork = FALSE; /* don't fork() when starting GUI */
1730 #endif
1732 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1733 p_lpl = FALSE;
1734 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1736 want_argument = TRUE;
1737 argv_idx += 3;
1739 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1741 want_argument = TRUE;
1742 argv_idx += 11;
1744 #ifdef FEAT_CLIENTSERVER
1745 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1746 ; /* already processed -- no arg */
1747 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1748 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1750 /* already processed -- snatch the following arg */
1751 if (argc > 1)
1753 --argc;
1754 ++argv;
1757 #endif
1758 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1759 # ifdef FEAT_GUI_GTK
1760 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1761 # else
1762 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1763 # endif
1765 /* already processed -- snatch the following arg */
1766 if (argc > 1)
1768 --argc;
1769 ++argv;
1772 #endif
1773 #ifdef FEAT_GUI_GTK
1774 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1776 /* already processed, skip */
1778 #endif
1779 else
1781 if (argv[0][argv_idx])
1782 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1783 had_minmin = TRUE;
1785 if (!want_argument)
1786 argv_idx = -1; /* skip to next argument */
1787 break;
1789 case 'A': /* "-A" start in Arabic mode */
1790 #ifdef FEAT_ARABIC
1791 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1792 #else
1793 mch_errmsg(_(e_noarabic));
1794 mch_exit(2);
1795 #endif
1796 break;
1798 case 'b': /* "-b" binary mode */
1799 /* Needs to be effective before expanding file names, because
1800 * for Win32 this makes us edit a shortcut file itself,
1801 * instead of the file it links to. */
1802 set_options_bin(curbuf->b_p_bin, 1, 0);
1803 curbuf->b_p_bin = 1; /* binary file I/O */
1804 break;
1806 case 'C': /* "-C" Compatible */
1807 change_compatible(TRUE);
1808 break;
1810 case 'e': /* "-e" Ex mode */
1811 exmode_active = EXMODE_NORMAL;
1812 break;
1814 case 'E': /* "-E" Improved Ex mode */
1815 exmode_active = EXMODE_VIM;
1816 break;
1818 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1819 window directly, not with newcli */
1820 #ifdef FEAT_GUI
1821 gui.dofork = FALSE; /* don't fork() when starting GUI */
1822 #endif
1823 break;
1825 case 'g': /* "-g" start GUI */
1826 main_start_gui();
1827 break;
1829 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1830 #ifdef FEAT_FKMAP
1831 p_fkmap = TRUE;
1832 set_option_value((char_u *)"rl", 1L, NULL, 0);
1833 #else
1834 mch_errmsg(_(e_nofarsi));
1835 mch_exit(2);
1836 #endif
1837 break;
1839 case 'h': /* "-h" give help message */
1840 #ifdef FEAT_GUI_GNOME
1841 /* Tell usage() to exit for "gvim". */
1842 gui.starting = FALSE;
1843 #endif
1844 usage();
1845 break;
1847 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1848 #ifdef FEAT_RIGHTLEFT
1849 p_hkmap = TRUE;
1850 set_option_value((char_u *)"rl", 1L, NULL, 0);
1851 #else
1852 mch_errmsg(_(e_nohebrew));
1853 mch_exit(2);
1854 #endif
1855 break;
1857 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1858 #ifdef FEAT_LISP
1859 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1860 p_sm = TRUE;
1861 #endif
1862 break;
1864 case 'M': /* "-M" no changes or writing of files */
1865 reset_modifiable();
1866 /* FALLTHROUGH */
1868 case 'm': /* "-m" no writing of files */
1869 p_write = FALSE;
1870 break;
1872 case 'y': /* "-y" easy mode */
1873 #ifdef FEAT_GUI
1874 gui.starting = TRUE; /* start GUI a bit later */
1875 #endif
1876 parmp->evim_mode = TRUE;
1877 break;
1879 case 'N': /* "-N" Nocompatible */
1880 change_compatible(FALSE);
1881 break;
1883 case 'n': /* "-n" no swap file */
1884 parmp->no_swap_file = TRUE;
1885 break;
1887 case 'p': /* "-p[N]" open N tab pages */
1888 #ifdef TARGET_API_MAC_OSX
1889 /* For some reason on MacOS X, an argument like:
1890 -psn_0_10223617 is passed in when invoke from Finder
1891 or with the 'open' command */
1892 if (argv[0][argv_idx] == 's')
1894 argv_idx = -1; /* bypass full -psn */
1895 main_start_gui();
1896 break;
1898 #endif
1899 #ifdef FEAT_WINDOWS
1900 /* default is 0: open window for each file */
1901 parmp->window_count = get_number_arg((char_u *)argv[0],
1902 &argv_idx, 0);
1903 parmp->window_layout = WIN_TABS;
1904 #endif
1905 break;
1907 case 'o': /* "-o[N]" open N horizontal split windows */
1908 #ifdef FEAT_WINDOWS
1909 /* default is 0: open window for each file */
1910 parmp->window_count = get_number_arg((char_u *)argv[0],
1911 &argv_idx, 0);
1912 parmp->window_layout = WIN_HOR;
1913 #endif
1914 break;
1916 case 'O': /* "-O[N]" open N vertical split windows */
1917 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1918 /* default is 0: open window for each file */
1919 parmp->window_count = get_number_arg((char_u *)argv[0],
1920 &argv_idx, 0);
1921 parmp->window_layout = WIN_VER;
1922 #endif
1923 break;
1925 #ifdef FEAT_QUICKFIX
1926 case 'q': /* "-q" QuickFix mode */
1927 if (parmp->edit_type != EDIT_NONE)
1928 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1929 parmp->edit_type = EDIT_QF;
1930 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1932 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1933 argv_idx = -1;
1935 else if (argc > 1) /* "-q {errorfile}" */
1936 want_argument = TRUE;
1937 break;
1938 #endif
1940 case 'R': /* "-R" readonly mode */
1941 readonlymode = TRUE;
1942 curbuf->b_p_ro = TRUE;
1943 p_uc = 10000; /* don't update very often */
1944 break;
1946 case 'r': /* "-r" recovery mode */
1947 case 'L': /* "-L" recovery mode */
1948 recoverymode = 1;
1949 break;
1951 case 's':
1952 if (exmode_active) /* "-s" silent (batch) mode */
1953 silent_mode = TRUE;
1954 else /* "-s {scriptin}" read from script file */
1955 want_argument = TRUE;
1956 break;
1958 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1959 if (parmp->edit_type != EDIT_NONE)
1960 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1961 parmp->edit_type = EDIT_TAG;
1962 if (argv[0][argv_idx]) /* "-t{tag}" */
1964 parmp->tagname = (char_u *)argv[0] + argv_idx;
1965 argv_idx = -1;
1967 else /* "-t {tag}" */
1968 want_argument = TRUE;
1969 break;
1971 #ifdef FEAT_EVAL
1972 case 'D': /* "-D" Debugging */
1973 parmp->use_debug_break_level = 9999;
1974 break;
1975 #endif
1976 #ifdef FEAT_DIFF
1977 case 'd': /* "-d" 'diff' */
1978 # ifdef AMIGA
1979 /* check for "-dev {device}" */
1980 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1981 want_argument = TRUE;
1982 else
1983 # endif
1984 parmp->diff_mode = TRUE;
1985 break;
1986 #endif
1987 case 'V': /* "-V{N}" Verbose level */
1988 /* default is 10: a little bit verbose */
1989 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1990 if (argv[0][argv_idx] != NUL)
1992 set_option_value((char_u *)"verbosefile", 0L,
1993 (char_u *)argv[0] + argv_idx, 0);
1994 argv_idx = (int)STRLEN(argv[0]);
1996 break;
1998 case 'v': /* "-v" Vi-mode (as if called "vi") */
1999 exmode_active = 0;
2000 #ifdef FEAT_GUI
2001 gui.starting = FALSE; /* don't start GUI */
2002 #endif
2003 break;
2005 case 'w': /* "-w{number}" set window height */
2006 /* "-w {scriptout}" write to script */
2007 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2009 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2010 set_option_value((char_u *)"window", n, NULL, 0);
2011 break;
2013 want_argument = TRUE;
2014 break;
2016 #ifdef FEAT_CRYPT
2017 case 'x': /* "-x" encrypted reading/writing of files */
2018 parmp->ask_for_key = TRUE;
2019 break;
2020 #endif
2022 case 'X': /* "-X" don't connect to X server */
2023 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2024 x_no_connect = TRUE;
2025 #endif
2026 break;
2028 case 'Z': /* "-Z" restricted mode */
2029 restricted = TRUE;
2030 break;
2032 case 'c': /* "-c{command}" or "-c {command}" execute
2033 command */
2034 if (argv[0][argv_idx] != NUL)
2036 if (parmp->n_commands >= MAX_ARG_CMDS)
2037 mainerr(ME_EXTRA_CMD, NULL);
2038 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2039 + argv_idx;
2040 argv_idx = -1;
2041 break;
2043 /*FALLTHROUGH*/
2044 case 'S': /* "-S {file}" execute Vim script */
2045 case 'i': /* "-i {viminfo}" use for viminfo */
2046 #ifndef FEAT_DIFF
2047 case 'd': /* "-d {device}" device (for Amiga) */
2048 #endif
2049 case 'T': /* "-T {terminal}" terminal name */
2050 case 'u': /* "-u {vimrc}" vim inits file */
2051 case 'U': /* "-U {gvimrc}" gvim inits file */
2052 case 'W': /* "-W {scriptout}" overwrite */
2053 #ifdef FEAT_GUI_W32
2054 case 'P': /* "-P {parent title}" MDI parent */
2055 #endif
2056 want_argument = TRUE;
2057 break;
2059 default:
2060 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2064 * Handle option arguments with argument.
2066 if (want_argument)
2069 * Check for garbage immediately after the option letter.
2071 if (argv[0][argv_idx] != NUL)
2072 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2074 --argc;
2075 if (argc < 1 && c != 'S') /* -S has an optional argument */
2076 mainerr_arg_missing((char_u *)argv[0]);
2077 ++argv;
2078 argv_idx = -1;
2080 switch (c)
2082 case 'c': /* "-c {command}" execute command */
2083 case 'S': /* "-S {file}" execute Vim script */
2084 if (parmp->n_commands >= MAX_ARG_CMDS)
2085 mainerr(ME_EXTRA_CMD, NULL);
2086 if (c == 'S')
2088 char *a;
2090 if (argc < 1)
2091 /* "-S" without argument: use default session file
2092 * name. */
2093 a = SESSION_FILE;
2094 else if (argv[0][0] == '-')
2096 /* "-S" followed by another option: use default
2097 * session file name. */
2098 a = SESSION_FILE;
2099 ++argc;
2100 --argv;
2102 else
2103 a = argv[0];
2104 p = alloc((unsigned)(STRLEN(a) + 4));
2105 if (p == NULL)
2106 mch_exit(2);
2107 sprintf((char *)p, "so %s", a);
2108 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2109 parmp->commands[parmp->n_commands++] = p;
2111 else
2112 parmp->commands[parmp->n_commands++] =
2113 (char_u *)argv[0];
2114 break;
2116 case '-':
2117 if (argv[-1][2] == 'c')
2119 /* "--cmd {command}" execute command */
2120 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2121 mainerr(ME_EXTRA_CMD, NULL);
2122 parmp->pre_commands[parmp->n_pre_commands++] =
2123 (char_u *)argv[0];
2125 /* "--startuptime <file>" already handled */
2126 break;
2128 /* case 'd': -d {device} is handled in mch_check_win() for the
2129 * Amiga */
2131 #ifdef FEAT_QUICKFIX
2132 case 'q': /* "-q {errorfile}" QuickFix mode */
2133 parmp->use_ef = (char_u *)argv[0];
2134 break;
2135 #endif
2137 case 'i': /* "-i {viminfo}" use for viminfo */
2138 use_viminfo = (char_u *)argv[0];
2139 break;
2141 case 's': /* "-s {scriptin}" read from script file */
2142 if (scriptin[0] != NULL)
2144 scripterror:
2145 mch_errmsg(_("Attempt to open script file again: \""));
2146 mch_errmsg(argv[-1]);
2147 mch_errmsg(" ");
2148 mch_errmsg(argv[0]);
2149 mch_errmsg("\"\n");
2150 mch_exit(2);
2152 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2154 mch_errmsg(_("Cannot open for reading: \""));
2155 mch_errmsg(argv[0]);
2156 mch_errmsg("\"\n");
2157 mch_exit(2);
2159 if (save_typebuf() == FAIL)
2160 mch_exit(2); /* out of memory */
2161 break;
2163 case 't': /* "-t {tag}" */
2164 parmp->tagname = (char_u *)argv[0];
2165 break;
2167 case 'T': /* "-T {terminal}" terminal name */
2169 * The -T term argument is always available and when
2170 * HAVE_TERMLIB is supported it overrides the environment
2171 * variable TERM.
2173 #ifdef FEAT_GUI
2174 if (term_is_gui((char_u *)argv[0]))
2175 gui.starting = TRUE; /* start GUI a bit later */
2176 else
2177 #endif
2178 parmp->term = (char_u *)argv[0];
2179 break;
2181 case 'u': /* "-u {vimrc}" vim inits file */
2182 parmp->use_vimrc = (char_u *)argv[0];
2183 break;
2185 case 'U': /* "-U {gvimrc}" gvim inits file */
2186 #ifdef FEAT_GUI
2187 use_gvimrc = (char_u *)argv[0];
2188 #endif
2189 break;
2191 case 'w': /* "-w {nr}" 'window' value */
2192 /* "-w {scriptout}" append to script file */
2193 if (vim_isdigit(*((char_u *)argv[0])))
2195 argv_idx = 0;
2196 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2197 set_option_value((char_u *)"window", n, NULL, 0);
2198 argv_idx = -1;
2199 break;
2201 /*FALLTHROUGH*/
2202 case 'W': /* "-W {scriptout}" overwrite script file */
2203 if (scriptout != NULL)
2204 goto scripterror;
2205 if ((scriptout = mch_fopen(argv[0],
2206 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2208 mch_errmsg(_("Cannot open for script output: \""));
2209 mch_errmsg(argv[0]);
2210 mch_errmsg("\"\n");
2211 mch_exit(2);
2213 break;
2215 #ifdef FEAT_GUI_W32
2216 case 'P': /* "-P {parent title}" MDI parent */
2217 gui_mch_set_parent(argv[0]);
2218 break;
2219 #endif
2225 * File name argument.
2227 else
2229 argv_idx = -1; /* skip to next argument */
2231 /* Check for only one type of editing. */
2232 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2233 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2234 parmp->edit_type = EDIT_FILE;
2236 #ifdef MSWIN
2237 /* Remember if the argument was a full path before changing
2238 * slashes to backslashes. */
2239 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2240 parmp->full_path = TRUE;
2241 #endif
2243 /* Add the file to the global argument list. */
2244 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2245 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2246 mch_exit(2);
2247 #ifdef FEAT_DIFF
2248 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2249 && !mch_isdir(alist_name(&GARGLIST[0])))
2251 char_u *r;
2253 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2254 if (r != NULL)
2256 vim_free(p);
2257 p = r;
2260 #endif
2261 #if defined(__CYGWIN32__) && !defined(WIN32)
2263 * If vim is invoked by non-Cygwin tools, convert away any
2264 * DOS paths, so things like .swp files are created correctly.
2265 * Look for evidence of non-Cygwin paths before we bother.
2266 * This is only for when using the Unix files.
2268 if (strpbrk(p, "\\:") != NULL)
2270 char posix_path[PATH_MAX];
2272 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2273 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2274 # else
2275 cygwin_conv_to_posix_path(p, posix_path);
2276 # endif
2277 vim_free(p);
2278 p = vim_strsave(posix_path);
2279 if (p == NULL)
2280 mch_exit(2);
2282 #endif
2284 #ifdef USE_FNAME_CASE
2285 /* Make the case of the file name match the actual file. */
2286 fname_case(p, 0);
2287 #endif
2289 alist_add(&global_alist, p,
2290 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2291 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2292 #else
2293 2 /* add buffer number now and use curbuf */
2294 #endif
2297 #if defined(FEAT_MBYTE) && defined(WIN32)
2299 /* Remember this argument has been added to the argument list.
2300 * Needed when 'encoding' is changed. */
2301 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2302 # ifdef FEAT_DIFF
2303 parmp->diff_mode
2304 # else
2305 FALSE
2306 # endif
2309 #endif
2313 * If there are no more letters after the current "-", go to next
2314 * argument. argv_idx is set to -1 when the current argument is to be
2315 * skipped.
2317 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2319 --argc;
2320 ++argv;
2321 argv_idx = 1;
2325 #ifdef FEAT_EVAL
2326 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2327 * one. */
2328 if (parmp->n_commands > 0)
2330 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2331 if (p != NULL)
2333 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2334 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2335 vim_free(p);
2338 #endif
2342 * Print a warning if stdout is not a terminal.
2343 * When starting in Ex mode and commands come from a file, set Silent mode.
2345 static void
2346 check_tty(parmp)
2347 mparm_T *parmp;
2349 int input_isatty; /* is active input a terminal? */
2351 input_isatty = mch_input_isatty();
2352 if (exmode_active)
2354 if (!input_isatty)
2355 silent_mode = TRUE;
2357 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2358 #ifdef FEAT_GUI
2359 /* don't want the delay when started from the desktop */
2360 && !gui.starting
2361 #endif
2364 #ifdef NBDEBUG
2366 * This shouldn't be necessary. But if I run netbeans with the log
2367 * output coming to the console and XOpenDisplay fails, I get vim
2368 * trying to start with input/output to my console tty. This fills my
2369 * input buffer so fast I can't even kill the process in under 2
2370 * minutes (and it beeps continuously the whole time :-)
2372 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2374 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2375 exit(1);
2377 #endif
2378 if (!parmp->stdout_isatty)
2379 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2380 if (!input_isatty)
2381 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2382 out_flush();
2383 if (scriptin[0] == NULL)
2384 ui_delay(2000L, TRUE);
2385 TIME_MSG("Warning delay");
2390 * Read text from stdin.
2392 static void
2393 read_stdin()
2395 int i;
2397 #if defined(HAS_SWAP_EXISTS_ACTION)
2398 /* When getting the ATTENTION prompt here, use a dialog */
2399 swap_exists_action = SEA_DIALOG;
2400 #endif
2401 no_wait_return = TRUE;
2402 i = msg_didany;
2403 set_buflisted(TRUE);
2404 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2405 no_wait_return = FALSE;
2406 msg_didany = i;
2407 TIME_MSG("reading stdin");
2408 #if defined(HAS_SWAP_EXISTS_ACTION)
2409 check_swap_exists_action();
2410 #endif
2411 #if !(defined(AMIGA) || defined(MACOS))
2413 * Close stdin and dup it from stderr. Required for GPM to work
2414 * properly, and for running external commands.
2415 * Is there any other system that cannot do this?
2417 close(0);
2418 ignored = dup(2);
2419 #endif
2423 * Create the requested number of windows and edit buffers in them.
2424 * Also does recovery if "recoverymode" set.
2426 static void
2427 create_windows(parmp)
2428 mparm_T *parmp UNUSED;
2430 #ifdef FEAT_WINDOWS
2431 int dorewind;
2432 int done = 0;
2435 * Create the number of windows that was requested.
2437 if (parmp->window_count == -1) /* was not set */
2438 parmp->window_count = 1;
2439 if (parmp->window_count == 0)
2440 parmp->window_count = GARGCOUNT;
2441 if (parmp->window_count > 1)
2443 /* Don't change the windows if there was a command in .vimrc that
2444 * already split some windows */
2445 if (parmp->window_layout == 0)
2446 parmp->window_layout = WIN_HOR;
2447 if (parmp->window_layout == WIN_TABS)
2449 parmp->window_count = make_tabpages(parmp->window_count);
2450 TIME_MSG("making tab pages");
2452 else if (firstwin->w_next == NULL)
2454 parmp->window_count = make_windows(parmp->window_count,
2455 parmp->window_layout == WIN_VER);
2456 TIME_MSG("making windows");
2458 else
2459 parmp->window_count = win_count();
2461 else
2462 parmp->window_count = 1;
2463 #endif
2465 if (recoverymode) /* do recover */
2467 msg_scroll = TRUE; /* scroll message up */
2468 ml_recover();
2469 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2470 getout(1);
2471 do_modelines(0); /* do modelines */
2473 else
2476 * Open a buffer for windows that don't have one yet.
2477 * Commands in the .vimrc might have loaded a file or split the window.
2478 * Watch out for autocommands that delete a window.
2480 #ifdef FEAT_AUTOCMD
2482 * Don't execute Win/Buf Enter/Leave autocommands here
2484 ++autocmd_no_enter;
2485 ++autocmd_no_leave;
2486 #endif
2487 #ifdef FEAT_WINDOWS
2488 dorewind = TRUE;
2489 while (done++ < 1000)
2491 if (dorewind)
2493 if (parmp->window_layout == WIN_TABS)
2494 goto_tabpage(1);
2495 else
2496 curwin = firstwin;
2498 else if (parmp->window_layout == WIN_TABS)
2500 if (curtab->tp_next == NULL)
2501 break;
2502 goto_tabpage(0);
2504 else
2506 if (curwin->w_next == NULL)
2507 break;
2508 curwin = curwin->w_next;
2510 dorewind = FALSE;
2511 #endif
2512 curbuf = curwin->w_buffer;
2513 if (curbuf->b_ml.ml_mfp == NULL)
2515 #ifdef FEAT_FOLDING
2516 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2517 if (p_fdls >= 0)
2518 curwin->w_p_fdl = p_fdls;
2519 #endif
2520 #if defined(HAS_SWAP_EXISTS_ACTION)
2521 /* When getting the ATTENTION prompt here, use a dialog */
2522 swap_exists_action = SEA_DIALOG;
2523 #endif
2524 set_buflisted(TRUE);
2525 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2527 #if defined(HAS_SWAP_EXISTS_ACTION)
2528 if (swap_exists_action == SEA_QUIT)
2530 if (got_int || only_one_window())
2532 /* abort selected or quit and only one window */
2533 did_emsg = FALSE; /* avoid hit-enter prompt */
2534 getout(1);
2536 /* We can't close the window, it would disturb what
2537 * happens next. Clear the file name and set the arg
2538 * index to -1 to delete it later. */
2539 setfname(curbuf, NULL, NULL, FALSE);
2540 curwin->w_arg_idx = -1;
2541 swap_exists_action = SEA_NONE;
2543 else
2544 handle_swap_exists(NULL);
2545 #endif
2546 #ifdef FEAT_AUTOCMD
2547 dorewind = TRUE; /* start again */
2548 #endif
2550 #ifdef FEAT_WINDOWS
2551 ui_breakcheck();
2552 if (got_int)
2554 (void)vgetc(); /* only break the file loading, not the rest */
2555 break;
2558 #endif
2559 #ifdef FEAT_WINDOWS
2560 if (parmp->window_layout == WIN_TABS)
2561 goto_tabpage(1);
2562 else
2563 curwin = firstwin;
2564 curbuf = curwin->w_buffer;
2565 #endif
2566 #ifdef FEAT_AUTOCMD
2567 --autocmd_no_enter;
2568 --autocmd_no_leave;
2569 #endif
2573 #ifdef FEAT_WINDOWS
2575 * If opened more than one window, start editing files in the other
2576 * windows. make_windows() has already opened the windows.
2578 static void
2579 edit_buffers(parmp)
2580 mparm_T *parmp;
2582 int arg_idx; /* index in argument list */
2583 int i;
2584 int advance = TRUE;
2586 # ifdef FEAT_AUTOCMD
2588 * Don't execute Win/Buf Enter/Leave autocommands here
2590 ++autocmd_no_enter;
2591 ++autocmd_no_leave;
2592 # endif
2594 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2595 if (curwin->w_arg_idx == -1)
2597 win_close(curwin, TRUE);
2598 advance = FALSE;
2601 arg_idx = 1;
2602 for (i = 1; i < parmp->window_count; ++i)
2604 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2605 if (curwin->w_arg_idx == -1)
2607 ++arg_idx;
2608 win_close(curwin, TRUE);
2609 advance = FALSE;
2610 continue;
2613 if (advance)
2615 if (parmp->window_layout == WIN_TABS)
2617 if (curtab->tp_next == NULL) /* just checking */
2618 break;
2619 goto_tabpage(0);
2621 else
2623 if (curwin->w_next == NULL) /* just checking */
2624 break;
2625 win_enter(curwin->w_next, FALSE);
2628 advance = TRUE;
2630 /* Only open the file if there is no file in this window yet (that can
2631 * happen when .vimrc contains ":sall"). */
2632 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2634 curwin->w_arg_idx = arg_idx;
2635 /* Edit file from arg list, if there is one. When "Quit" selected
2636 * at the ATTENTION prompt close the window. */
2637 # ifdef HAS_SWAP_EXISTS_ACTION
2638 swap_exists_did_quit = FALSE;
2639 # endif
2640 (void)do_ecmd(0, arg_idx < GARGCOUNT
2641 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2642 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
2643 # ifdef HAS_SWAP_EXISTS_ACTION
2644 if (swap_exists_did_quit)
2646 /* abort or quit selected */
2647 if (got_int || only_one_window())
2649 /* abort selected and only one window */
2650 did_emsg = FALSE; /* avoid hit-enter prompt */
2651 getout(1);
2653 win_close(curwin, TRUE);
2654 advance = FALSE;
2656 # endif
2657 if (arg_idx == GARGCOUNT - 1)
2658 arg_had_last = TRUE;
2659 ++arg_idx;
2661 ui_breakcheck();
2662 if (got_int)
2664 (void)vgetc(); /* only break the file loading, not the rest */
2665 break;
2669 if (parmp->window_layout == WIN_TABS)
2670 goto_tabpage(1);
2671 # ifdef FEAT_AUTOCMD
2672 --autocmd_no_enter;
2673 # endif
2674 win_enter(firstwin, FALSE); /* back to first window */
2675 # ifdef FEAT_AUTOCMD
2676 --autocmd_no_leave;
2677 # endif
2678 TIME_MSG("editing files in windows");
2679 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2680 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2682 #endif /* FEAT_WINDOWS */
2685 * Execute the commands from --cmd arguments "cmds[cnt]".
2687 static void
2688 exe_pre_commands(parmp)
2689 mparm_T *parmp;
2691 char_u **cmds = parmp->pre_commands;
2692 int cnt = parmp->n_pre_commands;
2693 int i;
2695 if (cnt > 0)
2697 curwin->w_cursor.lnum = 0; /* just in case.. */
2698 sourcing_name = (char_u *)_("pre-vimrc command line");
2699 # ifdef FEAT_EVAL
2700 current_SID = SID_CMDARG;
2701 # endif
2702 for (i = 0; i < cnt; ++i)
2703 do_cmdline_cmd(cmds[i]);
2704 sourcing_name = NULL;
2705 # ifdef FEAT_EVAL
2706 current_SID = 0;
2707 # endif
2708 TIME_MSG("--cmd commands");
2713 * Execute "+", "-c" and "-S" arguments.
2715 static void
2716 exe_commands(parmp)
2717 mparm_T *parmp;
2719 int i;
2722 * We start commands on line 0, make "vim +/pat file" match a
2723 * pattern on line 1. But don't move the cursor when an autocommand
2724 * with g`" was used.
2726 msg_scroll = TRUE;
2727 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2728 curwin->w_cursor.lnum = 0;
2729 sourcing_name = (char_u *)"command line";
2730 #ifdef FEAT_EVAL
2731 current_SID = SID_CARG;
2732 #endif
2733 for (i = 0; i < parmp->n_commands; ++i)
2735 do_cmdline_cmd(parmp->commands[i]);
2736 if (parmp->cmds_tofree[i])
2737 vim_free(parmp->commands[i]);
2739 sourcing_name = NULL;
2740 #ifdef FEAT_EVAL
2741 current_SID = 0;
2742 #endif
2743 if (curwin->w_cursor.lnum == 0)
2744 curwin->w_cursor.lnum = 1;
2746 if (!exmode_active)
2747 msg_scroll = FALSE;
2749 #ifdef FEAT_QUICKFIX
2750 /* When started with "-q errorfile" jump to first error again. */
2751 if (parmp->edit_type == EDIT_QF)
2752 qf_jump(NULL, 0, 0, FALSE);
2753 #endif
2754 TIME_MSG("executing command arguments");
2758 * Source startup scripts.
2760 static void
2761 source_startup_scripts(parmp)
2762 mparm_T *parmp;
2764 int i;
2767 * For "evim" source evim.vim first of all, so that the user can overrule
2768 * any things he doesn't like.
2770 if (parmp->evim_mode)
2772 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2773 TIME_MSG("source evim file");
2777 * If -u argument given, use only the initializations from that file and
2778 * nothing else.
2780 if (parmp->use_vimrc != NULL)
2782 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2783 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2785 #ifdef FEAT_GUI
2786 if (use_gvimrc == NULL) /* don't load gvimrc either */
2787 use_gvimrc = parmp->use_vimrc;
2788 #endif
2789 if (parmp->use_vimrc[2] == 'N')
2790 p_lpl = FALSE; /* don't load plugins either */
2792 else
2794 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2795 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2798 else if (!silent_mode)
2800 #ifdef AMIGA
2801 struct Process *proc = (struct Process *)FindTask(0L);
2802 APTR save_winptr = proc->pr_WindowPtr;
2804 /* Avoid a requester here for a volume that doesn't exist. */
2805 proc->pr_WindowPtr = (APTR)-1L;
2806 #endif
2809 * Get system wide defaults, if the file name is defined.
2811 #ifdef SYS_VIMRC_FILE
2812 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2813 #endif
2814 #ifdef MACOS_X
2815 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2816 #endif
2819 * Try to read initialization commands from the following places:
2820 * - environment variable VIMINIT
2821 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2822 * - second user vimrc file ($VIM/.vimrc for Dos)
2823 * - environment variable EXINIT
2824 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2825 * - second user exrc file ($VIM/.exrc for Dos)
2826 * The first that exists is used, the rest is ignored.
2828 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2830 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2831 #ifdef USR_VIMRC_FILE2
2832 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2833 DOSO_VIMRC) == FAIL
2834 #endif
2835 #ifdef USR_VIMRC_FILE3
2836 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2837 DOSO_VIMRC) == FAIL
2838 #endif
2839 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2840 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2842 #ifdef USR_EXRC_FILE2
2843 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2844 #endif
2849 * Read initialization commands from ".vimrc" or ".exrc" in current
2850 * directory. This is only done if the 'exrc' option is set.
2851 * Because of security reasons we disallow shell and write commands
2852 * now, except for unix if the file is owned by the user or 'secure'
2853 * option has been reset in environment of global ".exrc" or ".vimrc".
2854 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2855 * SYS_VIMRC_FILE.
2857 if (p_exrc)
2859 #if defined(UNIX) || defined(VMS)
2860 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2861 if (!file_owned(VIMRC_FILE))
2862 #endif
2863 secure = p_secure;
2865 i = FAIL;
2866 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2867 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2868 #ifdef USR_VIMRC_FILE2
2869 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2870 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2871 #endif
2872 #ifdef USR_VIMRC_FILE3
2873 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2874 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2875 #endif
2876 #ifdef SYS_VIMRC_FILE
2877 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2878 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2879 #endif
2881 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2883 if (i == FAIL)
2885 #if defined(UNIX) || defined(VMS)
2886 /* if ".exrc" is not owned by user set 'secure' mode */
2887 if (!file_owned(EXRC_FILE))
2888 secure = p_secure;
2889 else
2890 secure = 0;
2891 #endif
2892 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2893 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2894 #ifdef USR_EXRC_FILE2
2895 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2896 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2897 #endif
2899 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2902 if (secure == 2)
2903 need_wait_return = TRUE;
2904 secure = 0;
2905 #ifdef AMIGA
2906 proc->pr_WindowPtr = save_winptr;
2907 #endif
2909 TIME_MSG("sourcing vimrc file(s)");
2913 * Setup to start using the GUI. Exit with an error when not available.
2915 static void
2916 main_start_gui()
2918 #ifdef FEAT_GUI
2919 gui.starting = TRUE; /* start GUI a bit later */
2920 #else
2921 mch_errmsg(_(e_nogvim));
2922 mch_errmsg("\n");
2923 mch_exit(2);
2924 #endif
2928 * Get an environment variable, and execute it as Ex commands.
2929 * Returns FAIL if the environment variable was not executed, OK otherwise.
2932 process_env(env, is_viminit)
2933 char_u *env;
2934 int is_viminit; /* when TRUE, called for VIMINIT */
2936 char_u *initstr;
2937 char_u *save_sourcing_name;
2938 linenr_T save_sourcing_lnum;
2939 #ifdef FEAT_EVAL
2940 scid_T save_sid;
2941 #endif
2943 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2945 if (is_viminit)
2946 vimrc_found(NULL, NULL);
2947 save_sourcing_name = sourcing_name;
2948 save_sourcing_lnum = sourcing_lnum;
2949 sourcing_name = env;
2950 sourcing_lnum = 0;
2951 #ifdef FEAT_EVAL
2952 save_sid = current_SID;
2953 current_SID = SID_ENV;
2954 #endif
2955 do_cmdline_cmd(initstr);
2956 sourcing_name = save_sourcing_name;
2957 sourcing_lnum = save_sourcing_lnum;
2958 #ifdef FEAT_EVAL
2959 current_SID = save_sid;;
2960 #endif
2961 return OK;
2963 return FAIL;
2966 #if defined(UNIX) || defined(VMS)
2968 * Return TRUE if we are certain the user owns the file "fname".
2969 * Used for ".vimrc" and ".exrc".
2970 * Use both stat() and lstat() for extra security.
2972 static int
2973 file_owned(fname)
2974 char *fname;
2976 struct stat s;
2977 # ifdef UNIX
2978 uid_t uid = getuid();
2979 # else /* VMS */
2980 uid_t uid = ((getgid() << 16) | getuid());
2981 # endif
2983 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2984 # ifdef HAVE_LSTAT
2985 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2986 # endif
2989 #endif
2992 * Give an error message main_errors["n"] and exit.
2994 static void
2995 mainerr(n, str)
2996 int n; /* one of the ME_ defines */
2997 char_u *str; /* extra argument or NULL */
2999 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3000 reset_signals(); /* kill us with CTRL-C here, if you like */
3001 #endif
3003 mch_errmsg(longVersion);
3004 mch_errmsg("\n");
3005 mch_errmsg(_(main_errors[n]));
3006 if (str != NULL)
3008 mch_errmsg(": \"");
3009 mch_errmsg((char *)str);
3010 mch_errmsg("\"");
3012 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
3014 mch_exit(1);
3017 void
3018 mainerr_arg_missing(str)
3019 char_u *str;
3021 mainerr(ME_ARG_MISSING, str);
3025 * print a message with three spaces prepended and '\n' appended.
3027 static void
3028 main_msg(s)
3029 char *s;
3031 mch_msg(" ");
3032 mch_msg(s);
3033 mch_msg("\n");
3037 * Print messages for "vim -h" or "vim --help" and exit.
3039 static void
3040 usage()
3042 int i;
3043 static char *(use[]) =
3045 N_("[file ..] edit specified file(s)"),
3046 N_("- read text from stdin"),
3047 N_("-t tag edit file where tag is defined"),
3048 #ifdef FEAT_QUICKFIX
3049 N_("-q [errorfile] edit file with first error")
3050 #endif
3053 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3054 reset_signals(); /* kill us with CTRL-C here, if you like */
3055 #endif
3057 mch_msg(longVersion);
3058 mch_msg(_("\n\nusage:"));
3059 for (i = 0; ; ++i)
3061 mch_msg(_(" vim [arguments] "));
3062 mch_msg(_(use[i]));
3063 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3064 break;
3065 mch_msg(_("\n or:"));
3067 #ifdef VMS
3068 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3069 #endif
3071 mch_msg(_("\n\nArguments:\n"));
3072 main_msg(_("--\t\t\tOnly file names after this"));
3073 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3074 main_msg(_("--literal\t\tDon't expand wildcards"));
3075 #endif
3076 #ifdef FEAT_OLE
3077 main_msg(_("-register\t\tRegister this gvim for OLE"));
3078 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3079 #endif
3080 #ifdef FEAT_GUI
3081 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3082 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3083 #endif
3084 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3085 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3086 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3087 #ifdef FEAT_DIFF
3088 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3089 #endif
3090 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3091 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3092 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3093 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3094 main_msg(_("-M\t\t\tModifications in text not allowed"));
3095 main_msg(_("-b\t\t\tBinary mode"));
3096 #ifdef FEAT_LISP
3097 main_msg(_("-l\t\t\tLisp mode"));
3098 #endif
3099 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3100 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3101 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3102 #ifdef FEAT_EVAL
3103 main_msg(_("-D\t\t\tDebugging mode"));
3104 #endif
3105 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3106 main_msg(_("-r\t\t\tList swap files and exit"));
3107 main_msg(_("-r (with file name)\tRecover crashed session"));
3108 main_msg(_("-L\t\t\tSame as -r"));
3109 #ifdef AMIGA
3110 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3111 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3112 #endif
3113 #ifdef FEAT_ARABIC
3114 main_msg(_("-A\t\t\tstart in Arabic mode"));
3115 #endif
3116 #ifdef FEAT_RIGHTLEFT
3117 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3118 #endif
3119 #ifdef FEAT_FKMAP
3120 main_msg(_("-F\t\t\tStart in Farsi mode"));
3121 #endif
3122 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3123 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3124 #ifdef FEAT_GUI
3125 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3126 #endif
3127 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3128 #ifdef FEAT_WINDOWS
3129 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3130 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3131 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3132 #endif
3133 main_msg(_("+\t\t\tStart at end of file"));
3134 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3135 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3136 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3137 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3138 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3139 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3140 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3141 #ifdef FEAT_CRYPT
3142 main_msg(_("-x\t\t\tEdit encrypted files"));
3143 #endif
3144 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3145 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3146 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3147 # endif
3148 main_msg(_("-X\t\t\tDo not connect to X server"));
3149 #endif
3150 #ifdef FEAT_CLIENTSERVER
3151 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3152 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3153 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3154 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3155 # ifdef FEAT_WINDOWS
3156 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3157 # endif
3158 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3159 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3160 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3161 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3162 #endif
3163 #ifdef STARTUPTIME
3164 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
3165 #endif
3166 #ifdef FEAT_VIMINFO
3167 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3168 #endif
3169 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3170 main_msg(_("--version\t\tPrint version information and exit"));
3172 #ifdef FEAT_GUI_X11
3173 # ifdef FEAT_GUI_MOTIF
3174 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3175 # else
3176 # ifdef FEAT_GUI_ATHENA
3177 # ifdef FEAT_GUI_NEXTAW
3178 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3179 # else
3180 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3181 # endif
3182 # endif
3183 # endif
3184 main_msg(_("-display <display>\tRun vim on <display>"));
3185 main_msg(_("-iconic\t\tStart vim iconified"));
3186 # if 0
3187 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3188 mch_msg(_("\t\t\t (Unimplemented)\n"));
3189 # endif
3190 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3191 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3192 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3193 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3194 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3195 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3196 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3197 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3198 # ifdef FEAT_GUI_ATHENA
3199 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3200 # endif
3201 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3202 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3203 main_msg(_("-xrm <resource>\tSet the specified resource"));
3204 #endif /* FEAT_GUI_X11 */
3205 #if defined(FEAT_GUI) && defined(RISCOS)
3206 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3207 main_msg(_("--columns <number>\tInitial width of window in columns"));
3208 main_msg(_("--rows <number>\tInitial height of window in rows"));
3209 #endif
3210 #ifdef FEAT_GUI_GTK
3211 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3212 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3213 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3214 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3215 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3216 # ifdef HAVE_GTK2
3217 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3218 # endif
3219 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3220 #endif
3221 #ifdef FEAT_GUI_W32
3222 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3223 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3224 #endif
3226 #ifdef FEAT_GUI_GNOME
3227 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3228 if (gui.starting)
3229 mch_msg("\n");
3230 else
3231 #endif
3232 mch_exit(0);
3235 #if defined(HAS_SWAP_EXISTS_ACTION)
3237 * Check the result of the ATTENTION dialog:
3238 * When "Quit" selected, exit Vim.
3239 * When "Recover" selected, recover the file.
3241 static void
3242 check_swap_exists_action()
3244 if (swap_exists_action == SEA_QUIT)
3245 getout(1);
3246 handle_swap_exists(NULL);
3248 #endif
3250 #if defined(STARTUPTIME) || defined(PROTO)
3251 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3253 static struct timeval prev_timeval;
3255 # ifdef WIN3264
3257 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3259 static int
3260 gettimeofday(struct timeval *tv, char *dummy)
3262 long t = clock();
3263 tv->tv_sec = t / CLOCKS_PER_SEC;
3264 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3265 return 0;
3267 # endif
3270 * Save the previous time before doing something that could nest.
3271 * set "*tv_rel" to the time elapsed so far.
3273 void
3274 time_push(tv_rel, tv_start)
3275 void *tv_rel, *tv_start;
3277 *((struct timeval *)tv_rel) = prev_timeval;
3278 gettimeofday(&prev_timeval, NULL);
3279 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3280 - ((struct timeval *)tv_rel)->tv_usec;
3281 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3282 - ((struct timeval *)tv_rel)->tv_sec;
3283 if (((struct timeval *)tv_rel)->tv_usec < 0)
3285 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3286 --((struct timeval *)tv_rel)->tv_sec;
3288 *(struct timeval *)tv_start = prev_timeval;
3292 * Compute the previous time after doing something that could nest.
3293 * Subtract "*tp" from prev_timeval;
3294 * Note: The arguments are (void *) to avoid trouble with systems that don't
3295 * have struct timeval.
3297 void
3298 time_pop(tp)
3299 void *tp; /* actually (struct timeval *) */
3301 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3302 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3303 if (prev_timeval.tv_usec < 0)
3305 prev_timeval.tv_usec += 1000000;
3306 --prev_timeval.tv_sec;
3310 static void
3311 time_diff(then, now)
3312 struct timeval *then;
3313 struct timeval *now;
3315 long usec;
3316 long msec;
3318 usec = now->tv_usec - then->tv_usec;
3319 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3320 usec = usec % 1000L;
3321 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3324 void
3325 time_msg(msg, tv_start)
3326 char *msg;
3327 void *tv_start; /* only for do_source: start time; actually
3328 (struct timeval *) */
3330 static struct timeval start;
3331 struct timeval now;
3333 if (time_fd != NULL)
3335 if (strstr(msg, "STARTING") != NULL)
3337 gettimeofday(&start, NULL);
3338 prev_timeval = start;
3339 fprintf(time_fd, "\n\ntimes in msec\n");
3340 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3341 fprintf(time_fd, " clock elapsed: other lines\n\n");
3343 gettimeofday(&now, NULL);
3344 time_diff(&start, &now);
3345 if (((struct timeval *)tv_start) != NULL)
3347 fprintf(time_fd, " ");
3348 time_diff(((struct timeval *)tv_start), &now);
3350 fprintf(time_fd, " ");
3351 time_diff(&prev_timeval, &now);
3352 prev_timeval = now;
3353 fprintf(time_fd, ": %s\n", msg);
3357 #endif
3359 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3362 * Common code for the X command server and the Win32 command server.
3365 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3368 * Do the client-server stuff, unless "--servername ''" was used.
3370 static void
3371 exec_on_server(parmp)
3372 mparm_T *parmp;
3374 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3376 # ifdef WIN32
3377 /* Initialise the client/server messaging infrastructure. */
3378 serverInitMessaging();
3379 # endif
3382 * When a command server argument was found, execute it. This may
3383 * exit Vim when it was successful. Otherwise it's executed further
3384 * on. Remember the encoding used here in "serverStrEnc".
3386 if (parmp->serverArg)
3388 cmdsrv_main(&parmp->argc, parmp->argv,
3389 parmp->serverName_arg, &parmp->serverStr);
3390 # ifdef FEAT_MBYTE
3391 parmp->serverStrEnc = vim_strsave(p_enc);
3392 # endif
3395 /* If we're still running, get the name to register ourselves.
3396 * On Win32 can register right now, for X11 need to setup the
3397 * clipboard first, it's further down. */
3398 parmp->servername = serverMakeName(parmp->serverName_arg,
3399 parmp->argv[0]);
3400 # ifdef WIN32
3401 if (parmp->servername != NULL)
3403 serverSetName(parmp->servername);
3404 vim_free(parmp->servername);
3406 # endif
3411 * Prepare for running as a Vim server.
3413 static void
3414 prepare_server(parmp)
3415 mparm_T *parmp;
3417 # if defined(FEAT_X11)
3419 * Register for remote command execution with :serversend and --remote
3420 * unless there was a -X or a --servername '' on the command line.
3421 * Only register nongui-vim's with an explicit --servername argument.
3422 * When running as root --servername is also required.
3424 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3425 # ifdef FEAT_GUI
3426 (gui.in_use
3427 # ifdef UNIX
3428 && getuid() != ROOT_UID
3429 # endif
3430 ) ||
3431 # endif
3432 parmp->serverName_arg != NULL))
3434 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3435 vim_free(parmp->servername);
3436 TIME_MSG("register server name");
3438 else
3439 serverDelayedStartName = parmp->servername;
3440 # endif
3443 * Execute command ourselves if we're here because the send failed (or
3444 * else we would have exited above).
3446 if (parmp->serverStr != NULL)
3448 char_u *p;
3450 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3451 parmp->serverStr, &p));
3452 vim_free(p);
3456 static void
3457 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3458 int *argc;
3459 char **argv;
3460 char_u *serverName_arg;
3461 char_u **serverStr;
3463 char_u *res;
3464 int i;
3465 char_u *sname;
3466 int ret;
3467 int didone = FALSE;
3468 int exiterr = 0;
3469 char **newArgV = argv + 1;
3470 int newArgC = 1,
3471 Argc = *argc;
3472 int argtype;
3473 #define ARGTYPE_OTHER 0
3474 #define ARGTYPE_EDIT 1
3475 #define ARGTYPE_EDIT_WAIT 2
3476 #define ARGTYPE_SEND 3
3477 int silent = FALSE;
3478 int tabs = FALSE;
3479 # ifndef FEAT_X11
3480 HWND srv;
3481 # else
3482 Window srv;
3484 setup_term_clip();
3485 # endif
3487 sname = serverMakeName(serverName_arg, argv[0]);
3488 if (sname == NULL)
3489 return;
3492 * Execute the command server related arguments and remove them
3493 * from the argc/argv array; We may have to return into main()
3495 for (i = 1; i < Argc; i++)
3497 res = NULL;
3498 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3500 for (; i < *argc; i++)
3502 *newArgV++ = argv[i];
3503 newArgC++;
3505 break;
3508 if (STRICMP(argv[i], "--remote-send") == 0)
3509 argtype = ARGTYPE_SEND;
3510 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3512 char *p = argv[i] + 8;
3514 argtype = ARGTYPE_EDIT;
3515 while (*p != NUL)
3517 if (STRNICMP(p, "-wait", 5) == 0)
3519 argtype = ARGTYPE_EDIT_WAIT;
3520 p += 5;
3522 else if (STRNICMP(p, "-silent", 7) == 0)
3524 silent = TRUE;
3525 p += 7;
3527 else if (STRNICMP(p, "-tab", 4) == 0)
3529 tabs = TRUE;
3530 p += 4;
3532 else
3534 argtype = ARGTYPE_OTHER;
3535 break;
3539 else
3540 argtype = ARGTYPE_OTHER;
3542 if (argtype != ARGTYPE_OTHER)
3544 if (i == *argc - 1)
3545 mainerr_arg_missing((char_u *)argv[i]);
3546 if (argtype == ARGTYPE_SEND)
3548 *serverStr = (char_u *)argv[i + 1];
3549 i++;
3551 else
3553 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3554 tabs, argtype == ARGTYPE_EDIT_WAIT);
3555 if (*serverStr == NULL)
3557 /* Probably out of memory, exit. */
3558 didone = TRUE;
3559 exiterr = 1;
3560 break;
3562 Argc = i;
3564 # ifdef FEAT_X11
3565 if (xterm_dpy == NULL)
3567 mch_errmsg(_("No display"));
3568 ret = -1;
3570 else
3571 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3572 NULL, &srv, 0, 0, silent);
3573 # else
3574 /* Win32 always works? */
3575 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3576 # endif
3577 if (ret < 0)
3579 if (argtype == ARGTYPE_SEND)
3581 /* Failed to send, abort. */
3582 mch_errmsg(_(": Send failed.\n"));
3583 didone = TRUE;
3584 exiterr = 1;
3586 else if (!silent)
3587 /* Let vim start normally. */
3588 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3589 break;
3592 # ifdef FEAT_GUI_W32
3593 /* Guess that when the server name starts with "g" it's a GUI
3594 * server, which we can bring to the foreground here.
3595 * Foreground() in the server doesn't work very well. */
3596 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3597 SetForegroundWindow(srv);
3598 # endif
3601 * For --remote-wait: Wait until the server did edit each
3602 * file. Also detect that the server no longer runs.
3604 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3606 int numFiles = *argc - i - 1;
3607 int j;
3608 char_u *done = alloc(numFiles);
3609 char_u *p;
3610 # ifdef FEAT_GUI_W32
3611 NOTIFYICONDATA ni;
3612 int count = 0;
3613 extern HWND message_window;
3614 # endif
3616 if (numFiles > 0 && argv[i + 1][0] == '+')
3617 /* Skip "+cmd" argument, don't wait for it to be edited. */
3618 --numFiles;
3620 # ifdef FEAT_GUI_W32
3621 ni.cbSize = sizeof(ni);
3622 ni.hWnd = message_window;
3623 ni.uID = 0;
3624 ni.uFlags = NIF_ICON|NIF_TIP;
3625 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3626 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3627 Shell_NotifyIcon(NIM_ADD, &ni);
3628 # endif
3630 /* Wait for all files to unload in remote */
3631 memset(done, 0, numFiles);
3632 while (memchr(done, 0, numFiles) != NULL)
3634 # ifdef WIN32
3635 p = serverGetReply(srv, NULL, TRUE, TRUE);
3636 if (p == NULL)
3637 break;
3638 # else
3639 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3640 break;
3641 # endif
3642 j = atoi((char *)p);
3643 if (j >= 0 && j < numFiles)
3645 # ifdef FEAT_GUI_W32
3646 ++count;
3647 sprintf(ni.szTip, _("%d of %d edited"),
3648 count, numFiles);
3649 Shell_NotifyIcon(NIM_MODIFY, &ni);
3650 # endif
3651 done[j] = 1;
3654 # ifdef FEAT_GUI_W32
3655 Shell_NotifyIcon(NIM_DELETE, &ni);
3656 # endif
3659 else if (STRICMP(argv[i], "--remote-expr") == 0)
3661 if (i == *argc - 1)
3662 mainerr_arg_missing((char_u *)argv[i]);
3663 # ifdef WIN32
3664 /* Win32 always works? */
3665 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3666 &res, NULL, 1, FALSE) < 0)
3667 # else
3668 if (xterm_dpy == NULL)
3669 mch_errmsg(_("No display: Send expression failed.\n"));
3670 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3671 &res, NULL, 1, 1, FALSE) < 0)
3672 # endif
3674 if (res != NULL && *res != NUL)
3676 /* Output error from remote */
3677 mch_errmsg((char *)res);
3678 vim_free(res);
3679 res = NULL;
3681 mch_errmsg(_(": Send expression failed.\n"));
3684 else if (STRICMP(argv[i], "--serverlist") == 0)
3686 # ifdef WIN32
3687 /* Win32 always works? */
3688 res = serverGetVimNames();
3689 # else
3690 if (xterm_dpy != NULL)
3691 res = serverGetVimNames(xterm_dpy);
3692 # endif
3693 if (called_emsg)
3694 mch_errmsg("\n");
3696 else if (STRICMP(argv[i], "--servername") == 0)
3698 /* Already processed. Take it out of the command line */
3699 i++;
3700 continue;
3702 else
3704 *newArgV++ = argv[i];
3705 newArgC++;
3706 continue;
3708 didone = TRUE;
3709 if (res != NULL && *res != NUL)
3711 mch_msg((char *)res);
3712 if (res[STRLEN(res) - 1] != '\n')
3713 mch_msg("\n");
3715 vim_free(res);
3718 if (didone)
3720 display_errors(); /* display any collected messages */
3721 exit(exiterr); /* Mission accomplished - get out */
3724 /* Return back into main() */
3725 *argc = newArgC;
3726 vim_free(sname);
3730 * Build a ":drop" command to send to a Vim server.
3732 static char_u *
3733 build_drop_cmd(filec, filev, tabs, sendReply)
3734 int filec;
3735 char **filev;
3736 int tabs; /* Use ":tab drop" instead of ":drop". */
3737 int sendReply;
3739 garray_T ga;
3740 int i;
3741 char_u *inicmd = NULL;
3742 char_u *p;
3743 char_u cwd[MAXPATHL];
3745 if (filec > 0 && filev[0][0] == '+')
3747 inicmd = (char_u *)filev[0] + 1;
3748 filev++;
3749 filec--;
3751 /* Check if we have at least one argument. */
3752 if (filec <= 0)
3753 mainerr_arg_missing((char_u *)filev[-1]);
3754 if (mch_dirname(cwd, MAXPATHL) != OK)
3755 return NULL;
3756 if ((p = vim_strsave_escaped_ext(cwd,
3757 #ifdef BACKSLASH_IN_FILENAME
3758 "", /* rem_backslash() will tell what chars to escape */
3759 #else
3760 PATH_ESC_CHARS,
3761 #endif
3762 '\\', TRUE)) == NULL)
3763 return NULL;
3764 ga_init2(&ga, 1, 100);
3765 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3766 ga_concat(&ga, p);
3767 vim_free(p);
3769 /* Call inputsave() so that a prompt for an encryption key works. */
3770 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3771 if (tabs)
3772 ga_concat(&ga, (char_u *)"tab ");
3773 ga_concat(&ga, (char_u *)"drop");
3774 for (i = 0; i < filec; i++)
3776 /* On Unix the shell has already expanded the wildcards, don't want to
3777 * do it again in the Vim server. On MS-Windows only escape
3778 * non-wildcard characters. */
3779 p = vim_strsave_escaped((char_u *)filev[i],
3780 #ifdef UNIX
3781 PATH_ESC_CHARS
3782 #else
3783 (char_u *)" \t%#"
3784 #endif
3786 if (p == NULL)
3788 vim_free(ga.ga_data);
3789 return NULL;
3791 ga_concat(&ga, (char_u *)" ");
3792 ga_concat(&ga, p);
3793 vim_free(p);
3795 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3796 * CTRL-\ CTRL-N again. */
3797 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3798 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3799 if (sendReply)
3800 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3801 ga_concat(&ga, (char_u *)"<CR>:");
3802 if (inicmd != NULL)
3804 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3805 * the following commands to be inserted as text. Use a "|",
3806 * hopefully "inicmd" does allow this... */
3807 ga_concat(&ga, inicmd);
3808 ga_concat(&ga, (char_u *)"|");
3810 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3811 * clear command line. */
3812 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3813 ga_append(&ga, NUL);
3814 return ga.ga_data;
3818 * Replace termcodes such as <CR> and insert as key presses if there is room.
3820 void
3821 server_to_input_buf(str)
3822 char_u *str;
3824 char_u *ptr = NULL;
3825 char_u *cpo_save = p_cpo;
3827 /* Set 'cpoptions' the way we want it.
3828 * B set - backslashes are *not* treated specially
3829 * k set - keycodes are *not* reverse-engineered
3830 * < unset - <Key> sequences *are* interpreted
3831 * The last but one parameter of replace_termcodes() is TRUE so that the
3832 * <lt> sequence is recognised - needed for a real backslash.
3834 p_cpo = (char_u *)"Bk";
3835 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3836 p_cpo = cpo_save;
3838 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3841 * Add the string to the input stream.
3842 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3844 * First clear typed characters from the typeahead buffer, there could
3845 * be half a mapping there. Then append to the existing string, so
3846 * that multiple commands from a client are concatenated.
3848 if (typebuf.tb_maplen < typebuf.tb_len)
3849 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3850 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3852 /* Let input_available() know we inserted text in the typeahead
3853 * buffer. */
3854 typebuf_was_filled = TRUE;
3856 vim_free((char_u *)ptr);
3860 * Evaluate an expression that the client sent to a string.
3861 * Handles disabling error messages and disables debugging, otherwise Vim
3862 * hangs, waiting for "cont" to be typed.
3864 char_u *
3865 eval_client_expr_to_string(expr)
3866 char_u *expr;
3868 char_u *res;
3869 int save_dbl = debug_break_level;
3870 int save_ro = redir_off;
3872 debug_break_level = -1;
3873 redir_off = 0;
3874 ++emsg_skip;
3876 res = eval_to_string(expr, NULL, TRUE);
3878 debug_break_level = save_dbl;
3879 redir_off = save_ro;
3880 --emsg_skip;
3882 /* A client can tell us to redraw, but not to display the cursor, so do
3883 * that here. */
3884 setcursor();
3885 out_flush();
3886 #ifdef FEAT_GUI
3887 if (gui.in_use)
3888 gui_update_cursor(FALSE, FALSE);
3889 #endif
3891 return res;
3895 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3896 * return an allocated string. Otherwise return "data".
3897 * "*tofree" is set to the result when it needs to be freed later.
3899 char_u *
3900 serverConvert(client_enc, data, tofree)
3901 char_u *client_enc UNUSED;
3902 char_u *data;
3903 char_u **tofree;
3905 char_u *res = data;
3907 *tofree = NULL;
3908 # ifdef FEAT_MBYTE
3909 if (client_enc != NULL && p_enc != NULL)
3911 vimconv_T vimconv;
3913 vimconv.vc_type = CONV_NONE;
3914 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3915 && vimconv.vc_type != CONV_NONE)
3917 res = string_convert(&vimconv, data, NULL);
3918 if (res == NULL)
3919 res = data;
3920 else
3921 *tofree = res;
3923 convert_setup(&vimconv, NULL, NULL);
3925 # endif
3926 return res;
3931 * Make our basic server name: use the specified "arg" if given, otherwise use
3932 * the tail of the command "cmd" we were started with.
3933 * Return the name in allocated memory. This doesn't include a serial number.
3935 static char_u *
3936 serverMakeName(arg, cmd)
3937 char_u *arg;
3938 char *cmd;
3940 char_u *p;
3942 if (arg != NULL && *arg != NUL)
3943 p = vim_strsave_up(arg);
3944 else
3946 p = vim_strsave_up(gettail((char_u *)cmd));
3947 /* Remove .exe or .bat from the name. */
3948 if (p != NULL && vim_strchr(p, '.') != NULL)
3949 *vim_strchr(p, '.') = NUL;
3951 return p;
3953 #endif /* FEAT_CLIENTSERVER */
3956 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3958 #if defined(FEAT_FKMAP) || defined(PROTO)
3959 # include "farsi.c"
3960 #endif
3963 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3965 #if defined(FEAT_ARABIC) || defined(PROTO)
3966 # include "arabic.c"
3967 #endif