Preserve swap files after crash
[MacVim.git] / src / main.c
blob4b46964889c47fcc24525d5b4700e7ca9f44bd63
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(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 HAVE_FCNTL_H
22 # include <fcntl.h>
23 #endif
25 #ifdef __CYGWIN__
26 # ifndef WIN32
27 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() */
28 # endif
29 # include <limits.h>
30 #endif
32 #if FEAT_GUI_MACVIM
33 #include <objc/objc-runtime.h> /* for objc_*() and sel_*() */
34 #endif
36 /* Maximum number of commands from + or -c arguments. */
37 #define MAX_ARG_CMDS 10
39 /* values for "window_layout" */
40 #define WIN_HOR 1 /* "-o" horizontally split windows */
41 #define WIN_VER 2 /* "-O" vertically split windows */
42 #define WIN_TABS 3 /* "-p" windows on tab pages */
44 /* Struct for various parameters passed between main() and other functions. */
45 typedef struct
47 int argc;
48 char **argv;
50 int evim_mode; /* started as "evim" */
51 char_u *use_vimrc; /* vimrc from -u argument */
53 int n_commands; /* no. of commands from + or -c */
54 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
55 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
56 int n_pre_commands; /* no. of commands from --cmd */
57 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
59 int edit_type; /* type of editing to do */
60 char_u *tagname; /* tag from -t argument */
61 #ifdef FEAT_QUICKFIX
62 char_u *use_ef; /* 'errorfile' from -q argument */
63 #endif
65 int want_full_screen;
66 int stdout_isatty; /* is stdout a terminal? */
67 char_u *term; /* specified terminal name */
68 #ifdef FEAT_CRYPT
69 int ask_for_key; /* -x argument */
70 #endif
71 int no_swap_file; /* "-n" argument used */
72 #ifdef FEAT_EVAL
73 int use_debug_break_level;
74 #endif
75 #ifdef FEAT_WINDOWS
76 int window_count; /* number of windows to use */
77 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
78 #endif
80 #ifdef FEAT_CLIENTSERVER
81 int serverArg; /* TRUE when argument for a server */
82 char_u *serverName_arg; /* cmdline arg for server name */
83 char_u *serverStr; /* remote server command */
84 char_u *serverStrEnc; /* encoding of serverStr */
85 char_u *servername; /* allocated name for our server */
86 #endif
87 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
88 int literal; /* don't expand file names */
89 #endif
90 #ifdef MSWIN
91 int full_path; /* file name argument was full path */
92 #endif
93 #ifdef FEAT_DIFF
94 int diff_mode; /* start with 'diff' set */
95 #endif
96 } mparm_T;
98 /* Values for edit_type. */
99 #define EDIT_NONE 0 /* no edit type yet */
100 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */
101 #define EDIT_STDIN 2 /* read file from stdin */
102 #define EDIT_TAG 3 /* tag name argument given, use tagname */
103 #define EDIT_QF 4 /* start in quickfix mode */
105 #if defined(UNIX) || defined(VMS)
106 static int file_owned __ARGS((char *fname));
107 #endif
108 static void mainerr __ARGS((int, char_u *));
109 static void main_msg __ARGS((char *s));
110 static void usage __ARGS((void));
111 static int get_number_arg __ARGS((char_u *p, int *idx, int def));
112 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
113 static void init_locale __ARGS((void));
114 #endif
115 static void parse_command_name __ARGS((mparm_T *parmp));
116 static void early_arg_scan __ARGS((mparm_T *parmp));
117 static void command_line_scan __ARGS((mparm_T *parmp));
118 static void check_tty __ARGS((mparm_T *parmp));
119 static void read_stdin __ARGS((void));
120 static void create_windows __ARGS((mparm_T *parmp));
121 #ifdef FEAT_WINDOWS
122 static void edit_buffers __ARGS((mparm_T *parmp));
123 #endif
124 static void exe_pre_commands __ARGS((mparm_T *parmp));
125 static void exe_commands __ARGS((mparm_T *parmp));
126 static void source_startup_scripts __ARGS((mparm_T *parmp));
127 static void main_start_gui __ARGS((void));
128 #if defined(HAS_SWAP_EXISTS_ACTION)
129 static void check_swap_exists_action __ARGS((void));
130 #endif
131 #ifdef FEAT_CLIENTSERVER
132 static void exec_on_server __ARGS((mparm_T *parmp));
133 static void prepare_server __ARGS((mparm_T *parmp));
134 static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
135 static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
136 #endif
139 #ifdef STARTUPTIME
140 static FILE *time_fd = NULL;
141 #endif
144 * Different types of error messages.
146 static char *(main_errors[]) =
148 N_("Unknown option argument"),
149 #define ME_UNKNOWN_OPTION 0
150 N_("Too many edit arguments"),
151 #define ME_TOO_MANY_ARGS 1
152 N_("Argument missing after"),
153 #define ME_ARG_MISSING 2
154 N_("Garbage after option argument"),
155 #define ME_GARBAGE 3
156 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
157 #define ME_EXTRA_CMD 4
158 N_("Invalid argument for"),
159 #define ME_INVALID_ARG 5
162 #ifndef PROTO /* don't want a prototype for main() */
164 # ifdef VIMDLL
165 _export
166 # endif
167 # ifdef FEAT_GUI_MSWIN
168 # ifdef __BORLANDC__
169 _cdecl
170 # endif
171 VimMain
172 # else
173 main
174 # endif
175 (argc, argv)
176 int argc;
177 char **argv;
179 char_u *fname = NULL; /* file name from command line */
180 mparm_T params; /* various parameters passed between
181 * main() and other functions. */
183 #if FEAT_GUI_MACVIM
184 // Cocoa needs an NSAutoreleasePool in place or it will leak memory.
185 // This particular pool will hold autorelease objects created during
186 // initialization.
187 id autoreleasePool = objc_msgSend(objc_msgSend(
188 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
189 ), sel_getUid("init"));
190 #endif
193 * Do any system-specific initialisations. These can NOT use IObuff or
194 * NameBuff. Thus emsg2() cannot be called!
196 mch_early_init();
198 /* Many variables are in "params" so that we can pass them to invoked
199 * functions without a lot of arguments. "argc" and "argv" are also
200 * copied, so that they can be changed. */
201 vim_memset(&params, 0, sizeof(params));
202 params.argc = argc;
203 params.argv = argv;
204 params.want_full_screen = TRUE;
205 #ifdef FEAT_EVAL
206 params.use_debug_break_level = -1;
207 #endif
208 #ifdef FEAT_WINDOWS
209 params.window_count = -1;
210 #endif
212 #ifdef FEAT_TCL
213 vim_tcl_init(params.argv[0]);
214 #endif
216 #ifdef MEM_PROFILE
217 atexit(vim_mem_profile_dump);
218 #endif
220 #ifdef STARTUPTIME
221 time_fd = mch_fopen(STARTUPTIME, "a");
222 TIME_MSG("--- VIM STARTING ---");
223 #endif
224 starttime = time(NULL);
226 #ifdef __EMX__
227 _wildcard(&params.argc, &params.argv);
228 #endif
230 #ifdef FEAT_MBYTE
231 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
232 #endif
233 #ifdef FEAT_EVAL
234 eval_init(); /* init global variables */
235 #endif
237 #ifdef __QNXNTO__
238 qnx_init(); /* PhAttach() for clipboard, (and gui) */
239 #endif
241 #ifdef MAC_OS_CLASSIC
242 /* Prepare for possibly starting GUI sometime */
243 /* Macintosh needs this before any memory is allocated. */
244 gui_prepare(&params.argc, params.argv);
245 TIME_MSG("GUI prepared");
246 #endif
248 /* Init the table of Normal mode commands. */
249 init_normal_cmds();
251 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
252 make_version(); /* Construct the long version string. */
253 #endif
256 * Allocate space for the generic buffers (needed for set_init_1() and
257 * EMSG2()).
259 if ((IObuff = alloc(IOSIZE)) == NULL
260 || (NameBuff = alloc(MAXPATHL)) == NULL)
261 mch_exit(0);
262 TIME_MSG("Allocated generic buffers");
264 #ifdef NBDEBUG
265 /* Wait a moment for debugging NetBeans. Must be after allocating
266 * NameBuff. */
267 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
268 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
269 TIME_MSG("NetBeans debug wait");
270 #endif
272 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
274 * Setup to use the current locale (for ctype() and many other things).
275 * NOTE: Translated messages with encodings other than latin1 will not
276 * work until set_init_1() has been called!
278 init_locale();
279 TIME_MSG("locale set");
280 #endif
282 #ifdef FEAT_GUI
283 gui.dofork = TRUE; /* default is to use fork() */
284 #endif
287 * Do a first scan of the arguments in "argv[]":
288 * -display or --display
289 * --server...
290 * --socketid
291 * --windowid
293 early_arg_scan(&params);
295 #ifdef FEAT_SUN_WORKSHOP
296 findYourself(params.argv[0]);
297 #endif
298 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
299 /* Prepare for possibly starting GUI sometime */
300 gui_prepare(&params.argc, params.argv);
301 TIME_MSG("GUI prepared");
302 #endif
304 #ifdef FEAT_CLIPBOARD
305 clip_init(FALSE); /* Initialise clipboard stuff */
306 TIME_MSG("clipboard setup");
307 #endif
310 * Check if we have an interactive window.
311 * On the Amiga: If there is no window, we open one with a newcli command
312 * (needed for :! to * work). mch_check_win() will also handle the -d or
313 * -dev argument.
315 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
316 TIME_MSG("window checked");
319 * Allocate the first window and buffer.
320 * Can't do anything without it, exit when it fails.
322 if (win_alloc_first() == FAIL)
323 mch_exit(0);
325 init_yank(); /* init yank buffers */
327 alist_init(&global_alist); /* Init the argument list to empty. */
330 * Set the default values for the options.
331 * NOTE: Non-latin1 translated messages are working only after this,
332 * because this is where "has_mbyte" will be set, which is used by
333 * msg_outtrans_len_attr().
334 * First find out the home directory, needed to expand "~" in options.
336 init_homedir(); /* find real value of $HOME */
337 set_init_1();
338 TIME_MSG("inits 1");
340 #ifdef FEAT_EVAL
341 set_lang_var(); /* set v:lang and v:ctype */
342 #endif
344 #ifdef FEAT_CLIENTSERVER
346 * Do the client-server stuff, unless "--servername ''" was used.
347 * This may exit Vim if the command was sent to the server.
349 exec_on_server(&params);
350 #endif
353 * Figure out the way to work from the command name argv[0].
354 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
356 parse_command_name(&params);
359 * Process the command line arguments. File names are put in the global
360 * argument list "global_alist".
362 command_line_scan(&params);
363 TIME_MSG("parsing arguments");
366 * On some systems, when we compile with the GUI, we always use it. On Mac
367 * there is no terminal version, and on Windows we can't fork one off with
368 * :gui.
370 #ifdef ALWAYS_USE_GUI
371 gui.starting = TRUE;
372 #else
373 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
375 * Check if the GUI can be started. Reset gui.starting if not.
376 * Don't know about other systems, stay on the safe side and don't check.
378 if (gui.starting && gui_init_check() == FAIL)
380 gui.starting = FALSE;
382 /* When running "evim" or "gvim -y" we need the menus, exit if we
383 * don't have them. */
384 if (params.evim_mode)
385 mch_exit(1);
387 # endif
388 #endif
390 if (GARGCOUNT > 0)
392 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
394 * Expand wildcards in file names.
396 if (!params.literal)
398 /* Temporarily add '(' and ')' to 'isfname'. These are valid
399 * filename characters but are excluded from 'isfname' to make
400 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
401 do_cmdline_cmd((char_u *)":set isf+=(,)");
402 alist_expand(NULL, 0);
403 do_cmdline_cmd((char_u *)":set isf&");
405 #endif
406 fname = alist_name(&GARGLIST[0]);
409 #if defined(WIN32) && defined(FEAT_MBYTE)
411 extern void set_alist_count(void);
413 /* Remember the number of entries in the argument list. If it changes
414 * we don't react on setting 'encoding'. */
415 set_alist_count();
417 #endif
419 #ifdef MSWIN
420 if (GARGCOUNT == 1 && params.full_path)
423 * If there is one filename, fully qualified, we have very probably
424 * been invoked from explorer, so change to the file's directory.
425 * Hint: to avoid this when typing a command use a forward slash.
426 * If the cd fails, it doesn't matter.
428 (void)vim_chdirfile(fname);
430 #endif
431 TIME_MSG("expanding arguments");
433 #ifdef FEAT_DIFF
434 if (params.diff_mode && params.window_count == -1)
435 params.window_count = 0; /* open up to 3 windows */
436 #endif
438 /* Don't redraw until much later. */
439 ++RedrawingDisabled;
442 * When listing swap file names, don't do cursor positioning et. al.
444 if (recoverymode && fname == NULL)
445 params.want_full_screen = FALSE;
448 * When certain to start the GUI, don't check capabilities of terminal.
449 * For GTK we can't be sure, but when started from the desktop it doesn't
450 * make sense to try using a terminal.
452 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
453 if (gui.starting
454 # ifdef FEAT_GUI_GTK
455 && !isatty(2)
456 # endif
458 params.want_full_screen = FALSE;
459 #endif
461 #if (defined(FEAT_GUI_MAC) || defined(FEAT_GUI_MACVIM)) && defined(MACOS_X_UNIX)
462 /* When the GUI is started from Finder, need to display messages in a
463 * message box. isatty(2) returns TRUE anyway, thus we need to check the
464 * name to know we're not started from a terminal. */
465 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
467 params.want_full_screen = FALSE;
469 /* Avoid always using "/" as the current directory. Note that when
470 * started from Finder the arglist will be filled later in
471 * HandleODocAE() and "fname" will be NULL. */
472 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
473 && STRCMP(NameBuff, "/") == 0)
475 if (fname != NULL)
476 (void)vim_chdirfile(fname);
477 else
479 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
480 vim_chdir(NameBuff);
484 #endif
487 * mch_init() sets up the terminal (window) for use. This must be
488 * done after resetting full_screen, otherwise it may move the cursor
489 * (MSDOS).
490 * Note that we may use mch_exit() before mch_init()!
492 mch_init();
493 TIME_MSG("shell init");
495 #ifdef USE_XSMP
497 * For want of anywhere else to do it, try to connect to xsmp here.
498 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
499 * Hijacking -X 'no X connection' to also disable XSMP connection as that
500 * has a similar delay upon failure.
501 * Only try if SESSION_MANAGER is set to something non-null.
503 if (!x_no_connect)
505 char *p = getenv("SESSION_MANAGER");
507 if (p != NULL && *p != NUL)
509 xsmp_init();
510 TIME_MSG("xsmp init");
513 #endif
516 * Print a warning if stdout is not a terminal.
518 check_tty(&params);
520 /* This message comes before term inits, but after setting "silent_mode"
521 * when the input is not a tty. */
522 if (GARGCOUNT > 1 && !silent_mode)
523 printf(_("%d files to edit\n"), GARGCOUNT);
525 if (params.want_full_screen && !silent_mode)
527 termcapinit(params.term); /* set terminal name and get terminal
528 capabilities (will set full_screen) */
529 screen_start(); /* don't know where cursor is now */
530 TIME_MSG("Termcap init");
534 * Set the default values for the options that use Rows and Columns.
536 ui_get_shellsize(); /* inits Rows and Columns */
537 #ifdef FEAT_NETBEANS_INTG
538 if (usingNetbeans)
539 Columns += 2; /* leave room for glyph gutter */
540 #endif
541 win_init_size();
542 #ifdef FEAT_DIFF
543 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
544 * file. There is no buffer yet though. */
545 if (params.diff_mode)
546 diff_win_options(firstwin, FALSE);
547 #endif
549 cmdline_row = Rows - p_ch;
550 msg_row = cmdline_row;
551 screenalloc(FALSE); /* allocate screen buffers */
552 set_init_2();
553 TIME_MSG("inits 2");
555 msg_scroll = TRUE;
556 no_wait_return = TRUE;
558 init_mappings(); /* set up initial mappings */
560 init_highlight(TRUE, FALSE); /* set the default highlight groups */
561 TIME_MSG("init highlight");
563 #ifdef FEAT_EVAL
564 /* Set the break level after the terminal is initialized. */
565 debug_break_level = params.use_debug_break_level;
566 #endif
568 /* Execute --cmd arguments. */
569 exe_pre_commands(&params);
571 /* Source startup scripts. */
572 source_startup_scripts(&params);
574 #ifdef FEAT_EVAL
576 * Read all the plugin files.
577 * Only when compiled with +eval, since most plugins need it.
579 if (p_lpl)
581 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
582 source_runtime((char_u *)"plugin/*.vim", TRUE);
583 # else
584 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
585 # endif
586 TIME_MSG("loading plugins");
588 #endif
590 #ifdef FEAT_DIFF
591 /* Decide about window layout for diff mode after reading vimrc. */
592 if (params.diff_mode && params.window_layout == 0)
594 if (diffopt_horizontal())
595 params.window_layout = WIN_HOR; /* use horizontal split */
596 else
597 params.window_layout = WIN_VER; /* use vertical split */
599 #endif
602 * Recovery mode without a file name: List swap files.
603 * This uses the 'dir' option, therefore it must be after the
604 * initializations.
606 if (recoverymode && fname == NULL)
608 recover_names(NULL, TRUE, 0);
609 mch_exit(0);
613 * Set a few option defaults after reading .vimrc files:
614 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
616 set_init_3();
617 TIME_MSG("inits 3");
620 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
621 * Note that this overrides anything from a vimrc file.
623 if (params.no_swap_file)
624 p_uc = 0;
626 #ifdef FEAT_FKMAP
627 if (curwin->w_p_rl && p_altkeymap)
629 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
630 # ifdef FEAT_ARABIC
631 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
632 # endif
633 p_fkmap = TRUE; /* Set the Farsi keymap mode */
635 #endif
637 #ifdef FEAT_GUI
638 if (gui.starting)
640 #if defined(UNIX) || defined(VMS)
641 /* When something caused a message from a vimrc script, need to output
642 * an extra newline before the shell prompt. */
643 if (did_emsg || msg_didout)
644 putchar('\n');
645 #endif
647 gui_start(); /* will set full_screen to TRUE */
648 TIME_MSG("starting GUI");
650 /* When running "evim" or "gvim -y" we need the menus, exit if we
651 * don't have them. */
652 if (!gui.in_use && params.evim_mode)
653 mch_exit(1);
655 #endif
657 #ifdef SPAWNO /* special MSDOS swapping library */
658 init_SPAWNO("", SWAP_ANY);
659 #endif
661 #ifdef FEAT_VIMINFO
663 * Read in registers, history etc, but not marks, from the viminfo file
665 if (*p_viminfo != NUL)
667 read_viminfo(NULL, TRUE, FALSE, FALSE);
668 TIME_MSG("reading viminfo");
670 #endif
672 #ifdef FEAT_QUICKFIX
674 * "-q errorfile": Load the error file now.
675 * If the error file can't be read, exit before doing anything else.
677 if (params.edit_type == EDIT_QF)
679 if (params.use_ef != NULL)
680 set_string_option_direct((char_u *)"ef", -1,
681 params.use_ef, OPT_FREE, SID_CARG);
682 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
684 out_char('\n');
685 mch_exit(3);
687 TIME_MSG("reading errorfile");
689 #endif
692 * Start putting things on the screen.
693 * Scroll screen down before drawing over it
694 * Clear screen now, so file message will not be cleared.
696 starting = NO_BUFFERS;
697 no_wait_return = FALSE;
698 if (!exmode_active)
699 msg_scroll = FALSE;
701 #ifdef FEAT_GUI
703 * This seems to be required to make callbacks to be called now, instead
704 * of after things have been put on the screen, which then may be deleted
705 * when getting a resize callback.
706 * For the Mac this handles putting files dropped on the Vim icon to
707 * global_alist.
709 if (gui.in_use)
711 # ifdef FEAT_SUN_WORKSHOP
712 if (!usingSunWorkShop)
713 # endif
714 gui_wait_for_chars(50L);
715 TIME_MSG("GUI delay");
717 #endif
719 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
720 qnx_clip_init();
721 #endif
723 #ifdef FEAT_XCLIPBOARD
724 /* Start using the X clipboard, unless the GUI was started. */
725 # ifdef FEAT_GUI
726 if (!gui.in_use)
727 # endif
729 setup_term_clip();
730 TIME_MSG("setup clipboard");
732 #endif
734 #ifdef FEAT_CLIENTSERVER
735 /* Prepare for being a Vim server. */
736 prepare_server(&params);
737 #endif
740 * If "-" argument given: Read file from stdin.
741 * Do this before starting Raw mode, because it may change things that the
742 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
743 * are the same terminal: "cat | vim -".
744 * Using autocommands here may cause trouble...
746 if (params.edit_type == EDIT_STDIN && !recoverymode)
747 read_stdin();
749 #if defined(UNIX) || defined(VMS)
750 /* When switching screens and something caused a message from a vimrc
751 * script, need to output an extra newline on exit. */
752 if ((did_emsg || msg_didout) && *T_TI != NUL)
753 newline_on_exit = TRUE;
754 #endif
757 * When done something that is not allowed or error message call
758 * wait_return. This must be done before starttermcap(), because it may
759 * switch to another screen. It must be done after settmode(TMODE_RAW),
760 * because we want to react on a single key stroke.
761 * Call settmode and starttermcap here, so the T_KS and T_TI may be
762 * defined by termcapinit and redefined in .exrc.
764 settmode(TMODE_RAW);
765 TIME_MSG("setting raw mode");
767 if (need_wait_return || msg_didany)
769 wait_return(TRUE);
770 TIME_MSG("waiting for return");
773 starttermcap(); /* start termcap if not done by wait_return() */
774 TIME_MSG("start termcap");
776 #ifdef FEAT_MOUSE
777 setmouse(); /* may start using the mouse */
778 #endif
779 if (scroll_region)
780 scroll_region_reset(); /* In case Rows changed */
781 scroll_start(); /* may scroll the screen to the right position */
784 * Don't clear the screen when starting in Ex mode, unless using the GUI.
786 if (exmode_active
787 #ifdef FEAT_GUI
788 && !gui.in_use
789 #endif
791 must_redraw = CLEAR;
792 else
794 screenclear(); /* clear screen */
795 TIME_MSG("clearing screen");
798 #ifdef FEAT_CRYPT
799 if (params.ask_for_key)
801 (void)get_crypt_key(TRUE, TRUE);
802 TIME_MSG("getting crypt key");
804 #endif
806 no_wait_return = TRUE;
809 * Create the requested number of windows and edit buffers in them.
810 * Also does recovery if "recoverymode" set.
812 create_windows(&params);
813 TIME_MSG("opening buffers");
815 #ifdef FEAT_EVAL
816 /* clear v:swapcommand */
817 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
818 #endif
820 /* Ex starts at last line of the file */
821 if (exmode_active)
822 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
824 #ifdef FEAT_AUTOCMD
825 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
826 TIME_MSG("BufEnter autocommands");
827 #endif
828 setpcmark();
830 #ifdef FEAT_QUICKFIX
832 * When started with "-q errorfile" jump to first error now.
834 if (params.edit_type == EDIT_QF)
836 qf_jump(NULL, 0, 0, FALSE);
837 TIME_MSG("jump to first error");
839 #endif
841 #ifdef FEAT_WINDOWS
843 * If opened more than one window, start editing files in the other
844 * windows.
846 edit_buffers(&params);
847 #endif
849 #ifdef FEAT_DIFF
850 if (params.diff_mode)
852 win_T *wp;
854 /* set options in each window for "vimdiff". */
855 for (wp = firstwin; wp != NULL; wp = wp->w_next)
856 diff_win_options(wp, TRUE);
858 #endif
861 * Shorten any of the filenames, but only when absolute.
863 shorten_fnames(FALSE);
866 * Need to jump to the tag before executing the '-c command'.
867 * Makes "vim -c '/return' -t main" work.
869 if (params.tagname != NULL)
871 #if defined(HAS_SWAP_EXISTS_ACTION)
872 swap_exists_did_quit = FALSE;
873 #endif
875 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
876 do_cmdline_cmd(IObuff);
877 TIME_MSG("jumping to tag");
879 #if defined(HAS_SWAP_EXISTS_ACTION)
880 /* If the user doesn't want to edit the file then we quit here. */
881 if (swap_exists_did_quit)
882 getout(1);
883 #endif
886 /* Execute any "+", "-c" and "-S" arguments. */
887 if (params.n_commands > 0)
888 exe_commands(&params);
890 RedrawingDisabled = 0;
891 redraw_all_later(NOT_VALID);
892 no_wait_return = FALSE;
893 starting = 0;
895 #ifdef FEAT_TERMRESPONSE
896 /* Requesting the termresponse is postponed until here, so that a "-c q"
897 * argument doesn't make it appear in the shell Vim was started from. */
898 may_req_termresponse();
899 #endif
901 /* start in insert mode */
902 if (p_im)
903 need_start_insertmode = TRUE;
905 #ifdef FEAT_AUTOCMD
906 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
907 TIME_MSG("VimEnter autocommands");
908 #endif
910 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
911 /* When a startup script or session file setup for diff'ing and
912 * scrollbind, sync the scrollbind now. */
913 if (curwin->w_p_diff && curwin->w_p_scb)
915 update_topline();
916 check_scrollbind((linenr_T)0, 0L);
917 TIME_MSG("diff scrollbinding");
919 #endif
921 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
922 mch_set_winsize_now(); /* Allow winsize changes from now on */
923 #endif
925 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
926 /* When tab pages were created, may need to update the tab pages line and
927 * scrollbars. This is skipped while creating them. */
928 if (first_tabpage->tp_next != NULL)
930 out_flush();
931 gui_init_which_components(NULL);
932 gui_update_scrollbars(TRUE);
934 need_mouse_correct = TRUE;
935 #endif
937 /* If ":startinsert" command used, stuff a dummy command to be able to
938 * call normal_cmd(), which will then start Insert mode. */
939 if (restart_edit != 0)
940 stuffcharReadbuff(K_NOP);
942 #ifdef FEAT_NETBEANS_INTG
943 if (usingNetbeans)
944 /* Tell the client that it can start sending commands. */
945 netbeans_startup_done();
946 #endif
948 TIME_MSG("before starting main loop");
950 #if FEAT_GUI_MACVIM
951 // The autorelease pool might have filled up quite a bit during
952 // initialization, so purge it before entering the main loop.
953 objc_msgSend(autoreleasePool, sel_getUid("release"));
955 // The main loop sets up its own autorelease pool, but to be safe we still
956 // realloc this one here.
957 autoreleasePool = objc_msgSend(objc_msgSend(
958 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
959 ), sel_getUid("init"));
960 #endif
963 * Call the main command loop. This never returns.
965 main_loop(FALSE, FALSE);
967 #if FEAT_GUI_MACVIM
968 objc_msgSend(autoreleasePool, sel_getUid("release"));
969 #endif
971 return 0;
973 #endif /* PROTO */
976 * Main loop: Execute Normal mode commands until exiting Vim.
977 * Also used to handle commands in the command-line window, until the window
978 * is closed.
979 * Also used to handle ":visual" command after ":global": execute Normal mode
980 * commands, return when entering Ex mode. "noexmode" is TRUE then.
982 void
983 main_loop(cmdwin, noexmode)
984 int cmdwin; /* TRUE when working in the command-line window */
985 int noexmode; /* TRUE when return on entering Ex mode */
987 oparg_T oa; /* operator arguments */
988 int previous_got_int = FALSE; /* "got_int" was TRUE */
990 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
991 /* Setup to catch a terminating error from the X server. Just ignore
992 * it, restore the state and continue. This might not always work
993 * properly, but at least we don't exit unexpectedly when the X server
994 * exists while Vim is running in a console. */
995 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
997 State = NORMAL;
998 # ifdef FEAT_VISUAL
999 VIsual_active = FALSE;
1000 # endif
1001 got_int = TRUE;
1002 need_wait_return = FALSE;
1003 global_busy = FALSE;
1004 exmode_active = 0;
1005 skip_redraw = FALSE;
1006 RedrawingDisabled = 0;
1007 no_wait_return = 0;
1008 # ifdef FEAT_EVAL
1009 emsg_skip = 0;
1010 # endif
1011 emsg_off = 0;
1012 # ifdef FEAT_MOUSE
1013 setmouse();
1014 # endif
1015 settmode(TMODE_RAW);
1016 starttermcap();
1017 scroll_start();
1018 redraw_later_clear();
1020 #endif
1022 clear_oparg(&oa);
1023 while (!cmdwin
1024 #ifdef FEAT_CMDWIN
1025 || cmdwin_result == 0
1026 #endif
1029 #if FEAT_GUI_MACVIM
1030 // Cocoa needs an NSAutoreleasePool in place or it will leak memory.
1031 // This particular pool gets released once every loop.
1032 id autoreleasePool = objc_msgSend(objc_msgSend(
1033 objc_getClass("NSAutoreleasePool"),sel_getUid("alloc")
1034 ), sel_getUid("init"));
1035 #endif
1037 if (stuff_empty())
1039 did_check_timestamps = FALSE;
1040 if (need_check_timestamps)
1041 check_timestamps(FALSE);
1042 if (need_wait_return) /* if wait_return still needed ... */
1043 wait_return(FALSE); /* ... call it now */
1044 if (need_start_insertmode && goto_im()
1045 #ifdef FEAT_VISUAL
1046 && !VIsual_active
1047 #endif
1050 need_start_insertmode = FALSE;
1051 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1052 /* skip the fileinfo message now, because it would be shown
1053 * after insert mode finishes! */
1054 need_fileinfo = FALSE;
1058 /* Reset "got_int" now that we got back to the main loop. Except when
1059 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1060 * the ":g" command.
1061 * For ":g/pat/vi" we reset "got_int" when used once. When used
1062 * a second time we go back to Ex mode and abort the ":g" command. */
1063 if (got_int)
1065 if (noexmode && global_busy && !exmode_active && previous_got_int)
1067 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1068 * used and keep "got_int" set, so that it aborts ":g". */
1069 exmode_active = EXMODE_NORMAL;
1070 State = NORMAL;
1072 else if (!global_busy || !exmode_active)
1074 if (!quit_more)
1075 (void)vgetc(); /* flush all buffers */
1076 got_int = FALSE;
1078 previous_got_int = TRUE;
1080 else
1081 previous_got_int = FALSE;
1083 if (!exmode_active)
1084 msg_scroll = FALSE;
1085 quit_more = FALSE;
1088 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1089 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1090 * update cursor and redraw.
1092 if (skip_redraw || exmode_active)
1093 skip_redraw = FALSE;
1094 else if (do_redraw || stuff_empty())
1096 #ifdef FEAT_AUTOCMD
1097 /* Trigger CursorMoved if the cursor moved. */
1098 if (!finish_op && has_cursormoved()
1099 && !equalpos(last_cursormoved, curwin->w_cursor))
1101 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1102 last_cursormoved = curwin->w_cursor;
1104 #endif
1106 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1107 /* Scroll-binding for diff mode may have been postponed until
1108 * here. Avoids doing it for every change. */
1109 if (diff_need_scrollbind)
1111 check_scrollbind((linenr_T)0, 0L);
1112 diff_need_scrollbind = FALSE;
1114 #endif
1115 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1116 /* Include a closed fold completely in the Visual area. */
1117 foldAdjustVisual();
1118 #endif
1119 #ifdef FEAT_FOLDING
1121 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1122 * contain the cursor.
1123 * When 'foldopen' is "all", open the fold(s) under the cursor.
1124 * This may mark the window for redrawing.
1126 if (hasAnyFolding(curwin) && !char_avail())
1128 foldCheckClose();
1129 if (fdo_flags & FDO_ALL)
1130 foldOpenCursor();
1132 #endif
1135 * Before redrawing, make sure w_topline is correct, and w_leftcol
1136 * if lines don't wrap, and w_skipcol if lines wrap.
1138 update_topline();
1139 validate_cursor();
1141 #ifdef FEAT_VISUAL
1142 if (VIsual_active)
1143 update_curbuf(INVERTED);/* update inverted part */
1144 else
1145 #endif
1146 if (must_redraw)
1147 update_screen(0);
1148 else if (redraw_cmdline || clear_cmdline)
1149 showmode();
1150 #ifdef FEAT_WINDOWS
1151 redraw_statuslines();
1152 #endif
1153 #ifdef FEAT_TITLE
1154 if (need_maketitle)
1155 maketitle();
1156 #endif
1157 /* display message after redraw */
1158 if (keep_msg != NULL)
1160 char_u *p;
1162 /* msg_attr_keep() will set keep_msg to NULL, must free the
1163 * string here. */
1164 p = keep_msg;
1165 keep_msg = NULL;
1166 msg_attr(p, keep_msg_attr);
1167 vim_free(p);
1169 if (need_fileinfo) /* show file info after redraw */
1171 fileinfo(FALSE, TRUE, FALSE);
1172 need_fileinfo = FALSE;
1175 emsg_on_display = FALSE; /* can delete error message now */
1176 did_emsg = FALSE;
1177 msg_didany = FALSE; /* reset lines_left in msg_start() */
1178 may_clear_sb_text(); /* clear scroll-back text on next msg */
1179 showruler(FALSE);
1181 setcursor();
1182 cursor_on();
1184 do_redraw = FALSE;
1186 #ifdef FEAT_GUI
1187 if (need_mouse_correct)
1188 gui_mouse_correct();
1189 #endif
1192 * Update w_curswant if w_set_curswant has been set.
1193 * Postponed until here to avoid computing w_virtcol too often.
1195 update_curswant();
1197 #ifdef FEAT_EVAL
1199 * May perform garbage collection when waiting for a character, but
1200 * only at the very toplevel. Otherwise we may be using a List or
1201 * Dict internally somewhere.
1202 * "may_garbage_collect" is reset in vgetc() which is invoked through
1203 * do_exmode() and normal_cmd().
1205 may_garbage_collect = (!cmdwin && !noexmode);
1206 #endif
1208 * If we're invoked as ex, do a round of ex commands.
1209 * Otherwise, get and execute a normal mode command.
1211 if (exmode_active)
1213 if (noexmode) /* End of ":global/path/visual" commands */
1214 return;
1215 do_exmode(exmode_active == EXMODE_VIM);
1217 else
1218 normal_cmd(&oa, TRUE);
1220 #if FEAT_GUI_MACVIM
1221 // TODO! Make sure there are no continue statements that will cause
1222 // this not to be called or MacVim will leak memory!
1223 objc_msgSend(autoreleasePool, sel_getUid("release"));
1224 #endif
1229 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO) \
1230 || defined(FEAT_GUI_MACVIM)
1232 * Exit, but leave behind swap files for modified buffers.
1234 void
1235 getout_preserve_modified(exitval)
1236 int exitval;
1238 # if defined(SIGHUP) && defined(SIG_IGN)
1239 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1240 * makes Vim exit and then handling SIGHUP causes various reentrance
1241 * problems. */
1242 signal(SIGHUP, SIG_IGN);
1243 # endif
1245 ml_close_notmod(); /* close all not-modified buffers */
1246 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1247 ml_close_all(FALSE); /* close all memfiles, without deleting */
1248 getout(exitval); /* exit Vim properly */
1250 #endif
1253 /* Exit properly */
1254 void
1255 getout(exitval)
1256 int exitval;
1258 #ifdef FEAT_AUTOCMD
1259 buf_T *buf;
1260 win_T *wp;
1261 tabpage_T *tp, *next_tp;
1262 #endif
1264 exiting = TRUE;
1266 /* When running in Ex mode an error causes us to exit with a non-zero exit
1267 * code. POSIX requires this, although it's not 100% clear from the
1268 * standard. */
1269 if (exmode_active)
1270 exitval += ex_exitval;
1272 /* Position the cursor on the last screen line, below all the text */
1273 #ifdef FEAT_GUI
1274 if (!gui.in_use)
1275 #endif
1276 windgoto((int)Rows - 1, 0);
1278 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1279 /* Optionally print hashtable efficiency. */
1280 hash_debug_results();
1281 #endif
1283 #ifdef FEAT_GUI
1284 msg_didany = FALSE;
1285 #endif
1287 #ifdef FEAT_AUTOCMD
1288 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1289 # if defined FEAT_WINDOWS
1290 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1292 next_tp = tp->tp_next;
1293 for (wp = (tp == curtab)
1294 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1296 buf = wp->w_buffer;
1297 if (buf->b_changedtick != -1)
1299 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1300 FALSE, buf);
1301 buf->b_changedtick = -1; /* note that we did it already */
1302 /* start all over, autocommands may mess up the lists */
1303 next_tp = first_tabpage;
1304 break;
1308 # else
1309 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1310 # endif
1312 /* Trigger BufUnload for buffers that are loaded */
1313 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1314 if (buf->b_ml.ml_mfp != NULL)
1316 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1317 FALSE, buf);
1318 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1319 break;
1321 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1322 #endif
1324 #ifdef FEAT_VIMINFO
1325 if (*p_viminfo != NUL)
1326 /* Write out the registers, history, marks etc, to the viminfo file */
1327 write_viminfo(NULL, FALSE);
1328 #endif
1330 #ifdef FEAT_AUTOCMD
1331 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1332 #endif
1334 #ifdef FEAT_PROFILE
1335 profile_dump();
1336 #endif
1338 if (did_emsg
1339 #ifdef FEAT_GUI
1340 || (gui.in_use && msg_didany && p_verbose > 0)
1341 #endif
1344 /* give the user a chance to read the (error) message */
1345 no_wait_return = FALSE;
1346 wait_return(FALSE);
1349 #ifdef FEAT_AUTOCMD
1350 /* Position the cursor again, the autocommands may have moved it */
1351 # ifdef FEAT_GUI
1352 if (!gui.in_use)
1353 # endif
1354 windgoto((int)Rows - 1, 0);
1355 #endif
1357 #ifdef FEAT_MZSCHEME
1358 mzscheme_end();
1359 #endif
1360 #ifdef FEAT_TCL
1361 tcl_end();
1362 #endif
1363 #ifdef FEAT_RUBY
1364 ruby_end();
1365 #endif
1366 #ifdef FEAT_PYTHON
1367 python_end();
1368 #endif
1369 #ifdef FEAT_PERL
1370 perl_end();
1371 #endif
1372 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1373 iconv_end();
1374 #endif
1375 #ifdef FEAT_NETBEANS_INTG
1376 netbeans_end();
1377 #endif
1378 #ifdef FEAT_CSCOPE
1379 cs_end();
1380 #endif
1381 #ifdef FEAT_EVAL
1382 if (garbage_collect_at_exit)
1383 garbage_collect();
1384 #endif
1386 mch_exit(exitval);
1390 * Get a (optional) count for a Vim argument.
1392 static int
1393 get_number_arg(p, idx, def)
1394 char_u *p; /* pointer to argument */
1395 int *idx; /* index in argument, is incremented */
1396 int def; /* default value */
1398 if (vim_isdigit(p[*idx]))
1400 def = atoi((char *)&(p[*idx]));
1401 while (vim_isdigit(p[*idx]))
1402 *idx = *idx + 1;
1404 return def;
1407 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1409 * Setup to use the current locale (for ctype() and many other things).
1411 static void
1412 init_locale()
1414 setlocale(LC_ALL, "");
1415 # ifdef WIN32
1416 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1417 * text while it's expecting text in the current locale. This call avoids
1418 * that. */
1419 setlocale(LC_CTYPE, "C");
1420 # endif
1422 # ifdef FEAT_GETTEXT
1424 int mustfree = FALSE;
1425 char_u *p;
1427 # ifdef DYNAMIC_GETTEXT
1428 /* Initialize the gettext library */
1429 dyn_libintl_init(NULL);
1430 # endif
1431 /* expand_env() doesn't work yet, because chartab[] is not initialized
1432 * yet, call vim_getenv() directly */
1433 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1434 if (p != NULL && *p != NUL)
1436 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1437 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1439 if (mustfree)
1440 vim_free(p);
1441 textdomain(VIMPACKAGE);
1443 # endif
1445 #endif
1448 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1449 * If the executable name starts with "r" we disable shell commands.
1450 * If the next character is "e" we run in Easy mode.
1451 * If the next character is "g" we run the GUI version.
1452 * If the next characters are "view" we start in readonly mode.
1453 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1454 * If the next characters are "ex" we start in Ex mode. If it's followed
1455 * by "im" use improved Ex mode.
1457 static void
1458 parse_command_name(parmp)
1459 mparm_T *parmp;
1461 char_u *initstr;
1463 initstr = gettail((char_u *)parmp->argv[0]);
1465 #ifdef MACOS_X_UNIX
1466 /* An issue has been seen when launching Vim in such a way that
1467 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1468 * executable or a symbolic link of it. Until this issue is resolved
1469 * we prohibit the GUI from being used.
1471 if (STRCMP(initstr, parmp->argv[0]) == 0)
1472 disallow_gui = TRUE;
1474 /* TODO: On MacOS X default to gui if argv[0] ends in:
1475 * /Vim.app/Contents/MacOS/Vim */
1476 #endif
1478 #ifdef FEAT_EVAL
1479 set_vim_var_string(VV_PROGNAME, initstr, -1);
1480 #endif
1482 if (TOLOWER_ASC(initstr[0]) == 'r')
1484 restricted = TRUE;
1485 ++initstr;
1488 /* Avoid using evim mode for "editor". */
1489 if (TOLOWER_ASC(initstr[0]) == 'e'
1490 && (TOLOWER_ASC(initstr[1]) == 'v'
1491 || TOLOWER_ASC(initstr[1]) == 'g'))
1493 #ifdef FEAT_GUI
1494 gui.starting = TRUE;
1495 #endif
1496 parmp->evim_mode = TRUE;
1497 ++initstr;
1500 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1502 main_start_gui();
1503 #ifdef FEAT_GUI
1504 ++initstr;
1505 #endif
1508 if (STRNICMP(initstr, "view", 4) == 0)
1510 readonlymode = TRUE;
1511 curbuf->b_p_ro = TRUE;
1512 p_uc = 10000; /* don't update very often */
1513 initstr += 4;
1515 else if (STRNICMP(initstr, "vim", 3) == 0)
1516 initstr += 3;
1518 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1519 if (STRICMP(initstr, "diff") == 0)
1521 #ifdef FEAT_DIFF
1522 parmp->diff_mode = TRUE;
1523 #else
1524 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1525 mch_errmsg("\n");
1526 mch_exit(2);
1527 #endif
1530 if (STRNICMP(initstr, "ex", 2) == 0)
1532 if (STRNICMP(initstr + 2, "im", 2) == 0)
1533 exmode_active = EXMODE_VIM;
1534 else
1535 exmode_active = EXMODE_NORMAL;
1536 change_compatible(TRUE); /* set 'compatible' */
1541 * Get the name of the display, before gui_prepare() removes it from
1542 * argv[]. Used for the xterm-clipboard display.
1544 * Also find the --server... arguments and --socketid and --windowid
1546 /*ARGSUSED*/
1547 static void
1548 early_arg_scan(parmp)
1549 mparm_T *parmp;
1551 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
1552 int argc = parmp->argc;
1553 char **argv = parmp->argv;
1554 int i;
1556 for (i = 1; i < argc; i++)
1558 if (STRCMP(argv[i], "--") == 0)
1559 break;
1560 # ifdef FEAT_XCLIPBOARD
1561 else if (STRICMP(argv[i], "-display") == 0
1562 # if defined(FEAT_GUI_GTK)
1563 || STRICMP(argv[i], "--display") == 0
1564 # endif
1567 if (i == argc - 1)
1568 mainerr_arg_missing((char_u *)argv[i]);
1569 xterm_display = argv[++i];
1571 # endif
1572 # ifdef FEAT_CLIENTSERVER
1573 else if (STRICMP(argv[i], "--servername") == 0)
1575 if (i == argc - 1)
1576 mainerr_arg_missing((char_u *)argv[i]);
1577 parmp->serverName_arg = (char_u *)argv[++i];
1579 else if (STRICMP(argv[i], "--serverlist") == 0)
1580 parmp->serverArg = TRUE;
1581 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1583 parmp->serverArg = TRUE;
1584 # ifdef FEAT_GUI
1585 if (strstr(argv[i], "-wait") != 0)
1586 /* don't fork() when starting the GUI to edit files ourself */
1587 gui.dofork = FALSE;
1588 # endif
1590 # endif
1592 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1593 # ifdef FEAT_GUI_W32
1594 else if (STRICMP(argv[i], "--windowid") == 0)
1595 # else
1596 else if (STRICMP(argv[i], "--socketid") == 0)
1597 # endif
1599 unsigned int id;
1600 int count;
1602 if (i == argc - 1)
1603 mainerr_arg_missing((char_u *)argv[i]);
1604 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1605 count = sscanf(&(argv[i + 1][2]), "%x", &id);
1606 else
1607 count = sscanf(argv[i+1], "%u", &id);
1608 if (count != 1)
1609 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1610 else
1611 # ifdef FEAT_GUI_W32
1612 win_socket_id = id;
1613 # else
1614 gtk_socket_id = id;
1615 # endif
1616 i++;
1618 # endif
1619 # ifdef FEAT_GUI_GTK
1620 else if (STRICMP(argv[i], "--echo-wid") == 0)
1621 echo_wid_arg = TRUE;
1622 # endif
1624 #endif
1628 * Scan the command line arguments.
1630 static void
1631 command_line_scan(parmp)
1632 mparm_T *parmp;
1634 int argc = parmp->argc;
1635 char **argv = parmp->argv;
1636 int argv_idx; /* index in argv[n][] */
1637 int had_minmin = FALSE; /* found "--" argument */
1638 int want_argument; /* option argument with argument */
1639 int c;
1640 char_u *p = NULL;
1641 long n;
1643 --argc;
1644 ++argv;
1645 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1646 while (argc > 0)
1649 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1651 if (argv[0][0] == '+' && !had_minmin)
1653 if (parmp->n_commands >= MAX_ARG_CMDS)
1654 mainerr(ME_EXTRA_CMD, NULL);
1655 argv_idx = -1; /* skip to next argument */
1656 if (argv[0][1] == NUL)
1657 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1658 else
1659 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1663 * Optional argument.
1665 else if (argv[0][0] == '-' && !had_minmin)
1667 want_argument = FALSE;
1668 c = argv[0][argv_idx++];
1669 #ifdef VMS
1671 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1672 * and "-/X" as "-X".
1674 if (c == '/')
1676 c = argv[0][argv_idx++];
1677 c = TOUPPER_ASC(c);
1679 else
1680 c = TOLOWER_ASC(c);
1681 #endif
1682 switch (c)
1684 case NUL: /* "vim -" read from stdin */
1685 /* "ex -" silent mode */
1686 if (exmode_active)
1687 silent_mode = TRUE;
1688 else
1690 if (parmp->edit_type != EDIT_NONE)
1691 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1692 parmp->edit_type = EDIT_STDIN;
1693 read_cmd_fd = 2; /* read from stderr instead of stdin */
1695 argv_idx = -1; /* skip to next argument */
1696 break;
1698 case '-': /* "--" don't take any more option arguments */
1699 /* "--help" give help message */
1700 /* "--version" give version message */
1701 /* "--literal" take files literally */
1702 /* "--nofork" don't fork */
1703 /* "--noplugin[s]" skip plugins */
1704 /* "--cmd <cmd>" execute cmd before vimrc */
1705 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1706 usage();
1707 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1709 Columns = 80; /* need to init Columns */
1710 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1711 list_version();
1712 msg_putchar('\n');
1713 msg_didout = FALSE;
1714 mch_exit(0);
1716 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1718 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1719 parmp->literal = TRUE;
1720 #endif
1722 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1724 #ifdef FEAT_GUI
1725 gui.dofork = FALSE; /* don't fork() when starting GUI */
1726 #endif
1728 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1729 p_lpl = FALSE;
1730 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1732 want_argument = TRUE;
1733 argv_idx += 3;
1735 #ifdef FEAT_CLIENTSERVER
1736 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1737 ; /* already processed -- no arg */
1738 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1739 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1741 /* already processed -- snatch the following arg */
1742 if (argc > 1)
1744 --argc;
1745 ++argv;
1748 #endif
1749 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1750 # ifdef FEAT_GUI_GTK
1751 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1752 # else
1753 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1754 # endif
1756 /* already processed -- snatch the following arg */
1757 if (argc > 1)
1759 --argc;
1760 ++argv;
1763 #endif
1764 #ifdef FEAT_GUI_GTK
1765 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1767 /* already processed, skip */
1769 #endif
1770 else
1772 if (argv[0][argv_idx])
1773 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1774 had_minmin = TRUE;
1776 if (!want_argument)
1777 argv_idx = -1; /* skip to next argument */
1778 break;
1780 case 'A': /* "-A" start in Arabic mode */
1781 #ifdef FEAT_ARABIC
1782 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1783 #else
1784 mch_errmsg(_(e_noarabic));
1785 mch_exit(2);
1786 #endif
1787 break;
1789 case 'b': /* "-b" binary mode */
1790 /* Needs to be effective before expanding file names, because
1791 * for Win32 this makes us edit a shortcut file itself,
1792 * instead of the file it links to. */
1793 set_options_bin(curbuf->b_p_bin, 1, 0);
1794 curbuf->b_p_bin = 1; /* binary file I/O */
1795 break;
1797 case 'C': /* "-C" Compatible */
1798 change_compatible(TRUE);
1799 break;
1801 case 'e': /* "-e" Ex mode */
1802 exmode_active = EXMODE_NORMAL;
1803 break;
1805 case 'E': /* "-E" Improved Ex mode */
1806 exmode_active = EXMODE_VIM;
1807 break;
1809 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1810 window directly, not with newcli */
1811 #ifdef FEAT_GUI
1812 gui.dofork = FALSE; /* don't fork() when starting GUI */
1813 #endif
1814 break;
1816 case 'g': /* "-g" start GUI */
1817 main_start_gui();
1818 break;
1820 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1821 #ifdef FEAT_FKMAP
1822 curwin->w_p_rl = p_fkmap = TRUE;
1823 #else
1824 mch_errmsg(_(e_nofarsi));
1825 mch_exit(2);
1826 #endif
1827 break;
1829 case 'h': /* "-h" give help message */
1830 #ifdef FEAT_GUI_GNOME
1831 /* Tell usage() to exit for "gvim". */
1832 gui.starting = FALSE;
1833 #endif
1834 usage();
1835 break;
1837 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1838 #ifdef FEAT_RIGHTLEFT
1839 curwin->w_p_rl = p_hkmap = TRUE;
1840 #else
1841 mch_errmsg(_(e_nohebrew));
1842 mch_exit(2);
1843 #endif
1844 break;
1846 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1847 #ifdef FEAT_LISP
1848 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1849 p_sm = TRUE;
1850 #endif
1851 break;
1853 case 'M': /* "-M" no changes or writing of files */
1854 reset_modifiable();
1855 /* FALLTHROUGH */
1857 case 'm': /* "-m" no writing of files */
1858 p_write = FALSE;
1859 break;
1861 case 'y': /* "-y" easy mode */
1862 #ifdef FEAT_GUI
1863 gui.starting = TRUE; /* start GUI a bit later */
1864 #endif
1865 parmp->evim_mode = TRUE;
1866 break;
1868 case 'N': /* "-N" Nocompatible */
1869 change_compatible(FALSE);
1870 break;
1872 case 'n': /* "-n" no swap file */
1873 parmp->no_swap_file = TRUE;
1874 break;
1876 case 'p': /* "-p[N]" open N tab pages */
1877 #ifdef TARGET_API_MAC_OSX
1878 /* For some reason on MacOS X, an argument like:
1879 -psn_0_10223617 is passed in when invoke from Finder
1880 or with the 'open' command */
1881 if (argv[0][argv_idx] == 's')
1883 argv_idx = -1; /* bypass full -psn */
1884 main_start_gui();
1885 break;
1887 #endif
1888 #ifdef FEAT_WINDOWS
1889 /* default is 0: open window for each file */
1890 parmp->window_count = get_number_arg((char_u *)argv[0],
1891 &argv_idx, 0);
1892 parmp->window_layout = WIN_TABS;
1893 #endif
1894 break;
1896 case 'o': /* "-o[N]" open N horizontal split windows */
1897 #ifdef FEAT_WINDOWS
1898 /* default is 0: open window for each file */
1899 parmp->window_count = get_number_arg((char_u *)argv[0],
1900 &argv_idx, 0);
1901 parmp->window_layout = WIN_HOR;
1902 #endif
1903 break;
1905 case 'O': /* "-O[N]" open N vertical split windows */
1906 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1907 /* default is 0: open window for each file */
1908 parmp->window_count = get_number_arg((char_u *)argv[0],
1909 &argv_idx, 0);
1910 parmp->window_layout = WIN_VER;
1911 #endif
1912 break;
1914 #ifdef FEAT_QUICKFIX
1915 case 'q': /* "-q" QuickFix mode */
1916 if (parmp->edit_type != EDIT_NONE)
1917 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1918 parmp->edit_type = EDIT_QF;
1919 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1921 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1922 argv_idx = -1;
1924 else if (argc > 1) /* "-q {errorfile}" */
1925 want_argument = TRUE;
1926 break;
1927 #endif
1929 case 'R': /* "-R" readonly mode */
1930 readonlymode = TRUE;
1931 curbuf->b_p_ro = TRUE;
1932 p_uc = 10000; /* don't update very often */
1933 break;
1935 case 'r': /* "-r" recovery mode */
1936 case 'L': /* "-L" recovery mode */
1937 recoverymode = 1;
1938 break;
1940 case 's':
1941 if (exmode_active) /* "-s" silent (batch) mode */
1942 silent_mode = TRUE;
1943 else /* "-s {scriptin}" read from script file */
1944 want_argument = TRUE;
1945 break;
1947 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1948 if (parmp->edit_type != EDIT_NONE)
1949 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1950 parmp->edit_type = EDIT_TAG;
1951 if (argv[0][argv_idx]) /* "-t{tag}" */
1953 parmp->tagname = (char_u *)argv[0] + argv_idx;
1954 argv_idx = -1;
1956 else /* "-t {tag}" */
1957 want_argument = TRUE;
1958 break;
1960 #ifdef FEAT_EVAL
1961 case 'D': /* "-D" Debugging */
1962 parmp->use_debug_break_level = 9999;
1963 break;
1964 #endif
1965 #ifdef FEAT_DIFF
1966 case 'd': /* "-d" 'diff' */
1967 # ifdef AMIGA
1968 /* check for "-dev {device}" */
1969 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1970 want_argument = TRUE;
1971 else
1972 # endif
1973 parmp->diff_mode = TRUE;
1974 break;
1975 #endif
1976 case 'V': /* "-V{N}" Verbose level */
1977 /* default is 10: a little bit verbose */
1978 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1979 if (argv[0][argv_idx] != NUL)
1981 set_option_value((char_u *)"verbosefile", 0L,
1982 (char_u *)argv[0] + argv_idx, 0);
1983 argv_idx = (int)STRLEN(argv[0]);
1985 break;
1987 case 'v': /* "-v" Vi-mode (as if called "vi") */
1988 exmode_active = 0;
1989 #ifdef FEAT_GUI
1990 gui.starting = FALSE; /* don't start GUI */
1991 #endif
1992 break;
1994 case 'w': /* "-w{number}" set window height */
1995 /* "-w {scriptout}" write to script */
1996 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1998 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1999 set_option_value((char_u *)"window", n, NULL, 0);
2000 break;
2002 want_argument = TRUE;
2003 break;
2005 #ifdef FEAT_CRYPT
2006 case 'x': /* "-x" encrypted reading/writing of files */
2007 parmp->ask_for_key = TRUE;
2008 break;
2009 #endif
2011 case 'X': /* "-X" don't connect to X server */
2012 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2013 x_no_connect = TRUE;
2014 #endif
2015 break;
2017 case 'Z': /* "-Z" restricted mode */
2018 restricted = TRUE;
2019 break;
2021 case 'c': /* "-c{command}" or "-c {command}" execute
2022 command */
2023 if (argv[0][argv_idx] != NUL)
2025 if (parmp->n_commands >= MAX_ARG_CMDS)
2026 mainerr(ME_EXTRA_CMD, NULL);
2027 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2028 + argv_idx;
2029 argv_idx = -1;
2030 break;
2032 /*FALLTHROUGH*/
2033 case 'S': /* "-S {file}" execute Vim script */
2034 case 'i': /* "-i {viminfo}" use for viminfo */
2035 #ifndef FEAT_DIFF
2036 case 'd': /* "-d {device}" device (for Amiga) */
2037 #endif
2038 case 'T': /* "-T {terminal}" terminal name */
2039 case 'u': /* "-u {vimrc}" vim inits file */
2040 case 'U': /* "-U {gvimrc}" gvim inits file */
2041 case 'W': /* "-W {scriptout}" overwrite */
2042 #ifdef FEAT_GUI_W32
2043 case 'P': /* "-P {parent title}" MDI parent */
2044 #endif
2045 want_argument = TRUE;
2046 break;
2048 default:
2049 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2053 * Handle option arguments with argument.
2055 if (want_argument)
2058 * Check for garbage immediately after the option letter.
2060 if (argv[0][argv_idx] != NUL)
2061 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2063 --argc;
2064 if (argc < 1 && c != 'S')
2065 mainerr_arg_missing((char_u *)argv[0]);
2066 ++argv;
2067 argv_idx = -1;
2069 switch (c)
2071 case 'c': /* "-c {command}" execute command */
2072 case 'S': /* "-S {file}" execute Vim script */
2073 if (parmp->n_commands >= MAX_ARG_CMDS)
2074 mainerr(ME_EXTRA_CMD, NULL);
2075 if (c == 'S')
2077 char *a;
2079 if (argc < 1)
2080 /* "-S" without argument: use default session file
2081 * name. */
2082 a = SESSION_FILE;
2083 else if (argv[0][0] == '-')
2085 /* "-S" followed by another option: use default
2086 * session file name. */
2087 a = SESSION_FILE;
2088 ++argc;
2089 --argv;
2091 else
2092 a = argv[0];
2093 p = alloc((unsigned)(STRLEN(a) + 4));
2094 if (p == NULL)
2095 mch_exit(2);
2096 sprintf((char *)p, "so %s", a);
2097 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2098 parmp->commands[parmp->n_commands++] = p;
2100 else
2101 parmp->commands[parmp->n_commands++] =
2102 (char_u *)argv[0];
2103 break;
2105 case '-': /* "--cmd {command}" execute command */
2106 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2107 mainerr(ME_EXTRA_CMD, NULL);
2108 parmp->pre_commands[parmp->n_pre_commands++] =
2109 (char_u *)argv[0];
2110 break;
2112 /* case 'd': -d {device} is handled in mch_check_win() for the
2113 * Amiga */
2115 #ifdef FEAT_QUICKFIX
2116 case 'q': /* "-q {errorfile}" QuickFix mode */
2117 parmp->use_ef = (char_u *)argv[0];
2118 break;
2119 #endif
2121 case 'i': /* "-i {viminfo}" use for viminfo */
2122 use_viminfo = (char_u *)argv[0];
2123 break;
2125 case 's': /* "-s {scriptin}" read from script file */
2126 if (scriptin[0] != NULL)
2128 scripterror:
2129 mch_errmsg(_("Attempt to open script file again: \""));
2130 mch_errmsg(argv[-1]);
2131 mch_errmsg(" ");
2132 mch_errmsg(argv[0]);
2133 mch_errmsg("\"\n");
2134 mch_exit(2);
2136 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2138 mch_errmsg(_("Cannot open for reading: \""));
2139 mch_errmsg(argv[0]);
2140 mch_errmsg("\"\n");
2141 mch_exit(2);
2143 if (save_typebuf() == FAIL)
2144 mch_exit(2); /* out of memory */
2145 break;
2147 case 't': /* "-t {tag}" */
2148 parmp->tagname = (char_u *)argv[0];
2149 break;
2151 case 'T': /* "-T {terminal}" terminal name */
2153 * The -T term argument is always available and when
2154 * HAVE_TERMLIB is supported it overrides the environment
2155 * variable TERM.
2157 #ifdef FEAT_GUI
2158 if (term_is_gui((char_u *)argv[0]))
2159 gui.starting = TRUE; /* start GUI a bit later */
2160 else
2161 #endif
2162 parmp->term = (char_u *)argv[0];
2163 break;
2165 case 'u': /* "-u {vimrc}" vim inits file */
2166 parmp->use_vimrc = (char_u *)argv[0];
2167 break;
2169 case 'U': /* "-U {gvimrc}" gvim inits file */
2170 #ifdef FEAT_GUI
2171 use_gvimrc = (char_u *)argv[0];
2172 #endif
2173 break;
2175 case 'w': /* "-w {nr}" 'window' value */
2176 /* "-w {scriptout}" append to script file */
2177 if (vim_isdigit(*((char_u *)argv[0])))
2179 argv_idx = 0;
2180 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2181 set_option_value((char_u *)"window", n, NULL, 0);
2182 argv_idx = -1;
2183 break;
2185 /*FALLTHROUGH*/
2186 case 'W': /* "-W {scriptout}" overwrite script file */
2187 if (scriptout != NULL)
2188 goto scripterror;
2189 if ((scriptout = mch_fopen(argv[0],
2190 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2192 mch_errmsg(_("Cannot open for script output: \""));
2193 mch_errmsg(argv[0]);
2194 mch_errmsg("\"\n");
2195 mch_exit(2);
2197 break;
2199 #ifdef FEAT_GUI_W32
2200 case 'P': /* "-P {parent title}" MDI parent */
2201 gui_mch_set_parent(argv[0]);
2202 break;
2203 #endif
2209 * File name argument.
2211 else
2213 argv_idx = -1; /* skip to next argument */
2215 /* Check for only one type of editing. */
2216 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2217 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2218 parmp->edit_type = EDIT_FILE;
2220 #ifdef MSWIN
2221 /* Remember if the argument was a full path before changing
2222 * slashes to backslashes. */
2223 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2224 parmp->full_path = TRUE;
2225 #endif
2227 /* Add the file to the global argument list. */
2228 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2229 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2230 mch_exit(2);
2231 #ifdef FEAT_DIFF
2232 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2233 && !mch_isdir(alist_name(&GARGLIST[0])))
2235 char_u *r;
2237 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2238 if (r != NULL)
2240 vim_free(p);
2241 p = r;
2244 #endif
2245 #if defined(__CYGWIN32__) && !defined(WIN32)
2247 * If vim is invoked by non-Cygwin tools, convert away any
2248 * DOS paths, so things like .swp files are created correctly.
2249 * Look for evidence of non-Cygwin paths before we bother.
2250 * This is only for when using the Unix files.
2252 if (strpbrk(p, "\\:") != NULL)
2254 char posix_path[PATH_MAX];
2256 cygwin_conv_to_posix_path(p, posix_path);
2257 vim_free(p);
2258 p = vim_strsave(posix_path);
2259 if (p == NULL)
2260 mch_exit(2);
2262 #endif
2264 #ifdef USE_FNAME_CASE
2265 /* Make the case of the file name match the actual file. */
2266 fname_case(p, 0);
2267 #endif
2269 alist_add(&global_alist, p,
2270 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2271 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2272 #else
2273 2 /* add buffer number now and use curbuf */
2274 #endif
2277 #if defined(FEAT_MBYTE) && defined(WIN32)
2279 /* Remember this argument has been added to the argument list.
2280 * Needed when 'encoding' is changed. */
2281 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2282 parmp->diff_mode);
2284 #endif
2288 * If there are no more letters after the current "-", go to next
2289 * argument. argv_idx is set to -1 when the current argument is to be
2290 * skipped.
2292 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2294 --argc;
2295 ++argv;
2296 argv_idx = 1;
2300 #ifdef FEAT_EVAL
2301 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2302 * one. */
2303 if (parmp->n_commands > 0)
2305 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2306 if (p != NULL)
2308 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2309 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2310 vim_free(p);
2313 #endif
2317 * Print a warning if stdout is not a terminal.
2318 * When starting in Ex mode and commands come from a file, set Silent mode.
2320 static void
2321 check_tty(parmp)
2322 mparm_T *parmp;
2324 int input_isatty; /* is active input a terminal? */
2326 input_isatty = mch_input_isatty();
2327 if (exmode_active)
2329 if (!input_isatty)
2330 silent_mode = TRUE;
2332 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2333 #ifdef FEAT_GUI
2334 /* don't want the delay when started from the desktop */
2335 && !gui.starting
2336 #endif
2339 #ifdef NBDEBUG
2341 * This shouldn't be necessary. But if I run netbeans with the log
2342 * output coming to the console and XOpenDisplay fails, I get vim
2343 * trying to start with input/output to my console tty. This fills my
2344 * input buffer so fast I can't even kill the process in under 2
2345 * minutes (and it beeps continuously the whole time :-)
2347 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2349 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2350 exit(1);
2352 #endif
2353 if (!parmp->stdout_isatty)
2354 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2355 if (!input_isatty)
2356 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2357 out_flush();
2358 if (scriptin[0] == NULL)
2359 ui_delay(2000L, TRUE);
2360 TIME_MSG("Warning delay");
2365 * Read text from stdin.
2367 static void
2368 read_stdin()
2370 int i;
2372 #if defined(HAS_SWAP_EXISTS_ACTION)
2373 /* When getting the ATTENTION prompt here, use a dialog */
2374 swap_exists_action = SEA_DIALOG;
2375 #endif
2376 no_wait_return = TRUE;
2377 i = msg_didany;
2378 set_buflisted(TRUE);
2379 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2380 no_wait_return = FALSE;
2381 msg_didany = i;
2382 TIME_MSG("reading stdin");
2383 #if defined(HAS_SWAP_EXISTS_ACTION)
2384 check_swap_exists_action();
2385 #endif
2386 #if !(defined(AMIGA) || defined(MACOS))
2388 * Close stdin and dup it from stderr. Required for GPM to work
2389 * properly, and for running external commands.
2390 * Is there any other system that cannot do this?
2392 close(0);
2393 dup(2);
2394 #endif
2398 * Create the requested number of windows and edit buffers in them.
2399 * Also does recovery if "recoverymode" set.
2401 /*ARGSUSED*/
2402 static void
2403 create_windows(parmp)
2404 mparm_T *parmp;
2406 #ifdef FEAT_WINDOWS
2407 int dorewind;
2408 int done = 0;
2411 * Create the number of windows that was requested.
2413 if (parmp->window_count == -1) /* was not set */
2414 parmp->window_count = 1;
2415 if (parmp->window_count == 0)
2416 parmp->window_count = GARGCOUNT;
2417 if (parmp->window_count > 1)
2419 /* Don't change the windows if there was a command in .vimrc that
2420 * already split some windows */
2421 if (parmp->window_layout == 0)
2422 parmp->window_layout = WIN_HOR;
2423 if (parmp->window_layout == WIN_TABS)
2425 parmp->window_count = make_tabpages(parmp->window_count);
2426 TIME_MSG("making tab pages");
2428 else if (firstwin->w_next == NULL)
2430 parmp->window_count = make_windows(parmp->window_count,
2431 parmp->window_layout == WIN_VER);
2432 TIME_MSG("making windows");
2434 else
2435 parmp->window_count = win_count();
2437 else
2438 parmp->window_count = 1;
2439 #endif
2441 if (recoverymode) /* do recover */
2443 msg_scroll = TRUE; /* scroll message up */
2444 ml_recover();
2445 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2446 getout(1);
2447 do_modelines(0); /* do modelines */
2449 else
2452 * Open a buffer for windows that don't have one yet.
2453 * Commands in the .vimrc might have loaded a file or split the window.
2454 * Watch out for autocommands that delete a window.
2456 #ifdef FEAT_AUTOCMD
2458 * Don't execute Win/Buf Enter/Leave autocommands here
2460 ++autocmd_no_enter;
2461 ++autocmd_no_leave;
2462 #endif
2463 #ifdef FEAT_WINDOWS
2464 dorewind = TRUE;
2465 while (done++ < 1000)
2467 if (dorewind)
2469 if (parmp->window_layout == WIN_TABS)
2470 goto_tabpage(1);
2471 else
2472 curwin = firstwin;
2474 else if (parmp->window_layout == WIN_TABS)
2476 if (curtab->tp_next == NULL)
2477 break;
2478 goto_tabpage(0);
2480 else
2482 if (curwin->w_next == NULL)
2483 break;
2484 curwin = curwin->w_next;
2486 dorewind = FALSE;
2487 #endif
2488 curbuf = curwin->w_buffer;
2489 if (curbuf->b_ml.ml_mfp == NULL)
2491 #ifdef FEAT_FOLDING
2492 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2493 if (p_fdls >= 0)
2494 curwin->w_p_fdl = p_fdls;
2495 #endif
2496 #if defined(HAS_SWAP_EXISTS_ACTION)
2497 /* When getting the ATTENTION prompt here, use a dialog */
2498 swap_exists_action = SEA_DIALOG;
2499 #endif
2500 set_buflisted(TRUE);
2501 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2503 #if defined(HAS_SWAP_EXISTS_ACTION)
2504 if (swap_exists_action == SEA_QUIT)
2506 if (got_int || only_one_window())
2508 /* abort selected or quit and only one window */
2509 did_emsg = FALSE; /* avoid hit-enter prompt */
2510 getout(1);
2512 /* We can't close the window, it would disturb what
2513 * happens next. Clear the file name and set the arg
2514 * index to -1 to delete it later. */
2515 setfname(curbuf, NULL, NULL, FALSE);
2516 curwin->w_arg_idx = -1;
2517 swap_exists_action = SEA_NONE;
2519 else
2520 handle_swap_exists(NULL);
2521 #endif
2522 #ifdef FEAT_AUTOCMD
2523 dorewind = TRUE; /* start again */
2524 #endif
2526 #ifdef FEAT_WINDOWS
2527 ui_breakcheck();
2528 if (got_int)
2530 (void)vgetc(); /* only break the file loading, not the rest */
2531 break;
2534 #endif
2535 #ifdef FEAT_WINDOWS
2536 if (parmp->window_layout == WIN_TABS)
2537 goto_tabpage(1);
2538 else
2539 curwin = firstwin;
2540 curbuf = curwin->w_buffer;
2541 #endif
2542 #ifdef FEAT_AUTOCMD
2543 --autocmd_no_enter;
2544 --autocmd_no_leave;
2545 #endif
2549 #ifdef FEAT_WINDOWS
2551 * If opened more than one window, start editing files in the other
2552 * windows. make_windows() has already opened the windows.
2554 static void
2555 edit_buffers(parmp)
2556 mparm_T *parmp;
2558 int arg_idx; /* index in argument list */
2559 int i;
2560 int advance = TRUE;
2561 buf_T *old_curbuf;
2563 # ifdef FEAT_AUTOCMD
2565 * Don't execute Win/Buf Enter/Leave autocommands here
2567 ++autocmd_no_enter;
2568 ++autocmd_no_leave;
2569 # endif
2571 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2572 if (curwin->w_arg_idx == -1)
2574 win_close(curwin, TRUE);
2575 advance = FALSE;
2578 arg_idx = 1;
2579 for (i = 1; i < parmp->window_count; ++i)
2581 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2582 if (curwin->w_arg_idx == -1)
2584 ++arg_idx;
2585 win_close(curwin, TRUE);
2586 advance = FALSE;
2587 continue;
2590 if (advance)
2592 if (parmp->window_layout == WIN_TABS)
2594 if (curtab->tp_next == NULL) /* just checking */
2595 break;
2596 goto_tabpage(0);
2598 else
2600 if (curwin->w_next == NULL) /* just checking */
2601 break;
2602 win_enter(curwin->w_next, FALSE);
2605 advance = TRUE;
2607 /* Only open the file if there is no file in this window yet (that can
2608 * happen when .vimrc contains ":sall"). */
2609 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2611 curwin->w_arg_idx = arg_idx;
2612 /* Edit file from arg list, if there is one. When "Quit" selected
2613 * at the ATTENTION prompt close the window. */
2614 old_curbuf = curbuf;
2615 (void)do_ecmd(0, arg_idx < GARGCOUNT
2616 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2617 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
2618 if (curbuf == old_curbuf)
2620 if (got_int || only_one_window())
2622 /* abort selected or quit and only one window */
2623 did_emsg = FALSE; /* avoid hit-enter prompt */
2624 getout(1);
2626 win_close(curwin, TRUE);
2627 advance = FALSE;
2629 if (arg_idx == GARGCOUNT - 1)
2630 arg_had_last = TRUE;
2631 ++arg_idx;
2633 ui_breakcheck();
2634 if (got_int)
2636 (void)vgetc(); /* only break the file loading, not the rest */
2637 break;
2641 if (parmp->window_layout == WIN_TABS)
2642 goto_tabpage(1);
2643 # ifdef FEAT_AUTOCMD
2644 --autocmd_no_enter;
2645 # endif
2646 win_enter(firstwin, FALSE); /* back to first window */
2647 # ifdef FEAT_AUTOCMD
2648 --autocmd_no_leave;
2649 # endif
2650 TIME_MSG("editing files in windows");
2651 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2652 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2654 #endif /* FEAT_WINDOWS */
2657 * Execute the commands from --cmd arguments "cmds[cnt]".
2659 static void
2660 exe_pre_commands(parmp)
2661 mparm_T *parmp;
2663 char_u **cmds = parmp->pre_commands;
2664 int cnt = parmp->n_pre_commands;
2665 int i;
2667 if (cnt > 0)
2669 curwin->w_cursor.lnum = 0; /* just in case.. */
2670 sourcing_name = (char_u *)_("pre-vimrc command line");
2671 # ifdef FEAT_EVAL
2672 current_SID = SID_CMDARG;
2673 # endif
2674 for (i = 0; i < cnt; ++i)
2675 do_cmdline_cmd(cmds[i]);
2676 sourcing_name = NULL;
2677 # ifdef FEAT_EVAL
2678 current_SID = 0;
2679 # endif
2680 TIME_MSG("--cmd commands");
2685 * Execute "+", "-c" and "-S" arguments.
2687 static void
2688 exe_commands(parmp)
2689 mparm_T *parmp;
2691 int i;
2694 * We start commands on line 0, make "vim +/pat file" match a
2695 * pattern on line 1. But don't move the cursor when an autocommand
2696 * with g`" was used.
2698 msg_scroll = TRUE;
2699 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2700 curwin->w_cursor.lnum = 0;
2701 sourcing_name = (char_u *)"command line";
2702 #ifdef FEAT_EVAL
2703 current_SID = SID_CARG;
2704 #endif
2705 for (i = 0; i < parmp->n_commands; ++i)
2707 do_cmdline_cmd(parmp->commands[i]);
2708 if (parmp->cmds_tofree[i])
2709 vim_free(parmp->commands[i]);
2711 sourcing_name = NULL;
2712 #ifdef FEAT_EVAL
2713 current_SID = 0;
2714 #endif
2715 if (curwin->w_cursor.lnum == 0)
2716 curwin->w_cursor.lnum = 1;
2718 if (!exmode_active)
2719 msg_scroll = FALSE;
2721 #ifdef FEAT_QUICKFIX
2722 /* When started with "-q errorfile" jump to first error again. */
2723 if (parmp->edit_type == EDIT_QF)
2724 qf_jump(NULL, 0, 0, FALSE);
2725 #endif
2726 TIME_MSG("executing command arguments");
2730 * Source startup scripts.
2732 static void
2733 source_startup_scripts(parmp)
2734 mparm_T *parmp;
2736 int i;
2739 * For "evim" source evim.vim first of all, so that the user can overrule
2740 * any things he doesn't like.
2742 if (parmp->evim_mode)
2744 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2745 TIME_MSG("source evim file");
2749 * If -u argument given, use only the initializations from that file and
2750 * nothing else.
2752 if (parmp->use_vimrc != NULL)
2754 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2755 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2757 #ifdef FEAT_GUI
2758 if (use_gvimrc == NULL) /* don't load gvimrc either */
2759 use_gvimrc = parmp->use_vimrc;
2760 #endif
2761 if (parmp->use_vimrc[2] == 'N')
2762 p_lpl = FALSE; /* don't load plugins either */
2764 else
2766 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2767 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2770 else if (!silent_mode)
2772 #ifdef AMIGA
2773 struct Process *proc = (struct Process *)FindTask(0L);
2774 APTR save_winptr = proc->pr_WindowPtr;
2776 /* Avoid a requester here for a volume that doesn't exist. */
2777 proc->pr_WindowPtr = (APTR)-1L;
2778 #endif
2781 * Get system wide defaults, if the file name is defined.
2783 #ifdef SYS_VIMRC_FILE
2784 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2785 #endif
2786 #if defined(MACOS_X) && !defined(FEAT_GUI_MACVIM)
2787 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2788 #endif
2791 * Try to read initialization commands from the following places:
2792 * - environment variable VIMINIT
2793 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2794 * - second user vimrc file ($VIM/.vimrc for Dos)
2795 * - environment variable EXINIT
2796 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2797 * - second user exrc file ($VIM/.exrc for Dos)
2798 * The first that exists is used, the rest is ignored.
2800 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2802 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2803 #ifdef USR_VIMRC_FILE2
2804 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2805 DOSO_VIMRC) == FAIL
2806 #endif
2807 #ifdef USR_VIMRC_FILE3
2808 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2809 DOSO_VIMRC) == FAIL
2810 #endif
2811 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2812 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2814 #ifdef USR_EXRC_FILE2
2815 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2816 #endif
2821 * Read initialization commands from ".vimrc" or ".exrc" in current
2822 * directory. This is only done if the 'exrc' option is set.
2823 * Because of security reasons we disallow shell and write commands
2824 * now, except for unix if the file is owned by the user or 'secure'
2825 * option has been reset in environment of global ".exrc" or ".vimrc".
2826 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2827 * SYS_VIMRC_FILE.
2829 if (p_exrc)
2831 #if defined(UNIX) || defined(VMS)
2832 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2833 if (!file_owned(VIMRC_FILE))
2834 #endif
2835 secure = p_secure;
2837 i = FAIL;
2838 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2839 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2840 #ifdef USR_VIMRC_FILE2
2841 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2842 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2843 #endif
2844 #ifdef USR_VIMRC_FILE3
2845 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2846 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2847 #endif
2848 #ifdef SYS_VIMRC_FILE
2849 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2850 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2851 #endif
2853 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2855 if (i == FAIL)
2857 #if defined(UNIX) || defined(VMS)
2858 /* if ".exrc" is not owned by user set 'secure' mode */
2859 if (!file_owned(EXRC_FILE))
2860 secure = p_secure;
2861 else
2862 secure = 0;
2863 #endif
2864 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2865 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2866 #ifdef USR_EXRC_FILE2
2867 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2868 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2869 #endif
2871 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2874 if (secure == 2)
2875 need_wait_return = TRUE;
2876 secure = 0;
2877 #ifdef AMIGA
2878 proc->pr_WindowPtr = save_winptr;
2879 #endif
2881 TIME_MSG("sourcing vimrc file(s)");
2885 * Setup to start using the GUI. Exit with an error when not available.
2887 static void
2888 main_start_gui()
2890 #ifdef FEAT_GUI
2891 gui.starting = TRUE; /* start GUI a bit later */
2892 #else
2893 mch_errmsg(_(e_nogvim));
2894 mch_errmsg("\n");
2895 mch_exit(2);
2896 #endif
2900 * Get an environment variable, and execute it as Ex commands.
2901 * Returns FAIL if the environment variable was not executed, OK otherwise.
2904 process_env(env, is_viminit)
2905 char_u *env;
2906 int is_viminit; /* when TRUE, called for VIMINIT */
2908 char_u *initstr;
2909 char_u *save_sourcing_name;
2910 linenr_T save_sourcing_lnum;
2911 #ifdef FEAT_EVAL
2912 scid_T save_sid;
2913 #endif
2915 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2917 if (is_viminit)
2918 vimrc_found(NULL, NULL);
2919 save_sourcing_name = sourcing_name;
2920 save_sourcing_lnum = sourcing_lnum;
2921 sourcing_name = env;
2922 sourcing_lnum = 0;
2923 #ifdef FEAT_EVAL
2924 save_sid = current_SID;
2925 current_SID = SID_ENV;
2926 #endif
2927 do_cmdline_cmd(initstr);
2928 sourcing_name = save_sourcing_name;
2929 sourcing_lnum = save_sourcing_lnum;
2930 #ifdef FEAT_EVAL
2931 current_SID = save_sid;;
2932 #endif
2933 return OK;
2935 return FAIL;
2938 #if defined(UNIX) || defined(VMS)
2940 * Return TRUE if we are certain the user owns the file "fname".
2941 * Used for ".vimrc" and ".exrc".
2942 * Use both stat() and lstat() for extra security.
2944 static int
2945 file_owned(fname)
2946 char *fname;
2948 struct stat s;
2949 # ifdef UNIX
2950 uid_t uid = getuid();
2951 # else /* VMS */
2952 uid_t uid = ((getgid() << 16) | getuid());
2953 # endif
2955 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2956 # ifdef HAVE_LSTAT
2957 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2958 # endif
2961 #endif
2964 * Give an error message main_errors["n"] and exit.
2966 static void
2967 mainerr(n, str)
2968 int n; /* one of the ME_ defines */
2969 char_u *str; /* extra argument or NULL */
2971 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2972 reset_signals(); /* kill us with CTRL-C here, if you like */
2973 #endif
2975 mch_errmsg(longVersion);
2976 mch_errmsg("\n");
2977 mch_errmsg(_(main_errors[n]));
2978 if (str != NULL)
2980 mch_errmsg(": \"");
2981 mch_errmsg((char *)str);
2982 mch_errmsg("\"");
2984 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
2986 mch_exit(1);
2989 void
2990 mainerr_arg_missing(str)
2991 char_u *str;
2993 mainerr(ME_ARG_MISSING, str);
2997 * print a message with three spaces prepended and '\n' appended.
2999 static void
3000 main_msg(s)
3001 char *s;
3003 mch_msg(" ");
3004 mch_msg(s);
3005 mch_msg("\n");
3009 * Print messages for "vim -h" or "vim --help" and exit.
3011 static void
3012 usage()
3014 int i;
3015 static char *(use[]) =
3017 N_("[file ..] edit specified file(s)"),
3018 N_("- read text from stdin"),
3019 N_("-t tag edit file where tag is defined"),
3020 #ifdef FEAT_QUICKFIX
3021 N_("-q [errorfile] edit file with first error")
3022 #endif
3025 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3026 reset_signals(); /* kill us with CTRL-C here, if you like */
3027 #endif
3029 mch_msg(longVersion);
3030 mch_msg(_("\n\nusage:"));
3031 for (i = 0; ; ++i)
3033 mch_msg(_(" vim [arguments] "));
3034 mch_msg(_(use[i]));
3035 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3036 break;
3037 mch_msg(_("\n or:"));
3039 #ifdef VMS
3040 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3041 #endif
3043 mch_msg(_("\n\nArguments:\n"));
3044 main_msg(_("--\t\t\tOnly file names after this"));
3045 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3046 main_msg(_("--literal\t\tDon't expand wildcards"));
3047 #endif
3048 #ifdef FEAT_OLE
3049 main_msg(_("-register\t\tRegister this gvim for OLE"));
3050 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3051 #endif
3052 #ifdef FEAT_GUI
3053 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3054 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3055 #endif
3056 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3057 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3058 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3059 #ifdef FEAT_DIFF
3060 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3061 #endif
3062 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3063 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3064 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3065 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3066 main_msg(_("-M\t\t\tModifications in text not allowed"));
3067 main_msg(_("-b\t\t\tBinary mode"));
3068 #ifdef FEAT_LISP
3069 main_msg(_("-l\t\t\tLisp mode"));
3070 #endif
3071 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3072 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3073 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3074 #ifdef FEAT_EVAL
3075 main_msg(_("-D\t\t\tDebugging mode"));
3076 #endif
3077 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3078 main_msg(_("-r\t\t\tList swap files and exit"));
3079 main_msg(_("-r (with file name)\tRecover crashed session"));
3080 main_msg(_("-L\t\t\tSame as -r"));
3081 #ifdef AMIGA
3082 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3083 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3084 #endif
3085 #ifdef FEAT_ARABIC
3086 main_msg(_("-A\t\t\tstart in Arabic mode"));
3087 #endif
3088 #ifdef FEAT_RIGHTLEFT
3089 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3090 #endif
3091 #ifdef FEAT_FKMAP
3092 main_msg(_("-F\t\t\tStart in Farsi mode"));
3093 #endif
3094 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3095 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3096 #ifdef FEAT_GUI
3097 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3098 #endif
3099 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3100 #ifdef FEAT_WINDOWS
3101 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3102 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3103 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3104 #endif
3105 main_msg(_("+\t\t\tStart at end of file"));
3106 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3107 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3108 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3109 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3110 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3111 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3112 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3113 #ifdef FEAT_CRYPT
3114 main_msg(_("-x\t\t\tEdit encrypted files"));
3115 #endif
3116 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3117 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3118 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3119 # endif
3120 main_msg(_("-X\t\t\tDo not connect to X server"));
3121 #endif
3122 #ifdef FEAT_CLIENTSERVER
3123 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3124 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3125 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3126 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3127 # ifdef FEAT_WINDOWS
3128 main_msg(_("--remote-tab <files> As --remote but open tab page for each file"));
3129 # endif
3130 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3131 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3132 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3133 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3134 #endif
3135 #ifdef FEAT_VIMINFO
3136 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3137 #endif
3138 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3139 main_msg(_("--version\t\tPrint version information and exit"));
3141 #ifdef FEAT_GUI_X11
3142 # ifdef FEAT_GUI_MOTIF
3143 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3144 # else
3145 # ifdef FEAT_GUI_ATHENA
3146 # ifdef FEAT_GUI_NEXTAW
3147 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3148 # else
3149 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3150 # endif
3151 # endif
3152 # endif
3153 main_msg(_("-display <display>\tRun vim on <display>"));
3154 main_msg(_("-iconic\t\tStart vim iconified"));
3155 # if 0
3156 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3157 mch_msg(_("\t\t\t (Unimplemented)\n"));
3158 # endif
3159 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3160 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3161 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3162 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3163 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3164 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3165 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3166 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3167 # ifdef FEAT_GUI_ATHENA
3168 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3169 # endif
3170 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3171 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3172 main_msg(_("-xrm <resource>\tSet the specified resource"));
3173 #endif /* FEAT_GUI_X11 */
3174 #if defined(FEAT_GUI) && defined(RISCOS)
3175 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3176 main_msg(_("--columns <number>\tInitial width of window in columns"));
3177 main_msg(_("--rows <number>\tInitial height of window in rows"));
3178 #endif
3179 #ifdef FEAT_GUI_GTK
3180 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3181 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3182 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3183 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3184 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3185 # ifdef HAVE_GTK2
3186 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3187 # endif
3188 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3189 #endif
3190 #ifdef FEAT_GUI_W32
3191 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3192 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3193 #endif
3195 #ifdef FEAT_GUI_GNOME
3196 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3197 if (gui.starting)
3198 mch_msg("\n");
3199 else
3200 #endif
3201 mch_exit(0);
3204 #if defined(HAS_SWAP_EXISTS_ACTION)
3206 * Check the result of the ATTENTION dialog:
3207 * When "Quit" selected, exit Vim.
3208 * When "Recover" selected, recover the file.
3210 static void
3211 check_swap_exists_action()
3213 if (swap_exists_action == SEA_QUIT)
3214 getout(1);
3215 handle_swap_exists(NULL);
3217 #endif
3219 #if defined(STARTUPTIME) || defined(PROTO)
3220 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3222 static struct timeval prev_timeval;
3225 * Save the previous time before doing something that could nest.
3226 * set "*tv_rel" to the time elapsed so far.
3228 void
3229 time_push(tv_rel, tv_start)
3230 void *tv_rel, *tv_start;
3232 *((struct timeval *)tv_rel) = prev_timeval;
3233 gettimeofday(&prev_timeval, NULL);
3234 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3235 - ((struct timeval *)tv_rel)->tv_usec;
3236 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3237 - ((struct timeval *)tv_rel)->tv_sec;
3238 if (((struct timeval *)tv_rel)->tv_usec < 0)
3240 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3241 --((struct timeval *)tv_rel)->tv_sec;
3243 *(struct timeval *)tv_start = prev_timeval;
3247 * Compute the previous time after doing something that could nest.
3248 * Subtract "*tp" from prev_timeval;
3249 * Note: The arguments are (void *) to avoid trouble with systems that don't
3250 * have struct timeval.
3252 void
3253 time_pop(tp)
3254 void *tp; /* actually (struct timeval *) */
3256 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3257 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3258 if (prev_timeval.tv_usec < 0)
3260 prev_timeval.tv_usec += 1000000;
3261 --prev_timeval.tv_sec;
3265 static void
3266 time_diff(then, now)
3267 struct timeval *then;
3268 struct timeval *now;
3270 long usec;
3271 long msec;
3273 usec = now->tv_usec - then->tv_usec;
3274 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3275 usec = usec % 1000L;
3276 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3279 void
3280 time_msg(msg, tv_start)
3281 char *msg;
3282 void *tv_start; /* only for do_source: start time; actually
3283 (struct timeval *) */
3285 static struct timeval start;
3286 struct timeval now;
3288 if (time_fd != NULL)
3290 if (strstr(msg, "STARTING") != NULL)
3292 gettimeofday(&start, NULL);
3293 prev_timeval = start;
3294 fprintf(time_fd, "\n\ntimes in msec\n");
3295 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3296 fprintf(time_fd, " clock elapsed: other lines\n\n");
3298 gettimeofday(&now, NULL);
3299 time_diff(&start, &now);
3300 if (((struct timeval *)tv_start) != NULL)
3302 fprintf(time_fd, " ");
3303 time_diff(((struct timeval *)tv_start), &now);
3305 fprintf(time_fd, " ");
3306 time_diff(&prev_timeval, &now);
3307 prev_timeval = now;
3308 fprintf(time_fd, ": %s\n", msg);
3312 # ifdef WIN3264
3314 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3317 gettimeofday(struct timeval *tv, char *dummy)
3319 long t = clock();
3320 tv->tv_sec = t / CLOCKS_PER_SEC;
3321 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3322 return 0;
3324 # endif
3326 #endif
3328 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3331 * Common code for the X command server and the Win32 command server.
3334 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3337 * Do the client-server stuff, unless "--servername ''" was used.
3339 static void
3340 exec_on_server(parmp)
3341 mparm_T *parmp;
3343 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3345 # ifdef WIN32
3346 /* Initialise the client/server messaging infrastructure. */
3347 serverInitMessaging();
3348 # endif
3351 * When a command server argument was found, execute it. This may
3352 * exit Vim when it was successful. Otherwise it's executed further
3353 * on. Remember the encoding used here in "serverStrEnc".
3355 if (parmp->serverArg)
3357 cmdsrv_main(&parmp->argc, parmp->argv,
3358 parmp->serverName_arg, &parmp->serverStr);
3359 # ifdef FEAT_MBYTE
3360 parmp->serverStrEnc = vim_strsave(p_enc);
3361 # endif
3364 /* If we're still running, get the name to register ourselves.
3365 * On Win32 can register right now, for X11 need to setup the
3366 * clipboard first, it's further down. */
3367 parmp->servername = serverMakeName(parmp->serverName_arg,
3368 parmp->argv[0]);
3369 # ifdef WIN32
3370 if (parmp->servername != NULL)
3372 serverSetName(parmp->servername);
3373 vim_free(parmp->servername);
3375 # endif
3380 * Prepare for running as a Vim server.
3382 static void
3383 prepare_server(parmp)
3384 mparm_T *parmp;
3386 # if defined(FEAT_X11)
3388 * Register for remote command execution with :serversend and --remote
3389 * unless there was a -X or a --servername '' on the command line.
3390 * Only register nongui-vim's with an explicit --servername argument.
3391 * When running as root --servername is also required.
3393 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3394 # ifdef FEAT_GUI
3395 (gui.in_use
3396 # ifdef UNIX
3397 && getuid() != ROOT_UID
3398 # endif
3399 ) ||
3400 # endif
3401 parmp->serverName_arg != NULL))
3403 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3404 vim_free(parmp->servername);
3405 TIME_MSG("register server name");
3407 else
3408 serverDelayedStartName = parmp->servername;
3409 # elif defined(MAC_CLIENTSERVER)
3410 // NOTE: Can't set server name at same time as WIN32 because gui.in_use
3411 // isn't set then. Servers are only supported in GUI mode.
3412 if (parmp->servername != NULL && gui.in_use)
3414 serverRegisterName(parmp->servername);
3415 vim_free(parmp->servername);
3417 # endif
3420 * Execute command ourselves if we're here because the send failed (or
3421 * else we would have exited above).
3423 if (parmp->serverStr != NULL)
3425 char_u *p;
3427 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3428 parmp->serverStr, &p));
3429 vim_free(p);
3433 static void
3434 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3435 int *argc;
3436 char **argv;
3437 char_u *serverName_arg;
3438 char_u **serverStr;
3440 char_u *res;
3441 int i;
3442 char_u *sname;
3443 int ret;
3444 int didone = FALSE;
3445 int exiterr = 0;
3446 char **newArgV = argv + 1;
3447 int newArgC = 1,
3448 Argc = *argc;
3449 int argtype;
3450 #define ARGTYPE_OTHER 0
3451 #define ARGTYPE_EDIT 1
3452 #define ARGTYPE_EDIT_WAIT 2
3453 #define ARGTYPE_SEND 3
3454 int silent = FALSE;
3455 int tabs = FALSE;
3456 # ifdef WIN32
3457 HWND srv;
3458 # elif defined(MAC_CLIENTSERVER)
3459 int srv;
3460 # elif defined(FEAT_X11)
3461 Window srv;
3463 setup_term_clip();
3464 # endif
3466 sname = serverMakeName(serverName_arg, argv[0]);
3467 if (sname == NULL)
3468 return;
3471 * Execute the command server related arguments and remove them
3472 * from the argc/argv array; We may have to return into main()
3474 for (i = 1; i < Argc; i++)
3476 res = NULL;
3477 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3479 for (; i < *argc; i++)
3481 *newArgV++ = argv[i];
3482 newArgC++;
3484 break;
3487 if (STRICMP(argv[i], "--remote-send") == 0)
3488 argtype = ARGTYPE_SEND;
3489 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3491 char *p = argv[i] + 8;
3493 argtype = ARGTYPE_EDIT;
3494 while (*p != NUL)
3496 if (STRNICMP(p, "-wait", 5) == 0)
3498 argtype = ARGTYPE_EDIT_WAIT;
3499 p += 5;
3501 else if (STRNICMP(p, "-silent", 7) == 0)
3503 silent = TRUE;
3504 p += 7;
3506 else if (STRNICMP(p, "-tab", 4) == 0)
3508 tabs = TRUE;
3509 p += 4;
3511 else
3513 argtype = ARGTYPE_OTHER;
3514 break;
3518 else
3519 argtype = ARGTYPE_OTHER;
3521 if (argtype != ARGTYPE_OTHER)
3523 if (i == *argc - 1)
3524 mainerr_arg_missing((char_u *)argv[i]);
3525 if (argtype == ARGTYPE_SEND)
3527 *serverStr = (char_u *)argv[i + 1];
3528 i++;
3530 else
3532 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3533 tabs, argtype == ARGTYPE_EDIT_WAIT);
3534 if (*serverStr == NULL)
3536 /* Probably out of memory, exit. */
3537 didone = TRUE;
3538 exiterr = 1;
3539 break;
3541 Argc = i;
3543 # ifdef FEAT_X11
3544 if (xterm_dpy == NULL)
3546 mch_errmsg(_("No display"));
3547 ret = -1;
3549 else
3550 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3551 NULL, &srv, 0, 0, silent);
3552 # elif defined(WIN32) || defined(MAC_CLIENTSERVER)
3553 /* Win32 always works? */
3554 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3555 # endif
3556 if (ret < 0)
3558 if (argtype == ARGTYPE_SEND)
3560 /* Failed to send, abort. */
3561 mch_errmsg(_(": Send failed.\n"));
3562 didone = TRUE;
3563 exiterr = 1;
3565 else if (!silent)
3566 /* Let vim start normally. */
3567 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3568 break;
3571 # ifdef FEAT_GUI_W32
3572 /* Guess that when the server name starts with "g" it's a GUI
3573 * server, which we can bring to the foreground here.
3574 * Foreground() in the server doesn't work very well. */
3575 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3576 SetForegroundWindow(srv);
3577 # endif
3580 * For --remote-wait: Wait until the server did edit each
3581 * file. Also detect that the server no longer runs.
3583 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3585 int numFiles = *argc - i - 1;
3586 int j;
3587 char_u *done = alloc(numFiles);
3588 char_u *p;
3589 # ifdef FEAT_GUI_W32
3590 NOTIFYICONDATA ni;
3591 int count = 0;
3592 extern HWND message_window;
3593 # endif
3595 if (numFiles > 0 && argv[i + 1][0] == '+')
3596 /* Skip "+cmd" argument, don't wait for it to be edited. */
3597 --numFiles;
3599 # ifdef FEAT_GUI_W32
3600 ni.cbSize = sizeof(ni);
3601 ni.hWnd = message_window;
3602 ni.uID = 0;
3603 ni.uFlags = NIF_ICON|NIF_TIP;
3604 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3605 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3606 Shell_NotifyIcon(NIM_ADD, &ni);
3607 # endif
3609 /* Wait for all files to unload in remote */
3610 memset(done, 0, numFiles);
3611 while (memchr(done, 0, numFiles) != NULL)
3613 # ifdef WIN32
3614 p = serverGetReply(srv, NULL, TRUE, TRUE);
3615 if (p == NULL)
3616 break;
3617 # elif defined(FEAT_X11)
3618 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3619 break;
3620 # elif defined(MAC_CLIENTSERVER)
3621 if (serverReadReply(srv, &p) < 0)
3622 break;
3623 # endif
3624 j = atoi((char *)p);
3625 if (j >= 0 && j < numFiles)
3627 # ifdef FEAT_GUI_W32
3628 ++count;
3629 sprintf(ni.szTip, _("%d of %d edited"),
3630 count, numFiles);
3631 Shell_NotifyIcon(NIM_MODIFY, &ni);
3632 # endif
3633 done[j] = 1;
3636 # ifdef FEAT_GUI_W32
3637 Shell_NotifyIcon(NIM_DELETE, &ni);
3638 # endif
3641 else if (STRICMP(argv[i], "--remote-expr") == 0)
3643 if (i == *argc - 1)
3644 mainerr_arg_missing((char_u *)argv[i]);
3645 # ifdef WIN32
3646 /* Win32 always works? */
3647 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3648 &res, NULL, 1, FALSE) < 0)
3649 # elif defined(FEAT_X11)
3650 if (xterm_dpy == NULL)
3651 mch_errmsg(_("No display: Send expression failed.\n"));
3652 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3653 &res, NULL, 1, 1, FALSE) < 0)
3654 # elif defined(MAC_CLIENTSERVER)
3655 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3656 &res, NULL, 1, FALSE) < 0)
3657 # endif
3659 if (res != NULL && *res != NUL)
3661 /* Output error from remote */
3662 mch_errmsg((char *)res);
3663 vim_free(res);
3664 res = NULL;
3666 mch_errmsg(_(": Send expression failed.\n"));
3669 else if (STRICMP(argv[i], "--serverlist") == 0)
3671 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
3672 /* Win32 always works? */
3673 res = serverGetVimNames();
3674 # elif defined(FEAT_X11)
3675 if (xterm_dpy != NULL)
3676 res = serverGetVimNames(xterm_dpy);
3677 # endif
3678 if (called_emsg)
3679 mch_errmsg("\n");
3681 else if (STRICMP(argv[i], "--servername") == 0)
3683 /* Alredy processed. Take it out of the command line */
3684 i++;
3685 continue;
3687 else
3689 *newArgV++ = argv[i];
3690 newArgC++;
3691 continue;
3693 didone = TRUE;
3694 if (res != NULL && *res != NUL)
3696 mch_msg((char *)res);
3697 if (res[STRLEN(res) - 1] != '\n')
3698 mch_msg("\n");
3700 vim_free(res);
3703 if (didone)
3705 display_errors(); /* display any collected messages */
3706 exit(exiterr); /* Mission accomplished - get out */
3709 /* Return back into main() */
3710 *argc = newArgC;
3711 vim_free(sname);
3715 * Build a ":drop" command to send to a Vim server.
3717 static char_u *
3718 build_drop_cmd(filec, filev, tabs, sendReply)
3719 int filec;
3720 char **filev;
3721 int tabs; /* Use ":tab drop" instead of ":drop". */
3722 int sendReply;
3724 garray_T ga;
3725 int i;
3726 char_u *inicmd = NULL;
3727 char_u *p;
3728 char_u cwd[MAXPATHL];
3730 if (filec > 0 && filev[0][0] == '+')
3732 inicmd = (char_u *)filev[0] + 1;
3733 filev++;
3734 filec--;
3736 /* Check if we have at least one argument. */
3737 if (filec <= 0)
3738 mainerr_arg_missing((char_u *)filev[-1]);
3739 if (mch_dirname(cwd, MAXPATHL) != OK)
3740 return NULL;
3741 if ((p = vim_strsave_escaped_ext(cwd,
3742 #ifdef BACKSLASH_IN_FILENAME
3743 "", /* rem_backslash() will tell what chars to escape */
3744 #else
3745 PATH_ESC_CHARS,
3746 #endif
3747 '\\', TRUE)) == NULL)
3748 return NULL;
3749 ga_init2(&ga, 1, 100);
3750 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3751 ga_concat(&ga, p);
3752 vim_free(p);
3754 /* Call inputsave() so that a prompt for an encryption key works. */
3755 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3756 if (tabs)
3757 ga_concat(&ga, (char_u *)"tab ");
3758 ga_concat(&ga, (char_u *)"drop");
3759 for (i = 0; i < filec; i++)
3761 /* On Unix the shell has already expanded the wildcards, don't want to
3762 * do it again in the Vim server. On MS-Windows only escape
3763 * non-wildcard characters. */
3764 p = vim_strsave_escaped((char_u *)filev[i],
3765 #ifdef UNIX
3766 PATH_ESC_CHARS
3767 #else
3768 (char_u *)" \t%#"
3769 #endif
3771 if (p == NULL)
3773 vim_free(ga.ga_data);
3774 return NULL;
3776 ga_concat(&ga, (char_u *)" ");
3777 ga_concat(&ga, p);
3778 vim_free(p);
3780 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3781 * CTRL-\ CTRL-N again. */
3782 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3783 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3784 if (sendReply)
3785 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3786 ga_concat(&ga, (char_u *)"<CR>:");
3787 if (inicmd != NULL)
3789 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3790 * the following commands to be inserted as text. Use a "|",
3791 * hopefully "inicmd" does allow this... */
3792 ga_concat(&ga, inicmd);
3793 ga_concat(&ga, (char_u *)"|");
3795 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3796 * clear command line. */
3797 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3798 ga_append(&ga, NUL);
3799 return ga.ga_data;
3803 * Replace termcodes such as <CR> and insert as key presses if there is room.
3805 void
3806 server_to_input_buf(str)
3807 char_u *str;
3809 char_u *ptr = NULL;
3810 char_u *cpo_save = p_cpo;
3812 /* Set 'cpoptions' the way we want it.
3813 * B set - backslashes are *not* treated specially
3814 * k set - keycodes are *not* reverse-engineered
3815 * < unset - <Key> sequences *are* interpreted
3816 * The last but one parameter of replace_termcodes() is TRUE so that the
3817 * <lt> sequence is recognised - needed for a real backslash.
3819 p_cpo = (char_u *)"Bk";
3820 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3821 p_cpo = cpo_save;
3823 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3826 * Add the string to the input stream.
3827 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3829 * First clear typed characters from the typeahead buffer, there could
3830 * be half a mapping there. Then append to the existing string, so
3831 * that multiple commands from a client are concatenated.
3833 if (typebuf.tb_maplen < typebuf.tb_len)
3834 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3835 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3837 /* Let input_available() know we inserted text in the typeahead
3838 * buffer. */
3839 typebuf_was_filled = TRUE;
3841 vim_free((char_u *)ptr);
3845 * Evaluate an expression that the client sent to a string.
3846 * Handles disabling error messages and disables debugging, otherwise Vim
3847 * hangs, waiting for "cont" to be typed.
3849 char_u *
3850 eval_client_expr_to_string(expr)
3851 char_u *expr;
3853 char_u *res;
3854 int save_dbl = debug_break_level;
3855 int save_ro = redir_off;
3857 debug_break_level = -1;
3858 redir_off = 0;
3859 ++emsg_skip;
3861 res = eval_to_string(expr, NULL, TRUE);
3863 debug_break_level = save_dbl;
3864 redir_off = save_ro;
3865 --emsg_skip;
3867 /* A client can tell us to redraw, but not to display the cursor, so do
3868 * that here. */
3869 setcursor();
3870 out_flush();
3871 #ifdef FEAT_GUI
3872 if (gui.in_use)
3873 gui_update_cursor(FALSE, FALSE);
3874 #endif
3876 return res;
3880 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3881 * return an allocated string. Otherwise return "data".
3882 * "*tofree" is set to the result when it needs to be freed later.
3884 /*ARGSUSED*/
3885 char_u *
3886 serverConvert(client_enc, data, tofree)
3887 char_u *client_enc;
3888 char_u *data;
3889 char_u **tofree;
3891 char_u *res = data;
3893 *tofree = NULL;
3894 # ifdef FEAT_MBYTE
3895 if (client_enc != NULL && p_enc != NULL)
3897 vimconv_T vimconv;
3899 vimconv.vc_type = CONV_NONE;
3900 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3901 && vimconv.vc_type != CONV_NONE)
3903 res = string_convert(&vimconv, data, NULL);
3904 if (res == NULL)
3905 res = data;
3906 else
3907 *tofree = res;
3909 convert_setup(&vimconv, NULL, NULL);
3911 # endif
3912 return res;
3917 * Make our basic server name: use the specified "arg" if given, otherwise use
3918 * the tail of the command "cmd" we were started with.
3919 * Return the name in allocated memory. This doesn't include a serial number.
3921 static char_u *
3922 serverMakeName(arg, cmd)
3923 char_u *arg;
3924 char *cmd;
3926 char_u *p;
3928 if (arg != NULL && *arg != NUL)
3929 p = vim_strsave_up(arg);
3930 else
3932 p = vim_strsave_up(gettail((char_u *)cmd));
3933 /* Remove .exe or .bat from the name. */
3934 if (p != NULL && vim_strchr(p, '.') != NULL)
3935 *vim_strchr(p, '.') = NUL;
3937 return p;
3939 #endif /* FEAT_CLIENTSERVER */
3942 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3944 #if defined(FEAT_FKMAP) || defined(PROTO)
3945 # include "farsi.c"
3946 #endif
3949 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3951 #if defined(FEAT_ARABIC) || defined(PROTO)
3952 # include "arabic.c"
3953 #endif