Revert old forking code
[MacVim.git] / src / main.c
blob32f07a8aecab3171d801a67ac745d5408bd80c84
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 #if FEAT_GUI_MACVIM
31 #include <objc/objc-runtime.h> /* for objc_*() and sel_*() */
32 #endif
34 /* Maximum number of commands from + or -c arguments. */
35 #define MAX_ARG_CMDS 10
37 /* values for "window_layout" */
38 #define WIN_HOR 1 /* "-o" horizontally split windows */
39 #define WIN_VER 2 /* "-O" vertically split windows */
40 #define WIN_TABS 3 /* "-p" windows on tab pages */
42 /* Struct for various parameters passed between main() and other functions. */
43 typedef struct
45 int argc;
46 char **argv;
48 int evim_mode; /* started as "evim" */
49 char_u *use_vimrc; /* vimrc from -u argument */
51 int n_commands; /* no. of commands from + or -c */
52 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
53 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
54 int n_pre_commands; /* no. of commands from --cmd */
55 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
57 int edit_type; /* type of editing to do */
58 char_u *tagname; /* tag from -t argument */
59 #ifdef FEAT_QUICKFIX
60 char_u *use_ef; /* 'errorfile' from -q argument */
61 #endif
63 int want_full_screen;
64 int stdout_isatty; /* is stdout a terminal? */
65 char_u *term; /* specified terminal name */
66 #ifdef FEAT_CRYPT
67 int ask_for_key; /* -x argument */
68 #endif
69 int no_swap_file; /* "-n" argument used */
70 #ifdef FEAT_EVAL
71 int use_debug_break_level;
72 #endif
73 #ifdef FEAT_WINDOWS
74 int window_count; /* number of windows to use */
75 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
76 #endif
78 #ifdef FEAT_CLIENTSERVER
79 int serverArg; /* TRUE when argument for a server */
80 char_u *serverName_arg; /* cmdline arg for server name */
81 char_u *serverStr; /* remote server command */
82 char_u *serverStrEnc; /* encoding of serverStr */
83 char_u *servername; /* allocated name for our server */
84 #endif
85 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
86 int literal; /* don't expand file names */
87 #endif
88 #ifdef MSWIN
89 int full_path; /* file name argument was full path */
90 #endif
91 #ifdef FEAT_DIFF
92 int diff_mode; /* start with 'diff' set */
93 #endif
94 } mparm_T;
96 /* Values for edit_type. */
97 #define EDIT_NONE 0 /* no edit type yet */
98 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */
99 #define EDIT_STDIN 2 /* read file from stdin */
100 #define EDIT_TAG 3 /* tag name argument given, use tagname */
101 #define EDIT_QF 4 /* start in quickfix mode */
103 #if defined(UNIX) || defined(VMS)
104 static int file_owned __ARGS((char *fname));
105 #endif
106 static void mainerr __ARGS((int, char_u *));
107 static void main_msg __ARGS((char *s));
108 static void usage __ARGS((void));
109 static int get_number_arg __ARGS((char_u *p, int *idx, int def));
110 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
111 static void init_locale __ARGS((void));
112 #endif
113 static void parse_command_name __ARGS((mparm_T *parmp));
114 static void early_arg_scan __ARGS((mparm_T *parmp));
115 static void command_line_scan __ARGS((mparm_T *parmp));
116 static void check_tty __ARGS((mparm_T *parmp));
117 static void read_stdin __ARGS((void));
118 static void create_windows __ARGS((mparm_T *parmp));
119 #ifdef FEAT_WINDOWS
120 static void edit_buffers __ARGS((mparm_T *parmp));
121 #endif
122 static void exe_pre_commands __ARGS((mparm_T *parmp));
123 static void exe_commands __ARGS((mparm_T *parmp));
124 static void source_startup_scripts __ARGS((mparm_T *parmp));
125 static void main_start_gui __ARGS((void));
126 #if defined(HAS_SWAP_EXISTS_ACTION)
127 static void check_swap_exists_action __ARGS((void));
128 #endif
129 #ifdef FEAT_CLIENTSERVER
130 static void exec_on_server __ARGS((mparm_T *parmp));
131 static void prepare_server __ARGS((mparm_T *parmp));
132 static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
133 static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
134 #endif
137 #ifdef STARTUPTIME
138 static FILE *time_fd = NULL;
139 #endif
142 * Different types of error messages.
144 static char *(main_errors[]) =
146 N_("Unknown option argument"),
147 #define ME_UNKNOWN_OPTION 0
148 N_("Too many edit arguments"),
149 #define ME_TOO_MANY_ARGS 1
150 N_("Argument missing after"),
151 #define ME_ARG_MISSING 2
152 N_("Garbage after option argument"),
153 #define ME_GARBAGE 3
154 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
155 #define ME_EXTRA_CMD 4
156 N_("Invalid argument for"),
157 #define ME_INVALID_ARG 5
160 #ifndef PROTO /* don't want a prototype for main() */
162 # ifdef VIMDLL
163 _export
164 # endif
165 # ifdef FEAT_GUI_MSWIN
166 # ifdef __BORLANDC__
167 _cdecl
168 # endif
169 VimMain
170 # else
171 main
172 # endif
173 (argc, argv)
174 int argc;
175 char **argv;
177 char_u *fname = NULL; /* file name from command line */
178 mparm_T params; /* various parameters passed between
179 * main() and other functions. */
181 #if FEAT_GUI_MACVIM
182 // Cocoa needs an NSAutoreleasePool in place or it will leak memory.
183 // This particular pool will hold autorelease objects created during
184 // initialization.
185 id autoreleasePool = objc_msgSend(objc_msgSend(
186 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
187 ), sel_getUid("init"));
188 #endif
191 * Do any system-specific initialisations. These can NOT use IObuff or
192 * NameBuff. Thus emsg2() cannot be called!
194 mch_early_init();
196 /* Many variables are in "params" so that we can pass them to invoked
197 * functions without a lot of arguments. "argc" and "argv" are also
198 * copied, so that they can be changed. */
199 vim_memset(&params, 0, sizeof(params));
200 params.argc = argc;
201 params.argv = argv;
202 params.want_full_screen = TRUE;
203 #ifdef FEAT_EVAL
204 params.use_debug_break_level = -1;
205 #endif
206 #ifdef FEAT_WINDOWS
207 params.window_count = -1;
208 #endif
210 #ifdef FEAT_TCL
211 vim_tcl_init(params.argv[0]);
212 #endif
214 #ifdef MEM_PROFILE
215 atexit(vim_mem_profile_dump);
216 #endif
218 #ifdef STARTUPTIME
219 time_fd = mch_fopen(STARTUPTIME, "a");
220 TIME_MSG("--- VIM STARTING ---");
221 #endif
222 starttime = time(NULL);
224 #ifdef __EMX__
225 _wildcard(&params.argc, &params.argv);
226 #endif
228 #ifdef FEAT_MBYTE
229 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
230 #endif
231 #ifdef FEAT_EVAL
232 eval_init(); /* init global variables */
233 #endif
235 #ifdef __QNXNTO__
236 qnx_init(); /* PhAttach() for clipboard, (and gui) */
237 #endif
239 #ifdef MAC_OS_CLASSIC
240 /* Prepare for possibly starting GUI sometime */
241 /* Macintosh needs this before any memory is allocated. */
242 gui_prepare(&params.argc, params.argv);
243 TIME_MSG("GUI prepared");
244 #endif
246 /* Init the table of Normal mode commands. */
247 init_normal_cmds();
249 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
250 make_version(); /* Construct the long version string. */
251 #endif
254 * Allocate space for the generic buffers (needed for set_init_1() and
255 * EMSG2()).
257 if ((IObuff = alloc(IOSIZE)) == NULL
258 || (NameBuff = alloc(MAXPATHL)) == NULL)
259 mch_exit(0);
260 TIME_MSG("Allocated generic buffers");
262 #ifdef NBDEBUG
263 /* Wait a moment for debugging NetBeans. Must be after allocating
264 * NameBuff. */
265 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
266 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
267 TIME_MSG("NetBeans debug wait");
268 #endif
270 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
272 * Setup to use the current locale (for ctype() and many other things).
273 * NOTE: Translated messages with encodings other than latin1 will not
274 * work until set_init_1() has been called!
276 init_locale();
277 TIME_MSG("locale set");
278 #endif
280 #ifdef FEAT_GUI
281 gui.dofork = TRUE; /* default is to use fork() */
282 #endif
285 * Do a first scan of the arguments in "argv[]":
286 * -display or --display
287 * --server...
288 * --socketid
289 * --windowid
291 early_arg_scan(&params);
293 #ifdef FEAT_SUN_WORKSHOP
294 findYourself(params.argv[0]);
295 #endif
296 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
297 /* Prepare for possibly starting GUI sometime */
298 gui_prepare(&params.argc, params.argv);
299 TIME_MSG("GUI prepared");
300 #endif
302 #ifdef FEAT_CLIPBOARD
303 clip_init(FALSE); /* Initialise clipboard stuff */
304 TIME_MSG("clipboard setup");
305 #endif
308 * Check if we have an interactive window.
309 * On the Amiga: If there is no window, we open one with a newcli command
310 * (needed for :! to * work). mch_check_win() will also handle the -d or
311 * -dev argument.
313 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
314 TIME_MSG("window checked");
317 * Allocate the first window and buffer.
318 * Can't do anything without it, exit when it fails.
320 if (win_alloc_first() == FAIL)
321 mch_exit(0);
323 init_yank(); /* init yank buffers */
325 alist_init(&global_alist); /* Init the argument list to empty. */
328 * Set the default values for the options.
329 * NOTE: Non-latin1 translated messages are working only after this,
330 * because this is where "has_mbyte" will be set, which is used by
331 * msg_outtrans_len_attr().
332 * First find out the home directory, needed to expand "~" in options.
334 init_homedir(); /* find real value of $HOME */
335 set_init_1();
336 TIME_MSG("inits 1");
338 #ifdef FEAT_EVAL
339 set_lang_var(); /* set v:lang and v:ctype */
340 #endif
342 #ifdef FEAT_CLIENTSERVER
344 * Do the client-server stuff, unless "--servername ''" was used.
345 * This may exit Vim if the command was sent to the server.
347 exec_on_server(&params);
348 #endif
351 * Figure out the way to work from the command name argv[0].
352 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
354 parse_command_name(&params);
357 * Process the command line arguments. File names are put in the global
358 * argument list "global_alist".
360 command_line_scan(&params);
361 TIME_MSG("parsing arguments");
364 * On some systems, when we compile with the GUI, we always use it. On Mac
365 * there is no terminal version, and on Windows we can't fork one off with
366 * :gui.
368 #ifdef ALWAYS_USE_GUI
369 gui.starting = TRUE;
370 #else
371 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
373 * Check if the GUI can be started. Reset gui.starting if not.
374 * Don't know about other systems, stay on the safe side and don't check.
376 if (gui.starting && gui_init_check() == FAIL)
378 gui.starting = FALSE;
380 /* When running "evim" or "gvim -y" we need the menus, exit if we
381 * don't have them. */
382 if (params.evim_mode)
383 mch_exit(1);
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(FEAT_GUI_MACVIM)) && 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 # ifndef FEAT_GUI_MACVIM
468 /* Avoid always using "/" as the current directory. Note that when
469 * started from Finder the arglist will be filled later in
470 * HandleODocAE() and "fname" will be NULL. */
471 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
472 && STRCMP(NameBuff, "/") == 0)
474 if (fname != NULL)
475 (void)vim_chdirfile(fname);
476 else
478 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
479 vim_chdir(NameBuff);
482 # endif
484 #endif
487 * mch_init() sets up the terminal (window) for use. This must be
488 * done after resetting full_screen, otherwise it may move the cursor
489 * (MSDOS).
490 * Note that we may use mch_exit() before mch_init()!
492 mch_init();
493 TIME_MSG("shell init");
495 #ifdef USE_XSMP
497 * For want of anywhere else to do it, try to connect to xsmp here.
498 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
499 * Hijacking -X 'no X connection' to also disable XSMP connection as that
500 * has a similar delay upon failure.
501 * Only try if SESSION_MANAGER is set to something non-null.
503 if (!x_no_connect)
505 char *p = getenv("SESSION_MANAGER");
507 if (p != NULL && *p != NUL)
509 xsmp_init();
510 TIME_MSG("xsmp init");
513 #endif
516 * Print a warning if stdout is not a terminal.
518 check_tty(&params);
520 /* This message comes before term inits, but after setting "silent_mode"
521 * when the input is not a tty. */
522 if (GARGCOUNT > 1 && !silent_mode)
523 printf(_("%d files to edit\n"), GARGCOUNT);
525 if (params.want_full_screen && !silent_mode)
527 termcapinit(params.term); /* set terminal name and get terminal
528 capabilities (will set full_screen) */
529 screen_start(); /* don't know where cursor is now */
530 TIME_MSG("Termcap init");
534 * Set the default values for the options that use Rows and Columns.
536 ui_get_shellsize(); /* inits Rows and Columns */
537 #ifdef FEAT_NETBEANS_INTG
538 if (usingNetbeans)
539 Columns += 2; /* leave room for glyph gutter */
540 #endif
541 win_init_size();
542 #ifdef FEAT_DIFF
543 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
544 * file. There is no buffer yet though. */
545 if (params.diff_mode)
546 diff_win_options(firstwin, FALSE);
547 #endif
549 cmdline_row = Rows - p_ch;
550 msg_row = cmdline_row;
551 screenalloc(FALSE); /* allocate screen buffers */
552 set_init_2();
553 TIME_MSG("inits 2");
555 msg_scroll = TRUE;
556 no_wait_return = TRUE;
558 init_mappings(); /* set up initial mappings */
560 init_highlight(TRUE, FALSE); /* set the default highlight groups */
561 TIME_MSG("init highlight");
563 #ifdef FEAT_EVAL
564 /* Set the break level after the terminal is initialized. */
565 debug_break_level = params.use_debug_break_level;
566 #endif
568 /* Execute --cmd arguments. */
569 exe_pre_commands(&params);
571 /* Source startup scripts. */
572 source_startup_scripts(&params);
574 #ifdef FEAT_EVAL
576 * Read all the plugin files.
577 * Only when compiled with +eval, since most plugins need it.
579 if (p_lpl)
581 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
582 source_runtime((char_u *)"plugin/*.vim", TRUE);
583 # else
584 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
585 # endif
586 TIME_MSG("loading plugins");
588 #endif
590 #ifdef FEAT_DIFF
591 /* Decide about window layout for diff mode after reading vimrc. */
592 if (params.diff_mode && params.window_layout == 0)
594 if (diffopt_horizontal())
595 params.window_layout = WIN_HOR; /* use horizontal split */
596 else
597 params.window_layout = WIN_VER; /* use vertical split */
599 #endif
602 * Recovery mode without a file name: List swap files.
603 * This uses the 'dir' option, therefore it must be after the
604 * initializations.
606 if (recoverymode && fname == NULL)
608 recover_names(NULL, TRUE, 0);
609 mch_exit(0);
613 * Set a few option defaults after reading .vimrc files:
614 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
616 set_init_3();
617 TIME_MSG("inits 3");
620 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
621 * Note that this overrides anything from a vimrc file.
623 if (params.no_swap_file)
624 p_uc = 0;
626 #ifdef FEAT_FKMAP
627 if (curwin->w_p_rl && p_altkeymap)
629 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
630 # ifdef FEAT_ARABIC
631 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
632 # endif
633 p_fkmap = TRUE; /* Set the Farsi keymap mode */
635 #endif
637 #ifdef FEAT_GUI
638 if (gui.starting)
640 #if defined(UNIX) || defined(VMS)
641 /* When something caused a message from a vimrc script, need to output
642 * an extra newline before the shell prompt. */
643 if (did_emsg || msg_didout)
644 putchar('\n');
645 #endif
647 gui_start(); /* will set full_screen to TRUE */
648 TIME_MSG("starting GUI");
650 /* When running "evim" or "gvim -y" we need the menus, exit if we
651 * don't have them. */
652 if (!gui.in_use && params.evim_mode)
653 mch_exit(1);
655 #endif
657 #ifdef SPAWNO /* special MSDOS swapping library */
658 init_SPAWNO("", SWAP_ANY);
659 #endif
661 #ifdef FEAT_VIMINFO
663 * Read in registers, history etc, but not marks, from the viminfo file.
664 * This is where v:oldfiles gets filled.
666 if (*p_viminfo != NUL)
668 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
669 TIME_MSG("reading viminfo");
671 #endif
673 #ifdef FEAT_QUICKFIX
675 * "-q errorfile": Load the error file now.
676 * If the error file can't be read, exit before doing anything else.
678 if (params.edit_type == EDIT_QF)
680 if (params.use_ef != NULL)
681 set_string_option_direct((char_u *)"ef", -1,
682 params.use_ef, OPT_FREE, SID_CARG);
683 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
685 out_char('\n');
686 mch_exit(3);
688 TIME_MSG("reading errorfile");
690 #endif
693 * Start putting things on the screen.
694 * Scroll screen down before drawing over it
695 * Clear screen now, so file message will not be cleared.
697 starting = NO_BUFFERS;
698 no_wait_return = FALSE;
699 if (!exmode_active)
700 msg_scroll = FALSE;
702 #ifdef FEAT_GUI
704 * This seems to be required to make callbacks to be called now, instead
705 * of after things have been put on the screen, which then may be deleted
706 * when getting a resize callback.
707 * For the Mac this handles putting files dropped on the Vim icon to
708 * global_alist.
710 if (gui.in_use)
712 # ifdef FEAT_SUN_WORKSHOP
713 if (!usingSunWorkShop)
714 # endif
715 gui_wait_for_chars(50L);
716 TIME_MSG("GUI delay");
718 #endif
720 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
721 qnx_clip_init();
722 #endif
724 #if defined(FEAT_GUI_MACVIM) && defined(FEAT_CLIPBOARD)
725 clip_init(TRUE);
726 #endif
728 #ifdef FEAT_XCLIPBOARD
729 /* Start using the X clipboard, unless the GUI was started. */
730 # ifdef FEAT_GUI
731 if (!gui.in_use)
732 # endif
734 setup_term_clip();
735 TIME_MSG("setup clipboard");
737 #endif
739 #ifdef FEAT_CLIENTSERVER
740 /* Prepare for being a Vim server. */
741 prepare_server(&params);
742 #endif
745 * If "-" argument given: Read file from stdin.
746 * Do this before starting Raw mode, because it may change things that the
747 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
748 * are the same terminal: "cat | vim -".
749 * Using autocommands here may cause trouble...
751 if (params.edit_type == EDIT_STDIN && !recoverymode)
752 read_stdin();
754 #if defined(UNIX) || defined(VMS)
755 /* When switching screens and something caused a message from a vimrc
756 * script, need to output an extra newline on exit. */
757 if ((did_emsg || msg_didout) && *T_TI != NUL)
758 newline_on_exit = TRUE;
759 #endif
762 * When done something that is not allowed or error message call
763 * wait_return. This must be done before starttermcap(), because it may
764 * switch to another screen. It must be done after settmode(TMODE_RAW),
765 * because we want to react on a single key stroke.
766 * Call settmode and starttermcap here, so the T_KS and T_TI may be
767 * defined by termcapinit and redefined in .exrc.
769 settmode(TMODE_RAW);
770 TIME_MSG("setting raw mode");
772 if (need_wait_return || msg_didany)
774 wait_return(TRUE);
775 TIME_MSG("waiting for return");
778 starttermcap(); /* start termcap if not done by wait_return() */
779 TIME_MSG("start termcap");
781 #ifdef FEAT_MOUSE
782 setmouse(); /* may start using the mouse */
783 #endif
784 if (scroll_region)
785 scroll_region_reset(); /* In case Rows changed */
786 scroll_start(); /* may scroll the screen to the right position */
789 * Don't clear the screen when starting in Ex mode, unless using the GUI.
791 if (exmode_active
792 #ifdef FEAT_GUI
793 && !gui.in_use
794 #endif
796 must_redraw = CLEAR;
797 else
799 screenclear(); /* clear screen */
800 TIME_MSG("clearing screen");
803 #ifdef FEAT_CRYPT
804 if (params.ask_for_key)
806 (void)get_crypt_key(TRUE, TRUE);
807 TIME_MSG("getting crypt key");
809 #endif
811 no_wait_return = TRUE;
813 #ifdef FEAT_GUI_MACVIM
814 /* We want to delay calling this function for as long as possible, since it
815 * will result in faster startup for cached processes. However, we react
816 * before create_windows() so that we can open files by adding to the
817 * arglist. */
818 gui_macvim_wait_for_startup();
820 /* Since MacVim may receive the list of files to open via an Apple event
821 * (as opposed to from the command line) we must manually check to see if
822 * the window layout should be changed. */
823 gui_macvim_get_window_layout(&params.window_count, &params.window_layout);
825 # ifdef MAC_CLIENTSERVER
826 // NOTE: Can't set server name at same time as WIN32 because gui.in_use
827 // isn't set then. Servers are only supported in GUI mode.
828 // Also, in case the above call blocks this process another Vim process may
829 // open in the meantime. If it did then it could be named e.g. VIM3
830 // whereas this may be VIM2, which looks weird.
831 if (params.servername != NULL && gui.in_use)
833 serverRegisterName(params.servername);
834 vim_free(params.servername);
835 params.servername = NULL;
837 # endif
838 #endif
841 * Create the requested number of windows and edit buffers in them.
842 * Also does recovery if "recoverymode" set.
844 create_windows(&params);
845 TIME_MSG("opening buffers");
847 #ifdef FEAT_EVAL
848 /* clear v:swapcommand */
849 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
850 #endif
852 /* Ex starts at last line of the file */
853 if (exmode_active)
854 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
856 #ifdef FEAT_AUTOCMD
857 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
858 TIME_MSG("BufEnter autocommands");
859 #endif
860 setpcmark();
862 #ifdef FEAT_QUICKFIX
864 * When started with "-q errorfile" jump to first error now.
866 if (params.edit_type == EDIT_QF)
868 qf_jump(NULL, 0, 0, FALSE);
869 TIME_MSG("jump to first error");
871 #endif
873 #ifdef FEAT_WINDOWS
875 * If opened more than one window, start editing files in the other
876 * windows.
878 edit_buffers(&params);
879 #endif
881 #ifdef FEAT_DIFF
882 if (params.diff_mode)
884 win_T *wp;
886 /* set options in each window for "vimdiff". */
887 for (wp = firstwin; wp != NULL; wp = wp->w_next)
888 diff_win_options(wp, TRUE);
890 #endif
893 * Shorten any of the filenames, but only when absolute.
895 shorten_fnames(FALSE);
898 * Need to jump to the tag before executing the '-c command'.
899 * Makes "vim -c '/return' -t main" work.
901 if (params.tagname != NULL)
903 #if defined(HAS_SWAP_EXISTS_ACTION)
904 swap_exists_did_quit = FALSE;
905 #endif
907 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
908 do_cmdline_cmd(IObuff);
909 TIME_MSG("jumping to tag");
911 #if defined(HAS_SWAP_EXISTS_ACTION)
912 /* If the user doesn't want to edit the file then we quit here. */
913 if (swap_exists_did_quit)
914 getout(1);
915 #endif
918 /* Execute any "+", "-c" and "-S" arguments. */
919 if (params.n_commands > 0)
920 exe_commands(&params);
922 RedrawingDisabled = 0;
923 redraw_all_later(NOT_VALID);
924 no_wait_return = FALSE;
925 starting = 0;
927 #ifdef FEAT_TERMRESPONSE
928 /* Requesting the termresponse is postponed until here, so that a "-c q"
929 * argument doesn't make it appear in the shell Vim was started from. */
930 may_req_termresponse();
931 #endif
933 /* start in insert mode */
934 if (p_im)
935 need_start_insertmode = TRUE;
937 #ifdef FEAT_AUTOCMD
938 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
939 TIME_MSG("VimEnter autocommands");
940 #endif
942 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
943 /* When a startup script or session file setup for diff'ing and
944 * scrollbind, sync the scrollbind now. */
945 if (curwin->w_p_diff && curwin->w_p_scb)
947 update_topline();
948 check_scrollbind((linenr_T)0, 0L);
949 TIME_MSG("diff scrollbinding");
951 #endif
953 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
954 mch_set_winsize_now(); /* Allow winsize changes from now on */
955 #endif
957 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
958 /* When tab pages were created, may need to update the tab pages line and
959 * scrollbars. This is skipped while creating them. */
960 if (first_tabpage->tp_next != NULL)
962 out_flush();
963 gui_init_which_components(NULL);
964 gui_update_scrollbars(TRUE);
966 need_mouse_correct = TRUE;
967 #endif
969 /* If ":startinsert" command used, stuff a dummy command to be able to
970 * call normal_cmd(), which will then start Insert mode. */
971 if (restart_edit != 0)
972 stuffcharReadbuff(K_NOP);
974 #ifdef FEAT_NETBEANS_INTG
975 if (usingNetbeans)
976 /* Tell the client that it can start sending commands. */
977 netbeans_startup_done();
978 #endif
980 TIME_MSG("before starting main loop");
982 #if FEAT_GUI_MACVIM
983 // The autorelease pool might have filled up quite a bit during
984 // initialization, so purge it before entering the main loop.
985 objc_msgSend(autoreleasePool, sel_getUid("release"));
987 // The main loop sets up its own autorelease pool, but to be safe we still
988 // realloc this one here.
989 autoreleasePool = objc_msgSend(objc_msgSend(
990 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
991 ), sel_getUid("init"));
992 #endif
995 * Call the main command loop. This never returns.
997 main_loop(FALSE, FALSE);
999 #if FEAT_GUI_MACVIM
1000 objc_msgSend(autoreleasePool, sel_getUid("release"));
1001 #endif
1003 return 0;
1005 #endif /* PROTO */
1008 * Main loop: Execute Normal mode commands until exiting Vim.
1009 * Also used to handle commands in the command-line window, until the window
1010 * is closed.
1011 * Also used to handle ":visual" command after ":global": execute Normal mode
1012 * commands, return when entering Ex mode. "noexmode" is TRUE then.
1014 void
1015 main_loop(cmdwin, noexmode)
1016 int cmdwin; /* TRUE when working in the command-line window */
1017 int noexmode; /* TRUE when return on entering Ex mode */
1019 oparg_T oa; /* operator arguments */
1020 int previous_got_int = FALSE; /* "got_int" was TRUE */
1022 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1023 /* Setup to catch a terminating error from the X server. Just ignore
1024 * it, restore the state and continue. This might not always work
1025 * properly, but at least we don't exit unexpectedly when the X server
1026 * exists while Vim is running in a console. */
1027 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
1029 State = NORMAL;
1030 # ifdef FEAT_VISUAL
1031 VIsual_active = FALSE;
1032 # endif
1033 got_int = TRUE;
1034 need_wait_return = FALSE;
1035 global_busy = FALSE;
1036 exmode_active = 0;
1037 skip_redraw = FALSE;
1038 RedrawingDisabled = 0;
1039 no_wait_return = 0;
1040 # ifdef FEAT_EVAL
1041 emsg_skip = 0;
1042 # endif
1043 emsg_off = 0;
1044 # ifdef FEAT_MOUSE
1045 setmouse();
1046 # endif
1047 settmode(TMODE_RAW);
1048 starttermcap();
1049 scroll_start();
1050 redraw_later_clear();
1052 #endif
1054 clear_oparg(&oa);
1055 while (!cmdwin
1056 #ifdef FEAT_CMDWIN
1057 || cmdwin_result == 0
1058 #endif
1061 #if FEAT_GUI_MACVIM
1062 // Cocoa needs an NSAutoreleasePool in place or it will leak memory.
1063 // This particular pool gets released once every loop.
1064 id autoreleasePool = objc_msgSend(objc_msgSend(
1065 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
1066 ), sel_getUid("init"));
1067 #endif
1069 if (stuff_empty())
1071 did_check_timestamps = FALSE;
1072 if (need_check_timestamps)
1073 check_timestamps(FALSE);
1074 if (need_wait_return) /* if wait_return still needed ... */
1075 wait_return(FALSE); /* ... call it now */
1076 if (need_start_insertmode && goto_im()
1077 #ifdef FEAT_VISUAL
1078 && !VIsual_active
1079 #endif
1082 need_start_insertmode = FALSE;
1083 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1084 /* skip the fileinfo message now, because it would be shown
1085 * after insert mode finishes! */
1086 need_fileinfo = FALSE;
1090 /* Reset "got_int" now that we got back to the main loop. Except when
1091 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1092 * the ":g" command.
1093 * For ":g/pat/vi" we reset "got_int" when used once. When used
1094 * a second time we go back to Ex mode and abort the ":g" command. */
1095 if (got_int)
1097 if (noexmode && global_busy && !exmode_active && previous_got_int)
1099 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1100 * used and keep "got_int" set, so that it aborts ":g". */
1101 exmode_active = EXMODE_NORMAL;
1102 State = NORMAL;
1104 else if (!global_busy || !exmode_active)
1106 if (!quit_more)
1107 (void)vgetc(); /* flush all buffers */
1108 got_int = FALSE;
1110 previous_got_int = TRUE;
1112 else
1113 previous_got_int = FALSE;
1115 if (!exmode_active)
1116 msg_scroll = FALSE;
1117 quit_more = FALSE;
1120 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1121 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1122 * update cursor and redraw.
1124 if (skip_redraw || exmode_active)
1125 skip_redraw = FALSE;
1126 else if (do_redraw || stuff_empty())
1128 #ifdef FEAT_AUTOCMD
1129 /* Trigger CursorMoved if the cursor moved. */
1130 if (!finish_op && has_cursormoved()
1131 && !equalpos(last_cursormoved, curwin->w_cursor))
1133 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1134 last_cursormoved = curwin->w_cursor;
1136 #endif
1138 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1139 /* Scroll-binding for diff mode may have been postponed until
1140 * here. Avoids doing it for every change. */
1141 if (diff_need_scrollbind)
1143 check_scrollbind((linenr_T)0, 0L);
1144 diff_need_scrollbind = FALSE;
1146 #endif
1147 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1148 /* Include a closed fold completely in the Visual area. */
1149 foldAdjustVisual();
1150 #endif
1151 #ifdef FEAT_FOLDING
1153 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1154 * contain the cursor.
1155 * When 'foldopen' is "all", open the fold(s) under the cursor.
1156 * This may mark the window for redrawing.
1158 if (hasAnyFolding(curwin) && !char_avail())
1160 foldCheckClose();
1161 if (fdo_flags & FDO_ALL)
1162 foldOpenCursor();
1164 #endif
1167 * Before redrawing, make sure w_topline is correct, and w_leftcol
1168 * if lines don't wrap, and w_skipcol if lines wrap.
1170 update_topline();
1171 validate_cursor();
1173 #ifdef FEAT_VISUAL
1174 if (VIsual_active)
1175 update_curbuf(INVERTED);/* update inverted part */
1176 else
1177 #endif
1178 if (must_redraw)
1179 update_screen(0);
1180 else if (redraw_cmdline || clear_cmdline)
1181 showmode();
1182 #ifdef FEAT_WINDOWS
1183 redraw_statuslines();
1184 #endif
1185 #ifdef FEAT_TITLE
1186 if (need_maketitle)
1187 maketitle();
1188 #endif
1189 /* display message after redraw */
1190 if (keep_msg != NULL)
1192 char_u *p;
1194 /* msg_attr_keep() will set keep_msg to NULL, must free the
1195 * string here. */
1196 p = keep_msg;
1197 keep_msg = NULL;
1198 msg_attr(p, keep_msg_attr);
1199 vim_free(p);
1201 if (need_fileinfo) /* show file info after redraw */
1203 fileinfo(FALSE, TRUE, FALSE);
1204 need_fileinfo = FALSE;
1207 emsg_on_display = FALSE; /* can delete error message now */
1208 did_emsg = FALSE;
1209 msg_didany = FALSE; /* reset lines_left in msg_start() */
1210 may_clear_sb_text(); /* clear scroll-back text on next msg */
1211 showruler(FALSE);
1213 setcursor();
1214 cursor_on();
1216 do_redraw = FALSE;
1218 #ifdef FEAT_GUI
1219 if (need_mouse_correct)
1220 gui_mouse_correct();
1221 #endif
1224 * Update w_curswant if w_set_curswant has been set.
1225 * Postponed until here to avoid computing w_virtcol too often.
1227 update_curswant();
1229 #ifdef FEAT_EVAL
1231 * May perform garbage collection when waiting for a character, but
1232 * only at the very toplevel. Otherwise we may be using a List or
1233 * Dict internally somewhere.
1234 * "may_garbage_collect" is reset in vgetc() which is invoked through
1235 * do_exmode() and normal_cmd().
1237 may_garbage_collect = (!cmdwin && !noexmode);
1238 #endif
1240 * If we're invoked as ex, do a round of ex commands.
1241 * Otherwise, get and execute a normal mode command.
1243 if (exmode_active)
1245 if (noexmode) /* End of ":global/path/visual" commands */
1246 return;
1247 do_exmode(exmode_active == EXMODE_VIM);
1249 else
1250 normal_cmd(&oa, TRUE);
1252 #if FEAT_GUI_MACVIM
1253 // TODO! Make sure there are no continue statements that will cause
1254 // this not to be called or MacVim will leak memory!
1255 objc_msgSend(autoreleasePool, sel_getUid("release"));
1256 #endif
1261 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO) \
1262 || defined(FEAT_GUI_MACVIM)
1264 * Exit, but leave behind swap files for modified buffers.
1266 void
1267 getout_preserve_modified(exitval)
1268 int exitval;
1270 # if defined(SIGHUP) && defined(SIG_IGN)
1271 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1272 * makes Vim exit and then handling SIGHUP causes various reentrance
1273 * problems. */
1274 signal(SIGHUP, SIG_IGN);
1275 # endif
1277 ml_close_notmod(); /* close all not-modified buffers */
1278 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1279 ml_close_all(FALSE); /* close all memfiles, without deleting */
1280 getout(exitval); /* exit Vim properly */
1282 #endif
1285 /* Exit properly */
1286 void
1287 getout(exitval)
1288 int exitval;
1290 #ifdef FEAT_AUTOCMD
1291 buf_T *buf;
1292 win_T *wp;
1293 tabpage_T *tp, *next_tp;
1294 #endif
1296 exiting = TRUE;
1298 /* When running in Ex mode an error causes us to exit with a non-zero exit
1299 * code. POSIX requires this, although it's not 100% clear from the
1300 * standard. */
1301 if (exmode_active)
1302 exitval += ex_exitval;
1304 /* Position the cursor on the last screen line, below all the text */
1305 #ifdef FEAT_GUI
1306 if (!gui.in_use)
1307 #endif
1308 windgoto((int)Rows - 1, 0);
1310 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1311 /* Optionally print hashtable efficiency. */
1312 hash_debug_results();
1313 #endif
1315 #ifdef FEAT_GUI
1316 msg_didany = FALSE;
1317 #endif
1319 #ifdef FEAT_AUTOCMD
1320 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1321 # if defined FEAT_WINDOWS
1322 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1324 next_tp = tp->tp_next;
1325 for (wp = (tp == curtab)
1326 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1328 buf = wp->w_buffer;
1329 if (buf->b_changedtick != -1)
1331 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1332 FALSE, buf);
1333 buf->b_changedtick = -1; /* note that we did it already */
1334 /* start all over, autocommands may mess up the lists */
1335 next_tp = first_tabpage;
1336 break;
1340 # else
1341 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1342 # endif
1344 /* Trigger BufUnload for buffers that are loaded */
1345 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1346 if (buf->b_ml.ml_mfp != NULL)
1348 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1349 FALSE, buf);
1350 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1351 break;
1353 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1354 #endif
1356 #ifdef FEAT_VIMINFO
1357 if (*p_viminfo != NUL)
1358 /* Write out the registers, history, marks etc, to the viminfo file */
1359 write_viminfo(NULL, FALSE);
1360 #endif
1362 #ifdef FEAT_AUTOCMD
1363 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1364 #endif
1366 #ifdef FEAT_PROFILE
1367 profile_dump();
1368 #endif
1370 if (did_emsg
1371 #ifdef FEAT_GUI
1372 || (gui.in_use && msg_didany && p_verbose > 0)
1373 #endif
1376 /* give the user a chance to read the (error) message */
1377 no_wait_return = FALSE;
1378 wait_return(FALSE);
1381 #ifdef FEAT_AUTOCMD
1382 /* Position the cursor again, the autocommands may have moved it */
1383 # ifdef FEAT_GUI
1384 if (!gui.in_use)
1385 # endif
1386 windgoto((int)Rows - 1, 0);
1387 #endif
1389 #ifdef FEAT_MZSCHEME
1390 mzscheme_end();
1391 #endif
1392 #ifdef FEAT_TCL
1393 tcl_end();
1394 #endif
1395 #ifdef FEAT_RUBY
1396 ruby_end();
1397 #endif
1398 #ifdef FEAT_PYTHON
1399 python_end();
1400 #endif
1401 #ifdef FEAT_PERL
1402 perl_end();
1403 #endif
1404 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1405 iconv_end();
1406 #endif
1407 #ifdef FEAT_NETBEANS_INTG
1408 netbeans_end();
1409 #endif
1410 #ifdef FEAT_ODB_EDITOR
1411 odb_end();
1412 #endif
1413 #ifdef FEAT_CSCOPE
1414 cs_end();
1415 #endif
1416 #ifdef FEAT_EVAL
1417 if (garbage_collect_at_exit)
1418 garbage_collect();
1419 #endif
1421 mch_exit(exitval);
1425 * Get a (optional) count for a Vim argument.
1427 static int
1428 get_number_arg(p, idx, def)
1429 char_u *p; /* pointer to argument */
1430 int *idx; /* index in argument, is incremented */
1431 int def; /* default value */
1433 if (vim_isdigit(p[*idx]))
1435 def = atoi((char *)&(p[*idx]));
1436 while (vim_isdigit(p[*idx]))
1437 *idx = *idx + 1;
1439 return def;
1442 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1444 * Setup to use the current locale (for ctype() and many other things).
1446 static void
1447 init_locale()
1449 setlocale(LC_ALL, "");
1451 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1452 /* Make sure strtod() uses a decimal point, not a comma. */
1453 setlocale(LC_NUMERIC, "C");
1454 # endif
1456 # ifdef WIN32
1457 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1458 * text while it's expecting text in the current locale. This call avoids
1459 * that. */
1460 setlocale(LC_CTYPE, "C");
1461 # endif
1463 # ifdef FEAT_GETTEXT
1465 int mustfree = FALSE;
1466 char_u *p;
1468 # ifdef DYNAMIC_GETTEXT
1469 /* Initialize the gettext library */
1470 dyn_libintl_init(NULL);
1471 # endif
1472 /* expand_env() doesn't work yet, because chartab[] is not initialized
1473 * yet, call vim_getenv() directly */
1474 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1475 if (p != NULL && *p != NUL)
1477 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1478 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1480 if (mustfree)
1481 vim_free(p);
1482 textdomain(VIMPACKAGE);
1484 # endif
1486 #endif
1489 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1490 * If the executable name starts with "r" we disable shell commands.
1491 * If the next character is "e" we run in Easy mode.
1492 * If the next character is "g" we run the GUI version.
1493 * If the next characters are "view" we start in readonly mode.
1494 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1495 * If the next characters are "ex" we start in Ex mode. If it's followed
1496 * by "im" use improved Ex mode.
1498 static void
1499 parse_command_name(parmp)
1500 mparm_T *parmp;
1502 char_u *initstr;
1504 initstr = gettail((char_u *)parmp->argv[0]);
1506 #ifdef MACOS_X_UNIX
1507 /* An issue has been seen when launching Vim in such a way that
1508 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1509 * executable or a symbolic link of it. Until this issue is resolved
1510 * we prohibit the GUI from being used.
1512 if (STRCMP(initstr, parmp->argv[0]) == 0)
1513 disallow_gui = TRUE;
1515 /* TODO: On MacOS X default to gui if argv[0] ends in:
1516 * /Vim.app/Contents/MacOS/Vim */
1517 #endif
1519 #ifdef FEAT_EVAL
1520 set_vim_var_string(VV_PROGNAME, initstr, -1);
1521 #endif
1523 if (TOLOWER_ASC(initstr[0]) == 'r')
1525 restricted = TRUE;
1526 ++initstr;
1529 /* Avoid using evim mode for "editor". */
1530 if (TOLOWER_ASC(initstr[0]) == 'e'
1531 && (TOLOWER_ASC(initstr[1]) == 'v'
1532 || TOLOWER_ASC(initstr[1]) == 'g'))
1534 #ifdef FEAT_GUI
1535 gui.starting = TRUE;
1536 #endif
1537 parmp->evim_mode = TRUE;
1538 ++initstr;
1541 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1542 if (TOLOWER_ASC(initstr[0]) == 'g')
1544 main_start_gui();
1545 #ifdef FEAT_GUI
1546 ++initstr;
1547 #endif
1550 if (STRNICMP(initstr, "view", 4) == 0)
1552 readonlymode = TRUE;
1553 curbuf->b_p_ro = TRUE;
1554 p_uc = 10000; /* don't update very often */
1555 initstr += 4;
1557 else if (STRNICMP(initstr, "vim", 3) == 0)
1558 initstr += 3;
1560 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1561 if (STRICMP(initstr, "diff") == 0)
1563 #ifdef FEAT_DIFF
1564 parmp->diff_mode = TRUE;
1565 #else
1566 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1567 mch_errmsg("\n");
1568 mch_exit(2);
1569 #endif
1572 if (STRNICMP(initstr, "ex", 2) == 0)
1574 if (STRNICMP(initstr + 2, "im", 2) == 0)
1575 exmode_active = EXMODE_VIM;
1576 else
1577 exmode_active = EXMODE_NORMAL;
1578 change_compatible(TRUE); /* set 'compatible' */
1583 * Get the name of the display, before gui_prepare() removes it from
1584 * argv[]. Used for the xterm-clipboard display.
1586 * Also find the --server... arguments and --socketid and --windowid
1588 /*ARGSUSED*/
1589 static void
1590 early_arg_scan(parmp)
1591 mparm_T *parmp;
1593 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1594 || !defined(FEAT_NETBEANS_INTG)
1595 int argc = parmp->argc;
1596 char **argv = parmp->argv;
1597 int i;
1599 for (i = 1; i < argc; i++)
1601 if (STRCMP(argv[i], "--") == 0)
1602 break;
1603 # ifdef FEAT_XCLIPBOARD
1604 else if (STRICMP(argv[i], "-display") == 0
1605 # if defined(FEAT_GUI_GTK)
1606 || STRICMP(argv[i], "--display") == 0
1607 # endif
1610 if (i == argc - 1)
1611 mainerr_arg_missing((char_u *)argv[i]);
1612 xterm_display = argv[++i];
1614 # endif
1615 # ifdef FEAT_CLIENTSERVER
1616 else if (STRICMP(argv[i], "--servername") == 0)
1618 if (i == argc - 1)
1619 mainerr_arg_missing((char_u *)argv[i]);
1620 parmp->serverName_arg = (char_u *)argv[++i];
1622 else if (STRICMP(argv[i], "--serverlist") == 0)
1623 parmp->serverArg = TRUE;
1624 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1626 parmp->serverArg = TRUE;
1627 # ifdef FEAT_GUI
1628 if (strstr(argv[i], "-wait") != 0)
1629 /* don't fork() when starting the GUI to edit files ourself */
1630 gui.dofork = FALSE;
1631 # endif
1633 # endif
1635 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1636 # ifdef FEAT_GUI_W32
1637 else if (STRICMP(argv[i], "--windowid") == 0)
1638 # else
1639 else if (STRICMP(argv[i], "--socketid") == 0)
1640 # endif
1642 long_u id;
1643 int count;
1645 if (i == argc - 1)
1646 mainerr_arg_missing((char_u *)argv[i]);
1647 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1648 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1649 else
1650 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1651 if (count != 1)
1652 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1653 else
1654 # ifdef FEAT_GUI_W32
1655 win_socket_id = id;
1656 # else
1657 gtk_socket_id = id;
1658 # endif
1659 i++;
1661 # endif
1662 # ifdef FEAT_GUI_GTK
1663 else if (STRICMP(argv[i], "--echo-wid") == 0)
1664 echo_wid_arg = TRUE;
1665 # endif
1666 # ifndef FEAT_NETBEANS_INTG
1667 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
1669 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1670 mch_exit(2);
1672 # endif
1675 #endif
1679 * Scan the command line arguments.
1681 static void
1682 command_line_scan(parmp)
1683 mparm_T *parmp;
1685 int argc = parmp->argc;
1686 char **argv = parmp->argv;
1687 int argv_idx; /* index in argv[n][] */
1688 int had_minmin = FALSE; /* found "--" argument */
1689 int want_argument; /* option argument with argument */
1690 int c;
1691 char_u *p = NULL;
1692 long n;
1694 --argc;
1695 ++argv;
1696 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1697 while (argc > 0)
1700 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1702 if (argv[0][0] == '+' && !had_minmin)
1704 if (parmp->n_commands >= MAX_ARG_CMDS)
1705 mainerr(ME_EXTRA_CMD, NULL);
1706 argv_idx = -1; /* skip to next argument */
1707 if (argv[0][1] == NUL)
1708 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1709 else
1710 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1714 * Optional argument.
1716 else if (argv[0][0] == '-' && !had_minmin)
1718 want_argument = FALSE;
1719 c = argv[0][argv_idx++];
1720 #ifdef VMS
1722 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1723 * and "-/X" as "-X".
1725 if (c == '/')
1727 c = argv[0][argv_idx++];
1728 c = TOUPPER_ASC(c);
1730 else
1731 c = TOLOWER_ASC(c);
1732 #endif
1733 switch (c)
1735 case NUL: /* "vim -" read from stdin */
1736 /* "ex -" silent mode */
1737 if (exmode_active)
1738 silent_mode = TRUE;
1739 else
1741 if (parmp->edit_type != EDIT_NONE)
1742 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1743 parmp->edit_type = EDIT_STDIN;
1744 read_cmd_fd = 2; /* read from stderr instead of stdin */
1746 argv_idx = -1; /* skip to next argument */
1747 break;
1749 case '-': /* "--" don't take any more option arguments */
1750 /* "--help" give help message */
1751 /* "--version" give version message */
1752 /* "--literal" take files literally */
1753 /* "--nofork" don't fork */
1754 /* "--noplugin[s]" skip plugins */
1755 /* "--cmd <cmd>" execute cmd before vimrc */
1756 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1757 usage();
1758 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1760 Columns = 80; /* need to init Columns */
1761 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1762 list_version();
1763 msg_putchar('\n');
1764 msg_didout = FALSE;
1765 mch_exit(0);
1767 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1769 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1770 parmp->literal = TRUE;
1771 #endif
1773 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1775 #ifdef FEAT_GUI
1776 gui.dofork = FALSE; /* don't fork() when starting GUI */
1777 #endif
1779 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1780 p_lpl = FALSE;
1781 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1783 want_argument = TRUE;
1784 argv_idx += 3;
1786 #ifdef FEAT_CLIENTSERVER
1787 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1788 ; /* already processed -- no arg */
1789 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1790 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1792 /* already processed -- snatch the following arg */
1793 if (argc > 1)
1795 --argc;
1796 ++argv;
1799 #endif
1800 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1801 # ifdef FEAT_GUI_GTK
1802 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1803 # else
1804 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1805 # endif
1807 /* already processed -- snatch the following arg */
1808 if (argc > 1)
1810 --argc;
1811 ++argv;
1814 #endif
1815 #ifdef FEAT_GUI_GTK
1816 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1818 /* already processed, skip */
1820 #endif
1821 else
1823 if (argv[0][argv_idx])
1824 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1825 had_minmin = TRUE;
1827 if (!want_argument)
1828 argv_idx = -1; /* skip to next argument */
1829 break;
1831 case 'A': /* "-A" start in Arabic mode */
1832 #ifdef FEAT_ARABIC
1833 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1834 #else
1835 mch_errmsg(_(e_noarabic));
1836 mch_exit(2);
1837 #endif
1838 break;
1840 case 'b': /* "-b" binary mode */
1841 /* Needs to be effective before expanding file names, because
1842 * for Win32 this makes us edit a shortcut file itself,
1843 * instead of the file it links to. */
1844 set_options_bin(curbuf->b_p_bin, 1, 0);
1845 curbuf->b_p_bin = 1; /* binary file I/O */
1846 break;
1848 case 'C': /* "-C" Compatible */
1849 change_compatible(TRUE);
1850 break;
1852 case 'e': /* "-e" Ex mode */
1853 exmode_active = EXMODE_NORMAL;
1854 break;
1856 case 'E': /* "-E" Improved Ex mode */
1857 exmode_active = EXMODE_VIM;
1858 break;
1860 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1861 window directly, not with newcli */
1862 #ifdef FEAT_GUI
1863 gui.dofork = FALSE; /* don't fork() when starting GUI */
1864 #endif
1865 break;
1867 case 'g': /* "-g" start GUI */
1868 main_start_gui();
1869 break;
1871 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1872 #ifdef FEAT_FKMAP
1873 p_fkmap = TRUE;
1874 set_option_value((char_u *)"rl", 1L, NULL, 0);
1875 #else
1876 mch_errmsg(_(e_nofarsi));
1877 mch_exit(2);
1878 #endif
1879 break;
1881 case 'h': /* "-h" give help message */
1882 #ifdef FEAT_GUI_GNOME
1883 /* Tell usage() to exit for "gvim". */
1884 gui.starting = FALSE;
1885 #endif
1886 usage();
1887 break;
1889 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1890 #ifdef FEAT_RIGHTLEFT
1891 p_hkmap = TRUE;
1892 set_option_value((char_u *)"rl", 1L, NULL, 0);
1893 #else
1894 mch_errmsg(_(e_nohebrew));
1895 mch_exit(2);
1896 #endif
1897 break;
1899 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1900 #ifdef FEAT_LISP
1901 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1902 p_sm = TRUE;
1903 #endif
1904 break;
1906 case 'M': /* "-M" no changes or writing of files */
1907 reset_modifiable();
1908 /* FALLTHROUGH */
1910 case 'm': /* "-m" no writing of files */
1911 p_write = FALSE;
1912 break;
1914 case 'y': /* "-y" easy mode */
1915 #ifdef FEAT_GUI
1916 gui.starting = TRUE; /* start GUI a bit later */
1917 #endif
1918 parmp->evim_mode = TRUE;
1919 break;
1921 case 'N': /* "-N" Nocompatible */
1922 change_compatible(FALSE);
1923 break;
1925 case 'n': /* "-n" no swap file */
1926 parmp->no_swap_file = TRUE;
1927 break;
1929 case 'p': /* "-p[N]" open N tab pages */
1930 #if defined(TARGET_API_MAC_OSX) && !defined(FEAT_GUI_MACVIM)
1931 /* For some reason on MacOS X, an argument like:
1932 -psn_0_10223617 is passed in when invoke from Finder
1933 or with the 'open' command */
1934 if (argv[0][argv_idx] == 's')
1936 argv_idx = -1; /* bypass full -psn */
1937 main_start_gui();
1938 break;
1940 #endif
1941 #ifdef FEAT_WINDOWS
1942 /* default is 0: open window for each file */
1943 parmp->window_count = get_number_arg((char_u *)argv[0],
1944 &argv_idx, 0);
1945 parmp->window_layout = WIN_TABS;
1946 #endif
1947 break;
1949 case 'o': /* "-o[N]" open N horizontal split windows */
1950 #ifdef FEAT_WINDOWS
1951 /* default is 0: open window for each file */
1952 parmp->window_count = get_number_arg((char_u *)argv[0],
1953 &argv_idx, 0);
1954 parmp->window_layout = WIN_HOR;
1955 #endif
1956 break;
1958 case 'O': /* "-O[N]" open N vertical split windows */
1959 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1960 /* default is 0: open window for each file */
1961 parmp->window_count = get_number_arg((char_u *)argv[0],
1962 &argv_idx, 0);
1963 parmp->window_layout = WIN_VER;
1964 #endif
1965 break;
1967 #ifdef FEAT_QUICKFIX
1968 case 'q': /* "-q" QuickFix mode */
1969 if (parmp->edit_type != EDIT_NONE)
1970 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1971 parmp->edit_type = EDIT_QF;
1972 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1974 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1975 argv_idx = -1;
1977 else if (argc > 1) /* "-q {errorfile}" */
1978 want_argument = TRUE;
1979 break;
1980 #endif
1982 case 'R': /* "-R" readonly mode */
1983 readonlymode = TRUE;
1984 curbuf->b_p_ro = TRUE;
1985 p_uc = 10000; /* don't update very often */
1986 break;
1988 case 'r': /* "-r" recovery mode */
1989 case 'L': /* "-L" recovery mode */
1990 recoverymode = 1;
1991 break;
1993 case 's':
1994 if (exmode_active) /* "-s" silent (batch) mode */
1995 silent_mode = TRUE;
1996 else /* "-s {scriptin}" read from script file */
1997 want_argument = TRUE;
1998 break;
2000 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2001 if (parmp->edit_type != EDIT_NONE)
2002 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2003 parmp->edit_type = EDIT_TAG;
2004 if (argv[0][argv_idx]) /* "-t{tag}" */
2006 parmp->tagname = (char_u *)argv[0] + argv_idx;
2007 argv_idx = -1;
2009 else /* "-t {tag}" */
2010 want_argument = TRUE;
2011 break;
2013 #ifdef FEAT_EVAL
2014 case 'D': /* "-D" Debugging */
2015 parmp->use_debug_break_level = 9999;
2016 break;
2017 #endif
2018 #ifdef FEAT_DIFF
2019 case 'd': /* "-d" 'diff' */
2020 # ifdef AMIGA
2021 /* check for "-dev {device}" */
2022 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2023 want_argument = TRUE;
2024 else
2025 # endif
2026 parmp->diff_mode = TRUE;
2027 break;
2028 #endif
2029 case 'V': /* "-V{N}" Verbose level */
2030 /* default is 10: a little bit verbose */
2031 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2032 if (argv[0][argv_idx] != NUL)
2034 set_option_value((char_u *)"verbosefile", 0L,
2035 (char_u *)argv[0] + argv_idx, 0);
2036 argv_idx = (int)STRLEN(argv[0]);
2038 break;
2040 case 'v': /* "-v" Vi-mode (as if called "vi") */
2041 exmode_active = 0;
2042 #ifdef FEAT_GUI
2043 gui.starting = FALSE; /* don't start GUI */
2044 #endif
2045 break;
2047 case 'w': /* "-w{number}" set window height */
2048 /* "-w {scriptout}" write to script */
2049 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2051 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2052 set_option_value((char_u *)"window", n, NULL, 0);
2053 break;
2055 want_argument = TRUE;
2056 break;
2058 #ifdef FEAT_CRYPT
2059 case 'x': /* "-x" encrypted reading/writing of files */
2060 parmp->ask_for_key = TRUE;
2061 break;
2062 #endif
2064 case 'X': /* "-X" don't connect to X server */
2065 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2066 x_no_connect = TRUE;
2067 #endif
2068 break;
2070 case 'Z': /* "-Z" restricted mode */
2071 restricted = TRUE;
2072 break;
2074 case 'c': /* "-c{command}" or "-c {command}" execute
2075 command */
2076 if (argv[0][argv_idx] != NUL)
2078 if (parmp->n_commands >= MAX_ARG_CMDS)
2079 mainerr(ME_EXTRA_CMD, NULL);
2080 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2081 + argv_idx;
2082 argv_idx = -1;
2083 break;
2085 /*FALLTHROUGH*/
2086 case 'S': /* "-S {file}" execute Vim script */
2087 case 'i': /* "-i {viminfo}" use for viminfo */
2088 #ifndef FEAT_DIFF
2089 case 'd': /* "-d {device}" device (for Amiga) */
2090 #endif
2091 case 'T': /* "-T {terminal}" terminal name */
2092 case 'u': /* "-u {vimrc}" vim inits file */
2093 case 'U': /* "-U {gvimrc}" gvim inits file */
2094 case 'W': /* "-W {scriptout}" overwrite */
2095 #ifdef FEAT_GUI_W32
2096 case 'P': /* "-P {parent title}" MDI parent */
2097 #endif
2098 want_argument = TRUE;
2099 break;
2101 default:
2102 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2106 * Handle option arguments with argument.
2108 if (want_argument)
2111 * Check for garbage immediately after the option letter.
2113 if (argv[0][argv_idx] != NUL)
2114 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2116 --argc;
2117 if (argc < 1 && c != 'S')
2118 mainerr_arg_missing((char_u *)argv[0]);
2119 ++argv;
2120 argv_idx = -1;
2122 switch (c)
2124 case 'c': /* "-c {command}" execute command */
2125 case 'S': /* "-S {file}" execute Vim script */
2126 if (parmp->n_commands >= MAX_ARG_CMDS)
2127 mainerr(ME_EXTRA_CMD, NULL);
2128 if (c == 'S')
2130 char *a;
2132 if (argc < 1)
2133 /* "-S" without argument: use default session file
2134 * name. */
2135 a = SESSION_FILE;
2136 else if (argv[0][0] == '-')
2138 /* "-S" followed by another option: use default
2139 * session file name. */
2140 a = SESSION_FILE;
2141 ++argc;
2142 --argv;
2144 else
2145 a = argv[0];
2146 p = alloc((unsigned)(STRLEN(a) + 4));
2147 if (p == NULL)
2148 mch_exit(2);
2149 sprintf((char *)p, "so %s", a);
2150 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2151 parmp->commands[parmp->n_commands++] = p;
2153 else
2154 parmp->commands[parmp->n_commands++] =
2155 (char_u *)argv[0];
2156 break;
2158 case '-': /* "--cmd {command}" execute command */
2159 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2160 mainerr(ME_EXTRA_CMD, NULL);
2161 parmp->pre_commands[parmp->n_pre_commands++] =
2162 (char_u *)argv[0];
2163 break;
2165 /* case 'd': -d {device} is handled in mch_check_win() for the
2166 * Amiga */
2168 #ifdef FEAT_QUICKFIX
2169 case 'q': /* "-q {errorfile}" QuickFix mode */
2170 parmp->use_ef = (char_u *)argv[0];
2171 break;
2172 #endif
2174 case 'i': /* "-i {viminfo}" use for viminfo */
2175 use_viminfo = (char_u *)argv[0];
2176 break;
2178 case 's': /* "-s {scriptin}" read from script file */
2179 if (scriptin[0] != NULL)
2181 scripterror:
2182 mch_errmsg(_("Attempt to open script file again: \""));
2183 mch_errmsg(argv[-1]);
2184 mch_errmsg(" ");
2185 mch_errmsg(argv[0]);
2186 mch_errmsg("\"\n");
2187 mch_exit(2);
2189 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2191 mch_errmsg(_("Cannot open for reading: \""));
2192 mch_errmsg(argv[0]);
2193 mch_errmsg("\"\n");
2194 mch_exit(2);
2196 if (save_typebuf() == FAIL)
2197 mch_exit(2); /* out of memory */
2198 break;
2200 case 't': /* "-t {tag}" */
2201 parmp->tagname = (char_u *)argv[0];
2202 break;
2204 case 'T': /* "-T {terminal}" terminal name */
2206 * The -T term argument is always available and when
2207 * HAVE_TERMLIB is supported it overrides the environment
2208 * variable TERM.
2210 #ifdef FEAT_GUI
2211 if (term_is_gui((char_u *)argv[0]))
2212 gui.starting = TRUE; /* start GUI a bit later */
2213 else
2214 #endif
2215 parmp->term = (char_u *)argv[0];
2216 break;
2218 case 'u': /* "-u {vimrc}" vim inits file */
2219 parmp->use_vimrc = (char_u *)argv[0];
2220 break;
2222 case 'U': /* "-U {gvimrc}" gvim inits file */
2223 #ifdef FEAT_GUI
2224 use_gvimrc = (char_u *)argv[0];
2225 #endif
2226 break;
2228 case 'w': /* "-w {nr}" 'window' value */
2229 /* "-w {scriptout}" append to script file */
2230 if (vim_isdigit(*((char_u *)argv[0])))
2232 argv_idx = 0;
2233 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2234 set_option_value((char_u *)"window", n, NULL, 0);
2235 argv_idx = -1;
2236 break;
2238 /*FALLTHROUGH*/
2239 case 'W': /* "-W {scriptout}" overwrite script file */
2240 if (scriptout != NULL)
2241 goto scripterror;
2242 if ((scriptout = mch_fopen(argv[0],
2243 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2245 mch_errmsg(_("Cannot open for script output: \""));
2246 mch_errmsg(argv[0]);
2247 mch_errmsg("\"\n");
2248 mch_exit(2);
2250 break;
2252 #ifdef FEAT_GUI_W32
2253 case 'P': /* "-P {parent title}" MDI parent */
2254 gui_mch_set_parent(argv[0]);
2255 break;
2256 #endif
2262 * File name argument.
2264 else
2266 argv_idx = -1; /* skip to next argument */
2268 /* Check for only one type of editing. */
2269 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2270 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2271 parmp->edit_type = EDIT_FILE;
2273 #ifdef MSWIN
2274 /* Remember if the argument was a full path before changing
2275 * slashes to backslashes. */
2276 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2277 parmp->full_path = TRUE;
2278 #endif
2280 /* Add the file to the global argument list. */
2281 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2282 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2283 mch_exit(2);
2284 #ifdef FEAT_DIFF
2285 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2286 && !mch_isdir(alist_name(&GARGLIST[0])))
2288 char_u *r;
2290 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2291 if (r != NULL)
2293 vim_free(p);
2294 p = r;
2297 #endif
2298 #if defined(__CYGWIN32__) && !defined(WIN32)
2300 * If vim is invoked by non-Cygwin tools, convert away any
2301 * DOS paths, so things like .swp files are created correctly.
2302 * Look for evidence of non-Cygwin paths before we bother.
2303 * This is only for when using the Unix files.
2305 if (strpbrk(p, "\\:") != NULL)
2307 char posix_path[PATH_MAX];
2309 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2310 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2311 # else
2312 cygwin_conv_to_posix_path(p, posix_path);
2313 # endif
2314 vim_free(p);
2315 p = vim_strsave(posix_path);
2316 if (p == NULL)
2317 mch_exit(2);
2319 #endif
2321 #ifdef USE_FNAME_CASE
2322 /* Make the case of the file name match the actual file. */
2323 fname_case(p, 0);
2324 #endif
2326 alist_add(&global_alist, p,
2327 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2328 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2329 #else
2330 2 /* add buffer number now and use curbuf */
2331 #endif
2334 #if defined(FEAT_MBYTE) && defined(WIN32)
2336 /* Remember this argument has been added to the argument list.
2337 * Needed when 'encoding' is changed. */
2338 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2339 # ifdef FEAT_DIFF
2340 parmp->diff_mode
2341 # else
2342 FALSE
2343 # endif
2346 #endif
2350 * If there are no more letters after the current "-", go to next
2351 * argument. argv_idx is set to -1 when the current argument is to be
2352 * skipped.
2354 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2356 --argc;
2357 ++argv;
2358 argv_idx = 1;
2362 #ifdef FEAT_EVAL
2363 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2364 * one. */
2365 if (parmp->n_commands > 0)
2367 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2368 if (p != NULL)
2370 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2371 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2372 vim_free(p);
2375 #endif
2379 * Print a warning if stdout is not a terminal.
2380 * When starting in Ex mode and commands come from a file, set Silent mode.
2382 static void
2383 check_tty(parmp)
2384 mparm_T *parmp;
2386 int input_isatty; /* is active input a terminal? */
2388 input_isatty = mch_input_isatty();
2389 if (exmode_active)
2391 if (!input_isatty)
2392 silent_mode = TRUE;
2394 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2395 #ifdef FEAT_GUI
2396 /* don't want the delay when started from the desktop */
2397 && !gui.starting
2398 #endif
2401 #ifdef NBDEBUG
2403 * This shouldn't be necessary. But if I run netbeans with the log
2404 * output coming to the console and XOpenDisplay fails, I get vim
2405 * trying to start with input/output to my console tty. This fills my
2406 * input buffer so fast I can't even kill the process in under 2
2407 * minutes (and it beeps continuously the whole time :-)
2409 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2411 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2412 exit(1);
2414 #endif
2415 if (!parmp->stdout_isatty)
2416 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2417 if (!input_isatty)
2418 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2419 out_flush();
2420 if (scriptin[0] == NULL)
2421 ui_delay(2000L, TRUE);
2422 TIME_MSG("Warning delay");
2427 * Read text from stdin.
2429 static void
2430 read_stdin()
2432 int i;
2434 #if defined(HAS_SWAP_EXISTS_ACTION)
2435 /* When getting the ATTENTION prompt here, use a dialog */
2436 swap_exists_action = SEA_DIALOG;
2437 #endif
2438 no_wait_return = TRUE;
2439 i = msg_didany;
2440 set_buflisted(TRUE);
2441 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2442 no_wait_return = FALSE;
2443 msg_didany = i;
2444 TIME_MSG("reading stdin");
2445 #if defined(HAS_SWAP_EXISTS_ACTION)
2446 check_swap_exists_action();
2447 #endif
2448 #if !(defined(AMIGA) || defined(MACOS))
2450 * Close stdin and dup it from stderr. Required for GPM to work
2451 * properly, and for running external commands.
2452 * Is there any other system that cannot do this?
2454 close(0);
2455 ignored = dup(2);
2456 #endif
2460 * Create the requested number of windows and edit buffers in them.
2461 * Also does recovery if "recoverymode" set.
2463 /*ARGSUSED*/
2464 static void
2465 create_windows(parmp)
2466 mparm_T *parmp;
2468 #ifdef FEAT_WINDOWS
2469 int dorewind;
2470 int done = 0;
2473 * Create the number of windows that was requested.
2475 if (parmp->window_count == -1) /* was not set */
2476 parmp->window_count = 1;
2477 if (parmp->window_count == 0)
2478 parmp->window_count = GARGCOUNT;
2479 if (parmp->window_count > 1)
2481 /* Don't change the windows if there was a command in .vimrc that
2482 * already split some windows */
2483 if (parmp->window_layout == 0)
2484 parmp->window_layout = WIN_HOR;
2485 if (parmp->window_layout == WIN_TABS)
2487 parmp->window_count = make_tabpages(parmp->window_count);
2488 TIME_MSG("making tab pages");
2490 else if (firstwin->w_next == NULL)
2492 parmp->window_count = make_windows(parmp->window_count,
2493 parmp->window_layout == WIN_VER);
2494 TIME_MSG("making windows");
2496 else
2497 parmp->window_count = win_count();
2499 else
2500 parmp->window_count = 1;
2501 #endif
2503 if (recoverymode) /* do recover */
2505 msg_scroll = TRUE; /* scroll message up */
2506 ml_recover();
2507 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2508 getout(1);
2509 do_modelines(0); /* do modelines */
2511 else
2514 * Open a buffer for windows that don't have one yet.
2515 * Commands in the .vimrc might have loaded a file or split the window.
2516 * Watch out for autocommands that delete a window.
2518 #ifdef FEAT_AUTOCMD
2520 * Don't execute Win/Buf Enter/Leave autocommands here
2522 ++autocmd_no_enter;
2523 ++autocmd_no_leave;
2524 #endif
2525 #ifdef FEAT_WINDOWS
2526 dorewind = TRUE;
2527 while (done++ < 1000)
2529 if (dorewind)
2531 if (parmp->window_layout == WIN_TABS)
2532 goto_tabpage(1);
2533 else
2534 curwin = firstwin;
2536 else if (parmp->window_layout == WIN_TABS)
2538 if (curtab->tp_next == NULL)
2539 break;
2540 goto_tabpage(0);
2542 else
2544 if (curwin->w_next == NULL)
2545 break;
2546 curwin = curwin->w_next;
2548 dorewind = FALSE;
2549 #endif
2550 curbuf = curwin->w_buffer;
2551 if (curbuf->b_ml.ml_mfp == NULL)
2553 #ifdef FEAT_FOLDING
2554 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2555 if (p_fdls >= 0)
2556 curwin->w_p_fdl = p_fdls;
2557 #endif
2558 #if defined(HAS_SWAP_EXISTS_ACTION)
2559 /* When getting the ATTENTION prompt here, use a dialog */
2560 swap_exists_action = SEA_DIALOG;
2561 #endif
2562 set_buflisted(TRUE);
2563 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2565 #if defined(HAS_SWAP_EXISTS_ACTION)
2566 if (swap_exists_action == SEA_QUIT)
2568 if (got_int || only_one_window())
2570 /* abort selected or quit and only one window */
2571 did_emsg = FALSE; /* avoid hit-enter prompt */
2572 getout(1);
2574 /* We can't close the window, it would disturb what
2575 * happens next. Clear the file name and set the arg
2576 * index to -1 to delete it later. */
2577 setfname(curbuf, NULL, NULL, FALSE);
2578 curwin->w_arg_idx = -1;
2579 swap_exists_action = SEA_NONE;
2581 else
2582 handle_swap_exists(NULL);
2583 #endif
2584 #ifdef FEAT_AUTOCMD
2585 dorewind = TRUE; /* start again */
2586 #endif
2588 #ifdef FEAT_WINDOWS
2589 ui_breakcheck();
2590 if (got_int)
2592 (void)vgetc(); /* only break the file loading, not the rest */
2593 break;
2596 #endif
2597 #ifdef FEAT_WINDOWS
2598 if (parmp->window_layout == WIN_TABS)
2599 goto_tabpage(1);
2600 else
2601 curwin = firstwin;
2602 curbuf = curwin->w_buffer;
2603 #endif
2604 #ifdef FEAT_AUTOCMD
2605 --autocmd_no_enter;
2606 --autocmd_no_leave;
2607 #endif
2611 #ifdef FEAT_WINDOWS
2613 * If opened more than one window, start editing files in the other
2614 * windows. make_windows() has already opened the windows.
2616 static void
2617 edit_buffers(parmp)
2618 mparm_T *parmp;
2620 int arg_idx; /* index in argument list */
2621 int i;
2622 int advance = TRUE;
2624 # ifdef FEAT_AUTOCMD
2626 * Don't execute Win/Buf Enter/Leave autocommands here
2628 ++autocmd_no_enter;
2629 ++autocmd_no_leave;
2630 # endif
2632 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2633 if (curwin->w_arg_idx == -1)
2635 win_close(curwin, TRUE);
2636 advance = FALSE;
2639 arg_idx = 1;
2640 for (i = 1; i < parmp->window_count; ++i)
2642 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2643 if (curwin->w_arg_idx == -1)
2645 ++arg_idx;
2646 win_close(curwin, TRUE);
2647 advance = FALSE;
2648 continue;
2651 if (advance)
2653 if (parmp->window_layout == WIN_TABS)
2655 if (curtab->tp_next == NULL) /* just checking */
2656 break;
2657 goto_tabpage(0);
2659 else
2661 if (curwin->w_next == NULL) /* just checking */
2662 break;
2663 win_enter(curwin->w_next, FALSE);
2666 advance = TRUE;
2668 /* Only open the file if there is no file in this window yet (that can
2669 * happen when .vimrc contains ":sall"). */
2670 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2672 curwin->w_arg_idx = arg_idx;
2673 /* Edit file from arg list, if there is one. When "Quit" selected
2674 * at the ATTENTION prompt close the window. */
2675 # ifdef HAS_SWAP_EXISTS_ACTION
2676 swap_exists_did_quit = FALSE;
2677 # endif
2678 (void)do_ecmd(0, arg_idx < GARGCOUNT
2679 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2680 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
2681 # ifdef HAS_SWAP_EXISTS_ACTION
2682 if (swap_exists_did_quit)
2684 /* abort or quit selected */
2685 if (got_int || only_one_window())
2687 /* abort selected and only one window */
2688 did_emsg = FALSE; /* avoid hit-enter prompt */
2689 getout(1);
2691 win_close(curwin, TRUE);
2692 advance = FALSE;
2694 # endif
2695 if (arg_idx == GARGCOUNT - 1)
2696 arg_had_last = TRUE;
2697 ++arg_idx;
2699 ui_breakcheck();
2700 if (got_int)
2702 (void)vgetc(); /* only break the file loading, not the rest */
2703 break;
2707 if (parmp->window_layout == WIN_TABS)
2708 goto_tabpage(1);
2709 # ifdef FEAT_AUTOCMD
2710 --autocmd_no_enter;
2711 # endif
2712 win_enter(firstwin, FALSE); /* back to first window */
2713 # ifdef FEAT_AUTOCMD
2714 --autocmd_no_leave;
2715 # endif
2716 TIME_MSG("editing files in windows");
2717 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2718 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2720 #endif /* FEAT_WINDOWS */
2723 * Execute the commands from --cmd arguments "cmds[cnt]".
2725 static void
2726 exe_pre_commands(parmp)
2727 mparm_T *parmp;
2729 char_u **cmds = parmp->pre_commands;
2730 int cnt = parmp->n_pre_commands;
2731 int i;
2733 if (cnt > 0)
2735 curwin->w_cursor.lnum = 0; /* just in case.. */
2736 sourcing_name = (char_u *)_("pre-vimrc command line");
2737 # ifdef FEAT_EVAL
2738 current_SID = SID_CMDARG;
2739 # endif
2740 for (i = 0; i < cnt; ++i)
2741 do_cmdline_cmd(cmds[i]);
2742 sourcing_name = NULL;
2743 # ifdef FEAT_EVAL
2744 current_SID = 0;
2745 # endif
2746 TIME_MSG("--cmd commands");
2751 * Execute "+", "-c" and "-S" arguments.
2753 static void
2754 exe_commands(parmp)
2755 mparm_T *parmp;
2757 int i;
2760 * We start commands on line 0, make "vim +/pat file" match a
2761 * pattern on line 1. But don't move the cursor when an autocommand
2762 * with g`" was used.
2764 msg_scroll = TRUE;
2765 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2766 curwin->w_cursor.lnum = 0;
2767 sourcing_name = (char_u *)"command line";
2768 #ifdef FEAT_EVAL
2769 current_SID = SID_CARG;
2770 #endif
2771 for (i = 0; i < parmp->n_commands; ++i)
2773 do_cmdline_cmd(parmp->commands[i]);
2774 if (parmp->cmds_tofree[i])
2775 vim_free(parmp->commands[i]);
2777 sourcing_name = NULL;
2778 #ifdef FEAT_EVAL
2779 current_SID = 0;
2780 #endif
2781 if (curwin->w_cursor.lnum == 0)
2782 curwin->w_cursor.lnum = 1;
2784 if (!exmode_active)
2785 msg_scroll = FALSE;
2787 #ifdef FEAT_QUICKFIX
2788 /* When started with "-q errorfile" jump to first error again. */
2789 if (parmp->edit_type == EDIT_QF)
2790 qf_jump(NULL, 0, 0, FALSE);
2791 #endif
2792 TIME_MSG("executing command arguments");
2796 * Source startup scripts.
2798 static void
2799 source_startup_scripts(parmp)
2800 mparm_T *parmp;
2802 int i;
2805 * For "evim" source evim.vim first of all, so that the user can overrule
2806 * any things he doesn't like.
2808 if (parmp->evim_mode)
2810 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2811 TIME_MSG("source evim file");
2815 * If -u argument given, use only the initializations from that file and
2816 * nothing else.
2818 if (parmp->use_vimrc != NULL)
2820 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2821 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2823 #ifdef FEAT_GUI
2824 if (use_gvimrc == NULL) /* don't load gvimrc either */
2825 use_gvimrc = parmp->use_vimrc;
2826 #endif
2827 if (parmp->use_vimrc[2] == 'N')
2828 p_lpl = FALSE; /* don't load plugins either */
2830 else
2832 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2833 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2836 else if (!silent_mode)
2838 #ifdef AMIGA
2839 struct Process *proc = (struct Process *)FindTask(0L);
2840 APTR save_winptr = proc->pr_WindowPtr;
2842 /* Avoid a requester here for a volume that doesn't exist. */
2843 proc->pr_WindowPtr = (APTR)-1L;
2844 #endif
2847 * Get system wide defaults, if the file name is defined.
2849 #ifdef SYS_VIMRC_FILE
2850 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2851 #endif
2852 #if defined(MACOS_X) && !defined(FEAT_GUI_MACVIM)
2853 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2854 #endif
2857 * Try to read initialization commands from the following places:
2858 * - environment variable VIMINIT
2859 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2860 * - second user vimrc file ($VIM/.vimrc for Dos)
2861 * - environment variable EXINIT
2862 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2863 * - second user exrc file ($VIM/.exrc for Dos)
2864 * The first that exists is used, the rest is ignored.
2866 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2868 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2869 #ifdef USR_VIMRC_FILE2
2870 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2871 DOSO_VIMRC) == FAIL
2872 #endif
2873 #ifdef USR_VIMRC_FILE3
2874 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2875 DOSO_VIMRC) == FAIL
2876 #endif
2877 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2878 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2880 #ifdef USR_EXRC_FILE2
2881 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2882 #endif
2887 * Read initialization commands from ".vimrc" or ".exrc" in current
2888 * directory. This is only done if the 'exrc' option is set.
2889 * Because of security reasons we disallow shell and write commands
2890 * now, except for unix if the file is owned by the user or 'secure'
2891 * option has been reset in environment of global ".exrc" or ".vimrc".
2892 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2893 * SYS_VIMRC_FILE.
2895 if (p_exrc)
2897 #if defined(UNIX) || defined(VMS)
2898 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2899 if (!file_owned(VIMRC_FILE))
2900 #endif
2901 secure = p_secure;
2903 i = FAIL;
2904 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2905 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2906 #ifdef USR_VIMRC_FILE2
2907 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2908 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2909 #endif
2910 #ifdef USR_VIMRC_FILE3
2911 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2912 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2913 #endif
2914 #ifdef SYS_VIMRC_FILE
2915 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2916 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2917 #endif
2919 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2921 if (i == FAIL)
2923 #if defined(UNIX) || defined(VMS)
2924 /* if ".exrc" is not owned by user set 'secure' mode */
2925 if (!file_owned(EXRC_FILE))
2926 secure = p_secure;
2927 else
2928 secure = 0;
2929 #endif
2930 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2931 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2932 #ifdef USR_EXRC_FILE2
2933 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2934 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2935 #endif
2937 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2940 if (secure == 2)
2941 need_wait_return = TRUE;
2942 secure = 0;
2943 #ifdef AMIGA
2944 proc->pr_WindowPtr = save_winptr;
2945 #endif
2947 TIME_MSG("sourcing vimrc file(s)");
2951 * Setup to start using the GUI. Exit with an error when not available.
2953 static void
2954 main_start_gui()
2956 #ifdef FEAT_GUI
2957 gui.starting = TRUE; /* start GUI a bit later */
2958 #else
2959 mch_errmsg(_(e_nogvim));
2960 mch_errmsg("\n");
2961 mch_exit(2);
2962 #endif
2966 * Get an environment variable, and execute it as Ex commands.
2967 * Returns FAIL if the environment variable was not executed, OK otherwise.
2970 process_env(env, is_viminit)
2971 char_u *env;
2972 int is_viminit; /* when TRUE, called for VIMINIT */
2974 char_u *initstr;
2975 char_u *save_sourcing_name;
2976 linenr_T save_sourcing_lnum;
2977 #ifdef FEAT_EVAL
2978 scid_T save_sid;
2979 #endif
2981 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2983 if (is_viminit)
2984 vimrc_found(NULL, NULL);
2985 save_sourcing_name = sourcing_name;
2986 save_sourcing_lnum = sourcing_lnum;
2987 sourcing_name = env;
2988 sourcing_lnum = 0;
2989 #ifdef FEAT_EVAL
2990 save_sid = current_SID;
2991 current_SID = SID_ENV;
2992 #endif
2993 do_cmdline_cmd(initstr);
2994 sourcing_name = save_sourcing_name;
2995 sourcing_lnum = save_sourcing_lnum;
2996 #ifdef FEAT_EVAL
2997 current_SID = save_sid;;
2998 #endif
2999 return OK;
3001 return FAIL;
3004 #if defined(UNIX) || defined(VMS)
3006 * Return TRUE if we are certain the user owns the file "fname".
3007 * Used for ".vimrc" and ".exrc".
3008 * Use both stat() and lstat() for extra security.
3010 static int
3011 file_owned(fname)
3012 char *fname;
3014 struct stat s;
3015 # ifdef UNIX
3016 uid_t uid = getuid();
3017 # else /* VMS */
3018 uid_t uid = ((getgid() << 16) | getuid());
3019 # endif
3021 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3022 # ifdef HAVE_LSTAT
3023 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3024 # endif
3027 #endif
3030 * Give an error message main_errors["n"] and exit.
3032 static void
3033 mainerr(n, str)
3034 int n; /* one of the ME_ defines */
3035 char_u *str; /* extra argument or NULL */
3037 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3038 reset_signals(); /* kill us with CTRL-C here, if you like */
3039 #endif
3041 mch_errmsg(longVersion);
3042 mch_errmsg("\n");
3043 mch_errmsg(_(main_errors[n]));
3044 if (str != NULL)
3046 mch_errmsg(": \"");
3047 mch_errmsg((char *)str);
3048 mch_errmsg("\"");
3050 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
3052 mch_exit(1);
3055 void
3056 mainerr_arg_missing(str)
3057 char_u *str;
3059 mainerr(ME_ARG_MISSING, str);
3063 * print a message with three spaces prepended and '\n' appended.
3065 static void
3066 main_msg(s)
3067 char *s;
3069 mch_msg(" ");
3070 mch_msg(s);
3071 mch_msg("\n");
3075 * Print messages for "vim -h" or "vim --help" and exit.
3077 static void
3078 usage()
3080 int i;
3081 static char *(use[]) =
3083 N_("[file ..] edit specified file(s)"),
3084 N_("- read text from stdin"),
3085 N_("-t tag edit file where tag is defined"),
3086 #ifdef FEAT_QUICKFIX
3087 N_("-q [errorfile] edit file with first error")
3088 #endif
3091 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3092 reset_signals(); /* kill us with CTRL-C here, if you like */
3093 #endif
3095 mch_msg(longVersion);
3096 mch_msg(_("\n\nusage:"));
3097 for (i = 0; ; ++i)
3099 mch_msg(_(" vim [arguments] "));
3100 mch_msg(_(use[i]));
3101 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3102 break;
3103 mch_msg(_("\n or:"));
3105 #ifdef VMS
3106 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3107 #endif
3109 mch_msg(_("\n\nArguments:\n"));
3110 main_msg(_("--\t\t\tOnly file names after this"));
3111 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3112 main_msg(_("--literal\t\tDon't expand wildcards"));
3113 #endif
3114 #ifdef FEAT_OLE
3115 main_msg(_("-register\t\tRegister this gvim for OLE"));
3116 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3117 #endif
3118 #ifdef FEAT_GUI
3119 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3120 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3121 #endif
3122 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3123 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3124 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3125 #ifdef FEAT_DIFF
3126 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3127 #endif
3128 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3129 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3130 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3131 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3132 main_msg(_("-M\t\t\tModifications in text not allowed"));
3133 main_msg(_("-b\t\t\tBinary mode"));
3134 #ifdef FEAT_LISP
3135 main_msg(_("-l\t\t\tLisp mode"));
3136 #endif
3137 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3138 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3139 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3140 #ifdef FEAT_EVAL
3141 main_msg(_("-D\t\t\tDebugging mode"));
3142 #endif
3143 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3144 main_msg(_("-r\t\t\tList swap files and exit"));
3145 main_msg(_("-r (with file name)\tRecover crashed session"));
3146 main_msg(_("-L\t\t\tSame as -r"));
3147 #ifdef AMIGA
3148 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3149 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3150 #endif
3151 #ifdef FEAT_ARABIC
3152 main_msg(_("-A\t\t\tstart in Arabic mode"));
3153 #endif
3154 #ifdef FEAT_RIGHTLEFT
3155 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3156 #endif
3157 #ifdef FEAT_FKMAP
3158 main_msg(_("-F\t\t\tStart in Farsi mode"));
3159 #endif
3160 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3161 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3162 #ifdef FEAT_GUI
3163 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3164 #endif
3165 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3166 #ifdef FEAT_WINDOWS
3167 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3168 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3169 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3170 #endif
3171 main_msg(_("+\t\t\tStart at end of file"));
3172 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3173 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3174 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3175 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3176 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3177 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3178 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3179 #ifdef FEAT_CRYPT
3180 main_msg(_("-x\t\t\tEdit encrypted files"));
3181 #endif
3182 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3183 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3184 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3185 # endif
3186 main_msg(_("-X\t\t\tDo not connect to X server"));
3187 #endif
3188 #ifdef FEAT_CLIENTSERVER
3189 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3190 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3191 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3192 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3193 # ifdef FEAT_WINDOWS
3194 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3195 # endif
3196 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3197 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3198 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3199 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3200 #endif
3201 #ifdef FEAT_VIMINFO
3202 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3203 #endif
3204 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3205 main_msg(_("--version\t\tPrint version information and exit"));
3207 #ifdef FEAT_GUI_X11
3208 # ifdef FEAT_GUI_MOTIF
3209 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3210 # else
3211 # ifdef FEAT_GUI_ATHENA
3212 # ifdef FEAT_GUI_NEXTAW
3213 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3214 # else
3215 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3216 # endif
3217 # endif
3218 # endif
3219 main_msg(_("-display <display>\tRun vim on <display>"));
3220 main_msg(_("-iconic\t\tStart vim iconified"));
3221 # if 0
3222 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3223 mch_msg(_("\t\t\t (Unimplemented)\n"));
3224 # endif
3225 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3226 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3227 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3228 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3229 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3230 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3231 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3232 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3233 # ifdef FEAT_GUI_ATHENA
3234 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3235 # endif
3236 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3237 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3238 main_msg(_("-xrm <resource>\tSet the specified resource"));
3239 #endif /* FEAT_GUI_X11 */
3240 #if defined(FEAT_GUI) && defined(RISCOS)
3241 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3242 main_msg(_("--columns <number>\tInitial width of window in columns"));
3243 main_msg(_("--rows <number>\tInitial height of window in rows"));
3244 #endif
3245 #ifdef FEAT_GUI_GTK
3246 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3247 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3248 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3249 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3250 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3251 # ifdef HAVE_GTK2
3252 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3253 # endif
3254 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3255 #endif
3256 #ifdef FEAT_GUI_W32
3257 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3258 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3259 #endif
3261 #ifdef FEAT_GUI_GNOME
3262 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3263 if (gui.starting)
3264 mch_msg("\n");
3265 else
3266 #endif
3267 mch_exit(0);
3270 #if defined(HAS_SWAP_EXISTS_ACTION)
3272 * Check the result of the ATTENTION dialog:
3273 * When "Quit" selected, exit Vim.
3274 * When "Recover" selected, recover the file.
3276 static void
3277 check_swap_exists_action()
3279 if (swap_exists_action == SEA_QUIT)
3280 getout(1);
3281 handle_swap_exists(NULL);
3283 #endif
3285 #if defined(STARTUPTIME) || defined(PROTO)
3286 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3288 static struct timeval prev_timeval;
3291 * Save the previous time before doing something that could nest.
3292 * set "*tv_rel" to the time elapsed so far.
3294 void
3295 time_push(tv_rel, tv_start)
3296 void *tv_rel, *tv_start;
3298 *((struct timeval *)tv_rel) = prev_timeval;
3299 gettimeofday(&prev_timeval, NULL);
3300 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3301 - ((struct timeval *)tv_rel)->tv_usec;
3302 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3303 - ((struct timeval *)tv_rel)->tv_sec;
3304 if (((struct timeval *)tv_rel)->tv_usec < 0)
3306 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3307 --((struct timeval *)tv_rel)->tv_sec;
3309 *(struct timeval *)tv_start = prev_timeval;
3313 * Compute the previous time after doing something that could nest.
3314 * Subtract "*tp" from prev_timeval;
3315 * Note: The arguments are (void *) to avoid trouble with systems that don't
3316 * have struct timeval.
3318 void
3319 time_pop(tp)
3320 void *tp; /* actually (struct timeval *) */
3322 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3323 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3324 if (prev_timeval.tv_usec < 0)
3326 prev_timeval.tv_usec += 1000000;
3327 --prev_timeval.tv_sec;
3331 static void
3332 time_diff(then, now)
3333 struct timeval *then;
3334 struct timeval *now;
3336 long usec;
3337 long msec;
3339 usec = now->tv_usec - then->tv_usec;
3340 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3341 usec = usec % 1000L;
3342 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3345 void
3346 time_msg(msg, tv_start)
3347 char *msg;
3348 void *tv_start; /* only for do_source: start time; actually
3349 (struct timeval *) */
3351 static struct timeval start;
3352 struct timeval now;
3354 if (time_fd != NULL)
3356 if (strstr(msg, "STARTING") != NULL)
3358 gettimeofday(&start, NULL);
3359 prev_timeval = start;
3360 fprintf(time_fd, "\n\ntimes in msec\n");
3361 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3362 fprintf(time_fd, " clock elapsed: other lines\n\n");
3364 gettimeofday(&now, NULL);
3365 time_diff(&start, &now);
3366 if (((struct timeval *)tv_start) != NULL)
3368 fprintf(time_fd, " ");
3369 time_diff(((struct timeval *)tv_start), &now);
3371 fprintf(time_fd, " ");
3372 time_diff(&prev_timeval, &now);
3373 prev_timeval = now;
3374 fprintf(time_fd, ": %s\n", msg);
3378 # ifdef WIN3264
3380 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3383 gettimeofday(struct timeval *tv, char *dummy)
3385 long t = clock();
3386 tv->tv_sec = t / CLOCKS_PER_SEC;
3387 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3388 return 0;
3390 # endif
3392 #endif
3394 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3397 * Common code for the X command server and the Win32 command server.
3400 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3403 * Do the client-server stuff, unless "--servername ''" was used.
3405 static void
3406 exec_on_server(parmp)
3407 mparm_T *parmp;
3409 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3411 # ifdef WIN32
3412 /* Initialise the client/server messaging infrastructure. */
3413 serverInitMessaging();
3414 # endif
3417 * When a command server argument was found, execute it. This may
3418 * exit Vim when it was successful. Otherwise it's executed further
3419 * on. Remember the encoding used here in "serverStrEnc".
3421 if (parmp->serverArg)
3423 cmdsrv_main(&parmp->argc, parmp->argv,
3424 parmp->serverName_arg, &parmp->serverStr);
3425 # ifdef FEAT_MBYTE
3426 parmp->serverStrEnc = vim_strsave(p_enc);
3427 # endif
3430 /* If we're still running, get the name to register ourselves.
3431 * On Win32 can register right now, for X11 need to setup the
3432 * clipboard first, it's further down. */
3433 parmp->servername = serverMakeName(parmp->serverName_arg,
3434 parmp->argv[0]);
3435 # ifdef WIN32
3436 if (parmp->servername != NULL)
3438 serverSetName(parmp->servername);
3439 vim_free(parmp->servername);
3441 # endif
3446 * Prepare for running as a Vim server.
3448 static void
3449 prepare_server(parmp)
3450 mparm_T *parmp;
3452 # if defined(FEAT_X11)
3454 * Register for remote command execution with :serversend and --remote
3455 * unless there was a -X or a --servername '' on the command line.
3456 * Only register nongui-vim's with an explicit --servername argument.
3457 * When running as root --servername is also required.
3459 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3460 # ifdef FEAT_GUI
3461 (gui.in_use
3462 # ifdef UNIX
3463 && getuid() != ROOT_UID
3464 # endif
3465 ) ||
3466 # endif
3467 parmp->serverName_arg != NULL))
3469 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3470 vim_free(parmp->servername);
3471 TIME_MSG("register server name");
3473 else
3474 serverDelayedStartName = parmp->servername;
3475 # endif
3478 * Execute command ourselves if we're here because the send failed (or
3479 * else we would have exited above).
3481 if (parmp->serverStr != NULL)
3483 char_u *p;
3485 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3486 parmp->serverStr, &p));
3487 vim_free(p);
3491 static void
3492 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3493 int *argc;
3494 char **argv;
3495 char_u *serverName_arg;
3496 char_u **serverStr;
3498 char_u *res;
3499 int i;
3500 char_u *sname;
3501 int ret;
3502 int didone = FALSE;
3503 int exiterr = 0;
3504 char **newArgV = argv + 1;
3505 int newArgC = 1,
3506 Argc = *argc;
3507 int argtype;
3508 #define ARGTYPE_OTHER 0
3509 #define ARGTYPE_EDIT 1
3510 #define ARGTYPE_EDIT_WAIT 2
3511 #define ARGTYPE_SEND 3
3512 int silent = FALSE;
3513 int tabs = FALSE;
3514 # ifdef WIN32
3515 HWND srv;
3516 # elif defined(MAC_CLIENTSERVER)
3517 int srv;
3518 # elif defined(FEAT_X11)
3519 Window srv;
3521 setup_term_clip();
3522 # endif
3524 sname = serverMakeName(serverName_arg, argv[0]);
3525 if (sname == NULL)
3526 return;
3529 * Execute the command server related arguments and remove them
3530 * from the argc/argv array; We may have to return into main()
3532 for (i = 1; i < Argc; i++)
3534 res = NULL;
3535 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3537 for (; i < *argc; i++)
3539 *newArgV++ = argv[i];
3540 newArgC++;
3542 break;
3545 if (STRICMP(argv[i], "--remote-send") == 0)
3546 argtype = ARGTYPE_SEND;
3547 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3549 char *p = argv[i] + 8;
3551 argtype = ARGTYPE_EDIT;
3552 while (*p != NUL)
3554 if (STRNICMP(p, "-wait", 5) == 0)
3556 argtype = ARGTYPE_EDIT_WAIT;
3557 p += 5;
3559 else if (STRNICMP(p, "-silent", 7) == 0)
3561 silent = TRUE;
3562 p += 7;
3564 else if (STRNICMP(p, "-tab", 4) == 0)
3566 tabs = TRUE;
3567 p += 4;
3569 else
3571 argtype = ARGTYPE_OTHER;
3572 break;
3576 else
3577 argtype = ARGTYPE_OTHER;
3579 if (argtype != ARGTYPE_OTHER)
3581 if (i == *argc - 1)
3582 mainerr_arg_missing((char_u *)argv[i]);
3583 if (argtype == ARGTYPE_SEND)
3585 *serverStr = (char_u *)argv[i + 1];
3586 i++;
3588 else
3590 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3591 tabs, argtype == ARGTYPE_EDIT_WAIT);
3592 if (*serverStr == NULL)
3594 /* Probably out of memory, exit. */
3595 didone = TRUE;
3596 exiterr = 1;
3597 break;
3599 Argc = i;
3601 # ifdef FEAT_X11
3602 if (xterm_dpy == NULL)
3604 mch_errmsg(_("No display"));
3605 ret = -1;
3607 else
3608 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3609 NULL, &srv, 0, 0, silent);
3610 # elif defined(WIN32) || defined(MAC_CLIENTSERVER)
3611 /* Win32 always works? */
3612 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3613 # endif
3614 if (ret < 0)
3616 if (argtype == ARGTYPE_SEND)
3618 /* Failed to send, abort. */
3619 mch_errmsg(_(": Send failed.\n"));
3620 didone = TRUE;
3621 exiterr = 1;
3623 else if (!silent)
3624 /* Let vim start normally. */
3625 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3626 break;
3629 # ifdef FEAT_GUI_W32
3630 /* Guess that when the server name starts with "g" it's a GUI
3631 * server, which we can bring to the foreground here.
3632 * Foreground() in the server doesn't work very well. */
3633 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3634 SetForegroundWindow(srv);
3635 # endif
3638 * For --remote-wait: Wait until the server did edit each
3639 * file. Also detect that the server no longer runs.
3641 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3643 int numFiles = *argc - i - 1;
3644 int j;
3645 char_u *done = alloc(numFiles);
3646 char_u *p;
3647 # ifdef FEAT_GUI_W32
3648 NOTIFYICONDATA ni;
3649 int count = 0;
3650 extern HWND message_window;
3651 # endif
3653 if (numFiles > 0 && argv[i + 1][0] == '+')
3654 /* Skip "+cmd" argument, don't wait for it to be edited. */
3655 --numFiles;
3657 # ifdef FEAT_GUI_W32
3658 ni.cbSize = sizeof(ni);
3659 ni.hWnd = message_window;
3660 ni.uID = 0;
3661 ni.uFlags = NIF_ICON|NIF_TIP;
3662 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3663 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3664 Shell_NotifyIcon(NIM_ADD, &ni);
3665 # endif
3667 /* Wait for all files to unload in remote */
3668 memset(done, 0, numFiles);
3669 while (memchr(done, 0, numFiles) != NULL)
3671 # ifdef WIN32
3672 p = serverGetReply(srv, NULL, TRUE, TRUE);
3673 if (p == NULL)
3674 break;
3675 # elif defined(FEAT_X11)
3676 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3677 break;
3678 # elif defined(MAC_CLIENTSERVER)
3679 if (serverReadReply(srv, &p) < 0)
3680 break;
3681 # endif
3682 j = atoi((char *)p);
3683 if (j >= 0 && j < numFiles)
3685 # ifdef FEAT_GUI_W32
3686 ++count;
3687 sprintf(ni.szTip, _("%d of %d edited"),
3688 count, numFiles);
3689 Shell_NotifyIcon(NIM_MODIFY, &ni);
3690 # endif
3691 done[j] = 1;
3694 # ifdef FEAT_GUI_W32
3695 Shell_NotifyIcon(NIM_DELETE, &ni);
3696 # endif
3699 else if (STRICMP(argv[i], "--remote-expr") == 0)
3701 if (i == *argc - 1)
3702 mainerr_arg_missing((char_u *)argv[i]);
3703 # ifdef WIN32
3704 /* Win32 always works? */
3705 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3706 &res, NULL, 1, FALSE) < 0)
3707 # elif defined(FEAT_X11)
3708 if (xterm_dpy == NULL)
3709 mch_errmsg(_("No display: Send expression failed.\n"));
3710 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3711 &res, NULL, 1, 1, FALSE) < 0)
3712 # elif defined(MAC_CLIENTSERVER)
3713 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3714 &res, NULL, 1, FALSE) < 0)
3715 # endif
3717 if (res != NULL && *res != NUL)
3719 /* Output error from remote */
3720 mch_errmsg((char *)res);
3721 vim_free(res);
3722 res = NULL;
3724 mch_errmsg(_(": Send expression failed.\n"));
3727 else if (STRICMP(argv[i], "--serverlist") == 0)
3729 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
3730 /* Win32 always works? */
3731 res = serverGetVimNames();
3732 # elif defined(FEAT_X11)
3733 if (xterm_dpy != NULL)
3734 res = serverGetVimNames(xterm_dpy);
3735 # endif
3736 if (called_emsg)
3737 mch_errmsg("\n");
3739 else if (STRICMP(argv[i], "--servername") == 0)
3741 /* Alredy processed. Take it out of the command line */
3742 i++;
3743 continue;
3745 else
3747 *newArgV++ = argv[i];
3748 newArgC++;
3749 continue;
3751 didone = TRUE;
3752 if (res != NULL && *res != NUL)
3754 mch_msg((char *)res);
3755 if (res[STRLEN(res) - 1] != '\n')
3756 mch_msg("\n");
3758 vim_free(res);
3761 if (didone)
3763 display_errors(); /* display any collected messages */
3764 exit(exiterr); /* Mission accomplished - get out */
3767 /* Return back into main() */
3768 *argc = newArgC;
3769 vim_free(sname);
3773 * Build a ":drop" command to send to a Vim server.
3775 static char_u *
3776 build_drop_cmd(filec, filev, tabs, sendReply)
3777 int filec;
3778 char **filev;
3779 int tabs; /* Use ":tab drop" instead of ":drop". */
3780 int sendReply;
3782 garray_T ga;
3783 int i;
3784 char_u *inicmd = NULL;
3785 char_u *p;
3786 char_u cwd[MAXPATHL];
3788 if (filec > 0 && filev[0][0] == '+')
3790 inicmd = (char_u *)filev[0] + 1;
3791 filev++;
3792 filec--;
3794 /* Check if we have at least one argument. */
3795 if (filec <= 0)
3796 mainerr_arg_missing((char_u *)filev[-1]);
3797 if (mch_dirname(cwd, MAXPATHL) != OK)
3798 return NULL;
3799 if ((p = vim_strsave_escaped_ext(cwd,
3800 #ifdef BACKSLASH_IN_FILENAME
3801 "", /* rem_backslash() will tell what chars to escape */
3802 #else
3803 PATH_ESC_CHARS,
3804 #endif
3805 '\\', TRUE)) == NULL)
3806 return NULL;
3807 ga_init2(&ga, 1, 100);
3808 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3809 ga_concat(&ga, p);
3810 vim_free(p);
3812 /* Call inputsave() so that a prompt for an encryption key works. */
3813 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3814 if (tabs)
3815 ga_concat(&ga, (char_u *)"tab ");
3816 ga_concat(&ga, (char_u *)"drop");
3817 for (i = 0; i < filec; i++)
3819 /* On Unix the shell has already expanded the wildcards, don't want to
3820 * do it again in the Vim server. On MS-Windows only escape
3821 * non-wildcard characters. */
3822 p = vim_strsave_escaped((char_u *)filev[i],
3823 #ifdef UNIX
3824 PATH_ESC_CHARS
3825 #else
3826 (char_u *)" \t%#"
3827 #endif
3829 if (p == NULL)
3831 vim_free(ga.ga_data);
3832 return NULL;
3834 ga_concat(&ga, (char_u *)" ");
3835 ga_concat(&ga, p);
3836 vim_free(p);
3838 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3839 * CTRL-\ CTRL-N again. */
3840 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3841 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3842 if (sendReply)
3843 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3844 ga_concat(&ga, (char_u *)"<CR>:");
3845 if (inicmd != NULL)
3847 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3848 * the following commands to be inserted as text. Use a "|",
3849 * hopefully "inicmd" does allow this... */
3850 ga_concat(&ga, inicmd);
3851 ga_concat(&ga, (char_u *)"|");
3853 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3854 * clear command line. */
3855 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3856 ga_append(&ga, NUL);
3857 return ga.ga_data;
3861 * Replace termcodes such as <CR> and insert as key presses if there is room.
3863 void
3864 server_to_input_buf(str)
3865 char_u *str;
3867 char_u *ptr = NULL;
3868 char_u *cpo_save = p_cpo;
3870 /* Set 'cpoptions' the way we want it.
3871 * B set - backslashes are *not* treated specially
3872 * k set - keycodes are *not* reverse-engineered
3873 * < unset - <Key> sequences *are* interpreted
3874 * The last but one parameter of replace_termcodes() is TRUE so that the
3875 * <lt> sequence is recognised - needed for a real backslash.
3877 p_cpo = (char_u *)"Bk";
3878 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3879 p_cpo = cpo_save;
3881 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3884 * Add the string to the input stream.
3885 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3887 * First clear typed characters from the typeahead buffer, there could
3888 * be half a mapping there. Then append to the existing string, so
3889 * that multiple commands from a client are concatenated.
3891 if (typebuf.tb_maplen < typebuf.tb_len)
3892 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3893 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3895 /* Let input_available() know we inserted text in the typeahead
3896 * buffer. */
3897 typebuf_was_filled = TRUE;
3899 vim_free((char_u *)ptr);
3903 * Evaluate an expression that the client sent to a string.
3904 * Handles disabling error messages and disables debugging, otherwise Vim
3905 * hangs, waiting for "cont" to be typed.
3907 char_u *
3908 eval_client_expr_to_string(expr)
3909 char_u *expr;
3911 char_u *res;
3912 int save_dbl = debug_break_level;
3913 int save_ro = redir_off;
3915 debug_break_level = -1;
3916 redir_off = 0;
3917 ++emsg_skip;
3919 res = eval_to_string(expr, NULL, TRUE);
3921 debug_break_level = save_dbl;
3922 redir_off = save_ro;
3923 --emsg_skip;
3925 /* A client can tell us to redraw, but not to display the cursor, so do
3926 * that here. */
3927 setcursor();
3928 out_flush();
3929 #ifdef FEAT_GUI
3930 if (gui.in_use)
3931 gui_update_cursor(FALSE, FALSE);
3932 #endif
3934 return res;
3938 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3939 * return an allocated string. Otherwise return "data".
3940 * "*tofree" is set to the result when it needs to be freed later.
3942 /*ARGSUSED*/
3943 char_u *
3944 serverConvert(client_enc, data, tofree)
3945 char_u *client_enc;
3946 char_u *data;
3947 char_u **tofree;
3949 char_u *res = data;
3951 *tofree = NULL;
3952 # ifdef FEAT_MBYTE
3953 if (client_enc != NULL && p_enc != NULL)
3955 vimconv_T vimconv;
3957 vimconv.vc_type = CONV_NONE;
3958 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3959 && vimconv.vc_type != CONV_NONE)
3961 res = string_convert(&vimconv, data, NULL);
3962 if (res == NULL)
3963 res = data;
3964 else
3965 *tofree = res;
3967 convert_setup(&vimconv, NULL, NULL);
3969 # endif
3970 return res;
3975 * Make our basic server name: use the specified "arg" if given, otherwise use
3976 * the tail of the command "cmd" we were started with.
3977 * Return the name in allocated memory. This doesn't include a serial number.
3979 static char_u *
3980 serverMakeName(arg, cmd)
3981 char_u *arg;
3982 char *cmd;
3984 char_u *p;
3986 if (arg != NULL && *arg != NUL)
3987 p = vim_strsave_up(arg);
3988 else
3990 p = vim_strsave_up(gettail((char_u *)cmd));
3991 /* Remove .exe or .bat from the name. */
3992 if (p != NULL && vim_strchr(p, '.') != NULL)
3993 *vim_strchr(p, '.') = NUL;
3995 return p;
3997 #endif /* FEAT_CLIENTSERVER */
4000 * When FEAT_FKMAP is defined, also compile the Farsi source code.
4002 #if defined(FEAT_FKMAP) || defined(PROTO)
4003 # include "farsi.c"
4004 #endif
4007 * When FEAT_ARABIC is defined, also compile the Arabic source code.
4009 #if defined(FEAT_ARABIC) || defined(PROTO)
4010 # include "arabic.c"
4011 #endif