Add fork support
[MacVim.git] / src / main.c
blobc4ebdb751fe2ba85e085be0455e1bc5b8e4ae1ad
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 /* Prepare proper exit*/
1254 void
1255 prepare_getout()
1257 #ifdef FEAT_AUTOCMD
1258 buf_T *buf;
1259 win_T *wp;
1260 tabpage_T *tp, *next_tp;
1261 #endif
1263 exiting = TRUE;
1265 /* Position the cursor on the last screen line, below all the text */
1266 #ifdef FEAT_GUI
1267 if (!gui.in_use)
1268 #endif
1269 windgoto((int)Rows - 1, 0);
1271 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1272 /* Optionally print hashtable efficiency. */
1273 hash_debug_results();
1274 #endif
1276 #ifdef FEAT_GUI
1277 msg_didany = FALSE;
1278 #endif
1280 #ifdef FEAT_AUTOCMD
1281 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1282 # if defined FEAT_WINDOWS
1283 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1285 next_tp = tp->tp_next;
1286 for (wp = (tp == curtab)
1287 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1289 buf = wp->w_buffer;
1290 if (buf->b_changedtick != -1)
1292 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1293 FALSE, buf);
1294 buf->b_changedtick = -1; /* note that we did it already */
1295 /* start all over, autocommands may mess up the lists */
1296 next_tp = first_tabpage;
1297 break;
1301 # else
1302 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1303 # endif
1305 /* Trigger BufUnload for buffers that are loaded */
1306 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1307 if (buf->b_ml.ml_mfp != NULL)
1309 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1310 FALSE, buf);
1311 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1312 break;
1314 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1315 #endif
1317 #ifdef FEAT_VIMINFO
1318 if (*p_viminfo != NUL)
1319 /* Write out the registers, history, marks etc, to the viminfo file */
1320 write_viminfo(NULL, FALSE);
1321 #endif
1323 #ifdef FEAT_AUTOCMD
1324 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1325 #endif
1327 #ifdef FEAT_PROFILE
1328 profile_dump();
1329 #endif
1331 if (did_emsg
1332 #ifdef FEAT_GUI
1333 || (gui.in_use && msg_didany && p_verbose > 0)
1334 #endif
1337 /* give the user a chance to read the (error) message */
1338 no_wait_return = FALSE;
1339 wait_return(FALSE);
1342 #ifdef FEAT_AUTOCMD
1343 /* Position the cursor again, the autocommands may have moved it */
1344 # ifdef FEAT_GUI
1345 if (!gui.in_use)
1346 # endif
1347 windgoto((int)Rows - 1, 0);
1348 #endif
1350 #ifdef FEAT_MZSCHEME
1351 mzscheme_end();
1352 #endif
1353 #ifdef FEAT_TCL
1354 tcl_end();
1355 #endif
1356 #ifdef FEAT_RUBY
1357 ruby_end();
1358 #endif
1359 #ifdef FEAT_PYTHON
1360 python_end();
1361 #endif
1362 #ifdef FEAT_PERL
1363 perl_end();
1364 #endif
1365 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1366 iconv_end();
1367 #endif
1368 #ifdef FEAT_NETBEANS_INTG
1369 netbeans_end();
1370 #endif
1371 #ifdef FEAT_ODB_EDITOR
1372 odb_end();
1373 #endif
1374 #ifdef FEAT_CSCOPE
1375 cs_end();
1376 #endif
1377 #ifdef FEAT_EVAL
1378 if (garbage_collect_at_exit)
1379 garbage_collect();
1380 #endif
1383 /* Exit properly */
1384 void
1385 getout(exitval)
1386 int exitval;
1388 /* When running in Ex mode an error causes us to exit with a non-zero exit
1389 * code. POSIX requires this, although it's not 100% clear from the
1390 * standard. */
1391 if (exmode_active)
1392 exitval += ex_exitval;
1394 prepare_getout();
1395 mch_exit(exitval);
1399 * Get a (optional) count for a Vim argument.
1401 static int
1402 get_number_arg(p, idx, def)
1403 char_u *p; /* pointer to argument */
1404 int *idx; /* index in argument, is incremented */
1405 int def; /* default value */
1407 if (vim_isdigit(p[*idx]))
1409 def = atoi((char *)&(p[*idx]));
1410 while (vim_isdigit(p[*idx]))
1411 *idx = *idx + 1;
1413 return def;
1416 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1418 * Setup to use the current locale (for ctype() and many other things).
1420 static void
1421 init_locale()
1423 setlocale(LC_ALL, "");
1424 # ifdef WIN32
1425 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1426 * text while it's expecting text in the current locale. This call avoids
1427 * that. */
1428 setlocale(LC_CTYPE, "C");
1429 # endif
1431 # ifdef FEAT_GETTEXT
1433 int mustfree = FALSE;
1434 char_u *p;
1436 # ifdef DYNAMIC_GETTEXT
1437 /* Initialize the gettext library */
1438 dyn_libintl_init(NULL);
1439 # endif
1440 /* expand_env() doesn't work yet, because chartab[] is not initialized
1441 * yet, call vim_getenv() directly */
1442 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1443 if (p != NULL && *p != NUL)
1445 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1446 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1448 if (mustfree)
1449 vim_free(p);
1450 textdomain(VIMPACKAGE);
1452 # endif
1454 #endif
1457 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1458 * If the executable name starts with "r" we disable shell commands.
1459 * If the next character is "e" we run in Easy mode.
1460 * If the next character is "g" we run the GUI version.
1461 * If the next characters are "view" we start in readonly mode.
1462 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1463 * If the next characters are "ex" we start in Ex mode. If it's followed
1464 * by "im" use improved Ex mode.
1466 static void
1467 parse_command_name(parmp)
1468 mparm_T *parmp;
1470 char_u *initstr;
1472 initstr = gettail((char_u *)parmp->argv[0]);
1474 #ifdef MACOS_X_UNIX
1475 /* An issue has been seen when launching Vim in such a way that
1476 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1477 * executable or a symbolic link of it. Until this issue is resolved
1478 * we prohibit the GUI from being used.
1480 if (STRCMP(initstr, parmp->argv[0]) == 0)
1481 disallow_gui = TRUE;
1483 /* TODO: On MacOS X default to gui if argv[0] ends in:
1484 * /Vim.app/Contents/MacOS/Vim */
1485 #endif
1487 #ifdef FEAT_EVAL
1488 set_vim_var_string(VV_PROGNAME, initstr, -1);
1489 #endif
1491 if (TOLOWER_ASC(initstr[0]) == 'r')
1493 restricted = TRUE;
1494 ++initstr;
1497 /* Avoid using evim mode for "editor". */
1498 if (TOLOWER_ASC(initstr[0]) == 'e'
1499 && (TOLOWER_ASC(initstr[1]) == 'v'
1500 || TOLOWER_ASC(initstr[1]) == 'g'))
1502 #ifdef FEAT_GUI
1503 gui.starting = TRUE;
1504 #endif
1505 parmp->evim_mode = TRUE;
1506 ++initstr;
1509 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1511 main_start_gui();
1512 #ifdef FEAT_GUI
1513 ++initstr;
1514 #endif
1517 if (STRNICMP(initstr, "view", 4) == 0)
1519 readonlymode = TRUE;
1520 curbuf->b_p_ro = TRUE;
1521 p_uc = 10000; /* don't update very often */
1522 initstr += 4;
1524 else if (STRNICMP(initstr, "vim", 3) == 0)
1525 initstr += 3;
1527 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1528 if (STRICMP(initstr, "diff") == 0)
1530 #ifdef FEAT_DIFF
1531 parmp->diff_mode = TRUE;
1532 #else
1533 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1534 mch_errmsg("\n");
1535 mch_exit(2);
1536 #endif
1539 if (STRNICMP(initstr, "ex", 2) == 0)
1541 if (STRNICMP(initstr + 2, "im", 2) == 0)
1542 exmode_active = EXMODE_VIM;
1543 else
1544 exmode_active = EXMODE_NORMAL;
1545 change_compatible(TRUE); /* set 'compatible' */
1550 * Get the name of the display, before gui_prepare() removes it from
1551 * argv[]. Used for the xterm-clipboard display.
1553 * Also find the --server... arguments and --socketid and --windowid
1555 /*ARGSUSED*/
1556 static void
1557 early_arg_scan(parmp)
1558 mparm_T *parmp;
1560 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
1561 int argc = parmp->argc;
1562 char **argv = parmp->argv;
1563 int i;
1565 for (i = 1; i < argc; i++)
1567 if (STRCMP(argv[i], "--") == 0)
1568 break;
1569 # ifdef FEAT_XCLIPBOARD
1570 else if (STRICMP(argv[i], "-display") == 0
1571 # if defined(FEAT_GUI_GTK)
1572 || STRICMP(argv[i], "--display") == 0
1573 # endif
1576 if (i == argc - 1)
1577 mainerr_arg_missing((char_u *)argv[i]);
1578 xterm_display = argv[++i];
1580 # endif
1581 # ifdef FEAT_CLIENTSERVER
1582 else if (STRICMP(argv[i], "--servername") == 0)
1584 if (i == argc - 1)
1585 mainerr_arg_missing((char_u *)argv[i]);
1586 parmp->serverName_arg = (char_u *)argv[++i];
1588 else if (STRICMP(argv[i], "--serverlist") == 0)
1589 parmp->serverArg = TRUE;
1590 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1592 parmp->serverArg = TRUE;
1593 # ifdef FEAT_GUI
1594 if (strstr(argv[i], "-wait") != 0)
1595 /* don't fork() when starting the GUI to edit files ourself */
1596 gui.dofork = FALSE;
1597 # endif
1599 # endif
1601 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1602 # ifdef FEAT_GUI_W32
1603 else if (STRICMP(argv[i], "--windowid") == 0)
1604 # else
1605 else if (STRICMP(argv[i], "--socketid") == 0)
1606 # endif
1608 unsigned int id;
1609 int count;
1611 if (i == argc - 1)
1612 mainerr_arg_missing((char_u *)argv[i]);
1613 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1614 count = sscanf(&(argv[i + 1][2]), "%x", &id);
1615 else
1616 count = sscanf(argv[i+1], "%u", &id);
1617 if (count != 1)
1618 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1619 else
1620 # ifdef FEAT_GUI_W32
1621 win_socket_id = id;
1622 # else
1623 gtk_socket_id = id;
1624 # endif
1625 i++;
1627 # endif
1628 # ifdef FEAT_GUI_GTK
1629 else if (STRICMP(argv[i], "--echo-wid") == 0)
1630 echo_wid_arg = TRUE;
1631 # endif
1633 #endif
1637 * Scan the command line arguments.
1639 static void
1640 command_line_scan(parmp)
1641 mparm_T *parmp;
1643 int argc = parmp->argc;
1644 char **argv = parmp->argv;
1645 int argv_idx; /* index in argv[n][] */
1646 int had_minmin = FALSE; /* found "--" argument */
1647 int want_argument; /* option argument with argument */
1648 int c;
1649 char_u *p = NULL;
1650 long n;
1652 --argc;
1653 ++argv;
1654 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1655 while (argc > 0)
1658 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1660 if (argv[0][0] == '+' && !had_minmin)
1662 if (parmp->n_commands >= MAX_ARG_CMDS)
1663 mainerr(ME_EXTRA_CMD, NULL);
1664 argv_idx = -1; /* skip to next argument */
1665 if (argv[0][1] == NUL)
1666 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1667 else
1668 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1672 * Optional argument.
1674 else if (argv[0][0] == '-' && !had_minmin)
1676 want_argument = FALSE;
1677 c = argv[0][argv_idx++];
1678 #ifdef VMS
1680 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1681 * and "-/X" as "-X".
1683 if (c == '/')
1685 c = argv[0][argv_idx++];
1686 c = TOUPPER_ASC(c);
1688 else
1689 c = TOLOWER_ASC(c);
1690 #endif
1691 switch (c)
1693 case NUL: /* "vim -" read from stdin */
1694 /* "ex -" silent mode */
1695 if (exmode_active)
1696 silent_mode = TRUE;
1697 else
1699 if (parmp->edit_type != EDIT_NONE)
1700 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1701 parmp->edit_type = EDIT_STDIN;
1702 read_cmd_fd = 2; /* read from stderr instead of stdin */
1704 argv_idx = -1; /* skip to next argument */
1705 break;
1707 case '-': /* "--" don't take any more option arguments */
1708 /* "--help" give help message */
1709 /* "--version" give version message */
1710 /* "--literal" take files literally */
1711 /* "--nofork" don't fork */
1712 /* "--noplugin[s]" skip plugins */
1713 /* "--cmd <cmd>" execute cmd before vimrc */
1714 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1715 usage();
1716 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1718 Columns = 80; /* need to init Columns */
1719 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1720 list_version();
1721 msg_putchar('\n');
1722 msg_didout = FALSE;
1723 mch_exit(0);
1725 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1727 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1728 parmp->literal = TRUE;
1729 #endif
1731 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1733 #ifdef FEAT_GUI
1734 gui.dofork = FALSE; /* don't fork() when starting GUI */
1735 #endif
1737 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1738 p_lpl = FALSE;
1739 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1741 want_argument = TRUE;
1742 argv_idx += 3;
1744 #ifdef FEAT_CLIENTSERVER
1745 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1746 ; /* already processed -- no arg */
1747 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1748 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1750 /* already processed -- snatch the following arg */
1751 if (argc > 1)
1753 --argc;
1754 ++argv;
1757 #endif
1758 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1759 # ifdef FEAT_GUI_GTK
1760 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1761 # else
1762 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1763 # endif
1765 /* already processed -- snatch the following arg */
1766 if (argc > 1)
1768 --argc;
1769 ++argv;
1772 #endif
1773 #ifdef FEAT_GUI_GTK
1774 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1776 /* already processed, skip */
1778 #endif
1779 else
1781 if (argv[0][argv_idx])
1782 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1783 had_minmin = TRUE;
1785 if (!want_argument)
1786 argv_idx = -1; /* skip to next argument */
1787 break;
1789 case 'A': /* "-A" start in Arabic mode */
1790 #ifdef FEAT_ARABIC
1791 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1792 #else
1793 mch_errmsg(_(e_noarabic));
1794 mch_exit(2);
1795 #endif
1796 break;
1798 case 'b': /* "-b" binary mode */
1799 /* Needs to be effective before expanding file names, because
1800 * for Win32 this makes us edit a shortcut file itself,
1801 * instead of the file it links to. */
1802 set_options_bin(curbuf->b_p_bin, 1, 0);
1803 curbuf->b_p_bin = 1; /* binary file I/O */
1804 break;
1806 case 'C': /* "-C" Compatible */
1807 change_compatible(TRUE);
1808 break;
1810 case 'e': /* "-e" Ex mode */
1811 exmode_active = EXMODE_NORMAL;
1812 break;
1814 case 'E': /* "-E" Improved Ex mode */
1815 exmode_active = EXMODE_VIM;
1816 break;
1818 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1819 window directly, not with newcli */
1820 #ifdef FEAT_GUI
1821 gui.dofork = FALSE; /* don't fork() when starting GUI */
1822 #endif
1823 break;
1825 case 'g': /* "-g" start GUI */
1826 main_start_gui();
1827 break;
1829 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1830 #ifdef FEAT_FKMAP
1831 curwin->w_p_rl = p_fkmap = TRUE;
1832 #else
1833 mch_errmsg(_(e_nofarsi));
1834 mch_exit(2);
1835 #endif
1836 break;
1838 case 'h': /* "-h" give help message */
1839 #ifdef FEAT_GUI_GNOME
1840 /* Tell usage() to exit for "gvim". */
1841 gui.starting = FALSE;
1842 #endif
1843 usage();
1844 break;
1846 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1847 #ifdef FEAT_RIGHTLEFT
1848 curwin->w_p_rl = p_hkmap = TRUE;
1849 #else
1850 mch_errmsg(_(e_nohebrew));
1851 mch_exit(2);
1852 #endif
1853 break;
1855 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1856 #ifdef FEAT_LISP
1857 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1858 p_sm = TRUE;
1859 #endif
1860 break;
1862 case 'M': /* "-M" no changes or writing of files */
1863 reset_modifiable();
1864 /* FALLTHROUGH */
1866 case 'm': /* "-m" no writing of files */
1867 p_write = FALSE;
1868 break;
1870 case 'y': /* "-y" easy mode */
1871 #ifdef FEAT_GUI
1872 gui.starting = TRUE; /* start GUI a bit later */
1873 #endif
1874 parmp->evim_mode = TRUE;
1875 break;
1877 case 'N': /* "-N" Nocompatible */
1878 change_compatible(FALSE);
1879 break;
1881 case 'n': /* "-n" no swap file */
1882 parmp->no_swap_file = TRUE;
1883 break;
1885 case 'p': /* "-p[N]" open N tab pages */
1886 #ifdef TARGET_API_MAC_OSX
1887 /* For some reason on MacOS X, an argument like:
1888 -psn_0_10223617 is passed in when invoke from Finder
1889 or with the 'open' command */
1890 if (argv[0][argv_idx] == 's')
1892 argv_idx = -1; /* bypass full -psn */
1893 main_start_gui();
1894 break;
1896 #endif
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_TABS;
1902 #endif
1903 break;
1905 case 'o': /* "-o[N]" open N horizontal split windows */
1906 #ifdef 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_HOR;
1911 #endif
1912 break;
1914 case 'O': /* "-O[N]" open N vertical split windows */
1915 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1916 /* default is 0: open window for each file */
1917 parmp->window_count = get_number_arg((char_u *)argv[0],
1918 &argv_idx, 0);
1919 parmp->window_layout = WIN_VER;
1920 #endif
1921 break;
1923 #ifdef FEAT_QUICKFIX
1924 case 'q': /* "-q" QuickFix mode */
1925 if (parmp->edit_type != EDIT_NONE)
1926 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1927 parmp->edit_type = EDIT_QF;
1928 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1930 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1931 argv_idx = -1;
1933 else if (argc > 1) /* "-q {errorfile}" */
1934 want_argument = TRUE;
1935 break;
1936 #endif
1938 case 'R': /* "-R" readonly mode */
1939 readonlymode = TRUE;
1940 curbuf->b_p_ro = TRUE;
1941 p_uc = 10000; /* don't update very often */
1942 break;
1944 case 'r': /* "-r" recovery mode */
1945 case 'L': /* "-L" recovery mode */
1946 recoverymode = 1;
1947 break;
1949 case 's':
1950 if (exmode_active) /* "-s" silent (batch) mode */
1951 silent_mode = TRUE;
1952 else /* "-s {scriptin}" read from script file */
1953 want_argument = TRUE;
1954 break;
1956 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1957 if (parmp->edit_type != EDIT_NONE)
1958 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1959 parmp->edit_type = EDIT_TAG;
1960 if (argv[0][argv_idx]) /* "-t{tag}" */
1962 parmp->tagname = (char_u *)argv[0] + argv_idx;
1963 argv_idx = -1;
1965 else /* "-t {tag}" */
1966 want_argument = TRUE;
1967 break;
1969 #ifdef FEAT_EVAL
1970 case 'D': /* "-D" Debugging */
1971 parmp->use_debug_break_level = 9999;
1972 break;
1973 #endif
1974 #ifdef FEAT_DIFF
1975 case 'd': /* "-d" 'diff' */
1976 # ifdef AMIGA
1977 /* check for "-dev {device}" */
1978 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1979 want_argument = TRUE;
1980 else
1981 # endif
1982 parmp->diff_mode = TRUE;
1983 break;
1984 #endif
1985 case 'V': /* "-V{N}" Verbose level */
1986 /* default is 10: a little bit verbose */
1987 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1988 if (argv[0][argv_idx] != NUL)
1990 set_option_value((char_u *)"verbosefile", 0L,
1991 (char_u *)argv[0] + argv_idx, 0);
1992 argv_idx = (int)STRLEN(argv[0]);
1994 break;
1996 case 'v': /* "-v" Vi-mode (as if called "vi") */
1997 exmode_active = 0;
1998 #ifdef FEAT_GUI
1999 gui.starting = FALSE; /* don't start GUI */
2000 #endif
2001 break;
2003 case 'w': /* "-w{number}" set window height */
2004 /* "-w {scriptout}" write to script */
2005 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
2007 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2008 set_option_value((char_u *)"window", n, NULL, 0);
2009 break;
2011 want_argument = TRUE;
2012 break;
2014 #ifdef FEAT_CRYPT
2015 case 'x': /* "-x" encrypted reading/writing of files */
2016 parmp->ask_for_key = TRUE;
2017 break;
2018 #endif
2020 case 'X': /* "-X" don't connect to X server */
2021 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2022 x_no_connect = TRUE;
2023 #endif
2024 break;
2026 case 'Z': /* "-Z" restricted mode */
2027 restricted = TRUE;
2028 break;
2030 case 'c': /* "-c{command}" or "-c {command}" execute
2031 command */
2032 if (argv[0][argv_idx] != NUL)
2034 if (parmp->n_commands >= MAX_ARG_CMDS)
2035 mainerr(ME_EXTRA_CMD, NULL);
2036 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2037 + argv_idx;
2038 argv_idx = -1;
2039 break;
2041 /*FALLTHROUGH*/
2042 case 'S': /* "-S {file}" execute Vim script */
2043 case 'i': /* "-i {viminfo}" use for viminfo */
2044 #ifndef FEAT_DIFF
2045 case 'd': /* "-d {device}" device (for Amiga) */
2046 #endif
2047 case 'T': /* "-T {terminal}" terminal name */
2048 case 'u': /* "-u {vimrc}" vim inits file */
2049 case 'U': /* "-U {gvimrc}" gvim inits file */
2050 case 'W': /* "-W {scriptout}" overwrite */
2051 #ifdef FEAT_GUI_W32
2052 case 'P': /* "-P {parent title}" MDI parent */
2053 #endif
2054 want_argument = TRUE;
2055 break;
2057 default:
2058 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2062 * Handle option arguments with argument.
2064 if (want_argument)
2067 * Check for garbage immediately after the option letter.
2069 if (argv[0][argv_idx] != NUL)
2070 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2072 --argc;
2073 if (argc < 1 && c != 'S')
2074 mainerr_arg_missing((char_u *)argv[0]);
2075 ++argv;
2076 argv_idx = -1;
2078 switch (c)
2080 case 'c': /* "-c {command}" execute command */
2081 case 'S': /* "-S {file}" execute Vim script */
2082 if (parmp->n_commands >= MAX_ARG_CMDS)
2083 mainerr(ME_EXTRA_CMD, NULL);
2084 if (c == 'S')
2086 char *a;
2088 if (argc < 1)
2089 /* "-S" without argument: use default session file
2090 * name. */
2091 a = SESSION_FILE;
2092 else if (argv[0][0] == '-')
2094 /* "-S" followed by another option: use default
2095 * session file name. */
2096 a = SESSION_FILE;
2097 ++argc;
2098 --argv;
2100 else
2101 a = argv[0];
2102 p = alloc((unsigned)(STRLEN(a) + 4));
2103 if (p == NULL)
2104 mch_exit(2);
2105 sprintf((char *)p, "so %s", a);
2106 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2107 parmp->commands[parmp->n_commands++] = p;
2109 else
2110 parmp->commands[parmp->n_commands++] =
2111 (char_u *)argv[0];
2112 break;
2114 case '-': /* "--cmd {command}" execute command */
2115 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2116 mainerr(ME_EXTRA_CMD, NULL);
2117 parmp->pre_commands[parmp->n_pre_commands++] =
2118 (char_u *)argv[0];
2119 break;
2121 /* case 'd': -d {device} is handled in mch_check_win() for the
2122 * Amiga */
2124 #ifdef FEAT_QUICKFIX
2125 case 'q': /* "-q {errorfile}" QuickFix mode */
2126 parmp->use_ef = (char_u *)argv[0];
2127 break;
2128 #endif
2130 case 'i': /* "-i {viminfo}" use for viminfo */
2131 use_viminfo = (char_u *)argv[0];
2132 break;
2134 case 's': /* "-s {scriptin}" read from script file */
2135 if (scriptin[0] != NULL)
2137 scripterror:
2138 mch_errmsg(_("Attempt to open script file again: \""));
2139 mch_errmsg(argv[-1]);
2140 mch_errmsg(" ");
2141 mch_errmsg(argv[0]);
2142 mch_errmsg("\"\n");
2143 mch_exit(2);
2145 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2147 mch_errmsg(_("Cannot open for reading: \""));
2148 mch_errmsg(argv[0]);
2149 mch_errmsg("\"\n");
2150 mch_exit(2);
2152 if (save_typebuf() == FAIL)
2153 mch_exit(2); /* out of memory */
2154 break;
2156 case 't': /* "-t {tag}" */
2157 parmp->tagname = (char_u *)argv[0];
2158 break;
2160 case 'T': /* "-T {terminal}" terminal name */
2162 * The -T term argument is always available and when
2163 * HAVE_TERMLIB is supported it overrides the environment
2164 * variable TERM.
2166 #ifdef FEAT_GUI
2167 if (term_is_gui((char_u *)argv[0]))
2168 gui.starting = TRUE; /* start GUI a bit later */
2169 else
2170 #endif
2171 parmp->term = (char_u *)argv[0];
2172 break;
2174 case 'u': /* "-u {vimrc}" vim inits file */
2175 parmp->use_vimrc = (char_u *)argv[0];
2176 break;
2178 case 'U': /* "-U {gvimrc}" gvim inits file */
2179 #ifdef FEAT_GUI
2180 use_gvimrc = (char_u *)argv[0];
2181 #endif
2182 break;
2184 case 'w': /* "-w {nr}" 'window' value */
2185 /* "-w {scriptout}" append to script file */
2186 if (vim_isdigit(*((char_u *)argv[0])))
2188 argv_idx = 0;
2189 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2190 set_option_value((char_u *)"window", n, NULL, 0);
2191 argv_idx = -1;
2192 break;
2194 /*FALLTHROUGH*/
2195 case 'W': /* "-W {scriptout}" overwrite script file */
2196 if (scriptout != NULL)
2197 goto scripterror;
2198 if ((scriptout = mch_fopen(argv[0],
2199 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2201 mch_errmsg(_("Cannot open for script output: \""));
2202 mch_errmsg(argv[0]);
2203 mch_errmsg("\"\n");
2204 mch_exit(2);
2206 break;
2208 #ifdef FEAT_GUI_W32
2209 case 'P': /* "-P {parent title}" MDI parent */
2210 gui_mch_set_parent(argv[0]);
2211 break;
2212 #endif
2218 * File name argument.
2220 else
2222 argv_idx = -1; /* skip to next argument */
2224 /* Check for only one type of editing. */
2225 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2226 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2227 parmp->edit_type = EDIT_FILE;
2229 #ifdef MSWIN
2230 /* Remember if the argument was a full path before changing
2231 * slashes to backslashes. */
2232 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2233 parmp->full_path = TRUE;
2234 #endif
2236 /* Add the file to the global argument list. */
2237 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2238 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2239 mch_exit(2);
2240 #ifdef FEAT_DIFF
2241 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2242 && !mch_isdir(alist_name(&GARGLIST[0])))
2244 char_u *r;
2246 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2247 if (r != NULL)
2249 vim_free(p);
2250 p = r;
2253 #endif
2254 #if defined(__CYGWIN32__) && !defined(WIN32)
2256 * If vim is invoked by non-Cygwin tools, convert away any
2257 * DOS paths, so things like .swp files are created correctly.
2258 * Look for evidence of non-Cygwin paths before we bother.
2259 * This is only for when using the Unix files.
2261 if (strpbrk(p, "\\:") != NULL)
2263 char posix_path[PATH_MAX];
2265 cygwin_conv_to_posix_path(p, posix_path);
2266 vim_free(p);
2267 p = vim_strsave(posix_path);
2268 if (p == NULL)
2269 mch_exit(2);
2271 #endif
2273 #ifdef USE_FNAME_CASE
2274 /* Make the case of the file name match the actual file. */
2275 fname_case(p, 0);
2276 #endif
2278 alist_add(&global_alist, p,
2279 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2280 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2281 #else
2282 2 /* add buffer number now and use curbuf */
2283 #endif
2286 #if defined(FEAT_MBYTE) && defined(WIN32)
2288 /* Remember this argument has been added to the argument list.
2289 * Needed when 'encoding' is changed. */
2290 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2291 parmp->diff_mode);
2293 #endif
2297 * If there are no more letters after the current "-", go to next
2298 * argument. argv_idx is set to -1 when the current argument is to be
2299 * skipped.
2301 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2303 --argc;
2304 ++argv;
2305 argv_idx = 1;
2309 #ifdef FEAT_EVAL
2310 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2311 * one. */
2312 if (parmp->n_commands > 0)
2314 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2315 if (p != NULL)
2317 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2318 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2319 vim_free(p);
2322 #endif
2326 * Print a warning if stdout is not a terminal.
2327 * When starting in Ex mode and commands come from a file, set Silent mode.
2329 static void
2330 check_tty(parmp)
2331 mparm_T *parmp;
2333 int input_isatty; /* is active input a terminal? */
2335 input_isatty = mch_input_isatty();
2336 if (exmode_active)
2338 if (!input_isatty)
2339 silent_mode = TRUE;
2341 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2342 #ifdef FEAT_GUI
2343 /* don't want the delay when started from the desktop */
2344 && !gui.starting
2345 #endif
2348 #ifdef NBDEBUG
2350 * This shouldn't be necessary. But if I run netbeans with the log
2351 * output coming to the console and XOpenDisplay fails, I get vim
2352 * trying to start with input/output to my console tty. This fills my
2353 * input buffer so fast I can't even kill the process in under 2
2354 * minutes (and it beeps continuously the whole time :-)
2356 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2358 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2359 exit(1);
2361 #endif
2362 if (!parmp->stdout_isatty)
2363 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2364 if (!input_isatty)
2365 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2366 out_flush();
2367 if (scriptin[0] == NULL)
2368 ui_delay(2000L, TRUE);
2369 TIME_MSG("Warning delay");
2374 * Read text from stdin.
2376 static void
2377 read_stdin()
2379 int i;
2381 #if defined(HAS_SWAP_EXISTS_ACTION)
2382 /* When getting the ATTENTION prompt here, use a dialog */
2383 swap_exists_action = SEA_DIALOG;
2384 #endif
2385 no_wait_return = TRUE;
2386 i = msg_didany;
2387 set_buflisted(TRUE);
2388 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2389 no_wait_return = FALSE;
2390 msg_didany = i;
2391 TIME_MSG("reading stdin");
2392 #if defined(HAS_SWAP_EXISTS_ACTION)
2393 check_swap_exists_action();
2394 #endif
2395 #if !(defined(AMIGA) || defined(MACOS))
2397 * Close stdin and dup it from stderr. Required for GPM to work
2398 * properly, and for running external commands.
2399 * Is there any other system that cannot do this?
2401 close(0);
2402 dup(2);
2403 #endif
2407 * Create the requested number of windows and edit buffers in them.
2408 * Also does recovery if "recoverymode" set.
2410 /*ARGSUSED*/
2411 static void
2412 create_windows(parmp)
2413 mparm_T *parmp;
2415 #ifdef FEAT_WINDOWS
2416 int dorewind;
2417 int done = 0;
2420 * Create the number of windows that was requested.
2422 if (parmp->window_count == -1) /* was not set */
2423 parmp->window_count = 1;
2424 if (parmp->window_count == 0)
2425 parmp->window_count = GARGCOUNT;
2426 if (parmp->window_count > 1)
2428 /* Don't change the windows if there was a command in .vimrc that
2429 * already split some windows */
2430 if (parmp->window_layout == 0)
2431 parmp->window_layout = WIN_HOR;
2432 if (parmp->window_layout == WIN_TABS)
2434 parmp->window_count = make_tabpages(parmp->window_count);
2435 TIME_MSG("making tab pages");
2437 else if (firstwin->w_next == NULL)
2439 parmp->window_count = make_windows(parmp->window_count,
2440 parmp->window_layout == WIN_VER);
2441 TIME_MSG("making windows");
2443 else
2444 parmp->window_count = win_count();
2446 else
2447 parmp->window_count = 1;
2448 #endif
2450 if (recoverymode) /* do recover */
2452 msg_scroll = TRUE; /* scroll message up */
2453 ml_recover();
2454 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2455 getout(1);
2456 do_modelines(0); /* do modelines */
2458 else
2461 * Open a buffer for windows that don't have one yet.
2462 * Commands in the .vimrc might have loaded a file or split the window.
2463 * Watch out for autocommands that delete a window.
2465 #ifdef FEAT_AUTOCMD
2467 * Don't execute Win/Buf Enter/Leave autocommands here
2469 ++autocmd_no_enter;
2470 ++autocmd_no_leave;
2471 #endif
2472 #ifdef FEAT_WINDOWS
2473 dorewind = TRUE;
2474 while (done++ < 1000)
2476 if (dorewind)
2478 if (parmp->window_layout == WIN_TABS)
2479 goto_tabpage(1);
2480 else
2481 curwin = firstwin;
2483 else if (parmp->window_layout == WIN_TABS)
2485 if (curtab->tp_next == NULL)
2486 break;
2487 goto_tabpage(0);
2489 else
2491 if (curwin->w_next == NULL)
2492 break;
2493 curwin = curwin->w_next;
2495 dorewind = FALSE;
2496 #endif
2497 curbuf = curwin->w_buffer;
2498 if (curbuf->b_ml.ml_mfp == NULL)
2500 #ifdef FEAT_FOLDING
2501 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2502 if (p_fdls >= 0)
2503 curwin->w_p_fdl = p_fdls;
2504 #endif
2505 #if defined(HAS_SWAP_EXISTS_ACTION)
2506 /* When getting the ATTENTION prompt here, use a dialog */
2507 swap_exists_action = SEA_DIALOG;
2508 #endif
2509 set_buflisted(TRUE);
2510 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2512 #if defined(HAS_SWAP_EXISTS_ACTION)
2513 if (swap_exists_action == SEA_QUIT)
2515 if (got_int || only_one_window())
2517 /* abort selected or quit and only one window */
2518 did_emsg = FALSE; /* avoid hit-enter prompt */
2519 getout(1);
2521 /* We can't close the window, it would disturb what
2522 * happens next. Clear the file name and set the arg
2523 * index to -1 to delete it later. */
2524 setfname(curbuf, NULL, NULL, FALSE);
2525 curwin->w_arg_idx = -1;
2526 swap_exists_action = SEA_NONE;
2528 else
2529 handle_swap_exists(NULL);
2530 #endif
2531 #ifdef FEAT_AUTOCMD
2532 dorewind = TRUE; /* start again */
2533 #endif
2535 #ifdef FEAT_WINDOWS
2536 ui_breakcheck();
2537 if (got_int)
2539 (void)vgetc(); /* only break the file loading, not the rest */
2540 break;
2543 #endif
2544 #ifdef FEAT_WINDOWS
2545 if (parmp->window_layout == WIN_TABS)
2546 goto_tabpage(1);
2547 else
2548 curwin = firstwin;
2549 curbuf = curwin->w_buffer;
2550 #endif
2551 #ifdef FEAT_AUTOCMD
2552 --autocmd_no_enter;
2553 --autocmd_no_leave;
2554 #endif
2558 #ifdef FEAT_WINDOWS
2560 * If opened more than one window, start editing files in the other
2561 * windows. make_windows() has already opened the windows.
2563 static void
2564 edit_buffers(parmp)
2565 mparm_T *parmp;
2567 int arg_idx; /* index in argument list */
2568 int i;
2569 int advance = TRUE;
2570 buf_T *old_curbuf;
2572 # ifdef FEAT_AUTOCMD
2574 * Don't execute Win/Buf Enter/Leave autocommands here
2576 ++autocmd_no_enter;
2577 ++autocmd_no_leave;
2578 # endif
2580 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2581 if (curwin->w_arg_idx == -1)
2583 win_close(curwin, TRUE);
2584 advance = FALSE;
2587 arg_idx = 1;
2588 for (i = 1; i < parmp->window_count; ++i)
2590 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2591 if (curwin->w_arg_idx == -1)
2593 ++arg_idx;
2594 win_close(curwin, TRUE);
2595 advance = FALSE;
2596 continue;
2599 if (advance)
2601 if (parmp->window_layout == WIN_TABS)
2603 if (curtab->tp_next == NULL) /* just checking */
2604 break;
2605 goto_tabpage(0);
2607 else
2609 if (curwin->w_next == NULL) /* just checking */
2610 break;
2611 win_enter(curwin->w_next, FALSE);
2614 advance = TRUE;
2616 /* Only open the file if there is no file in this window yet (that can
2617 * happen when .vimrc contains ":sall"). */
2618 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2620 curwin->w_arg_idx = arg_idx;
2621 /* Edit file from arg list, if there is one. When "Quit" selected
2622 * at the ATTENTION prompt close the window. */
2623 old_curbuf = curbuf;
2624 (void)do_ecmd(0, arg_idx < GARGCOUNT
2625 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2626 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
2627 if (curbuf == old_curbuf)
2629 if (got_int || only_one_window())
2631 /* abort selected or quit and only one window */
2632 did_emsg = FALSE; /* avoid hit-enter prompt */
2633 getout(1);
2635 win_close(curwin, TRUE);
2636 advance = FALSE;
2638 if (arg_idx == GARGCOUNT - 1)
2639 arg_had_last = TRUE;
2640 ++arg_idx;
2642 ui_breakcheck();
2643 if (got_int)
2645 (void)vgetc(); /* only break the file loading, not the rest */
2646 break;
2650 if (parmp->window_layout == WIN_TABS)
2651 goto_tabpage(1);
2652 # ifdef FEAT_AUTOCMD
2653 --autocmd_no_enter;
2654 # endif
2655 win_enter(firstwin, FALSE); /* back to first window */
2656 # ifdef FEAT_AUTOCMD
2657 --autocmd_no_leave;
2658 # endif
2659 TIME_MSG("editing files in windows");
2660 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2661 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2663 #endif /* FEAT_WINDOWS */
2666 * Execute the commands from --cmd arguments "cmds[cnt]".
2668 static void
2669 exe_pre_commands(parmp)
2670 mparm_T *parmp;
2672 char_u **cmds = parmp->pre_commands;
2673 int cnt = parmp->n_pre_commands;
2674 int i;
2676 if (cnt > 0)
2678 curwin->w_cursor.lnum = 0; /* just in case.. */
2679 sourcing_name = (char_u *)_("pre-vimrc command line");
2680 # ifdef FEAT_EVAL
2681 current_SID = SID_CMDARG;
2682 # endif
2683 for (i = 0; i < cnt; ++i)
2684 do_cmdline_cmd(cmds[i]);
2685 sourcing_name = NULL;
2686 # ifdef FEAT_EVAL
2687 current_SID = 0;
2688 # endif
2689 TIME_MSG("--cmd commands");
2694 * Execute "+", "-c" and "-S" arguments.
2696 static void
2697 exe_commands(parmp)
2698 mparm_T *parmp;
2700 int i;
2703 * We start commands on line 0, make "vim +/pat file" match a
2704 * pattern on line 1. But don't move the cursor when an autocommand
2705 * with g`" was used.
2707 msg_scroll = TRUE;
2708 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2709 curwin->w_cursor.lnum = 0;
2710 sourcing_name = (char_u *)"command line";
2711 #ifdef FEAT_EVAL
2712 current_SID = SID_CARG;
2713 #endif
2714 for (i = 0; i < parmp->n_commands; ++i)
2716 do_cmdline_cmd(parmp->commands[i]);
2717 if (parmp->cmds_tofree[i])
2718 vim_free(parmp->commands[i]);
2720 sourcing_name = NULL;
2721 #ifdef FEAT_EVAL
2722 current_SID = 0;
2723 #endif
2724 if (curwin->w_cursor.lnum == 0)
2725 curwin->w_cursor.lnum = 1;
2727 if (!exmode_active)
2728 msg_scroll = FALSE;
2730 #ifdef FEAT_QUICKFIX
2731 /* When started with "-q errorfile" jump to first error again. */
2732 if (parmp->edit_type == EDIT_QF)
2733 qf_jump(NULL, 0, 0, FALSE);
2734 #endif
2735 TIME_MSG("executing command arguments");
2739 * Source startup scripts.
2741 static void
2742 source_startup_scripts(parmp)
2743 mparm_T *parmp;
2745 int i;
2748 * For "evim" source evim.vim first of all, so that the user can overrule
2749 * any things he doesn't like.
2751 if (parmp->evim_mode)
2753 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2754 TIME_MSG("source evim file");
2758 * If -u argument given, use only the initializations from that file and
2759 * nothing else.
2761 if (parmp->use_vimrc != NULL)
2763 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2764 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2766 #ifdef FEAT_GUI
2767 if (use_gvimrc == NULL) /* don't load gvimrc either */
2768 use_gvimrc = parmp->use_vimrc;
2769 #endif
2770 if (parmp->use_vimrc[2] == 'N')
2771 p_lpl = FALSE; /* don't load plugins either */
2773 else
2775 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2776 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2779 else if (!silent_mode)
2781 #ifdef AMIGA
2782 struct Process *proc = (struct Process *)FindTask(0L);
2783 APTR save_winptr = proc->pr_WindowPtr;
2785 /* Avoid a requester here for a volume that doesn't exist. */
2786 proc->pr_WindowPtr = (APTR)-1L;
2787 #endif
2790 * Get system wide defaults, if the file name is defined.
2792 #ifdef SYS_VIMRC_FILE
2793 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2794 #endif
2795 #if defined(MACOS_X) && !defined(FEAT_GUI_MACVIM)
2796 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2797 #endif
2800 * Try to read initialization commands from the following places:
2801 * - environment variable VIMINIT
2802 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2803 * - second user vimrc file ($VIM/.vimrc for Dos)
2804 * - environment variable EXINIT
2805 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2806 * - second user exrc file ($VIM/.exrc for Dos)
2807 * The first that exists is used, the rest is ignored.
2809 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2811 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2812 #ifdef USR_VIMRC_FILE2
2813 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2814 DOSO_VIMRC) == FAIL
2815 #endif
2816 #ifdef USR_VIMRC_FILE3
2817 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2818 DOSO_VIMRC) == FAIL
2819 #endif
2820 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2821 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2823 #ifdef USR_EXRC_FILE2
2824 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2825 #endif
2830 * Read initialization commands from ".vimrc" or ".exrc" in current
2831 * directory. This is only done if the 'exrc' option is set.
2832 * Because of security reasons we disallow shell and write commands
2833 * now, except for unix if the file is owned by the user or 'secure'
2834 * option has been reset in environment of global ".exrc" or ".vimrc".
2835 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2836 * SYS_VIMRC_FILE.
2838 if (p_exrc)
2840 #if defined(UNIX) || defined(VMS)
2841 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2842 if (!file_owned(VIMRC_FILE))
2843 #endif
2844 secure = p_secure;
2846 i = FAIL;
2847 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2848 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2849 #ifdef USR_VIMRC_FILE2
2850 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2851 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2852 #endif
2853 #ifdef USR_VIMRC_FILE3
2854 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2855 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2856 #endif
2857 #ifdef SYS_VIMRC_FILE
2858 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2859 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2860 #endif
2862 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2864 if (i == FAIL)
2866 #if defined(UNIX) || defined(VMS)
2867 /* if ".exrc" is not owned by user set 'secure' mode */
2868 if (!file_owned(EXRC_FILE))
2869 secure = p_secure;
2870 else
2871 secure = 0;
2872 #endif
2873 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2874 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2875 #ifdef USR_EXRC_FILE2
2876 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2877 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2878 #endif
2880 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2883 if (secure == 2)
2884 need_wait_return = TRUE;
2885 secure = 0;
2886 #ifdef AMIGA
2887 proc->pr_WindowPtr = save_winptr;
2888 #endif
2890 TIME_MSG("sourcing vimrc file(s)");
2894 * Setup to start using the GUI. Exit with an error when not available.
2896 static void
2897 main_start_gui()
2899 #ifdef FEAT_GUI
2900 gui.starting = TRUE; /* start GUI a bit later */
2901 #else
2902 mch_errmsg(_(e_nogvim));
2903 mch_errmsg("\n");
2904 mch_exit(2);
2905 #endif
2909 * Get an environment variable, and execute it as Ex commands.
2910 * Returns FAIL if the environment variable was not executed, OK otherwise.
2913 process_env(env, is_viminit)
2914 char_u *env;
2915 int is_viminit; /* when TRUE, called for VIMINIT */
2917 char_u *initstr;
2918 char_u *save_sourcing_name;
2919 linenr_T save_sourcing_lnum;
2920 #ifdef FEAT_EVAL
2921 scid_T save_sid;
2922 #endif
2924 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2926 if (is_viminit)
2927 vimrc_found(NULL, NULL);
2928 save_sourcing_name = sourcing_name;
2929 save_sourcing_lnum = sourcing_lnum;
2930 sourcing_name = env;
2931 sourcing_lnum = 0;
2932 #ifdef FEAT_EVAL
2933 save_sid = current_SID;
2934 current_SID = SID_ENV;
2935 #endif
2936 do_cmdline_cmd(initstr);
2937 sourcing_name = save_sourcing_name;
2938 sourcing_lnum = save_sourcing_lnum;
2939 #ifdef FEAT_EVAL
2940 current_SID = save_sid;;
2941 #endif
2942 return OK;
2944 return FAIL;
2947 #if defined(UNIX) || defined(VMS)
2949 * Return TRUE if we are certain the user owns the file "fname".
2950 * Used for ".vimrc" and ".exrc".
2951 * Use both stat() and lstat() for extra security.
2953 static int
2954 file_owned(fname)
2955 char *fname;
2957 struct stat s;
2958 # ifdef UNIX
2959 uid_t uid = getuid();
2960 # else /* VMS */
2961 uid_t uid = ((getgid() << 16) | getuid());
2962 # endif
2964 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2965 # ifdef HAVE_LSTAT
2966 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2967 # endif
2970 #endif
2973 * Give an error message main_errors["n"] and exit.
2975 static void
2976 mainerr(n, str)
2977 int n; /* one of the ME_ defines */
2978 char_u *str; /* extra argument or NULL */
2980 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2981 reset_signals(); /* kill us with CTRL-C here, if you like */
2982 #endif
2984 mch_errmsg(longVersion);
2985 mch_errmsg("\n");
2986 mch_errmsg(_(main_errors[n]));
2987 if (str != NULL)
2989 mch_errmsg(": \"");
2990 mch_errmsg((char *)str);
2991 mch_errmsg("\"");
2993 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
2995 mch_exit(1);
2998 void
2999 mainerr_arg_missing(str)
3000 char_u *str;
3002 mainerr(ME_ARG_MISSING, str);
3006 * print a message with three spaces prepended and '\n' appended.
3008 static void
3009 main_msg(s)
3010 char *s;
3012 mch_msg(" ");
3013 mch_msg(s);
3014 mch_msg("\n");
3018 * Print messages for "vim -h" or "vim --help" and exit.
3020 static void
3021 usage()
3023 int i;
3024 static char *(use[]) =
3026 N_("[file ..] edit specified file(s)"),
3027 N_("- read text from stdin"),
3028 N_("-t tag edit file where tag is defined"),
3029 #ifdef FEAT_QUICKFIX
3030 N_("-q [errorfile] edit file with first error")
3031 #endif
3034 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3035 reset_signals(); /* kill us with CTRL-C here, if you like */
3036 #endif
3038 mch_msg(longVersion);
3039 mch_msg(_("\n\nusage:"));
3040 for (i = 0; ; ++i)
3042 mch_msg(_(" vim [arguments] "));
3043 mch_msg(_(use[i]));
3044 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3045 break;
3046 mch_msg(_("\n or:"));
3048 #ifdef VMS
3049 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3050 #endif
3052 mch_msg(_("\n\nArguments:\n"));
3053 main_msg(_("--\t\t\tOnly file names after this"));
3054 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3055 main_msg(_("--literal\t\tDon't expand wildcards"));
3056 #endif
3057 #ifdef FEAT_OLE
3058 main_msg(_("-register\t\tRegister this gvim for OLE"));
3059 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3060 #endif
3061 #ifdef FEAT_GUI
3062 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3063 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3064 #endif
3065 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3066 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3067 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3068 #ifdef FEAT_DIFF
3069 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3070 #endif
3071 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3072 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3073 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3074 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3075 main_msg(_("-M\t\t\tModifications in text not allowed"));
3076 main_msg(_("-b\t\t\tBinary mode"));
3077 #ifdef FEAT_LISP
3078 main_msg(_("-l\t\t\tLisp mode"));
3079 #endif
3080 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3081 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3082 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3083 #ifdef FEAT_EVAL
3084 main_msg(_("-D\t\t\tDebugging mode"));
3085 #endif
3086 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3087 main_msg(_("-r\t\t\tList swap files and exit"));
3088 main_msg(_("-r (with file name)\tRecover crashed session"));
3089 main_msg(_("-L\t\t\tSame as -r"));
3090 #ifdef AMIGA
3091 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3092 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3093 #endif
3094 #ifdef FEAT_ARABIC
3095 main_msg(_("-A\t\t\tstart in Arabic mode"));
3096 #endif
3097 #ifdef FEAT_RIGHTLEFT
3098 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3099 #endif
3100 #ifdef FEAT_FKMAP
3101 main_msg(_("-F\t\t\tStart in Farsi mode"));
3102 #endif
3103 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3104 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3105 #ifdef FEAT_GUI
3106 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3107 #endif
3108 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3109 #ifdef FEAT_WINDOWS
3110 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3111 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3112 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3113 #endif
3114 main_msg(_("+\t\t\tStart at end of file"));
3115 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3116 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3117 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3118 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3119 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3120 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3121 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3122 #ifdef FEAT_CRYPT
3123 main_msg(_("-x\t\t\tEdit encrypted files"));
3124 #endif
3125 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3126 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3127 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3128 # endif
3129 main_msg(_("-X\t\t\tDo not connect to X server"));
3130 #endif
3131 #ifdef FEAT_CLIENTSERVER
3132 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3133 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3134 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3135 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3136 # ifdef FEAT_WINDOWS
3137 main_msg(_("--remote-tab <files> As --remote but open tab page for each file"));
3138 # endif
3139 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3140 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3141 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3142 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3143 #endif
3144 #ifdef FEAT_VIMINFO
3145 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3146 #endif
3147 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3148 main_msg(_("--version\t\tPrint version information and exit"));
3150 #ifdef FEAT_GUI_X11
3151 # ifdef FEAT_GUI_MOTIF
3152 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3153 # else
3154 # ifdef FEAT_GUI_ATHENA
3155 # ifdef FEAT_GUI_NEXTAW
3156 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3157 # else
3158 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3159 # endif
3160 # endif
3161 # endif
3162 main_msg(_("-display <display>\tRun vim on <display>"));
3163 main_msg(_("-iconic\t\tStart vim iconified"));
3164 # if 0
3165 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3166 mch_msg(_("\t\t\t (Unimplemented)\n"));
3167 # endif
3168 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3169 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3170 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3171 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3172 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3173 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3174 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3175 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3176 # ifdef FEAT_GUI_ATHENA
3177 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3178 # endif
3179 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3180 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3181 main_msg(_("-xrm <resource>\tSet the specified resource"));
3182 #endif /* FEAT_GUI_X11 */
3183 #if defined(FEAT_GUI) && defined(RISCOS)
3184 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3185 main_msg(_("--columns <number>\tInitial width of window in columns"));
3186 main_msg(_("--rows <number>\tInitial height of window in rows"));
3187 #endif
3188 #ifdef FEAT_GUI_GTK
3189 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3190 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3191 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3192 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3193 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3194 # ifdef HAVE_GTK2
3195 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3196 # endif
3197 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3198 #endif
3199 #ifdef FEAT_GUI_W32
3200 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3201 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3202 #endif
3204 #ifdef FEAT_GUI_GNOME
3205 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3206 if (gui.starting)
3207 mch_msg("\n");
3208 else
3209 #endif
3210 mch_exit(0);
3213 #if defined(HAS_SWAP_EXISTS_ACTION)
3215 * Check the result of the ATTENTION dialog:
3216 * When "Quit" selected, exit Vim.
3217 * When "Recover" selected, recover the file.
3219 static void
3220 check_swap_exists_action()
3222 if (swap_exists_action == SEA_QUIT)
3223 getout(1);
3224 handle_swap_exists(NULL);
3226 #endif
3228 #if defined(STARTUPTIME) || defined(PROTO)
3229 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3231 static struct timeval prev_timeval;
3234 * Save the previous time before doing something that could nest.
3235 * set "*tv_rel" to the time elapsed so far.
3237 void
3238 time_push(tv_rel, tv_start)
3239 void *tv_rel, *tv_start;
3241 *((struct timeval *)tv_rel) = prev_timeval;
3242 gettimeofday(&prev_timeval, NULL);
3243 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3244 - ((struct timeval *)tv_rel)->tv_usec;
3245 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3246 - ((struct timeval *)tv_rel)->tv_sec;
3247 if (((struct timeval *)tv_rel)->tv_usec < 0)
3249 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3250 --((struct timeval *)tv_rel)->tv_sec;
3252 *(struct timeval *)tv_start = prev_timeval;
3256 * Compute the previous time after doing something that could nest.
3257 * Subtract "*tp" from prev_timeval;
3258 * Note: The arguments are (void *) to avoid trouble with systems that don't
3259 * have struct timeval.
3261 void
3262 time_pop(tp)
3263 void *tp; /* actually (struct timeval *) */
3265 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3266 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3267 if (prev_timeval.tv_usec < 0)
3269 prev_timeval.tv_usec += 1000000;
3270 --prev_timeval.tv_sec;
3274 static void
3275 time_diff(then, now)
3276 struct timeval *then;
3277 struct timeval *now;
3279 long usec;
3280 long msec;
3282 usec = now->tv_usec - then->tv_usec;
3283 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3284 usec = usec % 1000L;
3285 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3288 void
3289 time_msg(msg, tv_start)
3290 char *msg;
3291 void *tv_start; /* only for do_source: start time; actually
3292 (struct timeval *) */
3294 static struct timeval start;
3295 struct timeval now;
3297 if (time_fd != NULL)
3299 if (strstr(msg, "STARTING") != NULL)
3301 gettimeofday(&start, NULL);
3302 prev_timeval = start;
3303 fprintf(time_fd, "\n\ntimes in msec\n");
3304 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3305 fprintf(time_fd, " clock elapsed: other lines\n\n");
3307 gettimeofday(&now, NULL);
3308 time_diff(&start, &now);
3309 if (((struct timeval *)tv_start) != NULL)
3311 fprintf(time_fd, " ");
3312 time_diff(((struct timeval *)tv_start), &now);
3314 fprintf(time_fd, " ");
3315 time_diff(&prev_timeval, &now);
3316 prev_timeval = now;
3317 fprintf(time_fd, ": %s\n", msg);
3321 # ifdef WIN3264
3323 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3326 gettimeofday(struct timeval *tv, char *dummy)
3328 long t = clock();
3329 tv->tv_sec = t / CLOCKS_PER_SEC;
3330 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3331 return 0;
3333 # endif
3335 #endif
3337 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3340 * Common code for the X command server and the Win32 command server.
3343 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3346 * Do the client-server stuff, unless "--servername ''" was used.
3348 static void
3349 exec_on_server(parmp)
3350 mparm_T *parmp;
3352 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3354 # ifdef WIN32
3355 /* Initialise the client/server messaging infrastructure. */
3356 serverInitMessaging();
3357 # endif
3360 * When a command server argument was found, execute it. This may
3361 * exit Vim when it was successful. Otherwise it's executed further
3362 * on. Remember the encoding used here in "serverStrEnc".
3364 if (parmp->serverArg)
3366 cmdsrv_main(&parmp->argc, parmp->argv,
3367 parmp->serverName_arg, &parmp->serverStr);
3368 # ifdef FEAT_MBYTE
3369 parmp->serverStrEnc = vim_strsave(p_enc);
3370 # endif
3373 /* If we're still running, get the name to register ourselves.
3374 * On Win32 can register right now, for X11 need to setup the
3375 * clipboard first, it's further down. */
3376 parmp->servername = serverMakeName(parmp->serverName_arg,
3377 parmp->argv[0]);
3378 # ifdef WIN32
3379 if (parmp->servername != NULL)
3381 serverSetName(parmp->servername);
3382 vim_free(parmp->servername);
3384 # endif
3389 * Prepare for running as a Vim server.
3391 static void
3392 prepare_server(parmp)
3393 mparm_T *parmp;
3395 # if defined(FEAT_X11)
3397 * Register for remote command execution with :serversend and --remote
3398 * unless there was a -X or a --servername '' on the command line.
3399 * Only register nongui-vim's with an explicit --servername argument.
3400 * When running as root --servername is also required.
3402 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3403 # ifdef FEAT_GUI
3404 (gui.in_use
3405 # ifdef UNIX
3406 && getuid() != ROOT_UID
3407 # endif
3408 ) ||
3409 # endif
3410 parmp->serverName_arg != NULL))
3412 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3413 vim_free(parmp->servername);
3414 TIME_MSG("register server name");
3416 else
3417 serverDelayedStartName = parmp->servername;
3418 # elif defined(MAC_CLIENTSERVER)
3419 // NOTE: Can't set server name at same time as WIN32 because gui.in_use
3420 // isn't set then. Servers are only supported in GUI mode.
3421 if (parmp->servername != NULL && gui.in_use)
3423 serverRegisterName(parmp->servername);
3424 vim_free(parmp->servername);
3426 # endif
3429 * Execute command ourselves if we're here because the send failed (or
3430 * else we would have exited above).
3432 if (parmp->serverStr != NULL)
3434 char_u *p;
3436 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3437 parmp->serverStr, &p));
3438 vim_free(p);
3442 static void
3443 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3444 int *argc;
3445 char **argv;
3446 char_u *serverName_arg;
3447 char_u **serverStr;
3449 char_u *res;
3450 int i;
3451 char_u *sname;
3452 int ret;
3453 int didone = FALSE;
3454 int exiterr = 0;
3455 char **newArgV = argv + 1;
3456 int newArgC = 1,
3457 Argc = *argc;
3458 int argtype;
3459 #define ARGTYPE_OTHER 0
3460 #define ARGTYPE_EDIT 1
3461 #define ARGTYPE_EDIT_WAIT 2
3462 #define ARGTYPE_SEND 3
3463 int silent = FALSE;
3464 int tabs = FALSE;
3465 # ifdef WIN32
3466 HWND srv;
3467 # elif defined(MAC_CLIENTSERVER)
3468 int srv;
3469 # elif defined(FEAT_X11)
3470 Window srv;
3472 setup_term_clip();
3473 # endif
3475 sname = serverMakeName(serverName_arg, argv[0]);
3476 if (sname == NULL)
3477 return;
3480 * Execute the command server related arguments and remove them
3481 * from the argc/argv array; We may have to return into main()
3483 for (i = 1; i < Argc; i++)
3485 res = NULL;
3486 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3488 for (; i < *argc; i++)
3490 *newArgV++ = argv[i];
3491 newArgC++;
3493 break;
3496 if (STRICMP(argv[i], "--remote-send") == 0)
3497 argtype = ARGTYPE_SEND;
3498 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3500 char *p = argv[i] + 8;
3502 argtype = ARGTYPE_EDIT;
3503 while (*p != NUL)
3505 if (STRNICMP(p, "-wait", 5) == 0)
3507 argtype = ARGTYPE_EDIT_WAIT;
3508 p += 5;
3510 else if (STRNICMP(p, "-silent", 7) == 0)
3512 silent = TRUE;
3513 p += 7;
3515 else if (STRNICMP(p, "-tab", 4) == 0)
3517 tabs = TRUE;
3518 p += 4;
3520 else
3522 argtype = ARGTYPE_OTHER;
3523 break;
3527 else
3528 argtype = ARGTYPE_OTHER;
3530 if (argtype != ARGTYPE_OTHER)
3532 if (i == *argc - 1)
3533 mainerr_arg_missing((char_u *)argv[i]);
3534 if (argtype == ARGTYPE_SEND)
3536 *serverStr = (char_u *)argv[i + 1];
3537 i++;
3539 else
3541 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3542 tabs, argtype == ARGTYPE_EDIT_WAIT);
3543 if (*serverStr == NULL)
3545 /* Probably out of memory, exit. */
3546 didone = TRUE;
3547 exiterr = 1;
3548 break;
3550 Argc = i;
3552 # ifdef FEAT_X11
3553 if (xterm_dpy == NULL)
3555 mch_errmsg(_("No display"));
3556 ret = -1;
3558 else
3559 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3560 NULL, &srv, 0, 0, silent);
3561 # elif defined(WIN32) || defined(MAC_CLIENTSERVER)
3562 /* Win32 always works? */
3563 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3564 # endif
3565 if (ret < 0)
3567 if (argtype == ARGTYPE_SEND)
3569 /* Failed to send, abort. */
3570 mch_errmsg(_(": Send failed.\n"));
3571 didone = TRUE;
3572 exiterr = 1;
3574 else if (!silent)
3575 /* Let vim start normally. */
3576 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3577 break;
3580 # ifdef FEAT_GUI_W32
3581 /* Guess that when the server name starts with "g" it's a GUI
3582 * server, which we can bring to the foreground here.
3583 * Foreground() in the server doesn't work very well. */
3584 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3585 SetForegroundWindow(srv);
3586 # endif
3589 * For --remote-wait: Wait until the server did edit each
3590 * file. Also detect that the server no longer runs.
3592 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3594 int numFiles = *argc - i - 1;
3595 int j;
3596 char_u *done = alloc(numFiles);
3597 char_u *p;
3598 # ifdef FEAT_GUI_W32
3599 NOTIFYICONDATA ni;
3600 int count = 0;
3601 extern HWND message_window;
3602 # endif
3604 if (numFiles > 0 && argv[i + 1][0] == '+')
3605 /* Skip "+cmd" argument, don't wait for it to be edited. */
3606 --numFiles;
3608 # ifdef FEAT_GUI_W32
3609 ni.cbSize = sizeof(ni);
3610 ni.hWnd = message_window;
3611 ni.uID = 0;
3612 ni.uFlags = NIF_ICON|NIF_TIP;
3613 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3614 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3615 Shell_NotifyIcon(NIM_ADD, &ni);
3616 # endif
3618 /* Wait for all files to unload in remote */
3619 memset(done, 0, numFiles);
3620 while (memchr(done, 0, numFiles) != NULL)
3622 # ifdef WIN32
3623 p = serverGetReply(srv, NULL, TRUE, TRUE);
3624 if (p == NULL)
3625 break;
3626 # elif defined(FEAT_X11)
3627 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3628 break;
3629 # elif defined(MAC_CLIENTSERVER)
3630 if (serverReadReply(srv, &p) < 0)
3631 break;
3632 # endif
3633 j = atoi((char *)p);
3634 if (j >= 0 && j < numFiles)
3636 # ifdef FEAT_GUI_W32
3637 ++count;
3638 sprintf(ni.szTip, _("%d of %d edited"),
3639 count, numFiles);
3640 Shell_NotifyIcon(NIM_MODIFY, &ni);
3641 # endif
3642 done[j] = 1;
3645 # ifdef FEAT_GUI_W32
3646 Shell_NotifyIcon(NIM_DELETE, &ni);
3647 # endif
3650 else if (STRICMP(argv[i], "--remote-expr") == 0)
3652 if (i == *argc - 1)
3653 mainerr_arg_missing((char_u *)argv[i]);
3654 # ifdef WIN32
3655 /* Win32 always works? */
3656 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3657 &res, NULL, 1, FALSE) < 0)
3658 # elif defined(FEAT_X11)
3659 if (xterm_dpy == NULL)
3660 mch_errmsg(_("No display: Send expression failed.\n"));
3661 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3662 &res, NULL, 1, 1, FALSE) < 0)
3663 # elif defined(MAC_CLIENTSERVER)
3664 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3665 &res, NULL, 1, FALSE) < 0)
3666 # endif
3668 if (res != NULL && *res != NUL)
3670 /* Output error from remote */
3671 mch_errmsg((char *)res);
3672 vim_free(res);
3673 res = NULL;
3675 mch_errmsg(_(": Send expression failed.\n"));
3678 else if (STRICMP(argv[i], "--serverlist") == 0)
3680 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
3681 /* Win32 always works? */
3682 res = serverGetVimNames();
3683 # elif defined(FEAT_X11)
3684 if (xterm_dpy != NULL)
3685 res = serverGetVimNames(xterm_dpy);
3686 # endif
3687 if (called_emsg)
3688 mch_errmsg("\n");
3690 else if (STRICMP(argv[i], "--servername") == 0)
3692 /* Alredy processed. Take it out of the command line */
3693 i++;
3694 continue;
3696 else
3698 *newArgV++ = argv[i];
3699 newArgC++;
3700 continue;
3702 didone = TRUE;
3703 if (res != NULL && *res != NUL)
3705 mch_msg((char *)res);
3706 if (res[STRLEN(res) - 1] != '\n')
3707 mch_msg("\n");
3709 vim_free(res);
3712 if (didone)
3714 display_errors(); /* display any collected messages */
3715 exit(exiterr); /* Mission accomplished - get out */
3718 /* Return back into main() */
3719 *argc = newArgC;
3720 vim_free(sname);
3724 * Build a ":drop" command to send to a Vim server.
3726 static char_u *
3727 build_drop_cmd(filec, filev, tabs, sendReply)
3728 int filec;
3729 char **filev;
3730 int tabs; /* Use ":tab drop" instead of ":drop". */
3731 int sendReply;
3733 garray_T ga;
3734 int i;
3735 char_u *inicmd = NULL;
3736 char_u *p;
3737 char_u cwd[MAXPATHL];
3739 if (filec > 0 && filev[0][0] == '+')
3741 inicmd = (char_u *)filev[0] + 1;
3742 filev++;
3743 filec--;
3745 /* Check if we have at least one argument. */
3746 if (filec <= 0)
3747 mainerr_arg_missing((char_u *)filev[-1]);
3748 if (mch_dirname(cwd, MAXPATHL) != OK)
3749 return NULL;
3750 if ((p = vim_strsave_escaped_ext(cwd,
3751 #ifdef BACKSLASH_IN_FILENAME
3752 "", /* rem_backslash() will tell what chars to escape */
3753 #else
3754 PATH_ESC_CHARS,
3755 #endif
3756 '\\', TRUE)) == NULL)
3757 return NULL;
3758 ga_init2(&ga, 1, 100);
3759 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3760 ga_concat(&ga, p);
3761 vim_free(p);
3763 /* Call inputsave() so that a prompt for an encryption key works. */
3764 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3765 if (tabs)
3766 ga_concat(&ga, (char_u *)"tab ");
3767 ga_concat(&ga, (char_u *)"drop");
3768 for (i = 0; i < filec; i++)
3770 /* On Unix the shell has already expanded the wildcards, don't want to
3771 * do it again in the Vim server. On MS-Windows only escape
3772 * non-wildcard characters. */
3773 p = vim_strsave_escaped((char_u *)filev[i],
3774 #ifdef UNIX
3775 PATH_ESC_CHARS
3776 #else
3777 (char_u *)" \t%#"
3778 #endif
3780 if (p == NULL)
3782 vim_free(ga.ga_data);
3783 return NULL;
3785 ga_concat(&ga, (char_u *)" ");
3786 ga_concat(&ga, p);
3787 vim_free(p);
3789 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3790 * CTRL-\ CTRL-N again. */
3791 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3792 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3793 if (sendReply)
3794 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3795 ga_concat(&ga, (char_u *)"<CR>:");
3796 if (inicmd != NULL)
3798 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3799 * the following commands to be inserted as text. Use a "|",
3800 * hopefully "inicmd" does allow this... */
3801 ga_concat(&ga, inicmd);
3802 ga_concat(&ga, (char_u *)"|");
3804 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3805 * clear command line. */
3806 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3807 ga_append(&ga, NUL);
3808 return ga.ga_data;
3812 * Replace termcodes such as <CR> and insert as key presses if there is room.
3814 void
3815 server_to_input_buf(str)
3816 char_u *str;
3818 char_u *ptr = NULL;
3819 char_u *cpo_save = p_cpo;
3821 /* Set 'cpoptions' the way we want it.
3822 * B set - backslashes are *not* treated specially
3823 * k set - keycodes are *not* reverse-engineered
3824 * < unset - <Key> sequences *are* interpreted
3825 * The last but one parameter of replace_termcodes() is TRUE so that the
3826 * <lt> sequence is recognised - needed for a real backslash.
3828 p_cpo = (char_u *)"Bk";
3829 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3830 p_cpo = cpo_save;
3832 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3835 * Add the string to the input stream.
3836 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3838 * First clear typed characters from the typeahead buffer, there could
3839 * be half a mapping there. Then append to the existing string, so
3840 * that multiple commands from a client are concatenated.
3842 if (typebuf.tb_maplen < typebuf.tb_len)
3843 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3844 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3846 /* Let input_available() know we inserted text in the typeahead
3847 * buffer. */
3848 typebuf_was_filled = TRUE;
3850 vim_free((char_u *)ptr);
3854 * Evaluate an expression that the client sent to a string.
3855 * Handles disabling error messages and disables debugging, otherwise Vim
3856 * hangs, waiting for "cont" to be typed.
3858 char_u *
3859 eval_client_expr_to_string(expr)
3860 char_u *expr;
3862 char_u *res;
3863 int save_dbl = debug_break_level;
3864 int save_ro = redir_off;
3866 debug_break_level = -1;
3867 redir_off = 0;
3868 ++emsg_skip;
3870 res = eval_to_string(expr, NULL, TRUE);
3872 debug_break_level = save_dbl;
3873 redir_off = save_ro;
3874 --emsg_skip;
3876 /* A client can tell us to redraw, but not to display the cursor, so do
3877 * that here. */
3878 setcursor();
3879 out_flush();
3880 #ifdef FEAT_GUI
3881 if (gui.in_use)
3882 gui_update_cursor(FALSE, FALSE);
3883 #endif
3885 return res;
3889 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3890 * return an allocated string. Otherwise return "data".
3891 * "*tofree" is set to the result when it needs to be freed later.
3893 /*ARGSUSED*/
3894 char_u *
3895 serverConvert(client_enc, data, tofree)
3896 char_u *client_enc;
3897 char_u *data;
3898 char_u **tofree;
3900 char_u *res = data;
3902 *tofree = NULL;
3903 # ifdef FEAT_MBYTE
3904 if (client_enc != NULL && p_enc != NULL)
3906 vimconv_T vimconv;
3908 vimconv.vc_type = CONV_NONE;
3909 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3910 && vimconv.vc_type != CONV_NONE)
3912 res = string_convert(&vimconv, data, NULL);
3913 if (res == NULL)
3914 res = data;
3915 else
3916 *tofree = res;
3918 convert_setup(&vimconv, NULL, NULL);
3920 # endif
3921 return res;
3926 * Make our basic server name: use the specified "arg" if given, otherwise use
3927 * the tail of the command "cmd" we were started with.
3928 * Return the name in allocated memory. This doesn't include a serial number.
3930 static char_u *
3931 serverMakeName(arg, cmd)
3932 char_u *arg;
3933 char *cmd;
3935 char_u *p;
3937 if (arg != NULL && *arg != NUL)
3938 p = vim_strsave_up(arg);
3939 else
3941 p = vim_strsave_up(gettail((char_u *)cmd));
3942 /* Remove .exe or .bat from the name. */
3943 if (p != NULL && vim_strchr(p, '.') != NULL)
3944 *vim_strchr(p, '.') = NUL;
3946 return p;
3948 #endif /* FEAT_CLIENTSERVER */
3951 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3953 #if defined(FEAT_FKMAP) || defined(PROTO)
3954 # include "farsi.c"
3955 #endif
3958 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3960 #if defined(FEAT_ARABIC) || defined(PROTO)
3961 # include "arabic.c"
3962 #endif