Merge branch 'vim' (version 7.2)
[MacVim.git] / src / main.c
blob091de21059bbba42fb091def48fbe6977ffc0663
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 /* Avoid always using "/" as the current directory. Note that when
468 * started from Finder the arglist will be filled later in
469 * HandleODocAE() and "fname" will be NULL. */
470 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
471 && STRCMP(NameBuff, "/") == 0)
473 if (fname != NULL)
474 (void)vim_chdirfile(fname);
475 else
477 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
478 vim_chdir(NameBuff);
482 #endif
485 * mch_init() sets up the terminal (window) for use. This must be
486 * done after resetting full_screen, otherwise it may move the cursor
487 * (MSDOS).
488 * Note that we may use mch_exit() before mch_init()!
490 mch_init();
491 TIME_MSG("shell init");
493 #ifdef USE_XSMP
495 * For want of anywhere else to do it, try to connect to xsmp here.
496 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
497 * Hijacking -X 'no X connection' to also disable XSMP connection as that
498 * has a similar delay upon failure.
499 * Only try if SESSION_MANAGER is set to something non-null.
501 if (!x_no_connect)
503 char *p = getenv("SESSION_MANAGER");
505 if (p != NULL && *p != NUL)
507 xsmp_init();
508 TIME_MSG("xsmp init");
511 #endif
514 * Print a warning if stdout is not a terminal.
516 check_tty(&params);
518 /* This message comes before term inits, but after setting "silent_mode"
519 * when the input is not a tty. */
520 if (GARGCOUNT > 1 && !silent_mode)
521 printf(_("%d files to edit\n"), GARGCOUNT);
523 if (params.want_full_screen && !silent_mode)
525 termcapinit(params.term); /* set terminal name and get terminal
526 capabilities (will set full_screen) */
527 screen_start(); /* don't know where cursor is now */
528 TIME_MSG("Termcap init");
532 * Set the default values for the options that use Rows and Columns.
534 ui_get_shellsize(); /* inits Rows and Columns */
535 #ifdef FEAT_NETBEANS_INTG
536 if (usingNetbeans)
537 Columns += 2; /* leave room for glyph gutter */
538 #endif
539 win_init_size();
540 #ifdef FEAT_DIFF
541 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
542 * file. There is no buffer yet though. */
543 if (params.diff_mode)
544 diff_win_options(firstwin, FALSE);
545 #endif
547 cmdline_row = Rows - p_ch;
548 msg_row = cmdline_row;
549 screenalloc(FALSE); /* allocate screen buffers */
550 set_init_2();
551 TIME_MSG("inits 2");
553 msg_scroll = TRUE;
554 no_wait_return = TRUE;
556 init_mappings(); /* set up initial mappings */
558 init_highlight(TRUE, FALSE); /* set the default highlight groups */
559 TIME_MSG("init highlight");
561 #ifdef FEAT_EVAL
562 /* Set the break level after the terminal is initialized. */
563 debug_break_level = params.use_debug_break_level;
564 #endif
566 /* Execute --cmd arguments. */
567 exe_pre_commands(&params);
569 /* Source startup scripts. */
570 source_startup_scripts(&params);
572 #ifdef FEAT_EVAL
574 * Read all the plugin files.
575 * Only when compiled with +eval, since most plugins need it.
577 if (p_lpl)
579 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
580 source_runtime((char_u *)"plugin/*.vim", TRUE);
581 # else
582 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
583 # endif
584 TIME_MSG("loading plugins");
586 #endif
588 #ifdef FEAT_DIFF
589 /* Decide about window layout for diff mode after reading vimrc. */
590 if (params.diff_mode && params.window_layout == 0)
592 if (diffopt_horizontal())
593 params.window_layout = WIN_HOR; /* use horizontal split */
594 else
595 params.window_layout = WIN_VER; /* use vertical split */
597 #endif
600 * Recovery mode without a file name: List swap files.
601 * This uses the 'dir' option, therefore it must be after the
602 * initializations.
604 if (recoverymode && fname == NULL)
606 recover_names(NULL, TRUE, 0);
607 mch_exit(0);
611 * Set a few option defaults after reading .vimrc files:
612 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
614 set_init_3();
615 TIME_MSG("inits 3");
618 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
619 * Note that this overrides anything from a vimrc file.
621 if (params.no_swap_file)
622 p_uc = 0;
624 #ifdef FEAT_FKMAP
625 if (curwin->w_p_rl && p_altkeymap)
627 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
628 # ifdef FEAT_ARABIC
629 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
630 # endif
631 p_fkmap = TRUE; /* Set the Farsi keymap mode */
633 #endif
635 #ifdef FEAT_GUI
636 if (gui.starting)
638 #if defined(UNIX) || defined(VMS)
639 /* When something caused a message from a vimrc script, need to output
640 * an extra newline before the shell prompt. */
641 if (did_emsg || msg_didout)
642 putchar('\n');
643 #endif
645 gui_start(); /* will set full_screen to TRUE */
646 TIME_MSG("starting GUI");
648 /* When running "evim" or "gvim -y" we need the menus, exit if we
649 * don't have them. */
650 if (!gui.in_use && params.evim_mode)
651 mch_exit(1);
653 #endif
655 #ifdef SPAWNO /* special MSDOS swapping library */
656 init_SPAWNO("", SWAP_ANY);
657 #endif
659 #ifdef FEAT_VIMINFO
661 * Read in registers, history etc, but not marks, from the viminfo file
663 if (*p_viminfo != NUL)
665 read_viminfo(NULL, TRUE, FALSE, FALSE);
666 TIME_MSG("reading viminfo");
668 #endif
670 #ifdef FEAT_QUICKFIX
672 * "-q errorfile": Load the error file now.
673 * If the error file can't be read, exit before doing anything else.
675 if (params.edit_type == EDIT_QF)
677 if (params.use_ef != NULL)
678 set_string_option_direct((char_u *)"ef", -1,
679 params.use_ef, OPT_FREE, SID_CARG);
680 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
682 out_char('\n');
683 mch_exit(3);
685 TIME_MSG("reading errorfile");
687 #endif
690 * Start putting things on the screen.
691 * Scroll screen down before drawing over it
692 * Clear screen now, so file message will not be cleared.
694 starting = NO_BUFFERS;
695 no_wait_return = FALSE;
696 if (!exmode_active)
697 msg_scroll = FALSE;
699 #ifdef FEAT_GUI
701 * This seems to be required to make callbacks to be called now, instead
702 * of after things have been put on the screen, which then may be deleted
703 * when getting a resize callback.
704 * For the Mac this handles putting files dropped on the Vim icon to
705 * global_alist.
707 if (gui.in_use)
709 # ifdef FEAT_SUN_WORKSHOP
710 if (!usingSunWorkShop)
711 # endif
712 gui_wait_for_chars(50L);
713 TIME_MSG("GUI delay");
715 #endif
717 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
718 qnx_clip_init();
719 #endif
721 #ifdef FEAT_XCLIPBOARD
722 /* Start using the X clipboard, unless the GUI was started. */
723 # ifdef FEAT_GUI
724 if (!gui.in_use)
725 # endif
727 setup_term_clip();
728 TIME_MSG("setup clipboard");
730 #endif
732 #ifdef FEAT_CLIENTSERVER
733 /* Prepare for being a Vim server. */
734 prepare_server(&params);
735 #endif
738 * If "-" argument given: Read file from stdin.
739 * Do this before starting Raw mode, because it may change things that the
740 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
741 * are the same terminal: "cat | vim -".
742 * Using autocommands here may cause trouble...
744 if (params.edit_type == EDIT_STDIN && !recoverymode)
745 read_stdin();
747 #if defined(UNIX) || defined(VMS)
748 /* When switching screens and something caused a message from a vimrc
749 * script, need to output an extra newline on exit. */
750 if ((did_emsg || msg_didout) && *T_TI != NUL)
751 newline_on_exit = TRUE;
752 #endif
755 * When done something that is not allowed or error message call
756 * wait_return. This must be done before starttermcap(), because it may
757 * switch to another screen. It must be done after settmode(TMODE_RAW),
758 * because we want to react on a single key stroke.
759 * Call settmode and starttermcap here, so the T_KS and T_TI may be
760 * defined by termcapinit and redefined in .exrc.
762 settmode(TMODE_RAW);
763 TIME_MSG("setting raw mode");
765 if (need_wait_return || msg_didany)
767 wait_return(TRUE);
768 TIME_MSG("waiting for return");
771 starttermcap(); /* start termcap if not done by wait_return() */
772 TIME_MSG("start termcap");
774 #ifdef FEAT_MOUSE
775 setmouse(); /* may start using the mouse */
776 #endif
777 if (scroll_region)
778 scroll_region_reset(); /* In case Rows changed */
779 scroll_start(); /* may scroll the screen to the right position */
782 * Don't clear the screen when starting in Ex mode, unless using the GUI.
784 if (exmode_active
785 #ifdef FEAT_GUI
786 && !gui.in_use
787 #endif
789 must_redraw = CLEAR;
790 else
792 screenclear(); /* clear screen */
793 TIME_MSG("clearing screen");
796 #ifdef FEAT_CRYPT
797 if (params.ask_for_key)
799 (void)get_crypt_key(TRUE, TRUE);
800 TIME_MSG("getting crypt key");
802 #endif
804 no_wait_return = TRUE;
806 #ifdef FEAT_GUI_MACVIM
807 /* We want to delay calling this function for as long as possible, since it
808 * will result in faster startup for cached processes. However, we react
809 * before create_windows() so that we can open files by adding to the
810 * arglist. */
811 gui_macvim_wait_for_startup();
813 /* Since MacVim may receive the list of files to open via an Apple event
814 * (as opposed to from the command line) we must manually check to see if
815 * the window layout should be changed. */
816 gui_macvim_get_window_layout(&params.window_count, &params.window_layout);
818 # ifdef MAC_CLIENTSERVER
819 // NOTE: Can't set server name at same time as WIN32 because gui.in_use
820 // isn't set then. Servers are only supported in GUI mode.
821 // Also, in case the above call blocks this process another Vim process may
822 // open in the meantime. If it did then it could be named e.g. VIM3
823 // whereas this may be VIM2, which looks weird.
824 if (params.servername != NULL && gui.in_use)
826 serverRegisterName(params.servername);
827 vim_free(params.servername);
828 params.servername = NULL;
830 # endif
831 #endif
834 * Create the requested number of windows and edit buffers in them.
835 * Also does recovery if "recoverymode" set.
837 create_windows(&params);
838 TIME_MSG("opening buffers");
840 #ifdef FEAT_EVAL
841 /* clear v:swapcommand */
842 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
843 #endif
845 /* Ex starts at last line of the file */
846 if (exmode_active)
847 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
849 #ifdef FEAT_AUTOCMD
850 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
851 TIME_MSG("BufEnter autocommands");
852 #endif
853 setpcmark();
855 #ifdef FEAT_QUICKFIX
857 * When started with "-q errorfile" jump to first error now.
859 if (params.edit_type == EDIT_QF)
861 qf_jump(NULL, 0, 0, FALSE);
862 TIME_MSG("jump to first error");
864 #endif
866 #ifdef FEAT_WINDOWS
868 * If opened more than one window, start editing files in the other
869 * windows.
871 edit_buffers(&params);
872 #endif
874 #ifdef FEAT_DIFF
875 if (params.diff_mode)
877 win_T *wp;
879 /* set options in each window for "vimdiff". */
880 for (wp = firstwin; wp != NULL; wp = wp->w_next)
881 diff_win_options(wp, TRUE);
883 #endif
886 * Shorten any of the filenames, but only when absolute.
888 shorten_fnames(FALSE);
891 * Need to jump to the tag before executing the '-c command'.
892 * Makes "vim -c '/return' -t main" work.
894 if (params.tagname != NULL)
896 #if defined(HAS_SWAP_EXISTS_ACTION)
897 swap_exists_did_quit = FALSE;
898 #endif
900 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
901 do_cmdline_cmd(IObuff);
902 TIME_MSG("jumping to tag");
904 #if defined(HAS_SWAP_EXISTS_ACTION)
905 /* If the user doesn't want to edit the file then we quit here. */
906 if (swap_exists_did_quit)
907 getout(1);
908 #endif
911 /* Execute any "+", "-c" and "-S" arguments. */
912 if (params.n_commands > 0)
913 exe_commands(&params);
915 RedrawingDisabled = 0;
916 redraw_all_later(NOT_VALID);
917 no_wait_return = FALSE;
918 starting = 0;
920 #ifdef FEAT_TERMRESPONSE
921 /* Requesting the termresponse is postponed until here, so that a "-c q"
922 * argument doesn't make it appear in the shell Vim was started from. */
923 may_req_termresponse();
924 #endif
926 /* start in insert mode */
927 if (p_im)
928 need_start_insertmode = TRUE;
930 #ifdef FEAT_AUTOCMD
931 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
932 TIME_MSG("VimEnter autocommands");
933 #endif
935 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
936 /* When a startup script or session file setup for diff'ing and
937 * scrollbind, sync the scrollbind now. */
938 if (curwin->w_p_diff && curwin->w_p_scb)
940 update_topline();
941 check_scrollbind((linenr_T)0, 0L);
942 TIME_MSG("diff scrollbinding");
944 #endif
946 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
947 mch_set_winsize_now(); /* Allow winsize changes from now on */
948 #endif
950 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
951 /* When tab pages were created, may need to update the tab pages line and
952 * scrollbars. This is skipped while creating them. */
953 if (first_tabpage->tp_next != NULL)
955 out_flush();
956 gui_init_which_components(NULL);
957 gui_update_scrollbars(TRUE);
959 need_mouse_correct = TRUE;
960 #endif
962 /* If ":startinsert" command used, stuff a dummy command to be able to
963 * call normal_cmd(), which will then start Insert mode. */
964 if (restart_edit != 0)
965 stuffcharReadbuff(K_NOP);
967 #ifdef FEAT_NETBEANS_INTG
968 if (usingNetbeans)
969 /* Tell the client that it can start sending commands. */
970 netbeans_startup_done();
971 #endif
973 TIME_MSG("before starting main loop");
975 #if FEAT_GUI_MACVIM
976 // The autorelease pool might have filled up quite a bit during
977 // initialization, so purge it before entering the main loop.
978 objc_msgSend(autoreleasePool, sel_getUid("release"));
980 // The main loop sets up its own autorelease pool, but to be safe we still
981 // realloc this one here.
982 autoreleasePool = objc_msgSend(objc_msgSend(
983 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
984 ), sel_getUid("init"));
985 #endif
988 * Call the main command loop. This never returns.
990 main_loop(FALSE, FALSE);
992 #if FEAT_GUI_MACVIM
993 objc_msgSend(autoreleasePool, sel_getUid("release"));
994 #endif
996 return 0;
998 #endif /* PROTO */
1001 * Main loop: Execute Normal mode commands until exiting Vim.
1002 * Also used to handle commands in the command-line window, until the window
1003 * is closed.
1004 * Also used to handle ":visual" command after ":global": execute Normal mode
1005 * commands, return when entering Ex mode. "noexmode" is TRUE then.
1007 void
1008 main_loop(cmdwin, noexmode)
1009 int cmdwin; /* TRUE when working in the command-line window */
1010 int noexmode; /* TRUE when return on entering Ex mode */
1012 oparg_T oa; /* operator arguments */
1013 int previous_got_int = FALSE; /* "got_int" was TRUE */
1015 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1016 /* Setup to catch a terminating error from the X server. Just ignore
1017 * it, restore the state and continue. This might not always work
1018 * properly, but at least we don't exit unexpectedly when the X server
1019 * exists while Vim is running in a console. */
1020 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
1022 State = NORMAL;
1023 # ifdef FEAT_VISUAL
1024 VIsual_active = FALSE;
1025 # endif
1026 got_int = TRUE;
1027 need_wait_return = FALSE;
1028 global_busy = FALSE;
1029 exmode_active = 0;
1030 skip_redraw = FALSE;
1031 RedrawingDisabled = 0;
1032 no_wait_return = 0;
1033 # ifdef FEAT_EVAL
1034 emsg_skip = 0;
1035 # endif
1036 emsg_off = 0;
1037 # ifdef FEAT_MOUSE
1038 setmouse();
1039 # endif
1040 settmode(TMODE_RAW);
1041 starttermcap();
1042 scroll_start();
1043 redraw_later_clear();
1045 #endif
1047 clear_oparg(&oa);
1048 while (!cmdwin
1049 #ifdef FEAT_CMDWIN
1050 || cmdwin_result == 0
1051 #endif
1054 #if FEAT_GUI_MACVIM
1055 // Cocoa needs an NSAutoreleasePool in place or it will leak memory.
1056 // This particular pool gets released once every loop.
1057 id autoreleasePool = objc_msgSend(objc_msgSend(
1058 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
1059 ), sel_getUid("init"));
1060 #endif
1062 if (stuff_empty())
1064 did_check_timestamps = FALSE;
1065 if (need_check_timestamps)
1066 check_timestamps(FALSE);
1067 if (need_wait_return) /* if wait_return still needed ... */
1068 wait_return(FALSE); /* ... call it now */
1069 if (need_start_insertmode && goto_im()
1070 #ifdef FEAT_VISUAL
1071 && !VIsual_active
1072 #endif
1075 need_start_insertmode = FALSE;
1076 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1077 /* skip the fileinfo message now, because it would be shown
1078 * after insert mode finishes! */
1079 need_fileinfo = FALSE;
1083 /* Reset "got_int" now that we got back to the main loop. Except when
1084 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1085 * the ":g" command.
1086 * For ":g/pat/vi" we reset "got_int" when used once. When used
1087 * a second time we go back to Ex mode and abort the ":g" command. */
1088 if (got_int)
1090 if (noexmode && global_busy && !exmode_active && previous_got_int)
1092 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1093 * used and keep "got_int" set, so that it aborts ":g". */
1094 exmode_active = EXMODE_NORMAL;
1095 State = NORMAL;
1097 else if (!global_busy || !exmode_active)
1099 if (!quit_more)
1100 (void)vgetc(); /* flush all buffers */
1101 got_int = FALSE;
1103 previous_got_int = TRUE;
1105 else
1106 previous_got_int = FALSE;
1108 if (!exmode_active)
1109 msg_scroll = FALSE;
1110 quit_more = FALSE;
1113 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1114 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1115 * update cursor and redraw.
1117 if (skip_redraw || exmode_active)
1118 skip_redraw = FALSE;
1119 else if (do_redraw || stuff_empty())
1121 #ifdef FEAT_AUTOCMD
1122 /* Trigger CursorMoved if the cursor moved. */
1123 if (!finish_op && has_cursormoved()
1124 && !equalpos(last_cursormoved, curwin->w_cursor))
1126 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1127 last_cursormoved = curwin->w_cursor;
1129 #endif
1131 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1132 /* Scroll-binding for diff mode may have been postponed until
1133 * here. Avoids doing it for every change. */
1134 if (diff_need_scrollbind)
1136 check_scrollbind((linenr_T)0, 0L);
1137 diff_need_scrollbind = FALSE;
1139 #endif
1140 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1141 /* Include a closed fold completely in the Visual area. */
1142 foldAdjustVisual();
1143 #endif
1144 #ifdef FEAT_FOLDING
1146 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1147 * contain the cursor.
1148 * When 'foldopen' is "all", open the fold(s) under the cursor.
1149 * This may mark the window for redrawing.
1151 if (hasAnyFolding(curwin) && !char_avail())
1153 foldCheckClose();
1154 if (fdo_flags & FDO_ALL)
1155 foldOpenCursor();
1157 #endif
1160 * Before redrawing, make sure w_topline is correct, and w_leftcol
1161 * if lines don't wrap, and w_skipcol if lines wrap.
1163 update_topline();
1164 validate_cursor();
1166 #ifdef FEAT_VISUAL
1167 if (VIsual_active)
1168 update_curbuf(INVERTED);/* update inverted part */
1169 else
1170 #endif
1171 if (must_redraw)
1172 update_screen(0);
1173 else if (redraw_cmdline || clear_cmdline)
1174 showmode();
1175 #ifdef FEAT_WINDOWS
1176 redraw_statuslines();
1177 #endif
1178 #ifdef FEAT_TITLE
1179 if (need_maketitle)
1180 maketitle();
1181 #endif
1182 /* display message after redraw */
1183 if (keep_msg != NULL)
1185 char_u *p;
1187 /* msg_attr_keep() will set keep_msg to NULL, must free the
1188 * string here. */
1189 p = keep_msg;
1190 keep_msg = NULL;
1191 msg_attr(p, keep_msg_attr);
1192 vim_free(p);
1194 if (need_fileinfo) /* show file info after redraw */
1196 fileinfo(FALSE, TRUE, FALSE);
1197 need_fileinfo = FALSE;
1200 emsg_on_display = FALSE; /* can delete error message now */
1201 did_emsg = FALSE;
1202 msg_didany = FALSE; /* reset lines_left in msg_start() */
1203 may_clear_sb_text(); /* clear scroll-back text on next msg */
1204 showruler(FALSE);
1206 setcursor();
1207 cursor_on();
1209 do_redraw = FALSE;
1211 #ifdef FEAT_GUI
1212 if (need_mouse_correct)
1213 gui_mouse_correct();
1214 #endif
1217 * Update w_curswant if w_set_curswant has been set.
1218 * Postponed until here to avoid computing w_virtcol too often.
1220 update_curswant();
1222 #ifdef FEAT_EVAL
1224 * May perform garbage collection when waiting for a character, but
1225 * only at the very toplevel. Otherwise we may be using a List or
1226 * Dict internally somewhere.
1227 * "may_garbage_collect" is reset in vgetc() which is invoked through
1228 * do_exmode() and normal_cmd().
1230 may_garbage_collect = (!cmdwin && !noexmode);
1231 #endif
1233 * If we're invoked as ex, do a round of ex commands.
1234 * Otherwise, get and execute a normal mode command.
1236 if (exmode_active)
1238 if (noexmode) /* End of ":global/path/visual" commands */
1239 return;
1240 do_exmode(exmode_active == EXMODE_VIM);
1242 else
1243 normal_cmd(&oa, TRUE);
1245 #if FEAT_GUI_MACVIM
1246 // TODO! Make sure there are no continue statements that will cause
1247 // this not to be called or MacVim will leak memory!
1248 objc_msgSend(autoreleasePool, sel_getUid("release"));
1249 #endif
1254 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO) \
1255 || defined(FEAT_GUI_MACVIM)
1257 * Exit, but leave behind swap files for modified buffers.
1259 void
1260 getout_preserve_modified(exitval)
1261 int exitval;
1263 # if defined(SIGHUP) && defined(SIG_IGN)
1264 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1265 * makes Vim exit and then handling SIGHUP causes various reentrance
1266 * problems. */
1267 signal(SIGHUP, SIG_IGN);
1268 # endif
1270 ml_close_notmod(); /* close all not-modified buffers */
1271 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1272 ml_close_all(FALSE); /* close all memfiles, without deleting */
1273 getout(exitval); /* exit Vim properly */
1275 #endif
1278 /* Prepare proper exit*/
1279 void
1280 prepare_getout()
1282 #ifdef FEAT_AUTOCMD
1283 buf_T *buf;
1284 win_T *wp;
1285 tabpage_T *tp, *next_tp;
1286 #endif
1288 exiting = TRUE;
1290 /* Position the cursor on the last screen line, below all the text */
1291 #ifdef FEAT_GUI
1292 if (!gui.in_use)
1293 #endif
1294 windgoto((int)Rows - 1, 0);
1296 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1297 /* Optionally print hashtable efficiency. */
1298 hash_debug_results();
1299 #endif
1301 #ifdef FEAT_GUI
1302 msg_didany = FALSE;
1303 #endif
1305 #ifdef FEAT_AUTOCMD
1306 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1307 # if defined FEAT_WINDOWS
1308 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1310 next_tp = tp->tp_next;
1311 for (wp = (tp == curtab)
1312 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1314 buf = wp->w_buffer;
1315 if (buf->b_changedtick != -1)
1317 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1318 FALSE, buf);
1319 buf->b_changedtick = -1; /* note that we did it already */
1320 /* start all over, autocommands may mess up the lists */
1321 next_tp = first_tabpage;
1322 break;
1326 # else
1327 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1328 # endif
1330 /* Trigger BufUnload for buffers that are loaded */
1331 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1332 if (buf->b_ml.ml_mfp != NULL)
1334 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1335 FALSE, buf);
1336 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1337 break;
1339 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1340 #endif
1342 #ifdef FEAT_VIMINFO
1343 if (*p_viminfo != NUL)
1344 /* Write out the registers, history, marks etc, to the viminfo file */
1345 write_viminfo(NULL, FALSE);
1346 #endif
1348 #ifdef FEAT_AUTOCMD
1349 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1350 #endif
1352 #ifdef FEAT_PROFILE
1353 profile_dump();
1354 #endif
1356 if (did_emsg
1357 #ifdef FEAT_GUI
1358 || (gui.in_use && msg_didany && p_verbose > 0)
1359 #endif
1362 /* give the user a chance to read the (error) message */
1363 no_wait_return = FALSE;
1364 wait_return(FALSE);
1367 #ifdef FEAT_AUTOCMD
1368 /* Position the cursor again, the autocommands may have moved it */
1369 # ifdef FEAT_GUI
1370 if (!gui.in_use)
1371 # endif
1372 windgoto((int)Rows - 1, 0);
1373 #endif
1375 #ifdef FEAT_MZSCHEME
1376 mzscheme_end();
1377 #endif
1378 #ifdef FEAT_TCL
1379 tcl_end();
1380 #endif
1381 #ifdef FEAT_RUBY
1382 ruby_end();
1383 #endif
1384 #ifdef FEAT_PYTHON
1385 python_end();
1386 #endif
1387 #ifdef FEAT_PERL
1388 perl_end();
1389 #endif
1390 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1391 iconv_end();
1392 #endif
1393 #ifdef FEAT_NETBEANS_INTG
1394 netbeans_end();
1395 #endif
1396 #ifdef FEAT_ODB_EDITOR
1397 odb_end();
1398 #endif
1399 #ifdef FEAT_CSCOPE
1400 cs_end();
1401 #endif
1402 #ifdef FEAT_EVAL
1403 if (garbage_collect_at_exit)
1404 garbage_collect();
1405 #endif
1408 /* Exit properly */
1409 void
1410 getout(exitval)
1411 int exitval;
1413 /* When running in Ex mode an error causes us to exit with a non-zero exit
1414 * code. POSIX requires this, although it's not 100% clear from the
1415 * standard. */
1416 if (exmode_active)
1417 exitval += ex_exitval;
1419 prepare_getout();
1420 mch_exit(exitval);
1424 * Get a (optional) count for a Vim argument.
1426 static int
1427 get_number_arg(p, idx, def)
1428 char_u *p; /* pointer to argument */
1429 int *idx; /* index in argument, is incremented */
1430 int def; /* default value */
1432 if (vim_isdigit(p[*idx]))
1434 def = atoi((char *)&(p[*idx]));
1435 while (vim_isdigit(p[*idx]))
1436 *idx = *idx + 1;
1438 return def;
1441 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1443 * Setup to use the current locale (for ctype() and many other things).
1445 static void
1446 init_locale()
1448 setlocale(LC_ALL, "");
1450 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1451 /* Make sure strtod() uses a decimal point, not a comma. */
1452 setlocale(LC_NUMERIC, "C");
1453 # endif
1455 # ifdef WIN32
1456 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1457 * text while it's expecting text in the current locale. This call avoids
1458 * that. */
1459 setlocale(LC_CTYPE, "C");
1460 # endif
1462 # ifdef FEAT_GETTEXT
1464 int mustfree = FALSE;
1465 char_u *p;
1467 # ifdef DYNAMIC_GETTEXT
1468 /* Initialize the gettext library */
1469 dyn_libintl_init(NULL);
1470 # endif
1471 /* expand_env() doesn't work yet, because chartab[] is not initialized
1472 * yet, call vim_getenv() directly */
1473 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1474 if (p != NULL && *p != NUL)
1476 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1477 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1479 if (mustfree)
1480 vim_free(p);
1481 textdomain(VIMPACKAGE);
1483 # endif
1485 #endif
1488 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1489 * If the executable name starts with "r" we disable shell commands.
1490 * If the next character is "e" we run in Easy mode.
1491 * If the next character is "g" we run the GUI version.
1492 * If the next characters are "view" we start in readonly mode.
1493 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1494 * If the next characters are "ex" we start in Ex mode. If it's followed
1495 * by "im" use improved Ex mode.
1497 static void
1498 parse_command_name(parmp)
1499 mparm_T *parmp;
1501 char_u *initstr;
1503 initstr = gettail((char_u *)parmp->argv[0]);
1505 #ifdef MACOS_X_UNIX
1506 /* An issue has been seen when launching Vim in such a way that
1507 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1508 * executable or a symbolic link of it. Until this issue is resolved
1509 * we prohibit the GUI from being used.
1511 if (STRCMP(initstr, parmp->argv[0]) == 0)
1512 disallow_gui = TRUE;
1514 /* TODO: On MacOS X default to gui if argv[0] ends in:
1515 * /Vim.app/Contents/MacOS/Vim */
1516 #endif
1518 #ifdef FEAT_EVAL
1519 set_vim_var_string(VV_PROGNAME, initstr, -1);
1520 #endif
1522 if (TOLOWER_ASC(initstr[0]) == 'r')
1524 restricted = TRUE;
1525 ++initstr;
1528 /* Avoid using evim mode for "editor". */
1529 if (TOLOWER_ASC(initstr[0]) == 'e'
1530 && (TOLOWER_ASC(initstr[1]) == 'v'
1531 || TOLOWER_ASC(initstr[1]) == 'g'))
1533 #ifdef FEAT_GUI
1534 gui.starting = TRUE;
1535 #endif
1536 parmp->evim_mode = TRUE;
1537 ++initstr;
1540 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1542 main_start_gui();
1543 #ifdef FEAT_GUI
1544 ++initstr;
1545 #endif
1548 if (STRNICMP(initstr, "view", 4) == 0)
1550 readonlymode = TRUE;
1551 curbuf->b_p_ro = TRUE;
1552 p_uc = 10000; /* don't update very often */
1553 initstr += 4;
1555 else if (STRNICMP(initstr, "vim", 3) == 0)
1556 initstr += 3;
1558 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1559 if (STRICMP(initstr, "diff") == 0)
1561 #ifdef FEAT_DIFF
1562 parmp->diff_mode = TRUE;
1563 #else
1564 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1565 mch_errmsg("\n");
1566 mch_exit(2);
1567 #endif
1570 if (STRNICMP(initstr, "ex", 2) == 0)
1572 if (STRNICMP(initstr + 2, "im", 2) == 0)
1573 exmode_active = EXMODE_VIM;
1574 else
1575 exmode_active = EXMODE_NORMAL;
1576 change_compatible(TRUE); /* set 'compatible' */
1581 * Get the name of the display, before gui_prepare() removes it from
1582 * argv[]. Used for the xterm-clipboard display.
1584 * Also find the --server... arguments and --socketid and --windowid
1586 /*ARGSUSED*/
1587 static void
1588 early_arg_scan(parmp)
1589 mparm_T *parmp;
1591 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
1592 int argc = parmp->argc;
1593 char **argv = parmp->argv;
1594 int i;
1596 for (i = 1; i < argc; i++)
1598 if (STRCMP(argv[i], "--") == 0)
1599 break;
1600 # ifdef FEAT_XCLIPBOARD
1601 else if (STRICMP(argv[i], "-display") == 0
1602 # if defined(FEAT_GUI_GTK)
1603 || STRICMP(argv[i], "--display") == 0
1604 # endif
1607 if (i == argc - 1)
1608 mainerr_arg_missing((char_u *)argv[i]);
1609 xterm_display = argv[++i];
1611 # endif
1612 # ifdef FEAT_CLIENTSERVER
1613 else if (STRICMP(argv[i], "--servername") == 0)
1615 if (i == argc - 1)
1616 mainerr_arg_missing((char_u *)argv[i]);
1617 parmp->serverName_arg = (char_u *)argv[++i];
1619 else if (STRICMP(argv[i], "--serverlist") == 0)
1620 parmp->serverArg = TRUE;
1621 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1623 parmp->serverArg = TRUE;
1624 # ifdef FEAT_GUI
1625 if (strstr(argv[i], "-wait") != 0)
1626 /* don't fork() when starting the GUI to edit files ourself */
1627 gui.dofork = FALSE;
1628 # endif
1630 # endif
1632 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1633 # ifdef FEAT_GUI_W32
1634 else if (STRICMP(argv[i], "--windowid") == 0)
1635 # else
1636 else if (STRICMP(argv[i], "--socketid") == 0)
1637 # endif
1639 long_u id;
1640 int count;
1642 if (i == argc - 1)
1643 mainerr_arg_missing((char_u *)argv[i]);
1644 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1645 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1646 else
1647 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1648 if (count != 1)
1649 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1650 else
1651 # ifdef FEAT_GUI_W32
1652 win_socket_id = id;
1653 # else
1654 gtk_socket_id = id;
1655 # endif
1656 i++;
1658 # endif
1659 # ifdef FEAT_GUI_GTK
1660 else if (STRICMP(argv[i], "--echo-wid") == 0)
1661 echo_wid_arg = TRUE;
1662 # endif
1664 #endif
1668 * Scan the command line arguments.
1670 static void
1671 command_line_scan(parmp)
1672 mparm_T *parmp;
1674 int argc = parmp->argc;
1675 char **argv = parmp->argv;
1676 int argv_idx; /* index in argv[n][] */
1677 int had_minmin = FALSE; /* found "--" argument */
1678 int want_argument; /* option argument with argument */
1679 int c;
1680 char_u *p = NULL;
1681 long n;
1683 --argc;
1684 ++argv;
1685 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1686 while (argc > 0)
1689 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1691 if (argv[0][0] == '+' && !had_minmin)
1693 if (parmp->n_commands >= MAX_ARG_CMDS)
1694 mainerr(ME_EXTRA_CMD, NULL);
1695 argv_idx = -1; /* skip to next argument */
1696 if (argv[0][1] == NUL)
1697 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1698 else
1699 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1703 * Optional argument.
1705 else if (argv[0][0] == '-' && !had_minmin)
1707 want_argument = FALSE;
1708 c = argv[0][argv_idx++];
1709 #ifdef VMS
1711 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1712 * and "-/X" as "-X".
1714 if (c == '/')
1716 c = argv[0][argv_idx++];
1717 c = TOUPPER_ASC(c);
1719 else
1720 c = TOLOWER_ASC(c);
1721 #endif
1722 switch (c)
1724 case NUL: /* "vim -" read from stdin */
1725 /* "ex -" silent mode */
1726 if (exmode_active)
1727 silent_mode = TRUE;
1728 else
1730 if (parmp->edit_type != EDIT_NONE)
1731 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1732 parmp->edit_type = EDIT_STDIN;
1733 read_cmd_fd = 2; /* read from stderr instead of stdin */
1735 argv_idx = -1; /* skip to next argument */
1736 break;
1738 case '-': /* "--" don't take any more option arguments */
1739 /* "--help" give help message */
1740 /* "--version" give version message */
1741 /* "--literal" take files literally */
1742 /* "--nofork" don't fork */
1743 /* "--noplugin[s]" skip plugins */
1744 /* "--cmd <cmd>" execute cmd before vimrc */
1745 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1746 usage();
1747 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1749 Columns = 80; /* need to init Columns */
1750 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1751 list_version();
1752 msg_putchar('\n');
1753 msg_didout = FALSE;
1754 mch_exit(0);
1756 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1758 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1759 parmp->literal = TRUE;
1760 #endif
1762 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1764 #ifdef FEAT_GUI
1765 gui.dofork = FALSE; /* don't fork() when starting GUI */
1766 #endif
1768 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1769 p_lpl = FALSE;
1770 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1772 want_argument = TRUE;
1773 argv_idx += 3;
1775 #ifdef FEAT_CLIENTSERVER
1776 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1777 ; /* already processed -- no arg */
1778 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1779 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1781 /* already processed -- snatch the following arg */
1782 if (argc > 1)
1784 --argc;
1785 ++argv;
1788 #endif
1789 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1790 # ifdef FEAT_GUI_GTK
1791 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1792 # else
1793 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1794 # endif
1796 /* already processed -- snatch the following arg */
1797 if (argc > 1)
1799 --argc;
1800 ++argv;
1803 #endif
1804 #ifdef FEAT_GUI_GTK
1805 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1807 /* already processed, skip */
1809 #endif
1810 else
1812 if (argv[0][argv_idx])
1813 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1814 had_minmin = TRUE;
1816 if (!want_argument)
1817 argv_idx = -1; /* skip to next argument */
1818 break;
1820 case 'A': /* "-A" start in Arabic mode */
1821 #ifdef FEAT_ARABIC
1822 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1823 #else
1824 mch_errmsg(_(e_noarabic));
1825 mch_exit(2);
1826 #endif
1827 break;
1829 case 'b': /* "-b" binary mode */
1830 /* Needs to be effective before expanding file names, because
1831 * for Win32 this makes us edit a shortcut file itself,
1832 * instead of the file it links to. */
1833 set_options_bin(curbuf->b_p_bin, 1, 0);
1834 curbuf->b_p_bin = 1; /* binary file I/O */
1835 break;
1837 case 'C': /* "-C" Compatible */
1838 change_compatible(TRUE);
1839 break;
1841 case 'e': /* "-e" Ex mode */
1842 exmode_active = EXMODE_NORMAL;
1843 break;
1845 case 'E': /* "-E" Improved Ex mode */
1846 exmode_active = EXMODE_VIM;
1847 break;
1849 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1850 window directly, not with newcli */
1851 #ifdef FEAT_GUI
1852 gui.dofork = FALSE; /* don't fork() when starting GUI */
1853 #endif
1854 break;
1856 case 'g': /* "-g" start GUI */
1857 main_start_gui();
1858 break;
1860 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1861 #ifdef FEAT_FKMAP
1862 p_fkmap = TRUE;
1863 set_option_value((char_u *)"rl", 1L, NULL, 0);
1864 #else
1865 mch_errmsg(_(e_nofarsi));
1866 mch_exit(2);
1867 #endif
1868 break;
1870 case 'h': /* "-h" give help message */
1871 #ifdef FEAT_GUI_GNOME
1872 /* Tell usage() to exit for "gvim". */
1873 gui.starting = FALSE;
1874 #endif
1875 usage();
1876 break;
1878 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1879 #ifdef FEAT_RIGHTLEFT
1880 p_hkmap = TRUE;
1881 set_option_value((char_u *)"rl", 1L, NULL, 0);
1882 #else
1883 mch_errmsg(_(e_nohebrew));
1884 mch_exit(2);
1885 #endif
1886 break;
1888 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1889 #ifdef FEAT_LISP
1890 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1891 p_sm = TRUE;
1892 #endif
1893 break;
1895 case 'M': /* "-M" no changes or writing of files */
1896 reset_modifiable();
1897 /* FALLTHROUGH */
1899 case 'm': /* "-m" no writing of files */
1900 p_write = FALSE;
1901 break;
1903 case 'y': /* "-y" easy mode */
1904 #ifdef FEAT_GUI
1905 gui.starting = TRUE; /* start GUI a bit later */
1906 #endif
1907 parmp->evim_mode = TRUE;
1908 break;
1910 case 'N': /* "-N" Nocompatible */
1911 change_compatible(FALSE);
1912 break;
1914 case 'n': /* "-n" no swap file */
1915 parmp->no_swap_file = TRUE;
1916 break;
1918 case 'p': /* "-p[N]" open N tab pages */
1919 #ifdef TARGET_API_MAC_OSX
1920 /* For some reason on MacOS X, an argument like:
1921 -psn_0_10223617 is passed in when invoke from Finder
1922 or with the 'open' command */
1923 if (argv[0][argv_idx] == 's')
1925 argv_idx = -1; /* bypass full -psn */
1926 main_start_gui();
1927 break;
1929 #endif
1930 #ifdef FEAT_WINDOWS
1931 /* default is 0: open window for each file */
1932 parmp->window_count = get_number_arg((char_u *)argv[0],
1933 &argv_idx, 0);
1934 parmp->window_layout = WIN_TABS;
1935 #endif
1936 break;
1938 case 'o': /* "-o[N]" open N horizontal split windows */
1939 #ifdef FEAT_WINDOWS
1940 /* default is 0: open window for each file */
1941 parmp->window_count = get_number_arg((char_u *)argv[0],
1942 &argv_idx, 0);
1943 parmp->window_layout = WIN_HOR;
1944 #endif
1945 break;
1947 case 'O': /* "-O[N]" open N vertical split windows */
1948 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1949 /* default is 0: open window for each file */
1950 parmp->window_count = get_number_arg((char_u *)argv[0],
1951 &argv_idx, 0);
1952 parmp->window_layout = WIN_VER;
1953 #endif
1954 break;
1956 #ifdef FEAT_QUICKFIX
1957 case 'q': /* "-q" QuickFix mode */
1958 if (parmp->edit_type != EDIT_NONE)
1959 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1960 parmp->edit_type = EDIT_QF;
1961 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1963 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1964 argv_idx = -1;
1966 else if (argc > 1) /* "-q {errorfile}" */
1967 want_argument = TRUE;
1968 break;
1969 #endif
1971 case 'R': /* "-R" readonly mode */
1972 readonlymode = TRUE;
1973 curbuf->b_p_ro = TRUE;
1974 p_uc = 10000; /* don't update very often */
1975 break;
1977 case 'r': /* "-r" recovery mode */
1978 case 'L': /* "-L" recovery mode */
1979 recoverymode = 1;
1980 break;
1982 case 's':
1983 if (exmode_active) /* "-s" silent (batch) mode */
1984 silent_mode = TRUE;
1985 else /* "-s {scriptin}" read from script file */
1986 want_argument = TRUE;
1987 break;
1989 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1990 if (parmp->edit_type != EDIT_NONE)
1991 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1992 parmp->edit_type = EDIT_TAG;
1993 if (argv[0][argv_idx]) /* "-t{tag}" */
1995 parmp->tagname = (char_u *)argv[0] + argv_idx;
1996 argv_idx = -1;
1998 else /* "-t {tag}" */
1999 want_argument = TRUE;
2000 break;
2002 #ifdef FEAT_EVAL
2003 case 'D': /* "-D" Debugging */
2004 parmp->use_debug_break_level = 9999;
2005 break;
2006 #endif
2007 #ifdef FEAT_DIFF
2008 case 'd': /* "-d" 'diff' */
2009 # ifdef AMIGA
2010 /* check for "-dev {device}" */
2011 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2012 want_argument = TRUE;
2013 else
2014 # endif
2015 parmp->diff_mode = TRUE;
2016 break;
2017 #endif
2018 case 'V': /* "-V{N}" Verbose level */
2019 /* default is 10: a little bit verbose */
2020 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2021 if (argv[0][argv_idx] != NUL)
2023 set_option_value((char_u *)"verbosefile", 0L,
2024 (char_u *)argv[0] + argv_idx, 0);
2025 argv_idx = (int)STRLEN(argv[0]);
2027 break;
2029 case 'v': /* "-v" Vi-mode (as if called "vi") */
2030 exmode_active = 0;
2031 #ifdef FEAT_GUI
2032 gui.starting = FALSE; /* don't start GUI */
2033 #endif
2034 break;
2036 case 'w': /* "-w{number}" set window height */
2037 /* "-w {scriptout}" write to script */
2038 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2040 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2041 set_option_value((char_u *)"window", n, NULL, 0);
2042 break;
2044 want_argument = TRUE;
2045 break;
2047 #ifdef FEAT_CRYPT
2048 case 'x': /* "-x" encrypted reading/writing of files */
2049 parmp->ask_for_key = TRUE;
2050 break;
2051 #endif
2053 case 'X': /* "-X" don't connect to X server */
2054 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2055 x_no_connect = TRUE;
2056 #endif
2057 break;
2059 case 'Z': /* "-Z" restricted mode */
2060 restricted = TRUE;
2061 break;
2063 case 'c': /* "-c{command}" or "-c {command}" execute
2064 command */
2065 if (argv[0][argv_idx] != NUL)
2067 if (parmp->n_commands >= MAX_ARG_CMDS)
2068 mainerr(ME_EXTRA_CMD, NULL);
2069 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2070 + argv_idx;
2071 argv_idx = -1;
2072 break;
2074 /*FALLTHROUGH*/
2075 case 'S': /* "-S {file}" execute Vim script */
2076 case 'i': /* "-i {viminfo}" use for viminfo */
2077 #ifndef FEAT_DIFF
2078 case 'd': /* "-d {device}" device (for Amiga) */
2079 #endif
2080 case 'T': /* "-T {terminal}" terminal name */
2081 case 'u': /* "-u {vimrc}" vim inits file */
2082 case 'U': /* "-U {gvimrc}" gvim inits file */
2083 case 'W': /* "-W {scriptout}" overwrite */
2084 #ifdef FEAT_GUI_W32
2085 case 'P': /* "-P {parent title}" MDI parent */
2086 #endif
2087 want_argument = TRUE;
2088 break;
2090 default:
2091 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2095 * Handle option arguments with argument.
2097 if (want_argument)
2100 * Check for garbage immediately after the option letter.
2102 if (argv[0][argv_idx] != NUL)
2103 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2105 --argc;
2106 if (argc < 1 && c != 'S')
2107 mainerr_arg_missing((char_u *)argv[0]);
2108 ++argv;
2109 argv_idx = -1;
2111 switch (c)
2113 case 'c': /* "-c {command}" execute command */
2114 case 'S': /* "-S {file}" execute Vim script */
2115 if (parmp->n_commands >= MAX_ARG_CMDS)
2116 mainerr(ME_EXTRA_CMD, NULL);
2117 if (c == 'S')
2119 char *a;
2121 if (argc < 1)
2122 /* "-S" without argument: use default session file
2123 * name. */
2124 a = SESSION_FILE;
2125 else if (argv[0][0] == '-')
2127 /* "-S" followed by another option: use default
2128 * session file name. */
2129 a = SESSION_FILE;
2130 ++argc;
2131 --argv;
2133 else
2134 a = argv[0];
2135 p = alloc((unsigned)(STRLEN(a) + 4));
2136 if (p == NULL)
2137 mch_exit(2);
2138 sprintf((char *)p, "so %s", a);
2139 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2140 parmp->commands[parmp->n_commands++] = p;
2142 else
2143 parmp->commands[parmp->n_commands++] =
2144 (char_u *)argv[0];
2145 break;
2147 case '-': /* "--cmd {command}" execute command */
2148 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2149 mainerr(ME_EXTRA_CMD, NULL);
2150 parmp->pre_commands[parmp->n_pre_commands++] =
2151 (char_u *)argv[0];
2152 break;
2154 /* case 'd': -d {device} is handled in mch_check_win() for the
2155 * Amiga */
2157 #ifdef FEAT_QUICKFIX
2158 case 'q': /* "-q {errorfile}" QuickFix mode */
2159 parmp->use_ef = (char_u *)argv[0];
2160 break;
2161 #endif
2163 case 'i': /* "-i {viminfo}" use for viminfo */
2164 use_viminfo = (char_u *)argv[0];
2165 break;
2167 case 's': /* "-s {scriptin}" read from script file */
2168 if (scriptin[0] != NULL)
2170 scripterror:
2171 mch_errmsg(_("Attempt to open script file again: \""));
2172 mch_errmsg(argv[-1]);
2173 mch_errmsg(" ");
2174 mch_errmsg(argv[0]);
2175 mch_errmsg("\"\n");
2176 mch_exit(2);
2178 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2180 mch_errmsg(_("Cannot open for reading: \""));
2181 mch_errmsg(argv[0]);
2182 mch_errmsg("\"\n");
2183 mch_exit(2);
2185 if (save_typebuf() == FAIL)
2186 mch_exit(2); /* out of memory */
2187 break;
2189 case 't': /* "-t {tag}" */
2190 parmp->tagname = (char_u *)argv[0];
2191 break;
2193 case 'T': /* "-T {terminal}" terminal name */
2195 * The -T term argument is always available and when
2196 * HAVE_TERMLIB is supported it overrides the environment
2197 * variable TERM.
2199 #ifdef FEAT_GUI
2200 if (term_is_gui((char_u *)argv[0]))
2201 gui.starting = TRUE; /* start GUI a bit later */
2202 else
2203 #endif
2204 parmp->term = (char_u *)argv[0];
2205 break;
2207 case 'u': /* "-u {vimrc}" vim inits file */
2208 parmp->use_vimrc = (char_u *)argv[0];
2209 break;
2211 case 'U': /* "-U {gvimrc}" gvim inits file */
2212 #ifdef FEAT_GUI
2213 use_gvimrc = (char_u *)argv[0];
2214 #endif
2215 break;
2217 case 'w': /* "-w {nr}" 'window' value */
2218 /* "-w {scriptout}" append to script file */
2219 if (vim_isdigit(*((char_u *)argv[0])))
2221 argv_idx = 0;
2222 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2223 set_option_value((char_u *)"window", n, NULL, 0);
2224 argv_idx = -1;
2225 break;
2227 /*FALLTHROUGH*/
2228 case 'W': /* "-W {scriptout}" overwrite script file */
2229 if (scriptout != NULL)
2230 goto scripterror;
2231 if ((scriptout = mch_fopen(argv[0],
2232 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2234 mch_errmsg(_("Cannot open for script output: \""));
2235 mch_errmsg(argv[0]);
2236 mch_errmsg("\"\n");
2237 mch_exit(2);
2239 break;
2241 #ifdef FEAT_GUI_W32
2242 case 'P': /* "-P {parent title}" MDI parent */
2243 gui_mch_set_parent(argv[0]);
2244 break;
2245 #endif
2251 * File name argument.
2253 else
2255 argv_idx = -1; /* skip to next argument */
2257 /* Check for only one type of editing. */
2258 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2259 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2260 parmp->edit_type = EDIT_FILE;
2262 #ifdef MSWIN
2263 /* Remember if the argument was a full path before changing
2264 * slashes to backslashes. */
2265 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2266 parmp->full_path = TRUE;
2267 #endif
2269 /* Add the file to the global argument list. */
2270 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2271 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2272 mch_exit(2);
2273 #ifdef FEAT_DIFF
2274 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2275 && !mch_isdir(alist_name(&GARGLIST[0])))
2277 char_u *r;
2279 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2280 if (r != NULL)
2282 vim_free(p);
2283 p = r;
2286 #endif
2287 #if defined(__CYGWIN32__) && !defined(WIN32)
2289 * If vim is invoked by non-Cygwin tools, convert away any
2290 * DOS paths, so things like .swp files are created correctly.
2291 * Look for evidence of non-Cygwin paths before we bother.
2292 * This is only for when using the Unix files.
2294 if (strpbrk(p, "\\:") != NULL)
2296 char posix_path[PATH_MAX];
2298 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2299 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2300 # else
2301 cygwin_conv_to_posix_path(p, posix_path);
2302 # endif
2303 vim_free(p);
2304 p = vim_strsave(posix_path);
2305 if (p == NULL)
2306 mch_exit(2);
2308 #endif
2310 #ifdef USE_FNAME_CASE
2311 /* Make the case of the file name match the actual file. */
2312 fname_case(p, 0);
2313 #endif
2315 alist_add(&global_alist, p,
2316 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2317 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2318 #else
2319 2 /* add buffer number now and use curbuf */
2320 #endif
2323 #if defined(FEAT_MBYTE) && defined(WIN32)
2325 /* Remember this argument has been added to the argument list.
2326 * Needed when 'encoding' is changed. */
2327 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2328 # ifdef FEAT_DIFF
2329 parmp->diff_mode
2330 # else
2331 FALSE
2332 # endif
2335 #endif
2339 * If there are no more letters after the current "-", go to next
2340 * argument. argv_idx is set to -1 when the current argument is to be
2341 * skipped.
2343 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2345 --argc;
2346 ++argv;
2347 argv_idx = 1;
2351 #ifdef FEAT_EVAL
2352 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2353 * one. */
2354 if (parmp->n_commands > 0)
2356 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2357 if (p != NULL)
2359 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2360 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2361 vim_free(p);
2364 #endif
2368 * Print a warning if stdout is not a terminal.
2369 * When starting in Ex mode and commands come from a file, set Silent mode.
2371 static void
2372 check_tty(parmp)
2373 mparm_T *parmp;
2375 int input_isatty; /* is active input a terminal? */
2377 input_isatty = mch_input_isatty();
2378 if (exmode_active)
2380 if (!input_isatty)
2381 silent_mode = TRUE;
2383 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2384 #ifdef FEAT_GUI
2385 /* don't want the delay when started from the desktop */
2386 && !gui.starting
2387 #endif
2390 #ifdef NBDEBUG
2392 * This shouldn't be necessary. But if I run netbeans with the log
2393 * output coming to the console and XOpenDisplay fails, I get vim
2394 * trying to start with input/output to my console tty. This fills my
2395 * input buffer so fast I can't even kill the process in under 2
2396 * minutes (and it beeps continuously the whole time :-)
2398 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2400 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2401 exit(1);
2403 #endif
2404 if (!parmp->stdout_isatty)
2405 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2406 if (!input_isatty)
2407 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2408 out_flush();
2409 if (scriptin[0] == NULL)
2410 ui_delay(2000L, TRUE);
2411 TIME_MSG("Warning delay");
2416 * Read text from stdin.
2418 static void
2419 read_stdin()
2421 int i;
2423 #if defined(HAS_SWAP_EXISTS_ACTION)
2424 /* When getting the ATTENTION prompt here, use a dialog */
2425 swap_exists_action = SEA_DIALOG;
2426 #endif
2427 no_wait_return = TRUE;
2428 i = msg_didany;
2429 set_buflisted(TRUE);
2430 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2431 no_wait_return = FALSE;
2432 msg_didany = i;
2433 TIME_MSG("reading stdin");
2434 #if defined(HAS_SWAP_EXISTS_ACTION)
2435 check_swap_exists_action();
2436 #endif
2437 #if !(defined(AMIGA) || defined(MACOS))
2439 * Close stdin and dup it from stderr. Required for GPM to work
2440 * properly, and for running external commands.
2441 * Is there any other system that cannot do this?
2443 close(0);
2444 dup(2);
2445 #endif
2449 * Create the requested number of windows and edit buffers in them.
2450 * Also does recovery if "recoverymode" set.
2452 /*ARGSUSED*/
2453 static void
2454 create_windows(parmp)
2455 mparm_T *parmp;
2457 #ifdef FEAT_WINDOWS
2458 int dorewind;
2459 int done = 0;
2462 * Create the number of windows that was requested.
2464 if (parmp->window_count == -1) /* was not set */
2465 parmp->window_count = 1;
2466 if (parmp->window_count == 0)
2467 parmp->window_count = GARGCOUNT;
2468 if (parmp->window_count > 1)
2470 /* Don't change the windows if there was a command in .vimrc that
2471 * already split some windows */
2472 if (parmp->window_layout == 0)
2473 parmp->window_layout = WIN_HOR;
2474 if (parmp->window_layout == WIN_TABS)
2476 parmp->window_count = make_tabpages(parmp->window_count);
2477 TIME_MSG("making tab pages");
2479 else if (firstwin->w_next == NULL)
2481 parmp->window_count = make_windows(parmp->window_count,
2482 parmp->window_layout == WIN_VER);
2483 TIME_MSG("making windows");
2485 else
2486 parmp->window_count = win_count();
2488 else
2489 parmp->window_count = 1;
2490 #endif
2492 if (recoverymode) /* do recover */
2494 msg_scroll = TRUE; /* scroll message up */
2495 ml_recover();
2496 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2497 getout(1);
2498 do_modelines(0); /* do modelines */
2500 else
2503 * Open a buffer for windows that don't have one yet.
2504 * Commands in the .vimrc might have loaded a file or split the window.
2505 * Watch out for autocommands that delete a window.
2507 #ifdef FEAT_AUTOCMD
2509 * Don't execute Win/Buf Enter/Leave autocommands here
2511 ++autocmd_no_enter;
2512 ++autocmd_no_leave;
2513 #endif
2514 #ifdef FEAT_WINDOWS
2515 dorewind = TRUE;
2516 while (done++ < 1000)
2518 if (dorewind)
2520 if (parmp->window_layout == WIN_TABS)
2521 goto_tabpage(1);
2522 else
2523 curwin = firstwin;
2525 else if (parmp->window_layout == WIN_TABS)
2527 if (curtab->tp_next == NULL)
2528 break;
2529 goto_tabpage(0);
2531 else
2533 if (curwin->w_next == NULL)
2534 break;
2535 curwin = curwin->w_next;
2537 dorewind = FALSE;
2538 #endif
2539 curbuf = curwin->w_buffer;
2540 if (curbuf->b_ml.ml_mfp == NULL)
2542 #ifdef FEAT_FOLDING
2543 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2544 if (p_fdls >= 0)
2545 curwin->w_p_fdl = p_fdls;
2546 #endif
2547 #if defined(HAS_SWAP_EXISTS_ACTION)
2548 /* When getting the ATTENTION prompt here, use a dialog */
2549 swap_exists_action = SEA_DIALOG;
2550 #endif
2551 set_buflisted(TRUE);
2552 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2554 #if defined(HAS_SWAP_EXISTS_ACTION)
2555 if (swap_exists_action == SEA_QUIT)
2557 if (got_int || only_one_window())
2559 /* abort selected or quit and only one window */
2560 did_emsg = FALSE; /* avoid hit-enter prompt */
2561 getout(1);
2563 /* We can't close the window, it would disturb what
2564 * happens next. Clear the file name and set the arg
2565 * index to -1 to delete it later. */
2566 setfname(curbuf, NULL, NULL, FALSE);
2567 curwin->w_arg_idx = -1;
2568 swap_exists_action = SEA_NONE;
2570 else
2571 handle_swap_exists(NULL);
2572 #endif
2573 #ifdef FEAT_AUTOCMD
2574 dorewind = TRUE; /* start again */
2575 #endif
2577 #ifdef FEAT_WINDOWS
2578 ui_breakcheck();
2579 if (got_int)
2581 (void)vgetc(); /* only break the file loading, not the rest */
2582 break;
2585 #endif
2586 #ifdef FEAT_WINDOWS
2587 if (parmp->window_layout == WIN_TABS)
2588 goto_tabpage(1);
2589 else
2590 curwin = firstwin;
2591 curbuf = curwin->w_buffer;
2592 #endif
2593 #ifdef FEAT_AUTOCMD
2594 --autocmd_no_enter;
2595 --autocmd_no_leave;
2596 #endif
2600 #ifdef FEAT_WINDOWS
2602 * If opened more than one window, start editing files in the other
2603 * windows. make_windows() has already opened the windows.
2605 static void
2606 edit_buffers(parmp)
2607 mparm_T *parmp;
2609 int arg_idx; /* index in argument list */
2610 int i;
2611 int advance = TRUE;
2613 # ifdef FEAT_AUTOCMD
2615 * Don't execute Win/Buf Enter/Leave autocommands here
2617 ++autocmd_no_enter;
2618 ++autocmd_no_leave;
2619 # endif
2621 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2622 if (curwin->w_arg_idx == -1)
2624 win_close(curwin, TRUE);
2625 advance = FALSE;
2628 arg_idx = 1;
2629 for (i = 1; i < parmp->window_count; ++i)
2631 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2632 if (curwin->w_arg_idx == -1)
2634 ++arg_idx;
2635 win_close(curwin, TRUE);
2636 advance = FALSE;
2637 continue;
2640 if (advance)
2642 if (parmp->window_layout == WIN_TABS)
2644 if (curtab->tp_next == NULL) /* just checking */
2645 break;
2646 goto_tabpage(0);
2648 else
2650 if (curwin->w_next == NULL) /* just checking */
2651 break;
2652 win_enter(curwin->w_next, FALSE);
2655 advance = TRUE;
2657 /* Only open the file if there is no file in this window yet (that can
2658 * happen when .vimrc contains ":sall"). */
2659 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2661 curwin->w_arg_idx = arg_idx;
2662 /* Edit file from arg list, if there is one. When "Quit" selected
2663 * at the ATTENTION prompt close the window. */
2664 # ifdef HAS_SWAP_EXISTS_ACTION
2665 swap_exists_did_quit = FALSE;
2666 # endif
2667 (void)do_ecmd(0, arg_idx < GARGCOUNT
2668 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2669 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
2670 # ifdef HAS_SWAP_EXISTS_ACTION
2671 if (swap_exists_did_quit)
2673 /* abort or quit selected */
2674 if (got_int || only_one_window())
2676 /* abort selected and only one window */
2677 did_emsg = FALSE; /* avoid hit-enter prompt */
2678 getout(1);
2680 win_close(curwin, TRUE);
2681 advance = FALSE;
2683 # endif
2684 if (arg_idx == GARGCOUNT - 1)
2685 arg_had_last = TRUE;
2686 ++arg_idx;
2688 ui_breakcheck();
2689 if (got_int)
2691 (void)vgetc(); /* only break the file loading, not the rest */
2692 break;
2696 if (parmp->window_layout == WIN_TABS)
2697 goto_tabpage(1);
2698 # ifdef FEAT_AUTOCMD
2699 --autocmd_no_enter;
2700 # endif
2701 win_enter(firstwin, FALSE); /* back to first window */
2702 # ifdef FEAT_AUTOCMD
2703 --autocmd_no_leave;
2704 # endif
2705 TIME_MSG("editing files in windows");
2706 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2707 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2709 #endif /* FEAT_WINDOWS */
2712 * Execute the commands from --cmd arguments "cmds[cnt]".
2714 static void
2715 exe_pre_commands(parmp)
2716 mparm_T *parmp;
2718 char_u **cmds = parmp->pre_commands;
2719 int cnt = parmp->n_pre_commands;
2720 int i;
2722 if (cnt > 0)
2724 curwin->w_cursor.lnum = 0; /* just in case.. */
2725 sourcing_name = (char_u *)_("pre-vimrc command line");
2726 # ifdef FEAT_EVAL
2727 current_SID = SID_CMDARG;
2728 # endif
2729 for (i = 0; i < cnt; ++i)
2730 do_cmdline_cmd(cmds[i]);
2731 sourcing_name = NULL;
2732 # ifdef FEAT_EVAL
2733 current_SID = 0;
2734 # endif
2735 TIME_MSG("--cmd commands");
2740 * Execute "+", "-c" and "-S" arguments.
2742 static void
2743 exe_commands(parmp)
2744 mparm_T *parmp;
2746 int i;
2749 * We start commands on line 0, make "vim +/pat file" match a
2750 * pattern on line 1. But don't move the cursor when an autocommand
2751 * with g`" was used.
2753 msg_scroll = TRUE;
2754 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2755 curwin->w_cursor.lnum = 0;
2756 sourcing_name = (char_u *)"command line";
2757 #ifdef FEAT_EVAL
2758 current_SID = SID_CARG;
2759 #endif
2760 for (i = 0; i < parmp->n_commands; ++i)
2762 do_cmdline_cmd(parmp->commands[i]);
2763 if (parmp->cmds_tofree[i])
2764 vim_free(parmp->commands[i]);
2766 sourcing_name = NULL;
2767 #ifdef FEAT_EVAL
2768 current_SID = 0;
2769 #endif
2770 if (curwin->w_cursor.lnum == 0)
2771 curwin->w_cursor.lnum = 1;
2773 if (!exmode_active)
2774 msg_scroll = FALSE;
2776 #ifdef FEAT_QUICKFIX
2777 /* When started with "-q errorfile" jump to first error again. */
2778 if (parmp->edit_type == EDIT_QF)
2779 qf_jump(NULL, 0, 0, FALSE);
2780 #endif
2781 TIME_MSG("executing command arguments");
2785 * Source startup scripts.
2787 static void
2788 source_startup_scripts(parmp)
2789 mparm_T *parmp;
2791 int i;
2794 * For "evim" source evim.vim first of all, so that the user can overrule
2795 * any things he doesn't like.
2797 if (parmp->evim_mode)
2799 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2800 TIME_MSG("source evim file");
2804 * If -u argument given, use only the initializations from that file and
2805 * nothing else.
2807 if (parmp->use_vimrc != NULL)
2809 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2810 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2812 #ifdef FEAT_GUI
2813 if (use_gvimrc == NULL) /* don't load gvimrc either */
2814 use_gvimrc = parmp->use_vimrc;
2815 #endif
2816 if (parmp->use_vimrc[2] == 'N')
2817 p_lpl = FALSE; /* don't load plugins either */
2819 else
2821 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2822 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2825 else if (!silent_mode)
2827 #ifdef AMIGA
2828 struct Process *proc = (struct Process *)FindTask(0L);
2829 APTR save_winptr = proc->pr_WindowPtr;
2831 /* Avoid a requester here for a volume that doesn't exist. */
2832 proc->pr_WindowPtr = (APTR)-1L;
2833 #endif
2836 * Get system wide defaults, if the file name is defined.
2838 #ifdef SYS_VIMRC_FILE
2839 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2840 #endif
2841 #if defined(MACOS_X) && !defined(FEAT_GUI_MACVIM)
2842 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2843 #endif
2846 * Try to read initialization commands from the following places:
2847 * - environment variable VIMINIT
2848 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2849 * - second user vimrc file ($VIM/.vimrc for Dos)
2850 * - environment variable EXINIT
2851 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2852 * - second user exrc file ($VIM/.exrc for Dos)
2853 * The first that exists is used, the rest is ignored.
2855 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2857 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2858 #ifdef USR_VIMRC_FILE2
2859 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2860 DOSO_VIMRC) == FAIL
2861 #endif
2862 #ifdef USR_VIMRC_FILE3
2863 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2864 DOSO_VIMRC) == FAIL
2865 #endif
2866 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2867 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2869 #ifdef USR_EXRC_FILE2
2870 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2871 #endif
2876 * Read initialization commands from ".vimrc" or ".exrc" in current
2877 * directory. This is only done if the 'exrc' option is set.
2878 * Because of security reasons we disallow shell and write commands
2879 * now, except for unix if the file is owned by the user or 'secure'
2880 * option has been reset in environment of global ".exrc" or ".vimrc".
2881 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2882 * SYS_VIMRC_FILE.
2884 if (p_exrc)
2886 #if defined(UNIX) || defined(VMS)
2887 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2888 if (!file_owned(VIMRC_FILE))
2889 #endif
2890 secure = p_secure;
2892 i = FAIL;
2893 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2894 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2895 #ifdef USR_VIMRC_FILE2
2896 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2897 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2898 #endif
2899 #ifdef USR_VIMRC_FILE3
2900 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2901 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2902 #endif
2903 #ifdef SYS_VIMRC_FILE
2904 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2905 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2906 #endif
2908 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2910 if (i == FAIL)
2912 #if defined(UNIX) || defined(VMS)
2913 /* if ".exrc" is not owned by user set 'secure' mode */
2914 if (!file_owned(EXRC_FILE))
2915 secure = p_secure;
2916 else
2917 secure = 0;
2918 #endif
2919 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2920 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2921 #ifdef USR_EXRC_FILE2
2922 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2923 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2924 #endif
2926 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2929 if (secure == 2)
2930 need_wait_return = TRUE;
2931 secure = 0;
2932 #ifdef AMIGA
2933 proc->pr_WindowPtr = save_winptr;
2934 #endif
2936 TIME_MSG("sourcing vimrc file(s)");
2940 * Setup to start using the GUI. Exit with an error when not available.
2942 static void
2943 main_start_gui()
2945 #ifdef FEAT_GUI
2946 gui.starting = TRUE; /* start GUI a bit later */
2947 #else
2948 mch_errmsg(_(e_nogvim));
2949 mch_errmsg("\n");
2950 mch_exit(2);
2951 #endif
2955 * Get an environment variable, and execute it as Ex commands.
2956 * Returns FAIL if the environment variable was not executed, OK otherwise.
2959 process_env(env, is_viminit)
2960 char_u *env;
2961 int is_viminit; /* when TRUE, called for VIMINIT */
2963 char_u *initstr;
2964 char_u *save_sourcing_name;
2965 linenr_T save_sourcing_lnum;
2966 #ifdef FEAT_EVAL
2967 scid_T save_sid;
2968 #endif
2970 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2972 if (is_viminit)
2973 vimrc_found(NULL, NULL);
2974 save_sourcing_name = sourcing_name;
2975 save_sourcing_lnum = sourcing_lnum;
2976 sourcing_name = env;
2977 sourcing_lnum = 0;
2978 #ifdef FEAT_EVAL
2979 save_sid = current_SID;
2980 current_SID = SID_ENV;
2981 #endif
2982 do_cmdline_cmd(initstr);
2983 sourcing_name = save_sourcing_name;
2984 sourcing_lnum = save_sourcing_lnum;
2985 #ifdef FEAT_EVAL
2986 current_SID = save_sid;;
2987 #endif
2988 return OK;
2990 return FAIL;
2993 #if defined(UNIX) || defined(VMS)
2995 * Return TRUE if we are certain the user owns the file "fname".
2996 * Used for ".vimrc" and ".exrc".
2997 * Use both stat() and lstat() for extra security.
2999 static int
3000 file_owned(fname)
3001 char *fname;
3003 struct stat s;
3004 # ifdef UNIX
3005 uid_t uid = getuid();
3006 # else /* VMS */
3007 uid_t uid = ((getgid() << 16) | getuid());
3008 # endif
3010 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3011 # ifdef HAVE_LSTAT
3012 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3013 # endif
3016 #endif
3019 * Give an error message main_errors["n"] and exit.
3021 static void
3022 mainerr(n, str)
3023 int n; /* one of the ME_ defines */
3024 char_u *str; /* extra argument or NULL */
3026 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3027 reset_signals(); /* kill us with CTRL-C here, if you like */
3028 #endif
3030 mch_errmsg(longVersion);
3031 mch_errmsg("\n");
3032 mch_errmsg(_(main_errors[n]));
3033 if (str != NULL)
3035 mch_errmsg(": \"");
3036 mch_errmsg((char *)str);
3037 mch_errmsg("\"");
3039 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
3041 mch_exit(1);
3044 void
3045 mainerr_arg_missing(str)
3046 char_u *str;
3048 mainerr(ME_ARG_MISSING, str);
3052 * print a message with three spaces prepended and '\n' appended.
3054 static void
3055 main_msg(s)
3056 char *s;
3058 mch_msg(" ");
3059 mch_msg(s);
3060 mch_msg("\n");
3064 * Print messages for "vim -h" or "vim --help" and exit.
3066 static void
3067 usage()
3069 int i;
3070 static char *(use[]) =
3072 N_("[file ..] edit specified file(s)"),
3073 N_("- read text from stdin"),
3074 N_("-t tag edit file where tag is defined"),
3075 #ifdef FEAT_QUICKFIX
3076 N_("-q [errorfile] edit file with first error")
3077 #endif
3080 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3081 reset_signals(); /* kill us with CTRL-C here, if you like */
3082 #endif
3084 mch_msg(longVersion);
3085 mch_msg(_("\n\nusage:"));
3086 for (i = 0; ; ++i)
3088 mch_msg(_(" vim [arguments] "));
3089 mch_msg(_(use[i]));
3090 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3091 break;
3092 mch_msg(_("\n or:"));
3094 #ifdef VMS
3095 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3096 #endif
3098 mch_msg(_("\n\nArguments:\n"));
3099 main_msg(_("--\t\t\tOnly file names after this"));
3100 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3101 main_msg(_("--literal\t\tDon't expand wildcards"));
3102 #endif
3103 #ifdef FEAT_OLE
3104 main_msg(_("-register\t\tRegister this gvim for OLE"));
3105 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3106 #endif
3107 #ifdef FEAT_GUI
3108 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3109 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3110 #endif
3111 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3112 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3113 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3114 #ifdef FEAT_DIFF
3115 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3116 #endif
3117 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3118 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3119 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3120 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3121 main_msg(_("-M\t\t\tModifications in text not allowed"));
3122 main_msg(_("-b\t\t\tBinary mode"));
3123 #ifdef FEAT_LISP
3124 main_msg(_("-l\t\t\tLisp mode"));
3125 #endif
3126 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3127 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3128 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3129 #ifdef FEAT_EVAL
3130 main_msg(_("-D\t\t\tDebugging mode"));
3131 #endif
3132 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3133 main_msg(_("-r\t\t\tList swap files and exit"));
3134 main_msg(_("-r (with file name)\tRecover crashed session"));
3135 main_msg(_("-L\t\t\tSame as -r"));
3136 #ifdef AMIGA
3137 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3138 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3139 #endif
3140 #ifdef FEAT_ARABIC
3141 main_msg(_("-A\t\t\tstart in Arabic mode"));
3142 #endif
3143 #ifdef FEAT_RIGHTLEFT
3144 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3145 #endif
3146 #ifdef FEAT_FKMAP
3147 main_msg(_("-F\t\t\tStart in Farsi mode"));
3148 #endif
3149 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3150 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3151 #ifdef FEAT_GUI
3152 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3153 #endif
3154 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3155 #ifdef FEAT_WINDOWS
3156 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3157 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3158 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3159 #endif
3160 main_msg(_("+\t\t\tStart at end of file"));
3161 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3162 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3163 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3164 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3165 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3166 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3167 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3168 #ifdef FEAT_CRYPT
3169 main_msg(_("-x\t\t\tEdit encrypted files"));
3170 #endif
3171 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3172 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3173 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3174 # endif
3175 main_msg(_("-X\t\t\tDo not connect to X server"));
3176 #endif
3177 #ifdef FEAT_CLIENTSERVER
3178 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3179 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3180 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3181 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3182 # ifdef FEAT_WINDOWS
3183 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3184 # endif
3185 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3186 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3187 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3188 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3189 #endif
3190 #ifdef FEAT_VIMINFO
3191 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3192 #endif
3193 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3194 main_msg(_("--version\t\tPrint version information and exit"));
3196 #ifdef FEAT_GUI_X11
3197 # ifdef FEAT_GUI_MOTIF
3198 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3199 # else
3200 # ifdef FEAT_GUI_ATHENA
3201 # ifdef FEAT_GUI_NEXTAW
3202 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3203 # else
3204 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3205 # endif
3206 # endif
3207 # endif
3208 main_msg(_("-display <display>\tRun vim on <display>"));
3209 main_msg(_("-iconic\t\tStart vim iconified"));
3210 # if 0
3211 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3212 mch_msg(_("\t\t\t (Unimplemented)\n"));
3213 # endif
3214 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3215 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3216 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3217 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3218 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3219 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3220 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3221 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3222 # ifdef FEAT_GUI_ATHENA
3223 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3224 # endif
3225 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3226 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3227 main_msg(_("-xrm <resource>\tSet the specified resource"));
3228 #endif /* FEAT_GUI_X11 */
3229 #if defined(FEAT_GUI) && defined(RISCOS)
3230 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3231 main_msg(_("--columns <number>\tInitial width of window in columns"));
3232 main_msg(_("--rows <number>\tInitial height of window in rows"));
3233 #endif
3234 #ifdef FEAT_GUI_GTK
3235 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3236 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3237 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3238 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3239 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3240 # ifdef HAVE_GTK2
3241 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3242 # endif
3243 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3244 #endif
3245 #ifdef FEAT_GUI_W32
3246 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3247 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3248 #endif
3250 #ifdef FEAT_GUI_GNOME
3251 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3252 if (gui.starting)
3253 mch_msg("\n");
3254 else
3255 #endif
3256 mch_exit(0);
3259 #if defined(HAS_SWAP_EXISTS_ACTION)
3261 * Check the result of the ATTENTION dialog:
3262 * When "Quit" selected, exit Vim.
3263 * When "Recover" selected, recover the file.
3265 static void
3266 check_swap_exists_action()
3268 if (swap_exists_action == SEA_QUIT)
3269 getout(1);
3270 handle_swap_exists(NULL);
3272 #endif
3274 #if defined(STARTUPTIME) || defined(PROTO)
3275 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3277 static struct timeval prev_timeval;
3280 * Save the previous time before doing something that could nest.
3281 * set "*tv_rel" to the time elapsed so far.
3283 void
3284 time_push(tv_rel, tv_start)
3285 void *tv_rel, *tv_start;
3287 *((struct timeval *)tv_rel) = prev_timeval;
3288 gettimeofday(&prev_timeval, NULL);
3289 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3290 - ((struct timeval *)tv_rel)->tv_usec;
3291 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3292 - ((struct timeval *)tv_rel)->tv_sec;
3293 if (((struct timeval *)tv_rel)->tv_usec < 0)
3295 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3296 --((struct timeval *)tv_rel)->tv_sec;
3298 *(struct timeval *)tv_start = prev_timeval;
3302 * Compute the previous time after doing something that could nest.
3303 * Subtract "*tp" from prev_timeval;
3304 * Note: The arguments are (void *) to avoid trouble with systems that don't
3305 * have struct timeval.
3307 void
3308 time_pop(tp)
3309 void *tp; /* actually (struct timeval *) */
3311 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3312 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3313 if (prev_timeval.tv_usec < 0)
3315 prev_timeval.tv_usec += 1000000;
3316 --prev_timeval.tv_sec;
3320 static void
3321 time_diff(then, now)
3322 struct timeval *then;
3323 struct timeval *now;
3325 long usec;
3326 long msec;
3328 usec = now->tv_usec - then->tv_usec;
3329 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3330 usec = usec % 1000L;
3331 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3334 void
3335 time_msg(msg, tv_start)
3336 char *msg;
3337 void *tv_start; /* only for do_source: start time; actually
3338 (struct timeval *) */
3340 static struct timeval start;
3341 struct timeval now;
3343 if (time_fd != NULL)
3345 if (strstr(msg, "STARTING") != NULL)
3347 gettimeofday(&start, NULL);
3348 prev_timeval = start;
3349 fprintf(time_fd, "\n\ntimes in msec\n");
3350 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3351 fprintf(time_fd, " clock elapsed: other lines\n\n");
3353 gettimeofday(&now, NULL);
3354 time_diff(&start, &now);
3355 if (((struct timeval *)tv_start) != NULL)
3357 fprintf(time_fd, " ");
3358 time_diff(((struct timeval *)tv_start), &now);
3360 fprintf(time_fd, " ");
3361 time_diff(&prev_timeval, &now);
3362 prev_timeval = now;
3363 fprintf(time_fd, ": %s\n", msg);
3367 # ifdef WIN3264
3369 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3372 gettimeofday(struct timeval *tv, char *dummy)
3374 long t = clock();
3375 tv->tv_sec = t / CLOCKS_PER_SEC;
3376 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3377 return 0;
3379 # endif
3381 #endif
3383 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3386 * Common code for the X command server and the Win32 command server.
3389 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3392 * Do the client-server stuff, unless "--servername ''" was used.
3394 static void
3395 exec_on_server(parmp)
3396 mparm_T *parmp;
3398 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3400 # ifdef WIN32
3401 /* Initialise the client/server messaging infrastructure. */
3402 serverInitMessaging();
3403 # endif
3406 * When a command server argument was found, execute it. This may
3407 * exit Vim when it was successful. Otherwise it's executed further
3408 * on. Remember the encoding used here in "serverStrEnc".
3410 if (parmp->serverArg)
3412 cmdsrv_main(&parmp->argc, parmp->argv,
3413 parmp->serverName_arg, &parmp->serverStr);
3414 # ifdef FEAT_MBYTE
3415 parmp->serverStrEnc = vim_strsave(p_enc);
3416 # endif
3419 /* If we're still running, get the name to register ourselves.
3420 * On Win32 can register right now, for X11 need to setup the
3421 * clipboard first, it's further down. */
3422 parmp->servername = serverMakeName(parmp->serverName_arg,
3423 parmp->argv[0]);
3424 # ifdef WIN32
3425 if (parmp->servername != NULL)
3427 serverSetName(parmp->servername);
3428 vim_free(parmp->servername);
3430 # endif
3435 * Prepare for running as a Vim server.
3437 static void
3438 prepare_server(parmp)
3439 mparm_T *parmp;
3441 # if defined(FEAT_X11)
3443 * Register for remote command execution with :serversend and --remote
3444 * unless there was a -X or a --servername '' on the command line.
3445 * Only register nongui-vim's with an explicit --servername argument.
3446 * When running as root --servername is also required.
3448 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3449 # ifdef FEAT_GUI
3450 (gui.in_use
3451 # ifdef UNIX
3452 && getuid() != ROOT_UID
3453 # endif
3454 ) ||
3455 # endif
3456 parmp->serverName_arg != NULL))
3458 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3459 vim_free(parmp->servername);
3460 TIME_MSG("register server name");
3462 else
3463 serverDelayedStartName = parmp->servername;
3464 # endif
3467 * Execute command ourselves if we're here because the send failed (or
3468 * else we would have exited above).
3470 if (parmp->serverStr != NULL)
3472 char_u *p;
3474 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3475 parmp->serverStr, &p));
3476 vim_free(p);
3480 static void
3481 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3482 int *argc;
3483 char **argv;
3484 char_u *serverName_arg;
3485 char_u **serverStr;
3487 char_u *res;
3488 int i;
3489 char_u *sname;
3490 int ret;
3491 int didone = FALSE;
3492 int exiterr = 0;
3493 char **newArgV = argv + 1;
3494 int newArgC = 1,
3495 Argc = *argc;
3496 int argtype;
3497 #define ARGTYPE_OTHER 0
3498 #define ARGTYPE_EDIT 1
3499 #define ARGTYPE_EDIT_WAIT 2
3500 #define ARGTYPE_SEND 3
3501 int silent = FALSE;
3502 int tabs = FALSE;
3503 # ifdef WIN32
3504 HWND srv;
3505 # elif defined(MAC_CLIENTSERVER)
3506 int srv;
3507 # elif defined(FEAT_X11)
3508 Window srv;
3510 setup_term_clip();
3511 # endif
3513 sname = serverMakeName(serverName_arg, argv[0]);
3514 if (sname == NULL)
3515 return;
3518 * Execute the command server related arguments and remove them
3519 * from the argc/argv array; We may have to return into main()
3521 for (i = 1; i < Argc; i++)
3523 res = NULL;
3524 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3526 for (; i < *argc; i++)
3528 *newArgV++ = argv[i];
3529 newArgC++;
3531 break;
3534 if (STRICMP(argv[i], "--remote-send") == 0)
3535 argtype = ARGTYPE_SEND;
3536 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3538 char *p = argv[i] + 8;
3540 argtype = ARGTYPE_EDIT;
3541 while (*p != NUL)
3543 if (STRNICMP(p, "-wait", 5) == 0)
3545 argtype = ARGTYPE_EDIT_WAIT;
3546 p += 5;
3548 else if (STRNICMP(p, "-silent", 7) == 0)
3550 silent = TRUE;
3551 p += 7;
3553 else if (STRNICMP(p, "-tab", 4) == 0)
3555 tabs = TRUE;
3556 p += 4;
3558 else
3560 argtype = ARGTYPE_OTHER;
3561 break;
3565 else
3566 argtype = ARGTYPE_OTHER;
3568 if (argtype != ARGTYPE_OTHER)
3570 if (i == *argc - 1)
3571 mainerr_arg_missing((char_u *)argv[i]);
3572 if (argtype == ARGTYPE_SEND)
3574 *serverStr = (char_u *)argv[i + 1];
3575 i++;
3577 else
3579 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3580 tabs, argtype == ARGTYPE_EDIT_WAIT);
3581 if (*serverStr == NULL)
3583 /* Probably out of memory, exit. */
3584 didone = TRUE;
3585 exiterr = 1;
3586 break;
3588 Argc = i;
3590 # ifdef FEAT_X11
3591 if (xterm_dpy == NULL)
3593 mch_errmsg(_("No display"));
3594 ret = -1;
3596 else
3597 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3598 NULL, &srv, 0, 0, silent);
3599 # elif defined(WIN32) || defined(MAC_CLIENTSERVER)
3600 /* Win32 always works? */
3601 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3602 # endif
3603 if (ret < 0)
3605 if (argtype == ARGTYPE_SEND)
3607 /* Failed to send, abort. */
3608 mch_errmsg(_(": Send failed.\n"));
3609 didone = TRUE;
3610 exiterr = 1;
3612 else if (!silent)
3613 /* Let vim start normally. */
3614 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3615 break;
3618 # ifdef FEAT_GUI_W32
3619 /* Guess that when the server name starts with "g" it's a GUI
3620 * server, which we can bring to the foreground here.
3621 * Foreground() in the server doesn't work very well. */
3622 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3623 SetForegroundWindow(srv);
3624 # endif
3627 * For --remote-wait: Wait until the server did edit each
3628 * file. Also detect that the server no longer runs.
3630 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3632 int numFiles = *argc - i - 1;
3633 int j;
3634 char_u *done = alloc(numFiles);
3635 char_u *p;
3636 # ifdef FEAT_GUI_W32
3637 NOTIFYICONDATA ni;
3638 int count = 0;
3639 extern HWND message_window;
3640 # endif
3642 if (numFiles > 0 && argv[i + 1][0] == '+')
3643 /* Skip "+cmd" argument, don't wait for it to be edited. */
3644 --numFiles;
3646 # ifdef FEAT_GUI_W32
3647 ni.cbSize = sizeof(ni);
3648 ni.hWnd = message_window;
3649 ni.uID = 0;
3650 ni.uFlags = NIF_ICON|NIF_TIP;
3651 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3652 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3653 Shell_NotifyIcon(NIM_ADD, &ni);
3654 # endif
3656 /* Wait for all files to unload in remote */
3657 memset(done, 0, numFiles);
3658 while (memchr(done, 0, numFiles) != NULL)
3660 # ifdef WIN32
3661 p = serverGetReply(srv, NULL, TRUE, TRUE);
3662 if (p == NULL)
3663 break;
3664 # elif defined(FEAT_X11)
3665 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3666 break;
3667 # elif defined(MAC_CLIENTSERVER)
3668 if (serverReadReply(srv, &p) < 0)
3669 break;
3670 # endif
3671 j = atoi((char *)p);
3672 if (j >= 0 && j < numFiles)
3674 # ifdef FEAT_GUI_W32
3675 ++count;
3676 sprintf(ni.szTip, _("%d of %d edited"),
3677 count, numFiles);
3678 Shell_NotifyIcon(NIM_MODIFY, &ni);
3679 # endif
3680 done[j] = 1;
3683 # ifdef FEAT_GUI_W32
3684 Shell_NotifyIcon(NIM_DELETE, &ni);
3685 # endif
3688 else if (STRICMP(argv[i], "--remote-expr") == 0)
3690 if (i == *argc - 1)
3691 mainerr_arg_missing((char_u *)argv[i]);
3692 # ifdef WIN32
3693 /* Win32 always works? */
3694 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3695 &res, NULL, 1, FALSE) < 0)
3696 # elif defined(FEAT_X11)
3697 if (xterm_dpy == NULL)
3698 mch_errmsg(_("No display: Send expression failed.\n"));
3699 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3700 &res, NULL, 1, 1, FALSE) < 0)
3701 # elif defined(MAC_CLIENTSERVER)
3702 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3703 &res, NULL, 1, FALSE) < 0)
3704 # endif
3706 if (res != NULL && *res != NUL)
3708 /* Output error from remote */
3709 mch_errmsg((char *)res);
3710 vim_free(res);
3711 res = NULL;
3713 mch_errmsg(_(": Send expression failed.\n"));
3716 else if (STRICMP(argv[i], "--serverlist") == 0)
3718 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
3719 /* Win32 always works? */
3720 res = serverGetVimNames();
3721 # elif defined(FEAT_X11)
3722 if (xterm_dpy != NULL)
3723 res = serverGetVimNames(xterm_dpy);
3724 # endif
3725 if (called_emsg)
3726 mch_errmsg("\n");
3728 else if (STRICMP(argv[i], "--servername") == 0)
3730 /* Alredy processed. Take it out of the command line */
3731 i++;
3732 continue;
3734 else
3736 *newArgV++ = argv[i];
3737 newArgC++;
3738 continue;
3740 didone = TRUE;
3741 if (res != NULL && *res != NUL)
3743 mch_msg((char *)res);
3744 if (res[STRLEN(res) - 1] != '\n')
3745 mch_msg("\n");
3747 vim_free(res);
3750 if (didone)
3752 display_errors(); /* display any collected messages */
3753 exit(exiterr); /* Mission accomplished - get out */
3756 /* Return back into main() */
3757 *argc = newArgC;
3758 vim_free(sname);
3762 * Build a ":drop" command to send to a Vim server.
3764 static char_u *
3765 build_drop_cmd(filec, filev, tabs, sendReply)
3766 int filec;
3767 char **filev;
3768 int tabs; /* Use ":tab drop" instead of ":drop". */
3769 int sendReply;
3771 garray_T ga;
3772 int i;
3773 char_u *inicmd = NULL;
3774 char_u *p;
3775 char_u cwd[MAXPATHL];
3777 if (filec > 0 && filev[0][0] == '+')
3779 inicmd = (char_u *)filev[0] + 1;
3780 filev++;
3781 filec--;
3783 /* Check if we have at least one argument. */
3784 if (filec <= 0)
3785 mainerr_arg_missing((char_u *)filev[-1]);
3786 if (mch_dirname(cwd, MAXPATHL) != OK)
3787 return NULL;
3788 if ((p = vim_strsave_escaped_ext(cwd,
3789 #ifdef BACKSLASH_IN_FILENAME
3790 "", /* rem_backslash() will tell what chars to escape */
3791 #else
3792 PATH_ESC_CHARS,
3793 #endif
3794 '\\', TRUE)) == NULL)
3795 return NULL;
3796 ga_init2(&ga, 1, 100);
3797 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3798 ga_concat(&ga, p);
3799 vim_free(p);
3801 /* Call inputsave() so that a prompt for an encryption key works. */
3802 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3803 if (tabs)
3804 ga_concat(&ga, (char_u *)"tab ");
3805 ga_concat(&ga, (char_u *)"drop");
3806 for (i = 0; i < filec; i++)
3808 /* On Unix the shell has already expanded the wildcards, don't want to
3809 * do it again in the Vim server. On MS-Windows only escape
3810 * non-wildcard characters. */
3811 p = vim_strsave_escaped((char_u *)filev[i],
3812 #ifdef UNIX
3813 PATH_ESC_CHARS
3814 #else
3815 (char_u *)" \t%#"
3816 #endif
3818 if (p == NULL)
3820 vim_free(ga.ga_data);
3821 return NULL;
3823 ga_concat(&ga, (char_u *)" ");
3824 ga_concat(&ga, p);
3825 vim_free(p);
3827 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3828 * CTRL-\ CTRL-N again. */
3829 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3830 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3831 if (sendReply)
3832 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3833 ga_concat(&ga, (char_u *)"<CR>:");
3834 if (inicmd != NULL)
3836 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3837 * the following commands to be inserted as text. Use a "|",
3838 * hopefully "inicmd" does allow this... */
3839 ga_concat(&ga, inicmd);
3840 ga_concat(&ga, (char_u *)"|");
3842 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3843 * clear command line. */
3844 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3845 ga_append(&ga, NUL);
3846 return ga.ga_data;
3850 * Replace termcodes such as <CR> and insert as key presses if there is room.
3852 void
3853 server_to_input_buf(str)
3854 char_u *str;
3856 char_u *ptr = NULL;
3857 char_u *cpo_save = p_cpo;
3859 /* Set 'cpoptions' the way we want it.
3860 * B set - backslashes are *not* treated specially
3861 * k set - keycodes are *not* reverse-engineered
3862 * < unset - <Key> sequences *are* interpreted
3863 * The last but one parameter of replace_termcodes() is TRUE so that the
3864 * <lt> sequence is recognised - needed for a real backslash.
3866 p_cpo = (char_u *)"Bk";
3867 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3868 p_cpo = cpo_save;
3870 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3873 * Add the string to the input stream.
3874 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3876 * First clear typed characters from the typeahead buffer, there could
3877 * be half a mapping there. Then append to the existing string, so
3878 * that multiple commands from a client are concatenated.
3880 if (typebuf.tb_maplen < typebuf.tb_len)
3881 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3882 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3884 /* Let input_available() know we inserted text in the typeahead
3885 * buffer. */
3886 typebuf_was_filled = TRUE;
3888 vim_free((char_u *)ptr);
3892 * Evaluate an expression that the client sent to a string.
3893 * Handles disabling error messages and disables debugging, otherwise Vim
3894 * hangs, waiting for "cont" to be typed.
3896 char_u *
3897 eval_client_expr_to_string(expr)
3898 char_u *expr;
3900 char_u *res;
3901 int save_dbl = debug_break_level;
3902 int save_ro = redir_off;
3904 debug_break_level = -1;
3905 redir_off = 0;
3906 ++emsg_skip;
3908 res = eval_to_string(expr, NULL, TRUE);
3910 debug_break_level = save_dbl;
3911 redir_off = save_ro;
3912 --emsg_skip;
3914 /* A client can tell us to redraw, but not to display the cursor, so do
3915 * that here. */
3916 setcursor();
3917 out_flush();
3918 #ifdef FEAT_GUI
3919 if (gui.in_use)
3920 gui_update_cursor(FALSE, FALSE);
3921 #endif
3923 return res;
3927 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3928 * return an allocated string. Otherwise return "data".
3929 * "*tofree" is set to the result when it needs to be freed later.
3931 /*ARGSUSED*/
3932 char_u *
3933 serverConvert(client_enc, data, tofree)
3934 char_u *client_enc;
3935 char_u *data;
3936 char_u **tofree;
3938 char_u *res = data;
3940 *tofree = NULL;
3941 # ifdef FEAT_MBYTE
3942 if (client_enc != NULL && p_enc != NULL)
3944 vimconv_T vimconv;
3946 vimconv.vc_type = CONV_NONE;
3947 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3948 && vimconv.vc_type != CONV_NONE)
3950 res = string_convert(&vimconv, data, NULL);
3951 if (res == NULL)
3952 res = data;
3953 else
3954 *tofree = res;
3956 convert_setup(&vimconv, NULL, NULL);
3958 # endif
3959 return res;
3964 * Make our basic server name: use the specified "arg" if given, otherwise use
3965 * the tail of the command "cmd" we were started with.
3966 * Return the name in allocated memory. This doesn't include a serial number.
3968 static char_u *
3969 serverMakeName(arg, cmd)
3970 char_u *arg;
3971 char *cmd;
3973 char_u *p;
3975 if (arg != NULL && *arg != NUL)
3976 p = vim_strsave_up(arg);
3977 else
3979 p = vim_strsave_up(gettail((char_u *)cmd));
3980 /* Remove .exe or .bat from the name. */
3981 if (p != NULL && vim_strchr(p, '.') != NULL)
3982 *vim_strchr(p, '.') = NUL;
3984 return p;
3986 #endif /* FEAT_CLIENTSERVER */
3989 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3991 #if defined(FEAT_FKMAP) || defined(PROTO)
3992 # include "farsi.c"
3993 #endif
3996 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3998 #if defined(FEAT_ARABIC) || defined(PROTO)
3999 # include "arabic.c"
4000 #endif