Merge branch 'vim' into master
[MacVim.git] / src / main.c
blob1b905483f4eddf115c1784b52feaffd0b2fd253b
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
10 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
11 # include "vimio.h" /* for close() and dup() */
12 #endif
14 #define EXTERN
15 #include "vim.h"
17 #ifdef SPAWNO
18 # include <spawno.h> /* special MS-DOS swapping library */
19 #endif
21 #ifdef __CYGWIN__
22 # ifndef WIN32
23 # include <cygwin/version.h>
24 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
25 * cygwin_conv_path() */
26 # endif
27 # include <limits.h>
28 #endif
30 #if FEAT_GUI_MACVIM
31 #include <objc/objc-runtime.h> /* for objc_*() and sel_*() */
32 #endif
34 /* Maximum number of commands from + or -c arguments. */
35 #define MAX_ARG_CMDS 10
37 /* values for "window_layout" */
38 #define WIN_HOR 1 /* "-o" horizontally split windows */
39 #define WIN_VER 2 /* "-O" vertically split windows */
40 #define WIN_TABS 3 /* "-p" windows on tab pages */
42 /* Struct for various parameters passed between main() and other functions. */
43 typedef struct
45 int argc;
46 char **argv;
48 int evim_mode; /* started as "evim" */
49 char_u *use_vimrc; /* vimrc from -u argument */
51 int n_commands; /* no. of commands from + or -c */
52 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
53 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
54 int n_pre_commands; /* no. of commands from --cmd */
55 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
57 int edit_type; /* type of editing to do */
58 char_u *tagname; /* tag from -t argument */
59 #ifdef FEAT_QUICKFIX
60 char_u *use_ef; /* 'errorfile' from -q argument */
61 #endif
63 int want_full_screen;
64 int stdout_isatty; /* is stdout a terminal? */
65 char_u *term; /* specified terminal name */
66 #ifdef FEAT_CRYPT
67 int ask_for_key; /* -x argument */
68 #endif
69 int no_swap_file; /* "-n" argument used */
70 #ifdef FEAT_EVAL
71 int use_debug_break_level;
72 #endif
73 #ifdef FEAT_WINDOWS
74 int window_count; /* number of windows to use */
75 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
76 #endif
78 #ifdef FEAT_CLIENTSERVER
79 int serverArg; /* TRUE when argument for a server */
80 char_u *serverName_arg; /* cmdline arg for server name */
81 char_u *serverStr; /* remote server command */
82 char_u *serverStrEnc; /* encoding of serverStr */
83 char_u *servername; /* allocated name for our server */
84 #endif
85 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
86 int literal; /* don't expand file names */
87 #endif
88 #ifdef MSWIN
89 int full_path; /* file name argument was full path */
90 #endif
91 #ifdef FEAT_DIFF
92 int diff_mode; /* start with 'diff' set */
93 #endif
94 } mparm_T;
96 /* Values for edit_type. */
97 #define EDIT_NONE 0 /* no edit type yet */
98 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */
99 #define EDIT_STDIN 2 /* read file from stdin */
100 #define EDIT_TAG 3 /* tag name argument given, use tagname */
101 #define EDIT_QF 4 /* start in quickfix mode */
103 #if defined(UNIX) || defined(VMS)
104 static int file_owned __ARGS((char *fname));
105 #endif
106 static void mainerr __ARGS((int, char_u *));
107 static void main_msg __ARGS((char *s));
108 static void usage __ARGS((void));
109 static int get_number_arg __ARGS((char_u *p, int *idx, int def));
110 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
111 static void init_locale __ARGS((void));
112 #endif
113 static void parse_command_name __ARGS((mparm_T *parmp));
114 static void early_arg_scan __ARGS((mparm_T *parmp));
115 static void command_line_scan __ARGS((mparm_T *parmp));
116 static void check_tty __ARGS((mparm_T *parmp));
117 static void read_stdin __ARGS((void));
118 static void create_windows __ARGS((mparm_T *parmp));
119 #ifdef FEAT_WINDOWS
120 static void edit_buffers __ARGS((mparm_T *parmp));
121 #endif
122 static void exe_pre_commands __ARGS((mparm_T *parmp));
123 static void exe_commands __ARGS((mparm_T *parmp));
124 static void source_startup_scripts __ARGS((mparm_T *parmp));
125 static void main_start_gui __ARGS((void));
126 #if defined(HAS_SWAP_EXISTS_ACTION)
127 static void check_swap_exists_action __ARGS((void));
128 #endif
129 #ifdef FEAT_CLIENTSERVER
130 static void exec_on_server __ARGS((mparm_T *parmp));
131 static void prepare_server __ARGS((mparm_T *parmp));
132 static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
133 static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
134 #endif
137 #ifdef STARTUPTIME
138 static FILE *time_fd = NULL;
139 #endif
142 * Different types of error messages.
144 static char *(main_errors[]) =
146 N_("Unknown option argument"),
147 #define ME_UNKNOWN_OPTION 0
148 N_("Too many edit arguments"),
149 #define ME_TOO_MANY_ARGS 1
150 N_("Argument missing after"),
151 #define ME_ARG_MISSING 2
152 N_("Garbage after option argument"),
153 #define ME_GARBAGE 3
154 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
155 #define ME_EXTRA_CMD 4
156 N_("Invalid argument for"),
157 #define ME_INVALID_ARG 5
160 #ifndef PROTO /* don't want a prototype for main() */
162 # ifdef VIMDLL
163 _export
164 # endif
165 # ifdef FEAT_GUI_MSWIN
166 # ifdef __BORLANDC__
167 _cdecl
168 # endif
169 VimMain
170 # else
171 main
172 # endif
173 (argc, argv)
174 int argc;
175 char **argv;
177 char_u *fname = NULL; /* file name from command line */
178 mparm_T params; /* various parameters passed between
179 * main() and other functions. */
181 #if FEAT_GUI_MACVIM
182 // Cocoa needs an NSAutoreleasePool in place or it will leak memory.
183 // This particular pool will hold autorelease objects created during
184 // initialization.
185 id autoreleasePool = objc_msgSend(objc_msgSend(
186 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
187 ), sel_getUid("init"));
188 #endif
191 * Do any system-specific initialisations. These can NOT use IObuff or
192 * NameBuff. Thus emsg2() cannot be called!
194 mch_early_init();
196 /* Many variables are in "params" so that we can pass them to invoked
197 * functions without a lot of arguments. "argc" and "argv" are also
198 * copied, so that they can be changed. */
199 vim_memset(&params, 0, sizeof(params));
200 params.argc = argc;
201 params.argv = argv;
202 params.want_full_screen = TRUE;
203 #ifdef FEAT_EVAL
204 params.use_debug_break_level = -1;
205 #endif
206 #ifdef FEAT_WINDOWS
207 params.window_count = -1;
208 #endif
210 #ifdef FEAT_TCL
211 vim_tcl_init(params.argv[0]);
212 #endif
214 #ifdef MEM_PROFILE
215 atexit(vim_mem_profile_dump);
216 #endif
218 #ifdef STARTUPTIME
219 time_fd = mch_fopen(STARTUPTIME, "a");
220 TIME_MSG("--- VIM STARTING ---");
221 #endif
222 starttime = time(NULL);
224 #ifdef __EMX__
225 _wildcard(&params.argc, &params.argv);
226 #endif
228 #ifdef FEAT_MBYTE
229 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
230 #endif
231 #ifdef FEAT_EVAL
232 eval_init(); /* init global variables */
233 #endif
235 #ifdef __QNXNTO__
236 qnx_init(); /* PhAttach() for clipboard, (and gui) */
237 #endif
239 #ifdef MAC_OS_CLASSIC
240 /* Prepare for possibly starting GUI sometime */
241 /* Macintosh needs this before any memory is allocated. */
242 gui_prepare(&params.argc, params.argv);
243 TIME_MSG("GUI prepared");
244 #endif
246 /* Init the table of Normal mode commands. */
247 init_normal_cmds();
249 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
250 make_version(); /* Construct the long version string. */
251 #endif
254 * Allocate space for the generic buffers (needed for set_init_1() and
255 * EMSG2()).
257 if ((IObuff = alloc(IOSIZE)) == NULL
258 || (NameBuff = alloc(MAXPATHL)) == NULL)
259 mch_exit(0);
260 TIME_MSG("Allocated generic buffers");
262 #ifdef NBDEBUG
263 /* Wait a moment for debugging NetBeans. Must be after allocating
264 * NameBuff. */
265 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
266 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
267 TIME_MSG("NetBeans debug wait");
268 #endif
270 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
272 * Setup to use the current locale (for ctype() and many other things).
273 * NOTE: Translated messages with encodings other than latin1 will not
274 * work until set_init_1() has been called!
276 init_locale();
277 TIME_MSG("locale set");
278 #endif
280 #ifdef FEAT_GUI
281 gui.dofork = TRUE; /* default is to use fork() */
282 #endif
285 * Do a first scan of the arguments in "argv[]":
286 * -display or --display
287 * --server...
288 * --socketid
289 * --windowid
291 early_arg_scan(&params);
293 #ifdef FEAT_SUN_WORKSHOP
294 findYourself(params.argv[0]);
295 #endif
296 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
297 /* Prepare for possibly starting GUI sometime */
298 gui_prepare(&params.argc, params.argv);
299 TIME_MSG("GUI prepared");
300 #endif
302 #ifdef FEAT_CLIPBOARD
303 clip_init(FALSE); /* Initialise clipboard stuff */
304 TIME_MSG("clipboard setup");
305 #endif
308 * Check if we have an interactive window.
309 * On the Amiga: If there is no window, we open one with a newcli command
310 * (needed for :! to * work). mch_check_win() will also handle the -d or
311 * -dev argument.
313 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
314 TIME_MSG("window checked");
317 * Allocate the first window and buffer.
318 * Can't do anything without it, exit when it fails.
320 if (win_alloc_first() == FAIL)
321 mch_exit(0);
323 init_yank(); /* init yank buffers */
325 alist_init(&global_alist); /* Init the argument list to empty. */
328 * Set the default values for the options.
329 * NOTE: Non-latin1 translated messages are working only after this,
330 * because this is where "has_mbyte" will be set, which is used by
331 * msg_outtrans_len_attr().
332 * First find out the home directory, needed to expand "~" in options.
334 init_homedir(); /* find real value of $HOME */
335 set_init_1();
336 TIME_MSG("inits 1");
338 #ifdef FEAT_EVAL
339 set_lang_var(); /* set v:lang and v:ctype */
340 #endif
342 #ifdef FEAT_CLIENTSERVER
344 * Do the client-server stuff, unless "--servername ''" was used.
345 * This may exit Vim if the command was sent to the server.
347 exec_on_server(&params);
348 #endif
351 * Figure out the way to work from the command name argv[0].
352 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
354 parse_command_name(&params);
357 * Process the command line arguments. File names are put in the global
358 * argument list "global_alist".
360 command_line_scan(&params);
361 TIME_MSG("parsing arguments");
364 * On some systems, when we compile with the GUI, we always use it. On Mac
365 * there is no terminal version, and on Windows we can't fork one off with
366 * :gui.
368 #ifdef ALWAYS_USE_GUI
369 gui.starting = TRUE;
370 #else
371 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
373 * Check if the GUI can be started. Reset gui.starting if not.
374 * Don't know about other systems, stay on the safe side and don't check.
376 if (gui.starting && gui_init_check() == FAIL)
378 gui.starting = FALSE;
380 /* When running "evim" or "gvim -y" we need the menus, exit if we
381 * don't have them. */
382 if (params.evim_mode)
383 mch_exit(1);
385 # endif
386 #endif
388 if (GARGCOUNT > 0)
390 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
392 * Expand wildcards in file names.
394 if (!params.literal)
396 /* Temporarily add '(' and ')' to 'isfname'. These are valid
397 * filename characters but are excluded from 'isfname' to make
398 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
399 do_cmdline_cmd((char_u *)":set isf+=(,)");
400 alist_expand(NULL, 0);
401 do_cmdline_cmd((char_u *)":set isf&");
403 #endif
404 fname = alist_name(&GARGLIST[0]);
407 #if defined(WIN32) && defined(FEAT_MBYTE)
409 extern void set_alist_count(void);
411 /* Remember the number of entries in the argument list. If it changes
412 * we don't react on setting 'encoding'. */
413 set_alist_count();
415 #endif
417 #ifdef MSWIN
418 if (GARGCOUNT == 1 && params.full_path)
421 * If there is one filename, fully qualified, we have very probably
422 * been invoked from explorer, so change to the file's directory.
423 * Hint: to avoid this when typing a command use a forward slash.
424 * If the cd fails, it doesn't matter.
426 (void)vim_chdirfile(fname);
428 #endif
429 TIME_MSG("expanding arguments");
431 #ifdef FEAT_DIFF
432 if (params.diff_mode && params.window_count == -1)
433 params.window_count = 0; /* open up to 3 windows */
434 #endif
436 /* Don't redraw until much later. */
437 ++RedrawingDisabled;
440 * When listing swap file names, don't do cursor positioning et. al.
442 if (recoverymode && fname == NULL)
443 params.want_full_screen = FALSE;
446 * When certain to start the GUI, don't check capabilities of terminal.
447 * For GTK we can't be sure, but when started from the desktop it doesn't
448 * make sense to try using a terminal.
450 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
451 if (gui.starting
452 # ifdef FEAT_GUI_GTK
453 && !isatty(2)
454 # endif
456 params.want_full_screen = FALSE;
457 #endif
459 #if (defined(FEAT_GUI_MAC) || defined(FEAT_GUI_MACVIM)) && defined(MACOS_X_UNIX)
460 /* When the GUI is started from Finder, need to display messages in a
461 * message box. isatty(2) returns TRUE anyway, thus we need to check the
462 * name to know we're not started from a terminal. */
463 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
465 params.want_full_screen = FALSE;
467 # ifndef FEAT_GUI_MACVIM
468 /* Avoid always using "/" as the current directory. Note that when
469 * started from Finder the arglist will be filled later in
470 * HandleODocAE() and "fname" will be NULL. */
471 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
472 && STRCMP(NameBuff, "/") == 0)
474 if (fname != NULL)
475 (void)vim_chdirfile(fname);
476 else
478 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
479 vim_chdir(NameBuff);
482 # endif
484 #endif
487 * mch_init() sets up the terminal (window) for use. This must be
488 * done after resetting full_screen, otherwise it may move the cursor
489 * (MSDOS).
490 * Note that we may use mch_exit() before mch_init()!
492 mch_init();
493 TIME_MSG("shell init");
495 #ifdef USE_XSMP
497 * For want of anywhere else to do it, try to connect to xsmp here.
498 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
499 * Hijacking -X 'no X connection' to also disable XSMP connection as that
500 * has a similar delay upon failure.
501 * Only try if SESSION_MANAGER is set to something non-null.
503 if (!x_no_connect)
505 char *p = getenv("SESSION_MANAGER");
507 if (p != NULL && *p != NUL)
509 xsmp_init();
510 TIME_MSG("xsmp init");
513 #endif
516 * Print a warning if stdout is not a terminal.
518 check_tty(&params);
520 /* This message comes before term inits, but after setting "silent_mode"
521 * when the input is not a tty. */
522 if (GARGCOUNT > 1 && !silent_mode)
523 printf(_("%d files to edit\n"), GARGCOUNT);
525 if (params.want_full_screen && !silent_mode)
527 termcapinit(params.term); /* set terminal name and get terminal
528 capabilities (will set full_screen) */
529 screen_start(); /* don't know where cursor is now */
530 TIME_MSG("Termcap init");
534 * Set the default values for the options that use Rows and Columns.
536 ui_get_shellsize(); /* inits Rows and Columns */
537 #ifdef FEAT_NETBEANS_INTG
538 if (usingNetbeans)
539 Columns += 2; /* leave room for glyph gutter */
540 #endif
541 win_init_size();
542 #ifdef FEAT_DIFF
543 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
544 * file. There is no buffer yet though. */
545 if (params.diff_mode)
546 diff_win_options(firstwin, FALSE);
547 #endif
549 cmdline_row = Rows - p_ch;
550 msg_row = cmdline_row;
551 screenalloc(FALSE); /* allocate screen buffers */
552 set_init_2();
553 TIME_MSG("inits 2");
555 msg_scroll = TRUE;
556 no_wait_return = TRUE;
558 init_mappings(); /* set up initial mappings */
560 init_highlight(TRUE, FALSE); /* set the default highlight groups */
561 TIME_MSG("init highlight");
563 #ifdef FEAT_EVAL
564 /* Set the break level after the terminal is initialized. */
565 debug_break_level = params.use_debug_break_level;
566 #endif
568 /* Execute --cmd arguments. */
569 exe_pre_commands(&params);
571 /* Source startup scripts. */
572 source_startup_scripts(&params);
574 #ifdef FEAT_EVAL
576 * Read all the plugin files.
577 * Only when compiled with +eval, since most plugins need it.
579 if (p_lpl)
581 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
582 source_runtime((char_u *)"plugin/*.vim", TRUE);
583 # else
584 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
585 # endif
586 TIME_MSG("loading plugins");
588 #endif
590 #ifdef FEAT_DIFF
591 /* Decide about window layout for diff mode after reading vimrc. */
592 if (params.diff_mode && params.window_layout == 0)
594 if (diffopt_horizontal())
595 params.window_layout = WIN_HOR; /* use horizontal split */
596 else
597 params.window_layout = WIN_VER; /* use vertical split */
599 #endif
602 * Recovery mode without a file name: List swap files.
603 * This uses the 'dir' option, therefore it must be after the
604 * initializations.
606 if (recoverymode && fname == NULL)
608 recover_names(NULL, TRUE, 0);
609 mch_exit(0);
613 * Set a few option defaults after reading .vimrc files:
614 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
616 set_init_3();
617 TIME_MSG("inits 3");
620 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
621 * Note that this overrides anything from a vimrc file.
623 if (params.no_swap_file)
624 p_uc = 0;
626 #ifdef FEAT_FKMAP
627 if (curwin->w_p_rl && p_altkeymap)
629 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
630 # ifdef FEAT_ARABIC
631 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
632 # endif
633 p_fkmap = TRUE; /* Set the Farsi keymap mode */
635 #endif
637 #ifdef FEAT_GUI
638 if (gui.starting)
640 #if defined(UNIX) || defined(VMS)
641 /* When something caused a message from a vimrc script, need to output
642 * an extra newline before the shell prompt. */
643 if (did_emsg || msg_didout)
644 putchar('\n');
645 #endif
647 gui_start(); /* will set full_screen to TRUE */
648 TIME_MSG("starting GUI");
650 /* When running "evim" or "gvim -y" we need the menus, exit if we
651 * don't have them. */
652 if (!gui.in_use && params.evim_mode)
653 mch_exit(1);
655 #endif
657 #ifdef SPAWNO /* special MSDOS swapping library */
658 init_SPAWNO("", SWAP_ANY);
659 #endif
661 #ifdef FEAT_VIMINFO
663 * Read in registers, history etc, but not marks, from the viminfo file
665 if (*p_viminfo != NUL)
667 read_viminfo(NULL, TRUE, FALSE, FALSE);
668 TIME_MSG("reading viminfo");
670 #endif
672 #ifdef FEAT_QUICKFIX
674 * "-q errorfile": Load the error file now.
675 * If the error file can't be read, exit before doing anything else.
677 if (params.edit_type == EDIT_QF)
679 if (params.use_ef != NULL)
680 set_string_option_direct((char_u *)"ef", -1,
681 params.use_ef, OPT_FREE, SID_CARG);
682 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
684 out_char('\n');
685 mch_exit(3);
687 TIME_MSG("reading errorfile");
689 #endif
692 * Start putting things on the screen.
693 * Scroll screen down before drawing over it
694 * Clear screen now, so file message will not be cleared.
696 starting = NO_BUFFERS;
697 no_wait_return = FALSE;
698 if (!exmode_active)
699 msg_scroll = FALSE;
701 #ifdef FEAT_GUI
703 * This seems to be required to make callbacks to be called now, instead
704 * of after things have been put on the screen, which then may be deleted
705 * when getting a resize callback.
706 * For the Mac this handles putting files dropped on the Vim icon to
707 * global_alist.
709 if (gui.in_use)
711 # ifdef FEAT_SUN_WORKSHOP
712 if (!usingSunWorkShop)
713 # endif
714 gui_wait_for_chars(50L);
715 TIME_MSG("GUI delay");
717 #endif
719 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
720 qnx_clip_init();
721 #endif
723 #ifdef FEAT_XCLIPBOARD
724 /* Start using the X clipboard, unless the GUI was started. */
725 # ifdef FEAT_GUI
726 if (!gui.in_use)
727 # endif
729 setup_term_clip();
730 TIME_MSG("setup clipboard");
732 #endif
734 #ifdef FEAT_CLIENTSERVER
735 /* Prepare for being a Vim server. */
736 prepare_server(&params);
737 #endif
740 * If "-" argument given: Read file from stdin.
741 * Do this before starting Raw mode, because it may change things that the
742 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
743 * are the same terminal: "cat | vim -".
744 * Using autocommands here may cause trouble...
746 if (params.edit_type == EDIT_STDIN && !recoverymode)
747 read_stdin();
749 #if defined(UNIX) || defined(VMS)
750 /* When switching screens and something caused a message from a vimrc
751 * script, need to output an extra newline on exit. */
752 if ((did_emsg || msg_didout) && *T_TI != NUL)
753 newline_on_exit = TRUE;
754 #endif
757 * When done something that is not allowed or error message call
758 * wait_return. This must be done before starttermcap(), because it may
759 * switch to another screen. It must be done after settmode(TMODE_RAW),
760 * because we want to react on a single key stroke.
761 * Call settmode and starttermcap here, so the T_KS and T_TI may be
762 * defined by termcapinit and redefined in .exrc.
764 settmode(TMODE_RAW);
765 TIME_MSG("setting raw mode");
767 if (need_wait_return || msg_didany)
769 wait_return(TRUE);
770 TIME_MSG("waiting for return");
773 starttermcap(); /* start termcap if not done by wait_return() */
774 TIME_MSG("start termcap");
776 #ifdef FEAT_MOUSE
777 setmouse(); /* may start using the mouse */
778 #endif
779 if (scroll_region)
780 scroll_region_reset(); /* In case Rows changed */
781 scroll_start(); /* may scroll the screen to the right position */
784 * Don't clear the screen when starting in Ex mode, unless using the GUI.
786 if (exmode_active
787 #ifdef FEAT_GUI
788 && !gui.in_use
789 #endif
791 must_redraw = CLEAR;
792 else
794 screenclear(); /* clear screen */
795 TIME_MSG("clearing screen");
798 #ifdef FEAT_CRYPT
799 if (params.ask_for_key)
801 (void)get_crypt_key(TRUE, TRUE);
802 TIME_MSG("getting crypt key");
804 #endif
806 no_wait_return = TRUE;
808 #ifdef FEAT_GUI_MACVIM
809 /* We want to delay calling this function for as long as possible, since it
810 * will result in faster startup for cached processes. However, we react
811 * before create_windows() so that we can open files by adding to the
812 * arglist. */
813 gui_macvim_wait_for_startup();
815 /* Since MacVim may receive the list of files to open via an Apple event
816 * (as opposed to from the command line) we must manually check to see if
817 * the window layout should be changed. */
818 gui_macvim_get_window_layout(&params.window_count, &params.window_layout);
820 # ifdef MAC_CLIENTSERVER
821 // NOTE: Can't set server name at same time as WIN32 because gui.in_use
822 // isn't set then. Servers are only supported in GUI mode.
823 // Also, in case the above call blocks this process another Vim process may
824 // open in the meantime. If it did then it could be named e.g. VIM3
825 // whereas this may be VIM2, which looks weird.
826 if (params.servername != NULL && gui.in_use)
828 serverRegisterName(params.servername);
829 vim_free(params.servername);
830 params.servername = NULL;
832 # endif
833 #endif
836 * Create the requested number of windows and edit buffers in them.
837 * Also does recovery if "recoverymode" set.
839 create_windows(&params);
840 TIME_MSG("opening buffers");
842 #ifdef FEAT_EVAL
843 /* clear v:swapcommand */
844 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
845 #endif
847 /* Ex starts at last line of the file */
848 if (exmode_active)
849 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
851 #ifdef FEAT_AUTOCMD
852 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
853 TIME_MSG("BufEnter autocommands");
854 #endif
855 setpcmark();
857 #ifdef FEAT_QUICKFIX
859 * When started with "-q errorfile" jump to first error now.
861 if (params.edit_type == EDIT_QF)
863 qf_jump(NULL, 0, 0, FALSE);
864 TIME_MSG("jump to first error");
866 #endif
868 #ifdef FEAT_WINDOWS
870 * If opened more than one window, start editing files in the other
871 * windows.
873 edit_buffers(&params);
874 #endif
876 #ifdef FEAT_DIFF
877 if (params.diff_mode)
879 win_T *wp;
881 /* set options in each window for "vimdiff". */
882 for (wp = firstwin; wp != NULL; wp = wp->w_next)
883 diff_win_options(wp, TRUE);
885 #endif
888 * Shorten any of the filenames, but only when absolute.
890 shorten_fnames(FALSE);
893 * Need to jump to the tag before executing the '-c command'.
894 * Makes "vim -c '/return' -t main" work.
896 if (params.tagname != NULL)
898 #if defined(HAS_SWAP_EXISTS_ACTION)
899 swap_exists_did_quit = FALSE;
900 #endif
902 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
903 do_cmdline_cmd(IObuff);
904 TIME_MSG("jumping to tag");
906 #if defined(HAS_SWAP_EXISTS_ACTION)
907 /* If the user doesn't want to edit the file then we quit here. */
908 if (swap_exists_did_quit)
909 getout(1);
910 #endif
913 /* Execute any "+", "-c" and "-S" arguments. */
914 if (params.n_commands > 0)
915 exe_commands(&params);
917 RedrawingDisabled = 0;
918 redraw_all_later(NOT_VALID);
919 no_wait_return = FALSE;
920 starting = 0;
922 #ifdef FEAT_TERMRESPONSE
923 /* Requesting the termresponse is postponed until here, so that a "-c q"
924 * argument doesn't make it appear in the shell Vim was started from. */
925 may_req_termresponse();
926 #endif
928 /* start in insert mode */
929 if (p_im)
930 need_start_insertmode = TRUE;
932 #ifdef FEAT_AUTOCMD
933 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
934 TIME_MSG("VimEnter autocommands");
935 #endif
937 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
938 /* When a startup script or session file setup for diff'ing and
939 * scrollbind, sync the scrollbind now. */
940 if (curwin->w_p_diff && curwin->w_p_scb)
942 update_topline();
943 check_scrollbind((linenr_T)0, 0L);
944 TIME_MSG("diff scrollbinding");
946 #endif
948 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
949 mch_set_winsize_now(); /* Allow winsize changes from now on */
950 #endif
952 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
953 /* When tab pages were created, may need to update the tab pages line and
954 * scrollbars. This is skipped while creating them. */
955 if (first_tabpage->tp_next != NULL)
957 out_flush();
958 gui_init_which_components(NULL);
959 gui_update_scrollbars(TRUE);
961 need_mouse_correct = TRUE;
962 #endif
964 /* If ":startinsert" command used, stuff a dummy command to be able to
965 * call normal_cmd(), which will then start Insert mode. */
966 if (restart_edit != 0)
967 stuffcharReadbuff(K_NOP);
969 #ifdef FEAT_NETBEANS_INTG
970 if (usingNetbeans)
971 /* Tell the client that it can start sending commands. */
972 netbeans_startup_done();
973 #endif
975 TIME_MSG("before starting main loop");
977 #if FEAT_GUI_MACVIM
978 // The autorelease pool might have filled up quite a bit during
979 // initialization, so purge it before entering the main loop.
980 objc_msgSend(autoreleasePool, sel_getUid("release"));
982 // The main loop sets up its own autorelease pool, but to be safe we still
983 // realloc this one here.
984 autoreleasePool = objc_msgSend(objc_msgSend(
985 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
986 ), sel_getUid("init"));
987 #endif
990 * Call the main command loop. This never returns.
992 main_loop(FALSE, FALSE);
994 #if FEAT_GUI_MACVIM
995 objc_msgSend(autoreleasePool, sel_getUid("release"));
996 #endif
998 return 0;
1000 #endif /* PROTO */
1003 * Main loop: Execute Normal mode commands until exiting Vim.
1004 * Also used to handle commands in the command-line window, until the window
1005 * is closed.
1006 * Also used to handle ":visual" command after ":global": execute Normal mode
1007 * commands, return when entering Ex mode. "noexmode" is TRUE then.
1009 void
1010 main_loop(cmdwin, noexmode)
1011 int cmdwin; /* TRUE when working in the command-line window */
1012 int noexmode; /* TRUE when return on entering Ex mode */
1014 oparg_T oa; /* operator arguments */
1015 int previous_got_int = FALSE; /* "got_int" was TRUE */
1017 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1018 /* Setup to catch a terminating error from the X server. Just ignore
1019 * it, restore the state and continue. This might not always work
1020 * properly, but at least we don't exit unexpectedly when the X server
1021 * exists while Vim is running in a console. */
1022 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
1024 State = NORMAL;
1025 # ifdef FEAT_VISUAL
1026 VIsual_active = FALSE;
1027 # endif
1028 got_int = TRUE;
1029 need_wait_return = FALSE;
1030 global_busy = FALSE;
1031 exmode_active = 0;
1032 skip_redraw = FALSE;
1033 RedrawingDisabled = 0;
1034 no_wait_return = 0;
1035 # ifdef FEAT_EVAL
1036 emsg_skip = 0;
1037 # endif
1038 emsg_off = 0;
1039 # ifdef FEAT_MOUSE
1040 setmouse();
1041 # endif
1042 settmode(TMODE_RAW);
1043 starttermcap();
1044 scroll_start();
1045 redraw_later_clear();
1047 #endif
1049 clear_oparg(&oa);
1050 while (!cmdwin
1051 #ifdef FEAT_CMDWIN
1052 || cmdwin_result == 0
1053 #endif
1056 #if FEAT_GUI_MACVIM
1057 // Cocoa needs an NSAutoreleasePool in place or it will leak memory.
1058 // This particular pool gets released once every loop.
1059 id autoreleasePool = objc_msgSend(objc_msgSend(
1060 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
1061 ), sel_getUid("init"));
1062 #endif
1064 if (stuff_empty())
1066 did_check_timestamps = FALSE;
1067 if (need_check_timestamps)
1068 check_timestamps(FALSE);
1069 if (need_wait_return) /* if wait_return still needed ... */
1070 wait_return(FALSE); /* ... call it now */
1071 if (need_start_insertmode && goto_im()
1072 #ifdef FEAT_VISUAL
1073 && !VIsual_active
1074 #endif
1077 need_start_insertmode = FALSE;
1078 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1079 /* skip the fileinfo message now, because it would be shown
1080 * after insert mode finishes! */
1081 need_fileinfo = FALSE;
1085 /* Reset "got_int" now that we got back to the main loop. Except when
1086 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1087 * the ":g" command.
1088 * For ":g/pat/vi" we reset "got_int" when used once. When used
1089 * a second time we go back to Ex mode and abort the ":g" command. */
1090 if (got_int)
1092 if (noexmode && global_busy && !exmode_active && previous_got_int)
1094 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1095 * used and keep "got_int" set, so that it aborts ":g". */
1096 exmode_active = EXMODE_NORMAL;
1097 State = NORMAL;
1099 else if (!global_busy || !exmode_active)
1101 if (!quit_more)
1102 (void)vgetc(); /* flush all buffers */
1103 got_int = FALSE;
1105 previous_got_int = TRUE;
1107 else
1108 previous_got_int = FALSE;
1110 if (!exmode_active)
1111 msg_scroll = FALSE;
1112 quit_more = FALSE;
1115 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1116 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1117 * update cursor and redraw.
1119 if (skip_redraw || exmode_active)
1120 skip_redraw = FALSE;
1121 else if (do_redraw || stuff_empty())
1123 #ifdef FEAT_AUTOCMD
1124 /* Trigger CursorMoved if the cursor moved. */
1125 if (!finish_op && has_cursormoved()
1126 && !equalpos(last_cursormoved, curwin->w_cursor))
1128 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1129 last_cursormoved = curwin->w_cursor;
1131 #endif
1133 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1134 /* Scroll-binding for diff mode may have been postponed until
1135 * here. Avoids doing it for every change. */
1136 if (diff_need_scrollbind)
1138 check_scrollbind((linenr_T)0, 0L);
1139 diff_need_scrollbind = FALSE;
1141 #endif
1142 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1143 /* Include a closed fold completely in the Visual area. */
1144 foldAdjustVisual();
1145 #endif
1146 #ifdef FEAT_FOLDING
1148 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1149 * contain the cursor.
1150 * When 'foldopen' is "all", open the fold(s) under the cursor.
1151 * This may mark the window for redrawing.
1153 if (hasAnyFolding(curwin) && !char_avail())
1155 foldCheckClose();
1156 if (fdo_flags & FDO_ALL)
1157 foldOpenCursor();
1159 #endif
1162 * Before redrawing, make sure w_topline is correct, and w_leftcol
1163 * if lines don't wrap, and w_skipcol if lines wrap.
1165 update_topline();
1166 validate_cursor();
1168 #ifdef FEAT_VISUAL
1169 if (VIsual_active)
1170 update_curbuf(INVERTED);/* update inverted part */
1171 else
1172 #endif
1173 if (must_redraw)
1174 update_screen(0);
1175 else if (redraw_cmdline || clear_cmdline)
1176 showmode();
1177 #ifdef FEAT_WINDOWS
1178 redraw_statuslines();
1179 #endif
1180 #ifdef FEAT_TITLE
1181 if (need_maketitle)
1182 maketitle();
1183 #endif
1184 /* display message after redraw */
1185 if (keep_msg != NULL)
1187 char_u *p;
1189 /* msg_attr_keep() will set keep_msg to NULL, must free the
1190 * string here. */
1191 p = keep_msg;
1192 keep_msg = NULL;
1193 msg_attr(p, keep_msg_attr);
1194 vim_free(p);
1196 if (need_fileinfo) /* show file info after redraw */
1198 fileinfo(FALSE, TRUE, FALSE);
1199 need_fileinfo = FALSE;
1202 emsg_on_display = FALSE; /* can delete error message now */
1203 did_emsg = FALSE;
1204 msg_didany = FALSE; /* reset lines_left in msg_start() */
1205 may_clear_sb_text(); /* clear scroll-back text on next msg */
1206 showruler(FALSE);
1208 setcursor();
1209 cursor_on();
1211 do_redraw = FALSE;
1213 #ifdef FEAT_GUI
1214 if (need_mouse_correct)
1215 gui_mouse_correct();
1216 #endif
1219 * Update w_curswant if w_set_curswant has been set.
1220 * Postponed until here to avoid computing w_virtcol too often.
1222 update_curswant();
1224 #ifdef FEAT_EVAL
1226 * May perform garbage collection when waiting for a character, but
1227 * only at the very toplevel. Otherwise we may be using a List or
1228 * Dict internally somewhere.
1229 * "may_garbage_collect" is reset in vgetc() which is invoked through
1230 * do_exmode() and normal_cmd().
1232 may_garbage_collect = (!cmdwin && !noexmode);
1233 #endif
1235 * If we're invoked as ex, do a round of ex commands.
1236 * Otherwise, get and execute a normal mode command.
1238 if (exmode_active)
1240 if (noexmode) /* End of ":global/path/visual" commands */
1241 return;
1242 do_exmode(exmode_active == EXMODE_VIM);
1244 else
1245 normal_cmd(&oa, TRUE);
1247 #if FEAT_GUI_MACVIM
1248 // TODO! Make sure there are no continue statements that will cause
1249 // this not to be called or MacVim will leak memory!
1250 objc_msgSend(autoreleasePool, sel_getUid("release"));
1251 #endif
1256 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO) \
1257 || defined(FEAT_GUI_MACVIM)
1259 * Exit, but leave behind swap files for modified buffers.
1261 void
1262 getout_preserve_modified(exitval)
1263 int exitval;
1265 # if defined(SIGHUP) && defined(SIG_IGN)
1266 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1267 * makes Vim exit and then handling SIGHUP causes various reentrance
1268 * problems. */
1269 signal(SIGHUP, SIG_IGN);
1270 # endif
1272 ml_close_notmod(); /* close all not-modified buffers */
1273 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1274 ml_close_all(FALSE); /* close all memfiles, without deleting */
1275 getout(exitval); /* exit Vim properly */
1277 #endif
1280 /* Prepare proper exit*/
1281 void
1282 prepare_getout()
1284 #ifdef FEAT_AUTOCMD
1285 buf_T *buf;
1286 win_T *wp;
1287 tabpage_T *tp, *next_tp;
1288 #endif
1290 exiting = TRUE;
1292 /* Position the cursor on the last screen line, below all the text */
1293 #ifdef FEAT_GUI
1294 if (!gui.in_use)
1295 #endif
1296 windgoto((int)Rows - 1, 0);
1298 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1299 /* Optionally print hashtable efficiency. */
1300 hash_debug_results();
1301 #endif
1303 #ifdef FEAT_GUI
1304 msg_didany = FALSE;
1305 #endif
1307 #ifdef FEAT_AUTOCMD
1308 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1309 # if defined FEAT_WINDOWS
1310 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1312 next_tp = tp->tp_next;
1313 for (wp = (tp == curtab)
1314 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1316 buf = wp->w_buffer;
1317 if (buf->b_changedtick != -1)
1319 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1320 FALSE, buf);
1321 buf->b_changedtick = -1; /* note that we did it already */
1322 /* start all over, autocommands may mess up the lists */
1323 next_tp = first_tabpage;
1324 break;
1328 # else
1329 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1330 # endif
1332 /* Trigger BufUnload for buffers that are loaded */
1333 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1334 if (buf->b_ml.ml_mfp != NULL)
1336 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1337 FALSE, buf);
1338 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1339 break;
1341 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1342 #endif
1344 #ifdef FEAT_VIMINFO
1345 if (*p_viminfo != NUL)
1346 /* Write out the registers, history, marks etc, to the viminfo file */
1347 write_viminfo(NULL, FALSE);
1348 #endif
1350 #ifdef FEAT_AUTOCMD
1351 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1352 #endif
1354 #ifdef FEAT_PROFILE
1355 profile_dump();
1356 #endif
1358 if (did_emsg
1359 #ifdef FEAT_GUI
1360 || (gui.in_use && msg_didany && p_verbose > 0)
1361 #endif
1364 /* give the user a chance to read the (error) message */
1365 no_wait_return = FALSE;
1366 wait_return(FALSE);
1369 #ifdef FEAT_AUTOCMD
1370 /* Position the cursor again, the autocommands may have moved it */
1371 # ifdef FEAT_GUI
1372 if (!gui.in_use)
1373 # endif
1374 windgoto((int)Rows - 1, 0);
1375 #endif
1377 #ifdef FEAT_MZSCHEME
1378 mzscheme_end();
1379 #endif
1380 #ifdef FEAT_TCL
1381 tcl_end();
1382 #endif
1383 #ifdef FEAT_RUBY
1384 ruby_end();
1385 #endif
1386 #ifdef FEAT_PYTHON
1387 python_end();
1388 #endif
1389 #ifdef FEAT_PERL
1390 perl_end();
1391 #endif
1392 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1393 iconv_end();
1394 #endif
1395 #ifdef FEAT_NETBEANS_INTG
1396 netbeans_end();
1397 #endif
1398 #ifdef FEAT_ODB_EDITOR
1399 odb_end();
1400 #endif
1401 #ifdef FEAT_CSCOPE
1402 cs_end();
1403 #endif
1404 #ifdef FEAT_EVAL
1405 if (garbage_collect_at_exit)
1406 garbage_collect();
1407 #endif
1410 /* Exit properly */
1411 void
1412 getout(exitval)
1413 int exitval;
1415 /* When running in Ex mode an error causes us to exit with a non-zero exit
1416 * code. POSIX requires this, although it's not 100% clear from the
1417 * standard. */
1418 if (exmode_active)
1419 exitval += ex_exitval;
1421 prepare_getout();
1422 mch_exit(exitval);
1426 * Get a (optional) count for a Vim argument.
1428 static int
1429 get_number_arg(p, idx, def)
1430 char_u *p; /* pointer to argument */
1431 int *idx; /* index in argument, is incremented */
1432 int def; /* default value */
1434 if (vim_isdigit(p[*idx]))
1436 def = atoi((char *)&(p[*idx]));
1437 while (vim_isdigit(p[*idx]))
1438 *idx = *idx + 1;
1440 return def;
1443 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1445 * Setup to use the current locale (for ctype() and many other things).
1447 static void
1448 init_locale()
1450 setlocale(LC_ALL, "");
1452 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1453 /* Make sure strtod() uses a decimal point, not a comma. */
1454 setlocale(LC_NUMERIC, "C");
1455 # endif
1457 # ifdef WIN32
1458 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1459 * text while it's expecting text in the current locale. This call avoids
1460 * that. */
1461 setlocale(LC_CTYPE, "C");
1462 # endif
1464 # ifdef FEAT_GETTEXT
1466 int mustfree = FALSE;
1467 char_u *p;
1469 # ifdef DYNAMIC_GETTEXT
1470 /* Initialize the gettext library */
1471 dyn_libintl_init(NULL);
1472 # endif
1473 /* expand_env() doesn't work yet, because chartab[] is not initialized
1474 * yet, call vim_getenv() directly */
1475 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1476 if (p != NULL && *p != NUL)
1478 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1479 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1481 if (mustfree)
1482 vim_free(p);
1483 textdomain(VIMPACKAGE);
1485 # endif
1487 #endif
1490 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1491 * If the executable name starts with "r" we disable shell commands.
1492 * If the next character is "e" we run in Easy mode.
1493 * If the next character is "g" we run the GUI version.
1494 * If the next characters are "view" we start in readonly mode.
1495 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1496 * If the next characters are "ex" we start in Ex mode. If it's followed
1497 * by "im" use improved Ex mode.
1499 static void
1500 parse_command_name(parmp)
1501 mparm_T *parmp;
1503 char_u *initstr;
1505 initstr = gettail((char_u *)parmp->argv[0]);
1507 #ifdef MACOS_X_UNIX
1508 /* An issue has been seen when launching Vim in such a way that
1509 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1510 * executable or a symbolic link of it. Until this issue is resolved
1511 * we prohibit the GUI from being used.
1513 if (STRCMP(initstr, parmp->argv[0]) == 0)
1514 disallow_gui = TRUE;
1516 /* TODO: On MacOS X default to gui if argv[0] ends in:
1517 * /Vim.app/Contents/MacOS/Vim */
1518 #endif
1520 #ifdef FEAT_EVAL
1521 set_vim_var_string(VV_PROGNAME, initstr, -1);
1522 #endif
1524 if (TOLOWER_ASC(initstr[0]) == 'r')
1526 restricted = TRUE;
1527 ++initstr;
1530 /* Avoid using evim mode for "editor". */
1531 if (TOLOWER_ASC(initstr[0]) == 'e'
1532 && (TOLOWER_ASC(initstr[1]) == 'v'
1533 || TOLOWER_ASC(initstr[1]) == 'g'))
1535 #ifdef FEAT_GUI
1536 gui.starting = TRUE;
1537 #endif
1538 parmp->evim_mode = TRUE;
1539 ++initstr;
1542 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1543 if (TOLOWER_ASC(initstr[0]) == 'g')
1545 main_start_gui();
1546 #ifdef FEAT_GUI
1547 ++initstr;
1548 #endif
1551 if (STRNICMP(initstr, "view", 4) == 0)
1553 readonlymode = TRUE;
1554 curbuf->b_p_ro = TRUE;
1555 p_uc = 10000; /* don't update very often */
1556 initstr += 4;
1558 else if (STRNICMP(initstr, "vim", 3) == 0)
1559 initstr += 3;
1561 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1562 if (STRICMP(initstr, "diff") == 0)
1564 #ifdef FEAT_DIFF
1565 parmp->diff_mode = TRUE;
1566 #else
1567 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1568 mch_errmsg("\n");
1569 mch_exit(2);
1570 #endif
1573 if (STRNICMP(initstr, "ex", 2) == 0)
1575 if (STRNICMP(initstr + 2, "im", 2) == 0)
1576 exmode_active = EXMODE_VIM;
1577 else
1578 exmode_active = EXMODE_NORMAL;
1579 change_compatible(TRUE); /* set 'compatible' */
1584 * Get the name of the display, before gui_prepare() removes it from
1585 * argv[]. Used for the xterm-clipboard display.
1587 * Also find the --server... arguments and --socketid and --windowid
1589 /*ARGSUSED*/
1590 static void
1591 early_arg_scan(parmp)
1592 mparm_T *parmp;
1594 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
1595 int argc = parmp->argc;
1596 char **argv = parmp->argv;
1597 int i;
1599 for (i = 1; i < argc; i++)
1601 if (STRCMP(argv[i], "--") == 0)
1602 break;
1603 # ifdef FEAT_XCLIPBOARD
1604 else if (STRICMP(argv[i], "-display") == 0
1605 # if defined(FEAT_GUI_GTK)
1606 || STRICMP(argv[i], "--display") == 0
1607 # endif
1610 if (i == argc - 1)
1611 mainerr_arg_missing((char_u *)argv[i]);
1612 xterm_display = argv[++i];
1614 # endif
1615 # ifdef FEAT_CLIENTSERVER
1616 else if (STRICMP(argv[i], "--servername") == 0)
1618 if (i == argc - 1)
1619 mainerr_arg_missing((char_u *)argv[i]);
1620 parmp->serverName_arg = (char_u *)argv[++i];
1622 else if (STRICMP(argv[i], "--serverlist") == 0)
1623 parmp->serverArg = TRUE;
1624 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1626 parmp->serverArg = TRUE;
1627 # ifdef FEAT_GUI
1628 if (strstr(argv[i], "-wait") != 0)
1629 /* don't fork() when starting the GUI to edit files ourself */
1630 gui.dofork = FALSE;
1631 # endif
1633 # endif
1635 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1636 # ifdef FEAT_GUI_W32
1637 else if (STRICMP(argv[i], "--windowid") == 0)
1638 # else
1639 else if (STRICMP(argv[i], "--socketid") == 0)
1640 # endif
1642 long_u id;
1643 int count;
1645 if (i == argc - 1)
1646 mainerr_arg_missing((char_u *)argv[i]);
1647 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1648 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1649 else
1650 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1651 if (count != 1)
1652 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1653 else
1654 # ifdef FEAT_GUI_W32
1655 win_socket_id = id;
1656 # else
1657 gtk_socket_id = id;
1658 # endif
1659 i++;
1661 # endif
1662 # ifdef FEAT_GUI_GTK
1663 else if (STRICMP(argv[i], "--echo-wid") == 0)
1664 echo_wid_arg = TRUE;
1665 # endif
1667 #endif
1671 * Scan the command line arguments.
1673 static void
1674 command_line_scan(parmp)
1675 mparm_T *parmp;
1677 int argc = parmp->argc;
1678 char **argv = parmp->argv;
1679 int argv_idx; /* index in argv[n][] */
1680 int had_minmin = FALSE; /* found "--" argument */
1681 int want_argument; /* option argument with argument */
1682 int c;
1683 char_u *p = NULL;
1684 long n;
1686 --argc;
1687 ++argv;
1688 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1689 while (argc > 0)
1692 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1694 if (argv[0][0] == '+' && !had_minmin)
1696 if (parmp->n_commands >= MAX_ARG_CMDS)
1697 mainerr(ME_EXTRA_CMD, NULL);
1698 argv_idx = -1; /* skip to next argument */
1699 if (argv[0][1] == NUL)
1700 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1701 else
1702 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1706 * Optional argument.
1708 else if (argv[0][0] == '-' && !had_minmin)
1710 want_argument = FALSE;
1711 c = argv[0][argv_idx++];
1712 #ifdef VMS
1714 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1715 * and "-/X" as "-X".
1717 if (c == '/')
1719 c = argv[0][argv_idx++];
1720 c = TOUPPER_ASC(c);
1722 else
1723 c = TOLOWER_ASC(c);
1724 #endif
1725 switch (c)
1727 case NUL: /* "vim -" read from stdin */
1728 /* "ex -" silent mode */
1729 if (exmode_active)
1730 silent_mode = TRUE;
1731 else
1733 if (parmp->edit_type != EDIT_NONE)
1734 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1735 parmp->edit_type = EDIT_STDIN;
1736 read_cmd_fd = 2; /* read from stderr instead of stdin */
1738 argv_idx = -1; /* skip to next argument */
1739 break;
1741 case '-': /* "--" don't take any more option arguments */
1742 /* "--help" give help message */
1743 /* "--version" give version message */
1744 /* "--literal" take files literally */
1745 /* "--nofork" don't fork */
1746 /* "--noplugin[s]" skip plugins */
1747 /* "--cmd <cmd>" execute cmd before vimrc */
1748 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1749 usage();
1750 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1752 Columns = 80; /* need to init Columns */
1753 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1754 list_version();
1755 msg_putchar('\n');
1756 msg_didout = FALSE;
1757 mch_exit(0);
1759 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1761 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1762 parmp->literal = TRUE;
1763 #endif
1765 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1767 #ifdef FEAT_GUI
1768 gui.dofork = FALSE; /* don't fork() when starting GUI */
1769 #endif
1771 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1772 p_lpl = FALSE;
1773 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1775 want_argument = TRUE;
1776 argv_idx += 3;
1778 #ifdef FEAT_CLIENTSERVER
1779 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1780 ; /* already processed -- no arg */
1781 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1782 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1784 /* already processed -- snatch the following arg */
1785 if (argc > 1)
1787 --argc;
1788 ++argv;
1791 #endif
1792 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1793 # ifdef FEAT_GUI_GTK
1794 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1795 # else
1796 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1797 # endif
1799 /* already processed -- snatch the following arg */
1800 if (argc > 1)
1802 --argc;
1803 ++argv;
1806 #endif
1807 #ifdef FEAT_GUI_GTK
1808 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1810 /* already processed, skip */
1812 #endif
1813 else
1815 if (argv[0][argv_idx])
1816 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1817 had_minmin = TRUE;
1819 if (!want_argument)
1820 argv_idx = -1; /* skip to next argument */
1821 break;
1823 case 'A': /* "-A" start in Arabic mode */
1824 #ifdef FEAT_ARABIC
1825 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1826 #else
1827 mch_errmsg(_(e_noarabic));
1828 mch_exit(2);
1829 #endif
1830 break;
1832 case 'b': /* "-b" binary mode */
1833 /* Needs to be effective before expanding file names, because
1834 * for Win32 this makes us edit a shortcut file itself,
1835 * instead of the file it links to. */
1836 set_options_bin(curbuf->b_p_bin, 1, 0);
1837 curbuf->b_p_bin = 1; /* binary file I/O */
1838 break;
1840 case 'C': /* "-C" Compatible */
1841 change_compatible(TRUE);
1842 break;
1844 case 'e': /* "-e" Ex mode */
1845 exmode_active = EXMODE_NORMAL;
1846 break;
1848 case 'E': /* "-E" Improved Ex mode */
1849 exmode_active = EXMODE_VIM;
1850 break;
1852 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1853 window directly, not with newcli */
1854 #ifdef FEAT_GUI
1855 gui.dofork = FALSE; /* don't fork() when starting GUI */
1856 #endif
1857 break;
1859 case 'g': /* "-g" start GUI */
1860 main_start_gui();
1861 break;
1863 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1864 #ifdef FEAT_FKMAP
1865 p_fkmap = TRUE;
1866 set_option_value((char_u *)"rl", 1L, NULL, 0);
1867 #else
1868 mch_errmsg(_(e_nofarsi));
1869 mch_exit(2);
1870 #endif
1871 break;
1873 case 'h': /* "-h" give help message */
1874 #ifdef FEAT_GUI_GNOME
1875 /* Tell usage() to exit for "gvim". */
1876 gui.starting = FALSE;
1877 #endif
1878 usage();
1879 break;
1881 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1882 #ifdef FEAT_RIGHTLEFT
1883 p_hkmap = TRUE;
1884 set_option_value((char_u *)"rl", 1L, NULL, 0);
1885 #else
1886 mch_errmsg(_(e_nohebrew));
1887 mch_exit(2);
1888 #endif
1889 break;
1891 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1892 #ifdef FEAT_LISP
1893 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1894 p_sm = TRUE;
1895 #endif
1896 break;
1898 case 'M': /* "-M" no changes or writing of files */
1899 reset_modifiable();
1900 /* FALLTHROUGH */
1902 case 'm': /* "-m" no writing of files */
1903 p_write = FALSE;
1904 break;
1906 case 'y': /* "-y" easy mode */
1907 #ifdef FEAT_GUI
1908 gui.starting = TRUE; /* start GUI a bit later */
1909 #endif
1910 parmp->evim_mode = TRUE;
1911 break;
1913 case 'N': /* "-N" Nocompatible */
1914 change_compatible(FALSE);
1915 break;
1917 case 'n': /* "-n" no swap file */
1918 parmp->no_swap_file = TRUE;
1919 break;
1921 case 'p': /* "-p[N]" open N tab pages */
1922 #if defined(TARGET_API_MAC_OSX) && !defined(FEAT_GUI_MACVIM)
1923 /* For some reason on MacOS X, an argument like:
1924 -psn_0_10223617 is passed in when invoke from Finder
1925 or with the 'open' command */
1926 if (argv[0][argv_idx] == 's')
1928 argv_idx = -1; /* bypass full -psn */
1929 main_start_gui();
1930 break;
1932 #endif
1933 #ifdef FEAT_WINDOWS
1934 /* default is 0: open window for each file */
1935 parmp->window_count = get_number_arg((char_u *)argv[0],
1936 &argv_idx, 0);
1937 parmp->window_layout = WIN_TABS;
1938 #endif
1939 break;
1941 case 'o': /* "-o[N]" open N horizontal split windows */
1942 #ifdef FEAT_WINDOWS
1943 /* default is 0: open window for each file */
1944 parmp->window_count = get_number_arg((char_u *)argv[0],
1945 &argv_idx, 0);
1946 parmp->window_layout = WIN_HOR;
1947 #endif
1948 break;
1950 case 'O': /* "-O[N]" open N vertical split windows */
1951 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1952 /* default is 0: open window for each file */
1953 parmp->window_count = get_number_arg((char_u *)argv[0],
1954 &argv_idx, 0);
1955 parmp->window_layout = WIN_VER;
1956 #endif
1957 break;
1959 #ifdef FEAT_QUICKFIX
1960 case 'q': /* "-q" QuickFix mode */
1961 if (parmp->edit_type != EDIT_NONE)
1962 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1963 parmp->edit_type = EDIT_QF;
1964 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1966 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1967 argv_idx = -1;
1969 else if (argc > 1) /* "-q {errorfile}" */
1970 want_argument = TRUE;
1971 break;
1972 #endif
1974 case 'R': /* "-R" readonly mode */
1975 readonlymode = TRUE;
1976 curbuf->b_p_ro = TRUE;
1977 p_uc = 10000; /* don't update very often */
1978 break;
1980 case 'r': /* "-r" recovery mode */
1981 case 'L': /* "-L" recovery mode */
1982 recoverymode = 1;
1983 break;
1985 case 's':
1986 if (exmode_active) /* "-s" silent (batch) mode */
1987 silent_mode = TRUE;
1988 else /* "-s {scriptin}" read from script file */
1989 want_argument = TRUE;
1990 break;
1992 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1993 if (parmp->edit_type != EDIT_NONE)
1994 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1995 parmp->edit_type = EDIT_TAG;
1996 if (argv[0][argv_idx]) /* "-t{tag}" */
1998 parmp->tagname = (char_u *)argv[0] + argv_idx;
1999 argv_idx = -1;
2001 else /* "-t {tag}" */
2002 want_argument = TRUE;
2003 break;
2005 #ifdef FEAT_EVAL
2006 case 'D': /* "-D" Debugging */
2007 parmp->use_debug_break_level = 9999;
2008 break;
2009 #endif
2010 #ifdef FEAT_DIFF
2011 case 'd': /* "-d" 'diff' */
2012 # ifdef AMIGA
2013 /* check for "-dev {device}" */
2014 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2015 want_argument = TRUE;
2016 else
2017 # endif
2018 parmp->diff_mode = TRUE;
2019 break;
2020 #endif
2021 case 'V': /* "-V{N}" Verbose level */
2022 /* default is 10: a little bit verbose */
2023 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2024 if (argv[0][argv_idx] != NUL)
2026 set_option_value((char_u *)"verbosefile", 0L,
2027 (char_u *)argv[0] + argv_idx, 0);
2028 argv_idx = (int)STRLEN(argv[0]);
2030 break;
2032 case 'v': /* "-v" Vi-mode (as if called "vi") */
2033 exmode_active = 0;
2034 #ifdef FEAT_GUI
2035 gui.starting = FALSE; /* don't start GUI */
2036 #endif
2037 break;
2039 case 'w': /* "-w{number}" set window height */
2040 /* "-w {scriptout}" write to script */
2041 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2043 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2044 set_option_value((char_u *)"window", n, NULL, 0);
2045 break;
2047 want_argument = TRUE;
2048 break;
2050 #ifdef FEAT_CRYPT
2051 case 'x': /* "-x" encrypted reading/writing of files */
2052 parmp->ask_for_key = TRUE;
2053 break;
2054 #endif
2056 case 'X': /* "-X" don't connect to X server */
2057 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2058 x_no_connect = TRUE;
2059 #endif
2060 break;
2062 case 'Z': /* "-Z" restricted mode */
2063 restricted = TRUE;
2064 break;
2066 case 'c': /* "-c{command}" or "-c {command}" execute
2067 command */
2068 if (argv[0][argv_idx] != NUL)
2070 if (parmp->n_commands >= MAX_ARG_CMDS)
2071 mainerr(ME_EXTRA_CMD, NULL);
2072 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2073 + argv_idx;
2074 argv_idx = -1;
2075 break;
2077 /*FALLTHROUGH*/
2078 case 'S': /* "-S {file}" execute Vim script */
2079 case 'i': /* "-i {viminfo}" use for viminfo */
2080 #ifndef FEAT_DIFF
2081 case 'd': /* "-d {device}" device (for Amiga) */
2082 #endif
2083 case 'T': /* "-T {terminal}" terminal name */
2084 case 'u': /* "-u {vimrc}" vim inits file */
2085 case 'U': /* "-U {gvimrc}" gvim inits file */
2086 case 'W': /* "-W {scriptout}" overwrite */
2087 #ifdef FEAT_GUI_W32
2088 case 'P': /* "-P {parent title}" MDI parent */
2089 #endif
2090 want_argument = TRUE;
2091 break;
2093 default:
2094 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2098 * Handle option arguments with argument.
2100 if (want_argument)
2103 * Check for garbage immediately after the option letter.
2105 if (argv[0][argv_idx] != NUL)
2106 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2108 --argc;
2109 if (argc < 1 && c != 'S')
2110 mainerr_arg_missing((char_u *)argv[0]);
2111 ++argv;
2112 argv_idx = -1;
2114 switch (c)
2116 case 'c': /* "-c {command}" execute command */
2117 case 'S': /* "-S {file}" execute Vim script */
2118 if (parmp->n_commands >= MAX_ARG_CMDS)
2119 mainerr(ME_EXTRA_CMD, NULL);
2120 if (c == 'S')
2122 char *a;
2124 if (argc < 1)
2125 /* "-S" without argument: use default session file
2126 * name. */
2127 a = SESSION_FILE;
2128 else if (argv[0][0] == '-')
2130 /* "-S" followed by another option: use default
2131 * session file name. */
2132 a = SESSION_FILE;
2133 ++argc;
2134 --argv;
2136 else
2137 a = argv[0];
2138 p = alloc((unsigned)(STRLEN(a) + 4));
2139 if (p == NULL)
2140 mch_exit(2);
2141 sprintf((char *)p, "so %s", a);
2142 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2143 parmp->commands[parmp->n_commands++] = p;
2145 else
2146 parmp->commands[parmp->n_commands++] =
2147 (char_u *)argv[0];
2148 break;
2150 case '-': /* "--cmd {command}" execute command */
2151 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2152 mainerr(ME_EXTRA_CMD, NULL);
2153 parmp->pre_commands[parmp->n_pre_commands++] =
2154 (char_u *)argv[0];
2155 break;
2157 /* case 'd': -d {device} is handled in mch_check_win() for the
2158 * Amiga */
2160 #ifdef FEAT_QUICKFIX
2161 case 'q': /* "-q {errorfile}" QuickFix mode */
2162 parmp->use_ef = (char_u *)argv[0];
2163 break;
2164 #endif
2166 case 'i': /* "-i {viminfo}" use for viminfo */
2167 use_viminfo = (char_u *)argv[0];
2168 break;
2170 case 's': /* "-s {scriptin}" read from script file */
2171 if (scriptin[0] != NULL)
2173 scripterror:
2174 mch_errmsg(_("Attempt to open script file again: \""));
2175 mch_errmsg(argv[-1]);
2176 mch_errmsg(" ");
2177 mch_errmsg(argv[0]);
2178 mch_errmsg("\"\n");
2179 mch_exit(2);
2181 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2183 mch_errmsg(_("Cannot open for reading: \""));
2184 mch_errmsg(argv[0]);
2185 mch_errmsg("\"\n");
2186 mch_exit(2);
2188 if (save_typebuf() == FAIL)
2189 mch_exit(2); /* out of memory */
2190 break;
2192 case 't': /* "-t {tag}" */
2193 parmp->tagname = (char_u *)argv[0];
2194 break;
2196 case 'T': /* "-T {terminal}" terminal name */
2198 * The -T term argument is always available and when
2199 * HAVE_TERMLIB is supported it overrides the environment
2200 * variable TERM.
2202 #ifdef FEAT_GUI
2203 if (term_is_gui((char_u *)argv[0]))
2204 gui.starting = TRUE; /* start GUI a bit later */
2205 else
2206 #endif
2207 parmp->term = (char_u *)argv[0];
2208 break;
2210 case 'u': /* "-u {vimrc}" vim inits file */
2211 parmp->use_vimrc = (char_u *)argv[0];
2212 break;
2214 case 'U': /* "-U {gvimrc}" gvim inits file */
2215 #ifdef FEAT_GUI
2216 use_gvimrc = (char_u *)argv[0];
2217 #endif
2218 break;
2220 case 'w': /* "-w {nr}" 'window' value */
2221 /* "-w {scriptout}" append to script file */
2222 if (vim_isdigit(*((char_u *)argv[0])))
2224 argv_idx = 0;
2225 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2226 set_option_value((char_u *)"window", n, NULL, 0);
2227 argv_idx = -1;
2228 break;
2230 /*FALLTHROUGH*/
2231 case 'W': /* "-W {scriptout}" overwrite script file */
2232 if (scriptout != NULL)
2233 goto scripterror;
2234 if ((scriptout = mch_fopen(argv[0],
2235 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2237 mch_errmsg(_("Cannot open for script output: \""));
2238 mch_errmsg(argv[0]);
2239 mch_errmsg("\"\n");
2240 mch_exit(2);
2242 break;
2244 #ifdef FEAT_GUI_W32
2245 case 'P': /* "-P {parent title}" MDI parent */
2246 gui_mch_set_parent(argv[0]);
2247 break;
2248 #endif
2254 * File name argument.
2256 else
2258 argv_idx = -1; /* skip to next argument */
2260 /* Check for only one type of editing. */
2261 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2262 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2263 parmp->edit_type = EDIT_FILE;
2265 #ifdef MSWIN
2266 /* Remember if the argument was a full path before changing
2267 * slashes to backslashes. */
2268 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2269 parmp->full_path = TRUE;
2270 #endif
2272 /* Add the file to the global argument list. */
2273 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2274 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2275 mch_exit(2);
2276 #ifdef FEAT_DIFF
2277 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2278 && !mch_isdir(alist_name(&GARGLIST[0])))
2280 char_u *r;
2282 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2283 if (r != NULL)
2285 vim_free(p);
2286 p = r;
2289 #endif
2290 #if defined(__CYGWIN32__) && !defined(WIN32)
2292 * If vim is invoked by non-Cygwin tools, convert away any
2293 * DOS paths, so things like .swp files are created correctly.
2294 * Look for evidence of non-Cygwin paths before we bother.
2295 * This is only for when using the Unix files.
2297 if (strpbrk(p, "\\:") != NULL)
2299 char posix_path[PATH_MAX];
2301 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2302 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2303 # else
2304 cygwin_conv_to_posix_path(p, posix_path);
2305 # endif
2306 vim_free(p);
2307 p = vim_strsave(posix_path);
2308 if (p == NULL)
2309 mch_exit(2);
2311 #endif
2313 #ifdef USE_FNAME_CASE
2314 /* Make the case of the file name match the actual file. */
2315 fname_case(p, 0);
2316 #endif
2318 alist_add(&global_alist, p,
2319 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2320 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2321 #else
2322 2 /* add buffer number now and use curbuf */
2323 #endif
2326 #if defined(FEAT_MBYTE) && defined(WIN32)
2328 /* Remember this argument has been added to the argument list.
2329 * Needed when 'encoding' is changed. */
2330 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2331 # ifdef FEAT_DIFF
2332 parmp->diff_mode
2333 # else
2334 FALSE
2335 # endif
2338 #endif
2342 * If there are no more letters after the current "-", go to next
2343 * argument. argv_idx is set to -1 when the current argument is to be
2344 * skipped.
2346 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2348 --argc;
2349 ++argv;
2350 argv_idx = 1;
2354 #ifdef FEAT_EVAL
2355 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2356 * one. */
2357 if (parmp->n_commands > 0)
2359 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2360 if (p != NULL)
2362 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2363 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2364 vim_free(p);
2367 #endif
2371 * Print a warning if stdout is not a terminal.
2372 * When starting in Ex mode and commands come from a file, set Silent mode.
2374 static void
2375 check_tty(parmp)
2376 mparm_T *parmp;
2378 int input_isatty; /* is active input a terminal? */
2380 input_isatty = mch_input_isatty();
2381 if (exmode_active)
2383 if (!input_isatty)
2384 silent_mode = TRUE;
2386 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2387 #ifdef FEAT_GUI
2388 /* don't want the delay when started from the desktop */
2389 && !gui.starting
2390 #endif
2393 #ifdef NBDEBUG
2395 * This shouldn't be necessary. But if I run netbeans with the log
2396 * output coming to the console and XOpenDisplay fails, I get vim
2397 * trying to start with input/output to my console tty. This fills my
2398 * input buffer so fast I can't even kill the process in under 2
2399 * minutes (and it beeps continuously the whole time :-)
2401 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2403 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2404 exit(1);
2406 #endif
2407 if (!parmp->stdout_isatty)
2408 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2409 if (!input_isatty)
2410 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2411 out_flush();
2412 if (scriptin[0] == NULL)
2413 ui_delay(2000L, TRUE);
2414 TIME_MSG("Warning delay");
2419 * Read text from stdin.
2421 static void
2422 read_stdin()
2424 int i;
2426 #if defined(HAS_SWAP_EXISTS_ACTION)
2427 /* When getting the ATTENTION prompt here, use a dialog */
2428 swap_exists_action = SEA_DIALOG;
2429 #endif
2430 no_wait_return = TRUE;
2431 i = msg_didany;
2432 set_buflisted(TRUE);
2433 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2434 no_wait_return = FALSE;
2435 msg_didany = i;
2436 TIME_MSG("reading stdin");
2437 #if defined(HAS_SWAP_EXISTS_ACTION)
2438 check_swap_exists_action();
2439 #endif
2440 #if !(defined(AMIGA) || defined(MACOS))
2442 * Close stdin and dup it from stderr. Required for GPM to work
2443 * properly, and for running external commands.
2444 * Is there any other system that cannot do this?
2446 close(0);
2447 dup(2);
2448 #endif
2452 * Create the requested number of windows and edit buffers in them.
2453 * Also does recovery if "recoverymode" set.
2455 /*ARGSUSED*/
2456 static void
2457 create_windows(parmp)
2458 mparm_T *parmp;
2460 #ifdef FEAT_WINDOWS
2461 int dorewind;
2462 int done = 0;
2465 * Create the number of windows that was requested.
2467 if (parmp->window_count == -1) /* was not set */
2468 parmp->window_count = 1;
2469 if (parmp->window_count == 0)
2470 parmp->window_count = GARGCOUNT;
2471 if (parmp->window_count > 1)
2473 /* Don't change the windows if there was a command in .vimrc that
2474 * already split some windows */
2475 if (parmp->window_layout == 0)
2476 parmp->window_layout = WIN_HOR;
2477 if (parmp->window_layout == WIN_TABS)
2479 parmp->window_count = make_tabpages(parmp->window_count);
2480 TIME_MSG("making tab pages");
2482 else if (firstwin->w_next == NULL)
2484 parmp->window_count = make_windows(parmp->window_count,
2485 parmp->window_layout == WIN_VER);
2486 TIME_MSG("making windows");
2488 else
2489 parmp->window_count = win_count();
2491 else
2492 parmp->window_count = 1;
2493 #endif
2495 if (recoverymode) /* do recover */
2497 msg_scroll = TRUE; /* scroll message up */
2498 ml_recover();
2499 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2500 getout(1);
2501 do_modelines(0); /* do modelines */
2503 else
2506 * Open a buffer for windows that don't have one yet.
2507 * Commands in the .vimrc might have loaded a file or split the window.
2508 * Watch out for autocommands that delete a window.
2510 #ifdef FEAT_AUTOCMD
2512 * Don't execute Win/Buf Enter/Leave autocommands here
2514 ++autocmd_no_enter;
2515 ++autocmd_no_leave;
2516 #endif
2517 #ifdef FEAT_WINDOWS
2518 dorewind = TRUE;
2519 while (done++ < 1000)
2521 if (dorewind)
2523 if (parmp->window_layout == WIN_TABS)
2524 goto_tabpage(1);
2525 else
2526 curwin = firstwin;
2528 else if (parmp->window_layout == WIN_TABS)
2530 if (curtab->tp_next == NULL)
2531 break;
2532 goto_tabpage(0);
2534 else
2536 if (curwin->w_next == NULL)
2537 break;
2538 curwin = curwin->w_next;
2540 dorewind = FALSE;
2541 #endif
2542 curbuf = curwin->w_buffer;
2543 if (curbuf->b_ml.ml_mfp == NULL)
2545 #ifdef FEAT_FOLDING
2546 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2547 if (p_fdls >= 0)
2548 curwin->w_p_fdl = p_fdls;
2549 #endif
2550 #if defined(HAS_SWAP_EXISTS_ACTION)
2551 /* When getting the ATTENTION prompt here, use a dialog */
2552 swap_exists_action = SEA_DIALOG;
2553 #endif
2554 set_buflisted(TRUE);
2555 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2557 #if defined(HAS_SWAP_EXISTS_ACTION)
2558 if (swap_exists_action == SEA_QUIT)
2560 if (got_int || only_one_window())
2562 /* abort selected or quit and only one window */
2563 did_emsg = FALSE; /* avoid hit-enter prompt */
2564 getout(1);
2566 /* We can't close the window, it would disturb what
2567 * happens next. Clear the file name and set the arg
2568 * index to -1 to delete it later. */
2569 setfname(curbuf, NULL, NULL, FALSE);
2570 curwin->w_arg_idx = -1;
2571 swap_exists_action = SEA_NONE;
2573 else
2574 handle_swap_exists(NULL);
2575 #endif
2576 #ifdef FEAT_AUTOCMD
2577 dorewind = TRUE; /* start again */
2578 #endif
2580 #ifdef FEAT_WINDOWS
2581 ui_breakcheck();
2582 if (got_int)
2584 (void)vgetc(); /* only break the file loading, not the rest */
2585 break;
2588 #endif
2589 #ifdef FEAT_WINDOWS
2590 if (parmp->window_layout == WIN_TABS)
2591 goto_tabpage(1);
2592 else
2593 curwin = firstwin;
2594 curbuf = curwin->w_buffer;
2595 #endif
2596 #ifdef FEAT_AUTOCMD
2597 --autocmd_no_enter;
2598 --autocmd_no_leave;
2599 #endif
2603 #ifdef FEAT_WINDOWS
2605 * If opened more than one window, start editing files in the other
2606 * windows. make_windows() has already opened the windows.
2608 static void
2609 edit_buffers(parmp)
2610 mparm_T *parmp;
2612 int arg_idx; /* index in argument list */
2613 int i;
2614 int advance = TRUE;
2616 # ifdef FEAT_AUTOCMD
2618 * Don't execute Win/Buf Enter/Leave autocommands here
2620 ++autocmd_no_enter;
2621 ++autocmd_no_leave;
2622 # endif
2624 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2625 if (curwin->w_arg_idx == -1)
2627 win_close(curwin, TRUE);
2628 advance = FALSE;
2631 arg_idx = 1;
2632 for (i = 1; i < parmp->window_count; ++i)
2634 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2635 if (curwin->w_arg_idx == -1)
2637 ++arg_idx;
2638 win_close(curwin, TRUE);
2639 advance = FALSE;
2640 continue;
2643 if (advance)
2645 if (parmp->window_layout == WIN_TABS)
2647 if (curtab->tp_next == NULL) /* just checking */
2648 break;
2649 goto_tabpage(0);
2651 else
2653 if (curwin->w_next == NULL) /* just checking */
2654 break;
2655 win_enter(curwin->w_next, FALSE);
2658 advance = TRUE;
2660 /* Only open the file if there is no file in this window yet (that can
2661 * happen when .vimrc contains ":sall"). */
2662 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2664 curwin->w_arg_idx = arg_idx;
2665 /* Edit file from arg list, if there is one. When "Quit" selected
2666 * at the ATTENTION prompt close the window. */
2667 # ifdef HAS_SWAP_EXISTS_ACTION
2668 swap_exists_did_quit = FALSE;
2669 # endif
2670 (void)do_ecmd(0, arg_idx < GARGCOUNT
2671 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2672 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
2673 # ifdef HAS_SWAP_EXISTS_ACTION
2674 if (swap_exists_did_quit)
2676 /* abort or quit selected */
2677 if (got_int || only_one_window())
2679 /* abort selected and only one window */
2680 did_emsg = FALSE; /* avoid hit-enter prompt */
2681 getout(1);
2683 win_close(curwin, TRUE);
2684 advance = FALSE;
2686 # endif
2687 if (arg_idx == GARGCOUNT - 1)
2688 arg_had_last = TRUE;
2689 ++arg_idx;
2691 ui_breakcheck();
2692 if (got_int)
2694 (void)vgetc(); /* only break the file loading, not the rest */
2695 break;
2699 if (parmp->window_layout == WIN_TABS)
2700 goto_tabpage(1);
2701 # ifdef FEAT_AUTOCMD
2702 --autocmd_no_enter;
2703 # endif
2704 win_enter(firstwin, FALSE); /* back to first window */
2705 # ifdef FEAT_AUTOCMD
2706 --autocmd_no_leave;
2707 # endif
2708 TIME_MSG("editing files in windows");
2709 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2710 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2712 #endif /* FEAT_WINDOWS */
2715 * Execute the commands from --cmd arguments "cmds[cnt]".
2717 static void
2718 exe_pre_commands(parmp)
2719 mparm_T *parmp;
2721 char_u **cmds = parmp->pre_commands;
2722 int cnt = parmp->n_pre_commands;
2723 int i;
2725 if (cnt > 0)
2727 curwin->w_cursor.lnum = 0; /* just in case.. */
2728 sourcing_name = (char_u *)_("pre-vimrc command line");
2729 # ifdef FEAT_EVAL
2730 current_SID = SID_CMDARG;
2731 # endif
2732 for (i = 0; i < cnt; ++i)
2733 do_cmdline_cmd(cmds[i]);
2734 sourcing_name = NULL;
2735 # ifdef FEAT_EVAL
2736 current_SID = 0;
2737 # endif
2738 TIME_MSG("--cmd commands");
2743 * Execute "+", "-c" and "-S" arguments.
2745 static void
2746 exe_commands(parmp)
2747 mparm_T *parmp;
2749 int i;
2752 * We start commands on line 0, make "vim +/pat file" match a
2753 * pattern on line 1. But don't move the cursor when an autocommand
2754 * with g`" was used.
2756 msg_scroll = TRUE;
2757 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2758 curwin->w_cursor.lnum = 0;
2759 sourcing_name = (char_u *)"command line";
2760 #ifdef FEAT_EVAL
2761 current_SID = SID_CARG;
2762 #endif
2763 for (i = 0; i < parmp->n_commands; ++i)
2765 do_cmdline_cmd(parmp->commands[i]);
2766 if (parmp->cmds_tofree[i])
2767 vim_free(parmp->commands[i]);
2769 sourcing_name = NULL;
2770 #ifdef FEAT_EVAL
2771 current_SID = 0;
2772 #endif
2773 if (curwin->w_cursor.lnum == 0)
2774 curwin->w_cursor.lnum = 1;
2776 if (!exmode_active)
2777 msg_scroll = FALSE;
2779 #ifdef FEAT_QUICKFIX
2780 /* When started with "-q errorfile" jump to first error again. */
2781 if (parmp->edit_type == EDIT_QF)
2782 qf_jump(NULL, 0, 0, FALSE);
2783 #endif
2784 TIME_MSG("executing command arguments");
2788 * Source startup scripts.
2790 static void
2791 source_startup_scripts(parmp)
2792 mparm_T *parmp;
2794 int i;
2797 * For "evim" source evim.vim first of all, so that the user can overrule
2798 * any things he doesn't like.
2800 if (parmp->evim_mode)
2802 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2803 TIME_MSG("source evim file");
2807 * If -u argument given, use only the initializations from that file and
2808 * nothing else.
2810 if (parmp->use_vimrc != NULL)
2812 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2813 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2815 #ifdef FEAT_GUI
2816 if (use_gvimrc == NULL) /* don't load gvimrc either */
2817 use_gvimrc = parmp->use_vimrc;
2818 #endif
2819 if (parmp->use_vimrc[2] == 'N')
2820 p_lpl = FALSE; /* don't load plugins either */
2822 else
2824 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2825 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2828 else if (!silent_mode)
2830 #ifdef AMIGA
2831 struct Process *proc = (struct Process *)FindTask(0L);
2832 APTR save_winptr = proc->pr_WindowPtr;
2834 /* Avoid a requester here for a volume that doesn't exist. */
2835 proc->pr_WindowPtr = (APTR)-1L;
2836 #endif
2839 * Get system wide defaults, if the file name is defined.
2841 #ifdef SYS_VIMRC_FILE
2842 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2843 #endif
2844 #if defined(MACOS_X) && !defined(FEAT_GUI_MACVIM)
2845 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2846 #endif
2849 * Try to read initialization commands from the following places:
2850 * - environment variable VIMINIT
2851 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2852 * - second user vimrc file ($VIM/.vimrc for Dos)
2853 * - environment variable EXINIT
2854 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2855 * - second user exrc file ($VIM/.exrc for Dos)
2856 * The first that exists is used, the rest is ignored.
2858 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2860 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2861 #ifdef USR_VIMRC_FILE2
2862 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2863 DOSO_VIMRC) == FAIL
2864 #endif
2865 #ifdef USR_VIMRC_FILE3
2866 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2867 DOSO_VIMRC) == FAIL
2868 #endif
2869 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2870 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2872 #ifdef USR_EXRC_FILE2
2873 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2874 #endif
2879 * Read initialization commands from ".vimrc" or ".exrc" in current
2880 * directory. This is only done if the 'exrc' option is set.
2881 * Because of security reasons we disallow shell and write commands
2882 * now, except for unix if the file is owned by the user or 'secure'
2883 * option has been reset in environment of global ".exrc" or ".vimrc".
2884 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2885 * SYS_VIMRC_FILE.
2887 if (p_exrc)
2889 #if defined(UNIX) || defined(VMS)
2890 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2891 if (!file_owned(VIMRC_FILE))
2892 #endif
2893 secure = p_secure;
2895 i = FAIL;
2896 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2897 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2898 #ifdef USR_VIMRC_FILE2
2899 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2900 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2901 #endif
2902 #ifdef USR_VIMRC_FILE3
2903 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2904 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2905 #endif
2906 #ifdef SYS_VIMRC_FILE
2907 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2908 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2909 #endif
2911 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2913 if (i == FAIL)
2915 #if defined(UNIX) || defined(VMS)
2916 /* if ".exrc" is not owned by user set 'secure' mode */
2917 if (!file_owned(EXRC_FILE))
2918 secure = p_secure;
2919 else
2920 secure = 0;
2921 #endif
2922 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2923 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2924 #ifdef USR_EXRC_FILE2
2925 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2926 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2927 #endif
2929 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2932 if (secure == 2)
2933 need_wait_return = TRUE;
2934 secure = 0;
2935 #ifdef AMIGA
2936 proc->pr_WindowPtr = save_winptr;
2937 #endif
2939 TIME_MSG("sourcing vimrc file(s)");
2943 * Setup to start using the GUI. Exit with an error when not available.
2945 static void
2946 main_start_gui()
2948 #ifdef FEAT_GUI
2949 gui.starting = TRUE; /* start GUI a bit later */
2950 #else
2951 mch_errmsg(_(e_nogvim));
2952 mch_errmsg("\n");
2953 mch_exit(2);
2954 #endif
2958 * Get an environment variable, and execute it as Ex commands.
2959 * Returns FAIL if the environment variable was not executed, OK otherwise.
2962 process_env(env, is_viminit)
2963 char_u *env;
2964 int is_viminit; /* when TRUE, called for VIMINIT */
2966 char_u *initstr;
2967 char_u *save_sourcing_name;
2968 linenr_T save_sourcing_lnum;
2969 #ifdef FEAT_EVAL
2970 scid_T save_sid;
2971 #endif
2973 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2975 if (is_viminit)
2976 vimrc_found(NULL, NULL);
2977 save_sourcing_name = sourcing_name;
2978 save_sourcing_lnum = sourcing_lnum;
2979 sourcing_name = env;
2980 sourcing_lnum = 0;
2981 #ifdef FEAT_EVAL
2982 save_sid = current_SID;
2983 current_SID = SID_ENV;
2984 #endif
2985 do_cmdline_cmd(initstr);
2986 sourcing_name = save_sourcing_name;
2987 sourcing_lnum = save_sourcing_lnum;
2988 #ifdef FEAT_EVAL
2989 current_SID = save_sid;;
2990 #endif
2991 return OK;
2993 return FAIL;
2996 #if defined(UNIX) || defined(VMS)
2998 * Return TRUE if we are certain the user owns the file "fname".
2999 * Used for ".vimrc" and ".exrc".
3000 * Use both stat() and lstat() for extra security.
3002 static int
3003 file_owned(fname)
3004 char *fname;
3006 struct stat s;
3007 # ifdef UNIX
3008 uid_t uid = getuid();
3009 # else /* VMS */
3010 uid_t uid = ((getgid() << 16) | getuid());
3011 # endif
3013 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3014 # ifdef HAVE_LSTAT
3015 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3016 # endif
3019 #endif
3022 * Give an error message main_errors["n"] and exit.
3024 static void
3025 mainerr(n, str)
3026 int n; /* one of the ME_ defines */
3027 char_u *str; /* extra argument or NULL */
3029 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3030 reset_signals(); /* kill us with CTRL-C here, if you like */
3031 #endif
3033 mch_errmsg(longVersion);
3034 mch_errmsg("\n");
3035 mch_errmsg(_(main_errors[n]));
3036 if (str != NULL)
3038 mch_errmsg(": \"");
3039 mch_errmsg((char *)str);
3040 mch_errmsg("\"");
3042 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
3044 mch_exit(1);
3047 void
3048 mainerr_arg_missing(str)
3049 char_u *str;
3051 mainerr(ME_ARG_MISSING, str);
3055 * print a message with three spaces prepended and '\n' appended.
3057 static void
3058 main_msg(s)
3059 char *s;
3061 mch_msg(" ");
3062 mch_msg(s);
3063 mch_msg("\n");
3067 * Print messages for "vim -h" or "vim --help" and exit.
3069 static void
3070 usage()
3072 int i;
3073 static char *(use[]) =
3075 N_("[file ..] edit specified file(s)"),
3076 N_("- read text from stdin"),
3077 N_("-t tag edit file where tag is defined"),
3078 #ifdef FEAT_QUICKFIX
3079 N_("-q [errorfile] edit file with first error")
3080 #endif
3083 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3084 reset_signals(); /* kill us with CTRL-C here, if you like */
3085 #endif
3087 mch_msg(longVersion);
3088 mch_msg(_("\n\nusage:"));
3089 for (i = 0; ; ++i)
3091 mch_msg(_(" vim [arguments] "));
3092 mch_msg(_(use[i]));
3093 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3094 break;
3095 mch_msg(_("\n or:"));
3097 #ifdef VMS
3098 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3099 #endif
3101 mch_msg(_("\n\nArguments:\n"));
3102 main_msg(_("--\t\t\tOnly file names after this"));
3103 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3104 main_msg(_("--literal\t\tDon't expand wildcards"));
3105 #endif
3106 #ifdef FEAT_OLE
3107 main_msg(_("-register\t\tRegister this gvim for OLE"));
3108 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3109 #endif
3110 #ifdef FEAT_GUI
3111 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3112 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3113 #endif
3114 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3115 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3116 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3117 #ifdef FEAT_DIFF
3118 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3119 #endif
3120 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3121 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3122 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3123 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3124 main_msg(_("-M\t\t\tModifications in text not allowed"));
3125 main_msg(_("-b\t\t\tBinary mode"));
3126 #ifdef FEAT_LISP
3127 main_msg(_("-l\t\t\tLisp mode"));
3128 #endif
3129 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3130 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3131 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3132 #ifdef FEAT_EVAL
3133 main_msg(_("-D\t\t\tDebugging mode"));
3134 #endif
3135 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3136 main_msg(_("-r\t\t\tList swap files and exit"));
3137 main_msg(_("-r (with file name)\tRecover crashed session"));
3138 main_msg(_("-L\t\t\tSame as -r"));
3139 #ifdef AMIGA
3140 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3141 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3142 #endif
3143 #ifdef FEAT_ARABIC
3144 main_msg(_("-A\t\t\tstart in Arabic mode"));
3145 #endif
3146 #ifdef FEAT_RIGHTLEFT
3147 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3148 #endif
3149 #ifdef FEAT_FKMAP
3150 main_msg(_("-F\t\t\tStart in Farsi mode"));
3151 #endif
3152 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3153 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3154 #ifdef FEAT_GUI
3155 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3156 #endif
3157 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3158 #ifdef FEAT_WINDOWS
3159 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3160 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3161 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3162 #endif
3163 main_msg(_("+\t\t\tStart at end of file"));
3164 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3165 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3166 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3167 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3168 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3169 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3170 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3171 #ifdef FEAT_CRYPT
3172 main_msg(_("-x\t\t\tEdit encrypted files"));
3173 #endif
3174 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3175 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3176 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3177 # endif
3178 main_msg(_("-X\t\t\tDo not connect to X server"));
3179 #endif
3180 #ifdef FEAT_CLIENTSERVER
3181 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3182 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3183 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3184 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3185 # ifdef FEAT_WINDOWS
3186 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3187 # endif
3188 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3189 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3190 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3191 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3192 #endif
3193 #ifdef FEAT_VIMINFO
3194 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3195 #endif
3196 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3197 main_msg(_("--version\t\tPrint version information and exit"));
3199 #ifdef FEAT_GUI_X11
3200 # ifdef FEAT_GUI_MOTIF
3201 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3202 # else
3203 # ifdef FEAT_GUI_ATHENA
3204 # ifdef FEAT_GUI_NEXTAW
3205 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3206 # else
3207 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3208 # endif
3209 # endif
3210 # endif
3211 main_msg(_("-display <display>\tRun vim on <display>"));
3212 main_msg(_("-iconic\t\tStart vim iconified"));
3213 # if 0
3214 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3215 mch_msg(_("\t\t\t (Unimplemented)\n"));
3216 # endif
3217 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3218 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3219 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3220 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3221 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3222 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3223 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3224 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3225 # ifdef FEAT_GUI_ATHENA
3226 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3227 # endif
3228 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3229 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3230 main_msg(_("-xrm <resource>\tSet the specified resource"));
3231 #endif /* FEAT_GUI_X11 */
3232 #if defined(FEAT_GUI) && defined(RISCOS)
3233 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3234 main_msg(_("--columns <number>\tInitial width of window in columns"));
3235 main_msg(_("--rows <number>\tInitial height of window in rows"));
3236 #endif
3237 #ifdef FEAT_GUI_GTK
3238 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3239 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3240 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3241 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3242 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3243 # ifdef HAVE_GTK2
3244 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3245 # endif
3246 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3247 #endif
3248 #ifdef FEAT_GUI_W32
3249 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3250 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3251 #endif
3253 #ifdef FEAT_GUI_GNOME
3254 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3255 if (gui.starting)
3256 mch_msg("\n");
3257 else
3258 #endif
3259 mch_exit(0);
3262 #if defined(HAS_SWAP_EXISTS_ACTION)
3264 * Check the result of the ATTENTION dialog:
3265 * When "Quit" selected, exit Vim.
3266 * When "Recover" selected, recover the file.
3268 static void
3269 check_swap_exists_action()
3271 if (swap_exists_action == SEA_QUIT)
3272 getout(1);
3273 handle_swap_exists(NULL);
3275 #endif
3277 #if defined(STARTUPTIME) || defined(PROTO)
3278 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3280 static struct timeval prev_timeval;
3283 * Save the previous time before doing something that could nest.
3284 * set "*tv_rel" to the time elapsed so far.
3286 void
3287 time_push(tv_rel, tv_start)
3288 void *tv_rel, *tv_start;
3290 *((struct timeval *)tv_rel) = prev_timeval;
3291 gettimeofday(&prev_timeval, NULL);
3292 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3293 - ((struct timeval *)tv_rel)->tv_usec;
3294 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3295 - ((struct timeval *)tv_rel)->tv_sec;
3296 if (((struct timeval *)tv_rel)->tv_usec < 0)
3298 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3299 --((struct timeval *)tv_rel)->tv_sec;
3301 *(struct timeval *)tv_start = prev_timeval;
3305 * Compute the previous time after doing something that could nest.
3306 * Subtract "*tp" from prev_timeval;
3307 * Note: The arguments are (void *) to avoid trouble with systems that don't
3308 * have struct timeval.
3310 void
3311 time_pop(tp)
3312 void *tp; /* actually (struct timeval *) */
3314 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3315 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3316 if (prev_timeval.tv_usec < 0)
3318 prev_timeval.tv_usec += 1000000;
3319 --prev_timeval.tv_sec;
3323 static void
3324 time_diff(then, now)
3325 struct timeval *then;
3326 struct timeval *now;
3328 long usec;
3329 long msec;
3331 usec = now->tv_usec - then->tv_usec;
3332 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3333 usec = usec % 1000L;
3334 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3337 void
3338 time_msg(msg, tv_start)
3339 char *msg;
3340 void *tv_start; /* only for do_source: start time; actually
3341 (struct timeval *) */
3343 static struct timeval start;
3344 struct timeval now;
3346 if (time_fd != NULL)
3348 if (strstr(msg, "STARTING") != NULL)
3350 gettimeofday(&start, NULL);
3351 prev_timeval = start;
3352 fprintf(time_fd, "\n\ntimes in msec\n");
3353 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3354 fprintf(time_fd, " clock elapsed: other lines\n\n");
3356 gettimeofday(&now, NULL);
3357 time_diff(&start, &now);
3358 if (((struct timeval *)tv_start) != NULL)
3360 fprintf(time_fd, " ");
3361 time_diff(((struct timeval *)tv_start), &now);
3363 fprintf(time_fd, " ");
3364 time_diff(&prev_timeval, &now);
3365 prev_timeval = now;
3366 fprintf(time_fd, ": %s\n", msg);
3370 # ifdef WIN3264
3372 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3375 gettimeofday(struct timeval *tv, char *dummy)
3377 long t = clock();
3378 tv->tv_sec = t / CLOCKS_PER_SEC;
3379 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3380 return 0;
3382 # endif
3384 #endif
3386 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3389 * Common code for the X command server and the Win32 command server.
3392 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3395 * Do the client-server stuff, unless "--servername ''" was used.
3397 static void
3398 exec_on_server(parmp)
3399 mparm_T *parmp;
3401 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3403 # ifdef WIN32
3404 /* Initialise the client/server messaging infrastructure. */
3405 serverInitMessaging();
3406 # endif
3409 * When a command server argument was found, execute it. This may
3410 * exit Vim when it was successful. Otherwise it's executed further
3411 * on. Remember the encoding used here in "serverStrEnc".
3413 if (parmp->serverArg)
3415 cmdsrv_main(&parmp->argc, parmp->argv,
3416 parmp->serverName_arg, &parmp->serverStr);
3417 # ifdef FEAT_MBYTE
3418 parmp->serverStrEnc = vim_strsave(p_enc);
3419 # endif
3422 /* If we're still running, get the name to register ourselves.
3423 * On Win32 can register right now, for X11 need to setup the
3424 * clipboard first, it's further down. */
3425 parmp->servername = serverMakeName(parmp->serverName_arg,
3426 parmp->argv[0]);
3427 # ifdef WIN32
3428 if (parmp->servername != NULL)
3430 serverSetName(parmp->servername);
3431 vim_free(parmp->servername);
3433 # endif
3438 * Prepare for running as a Vim server.
3440 static void
3441 prepare_server(parmp)
3442 mparm_T *parmp;
3444 # if defined(FEAT_X11)
3446 * Register for remote command execution with :serversend and --remote
3447 * unless there was a -X or a --servername '' on the command line.
3448 * Only register nongui-vim's with an explicit --servername argument.
3449 * When running as root --servername is also required.
3451 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3452 # ifdef FEAT_GUI
3453 (gui.in_use
3454 # ifdef UNIX
3455 && getuid() != ROOT_UID
3456 # endif
3457 ) ||
3458 # endif
3459 parmp->serverName_arg != NULL))
3461 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3462 vim_free(parmp->servername);
3463 TIME_MSG("register server name");
3465 else
3466 serverDelayedStartName = parmp->servername;
3467 # endif
3470 * Execute command ourselves if we're here because the send failed (or
3471 * else we would have exited above).
3473 if (parmp->serverStr != NULL)
3475 char_u *p;
3477 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3478 parmp->serverStr, &p));
3479 vim_free(p);
3483 static void
3484 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3485 int *argc;
3486 char **argv;
3487 char_u *serverName_arg;
3488 char_u **serverStr;
3490 char_u *res;
3491 int i;
3492 char_u *sname;
3493 int ret;
3494 int didone = FALSE;
3495 int exiterr = 0;
3496 char **newArgV = argv + 1;
3497 int newArgC = 1,
3498 Argc = *argc;
3499 int argtype;
3500 #define ARGTYPE_OTHER 0
3501 #define ARGTYPE_EDIT 1
3502 #define ARGTYPE_EDIT_WAIT 2
3503 #define ARGTYPE_SEND 3
3504 int silent = FALSE;
3505 int tabs = FALSE;
3506 # ifdef WIN32
3507 HWND srv;
3508 # elif defined(MAC_CLIENTSERVER)
3509 int srv;
3510 # elif defined(FEAT_X11)
3511 Window srv;
3513 setup_term_clip();
3514 # endif
3516 sname = serverMakeName(serverName_arg, argv[0]);
3517 if (sname == NULL)
3518 return;
3521 * Execute the command server related arguments and remove them
3522 * from the argc/argv array; We may have to return into main()
3524 for (i = 1; i < Argc; i++)
3526 res = NULL;
3527 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3529 for (; i < *argc; i++)
3531 *newArgV++ = argv[i];
3532 newArgC++;
3534 break;
3537 if (STRICMP(argv[i], "--remote-send") == 0)
3538 argtype = ARGTYPE_SEND;
3539 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3541 char *p = argv[i] + 8;
3543 argtype = ARGTYPE_EDIT;
3544 while (*p != NUL)
3546 if (STRNICMP(p, "-wait", 5) == 0)
3548 argtype = ARGTYPE_EDIT_WAIT;
3549 p += 5;
3551 else if (STRNICMP(p, "-silent", 7) == 0)
3553 silent = TRUE;
3554 p += 7;
3556 else if (STRNICMP(p, "-tab", 4) == 0)
3558 tabs = TRUE;
3559 p += 4;
3561 else
3563 argtype = ARGTYPE_OTHER;
3564 break;
3568 else
3569 argtype = ARGTYPE_OTHER;
3571 if (argtype != ARGTYPE_OTHER)
3573 if (i == *argc - 1)
3574 mainerr_arg_missing((char_u *)argv[i]);
3575 if (argtype == ARGTYPE_SEND)
3577 *serverStr = (char_u *)argv[i + 1];
3578 i++;
3580 else
3582 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3583 tabs, argtype == ARGTYPE_EDIT_WAIT);
3584 if (*serverStr == NULL)
3586 /* Probably out of memory, exit. */
3587 didone = TRUE;
3588 exiterr = 1;
3589 break;
3591 Argc = i;
3593 # ifdef FEAT_X11
3594 if (xterm_dpy == NULL)
3596 mch_errmsg(_("No display"));
3597 ret = -1;
3599 else
3600 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3601 NULL, &srv, 0, 0, silent);
3602 # elif defined(WIN32) || defined(MAC_CLIENTSERVER)
3603 /* Win32 always works? */
3604 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3605 # endif
3606 if (ret < 0)
3608 if (argtype == ARGTYPE_SEND)
3610 /* Failed to send, abort. */
3611 mch_errmsg(_(": Send failed.\n"));
3612 didone = TRUE;
3613 exiterr = 1;
3615 else if (!silent)
3616 /* Let vim start normally. */
3617 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3618 break;
3621 # ifdef FEAT_GUI_W32
3622 /* Guess that when the server name starts with "g" it's a GUI
3623 * server, which we can bring to the foreground here.
3624 * Foreground() in the server doesn't work very well. */
3625 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3626 SetForegroundWindow(srv);
3627 # endif
3630 * For --remote-wait: Wait until the server did edit each
3631 * file. Also detect that the server no longer runs.
3633 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3635 int numFiles = *argc - i - 1;
3636 int j;
3637 char_u *done = alloc(numFiles);
3638 char_u *p;
3639 # ifdef FEAT_GUI_W32
3640 NOTIFYICONDATA ni;
3641 int count = 0;
3642 extern HWND message_window;
3643 # endif
3645 if (numFiles > 0 && argv[i + 1][0] == '+')
3646 /* Skip "+cmd" argument, don't wait for it to be edited. */
3647 --numFiles;
3649 # ifdef FEAT_GUI_W32
3650 ni.cbSize = sizeof(ni);
3651 ni.hWnd = message_window;
3652 ni.uID = 0;
3653 ni.uFlags = NIF_ICON|NIF_TIP;
3654 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3655 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3656 Shell_NotifyIcon(NIM_ADD, &ni);
3657 # endif
3659 /* Wait for all files to unload in remote */
3660 memset(done, 0, numFiles);
3661 while (memchr(done, 0, numFiles) != NULL)
3663 # ifdef WIN32
3664 p = serverGetReply(srv, NULL, TRUE, TRUE);
3665 if (p == NULL)
3666 break;
3667 # elif defined(FEAT_X11)
3668 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3669 break;
3670 # elif defined(MAC_CLIENTSERVER)
3671 if (serverReadReply(srv, &p) < 0)
3672 break;
3673 # endif
3674 j = atoi((char *)p);
3675 if (j >= 0 && j < numFiles)
3677 # ifdef FEAT_GUI_W32
3678 ++count;
3679 sprintf(ni.szTip, _("%d of %d edited"),
3680 count, numFiles);
3681 Shell_NotifyIcon(NIM_MODIFY, &ni);
3682 # endif
3683 done[j] = 1;
3686 # ifdef FEAT_GUI_W32
3687 Shell_NotifyIcon(NIM_DELETE, &ni);
3688 # endif
3691 else if (STRICMP(argv[i], "--remote-expr") == 0)
3693 if (i == *argc - 1)
3694 mainerr_arg_missing((char_u *)argv[i]);
3695 # ifdef WIN32
3696 /* Win32 always works? */
3697 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3698 &res, NULL, 1, FALSE) < 0)
3699 # elif defined(FEAT_X11)
3700 if (xterm_dpy == NULL)
3701 mch_errmsg(_("No display: Send expression failed.\n"));
3702 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3703 &res, NULL, 1, 1, FALSE) < 0)
3704 # elif defined(MAC_CLIENTSERVER)
3705 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3706 &res, NULL, 1, FALSE) < 0)
3707 # endif
3709 if (res != NULL && *res != NUL)
3711 /* Output error from remote */
3712 mch_errmsg((char *)res);
3713 vim_free(res);
3714 res = NULL;
3716 mch_errmsg(_(": Send expression failed.\n"));
3719 else if (STRICMP(argv[i], "--serverlist") == 0)
3721 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
3722 /* Win32 always works? */
3723 res = serverGetVimNames();
3724 # elif defined(FEAT_X11)
3725 if (xterm_dpy != NULL)
3726 res = serverGetVimNames(xterm_dpy);
3727 # endif
3728 if (called_emsg)
3729 mch_errmsg("\n");
3731 else if (STRICMP(argv[i], "--servername") == 0)
3733 /* Alredy processed. Take it out of the command line */
3734 i++;
3735 continue;
3737 else
3739 *newArgV++ = argv[i];
3740 newArgC++;
3741 continue;
3743 didone = TRUE;
3744 if (res != NULL && *res != NUL)
3746 mch_msg((char *)res);
3747 if (res[STRLEN(res) - 1] != '\n')
3748 mch_msg("\n");
3750 vim_free(res);
3753 if (didone)
3755 display_errors(); /* display any collected messages */
3756 exit(exiterr); /* Mission accomplished - get out */
3759 /* Return back into main() */
3760 *argc = newArgC;
3761 vim_free(sname);
3765 * Build a ":drop" command to send to a Vim server.
3767 static char_u *
3768 build_drop_cmd(filec, filev, tabs, sendReply)
3769 int filec;
3770 char **filev;
3771 int tabs; /* Use ":tab drop" instead of ":drop". */
3772 int sendReply;
3774 garray_T ga;
3775 int i;
3776 char_u *inicmd = NULL;
3777 char_u *p;
3778 char_u cwd[MAXPATHL];
3780 if (filec > 0 && filev[0][0] == '+')
3782 inicmd = (char_u *)filev[0] + 1;
3783 filev++;
3784 filec--;
3786 /* Check if we have at least one argument. */
3787 if (filec <= 0)
3788 mainerr_arg_missing((char_u *)filev[-1]);
3789 if (mch_dirname(cwd, MAXPATHL) != OK)
3790 return NULL;
3791 if ((p = vim_strsave_escaped_ext(cwd,
3792 #ifdef BACKSLASH_IN_FILENAME
3793 "", /* rem_backslash() will tell what chars to escape */
3794 #else
3795 PATH_ESC_CHARS,
3796 #endif
3797 '\\', TRUE)) == NULL)
3798 return NULL;
3799 ga_init2(&ga, 1, 100);
3800 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3801 ga_concat(&ga, p);
3802 vim_free(p);
3804 /* Call inputsave() so that a prompt for an encryption key works. */
3805 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3806 if (tabs)
3807 ga_concat(&ga, (char_u *)"tab ");
3808 ga_concat(&ga, (char_u *)"drop");
3809 for (i = 0; i < filec; i++)
3811 /* On Unix the shell has already expanded the wildcards, don't want to
3812 * do it again in the Vim server. On MS-Windows only escape
3813 * non-wildcard characters. */
3814 p = vim_strsave_escaped((char_u *)filev[i],
3815 #ifdef UNIX
3816 PATH_ESC_CHARS
3817 #else
3818 (char_u *)" \t%#"
3819 #endif
3821 if (p == NULL)
3823 vim_free(ga.ga_data);
3824 return NULL;
3826 ga_concat(&ga, (char_u *)" ");
3827 ga_concat(&ga, p);
3828 vim_free(p);
3830 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3831 * CTRL-\ CTRL-N again. */
3832 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3833 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3834 if (sendReply)
3835 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3836 ga_concat(&ga, (char_u *)"<CR>:");
3837 if (inicmd != NULL)
3839 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3840 * the following commands to be inserted as text. Use a "|",
3841 * hopefully "inicmd" does allow this... */
3842 ga_concat(&ga, inicmd);
3843 ga_concat(&ga, (char_u *)"|");
3845 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3846 * clear command line. */
3847 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3848 ga_append(&ga, NUL);
3849 return ga.ga_data;
3853 * Replace termcodes such as <CR> and insert as key presses if there is room.
3855 void
3856 server_to_input_buf(str)
3857 char_u *str;
3859 char_u *ptr = NULL;
3860 char_u *cpo_save = p_cpo;
3862 /* Set 'cpoptions' the way we want it.
3863 * B set - backslashes are *not* treated specially
3864 * k set - keycodes are *not* reverse-engineered
3865 * < unset - <Key> sequences *are* interpreted
3866 * The last but one parameter of replace_termcodes() is TRUE so that the
3867 * <lt> sequence is recognised - needed for a real backslash.
3869 p_cpo = (char_u *)"Bk";
3870 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3871 p_cpo = cpo_save;
3873 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3876 * Add the string to the input stream.
3877 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3879 * First clear typed characters from the typeahead buffer, there could
3880 * be half a mapping there. Then append to the existing string, so
3881 * that multiple commands from a client are concatenated.
3883 if (typebuf.tb_maplen < typebuf.tb_len)
3884 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3885 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3887 /* Let input_available() know we inserted text in the typeahead
3888 * buffer. */
3889 typebuf_was_filled = TRUE;
3891 vim_free((char_u *)ptr);
3895 * Evaluate an expression that the client sent to a string.
3896 * Handles disabling error messages and disables debugging, otherwise Vim
3897 * hangs, waiting for "cont" to be typed.
3899 char_u *
3900 eval_client_expr_to_string(expr)
3901 char_u *expr;
3903 char_u *res;
3904 int save_dbl = debug_break_level;
3905 int save_ro = redir_off;
3907 debug_break_level = -1;
3908 redir_off = 0;
3909 ++emsg_skip;
3911 res = eval_to_string(expr, NULL, TRUE);
3913 debug_break_level = save_dbl;
3914 redir_off = save_ro;
3915 --emsg_skip;
3917 /* A client can tell us to redraw, but not to display the cursor, so do
3918 * that here. */
3919 setcursor();
3920 out_flush();
3921 #ifdef FEAT_GUI
3922 if (gui.in_use)
3923 gui_update_cursor(FALSE, FALSE);
3924 #endif
3926 return res;
3930 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3931 * return an allocated string. Otherwise return "data".
3932 * "*tofree" is set to the result when it needs to be freed later.
3934 /*ARGSUSED*/
3935 char_u *
3936 serverConvert(client_enc, data, tofree)
3937 char_u *client_enc;
3938 char_u *data;
3939 char_u **tofree;
3941 char_u *res = data;
3943 *tofree = NULL;
3944 # ifdef FEAT_MBYTE
3945 if (client_enc != NULL && p_enc != NULL)
3947 vimconv_T vimconv;
3949 vimconv.vc_type = CONV_NONE;
3950 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3951 && vimconv.vc_type != CONV_NONE)
3953 res = string_convert(&vimconv, data, NULL);
3954 if (res == NULL)
3955 res = data;
3956 else
3957 *tofree = res;
3959 convert_setup(&vimconv, NULL, NULL);
3961 # endif
3962 return res;
3967 * Make our basic server name: use the specified "arg" if given, otherwise use
3968 * the tail of the command "cmd" we were started with.
3969 * Return the name in allocated memory. This doesn't include a serial number.
3971 static char_u *
3972 serverMakeName(arg, cmd)
3973 char_u *arg;
3974 char *cmd;
3976 char_u *p;
3978 if (arg != NULL && *arg != NUL)
3979 p = vim_strsave_up(arg);
3980 else
3982 p = vim_strsave_up(gettail((char_u *)cmd));
3983 /* Remove .exe or .bat from the name. */
3984 if (p != NULL && vim_strchr(p, '.') != NULL)
3985 *vim_strchr(p, '.') = NUL;
3987 return p;
3989 #endif /* FEAT_CLIENTSERVER */
3992 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3994 #if defined(FEAT_FKMAP) || defined(PROTO)
3995 # include "farsi.c"
3996 #endif
3999 * When FEAT_ARABIC is defined, also compile the Arabic source code.
4001 #if defined(FEAT_ARABIC) || defined(PROTO)
4002 # include "arabic.c"
4003 #endif