Try to ensure new windows open with bottom edge visible on screen
[MacVim.git] / src / main.c
blob0c5f7292a0900ccbd687fc0b1b23c05cbbb20c81
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 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1544 main_start_gui();
1545 #ifdef FEAT_GUI
1546 ++initstr;
1547 #endif
1550 if (STRNICMP(initstr, "view", 4) == 0)
1552 readonlymode = TRUE;
1553 curbuf->b_p_ro = TRUE;
1554 p_uc = 10000; /* don't update very often */
1555 initstr += 4;
1557 else if (STRNICMP(initstr, "vim", 3) == 0)
1558 initstr += 3;
1560 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1561 if (STRICMP(initstr, "diff") == 0)
1563 #ifdef FEAT_DIFF
1564 parmp->diff_mode = TRUE;
1565 #else
1566 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1567 mch_errmsg("\n");
1568 mch_exit(2);
1569 #endif
1572 if (STRNICMP(initstr, "ex", 2) == 0)
1574 if (STRNICMP(initstr + 2, "im", 2) == 0)
1575 exmode_active = EXMODE_VIM;
1576 else
1577 exmode_active = EXMODE_NORMAL;
1578 change_compatible(TRUE); /* set 'compatible' */
1583 * Get the name of the display, before gui_prepare() removes it from
1584 * argv[]. Used for the xterm-clipboard display.
1586 * Also find the --server... arguments and --socketid and --windowid
1588 /*ARGSUSED*/
1589 static void
1590 early_arg_scan(parmp)
1591 mparm_T *parmp;
1593 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
1594 int argc = parmp->argc;
1595 char **argv = parmp->argv;
1596 int i;
1598 for (i = 1; i < argc; i++)
1600 if (STRCMP(argv[i], "--") == 0)
1601 break;
1602 # ifdef FEAT_XCLIPBOARD
1603 else if (STRICMP(argv[i], "-display") == 0
1604 # if defined(FEAT_GUI_GTK)
1605 || STRICMP(argv[i], "--display") == 0
1606 # endif
1609 if (i == argc - 1)
1610 mainerr_arg_missing((char_u *)argv[i]);
1611 xterm_display = argv[++i];
1613 # endif
1614 # ifdef FEAT_CLIENTSERVER
1615 else if (STRICMP(argv[i], "--servername") == 0)
1617 if (i == argc - 1)
1618 mainerr_arg_missing((char_u *)argv[i]);
1619 parmp->serverName_arg = (char_u *)argv[++i];
1621 else if (STRICMP(argv[i], "--serverlist") == 0)
1622 parmp->serverArg = TRUE;
1623 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1625 parmp->serverArg = TRUE;
1626 # ifdef FEAT_GUI
1627 if (strstr(argv[i], "-wait") != 0)
1628 /* don't fork() when starting the GUI to edit files ourself */
1629 gui.dofork = FALSE;
1630 # endif
1632 # endif
1634 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1635 # ifdef FEAT_GUI_W32
1636 else if (STRICMP(argv[i], "--windowid") == 0)
1637 # else
1638 else if (STRICMP(argv[i], "--socketid") == 0)
1639 # endif
1641 long_u id;
1642 int count;
1644 if (i == argc - 1)
1645 mainerr_arg_missing((char_u *)argv[i]);
1646 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1647 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1648 else
1649 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1650 if (count != 1)
1651 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1652 else
1653 # ifdef FEAT_GUI_W32
1654 win_socket_id = id;
1655 # else
1656 gtk_socket_id = id;
1657 # endif
1658 i++;
1660 # endif
1661 # ifdef FEAT_GUI_GTK
1662 else if (STRICMP(argv[i], "--echo-wid") == 0)
1663 echo_wid_arg = TRUE;
1664 # endif
1666 #endif
1670 * Scan the command line arguments.
1672 static void
1673 command_line_scan(parmp)
1674 mparm_T *parmp;
1676 int argc = parmp->argc;
1677 char **argv = parmp->argv;
1678 int argv_idx; /* index in argv[n][] */
1679 int had_minmin = FALSE; /* found "--" argument */
1680 int want_argument; /* option argument with argument */
1681 int c;
1682 char_u *p = NULL;
1683 long n;
1685 --argc;
1686 ++argv;
1687 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1688 while (argc > 0)
1691 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1693 if (argv[0][0] == '+' && !had_minmin)
1695 if (parmp->n_commands >= MAX_ARG_CMDS)
1696 mainerr(ME_EXTRA_CMD, NULL);
1697 argv_idx = -1; /* skip to next argument */
1698 if (argv[0][1] == NUL)
1699 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1700 else
1701 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1705 * Optional argument.
1707 else if (argv[0][0] == '-' && !had_minmin)
1709 want_argument = FALSE;
1710 c = argv[0][argv_idx++];
1711 #ifdef VMS
1713 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1714 * and "-/X" as "-X".
1716 if (c == '/')
1718 c = argv[0][argv_idx++];
1719 c = TOUPPER_ASC(c);
1721 else
1722 c = TOLOWER_ASC(c);
1723 #endif
1724 switch (c)
1726 case NUL: /* "vim -" read from stdin */
1727 /* "ex -" silent mode */
1728 if (exmode_active)
1729 silent_mode = TRUE;
1730 else
1732 if (parmp->edit_type != EDIT_NONE)
1733 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1734 parmp->edit_type = EDIT_STDIN;
1735 read_cmd_fd = 2; /* read from stderr instead of stdin */
1737 argv_idx = -1; /* skip to next argument */
1738 break;
1740 case '-': /* "--" don't take any more option arguments */
1741 /* "--help" give help message */
1742 /* "--version" give version message */
1743 /* "--literal" take files literally */
1744 /* "--nofork" don't fork */
1745 /* "--noplugin[s]" skip plugins */
1746 /* "--cmd <cmd>" execute cmd before vimrc */
1747 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1748 usage();
1749 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1751 Columns = 80; /* need to init Columns */
1752 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1753 list_version();
1754 msg_putchar('\n');
1755 msg_didout = FALSE;
1756 mch_exit(0);
1758 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1760 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1761 parmp->literal = TRUE;
1762 #endif
1764 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1766 #ifdef FEAT_GUI
1767 gui.dofork = FALSE; /* don't fork() when starting GUI */
1768 #endif
1770 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1771 p_lpl = FALSE;
1772 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1774 want_argument = TRUE;
1775 argv_idx += 3;
1777 #ifdef FEAT_CLIENTSERVER
1778 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1779 ; /* already processed -- no arg */
1780 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1781 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1783 /* already processed -- snatch the following arg */
1784 if (argc > 1)
1786 --argc;
1787 ++argv;
1790 #endif
1791 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1792 # ifdef FEAT_GUI_GTK
1793 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1794 # else
1795 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1796 # endif
1798 /* already processed -- snatch the following arg */
1799 if (argc > 1)
1801 --argc;
1802 ++argv;
1805 #endif
1806 #ifdef FEAT_GUI_GTK
1807 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1809 /* already processed, skip */
1811 #endif
1812 else
1814 if (argv[0][argv_idx])
1815 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1816 had_minmin = TRUE;
1818 if (!want_argument)
1819 argv_idx = -1; /* skip to next argument */
1820 break;
1822 case 'A': /* "-A" start in Arabic mode */
1823 #ifdef FEAT_ARABIC
1824 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1825 #else
1826 mch_errmsg(_(e_noarabic));
1827 mch_exit(2);
1828 #endif
1829 break;
1831 case 'b': /* "-b" binary mode */
1832 /* Needs to be effective before expanding file names, because
1833 * for Win32 this makes us edit a shortcut file itself,
1834 * instead of the file it links to. */
1835 set_options_bin(curbuf->b_p_bin, 1, 0);
1836 curbuf->b_p_bin = 1; /* binary file I/O */
1837 break;
1839 case 'C': /* "-C" Compatible */
1840 change_compatible(TRUE);
1841 break;
1843 case 'e': /* "-e" Ex mode */
1844 exmode_active = EXMODE_NORMAL;
1845 break;
1847 case 'E': /* "-E" Improved Ex mode */
1848 exmode_active = EXMODE_VIM;
1849 break;
1851 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1852 window directly, not with newcli */
1853 #ifdef FEAT_GUI
1854 gui.dofork = FALSE; /* don't fork() when starting GUI */
1855 #endif
1856 break;
1858 case 'g': /* "-g" start GUI */
1859 main_start_gui();
1860 break;
1862 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1863 #ifdef FEAT_FKMAP
1864 p_fkmap = TRUE;
1865 set_option_value((char_u *)"rl", 1L, NULL, 0);
1866 #else
1867 mch_errmsg(_(e_nofarsi));
1868 mch_exit(2);
1869 #endif
1870 break;
1872 case 'h': /* "-h" give help message */
1873 #ifdef FEAT_GUI_GNOME
1874 /* Tell usage() to exit for "gvim". */
1875 gui.starting = FALSE;
1876 #endif
1877 usage();
1878 break;
1880 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1881 #ifdef FEAT_RIGHTLEFT
1882 p_hkmap = TRUE;
1883 set_option_value((char_u *)"rl", 1L, NULL, 0);
1884 #else
1885 mch_errmsg(_(e_nohebrew));
1886 mch_exit(2);
1887 #endif
1888 break;
1890 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1891 #ifdef FEAT_LISP
1892 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1893 p_sm = TRUE;
1894 #endif
1895 break;
1897 case 'M': /* "-M" no changes or writing of files */
1898 reset_modifiable();
1899 /* FALLTHROUGH */
1901 case 'm': /* "-m" no writing of files */
1902 p_write = FALSE;
1903 break;
1905 case 'y': /* "-y" easy mode */
1906 #ifdef FEAT_GUI
1907 gui.starting = TRUE; /* start GUI a bit later */
1908 #endif
1909 parmp->evim_mode = TRUE;
1910 break;
1912 case 'N': /* "-N" Nocompatible */
1913 change_compatible(FALSE);
1914 break;
1916 case 'n': /* "-n" no swap file */
1917 parmp->no_swap_file = TRUE;
1918 break;
1920 case 'p': /* "-p[N]" open N tab pages */
1921 #if defined(TARGET_API_MAC_OSX) && !defined(FEAT_GUI_MACVIM)
1922 /* For some reason on MacOS X, an argument like:
1923 -psn_0_10223617 is passed in when invoke from Finder
1924 or with the 'open' command */
1925 if (argv[0][argv_idx] == 's')
1927 argv_idx = -1; /* bypass full -psn */
1928 main_start_gui();
1929 break;
1931 #endif
1932 #ifdef FEAT_WINDOWS
1933 /* default is 0: open window for each file */
1934 parmp->window_count = get_number_arg((char_u *)argv[0],
1935 &argv_idx, 0);
1936 parmp->window_layout = WIN_TABS;
1937 #endif
1938 break;
1940 case 'o': /* "-o[N]" open N horizontal split windows */
1941 #ifdef FEAT_WINDOWS
1942 /* default is 0: open window for each file */
1943 parmp->window_count = get_number_arg((char_u *)argv[0],
1944 &argv_idx, 0);
1945 parmp->window_layout = WIN_HOR;
1946 #endif
1947 break;
1949 case 'O': /* "-O[N]" open N vertical split windows */
1950 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1951 /* default is 0: open window for each file */
1952 parmp->window_count = get_number_arg((char_u *)argv[0],
1953 &argv_idx, 0);
1954 parmp->window_layout = WIN_VER;
1955 #endif
1956 break;
1958 #ifdef FEAT_QUICKFIX
1959 case 'q': /* "-q" QuickFix mode */
1960 if (parmp->edit_type != EDIT_NONE)
1961 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1962 parmp->edit_type = EDIT_QF;
1963 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1965 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1966 argv_idx = -1;
1968 else if (argc > 1) /* "-q {errorfile}" */
1969 want_argument = TRUE;
1970 break;
1971 #endif
1973 case 'R': /* "-R" readonly mode */
1974 readonlymode = TRUE;
1975 curbuf->b_p_ro = TRUE;
1976 p_uc = 10000; /* don't update very often */
1977 break;
1979 case 'r': /* "-r" recovery mode */
1980 case 'L': /* "-L" recovery mode */
1981 recoverymode = 1;
1982 break;
1984 case 's':
1985 if (exmode_active) /* "-s" silent (batch) mode */
1986 silent_mode = TRUE;
1987 else /* "-s {scriptin}" read from script file */
1988 want_argument = TRUE;
1989 break;
1991 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1992 if (parmp->edit_type != EDIT_NONE)
1993 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1994 parmp->edit_type = EDIT_TAG;
1995 if (argv[0][argv_idx]) /* "-t{tag}" */
1997 parmp->tagname = (char_u *)argv[0] + argv_idx;
1998 argv_idx = -1;
2000 else /* "-t {tag}" */
2001 want_argument = TRUE;
2002 break;
2004 #ifdef FEAT_EVAL
2005 case 'D': /* "-D" Debugging */
2006 parmp->use_debug_break_level = 9999;
2007 break;
2008 #endif
2009 #ifdef FEAT_DIFF
2010 case 'd': /* "-d" 'diff' */
2011 # ifdef AMIGA
2012 /* check for "-dev {device}" */
2013 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2014 want_argument = TRUE;
2015 else
2016 # endif
2017 parmp->diff_mode = TRUE;
2018 break;
2019 #endif
2020 case 'V': /* "-V{N}" Verbose level */
2021 /* default is 10: a little bit verbose */
2022 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2023 if (argv[0][argv_idx] != NUL)
2025 set_option_value((char_u *)"verbosefile", 0L,
2026 (char_u *)argv[0] + argv_idx, 0);
2027 argv_idx = (int)STRLEN(argv[0]);
2029 break;
2031 case 'v': /* "-v" Vi-mode (as if called "vi") */
2032 exmode_active = 0;
2033 #ifdef FEAT_GUI
2034 gui.starting = FALSE; /* don't start GUI */
2035 #endif
2036 break;
2038 case 'w': /* "-w{number}" set window height */
2039 /* "-w {scriptout}" write to script */
2040 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2042 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2043 set_option_value((char_u *)"window", n, NULL, 0);
2044 break;
2046 want_argument = TRUE;
2047 break;
2049 #ifdef FEAT_CRYPT
2050 case 'x': /* "-x" encrypted reading/writing of files */
2051 parmp->ask_for_key = TRUE;
2052 break;
2053 #endif
2055 case 'X': /* "-X" don't connect to X server */
2056 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2057 x_no_connect = TRUE;
2058 #endif
2059 break;
2061 case 'Z': /* "-Z" restricted mode */
2062 restricted = TRUE;
2063 break;
2065 case 'c': /* "-c{command}" or "-c {command}" execute
2066 command */
2067 if (argv[0][argv_idx] != NUL)
2069 if (parmp->n_commands >= MAX_ARG_CMDS)
2070 mainerr(ME_EXTRA_CMD, NULL);
2071 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2072 + argv_idx;
2073 argv_idx = -1;
2074 break;
2076 /*FALLTHROUGH*/
2077 case 'S': /* "-S {file}" execute Vim script */
2078 case 'i': /* "-i {viminfo}" use for viminfo */
2079 #ifndef FEAT_DIFF
2080 case 'd': /* "-d {device}" device (for Amiga) */
2081 #endif
2082 case 'T': /* "-T {terminal}" terminal name */
2083 case 'u': /* "-u {vimrc}" vim inits file */
2084 case 'U': /* "-U {gvimrc}" gvim inits file */
2085 case 'W': /* "-W {scriptout}" overwrite */
2086 #ifdef FEAT_GUI_W32
2087 case 'P': /* "-P {parent title}" MDI parent */
2088 #endif
2089 want_argument = TRUE;
2090 break;
2092 default:
2093 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2097 * Handle option arguments with argument.
2099 if (want_argument)
2102 * Check for garbage immediately after the option letter.
2104 if (argv[0][argv_idx] != NUL)
2105 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2107 --argc;
2108 if (argc < 1 && c != 'S')
2109 mainerr_arg_missing((char_u *)argv[0]);
2110 ++argv;
2111 argv_idx = -1;
2113 switch (c)
2115 case 'c': /* "-c {command}" execute command */
2116 case 'S': /* "-S {file}" execute Vim script */
2117 if (parmp->n_commands >= MAX_ARG_CMDS)
2118 mainerr(ME_EXTRA_CMD, NULL);
2119 if (c == 'S')
2121 char *a;
2123 if (argc < 1)
2124 /* "-S" without argument: use default session file
2125 * name. */
2126 a = SESSION_FILE;
2127 else if (argv[0][0] == '-')
2129 /* "-S" followed by another option: use default
2130 * session file name. */
2131 a = SESSION_FILE;
2132 ++argc;
2133 --argv;
2135 else
2136 a = argv[0];
2137 p = alloc((unsigned)(STRLEN(a) + 4));
2138 if (p == NULL)
2139 mch_exit(2);
2140 sprintf((char *)p, "so %s", a);
2141 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2142 parmp->commands[parmp->n_commands++] = p;
2144 else
2145 parmp->commands[parmp->n_commands++] =
2146 (char_u *)argv[0];
2147 break;
2149 case '-': /* "--cmd {command}" execute command */
2150 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2151 mainerr(ME_EXTRA_CMD, NULL);
2152 parmp->pre_commands[parmp->n_pre_commands++] =
2153 (char_u *)argv[0];
2154 break;
2156 /* case 'd': -d {device} is handled in mch_check_win() for the
2157 * Amiga */
2159 #ifdef FEAT_QUICKFIX
2160 case 'q': /* "-q {errorfile}" QuickFix mode */
2161 parmp->use_ef = (char_u *)argv[0];
2162 break;
2163 #endif
2165 case 'i': /* "-i {viminfo}" use for viminfo */
2166 use_viminfo = (char_u *)argv[0];
2167 break;
2169 case 's': /* "-s {scriptin}" read from script file */
2170 if (scriptin[0] != NULL)
2172 scripterror:
2173 mch_errmsg(_("Attempt to open script file again: \""));
2174 mch_errmsg(argv[-1]);
2175 mch_errmsg(" ");
2176 mch_errmsg(argv[0]);
2177 mch_errmsg("\"\n");
2178 mch_exit(2);
2180 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2182 mch_errmsg(_("Cannot open for reading: \""));
2183 mch_errmsg(argv[0]);
2184 mch_errmsg("\"\n");
2185 mch_exit(2);
2187 if (save_typebuf() == FAIL)
2188 mch_exit(2); /* out of memory */
2189 break;
2191 case 't': /* "-t {tag}" */
2192 parmp->tagname = (char_u *)argv[0];
2193 break;
2195 case 'T': /* "-T {terminal}" terminal name */
2197 * The -T term argument is always available and when
2198 * HAVE_TERMLIB is supported it overrides the environment
2199 * variable TERM.
2201 #ifdef FEAT_GUI
2202 if (term_is_gui((char_u *)argv[0]))
2203 gui.starting = TRUE; /* start GUI a bit later */
2204 else
2205 #endif
2206 parmp->term = (char_u *)argv[0];
2207 break;
2209 case 'u': /* "-u {vimrc}" vim inits file */
2210 parmp->use_vimrc = (char_u *)argv[0];
2211 break;
2213 case 'U': /* "-U {gvimrc}" gvim inits file */
2214 #ifdef FEAT_GUI
2215 use_gvimrc = (char_u *)argv[0];
2216 #endif
2217 break;
2219 case 'w': /* "-w {nr}" 'window' value */
2220 /* "-w {scriptout}" append to script file */
2221 if (vim_isdigit(*((char_u *)argv[0])))
2223 argv_idx = 0;
2224 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2225 set_option_value((char_u *)"window", n, NULL, 0);
2226 argv_idx = -1;
2227 break;
2229 /*FALLTHROUGH*/
2230 case 'W': /* "-W {scriptout}" overwrite script file */
2231 if (scriptout != NULL)
2232 goto scripterror;
2233 if ((scriptout = mch_fopen(argv[0],
2234 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2236 mch_errmsg(_("Cannot open for script output: \""));
2237 mch_errmsg(argv[0]);
2238 mch_errmsg("\"\n");
2239 mch_exit(2);
2241 break;
2243 #ifdef FEAT_GUI_W32
2244 case 'P': /* "-P {parent title}" MDI parent */
2245 gui_mch_set_parent(argv[0]);
2246 break;
2247 #endif
2253 * File name argument.
2255 else
2257 argv_idx = -1; /* skip to next argument */
2259 /* Check for only one type of editing. */
2260 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2261 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2262 parmp->edit_type = EDIT_FILE;
2264 #ifdef MSWIN
2265 /* Remember if the argument was a full path before changing
2266 * slashes to backslashes. */
2267 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2268 parmp->full_path = TRUE;
2269 #endif
2271 /* Add the file to the global argument list. */
2272 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2273 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2274 mch_exit(2);
2275 #ifdef FEAT_DIFF
2276 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2277 && !mch_isdir(alist_name(&GARGLIST[0])))
2279 char_u *r;
2281 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2282 if (r != NULL)
2284 vim_free(p);
2285 p = r;
2288 #endif
2289 #if defined(__CYGWIN32__) && !defined(WIN32)
2291 * If vim is invoked by non-Cygwin tools, convert away any
2292 * DOS paths, so things like .swp files are created correctly.
2293 * Look for evidence of non-Cygwin paths before we bother.
2294 * This is only for when using the Unix files.
2296 if (strpbrk(p, "\\:") != NULL)
2298 char posix_path[PATH_MAX];
2300 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2301 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2302 # else
2303 cygwin_conv_to_posix_path(p, posix_path);
2304 # endif
2305 vim_free(p);
2306 p = vim_strsave(posix_path);
2307 if (p == NULL)
2308 mch_exit(2);
2310 #endif
2312 #ifdef USE_FNAME_CASE
2313 /* Make the case of the file name match the actual file. */
2314 fname_case(p, 0);
2315 #endif
2317 alist_add(&global_alist, p,
2318 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2319 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2320 #else
2321 2 /* add buffer number now and use curbuf */
2322 #endif
2325 #if defined(FEAT_MBYTE) && defined(WIN32)
2327 /* Remember this argument has been added to the argument list.
2328 * Needed when 'encoding' is changed. */
2329 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2330 # ifdef FEAT_DIFF
2331 parmp->diff_mode
2332 # else
2333 FALSE
2334 # endif
2337 #endif
2341 * If there are no more letters after the current "-", go to next
2342 * argument. argv_idx is set to -1 when the current argument is to be
2343 * skipped.
2345 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2347 --argc;
2348 ++argv;
2349 argv_idx = 1;
2353 #ifdef FEAT_EVAL
2354 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2355 * one. */
2356 if (parmp->n_commands > 0)
2358 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2359 if (p != NULL)
2361 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2362 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2363 vim_free(p);
2366 #endif
2370 * Print a warning if stdout is not a terminal.
2371 * When starting in Ex mode and commands come from a file, set Silent mode.
2373 static void
2374 check_tty(parmp)
2375 mparm_T *parmp;
2377 int input_isatty; /* is active input a terminal? */
2379 input_isatty = mch_input_isatty();
2380 if (exmode_active)
2382 if (!input_isatty)
2383 silent_mode = TRUE;
2385 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2386 #ifdef FEAT_GUI
2387 /* don't want the delay when started from the desktop */
2388 && !gui.starting
2389 #endif
2392 #ifdef NBDEBUG
2394 * This shouldn't be necessary. But if I run netbeans with the log
2395 * output coming to the console and XOpenDisplay fails, I get vim
2396 * trying to start with input/output to my console tty. This fills my
2397 * input buffer so fast I can't even kill the process in under 2
2398 * minutes (and it beeps continuously the whole time :-)
2400 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2402 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2403 exit(1);
2405 #endif
2406 if (!parmp->stdout_isatty)
2407 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2408 if (!input_isatty)
2409 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2410 out_flush();
2411 if (scriptin[0] == NULL)
2412 ui_delay(2000L, TRUE);
2413 TIME_MSG("Warning delay");
2418 * Read text from stdin.
2420 static void
2421 read_stdin()
2423 int i;
2425 #if defined(HAS_SWAP_EXISTS_ACTION)
2426 /* When getting the ATTENTION prompt here, use a dialog */
2427 swap_exists_action = SEA_DIALOG;
2428 #endif
2429 no_wait_return = TRUE;
2430 i = msg_didany;
2431 set_buflisted(TRUE);
2432 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2433 no_wait_return = FALSE;
2434 msg_didany = i;
2435 TIME_MSG("reading stdin");
2436 #if defined(HAS_SWAP_EXISTS_ACTION)
2437 check_swap_exists_action();
2438 #endif
2439 #if !(defined(AMIGA) || defined(MACOS))
2441 * Close stdin and dup it from stderr. Required for GPM to work
2442 * properly, and for running external commands.
2443 * Is there any other system that cannot do this?
2445 close(0);
2446 dup(2);
2447 #endif
2451 * Create the requested number of windows and edit buffers in them.
2452 * Also does recovery if "recoverymode" set.
2454 /*ARGSUSED*/
2455 static void
2456 create_windows(parmp)
2457 mparm_T *parmp;
2459 #ifdef FEAT_WINDOWS
2460 int dorewind;
2461 int done = 0;
2464 * Create the number of windows that was requested.
2466 if (parmp->window_count == -1) /* was not set */
2467 parmp->window_count = 1;
2468 if (parmp->window_count == 0)
2469 parmp->window_count = GARGCOUNT;
2470 if (parmp->window_count > 1)
2472 /* Don't change the windows if there was a command in .vimrc that
2473 * already split some windows */
2474 if (parmp->window_layout == 0)
2475 parmp->window_layout = WIN_HOR;
2476 if (parmp->window_layout == WIN_TABS)
2478 parmp->window_count = make_tabpages(parmp->window_count);
2479 TIME_MSG("making tab pages");
2481 else if (firstwin->w_next == NULL)
2483 parmp->window_count = make_windows(parmp->window_count,
2484 parmp->window_layout == WIN_VER);
2485 TIME_MSG("making windows");
2487 else
2488 parmp->window_count = win_count();
2490 else
2491 parmp->window_count = 1;
2492 #endif
2494 if (recoverymode) /* do recover */
2496 msg_scroll = TRUE; /* scroll message up */
2497 ml_recover();
2498 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2499 getout(1);
2500 do_modelines(0); /* do modelines */
2502 else
2505 * Open a buffer for windows that don't have one yet.
2506 * Commands in the .vimrc might have loaded a file or split the window.
2507 * Watch out for autocommands that delete a window.
2509 #ifdef FEAT_AUTOCMD
2511 * Don't execute Win/Buf Enter/Leave autocommands here
2513 ++autocmd_no_enter;
2514 ++autocmd_no_leave;
2515 #endif
2516 #ifdef FEAT_WINDOWS
2517 dorewind = TRUE;
2518 while (done++ < 1000)
2520 if (dorewind)
2522 if (parmp->window_layout == WIN_TABS)
2523 goto_tabpage(1);
2524 else
2525 curwin = firstwin;
2527 else if (parmp->window_layout == WIN_TABS)
2529 if (curtab->tp_next == NULL)
2530 break;
2531 goto_tabpage(0);
2533 else
2535 if (curwin->w_next == NULL)
2536 break;
2537 curwin = curwin->w_next;
2539 dorewind = FALSE;
2540 #endif
2541 curbuf = curwin->w_buffer;
2542 if (curbuf->b_ml.ml_mfp == NULL)
2544 #ifdef FEAT_FOLDING
2545 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2546 if (p_fdls >= 0)
2547 curwin->w_p_fdl = p_fdls;
2548 #endif
2549 #if defined(HAS_SWAP_EXISTS_ACTION)
2550 /* When getting the ATTENTION prompt here, use a dialog */
2551 swap_exists_action = SEA_DIALOG;
2552 #endif
2553 set_buflisted(TRUE);
2554 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2556 #if defined(HAS_SWAP_EXISTS_ACTION)
2557 if (swap_exists_action == SEA_QUIT)
2559 if (got_int || only_one_window())
2561 /* abort selected or quit and only one window */
2562 did_emsg = FALSE; /* avoid hit-enter prompt */
2563 getout(1);
2565 /* We can't close the window, it would disturb what
2566 * happens next. Clear the file name and set the arg
2567 * index to -1 to delete it later. */
2568 setfname(curbuf, NULL, NULL, FALSE);
2569 curwin->w_arg_idx = -1;
2570 swap_exists_action = SEA_NONE;
2572 else
2573 handle_swap_exists(NULL);
2574 #endif
2575 #ifdef FEAT_AUTOCMD
2576 dorewind = TRUE; /* start again */
2577 #endif
2579 #ifdef FEAT_WINDOWS
2580 ui_breakcheck();
2581 if (got_int)
2583 (void)vgetc(); /* only break the file loading, not the rest */
2584 break;
2587 #endif
2588 #ifdef FEAT_WINDOWS
2589 if (parmp->window_layout == WIN_TABS)
2590 goto_tabpage(1);
2591 else
2592 curwin = firstwin;
2593 curbuf = curwin->w_buffer;
2594 #endif
2595 #ifdef FEAT_AUTOCMD
2596 --autocmd_no_enter;
2597 --autocmd_no_leave;
2598 #endif
2602 #ifdef FEAT_WINDOWS
2604 * If opened more than one window, start editing files in the other
2605 * windows. make_windows() has already opened the windows.
2607 static void
2608 edit_buffers(parmp)
2609 mparm_T *parmp;
2611 int arg_idx; /* index in argument list */
2612 int i;
2613 int advance = TRUE;
2615 # ifdef FEAT_AUTOCMD
2617 * Don't execute Win/Buf Enter/Leave autocommands here
2619 ++autocmd_no_enter;
2620 ++autocmd_no_leave;
2621 # endif
2623 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2624 if (curwin->w_arg_idx == -1)
2626 win_close(curwin, TRUE);
2627 advance = FALSE;
2630 arg_idx = 1;
2631 for (i = 1; i < parmp->window_count; ++i)
2633 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2634 if (curwin->w_arg_idx == -1)
2636 ++arg_idx;
2637 win_close(curwin, TRUE);
2638 advance = FALSE;
2639 continue;
2642 if (advance)
2644 if (parmp->window_layout == WIN_TABS)
2646 if (curtab->tp_next == NULL) /* just checking */
2647 break;
2648 goto_tabpage(0);
2650 else
2652 if (curwin->w_next == NULL) /* just checking */
2653 break;
2654 win_enter(curwin->w_next, FALSE);
2657 advance = TRUE;
2659 /* Only open the file if there is no file in this window yet (that can
2660 * happen when .vimrc contains ":sall"). */
2661 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2663 curwin->w_arg_idx = arg_idx;
2664 /* Edit file from arg list, if there is one. When "Quit" selected
2665 * at the ATTENTION prompt close the window. */
2666 # ifdef HAS_SWAP_EXISTS_ACTION
2667 swap_exists_did_quit = FALSE;
2668 # endif
2669 (void)do_ecmd(0, arg_idx < GARGCOUNT
2670 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2671 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
2672 # ifdef HAS_SWAP_EXISTS_ACTION
2673 if (swap_exists_did_quit)
2675 /* abort or quit selected */
2676 if (got_int || only_one_window())
2678 /* abort selected and only one window */
2679 did_emsg = FALSE; /* avoid hit-enter prompt */
2680 getout(1);
2682 win_close(curwin, TRUE);
2683 advance = FALSE;
2685 # endif
2686 if (arg_idx == GARGCOUNT - 1)
2687 arg_had_last = TRUE;
2688 ++arg_idx;
2690 ui_breakcheck();
2691 if (got_int)
2693 (void)vgetc(); /* only break the file loading, not the rest */
2694 break;
2698 if (parmp->window_layout == WIN_TABS)
2699 goto_tabpage(1);
2700 # ifdef FEAT_AUTOCMD
2701 --autocmd_no_enter;
2702 # endif
2703 win_enter(firstwin, FALSE); /* back to first window */
2704 # ifdef FEAT_AUTOCMD
2705 --autocmd_no_leave;
2706 # endif
2707 TIME_MSG("editing files in windows");
2708 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2709 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2711 #endif /* FEAT_WINDOWS */
2714 * Execute the commands from --cmd arguments "cmds[cnt]".
2716 static void
2717 exe_pre_commands(parmp)
2718 mparm_T *parmp;
2720 char_u **cmds = parmp->pre_commands;
2721 int cnt = parmp->n_pre_commands;
2722 int i;
2724 if (cnt > 0)
2726 curwin->w_cursor.lnum = 0; /* just in case.. */
2727 sourcing_name = (char_u *)_("pre-vimrc command line");
2728 # ifdef FEAT_EVAL
2729 current_SID = SID_CMDARG;
2730 # endif
2731 for (i = 0; i < cnt; ++i)
2732 do_cmdline_cmd(cmds[i]);
2733 sourcing_name = NULL;
2734 # ifdef FEAT_EVAL
2735 current_SID = 0;
2736 # endif
2737 TIME_MSG("--cmd commands");
2742 * Execute "+", "-c" and "-S" arguments.
2744 static void
2745 exe_commands(parmp)
2746 mparm_T *parmp;
2748 int i;
2751 * We start commands on line 0, make "vim +/pat file" match a
2752 * pattern on line 1. But don't move the cursor when an autocommand
2753 * with g`" was used.
2755 msg_scroll = TRUE;
2756 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2757 curwin->w_cursor.lnum = 0;
2758 sourcing_name = (char_u *)"command line";
2759 #ifdef FEAT_EVAL
2760 current_SID = SID_CARG;
2761 #endif
2762 for (i = 0; i < parmp->n_commands; ++i)
2764 do_cmdline_cmd(parmp->commands[i]);
2765 if (parmp->cmds_tofree[i])
2766 vim_free(parmp->commands[i]);
2768 sourcing_name = NULL;
2769 #ifdef FEAT_EVAL
2770 current_SID = 0;
2771 #endif
2772 if (curwin->w_cursor.lnum == 0)
2773 curwin->w_cursor.lnum = 1;
2775 if (!exmode_active)
2776 msg_scroll = FALSE;
2778 #ifdef FEAT_QUICKFIX
2779 /* When started with "-q errorfile" jump to first error again. */
2780 if (parmp->edit_type == EDIT_QF)
2781 qf_jump(NULL, 0, 0, FALSE);
2782 #endif
2783 TIME_MSG("executing command arguments");
2787 * Source startup scripts.
2789 static void
2790 source_startup_scripts(parmp)
2791 mparm_T *parmp;
2793 int i;
2796 * For "evim" source evim.vim first of all, so that the user can overrule
2797 * any things he doesn't like.
2799 if (parmp->evim_mode)
2801 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2802 TIME_MSG("source evim file");
2806 * If -u argument given, use only the initializations from that file and
2807 * nothing else.
2809 if (parmp->use_vimrc != NULL)
2811 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2812 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2814 #ifdef FEAT_GUI
2815 if (use_gvimrc == NULL) /* don't load gvimrc either */
2816 use_gvimrc = parmp->use_vimrc;
2817 #endif
2818 if (parmp->use_vimrc[2] == 'N')
2819 p_lpl = FALSE; /* don't load plugins either */
2821 else
2823 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2824 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2827 else if (!silent_mode)
2829 #ifdef AMIGA
2830 struct Process *proc = (struct Process *)FindTask(0L);
2831 APTR save_winptr = proc->pr_WindowPtr;
2833 /* Avoid a requester here for a volume that doesn't exist. */
2834 proc->pr_WindowPtr = (APTR)-1L;
2835 #endif
2838 * Get system wide defaults, if the file name is defined.
2840 #ifdef SYS_VIMRC_FILE
2841 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2842 #endif
2843 #if defined(MACOS_X) && !defined(FEAT_GUI_MACVIM)
2844 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2845 #endif
2848 * Try to read initialization commands from the following places:
2849 * - environment variable VIMINIT
2850 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2851 * - second user vimrc file ($VIM/.vimrc for Dos)
2852 * - environment variable EXINIT
2853 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2854 * - second user exrc file ($VIM/.exrc for Dos)
2855 * The first that exists is used, the rest is ignored.
2857 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2859 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2860 #ifdef USR_VIMRC_FILE2
2861 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2862 DOSO_VIMRC) == FAIL
2863 #endif
2864 #ifdef USR_VIMRC_FILE3
2865 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2866 DOSO_VIMRC) == FAIL
2867 #endif
2868 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2869 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2871 #ifdef USR_EXRC_FILE2
2872 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2873 #endif
2878 * Read initialization commands from ".vimrc" or ".exrc" in current
2879 * directory. This is only done if the 'exrc' option is set.
2880 * Because of security reasons we disallow shell and write commands
2881 * now, except for unix if the file is owned by the user or 'secure'
2882 * option has been reset in environment of global ".exrc" or ".vimrc".
2883 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2884 * SYS_VIMRC_FILE.
2886 if (p_exrc)
2888 #if defined(UNIX) || defined(VMS)
2889 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2890 if (!file_owned(VIMRC_FILE))
2891 #endif
2892 secure = p_secure;
2894 i = FAIL;
2895 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2896 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2897 #ifdef USR_VIMRC_FILE2
2898 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2899 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2900 #endif
2901 #ifdef USR_VIMRC_FILE3
2902 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2903 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2904 #endif
2905 #ifdef SYS_VIMRC_FILE
2906 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2907 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2908 #endif
2910 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2912 if (i == FAIL)
2914 #if defined(UNIX) || defined(VMS)
2915 /* if ".exrc" is not owned by user set 'secure' mode */
2916 if (!file_owned(EXRC_FILE))
2917 secure = p_secure;
2918 else
2919 secure = 0;
2920 #endif
2921 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2922 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2923 #ifdef USR_EXRC_FILE2
2924 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2925 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2926 #endif
2928 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2931 if (secure == 2)
2932 need_wait_return = TRUE;
2933 secure = 0;
2934 #ifdef AMIGA
2935 proc->pr_WindowPtr = save_winptr;
2936 #endif
2938 TIME_MSG("sourcing vimrc file(s)");
2942 * Setup to start using the GUI. Exit with an error when not available.
2944 static void
2945 main_start_gui()
2947 #ifdef FEAT_GUI
2948 gui.starting = TRUE; /* start GUI a bit later */
2949 #else
2950 mch_errmsg(_(e_nogvim));
2951 mch_errmsg("\n");
2952 mch_exit(2);
2953 #endif
2957 * Get an environment variable, and execute it as Ex commands.
2958 * Returns FAIL if the environment variable was not executed, OK otherwise.
2961 process_env(env, is_viminit)
2962 char_u *env;
2963 int is_viminit; /* when TRUE, called for VIMINIT */
2965 char_u *initstr;
2966 char_u *save_sourcing_name;
2967 linenr_T save_sourcing_lnum;
2968 #ifdef FEAT_EVAL
2969 scid_T save_sid;
2970 #endif
2972 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2974 if (is_viminit)
2975 vimrc_found(NULL, NULL);
2976 save_sourcing_name = sourcing_name;
2977 save_sourcing_lnum = sourcing_lnum;
2978 sourcing_name = env;
2979 sourcing_lnum = 0;
2980 #ifdef FEAT_EVAL
2981 save_sid = current_SID;
2982 current_SID = SID_ENV;
2983 #endif
2984 do_cmdline_cmd(initstr);
2985 sourcing_name = save_sourcing_name;
2986 sourcing_lnum = save_sourcing_lnum;
2987 #ifdef FEAT_EVAL
2988 current_SID = save_sid;;
2989 #endif
2990 return OK;
2992 return FAIL;
2995 #if defined(UNIX) || defined(VMS)
2997 * Return TRUE if we are certain the user owns the file "fname".
2998 * Used for ".vimrc" and ".exrc".
2999 * Use both stat() and lstat() for extra security.
3001 static int
3002 file_owned(fname)
3003 char *fname;
3005 struct stat s;
3006 # ifdef UNIX
3007 uid_t uid = getuid();
3008 # else /* VMS */
3009 uid_t uid = ((getgid() << 16) | getuid());
3010 # endif
3012 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3013 # ifdef HAVE_LSTAT
3014 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3015 # endif
3018 #endif
3021 * Give an error message main_errors["n"] and exit.
3023 static void
3024 mainerr(n, str)
3025 int n; /* one of the ME_ defines */
3026 char_u *str; /* extra argument or NULL */
3028 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3029 reset_signals(); /* kill us with CTRL-C here, if you like */
3030 #endif
3032 mch_errmsg(longVersion);
3033 mch_errmsg("\n");
3034 mch_errmsg(_(main_errors[n]));
3035 if (str != NULL)
3037 mch_errmsg(": \"");
3038 mch_errmsg((char *)str);
3039 mch_errmsg("\"");
3041 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
3043 mch_exit(1);
3046 void
3047 mainerr_arg_missing(str)
3048 char_u *str;
3050 mainerr(ME_ARG_MISSING, str);
3054 * print a message with three spaces prepended and '\n' appended.
3056 static void
3057 main_msg(s)
3058 char *s;
3060 mch_msg(" ");
3061 mch_msg(s);
3062 mch_msg("\n");
3066 * Print messages for "vim -h" or "vim --help" and exit.
3068 static void
3069 usage()
3071 int i;
3072 static char *(use[]) =
3074 N_("[file ..] edit specified file(s)"),
3075 N_("- read text from stdin"),
3076 N_("-t tag edit file where tag is defined"),
3077 #ifdef FEAT_QUICKFIX
3078 N_("-q [errorfile] edit file with first error")
3079 #endif
3082 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3083 reset_signals(); /* kill us with CTRL-C here, if you like */
3084 #endif
3086 mch_msg(longVersion);
3087 mch_msg(_("\n\nusage:"));
3088 for (i = 0; ; ++i)
3090 mch_msg(_(" vim [arguments] "));
3091 mch_msg(_(use[i]));
3092 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3093 break;
3094 mch_msg(_("\n or:"));
3096 #ifdef VMS
3097 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3098 #endif
3100 mch_msg(_("\n\nArguments:\n"));
3101 main_msg(_("--\t\t\tOnly file names after this"));
3102 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3103 main_msg(_("--literal\t\tDon't expand wildcards"));
3104 #endif
3105 #ifdef FEAT_OLE
3106 main_msg(_("-register\t\tRegister this gvim for OLE"));
3107 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3108 #endif
3109 #ifdef FEAT_GUI
3110 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3111 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3112 #endif
3113 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3114 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3115 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3116 #ifdef FEAT_DIFF
3117 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3118 #endif
3119 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3120 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3121 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3122 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3123 main_msg(_("-M\t\t\tModifications in text not allowed"));
3124 main_msg(_("-b\t\t\tBinary mode"));
3125 #ifdef FEAT_LISP
3126 main_msg(_("-l\t\t\tLisp mode"));
3127 #endif
3128 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3129 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3130 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3131 #ifdef FEAT_EVAL
3132 main_msg(_("-D\t\t\tDebugging mode"));
3133 #endif
3134 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3135 main_msg(_("-r\t\t\tList swap files and exit"));
3136 main_msg(_("-r (with file name)\tRecover crashed session"));
3137 main_msg(_("-L\t\t\tSame as -r"));
3138 #ifdef AMIGA
3139 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3140 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3141 #endif
3142 #ifdef FEAT_ARABIC
3143 main_msg(_("-A\t\t\tstart in Arabic mode"));
3144 #endif
3145 #ifdef FEAT_RIGHTLEFT
3146 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3147 #endif
3148 #ifdef FEAT_FKMAP
3149 main_msg(_("-F\t\t\tStart in Farsi mode"));
3150 #endif
3151 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3152 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3153 #ifdef FEAT_GUI
3154 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3155 #endif
3156 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3157 #ifdef FEAT_WINDOWS
3158 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3159 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3160 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3161 #endif
3162 main_msg(_("+\t\t\tStart at end of file"));
3163 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3164 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3165 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3166 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3167 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3168 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3169 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3170 #ifdef FEAT_CRYPT
3171 main_msg(_("-x\t\t\tEdit encrypted files"));
3172 #endif
3173 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3174 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3175 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3176 # endif
3177 main_msg(_("-X\t\t\tDo not connect to X server"));
3178 #endif
3179 #ifdef FEAT_CLIENTSERVER
3180 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3181 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3182 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3183 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3184 # ifdef FEAT_WINDOWS
3185 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3186 # endif
3187 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3188 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3189 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3190 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3191 #endif
3192 #ifdef FEAT_VIMINFO
3193 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3194 #endif
3195 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3196 main_msg(_("--version\t\tPrint version information and exit"));
3198 #ifdef FEAT_GUI_X11
3199 # ifdef FEAT_GUI_MOTIF
3200 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3201 # else
3202 # ifdef FEAT_GUI_ATHENA
3203 # ifdef FEAT_GUI_NEXTAW
3204 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3205 # else
3206 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3207 # endif
3208 # endif
3209 # endif
3210 main_msg(_("-display <display>\tRun vim on <display>"));
3211 main_msg(_("-iconic\t\tStart vim iconified"));
3212 # if 0
3213 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3214 mch_msg(_("\t\t\t (Unimplemented)\n"));
3215 # endif
3216 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3217 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3218 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3219 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3220 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3221 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3222 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3223 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3224 # ifdef FEAT_GUI_ATHENA
3225 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3226 # endif
3227 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3228 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3229 main_msg(_("-xrm <resource>\tSet the specified resource"));
3230 #endif /* FEAT_GUI_X11 */
3231 #if defined(FEAT_GUI) && defined(RISCOS)
3232 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3233 main_msg(_("--columns <number>\tInitial width of window in columns"));
3234 main_msg(_("--rows <number>\tInitial height of window in rows"));
3235 #endif
3236 #ifdef FEAT_GUI_GTK
3237 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3238 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3239 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3240 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3241 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3242 # ifdef HAVE_GTK2
3243 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3244 # endif
3245 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3246 #endif
3247 #ifdef FEAT_GUI_W32
3248 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3249 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3250 #endif
3252 #ifdef FEAT_GUI_GNOME
3253 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3254 if (gui.starting)
3255 mch_msg("\n");
3256 else
3257 #endif
3258 mch_exit(0);
3261 #if defined(HAS_SWAP_EXISTS_ACTION)
3263 * Check the result of the ATTENTION dialog:
3264 * When "Quit" selected, exit Vim.
3265 * When "Recover" selected, recover the file.
3267 static void
3268 check_swap_exists_action()
3270 if (swap_exists_action == SEA_QUIT)
3271 getout(1);
3272 handle_swap_exists(NULL);
3274 #endif
3276 #if defined(STARTUPTIME) || defined(PROTO)
3277 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3279 static struct timeval prev_timeval;
3282 * Save the previous time before doing something that could nest.
3283 * set "*tv_rel" to the time elapsed so far.
3285 void
3286 time_push(tv_rel, tv_start)
3287 void *tv_rel, *tv_start;
3289 *((struct timeval *)tv_rel) = prev_timeval;
3290 gettimeofday(&prev_timeval, NULL);
3291 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3292 - ((struct timeval *)tv_rel)->tv_usec;
3293 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3294 - ((struct timeval *)tv_rel)->tv_sec;
3295 if (((struct timeval *)tv_rel)->tv_usec < 0)
3297 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3298 --((struct timeval *)tv_rel)->tv_sec;
3300 *(struct timeval *)tv_start = prev_timeval;
3304 * Compute the previous time after doing something that could nest.
3305 * Subtract "*tp" from prev_timeval;
3306 * Note: The arguments are (void *) to avoid trouble with systems that don't
3307 * have struct timeval.
3309 void
3310 time_pop(tp)
3311 void *tp; /* actually (struct timeval *) */
3313 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3314 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3315 if (prev_timeval.tv_usec < 0)
3317 prev_timeval.tv_usec += 1000000;
3318 --prev_timeval.tv_sec;
3322 static void
3323 time_diff(then, now)
3324 struct timeval *then;
3325 struct timeval *now;
3327 long usec;
3328 long msec;
3330 usec = now->tv_usec - then->tv_usec;
3331 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3332 usec = usec % 1000L;
3333 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3336 void
3337 time_msg(msg, tv_start)
3338 char *msg;
3339 void *tv_start; /* only for do_source: start time; actually
3340 (struct timeval *) */
3342 static struct timeval start;
3343 struct timeval now;
3345 if (time_fd != NULL)
3347 if (strstr(msg, "STARTING") != NULL)
3349 gettimeofday(&start, NULL);
3350 prev_timeval = start;
3351 fprintf(time_fd, "\n\ntimes in msec\n");
3352 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3353 fprintf(time_fd, " clock elapsed: other lines\n\n");
3355 gettimeofday(&now, NULL);
3356 time_diff(&start, &now);
3357 if (((struct timeval *)tv_start) != NULL)
3359 fprintf(time_fd, " ");
3360 time_diff(((struct timeval *)tv_start), &now);
3362 fprintf(time_fd, " ");
3363 time_diff(&prev_timeval, &now);
3364 prev_timeval = now;
3365 fprintf(time_fd, ": %s\n", msg);
3369 # ifdef WIN3264
3371 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3374 gettimeofday(struct timeval *tv, char *dummy)
3376 long t = clock();
3377 tv->tv_sec = t / CLOCKS_PER_SEC;
3378 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3379 return 0;
3381 # endif
3383 #endif
3385 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3388 * Common code for the X command server and the Win32 command server.
3391 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3394 * Do the client-server stuff, unless "--servername ''" was used.
3396 static void
3397 exec_on_server(parmp)
3398 mparm_T *parmp;
3400 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3402 # ifdef WIN32
3403 /* Initialise the client/server messaging infrastructure. */
3404 serverInitMessaging();
3405 # endif
3408 * When a command server argument was found, execute it. This may
3409 * exit Vim when it was successful. Otherwise it's executed further
3410 * on. Remember the encoding used here in "serverStrEnc".
3412 if (parmp->serverArg)
3414 cmdsrv_main(&parmp->argc, parmp->argv,
3415 parmp->serverName_arg, &parmp->serverStr);
3416 # ifdef FEAT_MBYTE
3417 parmp->serverStrEnc = vim_strsave(p_enc);
3418 # endif
3421 /* If we're still running, get the name to register ourselves.
3422 * On Win32 can register right now, for X11 need to setup the
3423 * clipboard first, it's further down. */
3424 parmp->servername = serverMakeName(parmp->serverName_arg,
3425 parmp->argv[0]);
3426 # ifdef WIN32
3427 if (parmp->servername != NULL)
3429 serverSetName(parmp->servername);
3430 vim_free(parmp->servername);
3432 # endif
3437 * Prepare for running as a Vim server.
3439 static void
3440 prepare_server(parmp)
3441 mparm_T *parmp;
3443 # if defined(FEAT_X11)
3445 * Register for remote command execution with :serversend and --remote
3446 * unless there was a -X or a --servername '' on the command line.
3447 * Only register nongui-vim's with an explicit --servername argument.
3448 * When running as root --servername is also required.
3450 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3451 # ifdef FEAT_GUI
3452 (gui.in_use
3453 # ifdef UNIX
3454 && getuid() != ROOT_UID
3455 # endif
3456 ) ||
3457 # endif
3458 parmp->serverName_arg != NULL))
3460 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3461 vim_free(parmp->servername);
3462 TIME_MSG("register server name");
3464 else
3465 serverDelayedStartName = parmp->servername;
3466 # endif
3469 * Execute command ourselves if we're here because the send failed (or
3470 * else we would have exited above).
3472 if (parmp->serverStr != NULL)
3474 char_u *p;
3476 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3477 parmp->serverStr, &p));
3478 vim_free(p);
3482 static void
3483 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3484 int *argc;
3485 char **argv;
3486 char_u *serverName_arg;
3487 char_u **serverStr;
3489 char_u *res;
3490 int i;
3491 char_u *sname;
3492 int ret;
3493 int didone = FALSE;
3494 int exiterr = 0;
3495 char **newArgV = argv + 1;
3496 int newArgC = 1,
3497 Argc = *argc;
3498 int argtype;
3499 #define ARGTYPE_OTHER 0
3500 #define ARGTYPE_EDIT 1
3501 #define ARGTYPE_EDIT_WAIT 2
3502 #define ARGTYPE_SEND 3
3503 int silent = FALSE;
3504 int tabs = FALSE;
3505 # ifdef WIN32
3506 HWND srv;
3507 # elif defined(MAC_CLIENTSERVER)
3508 int srv;
3509 # elif defined(FEAT_X11)
3510 Window srv;
3512 setup_term_clip();
3513 # endif
3515 sname = serverMakeName(serverName_arg, argv[0]);
3516 if (sname == NULL)
3517 return;
3520 * Execute the command server related arguments and remove them
3521 * from the argc/argv array; We may have to return into main()
3523 for (i = 1; i < Argc; i++)
3525 res = NULL;
3526 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3528 for (; i < *argc; i++)
3530 *newArgV++ = argv[i];
3531 newArgC++;
3533 break;
3536 if (STRICMP(argv[i], "--remote-send") == 0)
3537 argtype = ARGTYPE_SEND;
3538 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3540 char *p = argv[i] + 8;
3542 argtype = ARGTYPE_EDIT;
3543 while (*p != NUL)
3545 if (STRNICMP(p, "-wait", 5) == 0)
3547 argtype = ARGTYPE_EDIT_WAIT;
3548 p += 5;
3550 else if (STRNICMP(p, "-silent", 7) == 0)
3552 silent = TRUE;
3553 p += 7;
3555 else if (STRNICMP(p, "-tab", 4) == 0)
3557 tabs = TRUE;
3558 p += 4;
3560 else
3562 argtype = ARGTYPE_OTHER;
3563 break;
3567 else
3568 argtype = ARGTYPE_OTHER;
3570 if (argtype != ARGTYPE_OTHER)
3572 if (i == *argc - 1)
3573 mainerr_arg_missing((char_u *)argv[i]);
3574 if (argtype == ARGTYPE_SEND)
3576 *serverStr = (char_u *)argv[i + 1];
3577 i++;
3579 else
3581 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3582 tabs, argtype == ARGTYPE_EDIT_WAIT);
3583 if (*serverStr == NULL)
3585 /* Probably out of memory, exit. */
3586 didone = TRUE;
3587 exiterr = 1;
3588 break;
3590 Argc = i;
3592 # ifdef FEAT_X11
3593 if (xterm_dpy == NULL)
3595 mch_errmsg(_("No display"));
3596 ret = -1;
3598 else
3599 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3600 NULL, &srv, 0, 0, silent);
3601 # elif defined(WIN32) || defined(MAC_CLIENTSERVER)
3602 /* Win32 always works? */
3603 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3604 # endif
3605 if (ret < 0)
3607 if (argtype == ARGTYPE_SEND)
3609 /* Failed to send, abort. */
3610 mch_errmsg(_(": Send failed.\n"));
3611 didone = TRUE;
3612 exiterr = 1;
3614 else if (!silent)
3615 /* Let vim start normally. */
3616 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3617 break;
3620 # ifdef FEAT_GUI_W32
3621 /* Guess that when the server name starts with "g" it's a GUI
3622 * server, which we can bring to the foreground here.
3623 * Foreground() in the server doesn't work very well. */
3624 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3625 SetForegroundWindow(srv);
3626 # endif
3629 * For --remote-wait: Wait until the server did edit each
3630 * file. Also detect that the server no longer runs.
3632 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3634 int numFiles = *argc - i - 1;
3635 int j;
3636 char_u *done = alloc(numFiles);
3637 char_u *p;
3638 # ifdef FEAT_GUI_W32
3639 NOTIFYICONDATA ni;
3640 int count = 0;
3641 extern HWND message_window;
3642 # endif
3644 if (numFiles > 0 && argv[i + 1][0] == '+')
3645 /* Skip "+cmd" argument, don't wait for it to be edited. */
3646 --numFiles;
3648 # ifdef FEAT_GUI_W32
3649 ni.cbSize = sizeof(ni);
3650 ni.hWnd = message_window;
3651 ni.uID = 0;
3652 ni.uFlags = NIF_ICON|NIF_TIP;
3653 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3654 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3655 Shell_NotifyIcon(NIM_ADD, &ni);
3656 # endif
3658 /* Wait for all files to unload in remote */
3659 memset(done, 0, numFiles);
3660 while (memchr(done, 0, numFiles) != NULL)
3662 # ifdef WIN32
3663 p = serverGetReply(srv, NULL, TRUE, TRUE);
3664 if (p == NULL)
3665 break;
3666 # elif defined(FEAT_X11)
3667 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3668 break;
3669 # elif defined(MAC_CLIENTSERVER)
3670 if (serverReadReply(srv, &p) < 0)
3671 break;
3672 # endif
3673 j = atoi((char *)p);
3674 if (j >= 0 && j < numFiles)
3676 # ifdef FEAT_GUI_W32
3677 ++count;
3678 sprintf(ni.szTip, _("%d of %d edited"),
3679 count, numFiles);
3680 Shell_NotifyIcon(NIM_MODIFY, &ni);
3681 # endif
3682 done[j] = 1;
3685 # ifdef FEAT_GUI_W32
3686 Shell_NotifyIcon(NIM_DELETE, &ni);
3687 # endif
3690 else if (STRICMP(argv[i], "--remote-expr") == 0)
3692 if (i == *argc - 1)
3693 mainerr_arg_missing((char_u *)argv[i]);
3694 # ifdef WIN32
3695 /* Win32 always works? */
3696 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3697 &res, NULL, 1, FALSE) < 0)
3698 # elif defined(FEAT_X11)
3699 if (xterm_dpy == NULL)
3700 mch_errmsg(_("No display: Send expression failed.\n"));
3701 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3702 &res, NULL, 1, 1, FALSE) < 0)
3703 # elif defined(MAC_CLIENTSERVER)
3704 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3705 &res, NULL, 1, FALSE) < 0)
3706 # endif
3708 if (res != NULL && *res != NUL)
3710 /* Output error from remote */
3711 mch_errmsg((char *)res);
3712 vim_free(res);
3713 res = NULL;
3715 mch_errmsg(_(": Send expression failed.\n"));
3718 else if (STRICMP(argv[i], "--serverlist") == 0)
3720 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
3721 /* Win32 always works? */
3722 res = serverGetVimNames();
3723 # elif defined(FEAT_X11)
3724 if (xterm_dpy != NULL)
3725 res = serverGetVimNames(xterm_dpy);
3726 # endif
3727 if (called_emsg)
3728 mch_errmsg("\n");
3730 else if (STRICMP(argv[i], "--servername") == 0)
3732 /* Alredy processed. Take it out of the command line */
3733 i++;
3734 continue;
3736 else
3738 *newArgV++ = argv[i];
3739 newArgC++;
3740 continue;
3742 didone = TRUE;
3743 if (res != NULL && *res != NUL)
3745 mch_msg((char *)res);
3746 if (res[STRLEN(res) - 1] != '\n')
3747 mch_msg("\n");
3749 vim_free(res);
3752 if (didone)
3754 display_errors(); /* display any collected messages */
3755 exit(exiterr); /* Mission accomplished - get out */
3758 /* Return back into main() */
3759 *argc = newArgC;
3760 vim_free(sname);
3764 * Build a ":drop" command to send to a Vim server.
3766 static char_u *
3767 build_drop_cmd(filec, filev, tabs, sendReply)
3768 int filec;
3769 char **filev;
3770 int tabs; /* Use ":tab drop" instead of ":drop". */
3771 int sendReply;
3773 garray_T ga;
3774 int i;
3775 char_u *inicmd = NULL;
3776 char_u *p;
3777 char_u cwd[MAXPATHL];
3779 if (filec > 0 && filev[0][0] == '+')
3781 inicmd = (char_u *)filev[0] + 1;
3782 filev++;
3783 filec--;
3785 /* Check if we have at least one argument. */
3786 if (filec <= 0)
3787 mainerr_arg_missing((char_u *)filev[-1]);
3788 if (mch_dirname(cwd, MAXPATHL) != OK)
3789 return NULL;
3790 if ((p = vim_strsave_escaped_ext(cwd,
3791 #ifdef BACKSLASH_IN_FILENAME
3792 "", /* rem_backslash() will tell what chars to escape */
3793 #else
3794 PATH_ESC_CHARS,
3795 #endif
3796 '\\', TRUE)) == NULL)
3797 return NULL;
3798 ga_init2(&ga, 1, 100);
3799 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3800 ga_concat(&ga, p);
3801 vim_free(p);
3803 /* Call inputsave() so that a prompt for an encryption key works. */
3804 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3805 if (tabs)
3806 ga_concat(&ga, (char_u *)"tab ");
3807 ga_concat(&ga, (char_u *)"drop");
3808 for (i = 0; i < filec; i++)
3810 /* On Unix the shell has already expanded the wildcards, don't want to
3811 * do it again in the Vim server. On MS-Windows only escape
3812 * non-wildcard characters. */
3813 p = vim_strsave_escaped((char_u *)filev[i],
3814 #ifdef UNIX
3815 PATH_ESC_CHARS
3816 #else
3817 (char_u *)" \t%#"
3818 #endif
3820 if (p == NULL)
3822 vim_free(ga.ga_data);
3823 return NULL;
3825 ga_concat(&ga, (char_u *)" ");
3826 ga_concat(&ga, p);
3827 vim_free(p);
3829 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3830 * CTRL-\ CTRL-N again. */
3831 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3832 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3833 if (sendReply)
3834 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3835 ga_concat(&ga, (char_u *)"<CR>:");
3836 if (inicmd != NULL)
3838 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3839 * the following commands to be inserted as text. Use a "|",
3840 * hopefully "inicmd" does allow this... */
3841 ga_concat(&ga, inicmd);
3842 ga_concat(&ga, (char_u *)"|");
3844 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3845 * clear command line. */
3846 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3847 ga_append(&ga, NUL);
3848 return ga.ga_data;
3852 * Replace termcodes such as <CR> and insert as key presses if there is room.
3854 void
3855 server_to_input_buf(str)
3856 char_u *str;
3858 char_u *ptr = NULL;
3859 char_u *cpo_save = p_cpo;
3861 /* Set 'cpoptions' the way we want it.
3862 * B set - backslashes are *not* treated specially
3863 * k set - keycodes are *not* reverse-engineered
3864 * < unset - <Key> sequences *are* interpreted
3865 * The last but one parameter of replace_termcodes() is TRUE so that the
3866 * <lt> sequence is recognised - needed for a real backslash.
3868 p_cpo = (char_u *)"Bk";
3869 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3870 p_cpo = cpo_save;
3872 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3875 * Add the string to the input stream.
3876 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3878 * First clear typed characters from the typeahead buffer, there could
3879 * be half a mapping there. Then append to the existing string, so
3880 * that multiple commands from a client are concatenated.
3882 if (typebuf.tb_maplen < typebuf.tb_len)
3883 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3884 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3886 /* Let input_available() know we inserted text in the typeahead
3887 * buffer. */
3888 typebuf_was_filled = TRUE;
3890 vim_free((char_u *)ptr);
3894 * Evaluate an expression that the client sent to a string.
3895 * Handles disabling error messages and disables debugging, otherwise Vim
3896 * hangs, waiting for "cont" to be typed.
3898 char_u *
3899 eval_client_expr_to_string(expr)
3900 char_u *expr;
3902 char_u *res;
3903 int save_dbl = debug_break_level;
3904 int save_ro = redir_off;
3906 debug_break_level = -1;
3907 redir_off = 0;
3908 ++emsg_skip;
3910 res = eval_to_string(expr, NULL, TRUE);
3912 debug_break_level = save_dbl;
3913 redir_off = save_ro;
3914 --emsg_skip;
3916 /* A client can tell us to redraw, but not to display the cursor, so do
3917 * that here. */
3918 setcursor();
3919 out_flush();
3920 #ifdef FEAT_GUI
3921 if (gui.in_use)
3922 gui_update_cursor(FALSE, FALSE);
3923 #endif
3925 return res;
3929 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3930 * return an allocated string. Otherwise return "data".
3931 * "*tofree" is set to the result when it needs to be freed later.
3933 /*ARGSUSED*/
3934 char_u *
3935 serverConvert(client_enc, data, tofree)
3936 char_u *client_enc;
3937 char_u *data;
3938 char_u **tofree;
3940 char_u *res = data;
3942 *tofree = NULL;
3943 # ifdef FEAT_MBYTE
3944 if (client_enc != NULL && p_enc != NULL)
3946 vimconv_T vimconv;
3948 vimconv.vc_type = CONV_NONE;
3949 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3950 && vimconv.vc_type != CONV_NONE)
3952 res = string_convert(&vimconv, data, NULL);
3953 if (res == NULL)
3954 res = data;
3955 else
3956 *tofree = res;
3958 convert_setup(&vimconv, NULL, NULL);
3960 # endif
3961 return res;
3966 * Make our basic server name: use the specified "arg" if given, otherwise use
3967 * the tail of the command "cmd" we were started with.
3968 * Return the name in allocated memory. This doesn't include a serial number.
3970 static char_u *
3971 serverMakeName(arg, cmd)
3972 char_u *arg;
3973 char *cmd;
3975 char_u *p;
3977 if (arg != NULL && *arg != NUL)
3978 p = vim_strsave_up(arg);
3979 else
3981 p = vim_strsave_up(gettail((char_u *)cmd));
3982 /* Remove .exe or .bat from the name. */
3983 if (p != NULL && vim_strchr(p, '.') != NULL)
3984 *vim_strchr(p, '.') = NUL;
3986 return p;
3988 #endif /* FEAT_CLIENTSERVER */
3991 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3993 #if defined(FEAT_FKMAP) || defined(PROTO)
3994 # include "farsi.c"
3995 #endif
3998 * When FEAT_ARABIC is defined, also compile the Arabic source code.
4000 #if defined(FEAT_ARABIC) || defined(PROTO)
4001 # include "arabic.c"
4002 #endif