Merge branch 'vim-with-runtime' into feat/quickfix-title
[vim_extended.git] / src / main.c
blob39c0cc925fb5df3f3d0d77e9d0af66df4cff6e01
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 vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef);
682 if (qf_init(NULL, p_ef, p_efm, TRUE, (char *)IObuff) < 0)
684 out_char('\n');
685 mch_exit(3);
687 TIME_MSG("reading errorfile");
689 #endif
692 * Start putting things on the screen.
693 * Scroll screen down before drawing over it
694 * Clear screen now, so file message will not be cleared.
696 starting = NO_BUFFERS;
697 no_wait_return = FALSE;
698 if (!exmode_active)
699 msg_scroll = FALSE;
701 #ifdef FEAT_GUI
703 * This seems to be required to make callbacks to be called now, instead
704 * of after things have been put on the screen, which then may be deleted
705 * when getting a resize callback.
706 * For the Mac this handles putting files dropped on the Vim icon to
707 * global_alist.
709 if (gui.in_use)
711 # ifdef FEAT_SUN_WORKSHOP
712 if (!usingSunWorkShop)
713 # endif
714 gui_wait_for_chars(50L);
715 TIME_MSG("GUI delay");
717 #endif
719 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
720 qnx_clip_init();
721 #endif
723 #ifdef FEAT_XCLIPBOARD
724 /* Start using the X clipboard, unless the GUI was started. */
725 # ifdef FEAT_GUI
726 if (!gui.in_use)
727 # endif
729 setup_term_clip();
730 TIME_MSG("setup clipboard");
732 #endif
734 #ifdef FEAT_CLIENTSERVER
735 /* Prepare for being a Vim server. */
736 prepare_server(&params);
737 #endif
740 * If "-" argument given: Read file from stdin.
741 * Do this before starting Raw mode, because it may change things that the
742 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
743 * are the same terminal: "cat | vim -".
744 * Using autocommands here may cause trouble...
746 if (params.edit_type == EDIT_STDIN && !recoverymode)
747 read_stdin();
749 #if defined(UNIX) || defined(VMS)
750 /* When switching screens and something caused a message from a vimrc
751 * script, need to output an extra newline on exit. */
752 if ((did_emsg || msg_didout) && *T_TI != NUL)
753 newline_on_exit = TRUE;
754 #endif
757 * When done something that is not allowed or error message call
758 * wait_return. This must be done before starttermcap(), because it may
759 * switch to another screen. It must be done after settmode(TMODE_RAW),
760 * because we want to react on a single key stroke.
761 * Call settmode and starttermcap here, so the T_KS and T_TI may be
762 * defined by termcapinit and redefined in .exrc.
764 settmode(TMODE_RAW);
765 TIME_MSG("setting raw mode");
767 if (need_wait_return || msg_didany)
769 wait_return(TRUE);
770 TIME_MSG("waiting for return");
773 starttermcap(); /* start termcap if not done by wait_return() */
774 TIME_MSG("start termcap");
776 #ifdef FEAT_MOUSE
777 setmouse(); /* may start using the mouse */
778 #endif
779 if (scroll_region)
780 scroll_region_reset(); /* In case Rows changed */
781 scroll_start(); /* may scroll the screen to the right position */
784 * Don't clear the screen when starting in Ex mode, unless using the GUI.
786 if (exmode_active
787 #ifdef FEAT_GUI
788 && !gui.in_use
789 #endif
791 must_redraw = CLEAR;
792 else
794 screenclear(); /* clear screen */
795 TIME_MSG("clearing screen");
798 #ifdef FEAT_CRYPT
799 if (params.ask_for_key)
801 (void)get_crypt_key(TRUE, TRUE);
802 TIME_MSG("getting crypt key");
804 #endif
806 no_wait_return = TRUE;
809 * Create the requested number of windows and edit buffers in them.
810 * Also does recovery if "recoverymode" set.
812 create_windows(&params);
813 TIME_MSG("opening buffers");
815 #ifdef FEAT_EVAL
816 /* clear v:swapcommand */
817 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
818 #endif
820 /* Ex starts at last line of the file */
821 if (exmode_active)
822 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
824 #ifdef FEAT_AUTOCMD
825 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
826 TIME_MSG("BufEnter autocommands");
827 #endif
828 setpcmark();
830 #ifdef FEAT_QUICKFIX
832 * When started with "-q errorfile" jump to first error now.
834 if (params.edit_type == EDIT_QF)
836 qf_jump(NULL, 0, 0, FALSE);
837 TIME_MSG("jump to first error");
839 #endif
841 #ifdef FEAT_WINDOWS
843 * If opened more than one window, start editing files in the other
844 * windows.
846 edit_buffers(&params);
847 #endif
849 #ifdef FEAT_DIFF
850 if (params.diff_mode)
852 win_T *wp;
854 /* set options in each window for "vimdiff". */
855 for (wp = firstwin; wp != NULL; wp = wp->w_next)
856 diff_win_options(wp, TRUE);
858 #endif
861 * Shorten any of the filenames, but only when absolute.
863 shorten_fnames(FALSE);
866 * Need to jump to the tag before executing the '-c command'.
867 * Makes "vim -c '/return' -t main" work.
869 if (params.tagname != NULL)
871 #if defined(HAS_SWAP_EXISTS_ACTION)
872 swap_exists_did_quit = FALSE;
873 #endif
875 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
876 do_cmdline_cmd(IObuff);
877 TIME_MSG("jumping to tag");
879 #if defined(HAS_SWAP_EXISTS_ACTION)
880 /* If the user doesn't want to edit the file then we quit here. */
881 if (swap_exists_did_quit)
882 getout(1);
883 #endif
886 /* Execute any "+", "-c" and "-S" arguments. */
887 if (params.n_commands > 0)
888 exe_commands(&params);
890 RedrawingDisabled = 0;
891 redraw_all_later(NOT_VALID);
892 no_wait_return = FALSE;
893 starting = 0;
895 #ifdef FEAT_TERMRESPONSE
896 /* Requesting the termresponse is postponed until here, so that a "-c q"
897 * argument doesn't make it appear in the shell Vim was started from. */
898 may_req_termresponse();
899 #endif
901 /* start in insert mode */
902 if (p_im)
903 need_start_insertmode = TRUE;
905 #ifdef FEAT_AUTOCMD
906 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
907 TIME_MSG("VimEnter autocommands");
908 #endif
910 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
911 /* When a startup script or session file setup for diff'ing and
912 * scrollbind, sync the scrollbind now. */
913 if (curwin->w_p_diff && curwin->w_p_scb)
915 update_topline();
916 check_scrollbind((linenr_T)0, 0L);
917 TIME_MSG("diff scrollbinding");
919 #endif
921 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
922 mch_set_winsize_now(); /* Allow winsize changes from now on */
923 #endif
925 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
926 /* When tab pages were created, may need to update the tab pages line and
927 * scrollbars. This is skipped while creating them. */
928 if (first_tabpage->tp_next != NULL)
930 out_flush();
931 gui_init_which_components(NULL);
932 gui_update_scrollbars(TRUE);
934 need_mouse_correct = TRUE;
935 #endif
937 /* If ":startinsert" command used, stuff a dummy command to be able to
938 * call normal_cmd(), which will then start Insert mode. */
939 if (restart_edit != 0)
940 stuffcharReadbuff(K_NOP);
942 #ifdef FEAT_NETBEANS_INTG
943 if (usingNetbeans)
944 /* Tell the client that it can start sending commands. */
945 netbeans_startup_done();
946 #endif
948 TIME_MSG("before starting main loop");
951 * Call the main command loop. This never returns.
952 * For embedded MzScheme the main_loop will be called by Scheme
953 * for proper stack tracking
955 #ifndef FEAT_MZSCHEME
956 main_loop(FALSE, FALSE);
957 #else
958 mzscheme_main();
959 #endif
961 return 0;
963 #endif /* PROTO */
966 * Main loop: Execute Normal mode commands until exiting Vim.
967 * Also used to handle commands in the command-line window, until the window
968 * is closed.
969 * Also used to handle ":visual" command after ":global": execute Normal mode
970 * commands, return when entering Ex mode. "noexmode" is TRUE then.
972 void
973 main_loop(cmdwin, noexmode)
974 int cmdwin; /* TRUE when working in the command-line window */
975 int noexmode; /* TRUE when return on entering Ex mode */
977 oparg_T oa; /* operator arguments */
978 int previous_got_int = FALSE; /* "got_int" was TRUE */
980 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
981 /* Setup to catch a terminating error from the X server. Just ignore
982 * it, restore the state and continue. This might not always work
983 * properly, but at least we don't exit unexpectedly when the X server
984 * exists while Vim is running in a console. */
985 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
987 State = NORMAL;
988 # ifdef FEAT_VISUAL
989 VIsual_active = FALSE;
990 # endif
991 got_int = TRUE;
992 need_wait_return = FALSE;
993 global_busy = FALSE;
994 exmode_active = 0;
995 skip_redraw = FALSE;
996 RedrawingDisabled = 0;
997 no_wait_return = 0;
998 # ifdef FEAT_EVAL
999 emsg_skip = 0;
1000 # endif
1001 emsg_off = 0;
1002 # ifdef FEAT_MOUSE
1003 setmouse();
1004 # endif
1005 settmode(TMODE_RAW);
1006 starttermcap();
1007 scroll_start();
1008 redraw_later_clear();
1010 #endif
1012 clear_oparg(&oa);
1013 while (!cmdwin
1014 #ifdef FEAT_CMDWIN
1015 || cmdwin_result == 0
1016 #endif
1019 if (stuff_empty())
1021 did_check_timestamps = FALSE;
1022 if (need_check_timestamps)
1023 check_timestamps(FALSE);
1024 if (need_wait_return) /* if wait_return still needed ... */
1025 wait_return(FALSE); /* ... call it now */
1026 if (need_start_insertmode && goto_im()
1027 #ifdef FEAT_VISUAL
1028 && !VIsual_active
1029 #endif
1032 need_start_insertmode = FALSE;
1033 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1034 /* skip the fileinfo message now, because it would be shown
1035 * after insert mode finishes! */
1036 need_fileinfo = FALSE;
1040 /* Reset "got_int" now that we got back to the main loop. Except when
1041 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1042 * the ":g" command.
1043 * For ":g/pat/vi" we reset "got_int" when used once. When used
1044 * a second time we go back to Ex mode and abort the ":g" command. */
1045 if (got_int)
1047 if (noexmode && global_busy && !exmode_active && previous_got_int)
1049 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1050 * used and keep "got_int" set, so that it aborts ":g". */
1051 exmode_active = EXMODE_NORMAL;
1052 State = NORMAL;
1054 else if (!global_busy || !exmode_active)
1056 if (!quit_more)
1057 (void)vgetc(); /* flush all buffers */
1058 got_int = FALSE;
1060 previous_got_int = TRUE;
1062 else
1063 previous_got_int = FALSE;
1065 if (!exmode_active)
1066 msg_scroll = FALSE;
1067 quit_more = FALSE;
1070 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1071 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1072 * update cursor and redraw.
1074 if (skip_redraw || exmode_active)
1075 skip_redraw = FALSE;
1076 else if (do_redraw || stuff_empty())
1078 #ifdef FEAT_AUTOCMD
1079 /* Trigger CursorMoved if the cursor moved. */
1080 if (!finish_op && has_cursormoved()
1081 && !equalpos(last_cursormoved, curwin->w_cursor))
1083 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1084 last_cursormoved = curwin->w_cursor;
1086 #endif
1088 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1089 /* Scroll-binding for diff mode may have been postponed until
1090 * here. Avoids doing it for every change. */
1091 if (diff_need_scrollbind)
1093 check_scrollbind((linenr_T)0, 0L);
1094 diff_need_scrollbind = FALSE;
1096 #endif
1097 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1098 /* Include a closed fold completely in the Visual area. */
1099 foldAdjustVisual();
1100 #endif
1101 #ifdef FEAT_FOLDING
1103 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1104 * contain the cursor.
1105 * When 'foldopen' is "all", open the fold(s) under the cursor.
1106 * This may mark the window for redrawing.
1108 if (hasAnyFolding(curwin) && !char_avail())
1110 foldCheckClose();
1111 if (fdo_flags & FDO_ALL)
1112 foldOpenCursor();
1114 #endif
1117 * Before redrawing, make sure w_topline is correct, and w_leftcol
1118 * if lines don't wrap, and w_skipcol if lines wrap.
1120 update_topline();
1121 validate_cursor();
1123 #ifdef FEAT_VISUAL
1124 if (VIsual_active)
1125 update_curbuf(INVERTED);/* update inverted part */
1126 else
1127 #endif
1128 if (must_redraw)
1129 update_screen(0);
1130 else if (redraw_cmdline || clear_cmdline)
1131 showmode();
1132 #ifdef FEAT_WINDOWS
1133 redraw_statuslines();
1134 #endif
1135 #ifdef FEAT_TITLE
1136 if (need_maketitle)
1137 maketitle();
1138 #endif
1139 /* display message after redraw */
1140 if (keep_msg != NULL)
1142 char_u *p;
1144 /* msg_attr_keep() will set keep_msg to NULL, must free the
1145 * string here. */
1146 p = keep_msg;
1147 keep_msg = NULL;
1148 msg_attr(p, keep_msg_attr);
1149 vim_free(p);
1151 if (need_fileinfo) /* show file info after redraw */
1153 fileinfo(FALSE, TRUE, FALSE);
1154 need_fileinfo = FALSE;
1157 emsg_on_display = FALSE; /* can delete error message now */
1158 did_emsg = FALSE;
1159 msg_didany = FALSE; /* reset lines_left in msg_start() */
1160 may_clear_sb_text(); /* clear scroll-back text on next msg */
1161 showruler(FALSE);
1163 setcursor();
1164 cursor_on();
1166 do_redraw = FALSE;
1168 #ifdef STARTUPTIME
1169 /* Now that we have drawn the first screen all the startup stuff
1170 * has been done, close any file for startup messages. */
1171 if (time_fd != NULL)
1173 TIME_MSG("first screen update");
1174 TIME_MSG("--- VIM STARTED ---");
1175 fclose(time_fd);
1176 time_fd = NULL;
1178 #endif
1180 #ifdef FEAT_GUI
1181 if (need_mouse_correct)
1182 gui_mouse_correct();
1183 #endif
1186 * Update w_curswant if w_set_curswant has been set.
1187 * Postponed until here to avoid computing w_virtcol too often.
1189 update_curswant();
1191 #ifdef FEAT_EVAL
1193 * May perform garbage collection when waiting for a character, but
1194 * only at the very toplevel. Otherwise we may be using a List or
1195 * Dict internally somewhere.
1196 * "may_garbage_collect" is reset in vgetc() which is invoked through
1197 * do_exmode() and normal_cmd().
1199 may_garbage_collect = (!cmdwin && !noexmode);
1200 #endif
1202 * If we're invoked as ex, do a round of ex commands.
1203 * Otherwise, get and execute a normal mode command.
1205 if (exmode_active)
1207 if (noexmode) /* End of ":global/path/visual" commands */
1208 return;
1209 do_exmode(exmode_active == EXMODE_VIM);
1211 else
1212 normal_cmd(&oa, TRUE);
1217 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1219 * Exit, but leave behind swap files for modified buffers.
1221 void
1222 getout_preserve_modified(exitval)
1223 int exitval;
1225 # if defined(SIGHUP) && defined(SIG_IGN)
1226 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1227 * makes Vim exit and then handling SIGHUP causes various reentrance
1228 * problems. */
1229 signal(SIGHUP, SIG_IGN);
1230 # endif
1232 ml_close_notmod(); /* close all not-modified buffers */
1233 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1234 ml_close_all(FALSE); /* close all memfiles, without deleting */
1235 getout(exitval); /* exit Vim properly */
1237 #endif
1240 /* Exit properly */
1241 void
1242 getout(exitval)
1243 int exitval;
1245 #ifdef FEAT_AUTOCMD
1246 buf_T *buf;
1247 win_T *wp;
1248 tabpage_T *tp, *next_tp;
1249 #endif
1251 exiting = TRUE;
1253 /* When running in Ex mode an error causes us to exit with a non-zero exit
1254 * code. POSIX requires this, although it's not 100% clear from the
1255 * standard. */
1256 if (exmode_active)
1257 exitval += ex_exitval;
1259 /* Position the cursor on the last screen line, below all the text */
1260 #ifdef FEAT_GUI
1261 if (!gui.in_use)
1262 #endif
1263 windgoto((int)Rows - 1, 0);
1265 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1266 /* Optionally print hashtable efficiency. */
1267 hash_debug_results();
1268 #endif
1270 #ifdef FEAT_GUI
1271 msg_didany = FALSE;
1272 #endif
1274 #ifdef FEAT_AUTOCMD
1275 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1276 # if defined FEAT_WINDOWS
1277 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1279 next_tp = tp->tp_next;
1280 for (wp = (tp == curtab)
1281 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1283 buf = wp->w_buffer;
1284 if (buf->b_changedtick != -1)
1286 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1287 FALSE, buf);
1288 buf->b_changedtick = -1; /* note that we did it already */
1289 /* start all over, autocommands may mess up the lists */
1290 next_tp = first_tabpage;
1291 break;
1295 # else
1296 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1297 # endif
1299 /* Trigger BufUnload for buffers that are loaded */
1300 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1301 if (buf->b_ml.ml_mfp != NULL)
1303 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1304 FALSE, buf);
1305 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1306 break;
1308 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1309 #endif
1311 #ifdef FEAT_VIMINFO
1312 if (*p_viminfo != NUL)
1313 /* Write out the registers, history, marks etc, to the viminfo file */
1314 write_viminfo(NULL, FALSE);
1315 #endif
1317 #ifdef FEAT_AUTOCMD
1318 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1319 #endif
1321 #ifdef FEAT_PROFILE
1322 profile_dump();
1323 #endif
1325 if (did_emsg
1326 #ifdef FEAT_GUI
1327 || (gui.in_use && msg_didany && p_verbose > 0)
1328 #endif
1331 /* give the user a chance to read the (error) message */
1332 no_wait_return = FALSE;
1333 wait_return(FALSE);
1336 #ifdef FEAT_AUTOCMD
1337 /* Position the cursor again, the autocommands may have moved it */
1338 # ifdef FEAT_GUI
1339 if (!gui.in_use)
1340 # endif
1341 windgoto((int)Rows - 1, 0);
1342 #endif
1344 #ifdef FEAT_MZSCHEME
1345 mzscheme_end();
1346 #endif
1347 #ifdef FEAT_TCL
1348 tcl_end();
1349 #endif
1350 #ifdef FEAT_RUBY
1351 ruby_end();
1352 #endif
1353 #ifdef FEAT_PYTHON
1354 python_end();
1355 #endif
1356 #ifdef FEAT_PERL
1357 perl_end();
1358 #endif
1359 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1360 iconv_end();
1361 #endif
1362 #ifdef FEAT_NETBEANS_INTG
1363 netbeans_end();
1364 #endif
1365 #ifdef FEAT_CSCOPE
1366 cs_end();
1367 #endif
1368 #ifdef FEAT_EVAL
1369 if (garbage_collect_at_exit)
1370 garbage_collect();
1371 #endif
1373 mch_exit(exitval);
1377 * Get a (optional) count for a Vim argument.
1379 static int
1380 get_number_arg(p, idx, def)
1381 char_u *p; /* pointer to argument */
1382 int *idx; /* index in argument, is incremented */
1383 int def; /* default value */
1385 if (vim_isdigit(p[*idx]))
1387 def = atoi((char *)&(p[*idx]));
1388 while (vim_isdigit(p[*idx]))
1389 *idx = *idx + 1;
1391 return def;
1394 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1396 * Setup to use the current locale (for ctype() and many other things).
1398 static void
1399 init_locale()
1401 setlocale(LC_ALL, "");
1403 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1404 /* Make sure strtod() uses a decimal point, not a comma. */
1405 setlocale(LC_NUMERIC, "C");
1406 # endif
1408 # ifdef WIN32
1409 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1410 * text while it's expecting text in the current locale. This call avoids
1411 * that. */
1412 setlocale(LC_CTYPE, "C");
1413 # endif
1415 # ifdef FEAT_GETTEXT
1417 int mustfree = FALSE;
1418 char_u *p;
1420 # ifdef DYNAMIC_GETTEXT
1421 /* Initialize the gettext library */
1422 dyn_libintl_init(NULL);
1423 # endif
1424 /* expand_env() doesn't work yet, because chartab[] is not initialized
1425 * yet, call vim_getenv() directly */
1426 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1427 if (p != NULL && *p != NUL)
1429 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1430 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1432 if (mustfree)
1433 vim_free(p);
1434 textdomain(VIMPACKAGE);
1436 # endif
1438 #endif
1441 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1442 * If the executable name starts with "r" we disable shell commands.
1443 * If the next character is "e" we run in Easy mode.
1444 * If the next character is "g" we run the GUI version.
1445 * If the next characters are "view" we start in readonly mode.
1446 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1447 * If the next characters are "ex" we start in Ex mode. If it's followed
1448 * by "im" use improved Ex mode.
1450 static void
1451 parse_command_name(parmp)
1452 mparm_T *parmp;
1454 char_u *initstr;
1456 initstr = gettail((char_u *)parmp->argv[0]);
1458 #ifdef MACOS_X_UNIX
1459 /* An issue has been seen when launching Vim in such a way that
1460 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1461 * executable or a symbolic link of it. Until this issue is resolved
1462 * we prohibit the GUI from being used.
1464 if (STRCMP(initstr, parmp->argv[0]) == 0)
1465 disallow_gui = TRUE;
1467 /* TODO: On MacOS X default to gui if argv[0] ends in:
1468 * /Vim.app/Contents/MacOS/Vim */
1469 #endif
1471 #ifdef FEAT_EVAL
1472 set_vim_var_string(VV_PROGNAME, initstr, -1);
1473 #endif
1475 if (TOLOWER_ASC(initstr[0]) == 'r')
1477 restricted = TRUE;
1478 ++initstr;
1481 /* Use evim mode for "evim" and "egvim", not for "editor". */
1482 if (TOLOWER_ASC(initstr[0]) == 'e'
1483 && (TOLOWER_ASC(initstr[1]) == 'v'
1484 || TOLOWER_ASC(initstr[1]) == 'g'))
1486 #ifdef FEAT_GUI
1487 gui.starting = TRUE;
1488 #endif
1489 parmp->evim_mode = TRUE;
1490 ++initstr;
1493 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1494 if (TOLOWER_ASC(initstr[0]) == 'g')
1496 main_start_gui();
1497 #ifdef FEAT_GUI
1498 ++initstr;
1499 #endif
1502 if (STRNICMP(initstr, "view", 4) == 0)
1504 readonlymode = TRUE;
1505 curbuf->b_p_ro = TRUE;
1506 p_uc = 10000; /* don't update very often */
1507 initstr += 4;
1509 else if (STRNICMP(initstr, "vim", 3) == 0)
1510 initstr += 3;
1512 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1513 if (STRICMP(initstr, "diff") == 0)
1515 #ifdef FEAT_DIFF
1516 parmp->diff_mode = TRUE;
1517 #else
1518 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1519 mch_errmsg("\n");
1520 mch_exit(2);
1521 #endif
1524 if (STRNICMP(initstr, "ex", 2) == 0)
1526 if (STRNICMP(initstr + 2, "im", 2) == 0)
1527 exmode_active = EXMODE_VIM;
1528 else
1529 exmode_active = EXMODE_NORMAL;
1530 change_compatible(TRUE); /* set 'compatible' */
1535 * Get the name of the display, before gui_prepare() removes it from
1536 * argv[]. Used for the xterm-clipboard display.
1538 * Also find the --server... arguments and --socketid and --windowid
1540 static void
1541 early_arg_scan(parmp)
1542 mparm_T *parmp UNUSED;
1544 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1545 || !defined(FEAT_NETBEANS_INTG)
1546 int argc = parmp->argc;
1547 char **argv = parmp->argv;
1548 int i;
1550 for (i = 1; i < argc; i++)
1552 if (STRCMP(argv[i], "--") == 0)
1553 break;
1554 # ifdef FEAT_XCLIPBOARD
1555 else if (STRICMP(argv[i], "-display") == 0
1556 # if defined(FEAT_GUI_GTK)
1557 || STRICMP(argv[i], "--display") == 0
1558 # endif
1561 if (i == argc - 1)
1562 mainerr_arg_missing((char_u *)argv[i]);
1563 xterm_display = argv[++i];
1565 # endif
1566 # ifdef FEAT_CLIENTSERVER
1567 else if (STRICMP(argv[i], "--servername") == 0)
1569 if (i == argc - 1)
1570 mainerr_arg_missing((char_u *)argv[i]);
1571 parmp->serverName_arg = (char_u *)argv[++i];
1573 else if (STRICMP(argv[i], "--serverlist") == 0)
1574 parmp->serverArg = TRUE;
1575 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1577 parmp->serverArg = TRUE;
1578 # ifdef FEAT_GUI
1579 if (strstr(argv[i], "-wait") != 0)
1580 /* don't fork() when starting the GUI to edit files ourself */
1581 gui.dofork = FALSE;
1582 # endif
1584 # endif
1586 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1587 # ifdef FEAT_GUI_W32
1588 else if (STRICMP(argv[i], "--windowid") == 0)
1589 # else
1590 else if (STRICMP(argv[i], "--socketid") == 0)
1591 # endif
1593 long_u id;
1594 int count;
1596 if (i == argc - 1)
1597 mainerr_arg_missing((char_u *)argv[i]);
1598 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1599 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1600 else
1601 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1602 if (count != 1)
1603 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1604 else
1605 # ifdef FEAT_GUI_W32
1606 win_socket_id = id;
1607 # else
1608 gtk_socket_id = id;
1609 # endif
1610 i++;
1612 # endif
1613 # ifdef FEAT_GUI_GTK
1614 else if (STRICMP(argv[i], "--echo-wid") == 0)
1615 echo_wid_arg = TRUE;
1616 # endif
1617 # ifndef FEAT_NETBEANS_INTG
1618 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
1620 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1621 mch_exit(2);
1623 # endif
1626 #endif
1630 * Scan the command line arguments.
1632 static void
1633 command_line_scan(parmp)
1634 mparm_T *parmp;
1636 int argc = parmp->argc;
1637 char **argv = parmp->argv;
1638 int argv_idx; /* index in argv[n][] */
1639 int had_minmin = FALSE; /* found "--" argument */
1640 int want_argument; /* option argument with argument */
1641 int c;
1642 char_u *p = NULL;
1643 long n;
1645 --argc;
1646 ++argv;
1647 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1648 while (argc > 0)
1651 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1653 if (argv[0][0] == '+' && !had_minmin)
1655 if (parmp->n_commands >= MAX_ARG_CMDS)
1656 mainerr(ME_EXTRA_CMD, NULL);
1657 argv_idx = -1; /* skip to next argument */
1658 if (argv[0][1] == NUL)
1659 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1660 else
1661 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1665 * Optional argument.
1667 else if (argv[0][0] == '-' && !had_minmin)
1669 want_argument = FALSE;
1670 c = argv[0][argv_idx++];
1671 #ifdef VMS
1673 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1674 * and "-/X" as "-X".
1676 if (c == '/')
1678 c = argv[0][argv_idx++];
1679 c = TOUPPER_ASC(c);
1681 else
1682 c = TOLOWER_ASC(c);
1683 #endif
1684 switch (c)
1686 case NUL: /* "vim -" read from stdin */
1687 /* "ex -" silent mode */
1688 if (exmode_active)
1689 silent_mode = TRUE;
1690 else
1692 if (parmp->edit_type != EDIT_NONE)
1693 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1694 parmp->edit_type = EDIT_STDIN;
1695 read_cmd_fd = 2; /* read from stderr instead of stdin */
1697 argv_idx = -1; /* skip to next argument */
1698 break;
1700 case '-': /* "--" don't take any more option arguments */
1701 /* "--help" give help message */
1702 /* "--version" give version message */
1703 /* "--literal" take files literally */
1704 /* "--nofork" don't fork */
1705 /* "--noplugin[s]" skip plugins */
1706 /* "--cmd <cmd>" execute cmd before vimrc */
1707 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1708 usage();
1709 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1711 Columns = 80; /* need to init Columns */
1712 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1713 list_version();
1714 msg_putchar('\n');
1715 msg_didout = FALSE;
1716 mch_exit(0);
1718 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1720 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1721 parmp->literal = TRUE;
1722 #endif
1724 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1726 #ifdef FEAT_GUI
1727 gui.dofork = FALSE; /* don't fork() when starting GUI */
1728 #endif
1730 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1731 p_lpl = FALSE;
1732 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1734 want_argument = TRUE;
1735 argv_idx += 3;
1737 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0)
1739 want_argument = TRUE;
1740 argv_idx += 11;
1742 #ifdef FEAT_CLIENTSERVER
1743 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1744 ; /* already processed -- no arg */
1745 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1746 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1748 /* already processed -- snatch the following arg */
1749 if (argc > 1)
1751 --argc;
1752 ++argv;
1755 #endif
1756 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1757 # ifdef FEAT_GUI_GTK
1758 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1759 # else
1760 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1761 # endif
1763 /* already processed -- snatch the following arg */
1764 if (argc > 1)
1766 --argc;
1767 ++argv;
1770 #endif
1771 #ifdef FEAT_GUI_GTK
1772 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1774 /* already processed, skip */
1776 #endif
1777 else
1779 if (argv[0][argv_idx])
1780 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1781 had_minmin = TRUE;
1783 if (!want_argument)
1784 argv_idx = -1; /* skip to next argument */
1785 break;
1787 case 'A': /* "-A" start in Arabic mode */
1788 #ifdef FEAT_ARABIC
1789 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1790 #else
1791 mch_errmsg(_(e_noarabic));
1792 mch_exit(2);
1793 #endif
1794 break;
1796 case 'b': /* "-b" binary mode */
1797 /* Needs to be effective before expanding file names, because
1798 * for Win32 this makes us edit a shortcut file itself,
1799 * instead of the file it links to. */
1800 set_options_bin(curbuf->b_p_bin, 1, 0);
1801 curbuf->b_p_bin = 1; /* binary file I/O */
1802 break;
1804 case 'C': /* "-C" Compatible */
1805 change_compatible(TRUE);
1806 break;
1808 case 'e': /* "-e" Ex mode */
1809 exmode_active = EXMODE_NORMAL;
1810 break;
1812 case 'E': /* "-E" Improved Ex mode */
1813 exmode_active = EXMODE_VIM;
1814 break;
1816 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1817 window directly, not with newcli */
1818 #ifdef FEAT_GUI
1819 gui.dofork = FALSE; /* don't fork() when starting GUI */
1820 #endif
1821 break;
1823 case 'g': /* "-g" start GUI */
1824 main_start_gui();
1825 break;
1827 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1828 #ifdef FEAT_FKMAP
1829 p_fkmap = TRUE;
1830 set_option_value((char_u *)"rl", 1L, NULL, 0);
1831 #else
1832 mch_errmsg(_(e_nofarsi));
1833 mch_exit(2);
1834 #endif
1835 break;
1837 case 'h': /* "-h" give help message */
1838 #ifdef FEAT_GUI_GNOME
1839 /* Tell usage() to exit for "gvim". */
1840 gui.starting = FALSE;
1841 #endif
1842 usage();
1843 break;
1845 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1846 #ifdef FEAT_RIGHTLEFT
1847 p_hkmap = TRUE;
1848 set_option_value((char_u *)"rl", 1L, NULL, 0);
1849 #else
1850 mch_errmsg(_(e_nohebrew));
1851 mch_exit(2);
1852 #endif
1853 break;
1855 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1856 #ifdef FEAT_LISP
1857 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1858 p_sm = TRUE;
1859 #endif
1860 break;
1862 case 'M': /* "-M" no changes or writing of files */
1863 reset_modifiable();
1864 /* FALLTHROUGH */
1866 case 'm': /* "-m" no writing of files */
1867 p_write = FALSE;
1868 break;
1870 case 'y': /* "-y" easy mode */
1871 #ifdef FEAT_GUI
1872 gui.starting = TRUE; /* start GUI a bit later */
1873 #endif
1874 parmp->evim_mode = TRUE;
1875 break;
1877 case 'N': /* "-N" Nocompatible */
1878 change_compatible(FALSE);
1879 break;
1881 case 'n': /* "-n" no swap file */
1882 parmp->no_swap_file = TRUE;
1883 break;
1885 case 'p': /* "-p[N]" open N tab pages */
1886 #ifdef TARGET_API_MAC_OSX
1887 /* For some reason on MacOS X, an argument like:
1888 -psn_0_10223617 is passed in when invoke from Finder
1889 or with the 'open' command */
1890 if (argv[0][argv_idx] == 's')
1892 argv_idx = -1; /* bypass full -psn */
1893 main_start_gui();
1894 break;
1896 #endif
1897 #ifdef FEAT_WINDOWS
1898 /* default is 0: open window for each file */
1899 parmp->window_count = get_number_arg((char_u *)argv[0],
1900 &argv_idx, 0);
1901 parmp->window_layout = WIN_TABS;
1902 #endif
1903 break;
1905 case 'o': /* "-o[N]" open N horizontal split windows */
1906 #ifdef FEAT_WINDOWS
1907 /* default is 0: open window for each file */
1908 parmp->window_count = get_number_arg((char_u *)argv[0],
1909 &argv_idx, 0);
1910 parmp->window_layout = WIN_HOR;
1911 #endif
1912 break;
1914 case 'O': /* "-O[N]" open N vertical split windows */
1915 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1916 /* default is 0: open window for each file */
1917 parmp->window_count = get_number_arg((char_u *)argv[0],
1918 &argv_idx, 0);
1919 parmp->window_layout = WIN_VER;
1920 #endif
1921 break;
1923 #ifdef FEAT_QUICKFIX
1924 case 'q': /* "-q" QuickFix mode */
1925 if (parmp->edit_type != EDIT_NONE)
1926 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1927 parmp->edit_type = EDIT_QF;
1928 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1930 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1931 argv_idx = -1;
1933 else if (argc > 1) /* "-q {errorfile}" */
1934 want_argument = TRUE;
1935 break;
1936 #endif
1938 case 'R': /* "-R" readonly mode */
1939 readonlymode = TRUE;
1940 curbuf->b_p_ro = TRUE;
1941 p_uc = 10000; /* don't update very often */
1942 break;
1944 case 'r': /* "-r" recovery mode */
1945 case 'L': /* "-L" recovery mode */
1946 recoverymode = 1;
1947 break;
1949 case 's':
1950 if (exmode_active) /* "-s" silent (batch) mode */
1951 silent_mode = TRUE;
1952 else /* "-s {scriptin}" read from script file */
1953 want_argument = TRUE;
1954 break;
1956 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1957 if (parmp->edit_type != EDIT_NONE)
1958 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1959 parmp->edit_type = EDIT_TAG;
1960 if (argv[0][argv_idx]) /* "-t{tag}" */
1962 parmp->tagname = (char_u *)argv[0] + argv_idx;
1963 argv_idx = -1;
1965 else /* "-t {tag}" */
1966 want_argument = TRUE;
1967 break;
1969 #ifdef FEAT_EVAL
1970 case 'D': /* "-D" Debugging */
1971 parmp->use_debug_break_level = 9999;
1972 break;
1973 #endif
1974 #ifdef FEAT_DIFF
1975 case 'd': /* "-d" 'diff' */
1976 # ifdef AMIGA
1977 /* check for "-dev {device}" */
1978 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1979 want_argument = TRUE;
1980 else
1981 # endif
1982 parmp->diff_mode = TRUE;
1983 break;
1984 #endif
1985 case 'V': /* "-V{N}" Verbose level */
1986 /* default is 10: a little bit verbose */
1987 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1988 if (argv[0][argv_idx] != NUL)
1990 set_option_value((char_u *)"verbosefile", 0L,
1991 (char_u *)argv[0] + argv_idx, 0);
1992 argv_idx = (int)STRLEN(argv[0]);
1994 break;
1996 case 'v': /* "-v" Vi-mode (as if called "vi") */
1997 exmode_active = 0;
1998 #ifdef FEAT_GUI
1999 gui.starting = FALSE; /* don't start GUI */
2000 #endif
2001 break;
2003 case 'w': /* "-w{number}" set window height */
2004 /* "-w {scriptout}" write to script */
2005 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2007 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2008 set_option_value((char_u *)"window", n, NULL, 0);
2009 break;
2011 want_argument = TRUE;
2012 break;
2014 #ifdef FEAT_CRYPT
2015 case 'x': /* "-x" encrypted reading/writing of files */
2016 parmp->ask_for_key = TRUE;
2017 break;
2018 #endif
2020 case 'X': /* "-X" don't connect to X server */
2021 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2022 x_no_connect = TRUE;
2023 #endif
2024 break;
2026 case 'Z': /* "-Z" restricted mode */
2027 restricted = TRUE;
2028 break;
2030 case 'c': /* "-c{command}" or "-c {command}" execute
2031 command */
2032 if (argv[0][argv_idx] != NUL)
2034 if (parmp->n_commands >= MAX_ARG_CMDS)
2035 mainerr(ME_EXTRA_CMD, NULL);
2036 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2037 + argv_idx;
2038 argv_idx = -1;
2039 break;
2041 /*FALLTHROUGH*/
2042 case 'S': /* "-S {file}" execute Vim script */
2043 case 'i': /* "-i {viminfo}" use for viminfo */
2044 #ifndef FEAT_DIFF
2045 case 'd': /* "-d {device}" device (for Amiga) */
2046 #endif
2047 case 'T': /* "-T {terminal}" terminal name */
2048 case 'u': /* "-u {vimrc}" vim inits file */
2049 case 'U': /* "-U {gvimrc}" gvim inits file */
2050 case 'W': /* "-W {scriptout}" overwrite */
2051 #ifdef FEAT_GUI_W32
2052 case 'P': /* "-P {parent title}" MDI parent */
2053 #endif
2054 want_argument = TRUE;
2055 break;
2057 default:
2058 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2062 * Handle option arguments with argument.
2064 if (want_argument)
2067 * Check for garbage immediately after the option letter.
2069 if (argv[0][argv_idx] != NUL)
2070 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2072 --argc;
2073 if (argc < 1 && c != 'S') /* -S has an optional argument */
2074 mainerr_arg_missing((char_u *)argv[0]);
2075 ++argv;
2076 argv_idx = -1;
2078 switch (c)
2080 case 'c': /* "-c {command}" execute command */
2081 case 'S': /* "-S {file}" execute Vim script */
2082 if (parmp->n_commands >= MAX_ARG_CMDS)
2083 mainerr(ME_EXTRA_CMD, NULL);
2084 if (c == 'S')
2086 char *a;
2088 if (argc < 1)
2089 /* "-S" without argument: use default session file
2090 * name. */
2091 a = SESSION_FILE;
2092 else if (argv[0][0] == '-')
2094 /* "-S" followed by another option: use default
2095 * session file name. */
2096 a = SESSION_FILE;
2097 ++argc;
2098 --argv;
2100 else
2101 a = argv[0];
2102 p = alloc((unsigned)(STRLEN(a) + 4));
2103 if (p == NULL)
2104 mch_exit(2);
2105 sprintf((char *)p, "so %s", a);
2106 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2107 parmp->commands[parmp->n_commands++] = p;
2109 else
2110 parmp->commands[parmp->n_commands++] =
2111 (char_u *)argv[0];
2112 break;
2114 case '-':
2115 if (argv[-1][2] == 'c')
2117 /* "--cmd {command}" execute command */
2118 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2119 mainerr(ME_EXTRA_CMD, NULL);
2120 parmp->pre_commands[parmp->n_pre_commands++] =
2121 (char_u *)argv[0];
2123 /* "--startuptime <file>" already handled */
2124 break;
2126 /* case 'd': -d {device} is handled in mch_check_win() for the
2127 * Amiga */
2129 #ifdef FEAT_QUICKFIX
2130 case 'q': /* "-q {errorfile}" QuickFix mode */
2131 parmp->use_ef = (char_u *)argv[0];
2132 break;
2133 #endif
2135 case 'i': /* "-i {viminfo}" use for viminfo */
2136 use_viminfo = (char_u *)argv[0];
2137 break;
2139 case 's': /* "-s {scriptin}" read from script file */
2140 if (scriptin[0] != NULL)
2142 scripterror:
2143 mch_errmsg(_("Attempt to open script file again: \""));
2144 mch_errmsg(argv[-1]);
2145 mch_errmsg(" ");
2146 mch_errmsg(argv[0]);
2147 mch_errmsg("\"\n");
2148 mch_exit(2);
2150 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2152 mch_errmsg(_("Cannot open for reading: \""));
2153 mch_errmsg(argv[0]);
2154 mch_errmsg("\"\n");
2155 mch_exit(2);
2157 if (save_typebuf() == FAIL)
2158 mch_exit(2); /* out of memory */
2159 break;
2161 case 't': /* "-t {tag}" */
2162 parmp->tagname = (char_u *)argv[0];
2163 break;
2165 case 'T': /* "-T {terminal}" terminal name */
2167 * The -T term argument is always available and when
2168 * HAVE_TERMLIB is supported it overrides the environment
2169 * variable TERM.
2171 #ifdef FEAT_GUI
2172 if (term_is_gui((char_u *)argv[0]))
2173 gui.starting = TRUE; /* start GUI a bit later */
2174 else
2175 #endif
2176 parmp->term = (char_u *)argv[0];
2177 break;
2179 case 'u': /* "-u {vimrc}" vim inits file */
2180 parmp->use_vimrc = (char_u *)argv[0];
2181 break;
2183 case 'U': /* "-U {gvimrc}" gvim inits file */
2184 #ifdef FEAT_GUI
2185 use_gvimrc = (char_u *)argv[0];
2186 #endif
2187 break;
2189 case 'w': /* "-w {nr}" 'window' value */
2190 /* "-w {scriptout}" append to script file */
2191 if (vim_isdigit(*((char_u *)argv[0])))
2193 argv_idx = 0;
2194 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2195 set_option_value((char_u *)"window", n, NULL, 0);
2196 argv_idx = -1;
2197 break;
2199 /*FALLTHROUGH*/
2200 case 'W': /* "-W {scriptout}" overwrite script file */
2201 if (scriptout != NULL)
2202 goto scripterror;
2203 if ((scriptout = mch_fopen(argv[0],
2204 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2206 mch_errmsg(_("Cannot open for script output: \""));
2207 mch_errmsg(argv[0]);
2208 mch_errmsg("\"\n");
2209 mch_exit(2);
2211 break;
2213 #ifdef FEAT_GUI_W32
2214 case 'P': /* "-P {parent title}" MDI parent */
2215 gui_mch_set_parent(argv[0]);
2216 break;
2217 #endif
2223 * File name argument.
2225 else
2227 argv_idx = -1; /* skip to next argument */
2229 /* Check for only one type of editing. */
2230 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2231 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2232 parmp->edit_type = EDIT_FILE;
2234 #ifdef MSWIN
2235 /* Remember if the argument was a full path before changing
2236 * slashes to backslashes. */
2237 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2238 parmp->full_path = TRUE;
2239 #endif
2241 /* Add the file to the global argument list. */
2242 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2243 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2244 mch_exit(2);
2245 #ifdef FEAT_DIFF
2246 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2247 && !mch_isdir(alist_name(&GARGLIST[0])))
2249 char_u *r;
2251 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2252 if (r != NULL)
2254 vim_free(p);
2255 p = r;
2258 #endif
2259 #if defined(__CYGWIN32__) && !defined(WIN32)
2261 * If vim is invoked by non-Cygwin tools, convert away any
2262 * DOS paths, so things like .swp files are created correctly.
2263 * Look for evidence of non-Cygwin paths before we bother.
2264 * This is only for when using the Unix files.
2266 if (strpbrk(p, "\\:") != NULL && !path_with_url(p))
2268 char posix_path[PATH_MAX];
2270 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2271 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2272 # else
2273 cygwin_conv_to_posix_path(p, posix_path);
2274 # endif
2275 vim_free(p);
2276 p = vim_strsave(posix_path);
2277 if (p == NULL)
2278 mch_exit(2);
2280 #endif
2282 #ifdef USE_FNAME_CASE
2283 /* Make the case of the file name match the actual file. */
2284 fname_case(p, 0);
2285 #endif
2287 alist_add(&global_alist, p,
2288 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2289 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2290 #else
2291 2 /* add buffer number now and use curbuf */
2292 #endif
2295 #if defined(FEAT_MBYTE) && defined(WIN32)
2297 /* Remember this argument has been added to the argument list.
2298 * Needed when 'encoding' is changed. */
2299 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2300 # ifdef FEAT_DIFF
2301 parmp->diff_mode
2302 # else
2303 FALSE
2304 # endif
2307 #endif
2311 * If there are no more letters after the current "-", go to next
2312 * argument. argv_idx is set to -1 when the current argument is to be
2313 * skipped.
2315 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2317 --argc;
2318 ++argv;
2319 argv_idx = 1;
2323 #ifdef FEAT_EVAL
2324 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2325 * one. */
2326 if (parmp->n_commands > 0)
2328 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2329 if (p != NULL)
2331 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2332 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2333 vim_free(p);
2336 #endif
2340 * Print a warning if stdout is not a terminal.
2341 * When starting in Ex mode and commands come from a file, set Silent mode.
2343 static void
2344 check_tty(parmp)
2345 mparm_T *parmp;
2347 int input_isatty; /* is active input a terminal? */
2349 input_isatty = mch_input_isatty();
2350 if (exmode_active)
2352 if (!input_isatty)
2353 silent_mode = TRUE;
2355 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2356 #ifdef FEAT_GUI
2357 /* don't want the delay when started from the desktop */
2358 && !gui.starting
2359 #endif
2362 #ifdef NBDEBUG
2364 * This shouldn't be necessary. But if I run netbeans with the log
2365 * output coming to the console and XOpenDisplay fails, I get vim
2366 * trying to start with input/output to my console tty. This fills my
2367 * input buffer so fast I can't even kill the process in under 2
2368 * minutes (and it beeps continuously the whole time :-)
2370 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2372 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2373 exit(1);
2375 #endif
2376 if (!parmp->stdout_isatty)
2377 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2378 if (!input_isatty)
2379 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2380 out_flush();
2381 if (scriptin[0] == NULL)
2382 ui_delay(2000L, TRUE);
2383 TIME_MSG("Warning delay");
2388 * Read text from stdin.
2390 static void
2391 read_stdin()
2393 int i;
2395 #if defined(HAS_SWAP_EXISTS_ACTION)
2396 /* When getting the ATTENTION prompt here, use a dialog */
2397 swap_exists_action = SEA_DIALOG;
2398 #endif
2399 no_wait_return = TRUE;
2400 i = msg_didany;
2401 set_buflisted(TRUE);
2402 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2403 no_wait_return = FALSE;
2404 msg_didany = i;
2405 TIME_MSG("reading stdin");
2406 #if defined(HAS_SWAP_EXISTS_ACTION)
2407 check_swap_exists_action();
2408 #endif
2409 #if !(defined(AMIGA) || defined(MACOS))
2411 * Close stdin and dup it from stderr. Required for GPM to work
2412 * properly, and for running external commands.
2413 * Is there any other system that cannot do this?
2415 close(0);
2416 ignored = dup(2);
2417 #endif
2421 * Create the requested number of windows and edit buffers in them.
2422 * Also does recovery if "recoverymode" set.
2424 static void
2425 create_windows(parmp)
2426 mparm_T *parmp UNUSED;
2428 #ifdef FEAT_WINDOWS
2429 int dorewind;
2430 int done = 0;
2433 * Create the number of windows that was requested.
2435 if (parmp->window_count == -1) /* was not set */
2436 parmp->window_count = 1;
2437 if (parmp->window_count == 0)
2438 parmp->window_count = GARGCOUNT;
2439 if (parmp->window_count > 1)
2441 /* Don't change the windows if there was a command in .vimrc that
2442 * already split some windows */
2443 if (parmp->window_layout == 0)
2444 parmp->window_layout = WIN_HOR;
2445 if (parmp->window_layout == WIN_TABS)
2447 parmp->window_count = make_tabpages(parmp->window_count);
2448 TIME_MSG("making tab pages");
2450 else if (firstwin->w_next == NULL)
2452 parmp->window_count = make_windows(parmp->window_count,
2453 parmp->window_layout == WIN_VER);
2454 TIME_MSG("making windows");
2456 else
2457 parmp->window_count = win_count();
2459 else
2460 parmp->window_count = 1;
2461 #endif
2463 if (recoverymode) /* do recover */
2465 msg_scroll = TRUE; /* scroll message up */
2466 ml_recover();
2467 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2468 getout(1);
2469 do_modelines(0); /* do modelines */
2471 else
2474 * Open a buffer for windows that don't have one yet.
2475 * Commands in the .vimrc might have loaded a file or split the window.
2476 * Watch out for autocommands that delete a window.
2478 #ifdef FEAT_AUTOCMD
2480 * Don't execute Win/Buf Enter/Leave autocommands here
2482 ++autocmd_no_enter;
2483 ++autocmd_no_leave;
2484 #endif
2485 #ifdef FEAT_WINDOWS
2486 dorewind = TRUE;
2487 while (done++ < 1000)
2489 if (dorewind)
2491 if (parmp->window_layout == WIN_TABS)
2492 goto_tabpage(1);
2493 else
2494 curwin = firstwin;
2496 else if (parmp->window_layout == WIN_TABS)
2498 if (curtab->tp_next == NULL)
2499 break;
2500 goto_tabpage(0);
2502 else
2504 if (curwin->w_next == NULL)
2505 break;
2506 curwin = curwin->w_next;
2508 dorewind = FALSE;
2509 #endif
2510 curbuf = curwin->w_buffer;
2511 if (curbuf->b_ml.ml_mfp == NULL)
2513 #ifdef FEAT_FOLDING
2514 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2515 if (p_fdls >= 0)
2516 curwin->w_p_fdl = p_fdls;
2517 #endif
2518 #if defined(HAS_SWAP_EXISTS_ACTION)
2519 /* When getting the ATTENTION prompt here, use a dialog */
2520 swap_exists_action = SEA_DIALOG;
2521 #endif
2522 set_buflisted(TRUE);
2523 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2525 #if defined(HAS_SWAP_EXISTS_ACTION)
2526 if (swap_exists_action == SEA_QUIT)
2528 if (got_int || only_one_window())
2530 /* abort selected or quit and only one window */
2531 did_emsg = FALSE; /* avoid hit-enter prompt */
2532 getout(1);
2534 /* We can't close the window, it would disturb what
2535 * happens next. Clear the file name and set the arg
2536 * index to -1 to delete it later. */
2537 setfname(curbuf, NULL, NULL, FALSE);
2538 curwin->w_arg_idx = -1;
2539 swap_exists_action = SEA_NONE;
2541 else
2542 handle_swap_exists(NULL);
2543 #endif
2544 #ifdef FEAT_AUTOCMD
2545 dorewind = TRUE; /* start again */
2546 #endif
2548 #ifdef FEAT_WINDOWS
2549 ui_breakcheck();
2550 if (got_int)
2552 (void)vgetc(); /* only break the file loading, not the rest */
2553 break;
2556 #endif
2557 #ifdef FEAT_WINDOWS
2558 if (parmp->window_layout == WIN_TABS)
2559 goto_tabpage(1);
2560 else
2561 curwin = firstwin;
2562 curbuf = curwin->w_buffer;
2563 #endif
2564 #ifdef FEAT_AUTOCMD
2565 --autocmd_no_enter;
2566 --autocmd_no_leave;
2567 #endif
2571 #ifdef FEAT_WINDOWS
2573 * If opened more than one window, start editing files in the other
2574 * windows. make_windows() has already opened the windows.
2576 static void
2577 edit_buffers(parmp)
2578 mparm_T *parmp;
2580 int arg_idx; /* index in argument list */
2581 int i;
2582 int advance = TRUE;
2584 # ifdef FEAT_AUTOCMD
2586 * Don't execute Win/Buf Enter/Leave autocommands here
2588 ++autocmd_no_enter;
2589 ++autocmd_no_leave;
2590 # endif
2592 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2593 if (curwin->w_arg_idx == -1)
2595 win_close(curwin, TRUE);
2596 advance = FALSE;
2599 arg_idx = 1;
2600 for (i = 1; i < parmp->window_count; ++i)
2602 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2603 if (curwin->w_arg_idx == -1)
2605 ++arg_idx;
2606 win_close(curwin, TRUE);
2607 advance = FALSE;
2608 continue;
2611 if (advance)
2613 if (parmp->window_layout == WIN_TABS)
2615 if (curtab->tp_next == NULL) /* just checking */
2616 break;
2617 goto_tabpage(0);
2619 else
2621 if (curwin->w_next == NULL) /* just checking */
2622 break;
2623 win_enter(curwin->w_next, FALSE);
2626 advance = TRUE;
2628 /* Only open the file if there is no file in this window yet (that can
2629 * happen when .vimrc contains ":sall"). */
2630 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2632 curwin->w_arg_idx = arg_idx;
2633 /* Edit file from arg list, if there is one. When "Quit" selected
2634 * at the ATTENTION prompt close the window. */
2635 # ifdef HAS_SWAP_EXISTS_ACTION
2636 swap_exists_did_quit = FALSE;
2637 # endif
2638 (void)do_ecmd(0, arg_idx < GARGCOUNT
2639 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2640 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
2641 # ifdef HAS_SWAP_EXISTS_ACTION
2642 if (swap_exists_did_quit)
2644 /* abort or quit selected */
2645 if (got_int || only_one_window())
2647 /* abort selected and only one window */
2648 did_emsg = FALSE; /* avoid hit-enter prompt */
2649 getout(1);
2651 win_close(curwin, TRUE);
2652 advance = FALSE;
2654 # endif
2655 if (arg_idx == GARGCOUNT - 1)
2656 arg_had_last = TRUE;
2657 ++arg_idx;
2659 ui_breakcheck();
2660 if (got_int)
2662 (void)vgetc(); /* only break the file loading, not the rest */
2663 break;
2667 if (parmp->window_layout == WIN_TABS)
2668 goto_tabpage(1);
2669 # ifdef FEAT_AUTOCMD
2670 --autocmd_no_enter;
2671 # endif
2672 win_enter(firstwin, FALSE); /* back to first window */
2673 # ifdef FEAT_AUTOCMD
2674 --autocmd_no_leave;
2675 # endif
2676 TIME_MSG("editing files in windows");
2677 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2678 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2680 #endif /* FEAT_WINDOWS */
2683 * Execute the commands from --cmd arguments "cmds[cnt]".
2685 static void
2686 exe_pre_commands(parmp)
2687 mparm_T *parmp;
2689 char_u **cmds = parmp->pre_commands;
2690 int cnt = parmp->n_pre_commands;
2691 int i;
2693 if (cnt > 0)
2695 curwin->w_cursor.lnum = 0; /* just in case.. */
2696 sourcing_name = (char_u *)_("pre-vimrc command line");
2697 # ifdef FEAT_EVAL
2698 current_SID = SID_CMDARG;
2699 # endif
2700 for (i = 0; i < cnt; ++i)
2701 do_cmdline_cmd(cmds[i]);
2702 sourcing_name = NULL;
2703 # ifdef FEAT_EVAL
2704 current_SID = 0;
2705 # endif
2706 TIME_MSG("--cmd commands");
2711 * Execute "+", "-c" and "-S" arguments.
2713 static void
2714 exe_commands(parmp)
2715 mparm_T *parmp;
2717 int i;
2720 * We start commands on line 0, make "vim +/pat file" match a
2721 * pattern on line 1. But don't move the cursor when an autocommand
2722 * with g`" was used.
2724 msg_scroll = TRUE;
2725 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2726 curwin->w_cursor.lnum = 0;
2727 sourcing_name = (char_u *)"command line";
2728 #ifdef FEAT_EVAL
2729 current_SID = SID_CARG;
2730 #endif
2731 for (i = 0; i < parmp->n_commands; ++i)
2733 do_cmdline_cmd(parmp->commands[i]);
2734 if (parmp->cmds_tofree[i])
2735 vim_free(parmp->commands[i]);
2737 sourcing_name = NULL;
2738 #ifdef FEAT_EVAL
2739 current_SID = 0;
2740 #endif
2741 if (curwin->w_cursor.lnum == 0)
2742 curwin->w_cursor.lnum = 1;
2744 if (!exmode_active)
2745 msg_scroll = FALSE;
2747 #ifdef FEAT_QUICKFIX
2748 /* When started with "-q errorfile" jump to first error again. */
2749 if (parmp->edit_type == EDIT_QF)
2750 qf_jump(NULL, 0, 0, FALSE);
2751 #endif
2752 TIME_MSG("executing command arguments");
2756 * Source startup scripts.
2758 static void
2759 source_startup_scripts(parmp)
2760 mparm_T *parmp;
2762 int i;
2765 * For "evim" source evim.vim first of all, so that the user can overrule
2766 * any things he doesn't like.
2768 if (parmp->evim_mode)
2770 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2771 TIME_MSG("source evim file");
2775 * If -u argument given, use only the initializations from that file and
2776 * nothing else.
2778 if (parmp->use_vimrc != NULL)
2780 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2781 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2783 #ifdef FEAT_GUI
2784 if (use_gvimrc == NULL) /* don't load gvimrc either */
2785 use_gvimrc = parmp->use_vimrc;
2786 #endif
2787 if (parmp->use_vimrc[2] == 'N')
2788 p_lpl = FALSE; /* don't load plugins either */
2790 else
2792 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2793 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2796 else if (!silent_mode)
2798 #ifdef AMIGA
2799 struct Process *proc = (struct Process *)FindTask(0L);
2800 APTR save_winptr = proc->pr_WindowPtr;
2802 /* Avoid a requester here for a volume that doesn't exist. */
2803 proc->pr_WindowPtr = (APTR)-1L;
2804 #endif
2807 * Get system wide defaults, if the file name is defined.
2809 #ifdef SYS_VIMRC_FILE
2810 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2811 #endif
2812 #ifdef MACOS_X
2813 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2814 #endif
2817 * Try to read initialization commands from the following places:
2818 * - environment variable VIMINIT
2819 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2820 * - second user vimrc file ($VIM/.vimrc for Dos)
2821 * - environment variable EXINIT
2822 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2823 * - second user exrc file ($VIM/.exrc for Dos)
2824 * The first that exists is used, the rest is ignored.
2826 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2828 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2829 #ifdef USR_VIMRC_FILE2
2830 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2831 DOSO_VIMRC) == FAIL
2832 #endif
2833 #ifdef USR_VIMRC_FILE3
2834 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2835 DOSO_VIMRC) == FAIL
2836 #endif
2837 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2838 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2840 #ifdef USR_EXRC_FILE2
2841 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2842 #endif
2847 * Read initialization commands from ".vimrc" or ".exrc" in current
2848 * directory. This is only done if the 'exrc' option is set.
2849 * Because of security reasons we disallow shell and write commands
2850 * now, except for unix if the file is owned by the user or 'secure'
2851 * option has been reset in environment of global ".exrc" or ".vimrc".
2852 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2853 * SYS_VIMRC_FILE.
2855 if (p_exrc)
2857 #if defined(UNIX) || defined(VMS)
2858 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2859 if (!file_owned(VIMRC_FILE))
2860 #endif
2861 secure = p_secure;
2863 i = FAIL;
2864 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2865 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2866 #ifdef USR_VIMRC_FILE2
2867 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2868 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2869 #endif
2870 #ifdef USR_VIMRC_FILE3
2871 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2872 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2873 #endif
2874 #ifdef SYS_VIMRC_FILE
2875 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2876 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2877 #endif
2879 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2881 if (i == FAIL)
2883 #if defined(UNIX) || defined(VMS)
2884 /* if ".exrc" is not owned by user set 'secure' mode */
2885 if (!file_owned(EXRC_FILE))
2886 secure = p_secure;
2887 else
2888 secure = 0;
2889 #endif
2890 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2891 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2892 #ifdef USR_EXRC_FILE2
2893 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2894 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2895 #endif
2897 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2900 if (secure == 2)
2901 need_wait_return = TRUE;
2902 secure = 0;
2903 #ifdef AMIGA
2904 proc->pr_WindowPtr = save_winptr;
2905 #endif
2907 TIME_MSG("sourcing vimrc file(s)");
2911 * Setup to start using the GUI. Exit with an error when not available.
2913 static void
2914 main_start_gui()
2916 #ifdef FEAT_GUI
2917 gui.starting = TRUE; /* start GUI a bit later */
2918 #else
2919 mch_errmsg(_(e_nogvim));
2920 mch_errmsg("\n");
2921 mch_exit(2);
2922 #endif
2926 * Get an environment variable, and execute it as Ex commands.
2927 * Returns FAIL if the environment variable was not executed, OK otherwise.
2930 process_env(env, is_viminit)
2931 char_u *env;
2932 int is_viminit; /* when TRUE, called for VIMINIT */
2934 char_u *initstr;
2935 char_u *save_sourcing_name;
2936 linenr_T save_sourcing_lnum;
2937 #ifdef FEAT_EVAL
2938 scid_T save_sid;
2939 #endif
2941 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2943 if (is_viminit)
2944 vimrc_found(NULL, NULL);
2945 save_sourcing_name = sourcing_name;
2946 save_sourcing_lnum = sourcing_lnum;
2947 sourcing_name = env;
2948 sourcing_lnum = 0;
2949 #ifdef FEAT_EVAL
2950 save_sid = current_SID;
2951 current_SID = SID_ENV;
2952 #endif
2953 do_cmdline_cmd(initstr);
2954 sourcing_name = save_sourcing_name;
2955 sourcing_lnum = save_sourcing_lnum;
2956 #ifdef FEAT_EVAL
2957 current_SID = save_sid;;
2958 #endif
2959 return OK;
2961 return FAIL;
2964 #if defined(UNIX) || defined(VMS)
2966 * Return TRUE if we are certain the user owns the file "fname".
2967 * Used for ".vimrc" and ".exrc".
2968 * Use both stat() and lstat() for extra security.
2970 static int
2971 file_owned(fname)
2972 char *fname;
2974 struct stat s;
2975 # ifdef UNIX
2976 uid_t uid = getuid();
2977 # else /* VMS */
2978 uid_t uid = ((getgid() << 16) | getuid());
2979 # endif
2981 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2982 # ifdef HAVE_LSTAT
2983 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2984 # endif
2987 #endif
2990 * Give an error message main_errors["n"] and exit.
2992 static void
2993 mainerr(n, str)
2994 int n; /* one of the ME_ defines */
2995 char_u *str; /* extra argument or NULL */
2997 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2998 reset_signals(); /* kill us with CTRL-C here, if you like */
2999 #endif
3001 mch_errmsg(longVersion);
3002 mch_errmsg("\n");
3003 mch_errmsg(_(main_errors[n]));
3004 if (str != NULL)
3006 mch_errmsg(": \"");
3007 mch_errmsg((char *)str);
3008 mch_errmsg("\"");
3010 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
3012 mch_exit(1);
3015 void
3016 mainerr_arg_missing(str)
3017 char_u *str;
3019 mainerr(ME_ARG_MISSING, str);
3023 * print a message with three spaces prepended and '\n' appended.
3025 static void
3026 main_msg(s)
3027 char *s;
3029 mch_msg(" ");
3030 mch_msg(s);
3031 mch_msg("\n");
3035 * Print messages for "vim -h" or "vim --help" and exit.
3037 static void
3038 usage()
3040 int i;
3041 static char *(use[]) =
3043 N_("[file ..] edit specified file(s)"),
3044 N_("- read text from stdin"),
3045 N_("-t tag edit file where tag is defined"),
3046 #ifdef FEAT_QUICKFIX
3047 N_("-q [errorfile] edit file with first error")
3048 #endif
3051 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3052 reset_signals(); /* kill us with CTRL-C here, if you like */
3053 #endif
3055 mch_msg(longVersion);
3056 mch_msg(_("\n\nusage:"));
3057 for (i = 0; ; ++i)
3059 mch_msg(_(" vim [arguments] "));
3060 mch_msg(_(use[i]));
3061 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3062 break;
3063 mch_msg(_("\n or:"));
3065 #ifdef VMS
3066 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3067 #endif
3069 mch_msg(_("\n\nArguments:\n"));
3070 main_msg(_("--\t\t\tOnly file names after this"));
3071 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3072 main_msg(_("--literal\t\tDon't expand wildcards"));
3073 #endif
3074 #ifdef FEAT_OLE
3075 main_msg(_("-register\t\tRegister this gvim for OLE"));
3076 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3077 #endif
3078 #ifdef FEAT_GUI
3079 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3080 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3081 #endif
3082 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3083 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3084 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3085 #ifdef FEAT_DIFF
3086 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3087 #endif
3088 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3089 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3090 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3091 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3092 main_msg(_("-M\t\t\tModifications in text not allowed"));
3093 main_msg(_("-b\t\t\tBinary mode"));
3094 #ifdef FEAT_LISP
3095 main_msg(_("-l\t\t\tLisp mode"));
3096 #endif
3097 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3098 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3099 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3100 #ifdef FEAT_EVAL
3101 main_msg(_("-D\t\t\tDebugging mode"));
3102 #endif
3103 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3104 main_msg(_("-r\t\t\tList swap files and exit"));
3105 main_msg(_("-r (with file name)\tRecover crashed session"));
3106 main_msg(_("-L\t\t\tSame as -r"));
3107 #ifdef AMIGA
3108 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3109 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3110 #endif
3111 #ifdef FEAT_ARABIC
3112 main_msg(_("-A\t\t\tstart in Arabic mode"));
3113 #endif
3114 #ifdef FEAT_RIGHTLEFT
3115 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3116 #endif
3117 #ifdef FEAT_FKMAP
3118 main_msg(_("-F\t\t\tStart in Farsi mode"));
3119 #endif
3120 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3121 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3122 #ifdef FEAT_GUI
3123 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3124 #endif
3125 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3126 #ifdef FEAT_WINDOWS
3127 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3128 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3129 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3130 #endif
3131 main_msg(_("+\t\t\tStart at end of file"));
3132 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3133 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3134 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3135 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3136 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3137 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3138 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3139 #ifdef FEAT_CRYPT
3140 main_msg(_("-x\t\t\tEdit encrypted files"));
3141 #endif
3142 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3143 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3144 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3145 # endif
3146 main_msg(_("-X\t\t\tDo not connect to X server"));
3147 #endif
3148 #ifdef FEAT_CLIENTSERVER
3149 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3150 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3151 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3152 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3153 # ifdef FEAT_WINDOWS
3154 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3155 # endif
3156 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3157 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3158 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3159 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3160 #endif
3161 #ifdef STARTUPTIME
3162 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>"));
3163 #endif
3164 #ifdef FEAT_VIMINFO
3165 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3166 #endif
3167 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3168 main_msg(_("--version\t\tPrint version information and exit"));
3170 #ifdef FEAT_GUI_X11
3171 # ifdef FEAT_GUI_MOTIF
3172 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3173 # else
3174 # ifdef FEAT_GUI_ATHENA
3175 # ifdef FEAT_GUI_NEXTAW
3176 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3177 # else
3178 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3179 # endif
3180 # endif
3181 # endif
3182 main_msg(_("-display <display>\tRun vim on <display>"));
3183 main_msg(_("-iconic\t\tStart vim iconified"));
3184 # if 0
3185 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3186 mch_msg(_("\t\t\t (Unimplemented)\n"));
3187 # endif
3188 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3189 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3190 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3191 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3192 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3193 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3194 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3195 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3196 # ifdef FEAT_GUI_ATHENA
3197 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3198 # endif
3199 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3200 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3201 main_msg(_("-xrm <resource>\tSet the specified resource"));
3202 #endif /* FEAT_GUI_X11 */
3203 #if defined(FEAT_GUI) && defined(RISCOS)
3204 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3205 main_msg(_("--columns <number>\tInitial width of window in columns"));
3206 main_msg(_("--rows <number>\tInitial height of window in rows"));
3207 #endif
3208 #ifdef FEAT_GUI_GTK
3209 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3210 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3211 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3212 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3213 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3214 # ifdef HAVE_GTK2
3215 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3216 # endif
3217 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3218 #endif
3219 #ifdef FEAT_GUI_W32
3220 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3221 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3222 #endif
3224 #ifdef FEAT_GUI_GNOME
3225 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3226 if (gui.starting)
3227 mch_msg("\n");
3228 else
3229 #endif
3230 mch_exit(0);
3233 #if defined(HAS_SWAP_EXISTS_ACTION)
3235 * Check the result of the ATTENTION dialog:
3236 * When "Quit" selected, exit Vim.
3237 * When "Recover" selected, recover the file.
3239 static void
3240 check_swap_exists_action()
3242 if (swap_exists_action == SEA_QUIT)
3243 getout(1);
3244 handle_swap_exists(NULL);
3246 #endif
3248 #if defined(STARTUPTIME) || defined(PROTO)
3249 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3251 static struct timeval prev_timeval;
3253 # ifdef WIN3264
3255 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3257 static int
3258 gettimeofday(struct timeval *tv, char *dummy)
3260 long t = clock();
3261 tv->tv_sec = t / CLOCKS_PER_SEC;
3262 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3263 return 0;
3265 # endif
3268 * Save the previous time before doing something that could nest.
3269 * set "*tv_rel" to the time elapsed so far.
3271 void
3272 time_push(tv_rel, tv_start)
3273 void *tv_rel, *tv_start;
3275 *((struct timeval *)tv_rel) = prev_timeval;
3276 gettimeofday(&prev_timeval, NULL);
3277 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3278 - ((struct timeval *)tv_rel)->tv_usec;
3279 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3280 - ((struct timeval *)tv_rel)->tv_sec;
3281 if (((struct timeval *)tv_rel)->tv_usec < 0)
3283 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3284 --((struct timeval *)tv_rel)->tv_sec;
3286 *(struct timeval *)tv_start = prev_timeval;
3290 * Compute the previous time after doing something that could nest.
3291 * Subtract "*tp" from prev_timeval;
3292 * Note: The arguments are (void *) to avoid trouble with systems that don't
3293 * have struct timeval.
3295 void
3296 time_pop(tp)
3297 void *tp; /* actually (struct timeval *) */
3299 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3300 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3301 if (prev_timeval.tv_usec < 0)
3303 prev_timeval.tv_usec += 1000000;
3304 --prev_timeval.tv_sec;
3308 static void
3309 time_diff(then, now)
3310 struct timeval *then;
3311 struct timeval *now;
3313 long usec;
3314 long msec;
3316 usec = now->tv_usec - then->tv_usec;
3317 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3318 usec = usec % 1000L;
3319 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3322 void
3323 time_msg(msg, tv_start)
3324 char *msg;
3325 void *tv_start; /* only for do_source: start time; actually
3326 (struct timeval *) */
3328 static struct timeval start;
3329 struct timeval now;
3331 if (time_fd != NULL)
3333 if (strstr(msg, "STARTING") != NULL)
3335 gettimeofday(&start, NULL);
3336 prev_timeval = start;
3337 fprintf(time_fd, "\n\ntimes in msec\n");
3338 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3339 fprintf(time_fd, " clock elapsed: other lines\n\n");
3341 gettimeofday(&now, NULL);
3342 time_diff(&start, &now);
3343 if (((struct timeval *)tv_start) != NULL)
3345 fprintf(time_fd, " ");
3346 time_diff(((struct timeval *)tv_start), &now);
3348 fprintf(time_fd, " ");
3349 time_diff(&prev_timeval, &now);
3350 prev_timeval = now;
3351 fprintf(time_fd, ": %s\n", msg);
3355 #endif
3357 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3360 * Common code for the X command server and the Win32 command server.
3363 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3366 * Do the client-server stuff, unless "--servername ''" was used.
3368 static void
3369 exec_on_server(parmp)
3370 mparm_T *parmp;
3372 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3374 # ifdef WIN32
3375 /* Initialise the client/server messaging infrastructure. */
3376 serverInitMessaging();
3377 # endif
3380 * When a command server argument was found, execute it. This may
3381 * exit Vim when it was successful. Otherwise it's executed further
3382 * on. Remember the encoding used here in "serverStrEnc".
3384 if (parmp->serverArg)
3386 cmdsrv_main(&parmp->argc, parmp->argv,
3387 parmp->serverName_arg, &parmp->serverStr);
3388 # ifdef FEAT_MBYTE
3389 parmp->serverStrEnc = vim_strsave(p_enc);
3390 # endif
3393 /* If we're still running, get the name to register ourselves.
3394 * On Win32 can register right now, for X11 need to setup the
3395 * clipboard first, it's further down. */
3396 parmp->servername = serverMakeName(parmp->serverName_arg,
3397 parmp->argv[0]);
3398 # ifdef WIN32
3399 if (parmp->servername != NULL)
3401 serverSetName(parmp->servername);
3402 vim_free(parmp->servername);
3404 # endif
3409 * Prepare for running as a Vim server.
3411 static void
3412 prepare_server(parmp)
3413 mparm_T *parmp;
3415 # if defined(FEAT_X11)
3417 * Register for remote command execution with :serversend and --remote
3418 * unless there was a -X or a --servername '' on the command line.
3419 * Only register nongui-vim's with an explicit --servername argument.
3420 * When running as root --servername is also required.
3422 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3423 # ifdef FEAT_GUI
3424 (gui.in_use
3425 # ifdef UNIX
3426 && getuid() != ROOT_UID
3427 # endif
3428 ) ||
3429 # endif
3430 parmp->serverName_arg != NULL))
3432 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3433 vim_free(parmp->servername);
3434 TIME_MSG("register server name");
3436 else
3437 serverDelayedStartName = parmp->servername;
3438 # endif
3441 * Execute command ourselves if we're here because the send failed (or
3442 * else we would have exited above).
3444 if (parmp->serverStr != NULL)
3446 char_u *p;
3448 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3449 parmp->serverStr, &p));
3450 vim_free(p);
3454 static void
3455 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3456 int *argc;
3457 char **argv;
3458 char_u *serverName_arg;
3459 char_u **serverStr;
3461 char_u *res;
3462 int i;
3463 char_u *sname;
3464 int ret;
3465 int didone = FALSE;
3466 int exiterr = 0;
3467 char **newArgV = argv + 1;
3468 int newArgC = 1,
3469 Argc = *argc;
3470 int argtype;
3471 #define ARGTYPE_OTHER 0
3472 #define ARGTYPE_EDIT 1
3473 #define ARGTYPE_EDIT_WAIT 2
3474 #define ARGTYPE_SEND 3
3475 int silent = FALSE;
3476 int tabs = FALSE;
3477 # ifndef FEAT_X11
3478 HWND srv;
3479 # else
3480 Window srv;
3482 setup_term_clip();
3483 # endif
3485 sname = serverMakeName(serverName_arg, argv[0]);
3486 if (sname == NULL)
3487 return;
3490 * Execute the command server related arguments and remove them
3491 * from the argc/argv array; We may have to return into main()
3493 for (i = 1; i < Argc; i++)
3495 res = NULL;
3496 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3498 for (; i < *argc; i++)
3500 *newArgV++ = argv[i];
3501 newArgC++;
3503 break;
3506 if (STRICMP(argv[i], "--remote-send") == 0)
3507 argtype = ARGTYPE_SEND;
3508 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3510 char *p = argv[i] + 8;
3512 argtype = ARGTYPE_EDIT;
3513 while (*p != NUL)
3515 if (STRNICMP(p, "-wait", 5) == 0)
3517 argtype = ARGTYPE_EDIT_WAIT;
3518 p += 5;
3520 else if (STRNICMP(p, "-silent", 7) == 0)
3522 silent = TRUE;
3523 p += 7;
3525 else if (STRNICMP(p, "-tab", 4) == 0)
3527 tabs = TRUE;
3528 p += 4;
3530 else
3532 argtype = ARGTYPE_OTHER;
3533 break;
3537 else
3538 argtype = ARGTYPE_OTHER;
3540 if (argtype != ARGTYPE_OTHER)
3542 if (i == *argc - 1)
3543 mainerr_arg_missing((char_u *)argv[i]);
3544 if (argtype == ARGTYPE_SEND)
3546 *serverStr = (char_u *)argv[i + 1];
3547 i++;
3549 else
3551 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3552 tabs, argtype == ARGTYPE_EDIT_WAIT);
3553 if (*serverStr == NULL)
3555 /* Probably out of memory, exit. */
3556 didone = TRUE;
3557 exiterr = 1;
3558 break;
3560 Argc = i;
3562 # ifdef FEAT_X11
3563 if (xterm_dpy == NULL)
3565 mch_errmsg(_("No display"));
3566 ret = -1;
3568 else
3569 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3570 NULL, &srv, 0, 0, silent);
3571 # else
3572 /* Win32 always works? */
3573 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3574 # endif
3575 if (ret < 0)
3577 if (argtype == ARGTYPE_SEND)
3579 /* Failed to send, abort. */
3580 mch_errmsg(_(": Send failed.\n"));
3581 didone = TRUE;
3582 exiterr = 1;
3584 else if (!silent)
3585 /* Let vim start normally. */
3586 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3587 break;
3590 # ifdef FEAT_GUI_W32
3591 /* Guess that when the server name starts with "g" it's a GUI
3592 * server, which we can bring to the foreground here.
3593 * Foreground() in the server doesn't work very well. */
3594 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3595 SetForegroundWindow(srv);
3596 # endif
3599 * For --remote-wait: Wait until the server did edit each
3600 * file. Also detect that the server no longer runs.
3602 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3604 int numFiles = *argc - i - 1;
3605 int j;
3606 char_u *done = alloc(numFiles);
3607 char_u *p;
3608 # ifdef FEAT_GUI_W32
3609 NOTIFYICONDATA ni;
3610 int count = 0;
3611 extern HWND message_window;
3612 # endif
3614 if (numFiles > 0 && argv[i + 1][0] == '+')
3615 /* Skip "+cmd" argument, don't wait for it to be edited. */
3616 --numFiles;
3618 # ifdef FEAT_GUI_W32
3619 ni.cbSize = sizeof(ni);
3620 ni.hWnd = message_window;
3621 ni.uID = 0;
3622 ni.uFlags = NIF_ICON|NIF_TIP;
3623 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3624 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3625 Shell_NotifyIcon(NIM_ADD, &ni);
3626 # endif
3628 /* Wait for all files to unload in remote */
3629 memset(done, 0, numFiles);
3630 while (memchr(done, 0, numFiles) != NULL)
3632 # ifdef WIN32
3633 p = serverGetReply(srv, NULL, TRUE, TRUE);
3634 if (p == NULL)
3635 break;
3636 # else
3637 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3638 break;
3639 # endif
3640 j = atoi((char *)p);
3641 if (j >= 0 && j < numFiles)
3643 # ifdef FEAT_GUI_W32
3644 ++count;
3645 sprintf(ni.szTip, _("%d of %d edited"),
3646 count, numFiles);
3647 Shell_NotifyIcon(NIM_MODIFY, &ni);
3648 # endif
3649 done[j] = 1;
3652 # ifdef FEAT_GUI_W32
3653 Shell_NotifyIcon(NIM_DELETE, &ni);
3654 # endif
3657 else if (STRICMP(argv[i], "--remote-expr") == 0)
3659 if (i == *argc - 1)
3660 mainerr_arg_missing((char_u *)argv[i]);
3661 # ifdef WIN32
3662 /* Win32 always works? */
3663 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3664 &res, NULL, 1, FALSE) < 0)
3665 # else
3666 if (xterm_dpy == NULL)
3667 mch_errmsg(_("No display: Send expression failed.\n"));
3668 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3669 &res, NULL, 1, 1, FALSE) < 0)
3670 # endif
3672 if (res != NULL && *res != NUL)
3674 /* Output error from remote */
3675 mch_errmsg((char *)res);
3676 vim_free(res);
3677 res = NULL;
3679 mch_errmsg(_(": Send expression failed.\n"));
3682 else if (STRICMP(argv[i], "--serverlist") == 0)
3684 # ifdef WIN32
3685 /* Win32 always works? */
3686 res = serverGetVimNames();
3687 # else
3688 if (xterm_dpy != NULL)
3689 res = serverGetVimNames(xterm_dpy);
3690 # endif
3691 if (called_emsg)
3692 mch_errmsg("\n");
3694 else if (STRICMP(argv[i], "--servername") == 0)
3696 /* Already processed. Take it out of the command line */
3697 i++;
3698 continue;
3700 else
3702 *newArgV++ = argv[i];
3703 newArgC++;
3704 continue;
3706 didone = TRUE;
3707 if (res != NULL && *res != NUL)
3709 mch_msg((char *)res);
3710 if (res[STRLEN(res) - 1] != '\n')
3711 mch_msg("\n");
3713 vim_free(res);
3716 if (didone)
3718 display_errors(); /* display any collected messages */
3719 exit(exiterr); /* Mission accomplished - get out */
3722 /* Return back into main() */
3723 *argc = newArgC;
3724 vim_free(sname);
3728 * Build a ":drop" command to send to a Vim server.
3730 static char_u *
3731 build_drop_cmd(filec, filev, tabs, sendReply)
3732 int filec;
3733 char **filev;
3734 int tabs; /* Use ":tab drop" instead of ":drop". */
3735 int sendReply;
3737 garray_T ga;
3738 int i;
3739 char_u *inicmd = NULL;
3740 char_u *p;
3741 char_u cwd[MAXPATHL];
3743 if (filec > 0 && filev[0][0] == '+')
3745 inicmd = (char_u *)filev[0] + 1;
3746 filev++;
3747 filec--;
3749 /* Check if we have at least one argument. */
3750 if (filec <= 0)
3751 mainerr_arg_missing((char_u *)filev[-1]);
3752 if (mch_dirname(cwd, MAXPATHL) != OK)
3753 return NULL;
3754 if ((p = vim_strsave_escaped_ext(cwd,
3755 #ifdef BACKSLASH_IN_FILENAME
3756 "", /* rem_backslash() will tell what chars to escape */
3757 #else
3758 PATH_ESC_CHARS,
3759 #endif
3760 '\\', TRUE)) == NULL)
3761 return NULL;
3762 ga_init2(&ga, 1, 100);
3763 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3764 ga_concat(&ga, p);
3765 vim_free(p);
3767 /* Call inputsave() so that a prompt for an encryption key works. */
3768 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3769 if (tabs)
3770 ga_concat(&ga, (char_u *)"tab ");
3771 ga_concat(&ga, (char_u *)"drop");
3772 for (i = 0; i < filec; i++)
3774 /* On Unix the shell has already expanded the wildcards, don't want to
3775 * do it again in the Vim server. On MS-Windows only escape
3776 * non-wildcard characters. */
3777 p = vim_strsave_escaped((char_u *)filev[i],
3778 #ifdef UNIX
3779 PATH_ESC_CHARS
3780 #else
3781 (char_u *)" \t%#"
3782 #endif
3784 if (p == NULL)
3786 vim_free(ga.ga_data);
3787 return NULL;
3789 ga_concat(&ga, (char_u *)" ");
3790 ga_concat(&ga, p);
3791 vim_free(p);
3793 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3794 * CTRL-\ CTRL-N again. */
3795 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3796 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3797 if (sendReply)
3798 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3799 ga_concat(&ga, (char_u *)"<CR>:");
3800 if (inicmd != NULL)
3802 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3803 * the following commands to be inserted as text. Use a "|",
3804 * hopefully "inicmd" does allow this... */
3805 ga_concat(&ga, inicmd);
3806 ga_concat(&ga, (char_u *)"|");
3808 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3809 * clear command line. */
3810 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3811 ga_append(&ga, NUL);
3812 return ga.ga_data;
3816 * Replace termcodes such as <CR> and insert as key presses if there is room.
3818 void
3819 server_to_input_buf(str)
3820 char_u *str;
3822 char_u *ptr = NULL;
3823 char_u *cpo_save = p_cpo;
3825 /* Set 'cpoptions' the way we want it.
3826 * B set - backslashes are *not* treated specially
3827 * k set - keycodes are *not* reverse-engineered
3828 * < unset - <Key> sequences *are* interpreted
3829 * The last but one parameter of replace_termcodes() is TRUE so that the
3830 * <lt> sequence is recognised - needed for a real backslash.
3832 p_cpo = (char_u *)"Bk";
3833 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3834 p_cpo = cpo_save;
3836 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3839 * Add the string to the input stream.
3840 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3842 * First clear typed characters from the typeahead buffer, there could
3843 * be half a mapping there. Then append to the existing string, so
3844 * that multiple commands from a client are concatenated.
3846 if (typebuf.tb_maplen < typebuf.tb_len)
3847 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3848 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3850 /* Let input_available() know we inserted text in the typeahead
3851 * buffer. */
3852 typebuf_was_filled = TRUE;
3854 vim_free((char_u *)ptr);
3858 * Evaluate an expression that the client sent to a string.
3859 * Handles disabling error messages and disables debugging, otherwise Vim
3860 * hangs, waiting for "cont" to be typed.
3862 char_u *
3863 eval_client_expr_to_string(expr)
3864 char_u *expr;
3866 char_u *res;
3867 int save_dbl = debug_break_level;
3868 int save_ro = redir_off;
3870 debug_break_level = -1;
3871 redir_off = 0;
3872 ++emsg_skip;
3874 res = eval_to_string(expr, NULL, TRUE);
3876 debug_break_level = save_dbl;
3877 redir_off = save_ro;
3878 --emsg_skip;
3880 /* A client can tell us to redraw, but not to display the cursor, so do
3881 * that here. */
3882 setcursor();
3883 out_flush();
3884 #ifdef FEAT_GUI
3885 if (gui.in_use)
3886 gui_update_cursor(FALSE, FALSE);
3887 #endif
3889 return res;
3893 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3894 * return an allocated string. Otherwise return "data".
3895 * "*tofree" is set to the result when it needs to be freed later.
3897 char_u *
3898 serverConvert(client_enc, data, tofree)
3899 char_u *client_enc UNUSED;
3900 char_u *data;
3901 char_u **tofree;
3903 char_u *res = data;
3905 *tofree = NULL;
3906 # ifdef FEAT_MBYTE
3907 if (client_enc != NULL && p_enc != NULL)
3909 vimconv_T vimconv;
3911 vimconv.vc_type = CONV_NONE;
3912 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3913 && vimconv.vc_type != CONV_NONE)
3915 res = string_convert(&vimconv, data, NULL);
3916 if (res == NULL)
3917 res = data;
3918 else
3919 *tofree = res;
3921 convert_setup(&vimconv, NULL, NULL);
3923 # endif
3924 return res;
3929 * Make our basic server name: use the specified "arg" if given, otherwise use
3930 * the tail of the command "cmd" we were started with.
3931 * Return the name in allocated memory. This doesn't include a serial number.
3933 static char_u *
3934 serverMakeName(arg, cmd)
3935 char_u *arg;
3936 char *cmd;
3938 char_u *p;
3940 if (arg != NULL && *arg != NUL)
3941 p = vim_strsave_up(arg);
3942 else
3944 p = vim_strsave_up(gettail((char_u *)cmd));
3945 /* Remove .exe or .bat from the name. */
3946 if (p != NULL && vim_strchr(p, '.') != NULL)
3947 *vim_strchr(p, '.') = NUL;
3949 return p;
3951 #endif /* FEAT_CLIENTSERVER */
3954 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3956 #if defined(FEAT_FKMAP) || defined(PROTO)
3957 # include "farsi.c"
3958 #endif
3961 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3963 #if defined(FEAT_ARABIC) || defined(PROTO)
3964 # include "arabic.c"
3965 #endif