Merge branch 'vim'
[MacVim.git] / src / main.c
blob627ab43cd6fe730daa9e4eef1b40af6218ad233f
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
10 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
11 # include "vimio.h" /* for close() and dup() */
12 #endif
14 #define EXTERN
15 #include "vim.h"
17 #ifdef SPAWNO
18 # include <spawno.h> /* special MS-DOS swapping library */
19 #endif
21 #ifdef __CYGWIN__
22 # ifndef WIN32
23 # include <cygwin/version.h>
24 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
25 * cygwin_conv_path() */
26 # endif
27 # include <limits.h>
28 #endif
30 #if FEAT_GUI_MACVIM
31 #include <objc/objc-runtime.h> /* for objc_*() and sel_*() */
32 #endif
34 /* Maximum number of commands from + or -c arguments. */
35 #define MAX_ARG_CMDS 10
37 /* values for "window_layout" */
38 #define WIN_HOR 1 /* "-o" horizontally split windows */
39 #define WIN_VER 2 /* "-O" vertically split windows */
40 #define WIN_TABS 3 /* "-p" windows on tab pages */
42 /* Struct for various parameters passed between main() and other functions. */
43 typedef struct
45 int argc;
46 char **argv;
48 int evim_mode; /* started as "evim" */
49 char_u *use_vimrc; /* vimrc from -u argument */
51 int n_commands; /* no. of commands from + or -c */
52 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
53 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
54 int n_pre_commands; /* no. of commands from --cmd */
55 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
57 int edit_type; /* type of editing to do */
58 char_u *tagname; /* tag from -t argument */
59 #ifdef FEAT_QUICKFIX
60 char_u *use_ef; /* 'errorfile' from -q argument */
61 #endif
63 int want_full_screen;
64 int stdout_isatty; /* is stdout a terminal? */
65 char_u *term; /* specified terminal name */
66 #ifdef FEAT_CRYPT
67 int ask_for_key; /* -x argument */
68 #endif
69 int no_swap_file; /* "-n" argument used */
70 #ifdef FEAT_EVAL
71 int use_debug_break_level;
72 #endif
73 #ifdef FEAT_WINDOWS
74 int window_count; /* number of windows to use */
75 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
76 #endif
78 #ifdef FEAT_CLIENTSERVER
79 int serverArg; /* TRUE when argument for a server */
80 char_u *serverName_arg; /* cmdline arg for server name */
81 char_u *serverStr; /* remote server command */
82 char_u *serverStrEnc; /* encoding of serverStr */
83 char_u *servername; /* allocated name for our server */
84 #endif
85 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
86 int literal; /* don't expand file names */
87 #endif
88 #ifdef MSWIN
89 int full_path; /* file name argument was full path */
90 #endif
91 #ifdef FEAT_DIFF
92 int diff_mode; /* start with 'diff' set */
93 #endif
94 } mparm_T;
96 /* Values for edit_type. */
97 #define EDIT_NONE 0 /* no edit type yet */
98 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */
99 #define EDIT_STDIN 2 /* read file from stdin */
100 #define EDIT_TAG 3 /* tag name argument given, use tagname */
101 #define EDIT_QF 4 /* start in quickfix mode */
103 #if defined(UNIX) || defined(VMS)
104 static int file_owned __ARGS((char *fname));
105 #endif
106 static void mainerr __ARGS((int, char_u *));
107 static void main_msg __ARGS((char *s));
108 static void usage __ARGS((void));
109 static int get_number_arg __ARGS((char_u *p, int *idx, int def));
110 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
111 static void init_locale __ARGS((void));
112 #endif
113 static void parse_command_name __ARGS((mparm_T *parmp));
114 static void early_arg_scan __ARGS((mparm_T *parmp));
115 static void command_line_scan __ARGS((mparm_T *parmp));
116 static void check_tty __ARGS((mparm_T *parmp));
117 static void read_stdin __ARGS((void));
118 static void create_windows __ARGS((mparm_T *parmp));
119 #ifdef FEAT_WINDOWS
120 static void edit_buffers __ARGS((mparm_T *parmp));
121 #endif
122 static void exe_pre_commands __ARGS((mparm_T *parmp));
123 static void exe_commands __ARGS((mparm_T *parmp));
124 static void source_startup_scripts __ARGS((mparm_T *parmp));
125 static void main_start_gui __ARGS((void));
126 #if defined(HAS_SWAP_EXISTS_ACTION)
127 static void check_swap_exists_action __ARGS((void));
128 #endif
129 #ifdef FEAT_CLIENTSERVER
130 static void exec_on_server __ARGS((mparm_T *parmp));
131 static void prepare_server __ARGS((mparm_T *parmp));
132 static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
133 static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
134 #endif
137 #ifdef STARTUPTIME
138 static FILE *time_fd = NULL;
139 #endif
142 * Different types of error messages.
144 static char *(main_errors[]) =
146 N_("Unknown option argument"),
147 #define ME_UNKNOWN_OPTION 0
148 N_("Too many edit arguments"),
149 #define ME_TOO_MANY_ARGS 1
150 N_("Argument missing after"),
151 #define ME_ARG_MISSING 2
152 N_("Garbage after option argument"),
153 #define ME_GARBAGE 3
154 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
155 #define ME_EXTRA_CMD 4
156 N_("Invalid argument for"),
157 #define ME_INVALID_ARG 5
160 #ifndef PROTO /* don't want a prototype for main() */
162 # ifdef VIMDLL
163 _export
164 # endif
165 # ifdef FEAT_GUI_MSWIN
166 # ifdef __BORLANDC__
167 _cdecl
168 # endif
169 VimMain
170 # else
171 main
172 # endif
173 (argc, argv)
174 int argc;
175 char **argv;
177 char_u *fname = NULL; /* file name from command line */
178 mparm_T params; /* various parameters passed between
179 * main() and other functions. */
181 #if FEAT_GUI_MACVIM
182 // Cocoa needs an NSAutoreleasePool in place or it will leak memory.
183 // This particular pool will hold autorelease objects created during
184 // initialization.
185 id autoreleasePool = objc_msgSend(objc_msgSend(
186 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
187 ), sel_getUid("init"));
188 #endif
191 * Do any system-specific initialisations. These can NOT use IObuff or
192 * NameBuff. Thus emsg2() cannot be called!
194 mch_early_init();
196 /* Many variables are in "params" so that we can pass them to invoked
197 * functions without a lot of arguments. "argc" and "argv" are also
198 * copied, so that they can be changed. */
199 vim_memset(&params, 0, sizeof(params));
200 params.argc = argc;
201 params.argv = argv;
202 params.want_full_screen = TRUE;
203 #ifdef FEAT_EVAL
204 params.use_debug_break_level = -1;
205 #endif
206 #ifdef FEAT_WINDOWS
207 params.window_count = -1;
208 #endif
210 #ifdef FEAT_TCL
211 vim_tcl_init(params.argv[0]);
212 #endif
214 #ifdef MEM_PROFILE
215 atexit(vim_mem_profile_dump);
216 #endif
218 #ifdef STARTUPTIME
219 time_fd = mch_fopen(STARTUPTIME, "a");
220 TIME_MSG("--- VIM STARTING ---");
221 #endif
222 starttime = time(NULL);
224 #ifdef __EMX__
225 _wildcard(&params.argc, &params.argv);
226 #endif
228 #ifdef FEAT_MBYTE
229 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
230 #endif
231 #ifdef FEAT_EVAL
232 eval_init(); /* init global variables */
233 #endif
235 #ifdef __QNXNTO__
236 qnx_init(); /* PhAttach() for clipboard, (and gui) */
237 #endif
239 #ifdef MAC_OS_CLASSIC
240 /* Prepare for possibly starting GUI sometime */
241 /* Macintosh needs this before any memory is allocated. */
242 gui_prepare(&params.argc, params.argv);
243 TIME_MSG("GUI prepared");
244 #endif
246 /* Init the table of Normal mode commands. */
247 init_normal_cmds();
249 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
250 make_version(); /* Construct the long version string. */
251 #endif
254 * Allocate space for the generic buffers (needed for set_init_1() and
255 * EMSG2()).
257 if ((IObuff = alloc(IOSIZE)) == NULL
258 || (NameBuff = alloc(MAXPATHL)) == NULL)
259 mch_exit(0);
260 TIME_MSG("Allocated generic buffers");
262 #ifdef NBDEBUG
263 /* Wait a moment for debugging NetBeans. Must be after allocating
264 * NameBuff. */
265 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
266 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
267 TIME_MSG("NetBeans debug wait");
268 #endif
270 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
272 * Setup to use the current locale (for ctype() and many other things).
273 * NOTE: Translated messages with encodings other than latin1 will not
274 * work until set_init_1() has been called!
276 init_locale();
277 TIME_MSG("locale set");
278 #endif
280 #ifdef FEAT_GUI
281 gui.dofork = TRUE; /* default is to use fork() */
282 #endif
285 * Do a first scan of the arguments in "argv[]":
286 * -display or --display
287 * --server...
288 * --socketid
289 * --windowid
291 early_arg_scan(&params);
293 #ifdef FEAT_SUN_WORKSHOP
294 findYourself(params.argv[0]);
295 #endif
296 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
297 /* Prepare for possibly starting GUI sometime */
298 gui_prepare(&params.argc, params.argv);
299 TIME_MSG("GUI prepared");
300 #endif
302 #ifdef FEAT_CLIPBOARD
303 clip_init(FALSE); /* Initialise clipboard stuff */
304 TIME_MSG("clipboard setup");
305 #endif
308 * Check if we have an interactive window.
309 * On the Amiga: If there is no window, we open one with a newcli command
310 * (needed for :! to * work). mch_check_win() will also handle the -d or
311 * -dev argument.
313 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
314 TIME_MSG("window checked");
317 * Allocate the first window and buffer.
318 * Can't do anything without it, exit when it fails.
320 if (win_alloc_first() == FAIL)
321 mch_exit(0);
323 init_yank(); /* init yank buffers */
325 alist_init(&global_alist); /* Init the argument list to empty. */
328 * Set the default values for the options.
329 * NOTE: Non-latin1 translated messages are working only after this,
330 * because this is where "has_mbyte" will be set, which is used by
331 * msg_outtrans_len_attr().
332 * First find out the home directory, needed to expand "~" in options.
334 init_homedir(); /* find real value of $HOME */
335 set_init_1();
336 TIME_MSG("inits 1");
338 #ifdef FEAT_EVAL
339 set_lang_var(); /* set v:lang and v:ctype */
340 #endif
342 #ifdef FEAT_CLIENTSERVER
344 * Do the client-server stuff, unless "--servername ''" was used.
345 * This may exit Vim if the command was sent to the server.
347 exec_on_server(&params);
348 #endif
351 * Figure out the way to work from the command name argv[0].
352 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
354 parse_command_name(&params);
357 * Process the command line arguments. File names are put in the global
358 * argument list "global_alist".
360 command_line_scan(&params);
361 TIME_MSG("parsing arguments");
364 * On some systems, when we compile with the GUI, we always use it. On Mac
365 * there is no terminal version, and on Windows we can't fork one off with
366 * :gui.
368 #ifdef ALWAYS_USE_GUI
369 gui.starting = TRUE;
370 #else
371 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
373 * Check if the GUI can be started. Reset gui.starting if not.
374 * Don't know about other systems, stay on the safe side and don't check.
376 if (gui.starting && gui_init_check() == FAIL)
378 gui.starting = FALSE;
380 /* When running "evim" or "gvim -y" we need the menus, exit if we
381 * don't have them. */
382 if (params.evim_mode)
383 mch_exit(1);
385 # endif
386 #endif
388 if (GARGCOUNT > 0)
390 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
392 * Expand wildcards in file names.
394 if (!params.literal)
396 /* Temporarily add '(' and ')' to 'isfname'. These are valid
397 * filename characters but are excluded from 'isfname' to make
398 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
399 do_cmdline_cmd((char_u *)":set isf+=(,)");
400 alist_expand(NULL, 0);
401 do_cmdline_cmd((char_u *)":set isf&");
403 #endif
404 fname = alist_name(&GARGLIST[0]);
407 #if defined(WIN32) && defined(FEAT_MBYTE)
409 extern void set_alist_count(void);
411 /* Remember the number of entries in the argument list. If it changes
412 * we don't react on setting 'encoding'. */
413 set_alist_count();
415 #endif
417 #ifdef MSWIN
418 if (GARGCOUNT == 1 && params.full_path)
421 * If there is one filename, fully qualified, we have very probably
422 * been invoked from explorer, so change to the file's directory.
423 * Hint: to avoid this when typing a command use a forward slash.
424 * If the cd fails, it doesn't matter.
426 (void)vim_chdirfile(fname);
428 #endif
429 TIME_MSG("expanding arguments");
431 #ifdef FEAT_DIFF
432 if (params.diff_mode && params.window_count == -1)
433 params.window_count = 0; /* open up to 3 windows */
434 #endif
436 /* Don't redraw until much later. */
437 ++RedrawingDisabled;
440 * When listing swap file names, don't do cursor positioning et. al.
442 if (recoverymode && fname == NULL)
443 params.want_full_screen = FALSE;
446 * When certain to start the GUI, don't check capabilities of terminal.
447 * For GTK we can't be sure, but when started from the desktop it doesn't
448 * make sense to try using a terminal.
450 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
451 if (gui.starting
452 # ifdef FEAT_GUI_GTK
453 && !isatty(2)
454 # endif
456 params.want_full_screen = FALSE;
457 #endif
459 #if (defined(FEAT_GUI_MAC) || defined(FEAT_GUI_MACVIM)) && defined(MACOS_X_UNIX)
460 /* When the GUI is started from Finder, need to display messages in a
461 * message box. isatty(2) returns TRUE anyway, thus we need to check the
462 * name to know we're not started from a terminal. */
463 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
465 params.want_full_screen = FALSE;
467 # ifndef FEAT_GUI_MACVIM
468 /* Avoid always using "/" as the current directory. Note that when
469 * started from Finder the arglist will be filled later in
470 * HandleODocAE() and "fname" will be NULL. */
471 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
472 && STRCMP(NameBuff, "/") == 0)
474 if (fname != NULL)
475 (void)vim_chdirfile(fname);
476 else
478 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
479 vim_chdir(NameBuff);
482 # endif
484 #endif
487 * mch_init() sets up the terminal (window) for use. This must be
488 * done after resetting full_screen, otherwise it may move the cursor
489 * (MSDOS).
490 * Note that we may use mch_exit() before mch_init()!
492 mch_init();
493 TIME_MSG("shell init");
495 #ifdef USE_XSMP
497 * For want of anywhere else to do it, try to connect to xsmp here.
498 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
499 * Hijacking -X 'no X connection' to also disable XSMP connection as that
500 * has a similar delay upon failure.
501 * Only try if SESSION_MANAGER is set to something non-null.
503 if (!x_no_connect)
505 char *p = getenv("SESSION_MANAGER");
507 if (p != NULL && *p != NUL)
509 xsmp_init();
510 TIME_MSG("xsmp init");
513 #endif
516 * Print a warning if stdout is not a terminal.
518 check_tty(&params);
520 /* This message comes before term inits, but after setting "silent_mode"
521 * when the input is not a tty. */
522 if (GARGCOUNT > 1 && !silent_mode)
523 printf(_("%d files to edit\n"), GARGCOUNT);
525 if (params.want_full_screen && !silent_mode)
527 termcapinit(params.term); /* set terminal name and get terminal
528 capabilities (will set full_screen) */
529 screen_start(); /* don't know where cursor is now */
530 TIME_MSG("Termcap init");
534 * Set the default values for the options that use Rows and Columns.
536 ui_get_shellsize(); /* inits Rows and Columns */
537 #ifdef FEAT_NETBEANS_INTG
538 if (usingNetbeans)
539 Columns += 2; /* leave room for glyph gutter */
540 #endif
541 win_init_size();
542 #ifdef FEAT_DIFF
543 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
544 * file. There is no buffer yet though. */
545 if (params.diff_mode)
546 diff_win_options(firstwin, FALSE);
547 #endif
549 cmdline_row = Rows - p_ch;
550 msg_row = cmdline_row;
551 screenalloc(FALSE); /* allocate screen buffers */
552 set_init_2();
553 TIME_MSG("inits 2");
555 msg_scroll = TRUE;
556 no_wait_return = TRUE;
558 init_mappings(); /* set up initial mappings */
560 init_highlight(TRUE, FALSE); /* set the default highlight groups */
561 TIME_MSG("init highlight");
563 #ifdef FEAT_EVAL
564 /* Set the break level after the terminal is initialized. */
565 debug_break_level = params.use_debug_break_level;
566 #endif
568 /* Execute --cmd arguments. */
569 exe_pre_commands(&params);
571 /* Source startup scripts. */
572 source_startup_scripts(&params);
574 #ifdef FEAT_EVAL
576 * Read all the plugin files.
577 * Only when compiled with +eval, since most plugins need it.
579 if (p_lpl)
581 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
582 source_runtime((char_u *)"plugin/*.vim", TRUE);
583 # else
584 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
585 # endif
586 TIME_MSG("loading plugins");
588 #endif
590 #ifdef FEAT_DIFF
591 /* Decide about window layout for diff mode after reading vimrc. */
592 if (params.diff_mode && params.window_layout == 0)
594 if (diffopt_horizontal())
595 params.window_layout = WIN_HOR; /* use horizontal split */
596 else
597 params.window_layout = WIN_VER; /* use vertical split */
599 #endif
602 * Recovery mode without a file name: List swap files.
603 * This uses the 'dir' option, therefore it must be after the
604 * initializations.
606 if (recoverymode && fname == NULL)
608 recover_names(NULL, TRUE, 0);
609 mch_exit(0);
613 * Set a few option defaults after reading .vimrc files:
614 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
616 set_init_3();
617 TIME_MSG("inits 3");
620 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
621 * Note that this overrides anything from a vimrc file.
623 if (params.no_swap_file)
624 p_uc = 0;
626 #ifdef FEAT_FKMAP
627 if (curwin->w_p_rl && p_altkeymap)
629 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
630 # ifdef FEAT_ARABIC
631 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
632 # endif
633 p_fkmap = TRUE; /* Set the Farsi keymap mode */
635 #endif
637 #ifdef FEAT_GUI
638 if (gui.starting)
640 #if defined(UNIX) || defined(VMS)
641 /* When something caused a message from a vimrc script, need to output
642 * an extra newline before the shell prompt. */
643 if (did_emsg || msg_didout)
644 putchar('\n');
645 #endif
647 gui_start(); /* will set full_screen to TRUE */
648 TIME_MSG("starting GUI");
650 /* When running "evim" or "gvim -y" we need the menus, exit if we
651 * don't have them. */
652 if (!gui.in_use && params.evim_mode)
653 mch_exit(1);
655 #endif
657 #ifdef SPAWNO /* special MSDOS swapping library */
658 init_SPAWNO("", SWAP_ANY);
659 #endif
661 #ifdef FEAT_VIMINFO
663 * Read in registers, history etc, but not marks, from the viminfo file.
664 * This is where v:oldfiles gets filled.
666 if (*p_viminfo != NUL)
668 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
669 TIME_MSG("reading viminfo");
671 #endif
673 #ifdef FEAT_QUICKFIX
675 * "-q errorfile": Load the error file now.
676 * If the error file can't be read, exit before doing anything else.
678 if (params.edit_type == EDIT_QF)
680 if (params.use_ef != NULL)
681 set_string_option_direct((char_u *)"ef", -1,
682 params.use_ef, OPT_FREE, SID_CARG);
683 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
685 out_char('\n');
686 mch_exit(3);
688 TIME_MSG("reading errorfile");
690 #endif
693 * Start putting things on the screen.
694 * Scroll screen down before drawing over it
695 * Clear screen now, so file message will not be cleared.
697 starting = NO_BUFFERS;
698 no_wait_return = FALSE;
699 if (!exmode_active)
700 msg_scroll = FALSE;
702 #ifdef FEAT_GUI
704 * This seems to be required to make callbacks to be called now, instead
705 * of after things have been put on the screen, which then may be deleted
706 * when getting a resize callback.
707 * For the Mac this handles putting files dropped on the Vim icon to
708 * global_alist.
710 if (gui.in_use)
712 # ifdef FEAT_SUN_WORKSHOP
713 if (!usingSunWorkShop)
714 # endif
715 gui_wait_for_chars(50L);
716 TIME_MSG("GUI delay");
718 #endif
720 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
721 qnx_clip_init();
722 #endif
724 #ifdef FEAT_XCLIPBOARD
725 /* Start using the X clipboard, unless the GUI was started. */
726 # ifdef FEAT_GUI
727 if (!gui.in_use)
728 # endif
730 setup_term_clip();
731 TIME_MSG("setup clipboard");
733 #endif
735 #ifdef FEAT_CLIENTSERVER
736 /* Prepare for being a Vim server. */
737 prepare_server(&params);
738 #endif
741 * If "-" argument given: Read file from stdin.
742 * Do this before starting Raw mode, because it may change things that the
743 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
744 * are the same terminal: "cat | vim -".
745 * Using autocommands here may cause trouble...
747 if (params.edit_type == EDIT_STDIN && !recoverymode)
748 read_stdin();
750 #if defined(UNIX) || defined(VMS)
751 /* When switching screens and something caused a message from a vimrc
752 * script, need to output an extra newline on exit. */
753 if ((did_emsg || msg_didout) && *T_TI != NUL)
754 newline_on_exit = TRUE;
755 #endif
758 * When done something that is not allowed or error message call
759 * wait_return. This must be done before starttermcap(), because it may
760 * switch to another screen. It must be done after settmode(TMODE_RAW),
761 * because we want to react on a single key stroke.
762 * Call settmode and starttermcap here, so the T_KS and T_TI may be
763 * defined by termcapinit and redefined in .exrc.
765 settmode(TMODE_RAW);
766 TIME_MSG("setting raw mode");
768 if (need_wait_return || msg_didany)
770 wait_return(TRUE);
771 TIME_MSG("waiting for return");
774 starttermcap(); /* start termcap if not done by wait_return() */
775 TIME_MSG("start termcap");
777 #ifdef FEAT_MOUSE
778 setmouse(); /* may start using the mouse */
779 #endif
780 if (scroll_region)
781 scroll_region_reset(); /* In case Rows changed */
782 scroll_start(); /* may scroll the screen to the right position */
785 * Don't clear the screen when starting in Ex mode, unless using the GUI.
787 if (exmode_active
788 #ifdef FEAT_GUI
789 && !gui.in_use
790 #endif
792 must_redraw = CLEAR;
793 else
795 screenclear(); /* clear screen */
796 TIME_MSG("clearing screen");
799 #ifdef FEAT_CRYPT
800 if (params.ask_for_key)
802 (void)get_crypt_key(TRUE, TRUE);
803 TIME_MSG("getting crypt key");
805 #endif
807 no_wait_return = TRUE;
809 #ifdef FEAT_GUI_MACVIM
810 /* We want to delay calling this function for as long as possible, since it
811 * will result in faster startup for cached processes. However, we react
812 * before create_windows() so that we can open files by adding to the
813 * arglist. */
814 gui_macvim_wait_for_startup();
816 /* Since MacVim may receive the list of files to open via an Apple event
817 * (as opposed to from the command line) we must manually check to see if
818 * the window layout should be changed. */
819 gui_macvim_get_window_layout(&params.window_count, &params.window_layout);
821 # ifdef MAC_CLIENTSERVER
822 // NOTE: Can't set server name at same time as WIN32 because gui.in_use
823 // isn't set then. Servers are only supported in GUI mode.
824 // Also, in case the above call blocks this process another Vim process may
825 // open in the meantime. If it did then it could be named e.g. VIM3
826 // whereas this may be VIM2, which looks weird.
827 if (params.servername != NULL && gui.in_use)
829 serverRegisterName(params.servername);
830 vim_free(params.servername);
831 params.servername = NULL;
833 # endif
834 #endif
837 * Create the requested number of windows and edit buffers in them.
838 * Also does recovery if "recoverymode" set.
840 create_windows(&params);
841 TIME_MSG("opening buffers");
843 #ifdef FEAT_EVAL
844 /* clear v:swapcommand */
845 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
846 #endif
848 /* Ex starts at last line of the file */
849 if (exmode_active)
850 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
852 #ifdef FEAT_AUTOCMD
853 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
854 TIME_MSG("BufEnter autocommands");
855 #endif
856 setpcmark();
858 #ifdef FEAT_QUICKFIX
860 * When started with "-q errorfile" jump to first error now.
862 if (params.edit_type == EDIT_QF)
864 qf_jump(NULL, 0, 0, FALSE);
865 TIME_MSG("jump to first error");
867 #endif
869 #ifdef FEAT_WINDOWS
871 * If opened more than one window, start editing files in the other
872 * windows.
874 edit_buffers(&params);
875 #endif
877 #ifdef FEAT_DIFF
878 if (params.diff_mode)
880 win_T *wp;
882 /* set options in each window for "vimdiff". */
883 for (wp = firstwin; wp != NULL; wp = wp->w_next)
884 diff_win_options(wp, TRUE);
886 #endif
889 * Shorten any of the filenames, but only when absolute.
891 shorten_fnames(FALSE);
894 * Need to jump to the tag before executing the '-c command'.
895 * Makes "vim -c '/return' -t main" work.
897 if (params.tagname != NULL)
899 #if defined(HAS_SWAP_EXISTS_ACTION)
900 swap_exists_did_quit = FALSE;
901 #endif
903 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
904 do_cmdline_cmd(IObuff);
905 TIME_MSG("jumping to tag");
907 #if defined(HAS_SWAP_EXISTS_ACTION)
908 /* If the user doesn't want to edit the file then we quit here. */
909 if (swap_exists_did_quit)
910 getout(1);
911 #endif
914 /* Execute any "+", "-c" and "-S" arguments. */
915 if (params.n_commands > 0)
916 exe_commands(&params);
918 RedrawingDisabled = 0;
919 redraw_all_later(NOT_VALID);
920 no_wait_return = FALSE;
921 starting = 0;
923 #ifdef FEAT_TERMRESPONSE
924 /* Requesting the termresponse is postponed until here, so that a "-c q"
925 * argument doesn't make it appear in the shell Vim was started from. */
926 may_req_termresponse();
927 #endif
929 /* start in insert mode */
930 if (p_im)
931 need_start_insertmode = TRUE;
933 #ifdef FEAT_AUTOCMD
934 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
935 TIME_MSG("VimEnter autocommands");
936 #endif
938 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
939 /* When a startup script or session file setup for diff'ing and
940 * scrollbind, sync the scrollbind now. */
941 if (curwin->w_p_diff && curwin->w_p_scb)
943 update_topline();
944 check_scrollbind((linenr_T)0, 0L);
945 TIME_MSG("diff scrollbinding");
947 #endif
949 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
950 mch_set_winsize_now(); /* Allow winsize changes from now on */
951 #endif
953 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
954 /* When tab pages were created, may need to update the tab pages line and
955 * scrollbars. This is skipped while creating them. */
956 if (first_tabpage->tp_next != NULL)
958 out_flush();
959 gui_init_which_components(NULL);
960 gui_update_scrollbars(TRUE);
962 need_mouse_correct = TRUE;
963 #endif
965 /* If ":startinsert" command used, stuff a dummy command to be able to
966 * call normal_cmd(), which will then start Insert mode. */
967 if (restart_edit != 0)
968 stuffcharReadbuff(K_NOP);
970 #ifdef FEAT_NETBEANS_INTG
971 if (usingNetbeans)
972 /* Tell the client that it can start sending commands. */
973 netbeans_startup_done();
974 #endif
976 TIME_MSG("before starting main loop");
978 #if FEAT_GUI_MACVIM
979 // The autorelease pool might have filled up quite a bit during
980 // initialization, so purge it before entering the main loop.
981 objc_msgSend(autoreleasePool, sel_getUid("release"));
983 // The main loop sets up its own autorelease pool, but to be safe we still
984 // realloc this one here.
985 autoreleasePool = objc_msgSend(objc_msgSend(
986 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
987 ), sel_getUid("init"));
988 #endif
991 * Call the main command loop. This never returns.
993 main_loop(FALSE, FALSE);
995 #if FEAT_GUI_MACVIM
996 objc_msgSend(autoreleasePool, sel_getUid("release"));
997 #endif
999 return 0;
1001 #endif /* PROTO */
1004 * Main loop: Execute Normal mode commands until exiting Vim.
1005 * Also used to handle commands in the command-line window, until the window
1006 * is closed.
1007 * Also used to handle ":visual" command after ":global": execute Normal mode
1008 * commands, return when entering Ex mode. "noexmode" is TRUE then.
1010 void
1011 main_loop(cmdwin, noexmode)
1012 int cmdwin; /* TRUE when working in the command-line window */
1013 int noexmode; /* TRUE when return on entering Ex mode */
1015 oparg_T oa; /* operator arguments */
1016 int previous_got_int = FALSE; /* "got_int" was TRUE */
1018 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1019 /* Setup to catch a terminating error from the X server. Just ignore
1020 * it, restore the state and continue. This might not always work
1021 * properly, but at least we don't exit unexpectedly when the X server
1022 * exists while Vim is running in a console. */
1023 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
1025 State = NORMAL;
1026 # ifdef FEAT_VISUAL
1027 VIsual_active = FALSE;
1028 # endif
1029 got_int = TRUE;
1030 need_wait_return = FALSE;
1031 global_busy = FALSE;
1032 exmode_active = 0;
1033 skip_redraw = FALSE;
1034 RedrawingDisabled = 0;
1035 no_wait_return = 0;
1036 # ifdef FEAT_EVAL
1037 emsg_skip = 0;
1038 # endif
1039 emsg_off = 0;
1040 # ifdef FEAT_MOUSE
1041 setmouse();
1042 # endif
1043 settmode(TMODE_RAW);
1044 starttermcap();
1045 scroll_start();
1046 redraw_later_clear();
1048 #endif
1050 clear_oparg(&oa);
1051 while (!cmdwin
1052 #ifdef FEAT_CMDWIN
1053 || cmdwin_result == 0
1054 #endif
1057 #if FEAT_GUI_MACVIM
1058 // Cocoa needs an NSAutoreleasePool in place or it will leak memory.
1059 // This particular pool gets released once every loop.
1060 id autoreleasePool = objc_msgSend(objc_msgSend(
1061 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
1062 ), sel_getUid("init"));
1063 #endif
1065 if (stuff_empty())
1067 did_check_timestamps = FALSE;
1068 if (need_check_timestamps)
1069 check_timestamps(FALSE);
1070 if (need_wait_return) /* if wait_return still needed ... */
1071 wait_return(FALSE); /* ... call it now */
1072 if (need_start_insertmode && goto_im()
1073 #ifdef FEAT_VISUAL
1074 && !VIsual_active
1075 #endif
1078 need_start_insertmode = FALSE;
1079 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1080 /* skip the fileinfo message now, because it would be shown
1081 * after insert mode finishes! */
1082 need_fileinfo = FALSE;
1086 /* Reset "got_int" now that we got back to the main loop. Except when
1087 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1088 * the ":g" command.
1089 * For ":g/pat/vi" we reset "got_int" when used once. When used
1090 * a second time we go back to Ex mode and abort the ":g" command. */
1091 if (got_int)
1093 if (noexmode && global_busy && !exmode_active && previous_got_int)
1095 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1096 * used and keep "got_int" set, so that it aborts ":g". */
1097 exmode_active = EXMODE_NORMAL;
1098 State = NORMAL;
1100 else if (!global_busy || !exmode_active)
1102 if (!quit_more)
1103 (void)vgetc(); /* flush all buffers */
1104 got_int = FALSE;
1106 previous_got_int = TRUE;
1108 else
1109 previous_got_int = FALSE;
1111 if (!exmode_active)
1112 msg_scroll = FALSE;
1113 quit_more = FALSE;
1116 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1117 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1118 * update cursor and redraw.
1120 if (skip_redraw || exmode_active)
1121 skip_redraw = FALSE;
1122 else if (do_redraw || stuff_empty())
1124 #ifdef FEAT_AUTOCMD
1125 /* Trigger CursorMoved if the cursor moved. */
1126 if (!finish_op && has_cursormoved()
1127 && !equalpos(last_cursormoved, curwin->w_cursor))
1129 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1130 last_cursormoved = curwin->w_cursor;
1132 #endif
1134 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1135 /* Scroll-binding for diff mode may have been postponed until
1136 * here. Avoids doing it for every change. */
1137 if (diff_need_scrollbind)
1139 check_scrollbind((linenr_T)0, 0L);
1140 diff_need_scrollbind = FALSE;
1142 #endif
1143 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1144 /* Include a closed fold completely in the Visual area. */
1145 foldAdjustVisual();
1146 #endif
1147 #ifdef FEAT_FOLDING
1149 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1150 * contain the cursor.
1151 * When 'foldopen' is "all", open the fold(s) under the cursor.
1152 * This may mark the window for redrawing.
1154 if (hasAnyFolding(curwin) && !char_avail())
1156 foldCheckClose();
1157 if (fdo_flags & FDO_ALL)
1158 foldOpenCursor();
1160 #endif
1163 * Before redrawing, make sure w_topline is correct, and w_leftcol
1164 * if lines don't wrap, and w_skipcol if lines wrap.
1166 update_topline();
1167 validate_cursor();
1169 #ifdef FEAT_VISUAL
1170 if (VIsual_active)
1171 update_curbuf(INVERTED);/* update inverted part */
1172 else
1173 #endif
1174 if (must_redraw)
1175 update_screen(0);
1176 else if (redraw_cmdline || clear_cmdline)
1177 showmode();
1178 #ifdef FEAT_WINDOWS
1179 redraw_statuslines();
1180 #endif
1181 #ifdef FEAT_TITLE
1182 if (need_maketitle)
1183 maketitle();
1184 #endif
1185 /* display message after redraw */
1186 if (keep_msg != NULL)
1188 char_u *p;
1190 /* msg_attr_keep() will set keep_msg to NULL, must free the
1191 * string here. */
1192 p = keep_msg;
1193 keep_msg = NULL;
1194 msg_attr(p, keep_msg_attr);
1195 vim_free(p);
1197 if (need_fileinfo) /* show file info after redraw */
1199 fileinfo(FALSE, TRUE, FALSE);
1200 need_fileinfo = FALSE;
1203 emsg_on_display = FALSE; /* can delete error message now */
1204 did_emsg = FALSE;
1205 msg_didany = FALSE; /* reset lines_left in msg_start() */
1206 may_clear_sb_text(); /* clear scroll-back text on next msg */
1207 showruler(FALSE);
1209 setcursor();
1210 cursor_on();
1212 do_redraw = FALSE;
1214 #ifdef FEAT_GUI
1215 if (need_mouse_correct)
1216 gui_mouse_correct();
1217 #endif
1220 * Update w_curswant if w_set_curswant has been set.
1221 * Postponed until here to avoid computing w_virtcol too often.
1223 update_curswant();
1225 #ifdef FEAT_EVAL
1227 * May perform garbage collection when waiting for a character, but
1228 * only at the very toplevel. Otherwise we may be using a List or
1229 * Dict internally somewhere.
1230 * "may_garbage_collect" is reset in vgetc() which is invoked through
1231 * do_exmode() and normal_cmd().
1233 may_garbage_collect = (!cmdwin && !noexmode);
1234 #endif
1236 * If we're invoked as ex, do a round of ex commands.
1237 * Otherwise, get and execute a normal mode command.
1239 if (exmode_active)
1241 if (noexmode) /* End of ":global/path/visual" commands */
1242 return;
1243 do_exmode(exmode_active == EXMODE_VIM);
1245 else
1246 normal_cmd(&oa, TRUE);
1248 #if FEAT_GUI_MACVIM
1249 // TODO! Make sure there are no continue statements that will cause
1250 // this not to be called or MacVim will leak memory!
1251 objc_msgSend(autoreleasePool, sel_getUid("release"));
1252 #endif
1257 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO) \
1258 || defined(FEAT_GUI_MACVIM)
1260 * Exit, but leave behind swap files for modified buffers.
1262 void
1263 getout_preserve_modified(exitval)
1264 int exitval;
1266 # if defined(SIGHUP) && defined(SIG_IGN)
1267 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1268 * makes Vim exit and then handling SIGHUP causes various reentrance
1269 * problems. */
1270 signal(SIGHUP, SIG_IGN);
1271 # endif
1273 ml_close_notmod(); /* close all not-modified buffers */
1274 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1275 ml_close_all(FALSE); /* close all memfiles, without deleting */
1276 getout(exitval); /* exit Vim properly */
1278 #endif
1281 /* Prepare proper exit*/
1282 void
1283 prepare_getout()
1285 #ifdef FEAT_AUTOCMD
1286 buf_T *buf;
1287 win_T *wp;
1288 tabpage_T *tp, *next_tp;
1289 #endif
1291 exiting = TRUE;
1293 /* Position the cursor on the last screen line, below all the text */
1294 #ifdef FEAT_GUI
1295 if (!gui.in_use)
1296 #endif
1297 windgoto((int)Rows - 1, 0);
1299 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1300 /* Optionally print hashtable efficiency. */
1301 hash_debug_results();
1302 #endif
1304 #ifdef FEAT_GUI
1305 msg_didany = FALSE;
1306 #endif
1308 #ifdef FEAT_AUTOCMD
1309 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1310 # if defined FEAT_WINDOWS
1311 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1313 next_tp = tp->tp_next;
1314 for (wp = (tp == curtab)
1315 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1317 buf = wp->w_buffer;
1318 if (buf->b_changedtick != -1)
1320 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1321 FALSE, buf);
1322 buf->b_changedtick = -1; /* note that we did it already */
1323 /* start all over, autocommands may mess up the lists */
1324 next_tp = first_tabpage;
1325 break;
1329 # else
1330 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1331 # endif
1333 /* Trigger BufUnload for buffers that are loaded */
1334 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1335 if (buf->b_ml.ml_mfp != NULL)
1337 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1338 FALSE, buf);
1339 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1340 break;
1342 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1343 #endif
1345 #ifdef FEAT_VIMINFO
1346 if (*p_viminfo != NUL)
1347 /* Write out the registers, history, marks etc, to the viminfo file */
1348 write_viminfo(NULL, FALSE);
1349 #endif
1351 #ifdef FEAT_AUTOCMD
1352 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1353 #endif
1355 #ifdef FEAT_PROFILE
1356 profile_dump();
1357 #endif
1359 if (did_emsg
1360 #ifdef FEAT_GUI
1361 || (gui.in_use && msg_didany && p_verbose > 0)
1362 #endif
1365 /* give the user a chance to read the (error) message */
1366 no_wait_return = FALSE;
1367 wait_return(FALSE);
1370 #ifdef FEAT_AUTOCMD
1371 /* Position the cursor again, the autocommands may have moved it */
1372 # ifdef FEAT_GUI
1373 if (!gui.in_use)
1374 # endif
1375 windgoto((int)Rows - 1, 0);
1376 #endif
1378 #ifdef FEAT_MZSCHEME
1379 mzscheme_end();
1380 #endif
1381 #ifdef FEAT_TCL
1382 tcl_end();
1383 #endif
1384 #ifdef FEAT_RUBY
1385 ruby_end();
1386 #endif
1387 #ifdef FEAT_PYTHON
1388 python_end();
1389 #endif
1390 #ifdef FEAT_PERL
1391 perl_end();
1392 #endif
1393 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1394 iconv_end();
1395 #endif
1396 #ifdef FEAT_NETBEANS_INTG
1397 netbeans_end();
1398 #endif
1399 #ifdef FEAT_ODB_EDITOR
1400 odb_end();
1401 #endif
1402 #ifdef FEAT_CSCOPE
1403 cs_end();
1404 #endif
1405 #ifdef FEAT_EVAL
1406 if (garbage_collect_at_exit)
1407 garbage_collect();
1408 #endif
1411 /* Exit properly */
1412 void
1413 getout(exitval)
1414 int exitval;
1416 /* When running in Ex mode an error causes us to exit with a non-zero exit
1417 * code. POSIX requires this, although it's not 100% clear from the
1418 * standard. */
1419 if (exmode_active)
1420 exitval += ex_exitval;
1422 prepare_getout();
1423 mch_exit(exitval);
1427 * Get a (optional) count for a Vim argument.
1429 static int
1430 get_number_arg(p, idx, def)
1431 char_u *p; /* pointer to argument */
1432 int *idx; /* index in argument, is incremented */
1433 int def; /* default value */
1435 if (vim_isdigit(p[*idx]))
1437 def = atoi((char *)&(p[*idx]));
1438 while (vim_isdigit(p[*idx]))
1439 *idx = *idx + 1;
1441 return def;
1444 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1446 * Setup to use the current locale (for ctype() and many other things).
1448 static void
1449 init_locale()
1451 setlocale(LC_ALL, "");
1453 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1454 /* Make sure strtod() uses a decimal point, not a comma. */
1455 setlocale(LC_NUMERIC, "C");
1456 # endif
1458 # ifdef WIN32
1459 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1460 * text while it's expecting text in the current locale. This call avoids
1461 * that. */
1462 setlocale(LC_CTYPE, "C");
1463 # endif
1465 # ifdef FEAT_GETTEXT
1467 int mustfree = FALSE;
1468 char_u *p;
1470 # ifdef DYNAMIC_GETTEXT
1471 /* Initialize the gettext library */
1472 dyn_libintl_init(NULL);
1473 # endif
1474 /* expand_env() doesn't work yet, because chartab[] is not initialized
1475 * yet, call vim_getenv() directly */
1476 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1477 if (p != NULL && *p != NUL)
1479 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1480 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1482 if (mustfree)
1483 vim_free(p);
1484 textdomain(VIMPACKAGE);
1486 # endif
1488 #endif
1491 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1492 * If the executable name starts with "r" we disable shell commands.
1493 * If the next character is "e" we run in Easy mode.
1494 * If the next character is "g" we run the GUI version.
1495 * If the next characters are "view" we start in readonly mode.
1496 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1497 * If the next characters are "ex" we start in Ex mode. If it's followed
1498 * by "im" use improved Ex mode.
1500 static void
1501 parse_command_name(parmp)
1502 mparm_T *parmp;
1504 char_u *initstr;
1506 initstr = gettail((char_u *)parmp->argv[0]);
1508 #ifdef MACOS_X_UNIX
1509 /* An issue has been seen when launching Vim in such a way that
1510 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1511 * executable or a symbolic link of it. Until this issue is resolved
1512 * we prohibit the GUI from being used.
1514 if (STRCMP(initstr, parmp->argv[0]) == 0)
1515 disallow_gui = TRUE;
1517 /* TODO: On MacOS X default to gui if argv[0] ends in:
1518 * /Vim.app/Contents/MacOS/Vim */
1519 #endif
1521 #ifdef FEAT_EVAL
1522 set_vim_var_string(VV_PROGNAME, initstr, -1);
1523 #endif
1525 if (TOLOWER_ASC(initstr[0]) == 'r')
1527 restricted = TRUE;
1528 ++initstr;
1531 /* Avoid using evim mode for "editor". */
1532 if (TOLOWER_ASC(initstr[0]) == 'e'
1533 && (TOLOWER_ASC(initstr[1]) == 'v'
1534 || TOLOWER_ASC(initstr[1]) == 'g'))
1536 #ifdef FEAT_GUI
1537 gui.starting = TRUE;
1538 #endif
1539 parmp->evim_mode = TRUE;
1540 ++initstr;
1543 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1544 if (TOLOWER_ASC(initstr[0]) == 'g')
1546 main_start_gui();
1547 #ifdef FEAT_GUI
1548 ++initstr;
1549 #endif
1552 if (STRNICMP(initstr, "view", 4) == 0)
1554 readonlymode = TRUE;
1555 curbuf->b_p_ro = TRUE;
1556 p_uc = 10000; /* don't update very often */
1557 initstr += 4;
1559 else if (STRNICMP(initstr, "vim", 3) == 0)
1560 initstr += 3;
1562 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1563 if (STRICMP(initstr, "diff") == 0)
1565 #ifdef FEAT_DIFF
1566 parmp->diff_mode = TRUE;
1567 #else
1568 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1569 mch_errmsg("\n");
1570 mch_exit(2);
1571 #endif
1574 if (STRNICMP(initstr, "ex", 2) == 0)
1576 if (STRNICMP(initstr + 2, "im", 2) == 0)
1577 exmode_active = EXMODE_VIM;
1578 else
1579 exmode_active = EXMODE_NORMAL;
1580 change_compatible(TRUE); /* set 'compatible' */
1585 * Get the name of the display, before gui_prepare() removes it from
1586 * argv[]. Used for the xterm-clipboard display.
1588 * Also find the --server... arguments and --socketid and --windowid
1590 /*ARGSUSED*/
1591 static void
1592 early_arg_scan(parmp)
1593 mparm_T *parmp;
1595 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
1596 int argc = parmp->argc;
1597 char **argv = parmp->argv;
1598 int i;
1600 for (i = 1; i < argc; i++)
1602 if (STRCMP(argv[i], "--") == 0)
1603 break;
1604 # ifdef FEAT_XCLIPBOARD
1605 else if (STRICMP(argv[i], "-display") == 0
1606 # if defined(FEAT_GUI_GTK)
1607 || STRICMP(argv[i], "--display") == 0
1608 # endif
1611 if (i == argc - 1)
1612 mainerr_arg_missing((char_u *)argv[i]);
1613 xterm_display = argv[++i];
1615 # endif
1616 # ifdef FEAT_CLIENTSERVER
1617 else if (STRICMP(argv[i], "--servername") == 0)
1619 if (i == argc - 1)
1620 mainerr_arg_missing((char_u *)argv[i]);
1621 parmp->serverName_arg = (char_u *)argv[++i];
1623 else if (STRICMP(argv[i], "--serverlist") == 0)
1624 parmp->serverArg = TRUE;
1625 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1627 parmp->serverArg = TRUE;
1628 # ifdef FEAT_GUI
1629 if (strstr(argv[i], "-wait") != 0)
1630 /* don't fork() when starting the GUI to edit files ourself */
1631 gui.dofork = FALSE;
1632 # endif
1634 # endif
1636 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1637 # ifdef FEAT_GUI_W32
1638 else if (STRICMP(argv[i], "--windowid") == 0)
1639 # else
1640 else if (STRICMP(argv[i], "--socketid") == 0)
1641 # endif
1643 long_u id;
1644 int count;
1646 if (i == argc - 1)
1647 mainerr_arg_missing((char_u *)argv[i]);
1648 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1649 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1650 else
1651 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1652 if (count != 1)
1653 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1654 else
1655 # ifdef FEAT_GUI_W32
1656 win_socket_id = id;
1657 # else
1658 gtk_socket_id = id;
1659 # endif
1660 i++;
1662 # endif
1663 # ifdef FEAT_GUI_GTK
1664 else if (STRICMP(argv[i], "--echo-wid") == 0)
1665 echo_wid_arg = TRUE;
1666 # endif
1668 #endif
1672 * Scan the command line arguments.
1674 static void
1675 command_line_scan(parmp)
1676 mparm_T *parmp;
1678 int argc = parmp->argc;
1679 char **argv = parmp->argv;
1680 int argv_idx; /* index in argv[n][] */
1681 int had_minmin = FALSE; /* found "--" argument */
1682 int want_argument; /* option argument with argument */
1683 int c;
1684 char_u *p = NULL;
1685 long n;
1687 --argc;
1688 ++argv;
1689 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1690 while (argc > 0)
1693 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1695 if (argv[0][0] == '+' && !had_minmin)
1697 if (parmp->n_commands >= MAX_ARG_CMDS)
1698 mainerr(ME_EXTRA_CMD, NULL);
1699 argv_idx = -1; /* skip to next argument */
1700 if (argv[0][1] == NUL)
1701 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1702 else
1703 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1707 * Optional argument.
1709 else if (argv[0][0] == '-' && !had_minmin)
1711 want_argument = FALSE;
1712 c = argv[0][argv_idx++];
1713 #ifdef VMS
1715 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1716 * and "-/X" as "-X".
1718 if (c == '/')
1720 c = argv[0][argv_idx++];
1721 c = TOUPPER_ASC(c);
1723 else
1724 c = TOLOWER_ASC(c);
1725 #endif
1726 switch (c)
1728 case NUL: /* "vim -" read from stdin */
1729 /* "ex -" silent mode */
1730 if (exmode_active)
1731 silent_mode = TRUE;
1732 else
1734 if (parmp->edit_type != EDIT_NONE)
1735 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1736 parmp->edit_type = EDIT_STDIN;
1737 read_cmd_fd = 2; /* read from stderr instead of stdin */
1739 argv_idx = -1; /* skip to next argument */
1740 break;
1742 case '-': /* "--" don't take any more option arguments */
1743 /* "--help" give help message */
1744 /* "--version" give version message */
1745 /* "--literal" take files literally */
1746 /* "--nofork" don't fork */
1747 /* "--noplugin[s]" skip plugins */
1748 /* "--cmd <cmd>" execute cmd before vimrc */
1749 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1750 usage();
1751 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1753 Columns = 80; /* need to init Columns */
1754 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1755 list_version();
1756 msg_putchar('\n');
1757 msg_didout = FALSE;
1758 mch_exit(0);
1760 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1762 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1763 parmp->literal = TRUE;
1764 #endif
1766 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1768 #ifdef FEAT_GUI
1769 gui.dofork = FALSE; /* don't fork() when starting GUI */
1770 #endif
1772 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1773 p_lpl = FALSE;
1774 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1776 want_argument = TRUE;
1777 argv_idx += 3;
1779 #ifdef FEAT_CLIENTSERVER
1780 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1781 ; /* already processed -- no arg */
1782 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1783 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1785 /* already processed -- snatch the following arg */
1786 if (argc > 1)
1788 --argc;
1789 ++argv;
1792 #endif
1793 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1794 # ifdef FEAT_GUI_GTK
1795 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1796 # else
1797 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1798 # endif
1800 /* already processed -- snatch the following arg */
1801 if (argc > 1)
1803 --argc;
1804 ++argv;
1807 #endif
1808 #ifdef FEAT_GUI_GTK
1809 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1811 /* already processed, skip */
1813 #endif
1814 else
1816 if (argv[0][argv_idx])
1817 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1818 had_minmin = TRUE;
1820 if (!want_argument)
1821 argv_idx = -1; /* skip to next argument */
1822 break;
1824 case 'A': /* "-A" start in Arabic mode */
1825 #ifdef FEAT_ARABIC
1826 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1827 #else
1828 mch_errmsg(_(e_noarabic));
1829 mch_exit(2);
1830 #endif
1831 break;
1833 case 'b': /* "-b" binary mode */
1834 /* Needs to be effective before expanding file names, because
1835 * for Win32 this makes us edit a shortcut file itself,
1836 * instead of the file it links to. */
1837 set_options_bin(curbuf->b_p_bin, 1, 0);
1838 curbuf->b_p_bin = 1; /* binary file I/O */
1839 break;
1841 case 'C': /* "-C" Compatible */
1842 change_compatible(TRUE);
1843 break;
1845 case 'e': /* "-e" Ex mode */
1846 exmode_active = EXMODE_NORMAL;
1847 break;
1849 case 'E': /* "-E" Improved Ex mode */
1850 exmode_active = EXMODE_VIM;
1851 break;
1853 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1854 window directly, not with newcli */
1855 #ifdef FEAT_GUI
1856 gui.dofork = FALSE; /* don't fork() when starting GUI */
1857 #endif
1858 break;
1860 case 'g': /* "-g" start GUI */
1861 main_start_gui();
1862 break;
1864 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1865 #ifdef FEAT_FKMAP
1866 p_fkmap = TRUE;
1867 set_option_value((char_u *)"rl", 1L, NULL, 0);
1868 #else
1869 mch_errmsg(_(e_nofarsi));
1870 mch_exit(2);
1871 #endif
1872 break;
1874 case 'h': /* "-h" give help message */
1875 #ifdef FEAT_GUI_GNOME
1876 /* Tell usage() to exit for "gvim". */
1877 gui.starting = FALSE;
1878 #endif
1879 usage();
1880 break;
1882 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1883 #ifdef FEAT_RIGHTLEFT
1884 p_hkmap = TRUE;
1885 set_option_value((char_u *)"rl", 1L, NULL, 0);
1886 #else
1887 mch_errmsg(_(e_nohebrew));
1888 mch_exit(2);
1889 #endif
1890 break;
1892 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1893 #ifdef FEAT_LISP
1894 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1895 p_sm = TRUE;
1896 #endif
1897 break;
1899 case 'M': /* "-M" no changes or writing of files */
1900 reset_modifiable();
1901 /* FALLTHROUGH */
1903 case 'm': /* "-m" no writing of files */
1904 p_write = FALSE;
1905 break;
1907 case 'y': /* "-y" easy mode */
1908 #ifdef FEAT_GUI
1909 gui.starting = TRUE; /* start GUI a bit later */
1910 #endif
1911 parmp->evim_mode = TRUE;
1912 break;
1914 case 'N': /* "-N" Nocompatible */
1915 change_compatible(FALSE);
1916 break;
1918 case 'n': /* "-n" no swap file */
1919 parmp->no_swap_file = TRUE;
1920 break;
1922 case 'p': /* "-p[N]" open N tab pages */
1923 #if defined(TARGET_API_MAC_OSX) && !defined(FEAT_GUI_MACVIM)
1924 /* For some reason on MacOS X, an argument like:
1925 -psn_0_10223617 is passed in when invoke from Finder
1926 or with the 'open' command */
1927 if (argv[0][argv_idx] == 's')
1929 argv_idx = -1; /* bypass full -psn */
1930 main_start_gui();
1931 break;
1933 #endif
1934 #ifdef FEAT_WINDOWS
1935 /* default is 0: open window for each file */
1936 parmp->window_count = get_number_arg((char_u *)argv[0],
1937 &argv_idx, 0);
1938 parmp->window_layout = WIN_TABS;
1939 #endif
1940 break;
1942 case 'o': /* "-o[N]" open N horizontal split windows */
1943 #ifdef FEAT_WINDOWS
1944 /* default is 0: open window for each file */
1945 parmp->window_count = get_number_arg((char_u *)argv[0],
1946 &argv_idx, 0);
1947 parmp->window_layout = WIN_HOR;
1948 #endif
1949 break;
1951 case 'O': /* "-O[N]" open N vertical split windows */
1952 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1953 /* default is 0: open window for each file */
1954 parmp->window_count = get_number_arg((char_u *)argv[0],
1955 &argv_idx, 0);
1956 parmp->window_layout = WIN_VER;
1957 #endif
1958 break;
1960 #ifdef FEAT_QUICKFIX
1961 case 'q': /* "-q" QuickFix mode */
1962 if (parmp->edit_type != EDIT_NONE)
1963 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1964 parmp->edit_type = EDIT_QF;
1965 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1967 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1968 argv_idx = -1;
1970 else if (argc > 1) /* "-q {errorfile}" */
1971 want_argument = TRUE;
1972 break;
1973 #endif
1975 case 'R': /* "-R" readonly mode */
1976 readonlymode = TRUE;
1977 curbuf->b_p_ro = TRUE;
1978 p_uc = 10000; /* don't update very often */
1979 break;
1981 case 'r': /* "-r" recovery mode */
1982 case 'L': /* "-L" recovery mode */
1983 recoverymode = 1;
1984 break;
1986 case 's':
1987 if (exmode_active) /* "-s" silent (batch) mode */
1988 silent_mode = TRUE;
1989 else /* "-s {scriptin}" read from script file */
1990 want_argument = TRUE;
1991 break;
1993 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1994 if (parmp->edit_type != EDIT_NONE)
1995 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1996 parmp->edit_type = EDIT_TAG;
1997 if (argv[0][argv_idx]) /* "-t{tag}" */
1999 parmp->tagname = (char_u *)argv[0] + argv_idx;
2000 argv_idx = -1;
2002 else /* "-t {tag}" */
2003 want_argument = TRUE;
2004 break;
2006 #ifdef FEAT_EVAL
2007 case 'D': /* "-D" Debugging */
2008 parmp->use_debug_break_level = 9999;
2009 break;
2010 #endif
2011 #ifdef FEAT_DIFF
2012 case 'd': /* "-d" 'diff' */
2013 # ifdef AMIGA
2014 /* check for "-dev {device}" */
2015 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
2016 want_argument = TRUE;
2017 else
2018 # endif
2019 parmp->diff_mode = TRUE;
2020 break;
2021 #endif
2022 case 'V': /* "-V{N}" Verbose level */
2023 /* default is 10: a little bit verbose */
2024 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2025 if (argv[0][argv_idx] != NUL)
2027 set_option_value((char_u *)"verbosefile", 0L,
2028 (char_u *)argv[0] + argv_idx, 0);
2029 argv_idx = (int)STRLEN(argv[0]);
2031 break;
2033 case 'v': /* "-v" Vi-mode (as if called "vi") */
2034 exmode_active = 0;
2035 #ifdef FEAT_GUI
2036 gui.starting = FALSE; /* don't start GUI */
2037 #endif
2038 break;
2040 case 'w': /* "-w{number}" set window height */
2041 /* "-w {scriptout}" write to script */
2042 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2044 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2045 set_option_value((char_u *)"window", n, NULL, 0);
2046 break;
2048 want_argument = TRUE;
2049 break;
2051 #ifdef FEAT_CRYPT
2052 case 'x': /* "-x" encrypted reading/writing of files */
2053 parmp->ask_for_key = TRUE;
2054 break;
2055 #endif
2057 case 'X': /* "-X" don't connect to X server */
2058 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2059 x_no_connect = TRUE;
2060 #endif
2061 break;
2063 case 'Z': /* "-Z" restricted mode */
2064 restricted = TRUE;
2065 break;
2067 case 'c': /* "-c{command}" or "-c {command}" execute
2068 command */
2069 if (argv[0][argv_idx] != NUL)
2071 if (parmp->n_commands >= MAX_ARG_CMDS)
2072 mainerr(ME_EXTRA_CMD, NULL);
2073 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2074 + argv_idx;
2075 argv_idx = -1;
2076 break;
2078 /*FALLTHROUGH*/
2079 case 'S': /* "-S {file}" execute Vim script */
2080 case 'i': /* "-i {viminfo}" use for viminfo */
2081 #ifndef FEAT_DIFF
2082 case 'd': /* "-d {device}" device (for Amiga) */
2083 #endif
2084 case 'T': /* "-T {terminal}" terminal name */
2085 case 'u': /* "-u {vimrc}" vim inits file */
2086 case 'U': /* "-U {gvimrc}" gvim inits file */
2087 case 'W': /* "-W {scriptout}" overwrite */
2088 #ifdef FEAT_GUI_W32
2089 case 'P': /* "-P {parent title}" MDI parent */
2090 #endif
2091 want_argument = TRUE;
2092 break;
2094 default:
2095 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2099 * Handle option arguments with argument.
2101 if (want_argument)
2104 * Check for garbage immediately after the option letter.
2106 if (argv[0][argv_idx] != NUL)
2107 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2109 --argc;
2110 if (argc < 1 && c != 'S')
2111 mainerr_arg_missing((char_u *)argv[0]);
2112 ++argv;
2113 argv_idx = -1;
2115 switch (c)
2117 case 'c': /* "-c {command}" execute command */
2118 case 'S': /* "-S {file}" execute Vim script */
2119 if (parmp->n_commands >= MAX_ARG_CMDS)
2120 mainerr(ME_EXTRA_CMD, NULL);
2121 if (c == 'S')
2123 char *a;
2125 if (argc < 1)
2126 /* "-S" without argument: use default session file
2127 * name. */
2128 a = SESSION_FILE;
2129 else if (argv[0][0] == '-')
2131 /* "-S" followed by another option: use default
2132 * session file name. */
2133 a = SESSION_FILE;
2134 ++argc;
2135 --argv;
2137 else
2138 a = argv[0];
2139 p = alloc((unsigned)(STRLEN(a) + 4));
2140 if (p == NULL)
2141 mch_exit(2);
2142 sprintf((char *)p, "so %s", a);
2143 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2144 parmp->commands[parmp->n_commands++] = p;
2146 else
2147 parmp->commands[parmp->n_commands++] =
2148 (char_u *)argv[0];
2149 break;
2151 case '-': /* "--cmd {command}" execute command */
2152 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2153 mainerr(ME_EXTRA_CMD, NULL);
2154 parmp->pre_commands[parmp->n_pre_commands++] =
2155 (char_u *)argv[0];
2156 break;
2158 /* case 'd': -d {device} is handled in mch_check_win() for the
2159 * Amiga */
2161 #ifdef FEAT_QUICKFIX
2162 case 'q': /* "-q {errorfile}" QuickFix mode */
2163 parmp->use_ef = (char_u *)argv[0];
2164 break;
2165 #endif
2167 case 'i': /* "-i {viminfo}" use for viminfo */
2168 use_viminfo = (char_u *)argv[0];
2169 break;
2171 case 's': /* "-s {scriptin}" read from script file */
2172 if (scriptin[0] != NULL)
2174 scripterror:
2175 mch_errmsg(_("Attempt to open script file again: \""));
2176 mch_errmsg(argv[-1]);
2177 mch_errmsg(" ");
2178 mch_errmsg(argv[0]);
2179 mch_errmsg("\"\n");
2180 mch_exit(2);
2182 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2184 mch_errmsg(_("Cannot open for reading: \""));
2185 mch_errmsg(argv[0]);
2186 mch_errmsg("\"\n");
2187 mch_exit(2);
2189 if (save_typebuf() == FAIL)
2190 mch_exit(2); /* out of memory */
2191 break;
2193 case 't': /* "-t {tag}" */
2194 parmp->tagname = (char_u *)argv[0];
2195 break;
2197 case 'T': /* "-T {terminal}" terminal name */
2199 * The -T term argument is always available and when
2200 * HAVE_TERMLIB is supported it overrides the environment
2201 * variable TERM.
2203 #ifdef FEAT_GUI
2204 if (term_is_gui((char_u *)argv[0]))
2205 gui.starting = TRUE; /* start GUI a bit later */
2206 else
2207 #endif
2208 parmp->term = (char_u *)argv[0];
2209 break;
2211 case 'u': /* "-u {vimrc}" vim inits file */
2212 parmp->use_vimrc = (char_u *)argv[0];
2213 break;
2215 case 'U': /* "-U {gvimrc}" gvim inits file */
2216 #ifdef FEAT_GUI
2217 use_gvimrc = (char_u *)argv[0];
2218 #endif
2219 break;
2221 case 'w': /* "-w {nr}" 'window' value */
2222 /* "-w {scriptout}" append to script file */
2223 if (vim_isdigit(*((char_u *)argv[0])))
2225 argv_idx = 0;
2226 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2227 set_option_value((char_u *)"window", n, NULL, 0);
2228 argv_idx = -1;
2229 break;
2231 /*FALLTHROUGH*/
2232 case 'W': /* "-W {scriptout}" overwrite script file */
2233 if (scriptout != NULL)
2234 goto scripterror;
2235 if ((scriptout = mch_fopen(argv[0],
2236 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2238 mch_errmsg(_("Cannot open for script output: \""));
2239 mch_errmsg(argv[0]);
2240 mch_errmsg("\"\n");
2241 mch_exit(2);
2243 break;
2245 #ifdef FEAT_GUI_W32
2246 case 'P': /* "-P {parent title}" MDI parent */
2247 gui_mch_set_parent(argv[0]);
2248 break;
2249 #endif
2255 * File name argument.
2257 else
2259 argv_idx = -1; /* skip to next argument */
2261 /* Check for only one type of editing. */
2262 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2263 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2264 parmp->edit_type = EDIT_FILE;
2266 #ifdef MSWIN
2267 /* Remember if the argument was a full path before changing
2268 * slashes to backslashes. */
2269 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2270 parmp->full_path = TRUE;
2271 #endif
2273 /* Add the file to the global argument list. */
2274 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2275 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2276 mch_exit(2);
2277 #ifdef FEAT_DIFF
2278 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2279 && !mch_isdir(alist_name(&GARGLIST[0])))
2281 char_u *r;
2283 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2284 if (r != NULL)
2286 vim_free(p);
2287 p = r;
2290 #endif
2291 #if defined(__CYGWIN32__) && !defined(WIN32)
2293 * If vim is invoked by non-Cygwin tools, convert away any
2294 * DOS paths, so things like .swp files are created correctly.
2295 * Look for evidence of non-Cygwin paths before we bother.
2296 * This is only for when using the Unix files.
2298 if (strpbrk(p, "\\:") != NULL)
2300 char posix_path[PATH_MAX];
2302 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2303 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2304 # else
2305 cygwin_conv_to_posix_path(p, posix_path);
2306 # endif
2307 vim_free(p);
2308 p = vim_strsave(posix_path);
2309 if (p == NULL)
2310 mch_exit(2);
2312 #endif
2314 #ifdef USE_FNAME_CASE
2315 /* Make the case of the file name match the actual file. */
2316 fname_case(p, 0);
2317 #endif
2319 alist_add(&global_alist, p,
2320 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2321 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2322 #else
2323 2 /* add buffer number now and use curbuf */
2324 #endif
2327 #if defined(FEAT_MBYTE) && defined(WIN32)
2329 /* Remember this argument has been added to the argument list.
2330 * Needed when 'encoding' is changed. */
2331 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2332 # ifdef FEAT_DIFF
2333 parmp->diff_mode
2334 # else
2335 FALSE
2336 # endif
2339 #endif
2343 * If there are no more letters after the current "-", go to next
2344 * argument. argv_idx is set to -1 when the current argument is to be
2345 * skipped.
2347 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2349 --argc;
2350 ++argv;
2351 argv_idx = 1;
2355 #ifdef FEAT_EVAL
2356 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2357 * one. */
2358 if (parmp->n_commands > 0)
2360 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2361 if (p != NULL)
2363 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2364 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2365 vim_free(p);
2368 #endif
2372 * Print a warning if stdout is not a terminal.
2373 * When starting in Ex mode and commands come from a file, set Silent mode.
2375 static void
2376 check_tty(parmp)
2377 mparm_T *parmp;
2379 int input_isatty; /* is active input a terminal? */
2381 input_isatty = mch_input_isatty();
2382 if (exmode_active)
2384 if (!input_isatty)
2385 silent_mode = TRUE;
2387 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2388 #ifdef FEAT_GUI
2389 /* don't want the delay when started from the desktop */
2390 && !gui.starting
2391 #endif
2394 #ifdef NBDEBUG
2396 * This shouldn't be necessary. But if I run netbeans with the log
2397 * output coming to the console and XOpenDisplay fails, I get vim
2398 * trying to start with input/output to my console tty. This fills my
2399 * input buffer so fast I can't even kill the process in under 2
2400 * minutes (and it beeps continuously the whole time :-)
2402 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2404 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2405 exit(1);
2407 #endif
2408 if (!parmp->stdout_isatty)
2409 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2410 if (!input_isatty)
2411 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2412 out_flush();
2413 if (scriptin[0] == NULL)
2414 ui_delay(2000L, TRUE);
2415 TIME_MSG("Warning delay");
2420 * Read text from stdin.
2422 static void
2423 read_stdin()
2425 int i;
2427 #if defined(HAS_SWAP_EXISTS_ACTION)
2428 /* When getting the ATTENTION prompt here, use a dialog */
2429 swap_exists_action = SEA_DIALOG;
2430 #endif
2431 no_wait_return = TRUE;
2432 i = msg_didany;
2433 set_buflisted(TRUE);
2434 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2435 no_wait_return = FALSE;
2436 msg_didany = i;
2437 TIME_MSG("reading stdin");
2438 #if defined(HAS_SWAP_EXISTS_ACTION)
2439 check_swap_exists_action();
2440 #endif
2441 #if !(defined(AMIGA) || defined(MACOS))
2443 * Close stdin and dup it from stderr. Required for GPM to work
2444 * properly, and for running external commands.
2445 * Is there any other system that cannot do this?
2447 close(0);
2448 dup(2);
2449 #endif
2453 * Create the requested number of windows and edit buffers in them.
2454 * Also does recovery if "recoverymode" set.
2456 /*ARGSUSED*/
2457 static void
2458 create_windows(parmp)
2459 mparm_T *parmp;
2461 #ifdef FEAT_WINDOWS
2462 int dorewind;
2463 int done = 0;
2466 * Create the number of windows that was requested.
2468 if (parmp->window_count == -1) /* was not set */
2469 parmp->window_count = 1;
2470 if (parmp->window_count == 0)
2471 parmp->window_count = GARGCOUNT;
2472 if (parmp->window_count > 1)
2474 /* Don't change the windows if there was a command in .vimrc that
2475 * already split some windows */
2476 if (parmp->window_layout == 0)
2477 parmp->window_layout = WIN_HOR;
2478 if (parmp->window_layout == WIN_TABS)
2480 parmp->window_count = make_tabpages(parmp->window_count);
2481 TIME_MSG("making tab pages");
2483 else if (firstwin->w_next == NULL)
2485 parmp->window_count = make_windows(parmp->window_count,
2486 parmp->window_layout == WIN_VER);
2487 TIME_MSG("making windows");
2489 else
2490 parmp->window_count = win_count();
2492 else
2493 parmp->window_count = 1;
2494 #endif
2496 if (recoverymode) /* do recover */
2498 msg_scroll = TRUE; /* scroll message up */
2499 ml_recover();
2500 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2501 getout(1);
2502 do_modelines(0); /* do modelines */
2504 else
2507 * Open a buffer for windows that don't have one yet.
2508 * Commands in the .vimrc might have loaded a file or split the window.
2509 * Watch out for autocommands that delete a window.
2511 #ifdef FEAT_AUTOCMD
2513 * Don't execute Win/Buf Enter/Leave autocommands here
2515 ++autocmd_no_enter;
2516 ++autocmd_no_leave;
2517 #endif
2518 #ifdef FEAT_WINDOWS
2519 dorewind = TRUE;
2520 while (done++ < 1000)
2522 if (dorewind)
2524 if (parmp->window_layout == WIN_TABS)
2525 goto_tabpage(1);
2526 else
2527 curwin = firstwin;
2529 else if (parmp->window_layout == WIN_TABS)
2531 if (curtab->tp_next == NULL)
2532 break;
2533 goto_tabpage(0);
2535 else
2537 if (curwin->w_next == NULL)
2538 break;
2539 curwin = curwin->w_next;
2541 dorewind = FALSE;
2542 #endif
2543 curbuf = curwin->w_buffer;
2544 if (curbuf->b_ml.ml_mfp == NULL)
2546 #ifdef FEAT_FOLDING
2547 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2548 if (p_fdls >= 0)
2549 curwin->w_p_fdl = p_fdls;
2550 #endif
2551 #if defined(HAS_SWAP_EXISTS_ACTION)
2552 /* When getting the ATTENTION prompt here, use a dialog */
2553 swap_exists_action = SEA_DIALOG;
2554 #endif
2555 set_buflisted(TRUE);
2556 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2558 #if defined(HAS_SWAP_EXISTS_ACTION)
2559 if (swap_exists_action == SEA_QUIT)
2561 if (got_int || only_one_window())
2563 /* abort selected or quit and only one window */
2564 did_emsg = FALSE; /* avoid hit-enter prompt */
2565 getout(1);
2567 /* We can't close the window, it would disturb what
2568 * happens next. Clear the file name and set the arg
2569 * index to -1 to delete it later. */
2570 setfname(curbuf, NULL, NULL, FALSE);
2571 curwin->w_arg_idx = -1;
2572 swap_exists_action = SEA_NONE;
2574 else
2575 handle_swap_exists(NULL);
2576 #endif
2577 #ifdef FEAT_AUTOCMD
2578 dorewind = TRUE; /* start again */
2579 #endif
2581 #ifdef FEAT_WINDOWS
2582 ui_breakcheck();
2583 if (got_int)
2585 (void)vgetc(); /* only break the file loading, not the rest */
2586 break;
2589 #endif
2590 #ifdef FEAT_WINDOWS
2591 if (parmp->window_layout == WIN_TABS)
2592 goto_tabpage(1);
2593 else
2594 curwin = firstwin;
2595 curbuf = curwin->w_buffer;
2596 #endif
2597 #ifdef FEAT_AUTOCMD
2598 --autocmd_no_enter;
2599 --autocmd_no_leave;
2600 #endif
2604 #ifdef FEAT_WINDOWS
2606 * If opened more than one window, start editing files in the other
2607 * windows. make_windows() has already opened the windows.
2609 static void
2610 edit_buffers(parmp)
2611 mparm_T *parmp;
2613 int arg_idx; /* index in argument list */
2614 int i;
2615 int advance = TRUE;
2617 # ifdef FEAT_AUTOCMD
2619 * Don't execute Win/Buf Enter/Leave autocommands here
2621 ++autocmd_no_enter;
2622 ++autocmd_no_leave;
2623 # endif
2625 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2626 if (curwin->w_arg_idx == -1)
2628 win_close(curwin, TRUE);
2629 advance = FALSE;
2632 arg_idx = 1;
2633 for (i = 1; i < parmp->window_count; ++i)
2635 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2636 if (curwin->w_arg_idx == -1)
2638 ++arg_idx;
2639 win_close(curwin, TRUE);
2640 advance = FALSE;
2641 continue;
2644 if (advance)
2646 if (parmp->window_layout == WIN_TABS)
2648 if (curtab->tp_next == NULL) /* just checking */
2649 break;
2650 goto_tabpage(0);
2652 else
2654 if (curwin->w_next == NULL) /* just checking */
2655 break;
2656 win_enter(curwin->w_next, FALSE);
2659 advance = TRUE;
2661 /* Only open the file if there is no file in this window yet (that can
2662 * happen when .vimrc contains ":sall"). */
2663 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2665 curwin->w_arg_idx = arg_idx;
2666 /* Edit file from arg list, if there is one. When "Quit" selected
2667 * at the ATTENTION prompt close the window. */
2668 # ifdef HAS_SWAP_EXISTS_ACTION
2669 swap_exists_did_quit = FALSE;
2670 # endif
2671 (void)do_ecmd(0, arg_idx < GARGCOUNT
2672 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2673 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
2674 # ifdef HAS_SWAP_EXISTS_ACTION
2675 if (swap_exists_did_quit)
2677 /* abort or quit selected */
2678 if (got_int || only_one_window())
2680 /* abort selected and only one window */
2681 did_emsg = FALSE; /* avoid hit-enter prompt */
2682 getout(1);
2684 win_close(curwin, TRUE);
2685 advance = FALSE;
2687 # endif
2688 if (arg_idx == GARGCOUNT - 1)
2689 arg_had_last = TRUE;
2690 ++arg_idx;
2692 ui_breakcheck();
2693 if (got_int)
2695 (void)vgetc(); /* only break the file loading, not the rest */
2696 break;
2700 if (parmp->window_layout == WIN_TABS)
2701 goto_tabpage(1);
2702 # ifdef FEAT_AUTOCMD
2703 --autocmd_no_enter;
2704 # endif
2705 win_enter(firstwin, FALSE); /* back to first window */
2706 # ifdef FEAT_AUTOCMD
2707 --autocmd_no_leave;
2708 # endif
2709 TIME_MSG("editing files in windows");
2710 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2711 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2713 #endif /* FEAT_WINDOWS */
2716 * Execute the commands from --cmd arguments "cmds[cnt]".
2718 static void
2719 exe_pre_commands(parmp)
2720 mparm_T *parmp;
2722 char_u **cmds = parmp->pre_commands;
2723 int cnt = parmp->n_pre_commands;
2724 int i;
2726 if (cnt > 0)
2728 curwin->w_cursor.lnum = 0; /* just in case.. */
2729 sourcing_name = (char_u *)_("pre-vimrc command line");
2730 # ifdef FEAT_EVAL
2731 current_SID = SID_CMDARG;
2732 # endif
2733 for (i = 0; i < cnt; ++i)
2734 do_cmdline_cmd(cmds[i]);
2735 sourcing_name = NULL;
2736 # ifdef FEAT_EVAL
2737 current_SID = 0;
2738 # endif
2739 TIME_MSG("--cmd commands");
2744 * Execute "+", "-c" and "-S" arguments.
2746 static void
2747 exe_commands(parmp)
2748 mparm_T *parmp;
2750 int i;
2753 * We start commands on line 0, make "vim +/pat file" match a
2754 * pattern on line 1. But don't move the cursor when an autocommand
2755 * with g`" was used.
2757 msg_scroll = TRUE;
2758 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2759 curwin->w_cursor.lnum = 0;
2760 sourcing_name = (char_u *)"command line";
2761 #ifdef FEAT_EVAL
2762 current_SID = SID_CARG;
2763 #endif
2764 for (i = 0; i < parmp->n_commands; ++i)
2766 do_cmdline_cmd(parmp->commands[i]);
2767 if (parmp->cmds_tofree[i])
2768 vim_free(parmp->commands[i]);
2770 sourcing_name = NULL;
2771 #ifdef FEAT_EVAL
2772 current_SID = 0;
2773 #endif
2774 if (curwin->w_cursor.lnum == 0)
2775 curwin->w_cursor.lnum = 1;
2777 if (!exmode_active)
2778 msg_scroll = FALSE;
2780 #ifdef FEAT_QUICKFIX
2781 /* When started with "-q errorfile" jump to first error again. */
2782 if (parmp->edit_type == EDIT_QF)
2783 qf_jump(NULL, 0, 0, FALSE);
2784 #endif
2785 TIME_MSG("executing command arguments");
2789 * Source startup scripts.
2791 static void
2792 source_startup_scripts(parmp)
2793 mparm_T *parmp;
2795 int i;
2798 * For "evim" source evim.vim first of all, so that the user can overrule
2799 * any things he doesn't like.
2801 if (parmp->evim_mode)
2803 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2804 TIME_MSG("source evim file");
2808 * If -u argument given, use only the initializations from that file and
2809 * nothing else.
2811 if (parmp->use_vimrc != NULL)
2813 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2814 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2816 #ifdef FEAT_GUI
2817 if (use_gvimrc == NULL) /* don't load gvimrc either */
2818 use_gvimrc = parmp->use_vimrc;
2819 #endif
2820 if (parmp->use_vimrc[2] == 'N')
2821 p_lpl = FALSE; /* don't load plugins either */
2823 else
2825 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2826 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2829 else if (!silent_mode)
2831 #ifdef AMIGA
2832 struct Process *proc = (struct Process *)FindTask(0L);
2833 APTR save_winptr = proc->pr_WindowPtr;
2835 /* Avoid a requester here for a volume that doesn't exist. */
2836 proc->pr_WindowPtr = (APTR)-1L;
2837 #endif
2840 * Get system wide defaults, if the file name is defined.
2842 #ifdef SYS_VIMRC_FILE
2843 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2844 #endif
2845 #if defined(MACOS_X) && !defined(FEAT_GUI_MACVIM)
2846 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2847 #endif
2850 * Try to read initialization commands from the following places:
2851 * - environment variable VIMINIT
2852 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2853 * - second user vimrc file ($VIM/.vimrc for Dos)
2854 * - environment variable EXINIT
2855 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2856 * - second user exrc file ($VIM/.exrc for Dos)
2857 * The first that exists is used, the rest is ignored.
2859 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2861 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2862 #ifdef USR_VIMRC_FILE2
2863 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2864 DOSO_VIMRC) == FAIL
2865 #endif
2866 #ifdef USR_VIMRC_FILE3
2867 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2868 DOSO_VIMRC) == FAIL
2869 #endif
2870 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2871 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2873 #ifdef USR_EXRC_FILE2
2874 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2875 #endif
2880 * Read initialization commands from ".vimrc" or ".exrc" in current
2881 * directory. This is only done if the 'exrc' option is set.
2882 * Because of security reasons we disallow shell and write commands
2883 * now, except for unix if the file is owned by the user or 'secure'
2884 * option has been reset in environment of global ".exrc" or ".vimrc".
2885 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2886 * SYS_VIMRC_FILE.
2888 if (p_exrc)
2890 #if defined(UNIX) || defined(VMS)
2891 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2892 if (!file_owned(VIMRC_FILE))
2893 #endif
2894 secure = p_secure;
2896 i = FAIL;
2897 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2898 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2899 #ifdef USR_VIMRC_FILE2
2900 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2901 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2902 #endif
2903 #ifdef USR_VIMRC_FILE3
2904 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2905 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2906 #endif
2907 #ifdef SYS_VIMRC_FILE
2908 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2909 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2910 #endif
2912 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2914 if (i == FAIL)
2916 #if defined(UNIX) || defined(VMS)
2917 /* if ".exrc" is not owned by user set 'secure' mode */
2918 if (!file_owned(EXRC_FILE))
2919 secure = p_secure;
2920 else
2921 secure = 0;
2922 #endif
2923 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2924 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2925 #ifdef USR_EXRC_FILE2
2926 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2927 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2928 #endif
2930 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2933 if (secure == 2)
2934 need_wait_return = TRUE;
2935 secure = 0;
2936 #ifdef AMIGA
2937 proc->pr_WindowPtr = save_winptr;
2938 #endif
2940 TIME_MSG("sourcing vimrc file(s)");
2944 * Setup to start using the GUI. Exit with an error when not available.
2946 static void
2947 main_start_gui()
2949 #ifdef FEAT_GUI
2950 gui.starting = TRUE; /* start GUI a bit later */
2951 #else
2952 mch_errmsg(_(e_nogvim));
2953 mch_errmsg("\n");
2954 mch_exit(2);
2955 #endif
2959 * Get an environment variable, and execute it as Ex commands.
2960 * Returns FAIL if the environment variable was not executed, OK otherwise.
2963 process_env(env, is_viminit)
2964 char_u *env;
2965 int is_viminit; /* when TRUE, called for VIMINIT */
2967 char_u *initstr;
2968 char_u *save_sourcing_name;
2969 linenr_T save_sourcing_lnum;
2970 #ifdef FEAT_EVAL
2971 scid_T save_sid;
2972 #endif
2974 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2976 if (is_viminit)
2977 vimrc_found(NULL, NULL);
2978 save_sourcing_name = sourcing_name;
2979 save_sourcing_lnum = sourcing_lnum;
2980 sourcing_name = env;
2981 sourcing_lnum = 0;
2982 #ifdef FEAT_EVAL
2983 save_sid = current_SID;
2984 current_SID = SID_ENV;
2985 #endif
2986 do_cmdline_cmd(initstr);
2987 sourcing_name = save_sourcing_name;
2988 sourcing_lnum = save_sourcing_lnum;
2989 #ifdef FEAT_EVAL
2990 current_SID = save_sid;;
2991 #endif
2992 return OK;
2994 return FAIL;
2997 #if defined(UNIX) || defined(VMS)
2999 * Return TRUE if we are certain the user owns the file "fname".
3000 * Used for ".vimrc" and ".exrc".
3001 * Use both stat() and lstat() for extra security.
3003 static int
3004 file_owned(fname)
3005 char *fname;
3007 struct stat s;
3008 # ifdef UNIX
3009 uid_t uid = getuid();
3010 # else /* VMS */
3011 uid_t uid = ((getgid() << 16) | getuid());
3012 # endif
3014 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
3015 # ifdef HAVE_LSTAT
3016 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
3017 # endif
3020 #endif
3023 * Give an error message main_errors["n"] and exit.
3025 static void
3026 mainerr(n, str)
3027 int n; /* one of the ME_ defines */
3028 char_u *str; /* extra argument or NULL */
3030 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3031 reset_signals(); /* kill us with CTRL-C here, if you like */
3032 #endif
3034 mch_errmsg(longVersion);
3035 mch_errmsg("\n");
3036 mch_errmsg(_(main_errors[n]));
3037 if (str != NULL)
3039 mch_errmsg(": \"");
3040 mch_errmsg((char *)str);
3041 mch_errmsg("\"");
3043 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
3045 mch_exit(1);
3048 void
3049 mainerr_arg_missing(str)
3050 char_u *str;
3052 mainerr(ME_ARG_MISSING, str);
3056 * print a message with three spaces prepended and '\n' appended.
3058 static void
3059 main_msg(s)
3060 char *s;
3062 mch_msg(" ");
3063 mch_msg(s);
3064 mch_msg("\n");
3068 * Print messages for "vim -h" or "vim --help" and exit.
3070 static void
3071 usage()
3073 int i;
3074 static char *(use[]) =
3076 N_("[file ..] edit specified file(s)"),
3077 N_("- read text from stdin"),
3078 N_("-t tag edit file where tag is defined"),
3079 #ifdef FEAT_QUICKFIX
3080 N_("-q [errorfile] edit file with first error")
3081 #endif
3084 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3085 reset_signals(); /* kill us with CTRL-C here, if you like */
3086 #endif
3088 mch_msg(longVersion);
3089 mch_msg(_("\n\nusage:"));
3090 for (i = 0; ; ++i)
3092 mch_msg(_(" vim [arguments] "));
3093 mch_msg(_(use[i]));
3094 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3095 break;
3096 mch_msg(_("\n or:"));
3098 #ifdef VMS
3099 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3100 #endif
3102 mch_msg(_("\n\nArguments:\n"));
3103 main_msg(_("--\t\t\tOnly file names after this"));
3104 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3105 main_msg(_("--literal\t\tDon't expand wildcards"));
3106 #endif
3107 #ifdef FEAT_OLE
3108 main_msg(_("-register\t\tRegister this gvim for OLE"));
3109 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3110 #endif
3111 #ifdef FEAT_GUI
3112 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3113 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3114 #endif
3115 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3116 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3117 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3118 #ifdef FEAT_DIFF
3119 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3120 #endif
3121 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3122 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3123 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3124 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3125 main_msg(_("-M\t\t\tModifications in text not allowed"));
3126 main_msg(_("-b\t\t\tBinary mode"));
3127 #ifdef FEAT_LISP
3128 main_msg(_("-l\t\t\tLisp mode"));
3129 #endif
3130 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3131 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3132 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3133 #ifdef FEAT_EVAL
3134 main_msg(_("-D\t\t\tDebugging mode"));
3135 #endif
3136 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3137 main_msg(_("-r\t\t\tList swap files and exit"));
3138 main_msg(_("-r (with file name)\tRecover crashed session"));
3139 main_msg(_("-L\t\t\tSame as -r"));
3140 #ifdef AMIGA
3141 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3142 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3143 #endif
3144 #ifdef FEAT_ARABIC
3145 main_msg(_("-A\t\t\tstart in Arabic mode"));
3146 #endif
3147 #ifdef FEAT_RIGHTLEFT
3148 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3149 #endif
3150 #ifdef FEAT_FKMAP
3151 main_msg(_("-F\t\t\tStart in Farsi mode"));
3152 #endif
3153 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3154 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3155 #ifdef FEAT_GUI
3156 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3157 #endif
3158 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3159 #ifdef FEAT_WINDOWS
3160 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3161 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3162 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3163 #endif
3164 main_msg(_("+\t\t\tStart at end of file"));
3165 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3166 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3167 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3168 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3169 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3170 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3171 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3172 #ifdef FEAT_CRYPT
3173 main_msg(_("-x\t\t\tEdit encrypted files"));
3174 #endif
3175 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3176 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3177 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3178 # endif
3179 main_msg(_("-X\t\t\tDo not connect to X server"));
3180 #endif
3181 #ifdef FEAT_CLIENTSERVER
3182 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3183 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3184 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3185 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3186 # ifdef FEAT_WINDOWS
3187 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3188 # endif
3189 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3190 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3191 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3192 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3193 #endif
3194 #ifdef FEAT_VIMINFO
3195 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3196 #endif
3197 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3198 main_msg(_("--version\t\tPrint version information and exit"));
3200 #ifdef FEAT_GUI_X11
3201 # ifdef FEAT_GUI_MOTIF
3202 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3203 # else
3204 # ifdef FEAT_GUI_ATHENA
3205 # ifdef FEAT_GUI_NEXTAW
3206 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3207 # else
3208 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3209 # endif
3210 # endif
3211 # endif
3212 main_msg(_("-display <display>\tRun vim on <display>"));
3213 main_msg(_("-iconic\t\tStart vim iconified"));
3214 # if 0
3215 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3216 mch_msg(_("\t\t\t (Unimplemented)\n"));
3217 # endif
3218 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3219 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3220 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3221 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3222 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3223 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3224 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3225 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3226 # ifdef FEAT_GUI_ATHENA
3227 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3228 # endif
3229 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3230 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3231 main_msg(_("-xrm <resource>\tSet the specified resource"));
3232 #endif /* FEAT_GUI_X11 */
3233 #if defined(FEAT_GUI) && defined(RISCOS)
3234 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3235 main_msg(_("--columns <number>\tInitial width of window in columns"));
3236 main_msg(_("--rows <number>\tInitial height of window in rows"));
3237 #endif
3238 #ifdef FEAT_GUI_GTK
3239 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3240 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3241 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3242 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3243 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3244 # ifdef HAVE_GTK2
3245 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3246 # endif
3247 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3248 #endif
3249 #ifdef FEAT_GUI_W32
3250 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3251 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3252 #endif
3254 #ifdef FEAT_GUI_GNOME
3255 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3256 if (gui.starting)
3257 mch_msg("\n");
3258 else
3259 #endif
3260 mch_exit(0);
3263 #if defined(HAS_SWAP_EXISTS_ACTION)
3265 * Check the result of the ATTENTION dialog:
3266 * When "Quit" selected, exit Vim.
3267 * When "Recover" selected, recover the file.
3269 static void
3270 check_swap_exists_action()
3272 if (swap_exists_action == SEA_QUIT)
3273 getout(1);
3274 handle_swap_exists(NULL);
3276 #endif
3278 #if defined(STARTUPTIME) || defined(PROTO)
3279 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3281 static struct timeval prev_timeval;
3284 * Save the previous time before doing something that could nest.
3285 * set "*tv_rel" to the time elapsed so far.
3287 void
3288 time_push(tv_rel, tv_start)
3289 void *tv_rel, *tv_start;
3291 *((struct timeval *)tv_rel) = prev_timeval;
3292 gettimeofday(&prev_timeval, NULL);
3293 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3294 - ((struct timeval *)tv_rel)->tv_usec;
3295 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3296 - ((struct timeval *)tv_rel)->tv_sec;
3297 if (((struct timeval *)tv_rel)->tv_usec < 0)
3299 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3300 --((struct timeval *)tv_rel)->tv_sec;
3302 *(struct timeval *)tv_start = prev_timeval;
3306 * Compute the previous time after doing something that could nest.
3307 * Subtract "*tp" from prev_timeval;
3308 * Note: The arguments are (void *) to avoid trouble with systems that don't
3309 * have struct timeval.
3311 void
3312 time_pop(tp)
3313 void *tp; /* actually (struct timeval *) */
3315 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3316 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3317 if (prev_timeval.tv_usec < 0)
3319 prev_timeval.tv_usec += 1000000;
3320 --prev_timeval.tv_sec;
3324 static void
3325 time_diff(then, now)
3326 struct timeval *then;
3327 struct timeval *now;
3329 long usec;
3330 long msec;
3332 usec = now->tv_usec - then->tv_usec;
3333 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3334 usec = usec % 1000L;
3335 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3338 void
3339 time_msg(msg, tv_start)
3340 char *msg;
3341 void *tv_start; /* only for do_source: start time; actually
3342 (struct timeval *) */
3344 static struct timeval start;
3345 struct timeval now;
3347 if (time_fd != NULL)
3349 if (strstr(msg, "STARTING") != NULL)
3351 gettimeofday(&start, NULL);
3352 prev_timeval = start;
3353 fprintf(time_fd, "\n\ntimes in msec\n");
3354 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3355 fprintf(time_fd, " clock elapsed: other lines\n\n");
3357 gettimeofday(&now, NULL);
3358 time_diff(&start, &now);
3359 if (((struct timeval *)tv_start) != NULL)
3361 fprintf(time_fd, " ");
3362 time_diff(((struct timeval *)tv_start), &now);
3364 fprintf(time_fd, " ");
3365 time_diff(&prev_timeval, &now);
3366 prev_timeval = now;
3367 fprintf(time_fd, ": %s\n", msg);
3371 # ifdef WIN3264
3373 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3376 gettimeofday(struct timeval *tv, char *dummy)
3378 long t = clock();
3379 tv->tv_sec = t / CLOCKS_PER_SEC;
3380 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3381 return 0;
3383 # endif
3385 #endif
3387 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3390 * Common code for the X command server and the Win32 command server.
3393 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3396 * Do the client-server stuff, unless "--servername ''" was used.
3398 static void
3399 exec_on_server(parmp)
3400 mparm_T *parmp;
3402 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3404 # ifdef WIN32
3405 /* Initialise the client/server messaging infrastructure. */
3406 serverInitMessaging();
3407 # endif
3410 * When a command server argument was found, execute it. This may
3411 * exit Vim when it was successful. Otherwise it's executed further
3412 * on. Remember the encoding used here in "serverStrEnc".
3414 if (parmp->serverArg)
3416 cmdsrv_main(&parmp->argc, parmp->argv,
3417 parmp->serverName_arg, &parmp->serverStr);
3418 # ifdef FEAT_MBYTE
3419 parmp->serverStrEnc = vim_strsave(p_enc);
3420 # endif
3423 /* If we're still running, get the name to register ourselves.
3424 * On Win32 can register right now, for X11 need to setup the
3425 * clipboard first, it's further down. */
3426 parmp->servername = serverMakeName(parmp->serverName_arg,
3427 parmp->argv[0]);
3428 # ifdef WIN32
3429 if (parmp->servername != NULL)
3431 serverSetName(parmp->servername);
3432 vim_free(parmp->servername);
3434 # endif
3439 * Prepare for running as a Vim server.
3441 static void
3442 prepare_server(parmp)
3443 mparm_T *parmp;
3445 # if defined(FEAT_X11)
3447 * Register for remote command execution with :serversend and --remote
3448 * unless there was a -X or a --servername '' on the command line.
3449 * Only register nongui-vim's with an explicit --servername argument.
3450 * When running as root --servername is also required.
3452 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3453 # ifdef FEAT_GUI
3454 (gui.in_use
3455 # ifdef UNIX
3456 && getuid() != ROOT_UID
3457 # endif
3458 ) ||
3459 # endif
3460 parmp->serverName_arg != NULL))
3462 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3463 vim_free(parmp->servername);
3464 TIME_MSG("register server name");
3466 else
3467 serverDelayedStartName = parmp->servername;
3468 # endif
3471 * Execute command ourselves if we're here because the send failed (or
3472 * else we would have exited above).
3474 if (parmp->serverStr != NULL)
3476 char_u *p;
3478 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3479 parmp->serverStr, &p));
3480 vim_free(p);
3484 static void
3485 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3486 int *argc;
3487 char **argv;
3488 char_u *serverName_arg;
3489 char_u **serverStr;
3491 char_u *res;
3492 int i;
3493 char_u *sname;
3494 int ret;
3495 int didone = FALSE;
3496 int exiterr = 0;
3497 char **newArgV = argv + 1;
3498 int newArgC = 1,
3499 Argc = *argc;
3500 int argtype;
3501 #define ARGTYPE_OTHER 0
3502 #define ARGTYPE_EDIT 1
3503 #define ARGTYPE_EDIT_WAIT 2
3504 #define ARGTYPE_SEND 3
3505 int silent = FALSE;
3506 int tabs = FALSE;
3507 # ifdef WIN32
3508 HWND srv;
3509 # elif defined(MAC_CLIENTSERVER)
3510 int srv;
3511 # elif defined(FEAT_X11)
3512 Window srv;
3514 setup_term_clip();
3515 # endif
3517 sname = serverMakeName(serverName_arg, argv[0]);
3518 if (sname == NULL)
3519 return;
3522 * Execute the command server related arguments and remove them
3523 * from the argc/argv array; We may have to return into main()
3525 for (i = 1; i < Argc; i++)
3527 res = NULL;
3528 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3530 for (; i < *argc; i++)
3532 *newArgV++ = argv[i];
3533 newArgC++;
3535 break;
3538 if (STRICMP(argv[i], "--remote-send") == 0)
3539 argtype = ARGTYPE_SEND;
3540 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3542 char *p = argv[i] + 8;
3544 argtype = ARGTYPE_EDIT;
3545 while (*p != NUL)
3547 if (STRNICMP(p, "-wait", 5) == 0)
3549 argtype = ARGTYPE_EDIT_WAIT;
3550 p += 5;
3552 else if (STRNICMP(p, "-silent", 7) == 0)
3554 silent = TRUE;
3555 p += 7;
3557 else if (STRNICMP(p, "-tab", 4) == 0)
3559 tabs = TRUE;
3560 p += 4;
3562 else
3564 argtype = ARGTYPE_OTHER;
3565 break;
3569 else
3570 argtype = ARGTYPE_OTHER;
3572 if (argtype != ARGTYPE_OTHER)
3574 if (i == *argc - 1)
3575 mainerr_arg_missing((char_u *)argv[i]);
3576 if (argtype == ARGTYPE_SEND)
3578 *serverStr = (char_u *)argv[i + 1];
3579 i++;
3581 else
3583 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3584 tabs, argtype == ARGTYPE_EDIT_WAIT);
3585 if (*serverStr == NULL)
3587 /* Probably out of memory, exit. */
3588 didone = TRUE;
3589 exiterr = 1;
3590 break;
3592 Argc = i;
3594 # ifdef FEAT_X11
3595 if (xterm_dpy == NULL)
3597 mch_errmsg(_("No display"));
3598 ret = -1;
3600 else
3601 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3602 NULL, &srv, 0, 0, silent);
3603 # elif defined(WIN32) || defined(MAC_CLIENTSERVER)
3604 /* Win32 always works? */
3605 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3606 # endif
3607 if (ret < 0)
3609 if (argtype == ARGTYPE_SEND)
3611 /* Failed to send, abort. */
3612 mch_errmsg(_(": Send failed.\n"));
3613 didone = TRUE;
3614 exiterr = 1;
3616 else if (!silent)
3617 /* Let vim start normally. */
3618 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3619 break;
3622 # ifdef FEAT_GUI_W32
3623 /* Guess that when the server name starts with "g" it's a GUI
3624 * server, which we can bring to the foreground here.
3625 * Foreground() in the server doesn't work very well. */
3626 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3627 SetForegroundWindow(srv);
3628 # endif
3631 * For --remote-wait: Wait until the server did edit each
3632 * file. Also detect that the server no longer runs.
3634 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3636 int numFiles = *argc - i - 1;
3637 int j;
3638 char_u *done = alloc(numFiles);
3639 char_u *p;
3640 # ifdef FEAT_GUI_W32
3641 NOTIFYICONDATA ni;
3642 int count = 0;
3643 extern HWND message_window;
3644 # endif
3646 if (numFiles > 0 && argv[i + 1][0] == '+')
3647 /* Skip "+cmd" argument, don't wait for it to be edited. */
3648 --numFiles;
3650 # ifdef FEAT_GUI_W32
3651 ni.cbSize = sizeof(ni);
3652 ni.hWnd = message_window;
3653 ni.uID = 0;
3654 ni.uFlags = NIF_ICON|NIF_TIP;
3655 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3656 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3657 Shell_NotifyIcon(NIM_ADD, &ni);
3658 # endif
3660 /* Wait for all files to unload in remote */
3661 memset(done, 0, numFiles);
3662 while (memchr(done, 0, numFiles) != NULL)
3664 # ifdef WIN32
3665 p = serverGetReply(srv, NULL, TRUE, TRUE);
3666 if (p == NULL)
3667 break;
3668 # elif defined(FEAT_X11)
3669 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3670 break;
3671 # elif defined(MAC_CLIENTSERVER)
3672 if (serverReadReply(srv, &p) < 0)
3673 break;
3674 # endif
3675 j = atoi((char *)p);
3676 if (j >= 0 && j < numFiles)
3678 # ifdef FEAT_GUI_W32
3679 ++count;
3680 sprintf(ni.szTip, _("%d of %d edited"),
3681 count, numFiles);
3682 Shell_NotifyIcon(NIM_MODIFY, &ni);
3683 # endif
3684 done[j] = 1;
3687 # ifdef FEAT_GUI_W32
3688 Shell_NotifyIcon(NIM_DELETE, &ni);
3689 # endif
3692 else if (STRICMP(argv[i], "--remote-expr") == 0)
3694 if (i == *argc - 1)
3695 mainerr_arg_missing((char_u *)argv[i]);
3696 # ifdef WIN32
3697 /* Win32 always works? */
3698 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3699 &res, NULL, 1, FALSE) < 0)
3700 # elif defined(FEAT_X11)
3701 if (xterm_dpy == NULL)
3702 mch_errmsg(_("No display: Send expression failed.\n"));
3703 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3704 &res, NULL, 1, 1, FALSE) < 0)
3705 # elif defined(MAC_CLIENTSERVER)
3706 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3707 &res, NULL, 1, FALSE) < 0)
3708 # endif
3710 if (res != NULL && *res != NUL)
3712 /* Output error from remote */
3713 mch_errmsg((char *)res);
3714 vim_free(res);
3715 res = NULL;
3717 mch_errmsg(_(": Send expression failed.\n"));
3720 else if (STRICMP(argv[i], "--serverlist") == 0)
3722 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
3723 /* Win32 always works? */
3724 res = serverGetVimNames();
3725 # elif defined(FEAT_X11)
3726 if (xterm_dpy != NULL)
3727 res = serverGetVimNames(xterm_dpy);
3728 # endif
3729 if (called_emsg)
3730 mch_errmsg("\n");
3732 else if (STRICMP(argv[i], "--servername") == 0)
3734 /* Alredy processed. Take it out of the command line */
3735 i++;
3736 continue;
3738 else
3740 *newArgV++ = argv[i];
3741 newArgC++;
3742 continue;
3744 didone = TRUE;
3745 if (res != NULL && *res != NUL)
3747 mch_msg((char *)res);
3748 if (res[STRLEN(res) - 1] != '\n')
3749 mch_msg("\n");
3751 vim_free(res);
3754 if (didone)
3756 display_errors(); /* display any collected messages */
3757 exit(exiterr); /* Mission accomplished - get out */
3760 /* Return back into main() */
3761 *argc = newArgC;
3762 vim_free(sname);
3766 * Build a ":drop" command to send to a Vim server.
3768 static char_u *
3769 build_drop_cmd(filec, filev, tabs, sendReply)
3770 int filec;
3771 char **filev;
3772 int tabs; /* Use ":tab drop" instead of ":drop". */
3773 int sendReply;
3775 garray_T ga;
3776 int i;
3777 char_u *inicmd = NULL;
3778 char_u *p;
3779 char_u cwd[MAXPATHL];
3781 if (filec > 0 && filev[0][0] == '+')
3783 inicmd = (char_u *)filev[0] + 1;
3784 filev++;
3785 filec--;
3787 /* Check if we have at least one argument. */
3788 if (filec <= 0)
3789 mainerr_arg_missing((char_u *)filev[-1]);
3790 if (mch_dirname(cwd, MAXPATHL) != OK)
3791 return NULL;
3792 if ((p = vim_strsave_escaped_ext(cwd,
3793 #ifdef BACKSLASH_IN_FILENAME
3794 "", /* rem_backslash() will tell what chars to escape */
3795 #else
3796 PATH_ESC_CHARS,
3797 #endif
3798 '\\', TRUE)) == NULL)
3799 return NULL;
3800 ga_init2(&ga, 1, 100);
3801 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3802 ga_concat(&ga, p);
3803 vim_free(p);
3805 /* Call inputsave() so that a prompt for an encryption key works. */
3806 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3807 if (tabs)
3808 ga_concat(&ga, (char_u *)"tab ");
3809 ga_concat(&ga, (char_u *)"drop");
3810 for (i = 0; i < filec; i++)
3812 /* On Unix the shell has already expanded the wildcards, don't want to
3813 * do it again in the Vim server. On MS-Windows only escape
3814 * non-wildcard characters. */
3815 p = vim_strsave_escaped((char_u *)filev[i],
3816 #ifdef UNIX
3817 PATH_ESC_CHARS
3818 #else
3819 (char_u *)" \t%#"
3820 #endif
3822 if (p == NULL)
3824 vim_free(ga.ga_data);
3825 return NULL;
3827 ga_concat(&ga, (char_u *)" ");
3828 ga_concat(&ga, p);
3829 vim_free(p);
3831 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3832 * CTRL-\ CTRL-N again. */
3833 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3834 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3835 if (sendReply)
3836 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3837 ga_concat(&ga, (char_u *)"<CR>:");
3838 if (inicmd != NULL)
3840 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3841 * the following commands to be inserted as text. Use a "|",
3842 * hopefully "inicmd" does allow this... */
3843 ga_concat(&ga, inicmd);
3844 ga_concat(&ga, (char_u *)"|");
3846 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3847 * clear command line. */
3848 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3849 ga_append(&ga, NUL);
3850 return ga.ga_data;
3854 * Replace termcodes such as <CR> and insert as key presses if there is room.
3856 void
3857 server_to_input_buf(str)
3858 char_u *str;
3860 char_u *ptr = NULL;
3861 char_u *cpo_save = p_cpo;
3863 /* Set 'cpoptions' the way we want it.
3864 * B set - backslashes are *not* treated specially
3865 * k set - keycodes are *not* reverse-engineered
3866 * < unset - <Key> sequences *are* interpreted
3867 * The last but one parameter of replace_termcodes() is TRUE so that the
3868 * <lt> sequence is recognised - needed for a real backslash.
3870 p_cpo = (char_u *)"Bk";
3871 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3872 p_cpo = cpo_save;
3874 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3877 * Add the string to the input stream.
3878 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3880 * First clear typed characters from the typeahead buffer, there could
3881 * be half a mapping there. Then append to the existing string, so
3882 * that multiple commands from a client are concatenated.
3884 if (typebuf.tb_maplen < typebuf.tb_len)
3885 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3886 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3888 /* Let input_available() know we inserted text in the typeahead
3889 * buffer. */
3890 typebuf_was_filled = TRUE;
3892 vim_free((char_u *)ptr);
3896 * Evaluate an expression that the client sent to a string.
3897 * Handles disabling error messages and disables debugging, otherwise Vim
3898 * hangs, waiting for "cont" to be typed.
3900 char_u *
3901 eval_client_expr_to_string(expr)
3902 char_u *expr;
3904 char_u *res;
3905 int save_dbl = debug_break_level;
3906 int save_ro = redir_off;
3908 debug_break_level = -1;
3909 redir_off = 0;
3910 ++emsg_skip;
3912 res = eval_to_string(expr, NULL, TRUE);
3914 debug_break_level = save_dbl;
3915 redir_off = save_ro;
3916 --emsg_skip;
3918 /* A client can tell us to redraw, but not to display the cursor, so do
3919 * that here. */
3920 setcursor();
3921 out_flush();
3922 #ifdef FEAT_GUI
3923 if (gui.in_use)
3924 gui_update_cursor(FALSE, FALSE);
3925 #endif
3927 return res;
3931 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3932 * return an allocated string. Otherwise return "data".
3933 * "*tofree" is set to the result when it needs to be freed later.
3935 /*ARGSUSED*/
3936 char_u *
3937 serverConvert(client_enc, data, tofree)
3938 char_u *client_enc;
3939 char_u *data;
3940 char_u **tofree;
3942 char_u *res = data;
3944 *tofree = NULL;
3945 # ifdef FEAT_MBYTE
3946 if (client_enc != NULL && p_enc != NULL)
3948 vimconv_T vimconv;
3950 vimconv.vc_type = CONV_NONE;
3951 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3952 && vimconv.vc_type != CONV_NONE)
3954 res = string_convert(&vimconv, data, NULL);
3955 if (res == NULL)
3956 res = data;
3957 else
3958 *tofree = res;
3960 convert_setup(&vimconv, NULL, NULL);
3962 # endif
3963 return res;
3968 * Make our basic server name: use the specified "arg" if given, otherwise use
3969 * the tail of the command "cmd" we were started with.
3970 * Return the name in allocated memory. This doesn't include a serial number.
3972 static char_u *
3973 serverMakeName(arg, cmd)
3974 char_u *arg;
3975 char *cmd;
3977 char_u *p;
3979 if (arg != NULL && *arg != NUL)
3980 p = vim_strsave_up(arg);
3981 else
3983 p = vim_strsave_up(gettail((char_u *)cmd));
3984 /* Remove .exe or .bat from the name. */
3985 if (p != NULL && vim_strchr(p, '.') != NULL)
3986 *vim_strchr(p, '.') = NUL;
3988 return p;
3990 #endif /* FEAT_CLIENTSERVER */
3993 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3995 #if defined(FEAT_FKMAP) || defined(PROTO)
3996 # include "farsi.c"
3997 #endif
4000 * When FEAT_ARABIC is defined, also compile the Arabic source code.
4002 #if defined(FEAT_ARABIC) || defined(PROTO)
4003 # include "arabic.c"
4004 #endif