Build Debug and Release using default SDK
[MacVim.git] / src / main.c
blob80ad39e209bd04d7d2c8054848a9f0f1af80d7bc
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 /* Prepare proper exit*/
1286 void
1287 prepare_getout()
1289 #ifdef FEAT_AUTOCMD
1290 buf_T *buf;
1291 win_T *wp;
1292 tabpage_T *tp, *next_tp;
1293 #endif
1295 exiting = TRUE;
1297 /* Position the cursor on the last screen line, below all the text */
1298 #ifdef FEAT_GUI
1299 if (!gui.in_use)
1300 #endif
1301 windgoto((int)Rows - 1, 0);
1303 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1304 /* Optionally print hashtable efficiency. */
1305 hash_debug_results();
1306 #endif
1308 #ifdef FEAT_GUI
1309 msg_didany = FALSE;
1310 #endif
1312 #ifdef FEAT_AUTOCMD
1313 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1314 # if defined FEAT_WINDOWS
1315 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1317 next_tp = tp->tp_next;
1318 for (wp = (tp == curtab)
1319 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1321 buf = wp->w_buffer;
1322 if (buf->b_changedtick != -1)
1324 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1325 FALSE, buf);
1326 buf->b_changedtick = -1; /* note that we did it already */
1327 /* start all over, autocommands may mess up the lists */
1328 next_tp = first_tabpage;
1329 break;
1333 # else
1334 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1335 # endif
1337 /* Trigger BufUnload for buffers that are loaded */
1338 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1339 if (buf->b_ml.ml_mfp != NULL)
1341 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1342 FALSE, buf);
1343 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1344 break;
1346 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1347 #endif
1349 #ifdef FEAT_VIMINFO
1350 if (*p_viminfo != NUL)
1351 /* Write out the registers, history, marks etc, to the viminfo file */
1352 write_viminfo(NULL, FALSE);
1353 #endif
1355 #ifdef FEAT_AUTOCMD
1356 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1357 #endif
1359 #ifdef FEAT_PROFILE
1360 profile_dump();
1361 #endif
1363 if (did_emsg
1364 #ifdef FEAT_GUI
1365 || (gui.in_use && msg_didany && p_verbose > 0)
1366 #endif
1369 /* give the user a chance to read the (error) message */
1370 no_wait_return = FALSE;
1371 wait_return(FALSE);
1374 #ifdef FEAT_AUTOCMD
1375 /* Position the cursor again, the autocommands may have moved it */
1376 # ifdef FEAT_GUI
1377 if (!gui.in_use)
1378 # endif
1379 windgoto((int)Rows - 1, 0);
1380 #endif
1382 #ifdef FEAT_MZSCHEME
1383 mzscheme_end();
1384 #endif
1385 #ifdef FEAT_TCL
1386 tcl_end();
1387 #endif
1388 #ifdef FEAT_RUBY
1389 ruby_end();
1390 #endif
1391 #ifdef FEAT_PYTHON
1392 python_end();
1393 #endif
1394 #ifdef FEAT_PERL
1395 perl_end();
1396 #endif
1397 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1398 iconv_end();
1399 #endif
1400 #ifdef FEAT_NETBEANS_INTG
1401 netbeans_end();
1402 #endif
1403 #ifdef FEAT_ODB_EDITOR
1404 odb_end();
1405 #endif
1406 #ifdef FEAT_CSCOPE
1407 cs_end();
1408 #endif
1409 #ifdef FEAT_EVAL
1410 if (garbage_collect_at_exit)
1411 garbage_collect();
1412 #endif
1415 /* Exit properly */
1416 void
1417 getout(exitval)
1418 int exitval;
1420 /* When running in Ex mode an error causes us to exit with a non-zero exit
1421 * code. POSIX requires this, although it's not 100% clear from the
1422 * standard. */
1423 if (exmode_active)
1424 exitval += ex_exitval;
1426 prepare_getout();
1427 mch_exit(exitval);
1431 * Get a (optional) count for a Vim argument.
1433 static int
1434 get_number_arg(p, idx, def)
1435 char_u *p; /* pointer to argument */
1436 int *idx; /* index in argument, is incremented */
1437 int def; /* default value */
1439 if (vim_isdigit(p[*idx]))
1441 def = atoi((char *)&(p[*idx]));
1442 while (vim_isdigit(p[*idx]))
1443 *idx = *idx + 1;
1445 return def;
1448 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1450 * Setup to use the current locale (for ctype() and many other things).
1452 static void
1453 init_locale()
1455 setlocale(LC_ALL, "");
1457 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1458 /* Make sure strtod() uses a decimal point, not a comma. */
1459 setlocale(LC_NUMERIC, "C");
1460 # endif
1462 # ifdef WIN32
1463 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1464 * text while it's expecting text in the current locale. This call avoids
1465 * that. */
1466 setlocale(LC_CTYPE, "C");
1467 # endif
1469 # ifdef FEAT_GETTEXT
1471 int mustfree = FALSE;
1472 char_u *p;
1474 # ifdef DYNAMIC_GETTEXT
1475 /* Initialize the gettext library */
1476 dyn_libintl_init(NULL);
1477 # endif
1478 /* expand_env() doesn't work yet, because chartab[] is not initialized
1479 * yet, call vim_getenv() directly */
1480 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1481 if (p != NULL && *p != NUL)
1483 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1484 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1486 if (mustfree)
1487 vim_free(p);
1488 textdomain(VIMPACKAGE);
1490 # endif
1492 #endif
1495 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1496 * If the executable name starts with "r" we disable shell commands.
1497 * If the next character is "e" we run in Easy mode.
1498 * If the next character is "g" we run the GUI version.
1499 * If the next characters are "view" we start in readonly mode.
1500 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1501 * If the next characters are "ex" we start in Ex mode. If it's followed
1502 * by "im" use improved Ex mode.
1504 static void
1505 parse_command_name(parmp)
1506 mparm_T *parmp;
1508 char_u *initstr;
1510 initstr = gettail((char_u *)parmp->argv[0]);
1512 #ifdef MACOS_X_UNIX
1513 /* An issue has been seen when launching Vim in such a way that
1514 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1515 * executable or a symbolic link of it. Until this issue is resolved
1516 * we prohibit the GUI from being used.
1518 if (STRCMP(initstr, parmp->argv[0]) == 0)
1519 disallow_gui = TRUE;
1521 /* TODO: On MacOS X default to gui if argv[0] ends in:
1522 * /Vim.app/Contents/MacOS/Vim */
1523 #endif
1525 #ifdef FEAT_EVAL
1526 set_vim_var_string(VV_PROGNAME, initstr, -1);
1527 #endif
1529 if (TOLOWER_ASC(initstr[0]) == 'r')
1531 restricted = TRUE;
1532 ++initstr;
1535 /* Avoid using evim mode for "editor". */
1536 if (TOLOWER_ASC(initstr[0]) == 'e'
1537 && (TOLOWER_ASC(initstr[1]) == 'v'
1538 || TOLOWER_ASC(initstr[1]) == 'g'))
1540 #ifdef FEAT_GUI
1541 gui.starting = TRUE;
1542 #endif
1543 parmp->evim_mode = TRUE;
1544 ++initstr;
1547 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1548 if (TOLOWER_ASC(initstr[0]) == 'g')
1550 main_start_gui();
1551 #ifdef FEAT_GUI
1552 ++initstr;
1553 #endif
1556 if (STRNICMP(initstr, "view", 4) == 0)
1558 readonlymode = TRUE;
1559 curbuf->b_p_ro = TRUE;
1560 p_uc = 10000; /* don't update very often */
1561 initstr += 4;
1563 else if (STRNICMP(initstr, "vim", 3) == 0)
1564 initstr += 3;
1566 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1567 if (STRICMP(initstr, "diff") == 0)
1569 #ifdef FEAT_DIFF
1570 parmp->diff_mode = TRUE;
1571 #else
1572 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1573 mch_errmsg("\n");
1574 mch_exit(2);
1575 #endif
1578 if (STRNICMP(initstr, "ex", 2) == 0)
1580 if (STRNICMP(initstr + 2, "im", 2) == 0)
1581 exmode_active = EXMODE_VIM;
1582 else
1583 exmode_active = EXMODE_NORMAL;
1584 change_compatible(TRUE); /* set 'compatible' */
1589 * Get the name of the display, before gui_prepare() removes it from
1590 * argv[]. Used for the xterm-clipboard display.
1592 * Also find the --server... arguments and --socketid and --windowid
1594 /*ARGSUSED*/
1595 static void
1596 early_arg_scan(parmp)
1597 mparm_T *parmp;
1599 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1600 || !defined(FEAT_NETBEANS_INTG)
1601 int argc = parmp->argc;
1602 char **argv = parmp->argv;
1603 int i;
1605 for (i = 1; i < argc; i++)
1607 if (STRCMP(argv[i], "--") == 0)
1608 break;
1609 # ifdef FEAT_XCLIPBOARD
1610 else if (STRICMP(argv[i], "-display") == 0
1611 # if defined(FEAT_GUI_GTK)
1612 || STRICMP(argv[i], "--display") == 0
1613 # endif
1616 if (i == argc - 1)
1617 mainerr_arg_missing((char_u *)argv[i]);
1618 xterm_display = argv[++i];
1620 # endif
1621 # ifdef FEAT_CLIENTSERVER
1622 else if (STRICMP(argv[i], "--servername") == 0)
1624 if (i == argc - 1)
1625 mainerr_arg_missing((char_u *)argv[i]);
1626 parmp->serverName_arg = (char_u *)argv[++i];
1628 else if (STRICMP(argv[i], "--serverlist") == 0)
1629 parmp->serverArg = TRUE;
1630 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1632 parmp->serverArg = TRUE;
1633 # ifdef FEAT_GUI
1634 if (strstr(argv[i], "-wait") != 0)
1635 /* don't fork() when starting the GUI to edit files ourself */
1636 gui.dofork = FALSE;
1637 # endif
1639 # endif
1641 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1642 # ifdef FEAT_GUI_W32
1643 else if (STRICMP(argv[i], "--windowid") == 0)
1644 # else
1645 else if (STRICMP(argv[i], "--socketid") == 0)
1646 # endif
1648 long_u id;
1649 int count;
1651 if (i == argc - 1)
1652 mainerr_arg_missing((char_u *)argv[i]);
1653 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1654 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1655 else
1656 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1657 if (count != 1)
1658 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1659 else
1660 # ifdef FEAT_GUI_W32
1661 win_socket_id = id;
1662 # else
1663 gtk_socket_id = id;
1664 # endif
1665 i++;
1667 # endif
1668 # ifdef FEAT_GUI_GTK
1669 else if (STRICMP(argv[i], "--echo-wid") == 0)
1670 echo_wid_arg = TRUE;
1671 # endif
1672 # ifndef FEAT_NETBEANS_INTG
1673 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
1675 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1676 mch_exit(2);
1678 # endif
1681 #endif
1685 * Scan the command line arguments.
1687 static void
1688 command_line_scan(parmp)
1689 mparm_T *parmp;
1691 int argc = parmp->argc;
1692 char **argv = parmp->argv;
1693 int argv_idx; /* index in argv[n][] */
1694 int had_minmin = FALSE; /* found "--" argument */
1695 int want_argument; /* option argument with argument */
1696 int c;
1697 char_u *p = NULL;
1698 long n;
1700 --argc;
1701 ++argv;
1702 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1703 while (argc > 0)
1706 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1708 if (argv[0][0] == '+' && !had_minmin)
1710 if (parmp->n_commands >= MAX_ARG_CMDS)
1711 mainerr(ME_EXTRA_CMD, NULL);
1712 argv_idx = -1; /* skip to next argument */
1713 if (argv[0][1] == NUL)
1714 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1715 else
1716 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1720 * Optional argument.
1722 else if (argv[0][0] == '-' && !had_minmin)
1724 want_argument = FALSE;
1725 c = argv[0][argv_idx++];
1726 #ifdef VMS
1728 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1729 * and "-/X" as "-X".
1731 if (c == '/')
1733 c = argv[0][argv_idx++];
1734 c = TOUPPER_ASC(c);
1736 else
1737 c = TOLOWER_ASC(c);
1738 #endif
1739 switch (c)
1741 case NUL: /* "vim -" read from stdin */
1742 /* "ex -" silent mode */
1743 if (exmode_active)
1744 silent_mode = TRUE;
1745 else
1747 if (parmp->edit_type != EDIT_NONE)
1748 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1749 parmp->edit_type = EDIT_STDIN;
1750 read_cmd_fd = 2; /* read from stderr instead of stdin */
1752 argv_idx = -1; /* skip to next argument */
1753 break;
1755 case '-': /* "--" don't take any more option arguments */
1756 /* "--help" give help message */
1757 /* "--version" give version message */
1758 /* "--literal" take files literally */
1759 /* "--nofork" don't fork */
1760 /* "--noplugin[s]" skip plugins */
1761 /* "--cmd <cmd>" execute cmd before vimrc */
1762 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1763 usage();
1764 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1766 Columns = 80; /* need to init Columns */
1767 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1768 list_version();
1769 msg_putchar('\n');
1770 msg_didout = FALSE;
1771 mch_exit(0);
1773 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1775 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1776 parmp->literal = TRUE;
1777 #endif
1779 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1781 #ifdef FEAT_GUI
1782 gui.dofork = FALSE; /* don't fork() when starting GUI */
1783 #endif
1785 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1786 p_lpl = FALSE;
1787 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1789 want_argument = TRUE;
1790 argv_idx += 3;
1792 #ifdef FEAT_CLIENTSERVER
1793 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1794 ; /* already processed -- no arg */
1795 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1796 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1798 /* already processed -- snatch the following arg */
1799 if (argc > 1)
1801 --argc;
1802 ++argv;
1805 #endif
1806 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1807 # ifdef FEAT_GUI_GTK
1808 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1809 # else
1810 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1811 # endif
1813 /* already processed -- snatch the following arg */
1814 if (argc > 1)
1816 --argc;
1817 ++argv;
1820 #endif
1821 #ifdef FEAT_GUI_GTK
1822 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1824 /* already processed, skip */
1826 #endif
1827 else
1829 if (argv[0][argv_idx])
1830 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1831 had_minmin = TRUE;
1833 if (!want_argument)
1834 argv_idx = -1; /* skip to next argument */
1835 break;
1837 case 'A': /* "-A" start in Arabic mode */
1838 #ifdef FEAT_ARABIC
1839 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1840 #else
1841 mch_errmsg(_(e_noarabic));
1842 mch_exit(2);
1843 #endif
1844 break;
1846 case 'b': /* "-b" binary mode */
1847 /* Needs to be effective before expanding file names, because
1848 * for Win32 this makes us edit a shortcut file itself,
1849 * instead of the file it links to. */
1850 set_options_bin(curbuf->b_p_bin, 1, 0);
1851 curbuf->b_p_bin = 1; /* binary file I/O */
1852 break;
1854 case 'C': /* "-C" Compatible */
1855 change_compatible(TRUE);
1856 break;
1858 case 'e': /* "-e" Ex mode */
1859 exmode_active = EXMODE_NORMAL;
1860 break;
1862 case 'E': /* "-E" Improved Ex mode */
1863 exmode_active = EXMODE_VIM;
1864 break;
1866 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1867 window directly, not with newcli */
1868 #ifdef FEAT_GUI
1869 gui.dofork = FALSE; /* don't fork() when starting GUI */
1870 #endif
1871 break;
1873 case 'g': /* "-g" start GUI */
1874 main_start_gui();
1875 break;
1877 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1878 #ifdef FEAT_FKMAP
1879 p_fkmap = TRUE;
1880 set_option_value((char_u *)"rl", 1L, NULL, 0);
1881 #else
1882 mch_errmsg(_(e_nofarsi));
1883 mch_exit(2);
1884 #endif
1885 break;
1887 case 'h': /* "-h" give help message */
1888 #ifdef FEAT_GUI_GNOME
1889 /* Tell usage() to exit for "gvim". */
1890 gui.starting = FALSE;
1891 #endif
1892 usage();
1893 break;
1895 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1896 #ifdef FEAT_RIGHTLEFT
1897 p_hkmap = TRUE;
1898 set_option_value((char_u *)"rl", 1L, NULL, 0);
1899 #else
1900 mch_errmsg(_(e_nohebrew));
1901 mch_exit(2);
1902 #endif
1903 break;
1905 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1906 #ifdef FEAT_LISP
1907 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1908 p_sm = TRUE;
1909 #endif
1910 break;
1912 case 'M': /* "-M" no changes or writing of files */
1913 reset_modifiable();
1914 /* FALLTHROUGH */
1916 case 'm': /* "-m" no writing of files */
1917 p_write = FALSE;
1918 break;
1920 case 'y': /* "-y" easy mode */
1921 #ifdef FEAT_GUI
1922 gui.starting = TRUE; /* start GUI a bit later */
1923 #endif
1924 parmp->evim_mode = TRUE;
1925 break;
1927 case 'N': /* "-N" Nocompatible */
1928 change_compatible(FALSE);
1929 break;
1931 case 'n': /* "-n" no swap file */
1932 parmp->no_swap_file = TRUE;
1933 break;
1935 case 'p': /* "-p[N]" open N tab pages */
1936 #if defined(TARGET_API_MAC_OSX) && !defined(FEAT_GUI_MACVIM)
1937 /* For some reason on MacOS X, an argument like:
1938 -psn_0_10223617 is passed in when invoke from Finder
1939 or with the 'open' command */
1940 if (argv[0][argv_idx] == 's')
1942 argv_idx = -1; /* bypass full -psn */
1943 main_start_gui();
1944 break;
1946 #endif
1947 #ifdef FEAT_WINDOWS
1948 /* default is 0: open window for each file */
1949 parmp->window_count = get_number_arg((char_u *)argv[0],
1950 &argv_idx, 0);
1951 parmp->window_layout = WIN_TABS;
1952 #endif
1953 break;
1955 case 'o': /* "-o[N]" open N horizontal split windows */
1956 #ifdef FEAT_WINDOWS
1957 /* default is 0: open window for each file */
1958 parmp->window_count = get_number_arg((char_u *)argv[0],
1959 &argv_idx, 0);
1960 parmp->window_layout = WIN_HOR;
1961 #endif
1962 break;
1964 case 'O': /* "-O[N]" open N vertical split windows */
1965 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1966 /* default is 0: open window for each file */
1967 parmp->window_count = get_number_arg((char_u *)argv[0],
1968 &argv_idx, 0);
1969 parmp->window_layout = WIN_VER;
1970 #endif
1971 break;
1973 #ifdef FEAT_QUICKFIX
1974 case 'q': /* "-q" QuickFix mode */
1975 if (parmp->edit_type != EDIT_NONE)
1976 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1977 parmp->edit_type = EDIT_QF;
1978 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1980 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1981 argv_idx = -1;
1983 else if (argc > 1) /* "-q {errorfile}" */
1984 want_argument = TRUE;
1985 break;
1986 #endif
1988 case 'R': /* "-R" readonly mode */
1989 readonlymode = TRUE;
1990 curbuf->b_p_ro = TRUE;
1991 p_uc = 10000; /* don't update very often */
1992 break;
1994 case 'r': /* "-r" recovery mode */
1995 case 'L': /* "-L" recovery mode */
1996 recoverymode = 1;
1997 break;
1999 case 's':
2000 if (exmode_active) /* "-s" silent (batch) mode */
2001 silent_mode = TRUE;
2002 else /* "-s {scriptin}" read from script file */
2003 want_argument = TRUE;
2004 break;
2006 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
2007 if (parmp->edit_type != EDIT_NONE)
2008 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2009 parmp->edit_type = EDIT_TAG;
2010 if (argv[0][argv_idx]) /* "-t{tag}" */
2012 parmp->tagname = (char_u *)argv[0] + argv_idx;
2013 argv_idx = -1;
2015 else /* "-t {tag}" */
2016 want_argument = TRUE;
2017 break;
2019 #ifdef FEAT_EVAL
2020 case 'D': /* "-D" Debugging */
2021 parmp->use_debug_break_level = 9999;
2022 break;
2023 #endif
2024 #ifdef FEAT_DIFF
2025 case 'd': /* "-d" 'diff' */
2026 # ifdef AMIGA
2027 /* check for "-dev {device}" */
2028 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2029 want_argument = TRUE;
2030 else
2031 # endif
2032 parmp->diff_mode = TRUE;
2033 break;
2034 #endif
2035 case 'V': /* "-V{N}" Verbose level */
2036 /* default is 10: a little bit verbose */
2037 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2038 if (argv[0][argv_idx] != NUL)
2040 set_option_value((char_u *)"verbosefile", 0L,
2041 (char_u *)argv[0] + argv_idx, 0);
2042 argv_idx = (int)STRLEN(argv[0]);
2044 break;
2046 case 'v': /* "-v" Vi-mode (as if called "vi") */
2047 exmode_active = 0;
2048 #ifdef FEAT_GUI
2049 gui.starting = FALSE; /* don't start GUI */
2050 #endif
2051 break;
2053 case 'w': /* "-w{number}" set window height */
2054 /* "-w {scriptout}" write to script */
2055 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2057 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2058 set_option_value((char_u *)"window", n, NULL, 0);
2059 break;
2061 want_argument = TRUE;
2062 break;
2064 #ifdef FEAT_CRYPT
2065 case 'x': /* "-x" encrypted reading/writing of files */
2066 parmp->ask_for_key = TRUE;
2067 break;
2068 #endif
2070 case 'X': /* "-X" don't connect to X server */
2071 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2072 x_no_connect = TRUE;
2073 #endif
2074 break;
2076 case 'Z': /* "-Z" restricted mode */
2077 restricted = TRUE;
2078 break;
2080 case 'c': /* "-c{command}" or "-c {command}" execute
2081 command */
2082 if (argv[0][argv_idx] != NUL)
2084 if (parmp->n_commands >= MAX_ARG_CMDS)
2085 mainerr(ME_EXTRA_CMD, NULL);
2086 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2087 + argv_idx;
2088 argv_idx = -1;
2089 break;
2091 /*FALLTHROUGH*/
2092 case 'S': /* "-S {file}" execute Vim script */
2093 case 'i': /* "-i {viminfo}" use for viminfo */
2094 #ifndef FEAT_DIFF
2095 case 'd': /* "-d {device}" device (for Amiga) */
2096 #endif
2097 case 'T': /* "-T {terminal}" terminal name */
2098 case 'u': /* "-u {vimrc}" vim inits file */
2099 case 'U': /* "-U {gvimrc}" gvim inits file */
2100 case 'W': /* "-W {scriptout}" overwrite */
2101 #ifdef FEAT_GUI_W32
2102 case 'P': /* "-P {parent title}" MDI parent */
2103 #endif
2104 want_argument = TRUE;
2105 break;
2107 default:
2108 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2112 * Handle option arguments with argument.
2114 if (want_argument)
2117 * Check for garbage immediately after the option letter.
2119 if (argv[0][argv_idx] != NUL)
2120 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2122 --argc;
2123 if (argc < 1 && c != 'S')
2124 mainerr_arg_missing((char_u *)argv[0]);
2125 ++argv;
2126 argv_idx = -1;
2128 switch (c)
2130 case 'c': /* "-c {command}" execute command */
2131 case 'S': /* "-S {file}" execute Vim script */
2132 if (parmp->n_commands >= MAX_ARG_CMDS)
2133 mainerr(ME_EXTRA_CMD, NULL);
2134 if (c == 'S')
2136 char *a;
2138 if (argc < 1)
2139 /* "-S" without argument: use default session file
2140 * name. */
2141 a = SESSION_FILE;
2142 else if (argv[0][0] == '-')
2144 /* "-S" followed by another option: use default
2145 * session file name. */
2146 a = SESSION_FILE;
2147 ++argc;
2148 --argv;
2150 else
2151 a = argv[0];
2152 p = alloc((unsigned)(STRLEN(a) + 4));
2153 if (p == NULL)
2154 mch_exit(2);
2155 sprintf((char *)p, "so %s", a);
2156 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2157 parmp->commands[parmp->n_commands++] = p;
2159 else
2160 parmp->commands[parmp->n_commands++] =
2161 (char_u *)argv[0];
2162 break;
2164 case '-': /* "--cmd {command}" execute command */
2165 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2166 mainerr(ME_EXTRA_CMD, NULL);
2167 parmp->pre_commands[parmp->n_pre_commands++] =
2168 (char_u *)argv[0];
2169 break;
2171 /* case 'd': -d {device} is handled in mch_check_win() for the
2172 * Amiga */
2174 #ifdef FEAT_QUICKFIX
2175 case 'q': /* "-q {errorfile}" QuickFix mode */
2176 parmp->use_ef = (char_u *)argv[0];
2177 break;
2178 #endif
2180 case 'i': /* "-i {viminfo}" use for viminfo */
2181 use_viminfo = (char_u *)argv[0];
2182 break;
2184 case 's': /* "-s {scriptin}" read from script file */
2185 if (scriptin[0] != NULL)
2187 scripterror:
2188 mch_errmsg(_("Attempt to open script file again: \""));
2189 mch_errmsg(argv[-1]);
2190 mch_errmsg(" ");
2191 mch_errmsg(argv[0]);
2192 mch_errmsg("\"\n");
2193 mch_exit(2);
2195 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2197 mch_errmsg(_("Cannot open for reading: \""));
2198 mch_errmsg(argv[0]);
2199 mch_errmsg("\"\n");
2200 mch_exit(2);
2202 if (save_typebuf() == FAIL)
2203 mch_exit(2); /* out of memory */
2204 break;
2206 case 't': /* "-t {tag}" */
2207 parmp->tagname = (char_u *)argv[0];
2208 break;
2210 case 'T': /* "-T {terminal}" terminal name */
2212 * The -T term argument is always available and when
2213 * HAVE_TERMLIB is supported it overrides the environment
2214 * variable TERM.
2216 #ifdef FEAT_GUI
2217 if (term_is_gui((char_u *)argv[0]))
2218 gui.starting = TRUE; /* start GUI a bit later */
2219 else
2220 #endif
2221 parmp->term = (char_u *)argv[0];
2222 break;
2224 case 'u': /* "-u {vimrc}" vim inits file */
2225 parmp->use_vimrc = (char_u *)argv[0];
2226 break;
2228 case 'U': /* "-U {gvimrc}" gvim inits file */
2229 #ifdef FEAT_GUI
2230 use_gvimrc = (char_u *)argv[0];
2231 #endif
2232 break;
2234 case 'w': /* "-w {nr}" 'window' value */
2235 /* "-w {scriptout}" append to script file */
2236 if (vim_isdigit(*((char_u *)argv[0])))
2238 argv_idx = 0;
2239 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2240 set_option_value((char_u *)"window", n, NULL, 0);
2241 argv_idx = -1;
2242 break;
2244 /*FALLTHROUGH*/
2245 case 'W': /* "-W {scriptout}" overwrite script file */
2246 if (scriptout != NULL)
2247 goto scripterror;
2248 if ((scriptout = mch_fopen(argv[0],
2249 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2251 mch_errmsg(_("Cannot open for script output: \""));
2252 mch_errmsg(argv[0]);
2253 mch_errmsg("\"\n");
2254 mch_exit(2);
2256 break;
2258 #ifdef FEAT_GUI_W32
2259 case 'P': /* "-P {parent title}" MDI parent */
2260 gui_mch_set_parent(argv[0]);
2261 break;
2262 #endif
2268 * File name argument.
2270 else
2272 argv_idx = -1; /* skip to next argument */
2274 /* Check for only one type of editing. */
2275 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2276 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2277 parmp->edit_type = EDIT_FILE;
2279 #ifdef MSWIN
2280 /* Remember if the argument was a full path before changing
2281 * slashes to backslashes. */
2282 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2283 parmp->full_path = TRUE;
2284 #endif
2286 /* Add the file to the global argument list. */
2287 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2288 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2289 mch_exit(2);
2290 #ifdef FEAT_DIFF
2291 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2292 && !mch_isdir(alist_name(&GARGLIST[0])))
2294 char_u *r;
2296 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2297 if (r != NULL)
2299 vim_free(p);
2300 p = r;
2303 #endif
2304 #if defined(__CYGWIN32__) && !defined(WIN32)
2306 * If vim is invoked by non-Cygwin tools, convert away any
2307 * DOS paths, so things like .swp files are created correctly.
2308 * Look for evidence of non-Cygwin paths before we bother.
2309 * This is only for when using the Unix files.
2311 if (strpbrk(p, "\\:") != NULL)
2313 char posix_path[PATH_MAX];
2315 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2316 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2317 # else
2318 cygwin_conv_to_posix_path(p, posix_path);
2319 # endif
2320 vim_free(p);
2321 p = vim_strsave(posix_path);
2322 if (p == NULL)
2323 mch_exit(2);
2325 #endif
2327 #ifdef USE_FNAME_CASE
2328 /* Make the case of the file name match the actual file. */
2329 fname_case(p, 0);
2330 #endif
2332 alist_add(&global_alist, p,
2333 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2334 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2335 #else
2336 2 /* add buffer number now and use curbuf */
2337 #endif
2340 #if defined(FEAT_MBYTE) && defined(WIN32)
2342 /* Remember this argument has been added to the argument list.
2343 * Needed when 'encoding' is changed. */
2344 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2345 # ifdef FEAT_DIFF
2346 parmp->diff_mode
2347 # else
2348 FALSE
2349 # endif
2352 #endif
2356 * If there are no more letters after the current "-", go to next
2357 * argument. argv_idx is set to -1 when the current argument is to be
2358 * skipped.
2360 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2362 --argc;
2363 ++argv;
2364 argv_idx = 1;
2368 #ifdef FEAT_EVAL
2369 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2370 * one. */
2371 if (parmp->n_commands > 0)
2373 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2374 if (p != NULL)
2376 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2377 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2378 vim_free(p);
2381 #endif
2385 * Print a warning if stdout is not a terminal.
2386 * When starting in Ex mode and commands come from a file, set Silent mode.
2388 static void
2389 check_tty(parmp)
2390 mparm_T *parmp;
2392 int input_isatty; /* is active input a terminal? */
2394 input_isatty = mch_input_isatty();
2395 if (exmode_active)
2397 if (!input_isatty)
2398 silent_mode = TRUE;
2400 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2401 #ifdef FEAT_GUI
2402 /* don't want the delay when started from the desktop */
2403 && !gui.starting
2404 #endif
2407 #ifdef NBDEBUG
2409 * This shouldn't be necessary. But if I run netbeans with the log
2410 * output coming to the console and XOpenDisplay fails, I get vim
2411 * trying to start with input/output to my console tty. This fills my
2412 * input buffer so fast I can't even kill the process in under 2
2413 * minutes (and it beeps continuously the whole time :-)
2415 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2417 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2418 exit(1);
2420 #endif
2421 if (!parmp->stdout_isatty)
2422 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2423 if (!input_isatty)
2424 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2425 out_flush();
2426 if (scriptin[0] == NULL)
2427 ui_delay(2000L, TRUE);
2428 TIME_MSG("Warning delay");
2433 * Read text from stdin.
2435 static void
2436 read_stdin()
2438 int i;
2440 #if defined(HAS_SWAP_EXISTS_ACTION)
2441 /* When getting the ATTENTION prompt here, use a dialog */
2442 swap_exists_action = SEA_DIALOG;
2443 #endif
2444 no_wait_return = TRUE;
2445 i = msg_didany;
2446 set_buflisted(TRUE);
2447 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2448 no_wait_return = FALSE;
2449 msg_didany = i;
2450 TIME_MSG("reading stdin");
2451 #if defined(HAS_SWAP_EXISTS_ACTION)
2452 check_swap_exists_action();
2453 #endif
2454 #if !(defined(AMIGA) || defined(MACOS))
2456 * Close stdin and dup it from stderr. Required for GPM to work
2457 * properly, and for running external commands.
2458 * Is there any other system that cannot do this?
2460 close(0);
2461 ignored = dup(2);
2462 #endif
2466 * Create the requested number of windows and edit buffers in them.
2467 * Also does recovery if "recoverymode" set.
2469 /*ARGSUSED*/
2470 static void
2471 create_windows(parmp)
2472 mparm_T *parmp;
2474 #ifdef FEAT_WINDOWS
2475 int dorewind;
2476 int done = 0;
2479 * Create the number of windows that was requested.
2481 if (parmp->window_count == -1) /* was not set */
2482 parmp->window_count = 1;
2483 if (parmp->window_count == 0)
2484 parmp->window_count = GARGCOUNT;
2485 if (parmp->window_count > 1)
2487 /* Don't change the windows if there was a command in .vimrc that
2488 * already split some windows */
2489 if (parmp->window_layout == 0)
2490 parmp->window_layout = WIN_HOR;
2491 if (parmp->window_layout == WIN_TABS)
2493 parmp->window_count = make_tabpages(parmp->window_count);
2494 TIME_MSG("making tab pages");
2496 else if (firstwin->w_next == NULL)
2498 parmp->window_count = make_windows(parmp->window_count,
2499 parmp->window_layout == WIN_VER);
2500 TIME_MSG("making windows");
2502 else
2503 parmp->window_count = win_count();
2505 else
2506 parmp->window_count = 1;
2507 #endif
2509 if (recoverymode) /* do recover */
2511 msg_scroll = TRUE; /* scroll message up */
2512 ml_recover();
2513 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2514 getout(1);
2515 do_modelines(0); /* do modelines */
2517 else
2520 * Open a buffer for windows that don't have one yet.
2521 * Commands in the .vimrc might have loaded a file or split the window.
2522 * Watch out for autocommands that delete a window.
2524 #ifdef FEAT_AUTOCMD
2526 * Don't execute Win/Buf Enter/Leave autocommands here
2528 ++autocmd_no_enter;
2529 ++autocmd_no_leave;
2530 #endif
2531 #ifdef FEAT_WINDOWS
2532 dorewind = TRUE;
2533 while (done++ < 1000)
2535 if (dorewind)
2537 if (parmp->window_layout == WIN_TABS)
2538 goto_tabpage(1);
2539 else
2540 curwin = firstwin;
2542 else if (parmp->window_layout == WIN_TABS)
2544 if (curtab->tp_next == NULL)
2545 break;
2546 goto_tabpage(0);
2548 else
2550 if (curwin->w_next == NULL)
2551 break;
2552 curwin = curwin->w_next;
2554 dorewind = FALSE;
2555 #endif
2556 curbuf = curwin->w_buffer;
2557 if (curbuf->b_ml.ml_mfp == NULL)
2559 #ifdef FEAT_FOLDING
2560 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2561 if (p_fdls >= 0)
2562 curwin->w_p_fdl = p_fdls;
2563 #endif
2564 #if defined(HAS_SWAP_EXISTS_ACTION)
2565 /* When getting the ATTENTION prompt here, use a dialog */
2566 swap_exists_action = SEA_DIALOG;
2567 #endif
2568 set_buflisted(TRUE);
2569 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2571 #if defined(HAS_SWAP_EXISTS_ACTION)
2572 if (swap_exists_action == SEA_QUIT)
2574 if (got_int || only_one_window())
2576 /* abort selected or quit and only one window */
2577 did_emsg = FALSE; /* avoid hit-enter prompt */
2578 getout(1);
2580 /* We can't close the window, it would disturb what
2581 * happens next. Clear the file name and set the arg
2582 * index to -1 to delete it later. */
2583 setfname(curbuf, NULL, NULL, FALSE);
2584 curwin->w_arg_idx = -1;
2585 swap_exists_action = SEA_NONE;
2587 else
2588 handle_swap_exists(NULL);
2589 #endif
2590 #ifdef FEAT_AUTOCMD
2591 dorewind = TRUE; /* start again */
2592 #endif
2594 #ifdef FEAT_WINDOWS
2595 ui_breakcheck();
2596 if (got_int)
2598 (void)vgetc(); /* only break the file loading, not the rest */
2599 break;
2602 #endif
2603 #ifdef FEAT_WINDOWS
2604 if (parmp->window_layout == WIN_TABS)
2605 goto_tabpage(1);
2606 else
2607 curwin = firstwin;
2608 curbuf = curwin->w_buffer;
2609 #endif
2610 #ifdef FEAT_AUTOCMD
2611 --autocmd_no_enter;
2612 --autocmd_no_leave;
2613 #endif
2617 #ifdef FEAT_WINDOWS
2619 * If opened more than one window, start editing files in the other
2620 * windows. make_windows() has already opened the windows.
2622 static void
2623 edit_buffers(parmp)
2624 mparm_T *parmp;
2626 int arg_idx; /* index in argument list */
2627 int i;
2628 int advance = TRUE;
2630 # ifdef FEAT_AUTOCMD
2632 * Don't execute Win/Buf Enter/Leave autocommands here
2634 ++autocmd_no_enter;
2635 ++autocmd_no_leave;
2636 # endif
2638 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2639 if (curwin->w_arg_idx == -1)
2641 win_close(curwin, TRUE);
2642 advance = FALSE;
2645 arg_idx = 1;
2646 for (i = 1; i < parmp->window_count; ++i)
2648 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2649 if (curwin->w_arg_idx == -1)
2651 ++arg_idx;
2652 win_close(curwin, TRUE);
2653 advance = FALSE;
2654 continue;
2657 if (advance)
2659 if (parmp->window_layout == WIN_TABS)
2661 if (curtab->tp_next == NULL) /* just checking */
2662 break;
2663 goto_tabpage(0);
2665 else
2667 if (curwin->w_next == NULL) /* just checking */
2668 break;
2669 win_enter(curwin->w_next, FALSE);
2672 advance = TRUE;
2674 /* Only open the file if there is no file in this window yet (that can
2675 * happen when .vimrc contains ":sall"). */
2676 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2678 curwin->w_arg_idx = arg_idx;
2679 /* Edit file from arg list, if there is one. When "Quit" selected
2680 * at the ATTENTION prompt close the window. */
2681 # ifdef HAS_SWAP_EXISTS_ACTION
2682 swap_exists_did_quit = FALSE;
2683 # endif
2684 (void)do_ecmd(0, arg_idx < GARGCOUNT
2685 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2686 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
2687 # ifdef HAS_SWAP_EXISTS_ACTION
2688 if (swap_exists_did_quit)
2690 /* abort or quit selected */
2691 if (got_int || only_one_window())
2693 /* abort selected and only one window */
2694 did_emsg = FALSE; /* avoid hit-enter prompt */
2695 getout(1);
2697 win_close(curwin, TRUE);
2698 advance = FALSE;
2700 # endif
2701 if (arg_idx == GARGCOUNT - 1)
2702 arg_had_last = TRUE;
2703 ++arg_idx;
2705 ui_breakcheck();
2706 if (got_int)
2708 (void)vgetc(); /* only break the file loading, not the rest */
2709 break;
2713 if (parmp->window_layout == WIN_TABS)
2714 goto_tabpage(1);
2715 # ifdef FEAT_AUTOCMD
2716 --autocmd_no_enter;
2717 # endif
2718 win_enter(firstwin, FALSE); /* back to first window */
2719 # ifdef FEAT_AUTOCMD
2720 --autocmd_no_leave;
2721 # endif
2722 TIME_MSG("editing files in windows");
2723 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2724 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2726 #endif /* FEAT_WINDOWS */
2729 * Execute the commands from --cmd arguments "cmds[cnt]".
2731 static void
2732 exe_pre_commands(parmp)
2733 mparm_T *parmp;
2735 char_u **cmds = parmp->pre_commands;
2736 int cnt = parmp->n_pre_commands;
2737 int i;
2739 if (cnt > 0)
2741 curwin->w_cursor.lnum = 0; /* just in case.. */
2742 sourcing_name = (char_u *)_("pre-vimrc command line");
2743 # ifdef FEAT_EVAL
2744 current_SID = SID_CMDARG;
2745 # endif
2746 for (i = 0; i < cnt; ++i)
2747 do_cmdline_cmd(cmds[i]);
2748 sourcing_name = NULL;
2749 # ifdef FEAT_EVAL
2750 current_SID = 0;
2751 # endif
2752 TIME_MSG("--cmd commands");
2757 * Execute "+", "-c" and "-S" arguments.
2759 static void
2760 exe_commands(parmp)
2761 mparm_T *parmp;
2763 int i;
2766 * We start commands on line 0, make "vim +/pat file" match a
2767 * pattern on line 1. But don't move the cursor when an autocommand
2768 * with g`" was used.
2770 msg_scroll = TRUE;
2771 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2772 curwin->w_cursor.lnum = 0;
2773 sourcing_name = (char_u *)"command line";
2774 #ifdef FEAT_EVAL
2775 current_SID = SID_CARG;
2776 #endif
2777 for (i = 0; i < parmp->n_commands; ++i)
2779 do_cmdline_cmd(parmp->commands[i]);
2780 if (parmp->cmds_tofree[i])
2781 vim_free(parmp->commands[i]);
2783 sourcing_name = NULL;
2784 #ifdef FEAT_EVAL
2785 current_SID = 0;
2786 #endif
2787 if (curwin->w_cursor.lnum == 0)
2788 curwin->w_cursor.lnum = 1;
2790 if (!exmode_active)
2791 msg_scroll = FALSE;
2793 #ifdef FEAT_QUICKFIX
2794 /* When started with "-q errorfile" jump to first error again. */
2795 if (parmp->edit_type == EDIT_QF)
2796 qf_jump(NULL, 0, 0, FALSE);
2797 #endif
2798 TIME_MSG("executing command arguments");
2802 * Source startup scripts.
2804 static void
2805 source_startup_scripts(parmp)
2806 mparm_T *parmp;
2808 int i;
2811 * For "evim" source evim.vim first of all, so that the user can overrule
2812 * any things he doesn't like.
2814 if (parmp->evim_mode)
2816 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2817 TIME_MSG("source evim file");
2821 * If -u argument given, use only the initializations from that file and
2822 * nothing else.
2824 if (parmp->use_vimrc != NULL)
2826 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2827 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2829 #ifdef FEAT_GUI
2830 if (use_gvimrc == NULL) /* don't load gvimrc either */
2831 use_gvimrc = parmp->use_vimrc;
2832 #endif
2833 if (parmp->use_vimrc[2] == 'N')
2834 p_lpl = FALSE; /* don't load plugins either */
2836 else
2838 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2839 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2842 else if (!silent_mode)
2844 #ifdef AMIGA
2845 struct Process *proc = (struct Process *)FindTask(0L);
2846 APTR save_winptr = proc->pr_WindowPtr;
2848 /* Avoid a requester here for a volume that doesn't exist. */
2849 proc->pr_WindowPtr = (APTR)-1L;
2850 #endif
2853 * Get system wide defaults, if the file name is defined.
2855 #ifdef SYS_VIMRC_FILE
2856 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2857 #endif
2858 #if defined(MACOS_X) && !defined(FEAT_GUI_MACVIM)
2859 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2860 #endif
2863 * Try to read initialization commands from the following places:
2864 * - environment variable VIMINIT
2865 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2866 * - second user vimrc file ($VIM/.vimrc for Dos)
2867 * - environment variable EXINIT
2868 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2869 * - second user exrc file ($VIM/.exrc for Dos)
2870 * The first that exists is used, the rest is ignored.
2872 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2874 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2875 #ifdef USR_VIMRC_FILE2
2876 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2877 DOSO_VIMRC) == FAIL
2878 #endif
2879 #ifdef USR_VIMRC_FILE3
2880 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2881 DOSO_VIMRC) == FAIL
2882 #endif
2883 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2884 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2886 #ifdef USR_EXRC_FILE2
2887 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2888 #endif
2893 * Read initialization commands from ".vimrc" or ".exrc" in current
2894 * directory. This is only done if the 'exrc' option is set.
2895 * Because of security reasons we disallow shell and write commands
2896 * now, except for unix if the file is owned by the user or 'secure'
2897 * option has been reset in environment of global ".exrc" or ".vimrc".
2898 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2899 * SYS_VIMRC_FILE.
2901 if (p_exrc)
2903 #if defined(UNIX) || defined(VMS)
2904 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2905 if (!file_owned(VIMRC_FILE))
2906 #endif
2907 secure = p_secure;
2909 i = FAIL;
2910 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2911 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2912 #ifdef USR_VIMRC_FILE2
2913 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2914 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2915 #endif
2916 #ifdef USR_VIMRC_FILE3
2917 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2918 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2919 #endif
2920 #ifdef SYS_VIMRC_FILE
2921 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2922 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2923 #endif
2925 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2927 if (i == FAIL)
2929 #if defined(UNIX) || defined(VMS)
2930 /* if ".exrc" is not owned by user set 'secure' mode */
2931 if (!file_owned(EXRC_FILE))
2932 secure = p_secure;
2933 else
2934 secure = 0;
2935 #endif
2936 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2937 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2938 #ifdef USR_EXRC_FILE2
2939 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2940 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2941 #endif
2943 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2946 if (secure == 2)
2947 need_wait_return = TRUE;
2948 secure = 0;
2949 #ifdef AMIGA
2950 proc->pr_WindowPtr = save_winptr;
2951 #endif
2953 TIME_MSG("sourcing vimrc file(s)");
2957 * Setup to start using the GUI. Exit with an error when not available.
2959 static void
2960 main_start_gui()
2962 #ifdef FEAT_GUI
2963 gui.starting = TRUE; /* start GUI a bit later */
2964 #else
2965 mch_errmsg(_(e_nogvim));
2966 mch_errmsg("\n");
2967 mch_exit(2);
2968 #endif
2972 * Get an environment variable, and execute it as Ex commands.
2973 * Returns FAIL if the environment variable was not executed, OK otherwise.
2976 process_env(env, is_viminit)
2977 char_u *env;
2978 int is_viminit; /* when TRUE, called for VIMINIT */
2980 char_u *initstr;
2981 char_u *save_sourcing_name;
2982 linenr_T save_sourcing_lnum;
2983 #ifdef FEAT_EVAL
2984 scid_T save_sid;
2985 #endif
2987 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2989 if (is_viminit)
2990 vimrc_found(NULL, NULL);
2991 save_sourcing_name = sourcing_name;
2992 save_sourcing_lnum = sourcing_lnum;
2993 sourcing_name = env;
2994 sourcing_lnum = 0;
2995 #ifdef FEAT_EVAL
2996 save_sid = current_SID;
2997 current_SID = SID_ENV;
2998 #endif
2999 do_cmdline_cmd(initstr);
3000 sourcing_name = save_sourcing_name;
3001 sourcing_lnum = save_sourcing_lnum;
3002 #ifdef FEAT_EVAL
3003 current_SID = save_sid;;
3004 #endif
3005 return OK;
3007 return FAIL;
3010 #if defined(UNIX) || defined(VMS)
3012 * Return TRUE if we are certain the user owns the file "fname".
3013 * Used for ".vimrc" and ".exrc".
3014 * Use both stat() and lstat() for extra security.
3016 static int
3017 file_owned(fname)
3018 char *fname;
3020 struct stat s;
3021 # ifdef UNIX
3022 uid_t uid = getuid();
3023 # else /* VMS */
3024 uid_t uid = ((getgid() << 16) | getuid());
3025 # endif
3027 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3028 # ifdef HAVE_LSTAT
3029 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3030 # endif
3033 #endif
3036 * Give an error message main_errors["n"] and exit.
3038 static void
3039 mainerr(n, str)
3040 int n; /* one of the ME_ defines */
3041 char_u *str; /* extra argument or NULL */
3043 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3044 reset_signals(); /* kill us with CTRL-C here, if you like */
3045 #endif
3047 mch_errmsg(longVersion);
3048 mch_errmsg("\n");
3049 mch_errmsg(_(main_errors[n]));
3050 if (str != NULL)
3052 mch_errmsg(": \"");
3053 mch_errmsg((char *)str);
3054 mch_errmsg("\"");
3056 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
3058 mch_exit(1);
3061 void
3062 mainerr_arg_missing(str)
3063 char_u *str;
3065 mainerr(ME_ARG_MISSING, str);
3069 * print a message with three spaces prepended and '\n' appended.
3071 static void
3072 main_msg(s)
3073 char *s;
3075 mch_msg(" ");
3076 mch_msg(s);
3077 mch_msg("\n");
3081 * Print messages for "vim -h" or "vim --help" and exit.
3083 static void
3084 usage()
3086 int i;
3087 static char *(use[]) =
3089 N_("[file ..] edit specified file(s)"),
3090 N_("- read text from stdin"),
3091 N_("-t tag edit file where tag is defined"),
3092 #ifdef FEAT_QUICKFIX
3093 N_("-q [errorfile] edit file with first error")
3094 #endif
3097 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3098 reset_signals(); /* kill us with CTRL-C here, if you like */
3099 #endif
3101 mch_msg(longVersion);
3102 mch_msg(_("\n\nusage:"));
3103 for (i = 0; ; ++i)
3105 mch_msg(_(" vim [arguments] "));
3106 mch_msg(_(use[i]));
3107 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3108 break;
3109 mch_msg(_("\n or:"));
3111 #ifdef VMS
3112 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3113 #endif
3115 mch_msg(_("\n\nArguments:\n"));
3116 main_msg(_("--\t\t\tOnly file names after this"));
3117 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3118 main_msg(_("--literal\t\tDon't expand wildcards"));
3119 #endif
3120 #ifdef FEAT_OLE
3121 main_msg(_("-register\t\tRegister this gvim for OLE"));
3122 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3123 #endif
3124 #ifdef FEAT_GUI
3125 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3126 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3127 #endif
3128 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3129 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3130 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3131 #ifdef FEAT_DIFF
3132 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3133 #endif
3134 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3135 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3136 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3137 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3138 main_msg(_("-M\t\t\tModifications in text not allowed"));
3139 main_msg(_("-b\t\t\tBinary mode"));
3140 #ifdef FEAT_LISP
3141 main_msg(_("-l\t\t\tLisp mode"));
3142 #endif
3143 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3144 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3145 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3146 #ifdef FEAT_EVAL
3147 main_msg(_("-D\t\t\tDebugging mode"));
3148 #endif
3149 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3150 main_msg(_("-r\t\t\tList swap files and exit"));
3151 main_msg(_("-r (with file name)\tRecover crashed session"));
3152 main_msg(_("-L\t\t\tSame as -r"));
3153 #ifdef AMIGA
3154 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3155 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3156 #endif
3157 #ifdef FEAT_ARABIC
3158 main_msg(_("-A\t\t\tstart in Arabic mode"));
3159 #endif
3160 #ifdef FEAT_RIGHTLEFT
3161 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3162 #endif
3163 #ifdef FEAT_FKMAP
3164 main_msg(_("-F\t\t\tStart in Farsi mode"));
3165 #endif
3166 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3167 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3168 #ifdef FEAT_GUI
3169 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3170 #endif
3171 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3172 #ifdef FEAT_WINDOWS
3173 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3174 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3175 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3176 #endif
3177 main_msg(_("+\t\t\tStart at end of file"));
3178 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3179 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3180 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3181 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3182 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3183 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3184 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3185 #ifdef FEAT_CRYPT
3186 main_msg(_("-x\t\t\tEdit encrypted files"));
3187 #endif
3188 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3189 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3190 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3191 # endif
3192 main_msg(_("-X\t\t\tDo not connect to X server"));
3193 #endif
3194 #ifdef FEAT_CLIENTSERVER
3195 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3196 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3197 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3198 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3199 # ifdef FEAT_WINDOWS
3200 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3201 # endif
3202 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3203 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3204 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3205 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3206 #endif
3207 #ifdef FEAT_VIMINFO
3208 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3209 #endif
3210 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3211 main_msg(_("--version\t\tPrint version information and exit"));
3213 #ifdef FEAT_GUI_X11
3214 # ifdef FEAT_GUI_MOTIF
3215 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3216 # else
3217 # ifdef FEAT_GUI_ATHENA
3218 # ifdef FEAT_GUI_NEXTAW
3219 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3220 # else
3221 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3222 # endif
3223 # endif
3224 # endif
3225 main_msg(_("-display <display>\tRun vim on <display>"));
3226 main_msg(_("-iconic\t\tStart vim iconified"));
3227 # if 0
3228 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3229 mch_msg(_("\t\t\t (Unimplemented)\n"));
3230 # endif
3231 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3232 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3233 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3234 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3235 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3236 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3237 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3238 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3239 # ifdef FEAT_GUI_ATHENA
3240 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3241 # endif
3242 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3243 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3244 main_msg(_("-xrm <resource>\tSet the specified resource"));
3245 #endif /* FEAT_GUI_X11 */
3246 #if defined(FEAT_GUI) && defined(RISCOS)
3247 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3248 main_msg(_("--columns <number>\tInitial width of window in columns"));
3249 main_msg(_("--rows <number>\tInitial height of window in rows"));
3250 #endif
3251 #ifdef FEAT_GUI_GTK
3252 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3253 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3254 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3255 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3256 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3257 # ifdef HAVE_GTK2
3258 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3259 # endif
3260 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3261 #endif
3262 #ifdef FEAT_GUI_W32
3263 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3264 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3265 #endif
3267 #ifdef FEAT_GUI_GNOME
3268 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3269 if (gui.starting)
3270 mch_msg("\n");
3271 else
3272 #endif
3273 mch_exit(0);
3276 #if defined(HAS_SWAP_EXISTS_ACTION)
3278 * Check the result of the ATTENTION dialog:
3279 * When "Quit" selected, exit Vim.
3280 * When "Recover" selected, recover the file.
3282 static void
3283 check_swap_exists_action()
3285 if (swap_exists_action == SEA_QUIT)
3286 getout(1);
3287 handle_swap_exists(NULL);
3289 #endif
3291 #if defined(STARTUPTIME) || defined(PROTO)
3292 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3294 static struct timeval prev_timeval;
3297 * Save the previous time before doing something that could nest.
3298 * set "*tv_rel" to the time elapsed so far.
3300 void
3301 time_push(tv_rel, tv_start)
3302 void *tv_rel, *tv_start;
3304 *((struct timeval *)tv_rel) = prev_timeval;
3305 gettimeofday(&prev_timeval, NULL);
3306 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3307 - ((struct timeval *)tv_rel)->tv_usec;
3308 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3309 - ((struct timeval *)tv_rel)->tv_sec;
3310 if (((struct timeval *)tv_rel)->tv_usec < 0)
3312 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3313 --((struct timeval *)tv_rel)->tv_sec;
3315 *(struct timeval *)tv_start = prev_timeval;
3319 * Compute the previous time after doing something that could nest.
3320 * Subtract "*tp" from prev_timeval;
3321 * Note: The arguments are (void *) to avoid trouble with systems that don't
3322 * have struct timeval.
3324 void
3325 time_pop(tp)
3326 void *tp; /* actually (struct timeval *) */
3328 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3329 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3330 if (prev_timeval.tv_usec < 0)
3332 prev_timeval.tv_usec += 1000000;
3333 --prev_timeval.tv_sec;
3337 static void
3338 time_diff(then, now)
3339 struct timeval *then;
3340 struct timeval *now;
3342 long usec;
3343 long msec;
3345 usec = now->tv_usec - then->tv_usec;
3346 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3347 usec = usec % 1000L;
3348 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3351 void
3352 time_msg(msg, tv_start)
3353 char *msg;
3354 void *tv_start; /* only for do_source: start time; actually
3355 (struct timeval *) */
3357 static struct timeval start;
3358 struct timeval now;
3360 if (time_fd != NULL)
3362 if (strstr(msg, "STARTING") != NULL)
3364 gettimeofday(&start, NULL);
3365 prev_timeval = start;
3366 fprintf(time_fd, "\n\ntimes in msec\n");
3367 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3368 fprintf(time_fd, " clock elapsed: other lines\n\n");
3370 gettimeofday(&now, NULL);
3371 time_diff(&start, &now);
3372 if (((struct timeval *)tv_start) != NULL)
3374 fprintf(time_fd, " ");
3375 time_diff(((struct timeval *)tv_start), &now);
3377 fprintf(time_fd, " ");
3378 time_diff(&prev_timeval, &now);
3379 prev_timeval = now;
3380 fprintf(time_fd, ": %s\n", msg);
3384 # ifdef WIN3264
3386 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3389 gettimeofday(struct timeval *tv, char *dummy)
3391 long t = clock();
3392 tv->tv_sec = t / CLOCKS_PER_SEC;
3393 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3394 return 0;
3396 # endif
3398 #endif
3400 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3403 * Common code for the X command server and the Win32 command server.
3406 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3409 * Do the client-server stuff, unless "--servername ''" was used.
3411 static void
3412 exec_on_server(parmp)
3413 mparm_T *parmp;
3415 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3417 # ifdef WIN32
3418 /* Initialise the client/server messaging infrastructure. */
3419 serverInitMessaging();
3420 # endif
3423 * When a command server argument was found, execute it. This may
3424 * exit Vim when it was successful. Otherwise it's executed further
3425 * on. Remember the encoding used here in "serverStrEnc".
3427 if (parmp->serverArg)
3429 cmdsrv_main(&parmp->argc, parmp->argv,
3430 parmp->serverName_arg, &parmp->serverStr);
3431 # ifdef FEAT_MBYTE
3432 parmp->serverStrEnc = vim_strsave(p_enc);
3433 # endif
3436 /* If we're still running, get the name to register ourselves.
3437 * On Win32 can register right now, for X11 need to setup the
3438 * clipboard first, it's further down. */
3439 parmp->servername = serverMakeName(parmp->serverName_arg,
3440 parmp->argv[0]);
3441 # ifdef WIN32
3442 if (parmp->servername != NULL)
3444 serverSetName(parmp->servername);
3445 vim_free(parmp->servername);
3447 # endif
3452 * Prepare for running as a Vim server.
3454 static void
3455 prepare_server(parmp)
3456 mparm_T *parmp;
3458 # if defined(FEAT_X11)
3460 * Register for remote command execution with :serversend and --remote
3461 * unless there was a -X or a --servername '' on the command line.
3462 * Only register nongui-vim's with an explicit --servername argument.
3463 * When running as root --servername is also required.
3465 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3466 # ifdef FEAT_GUI
3467 (gui.in_use
3468 # ifdef UNIX
3469 && getuid() != ROOT_UID
3470 # endif
3471 ) ||
3472 # endif
3473 parmp->serverName_arg != NULL))
3475 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3476 vim_free(parmp->servername);
3477 TIME_MSG("register server name");
3479 else
3480 serverDelayedStartName = parmp->servername;
3481 # endif
3484 * Execute command ourselves if we're here because the send failed (or
3485 * else we would have exited above).
3487 if (parmp->serverStr != NULL)
3489 char_u *p;
3491 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3492 parmp->serverStr, &p));
3493 vim_free(p);
3497 static void
3498 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3499 int *argc;
3500 char **argv;
3501 char_u *serverName_arg;
3502 char_u **serverStr;
3504 char_u *res;
3505 int i;
3506 char_u *sname;
3507 int ret;
3508 int didone = FALSE;
3509 int exiterr = 0;
3510 char **newArgV = argv + 1;
3511 int newArgC = 1,
3512 Argc = *argc;
3513 int argtype;
3514 #define ARGTYPE_OTHER 0
3515 #define ARGTYPE_EDIT 1
3516 #define ARGTYPE_EDIT_WAIT 2
3517 #define ARGTYPE_SEND 3
3518 int silent = FALSE;
3519 int tabs = FALSE;
3520 # ifdef WIN32
3521 HWND srv;
3522 # elif defined(MAC_CLIENTSERVER)
3523 int srv;
3524 # elif defined(FEAT_X11)
3525 Window srv;
3527 setup_term_clip();
3528 # endif
3530 sname = serverMakeName(serverName_arg, argv[0]);
3531 if (sname == NULL)
3532 return;
3535 * Execute the command server related arguments and remove them
3536 * from the argc/argv array; We may have to return into main()
3538 for (i = 1; i < Argc; i++)
3540 res = NULL;
3541 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3543 for (; i < *argc; i++)
3545 *newArgV++ = argv[i];
3546 newArgC++;
3548 break;
3551 if (STRICMP(argv[i], "--remote-send") == 0)
3552 argtype = ARGTYPE_SEND;
3553 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3555 char *p = argv[i] + 8;
3557 argtype = ARGTYPE_EDIT;
3558 while (*p != NUL)
3560 if (STRNICMP(p, "-wait", 5) == 0)
3562 argtype = ARGTYPE_EDIT_WAIT;
3563 p += 5;
3565 else if (STRNICMP(p, "-silent", 7) == 0)
3567 silent = TRUE;
3568 p += 7;
3570 else if (STRNICMP(p, "-tab", 4) == 0)
3572 tabs = TRUE;
3573 p += 4;
3575 else
3577 argtype = ARGTYPE_OTHER;
3578 break;
3582 else
3583 argtype = ARGTYPE_OTHER;
3585 if (argtype != ARGTYPE_OTHER)
3587 if (i == *argc - 1)
3588 mainerr_arg_missing((char_u *)argv[i]);
3589 if (argtype == ARGTYPE_SEND)
3591 *serverStr = (char_u *)argv[i + 1];
3592 i++;
3594 else
3596 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3597 tabs, argtype == ARGTYPE_EDIT_WAIT);
3598 if (*serverStr == NULL)
3600 /* Probably out of memory, exit. */
3601 didone = TRUE;
3602 exiterr = 1;
3603 break;
3605 Argc = i;
3607 # ifdef FEAT_X11
3608 if (xterm_dpy == NULL)
3610 mch_errmsg(_("No display"));
3611 ret = -1;
3613 else
3614 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3615 NULL, &srv, 0, 0, silent);
3616 # elif defined(WIN32) || defined(MAC_CLIENTSERVER)
3617 /* Win32 always works? */
3618 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3619 # endif
3620 if (ret < 0)
3622 if (argtype == ARGTYPE_SEND)
3624 /* Failed to send, abort. */
3625 mch_errmsg(_(": Send failed.\n"));
3626 didone = TRUE;
3627 exiterr = 1;
3629 else if (!silent)
3630 /* Let vim start normally. */
3631 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3632 break;
3635 # ifdef FEAT_GUI_W32
3636 /* Guess that when the server name starts with "g" it's a GUI
3637 * server, which we can bring to the foreground here.
3638 * Foreground() in the server doesn't work very well. */
3639 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3640 SetForegroundWindow(srv);
3641 # endif
3644 * For --remote-wait: Wait until the server did edit each
3645 * file. Also detect that the server no longer runs.
3647 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3649 int numFiles = *argc - i - 1;
3650 int j;
3651 char_u *done = alloc(numFiles);
3652 char_u *p;
3653 # ifdef FEAT_GUI_W32
3654 NOTIFYICONDATA ni;
3655 int count = 0;
3656 extern HWND message_window;
3657 # endif
3659 if (numFiles > 0 && argv[i + 1][0] == '+')
3660 /* Skip "+cmd" argument, don't wait for it to be edited. */
3661 --numFiles;
3663 # ifdef FEAT_GUI_W32
3664 ni.cbSize = sizeof(ni);
3665 ni.hWnd = message_window;
3666 ni.uID = 0;
3667 ni.uFlags = NIF_ICON|NIF_TIP;
3668 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3669 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3670 Shell_NotifyIcon(NIM_ADD, &ni);
3671 # endif
3673 /* Wait for all files to unload in remote */
3674 memset(done, 0, numFiles);
3675 while (memchr(done, 0, numFiles) != NULL)
3677 # ifdef WIN32
3678 p = serverGetReply(srv, NULL, TRUE, TRUE);
3679 if (p == NULL)
3680 break;
3681 # elif defined(FEAT_X11)
3682 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3683 break;
3684 # elif defined(MAC_CLIENTSERVER)
3685 if (serverReadReply(srv, &p) < 0)
3686 break;
3687 # endif
3688 j = atoi((char *)p);
3689 if (j >= 0 && j < numFiles)
3691 # ifdef FEAT_GUI_W32
3692 ++count;
3693 sprintf(ni.szTip, _("%d of %d edited"),
3694 count, numFiles);
3695 Shell_NotifyIcon(NIM_MODIFY, &ni);
3696 # endif
3697 done[j] = 1;
3700 # ifdef FEAT_GUI_W32
3701 Shell_NotifyIcon(NIM_DELETE, &ni);
3702 # endif
3705 else if (STRICMP(argv[i], "--remote-expr") == 0)
3707 if (i == *argc - 1)
3708 mainerr_arg_missing((char_u *)argv[i]);
3709 # ifdef WIN32
3710 /* Win32 always works? */
3711 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3712 &res, NULL, 1, FALSE) < 0)
3713 # elif defined(FEAT_X11)
3714 if (xterm_dpy == NULL)
3715 mch_errmsg(_("No display: Send expression failed.\n"));
3716 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3717 &res, NULL, 1, 1, FALSE) < 0)
3718 # elif defined(MAC_CLIENTSERVER)
3719 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3720 &res, NULL, 1, FALSE) < 0)
3721 # endif
3723 if (res != NULL && *res != NUL)
3725 /* Output error from remote */
3726 mch_errmsg((char *)res);
3727 vim_free(res);
3728 res = NULL;
3730 mch_errmsg(_(": Send expression failed.\n"));
3733 else if (STRICMP(argv[i], "--serverlist") == 0)
3735 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
3736 /* Win32 always works? */
3737 res = serverGetVimNames();
3738 # elif defined(FEAT_X11)
3739 if (xterm_dpy != NULL)
3740 res = serverGetVimNames(xterm_dpy);
3741 # endif
3742 if (called_emsg)
3743 mch_errmsg("\n");
3745 else if (STRICMP(argv[i], "--servername") == 0)
3747 /* Alredy processed. Take it out of the command line */
3748 i++;
3749 continue;
3751 else
3753 *newArgV++ = argv[i];
3754 newArgC++;
3755 continue;
3757 didone = TRUE;
3758 if (res != NULL && *res != NUL)
3760 mch_msg((char *)res);
3761 if (res[STRLEN(res) - 1] != '\n')
3762 mch_msg("\n");
3764 vim_free(res);
3767 if (didone)
3769 display_errors(); /* display any collected messages */
3770 exit(exiterr); /* Mission accomplished - get out */
3773 /* Return back into main() */
3774 *argc = newArgC;
3775 vim_free(sname);
3779 * Build a ":drop" command to send to a Vim server.
3781 static char_u *
3782 build_drop_cmd(filec, filev, tabs, sendReply)
3783 int filec;
3784 char **filev;
3785 int tabs; /* Use ":tab drop" instead of ":drop". */
3786 int sendReply;
3788 garray_T ga;
3789 int i;
3790 char_u *inicmd = NULL;
3791 char_u *p;
3792 char_u cwd[MAXPATHL];
3794 if (filec > 0 && filev[0][0] == '+')
3796 inicmd = (char_u *)filev[0] + 1;
3797 filev++;
3798 filec--;
3800 /* Check if we have at least one argument. */
3801 if (filec <= 0)
3802 mainerr_arg_missing((char_u *)filev[-1]);
3803 if (mch_dirname(cwd, MAXPATHL) != OK)
3804 return NULL;
3805 if ((p = vim_strsave_escaped_ext(cwd,
3806 #ifdef BACKSLASH_IN_FILENAME
3807 "", /* rem_backslash() will tell what chars to escape */
3808 #else
3809 PATH_ESC_CHARS,
3810 #endif
3811 '\\', TRUE)) == NULL)
3812 return NULL;
3813 ga_init2(&ga, 1, 100);
3814 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3815 ga_concat(&ga, p);
3816 vim_free(p);
3818 /* Call inputsave() so that a prompt for an encryption key works. */
3819 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3820 if (tabs)
3821 ga_concat(&ga, (char_u *)"tab ");
3822 ga_concat(&ga, (char_u *)"drop");
3823 for (i = 0; i < filec; i++)
3825 /* On Unix the shell has already expanded the wildcards, don't want to
3826 * do it again in the Vim server. On MS-Windows only escape
3827 * non-wildcard characters. */
3828 p = vim_strsave_escaped((char_u *)filev[i],
3829 #ifdef UNIX
3830 PATH_ESC_CHARS
3831 #else
3832 (char_u *)" \t%#"
3833 #endif
3835 if (p == NULL)
3837 vim_free(ga.ga_data);
3838 return NULL;
3840 ga_concat(&ga, (char_u *)" ");
3841 ga_concat(&ga, p);
3842 vim_free(p);
3844 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3845 * CTRL-\ CTRL-N again. */
3846 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3847 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3848 if (sendReply)
3849 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3850 ga_concat(&ga, (char_u *)"<CR>:");
3851 if (inicmd != NULL)
3853 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3854 * the following commands to be inserted as text. Use a "|",
3855 * hopefully "inicmd" does allow this... */
3856 ga_concat(&ga, inicmd);
3857 ga_concat(&ga, (char_u *)"|");
3859 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3860 * clear command line. */
3861 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3862 ga_append(&ga, NUL);
3863 return ga.ga_data;
3867 * Replace termcodes such as <CR> and insert as key presses if there is room.
3869 void
3870 server_to_input_buf(str)
3871 char_u *str;
3873 char_u *ptr = NULL;
3874 char_u *cpo_save = p_cpo;
3876 /* Set 'cpoptions' the way we want it.
3877 * B set - backslashes are *not* treated specially
3878 * k set - keycodes are *not* reverse-engineered
3879 * < unset - <Key> sequences *are* interpreted
3880 * The last but one parameter of replace_termcodes() is TRUE so that the
3881 * <lt> sequence is recognised - needed for a real backslash.
3883 p_cpo = (char_u *)"Bk";
3884 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3885 p_cpo = cpo_save;
3887 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3890 * Add the string to the input stream.
3891 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3893 * First clear typed characters from the typeahead buffer, there could
3894 * be half a mapping there. Then append to the existing string, so
3895 * that multiple commands from a client are concatenated.
3897 if (typebuf.tb_maplen < typebuf.tb_len)
3898 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3899 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3901 /* Let input_available() know we inserted text in the typeahead
3902 * buffer. */
3903 typebuf_was_filled = TRUE;
3905 vim_free((char_u *)ptr);
3909 * Evaluate an expression that the client sent to a string.
3910 * Handles disabling error messages and disables debugging, otherwise Vim
3911 * hangs, waiting for "cont" to be typed.
3913 char_u *
3914 eval_client_expr_to_string(expr)
3915 char_u *expr;
3917 char_u *res;
3918 int save_dbl = debug_break_level;
3919 int save_ro = redir_off;
3921 debug_break_level = -1;
3922 redir_off = 0;
3923 ++emsg_skip;
3925 res = eval_to_string(expr, NULL, TRUE);
3927 debug_break_level = save_dbl;
3928 redir_off = save_ro;
3929 --emsg_skip;
3931 /* A client can tell us to redraw, but not to display the cursor, so do
3932 * that here. */
3933 setcursor();
3934 out_flush();
3935 #ifdef FEAT_GUI
3936 if (gui.in_use)
3937 gui_update_cursor(FALSE, FALSE);
3938 #endif
3940 return res;
3944 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3945 * return an allocated string. Otherwise return "data".
3946 * "*tofree" is set to the result when it needs to be freed later.
3948 /*ARGSUSED*/
3949 char_u *
3950 serverConvert(client_enc, data, tofree)
3951 char_u *client_enc;
3952 char_u *data;
3953 char_u **tofree;
3955 char_u *res = data;
3957 *tofree = NULL;
3958 # ifdef FEAT_MBYTE
3959 if (client_enc != NULL && p_enc != NULL)
3961 vimconv_T vimconv;
3963 vimconv.vc_type = CONV_NONE;
3964 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3965 && vimconv.vc_type != CONV_NONE)
3967 res = string_convert(&vimconv, data, NULL);
3968 if (res == NULL)
3969 res = data;
3970 else
3971 *tofree = res;
3973 convert_setup(&vimconv, NULL, NULL);
3975 # endif
3976 return res;
3981 * Make our basic server name: use the specified "arg" if given, otherwise use
3982 * the tail of the command "cmd" we were started with.
3983 * Return the name in allocated memory. This doesn't include a serial number.
3985 static char_u *
3986 serverMakeName(arg, cmd)
3987 char_u *arg;
3988 char *cmd;
3990 char_u *p;
3992 if (arg != NULL && *arg != NUL)
3993 p = vim_strsave_up(arg);
3994 else
3996 p = vim_strsave_up(gettail((char_u *)cmd));
3997 /* Remove .exe or .bat from the name. */
3998 if (p != NULL && vim_strchr(p, '.') != NULL)
3999 *vim_strchr(p, '.') = NUL;
4001 return p;
4003 #endif /* FEAT_CLIENTSERVER */
4006 * When FEAT_FKMAP is defined, also compile the Farsi source code.
4008 #if defined(FEAT_FKMAP) || defined(PROTO)
4009 # include "farsi.c"
4010 #endif
4013 * When FEAT_ARABIC is defined, also compile the Arabic source code.
4015 #if defined(FEAT_ARABIC) || defined(PROTO)
4016 # include "arabic.c"
4017 #endif