Changed DiffText and Constant highlight groups
[MacVim/jjgod.git] / src / main.c
blobf5533abbd5f239f0e8312ad4cb8afa1ca8d79386
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)
1231 * Exit, but leave behind swap files for modified buffers.
1233 void
1234 getout_preserve_modified(exitval)
1235 int exitval;
1237 # if defined(SIGHUP) && defined(SIG_IGN)
1238 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1239 * makes Vim exit and then handling SIGHUP causes various reentrance
1240 * problems. */
1241 signal(SIGHUP, SIG_IGN);
1242 # endif
1244 ml_close_notmod(); /* close all not-modified buffers */
1245 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1246 ml_close_all(FALSE); /* close all memfiles, without deleting */
1247 getout(exitval); /* exit Vim properly */
1249 #endif
1252 /* Exit properly */
1253 void
1254 getout(exitval)
1255 int exitval;
1257 #ifdef FEAT_AUTOCMD
1258 buf_T *buf;
1259 win_T *wp;
1260 tabpage_T *tp, *next_tp;
1261 #endif
1263 exiting = TRUE;
1265 /* When running in Ex mode an error causes us to exit with a non-zero exit
1266 * code. POSIX requires this, although it's not 100% clear from the
1267 * standard. */
1268 if (exmode_active)
1269 exitval += ex_exitval;
1271 /* Position the cursor on the last screen line, below all the text */
1272 #ifdef FEAT_GUI
1273 if (!gui.in_use)
1274 #endif
1275 windgoto((int)Rows - 1, 0);
1277 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1278 /* Optionally print hashtable efficiency. */
1279 hash_debug_results();
1280 #endif
1282 #ifdef FEAT_GUI
1283 msg_didany = FALSE;
1284 #endif
1286 #ifdef FEAT_AUTOCMD
1287 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1288 # if defined FEAT_WINDOWS
1289 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1291 next_tp = tp->tp_next;
1292 for (wp = (tp == curtab)
1293 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1295 buf = wp->w_buffer;
1296 if (buf->b_changedtick != -1)
1298 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1299 FALSE, buf);
1300 buf->b_changedtick = -1; /* note that we did it already */
1301 /* start all over, autocommands may mess up the lists */
1302 next_tp = first_tabpage;
1303 break;
1307 # else
1308 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1309 # endif
1311 /* Trigger BufUnload for buffers that are loaded */
1312 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1313 if (buf->b_ml.ml_mfp != NULL)
1315 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1316 FALSE, buf);
1317 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1318 break;
1320 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1321 #endif
1323 #ifdef FEAT_VIMINFO
1324 if (*p_viminfo != NUL)
1325 /* Write out the registers, history, marks etc, to the viminfo file */
1326 write_viminfo(NULL, FALSE);
1327 #endif
1329 #ifdef FEAT_AUTOCMD
1330 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1331 #endif
1333 #ifdef FEAT_PROFILE
1334 profile_dump();
1335 #endif
1337 if (did_emsg
1338 #ifdef FEAT_GUI
1339 || (gui.in_use && msg_didany && p_verbose > 0)
1340 #endif
1343 /* give the user a chance to read the (error) message */
1344 no_wait_return = FALSE;
1345 wait_return(FALSE);
1348 #ifdef FEAT_AUTOCMD
1349 /* Position the cursor again, the autocommands may have moved it */
1350 # ifdef FEAT_GUI
1351 if (!gui.in_use)
1352 # endif
1353 windgoto((int)Rows - 1, 0);
1354 #endif
1356 #ifdef FEAT_MZSCHEME
1357 mzscheme_end();
1358 #endif
1359 #ifdef FEAT_TCL
1360 tcl_end();
1361 #endif
1362 #ifdef FEAT_RUBY
1363 ruby_end();
1364 #endif
1365 #ifdef FEAT_PYTHON
1366 python_end();
1367 #endif
1368 #ifdef FEAT_PERL
1369 perl_end();
1370 #endif
1371 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1372 iconv_end();
1373 #endif
1374 #ifdef FEAT_NETBEANS_INTG
1375 netbeans_end();
1376 #endif
1377 #ifdef FEAT_CSCOPE
1378 cs_end();
1379 #endif
1380 #ifdef FEAT_EVAL
1381 if (garbage_collect_at_exit)
1382 garbage_collect();
1383 #endif
1385 mch_exit(exitval);
1389 * Get a (optional) count for a Vim argument.
1391 static int
1392 get_number_arg(p, idx, def)
1393 char_u *p; /* pointer to argument */
1394 int *idx; /* index in argument, is incremented */
1395 int def; /* default value */
1397 if (vim_isdigit(p[*idx]))
1399 def = atoi((char *)&(p[*idx]));
1400 while (vim_isdigit(p[*idx]))
1401 *idx = *idx + 1;
1403 return def;
1406 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1408 * Setup to use the current locale (for ctype() and many other things).
1410 static void
1411 init_locale()
1413 setlocale(LC_ALL, "");
1414 # ifdef WIN32
1415 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1416 * text while it's expecting text in the current locale. This call avoids
1417 * that. */
1418 setlocale(LC_CTYPE, "C");
1419 # endif
1421 # ifdef FEAT_GETTEXT
1423 int mustfree = FALSE;
1424 char_u *p;
1426 # ifdef DYNAMIC_GETTEXT
1427 /* Initialize the gettext library */
1428 dyn_libintl_init(NULL);
1429 # endif
1430 /* expand_env() doesn't work yet, because chartab[] is not initialized
1431 * yet, call vim_getenv() directly */
1432 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1433 if (p != NULL && *p != NUL)
1435 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1436 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1438 if (mustfree)
1439 vim_free(p);
1440 textdomain(VIMPACKAGE);
1442 # endif
1444 #endif
1447 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1448 * If the executable name starts with "r" we disable shell commands.
1449 * If the next character is "e" we run in Easy mode.
1450 * If the next character is "g" we run the GUI version.
1451 * If the next characters are "view" we start in readonly mode.
1452 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1453 * If the next characters are "ex" we start in Ex mode. If it's followed
1454 * by "im" use improved Ex mode.
1456 static void
1457 parse_command_name(parmp)
1458 mparm_T *parmp;
1460 char_u *initstr;
1462 initstr = gettail((char_u *)parmp->argv[0]);
1464 #ifdef MACOS_X_UNIX
1465 /* An issue has been seen when launching Vim in such a way that
1466 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1467 * executable or a symbolic link of it. Until this issue is resolved
1468 * we prohibit the GUI from being used.
1470 if (STRCMP(initstr, parmp->argv[0]) == 0)
1471 disallow_gui = TRUE;
1473 /* TODO: On MacOS X default to gui if argv[0] ends in:
1474 * /Vim.app/Contents/MacOS/Vim */
1475 #endif
1477 #ifdef FEAT_EVAL
1478 set_vim_var_string(VV_PROGNAME, initstr, -1);
1479 #endif
1481 if (TOLOWER_ASC(initstr[0]) == 'r')
1483 restricted = TRUE;
1484 ++initstr;
1487 /* Avoid using evim mode for "editor". */
1488 if (TOLOWER_ASC(initstr[0]) == 'e'
1489 && (TOLOWER_ASC(initstr[1]) == 'v'
1490 || TOLOWER_ASC(initstr[1]) == 'g'))
1492 #ifdef FEAT_GUI
1493 gui.starting = TRUE;
1494 #endif
1495 parmp->evim_mode = TRUE;
1496 ++initstr;
1499 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1501 main_start_gui();
1502 #ifdef FEAT_GUI
1503 ++initstr;
1504 #endif
1507 if (STRNICMP(initstr, "view", 4) == 0)
1509 readonlymode = TRUE;
1510 curbuf->b_p_ro = TRUE;
1511 p_uc = 10000; /* don't update very often */
1512 initstr += 4;
1514 else if (STRNICMP(initstr, "vim", 3) == 0)
1515 initstr += 3;
1517 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1518 if (STRICMP(initstr, "diff") == 0)
1520 #ifdef FEAT_DIFF
1521 parmp->diff_mode = TRUE;
1522 #else
1523 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1524 mch_errmsg("\n");
1525 mch_exit(2);
1526 #endif
1529 if (STRNICMP(initstr, "ex", 2) == 0)
1531 if (STRNICMP(initstr + 2, "im", 2) == 0)
1532 exmode_active = EXMODE_VIM;
1533 else
1534 exmode_active = EXMODE_NORMAL;
1535 change_compatible(TRUE); /* set 'compatible' */
1540 * Get the name of the display, before gui_prepare() removes it from
1541 * argv[]. Used for the xterm-clipboard display.
1543 * Also find the --server... arguments and --socketid and --windowid
1545 /*ARGSUSED*/
1546 static void
1547 early_arg_scan(parmp)
1548 mparm_T *parmp;
1550 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
1551 int argc = parmp->argc;
1552 char **argv = parmp->argv;
1553 int i;
1555 for (i = 1; i < argc; i++)
1557 if (STRCMP(argv[i], "--") == 0)
1558 break;
1559 # ifdef FEAT_XCLIPBOARD
1560 else if (STRICMP(argv[i], "-display") == 0
1561 # if defined(FEAT_GUI_GTK)
1562 || STRICMP(argv[i], "--display") == 0
1563 # endif
1566 if (i == argc - 1)
1567 mainerr_arg_missing((char_u *)argv[i]);
1568 xterm_display = argv[++i];
1570 # endif
1571 # ifdef FEAT_CLIENTSERVER
1572 else if (STRICMP(argv[i], "--servername") == 0)
1574 if (i == argc - 1)
1575 mainerr_arg_missing((char_u *)argv[i]);
1576 parmp->serverName_arg = (char_u *)argv[++i];
1578 else if (STRICMP(argv[i], "--serverlist") == 0)
1579 parmp->serverArg = TRUE;
1580 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1582 parmp->serverArg = TRUE;
1583 # ifdef FEAT_GUI
1584 if (strstr(argv[i], "-wait") != 0)
1585 /* don't fork() when starting the GUI to edit files ourself */
1586 gui.dofork = FALSE;
1587 # endif
1589 # endif
1591 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1592 # ifdef FEAT_GUI_W32
1593 else if (STRICMP(argv[i], "--windowid") == 0)
1594 # else
1595 else if (STRICMP(argv[i], "--socketid") == 0)
1596 # endif
1598 unsigned int id;
1599 int count;
1601 if (i == argc - 1)
1602 mainerr_arg_missing((char_u *)argv[i]);
1603 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1604 count = sscanf(&(argv[i + 1][2]), "%x", &id);
1605 else
1606 count = sscanf(argv[i+1], "%u", &id);
1607 if (count != 1)
1608 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1609 else
1610 # ifdef FEAT_GUI_W32
1611 win_socket_id = id;
1612 # else
1613 gtk_socket_id = id;
1614 # endif
1615 i++;
1617 # endif
1618 # ifdef FEAT_GUI_GTK
1619 else if (STRICMP(argv[i], "--echo-wid") == 0)
1620 echo_wid_arg = TRUE;
1621 # endif
1623 #endif
1627 * Scan the command line arguments.
1629 static void
1630 command_line_scan(parmp)
1631 mparm_T *parmp;
1633 int argc = parmp->argc;
1634 char **argv = parmp->argv;
1635 int argv_idx; /* index in argv[n][] */
1636 int had_minmin = FALSE; /* found "--" argument */
1637 int want_argument; /* option argument with argument */
1638 int c;
1639 char_u *p = NULL;
1640 long n;
1642 --argc;
1643 ++argv;
1644 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1645 while (argc > 0)
1648 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1650 if (argv[0][0] == '+' && !had_minmin)
1652 if (parmp->n_commands >= MAX_ARG_CMDS)
1653 mainerr(ME_EXTRA_CMD, NULL);
1654 argv_idx = -1; /* skip to next argument */
1655 if (argv[0][1] == NUL)
1656 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1657 else
1658 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1662 * Optional argument.
1664 else if (argv[0][0] == '-' && !had_minmin)
1666 want_argument = FALSE;
1667 c = argv[0][argv_idx++];
1668 #ifdef VMS
1670 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1671 * and "-/X" as "-X".
1673 if (c == '/')
1675 c = argv[0][argv_idx++];
1676 c = TOUPPER_ASC(c);
1678 else
1679 c = TOLOWER_ASC(c);
1680 #endif
1681 switch (c)
1683 case NUL: /* "vim -" read from stdin */
1684 /* "ex -" silent mode */
1685 if (exmode_active)
1686 silent_mode = TRUE;
1687 else
1689 if (parmp->edit_type != EDIT_NONE)
1690 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1691 parmp->edit_type = EDIT_STDIN;
1692 read_cmd_fd = 2; /* read from stderr instead of stdin */
1694 argv_idx = -1; /* skip to next argument */
1695 break;
1697 case '-': /* "--" don't take any more option arguments */
1698 /* "--help" give help message */
1699 /* "--version" give version message */
1700 /* "--literal" take files literally */
1701 /* "--nofork" don't fork */
1702 /* "--noplugin[s]" skip plugins */
1703 /* "--cmd <cmd>" execute cmd before vimrc */
1704 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1705 usage();
1706 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1708 Columns = 80; /* need to init Columns */
1709 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1710 list_version();
1711 msg_putchar('\n');
1712 msg_didout = FALSE;
1713 mch_exit(0);
1715 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1717 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1718 parmp->literal = TRUE;
1719 #endif
1721 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1723 #ifdef FEAT_GUI
1724 gui.dofork = FALSE; /* don't fork() when starting GUI */
1725 #endif
1727 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1728 p_lpl = FALSE;
1729 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1731 want_argument = TRUE;
1732 argv_idx += 3;
1734 #ifdef FEAT_CLIENTSERVER
1735 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1736 ; /* already processed -- no arg */
1737 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1738 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1740 /* already processed -- snatch the following arg */
1741 if (argc > 1)
1743 --argc;
1744 ++argv;
1747 #endif
1748 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1749 # ifdef FEAT_GUI_GTK
1750 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1751 # else
1752 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1753 # endif
1755 /* already processed -- snatch the following arg */
1756 if (argc > 1)
1758 --argc;
1759 ++argv;
1762 #endif
1763 #ifdef FEAT_GUI_GTK
1764 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1766 /* already processed, skip */
1768 #endif
1769 else
1771 if (argv[0][argv_idx])
1772 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1773 had_minmin = TRUE;
1775 if (!want_argument)
1776 argv_idx = -1; /* skip to next argument */
1777 break;
1779 case 'A': /* "-A" start in Arabic mode */
1780 #ifdef FEAT_ARABIC
1781 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1782 #else
1783 mch_errmsg(_(e_noarabic));
1784 mch_exit(2);
1785 #endif
1786 break;
1788 case 'b': /* "-b" binary mode */
1789 /* Needs to be effective before expanding file names, because
1790 * for Win32 this makes us edit a shortcut file itself,
1791 * instead of the file it links to. */
1792 set_options_bin(curbuf->b_p_bin, 1, 0);
1793 curbuf->b_p_bin = 1; /* binary file I/O */
1794 break;
1796 case 'C': /* "-C" Compatible */
1797 change_compatible(TRUE);
1798 break;
1800 case 'e': /* "-e" Ex mode */
1801 exmode_active = EXMODE_NORMAL;
1802 break;
1804 case 'E': /* "-E" Improved Ex mode */
1805 exmode_active = EXMODE_VIM;
1806 break;
1808 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1809 window directly, not with newcli */
1810 #ifdef FEAT_GUI
1811 gui.dofork = FALSE; /* don't fork() when starting GUI */
1812 #endif
1813 break;
1815 case 'g': /* "-g" start GUI */
1816 main_start_gui();
1817 break;
1819 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1820 #ifdef FEAT_FKMAP
1821 curwin->w_p_rl = p_fkmap = TRUE;
1822 #else
1823 mch_errmsg(_(e_nofarsi));
1824 mch_exit(2);
1825 #endif
1826 break;
1828 case 'h': /* "-h" give help message */
1829 #ifdef FEAT_GUI_GNOME
1830 /* Tell usage() to exit for "gvim". */
1831 gui.starting = FALSE;
1832 #endif
1833 usage();
1834 break;
1836 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1837 #ifdef FEAT_RIGHTLEFT
1838 curwin->w_p_rl = p_hkmap = TRUE;
1839 #else
1840 mch_errmsg(_(e_nohebrew));
1841 mch_exit(2);
1842 #endif
1843 break;
1845 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1846 #ifdef FEAT_LISP
1847 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1848 p_sm = TRUE;
1849 #endif
1850 break;
1852 case 'M': /* "-M" no changes or writing of files */
1853 reset_modifiable();
1854 /* FALLTHROUGH */
1856 case 'm': /* "-m" no writing of files */
1857 p_write = FALSE;
1858 break;
1860 case 'y': /* "-y" easy mode */
1861 #ifdef FEAT_GUI
1862 gui.starting = TRUE; /* start GUI a bit later */
1863 #endif
1864 parmp->evim_mode = TRUE;
1865 break;
1867 case 'N': /* "-N" Nocompatible */
1868 change_compatible(FALSE);
1869 break;
1871 case 'n': /* "-n" no swap file */
1872 parmp->no_swap_file = TRUE;
1873 break;
1875 case 'p': /* "-p[N]" open N tab pages */
1876 #ifdef TARGET_API_MAC_OSX
1877 /* For some reason on MacOS X, an argument like:
1878 -psn_0_10223617 is passed in when invoke from Finder
1879 or with the 'open' command */
1880 if (argv[0][argv_idx] == 's')
1882 argv_idx = -1; /* bypass full -psn */
1883 main_start_gui();
1884 break;
1886 #endif
1887 #ifdef FEAT_WINDOWS
1888 /* default is 0: open window for each file */
1889 parmp->window_count = get_number_arg((char_u *)argv[0],
1890 &argv_idx, 0);
1891 parmp->window_layout = WIN_TABS;
1892 #endif
1893 break;
1895 case 'o': /* "-o[N]" open N horizontal split windows */
1896 #ifdef FEAT_WINDOWS
1897 /* default is 0: open window for each file */
1898 parmp->window_count = get_number_arg((char_u *)argv[0],
1899 &argv_idx, 0);
1900 parmp->window_layout = WIN_HOR;
1901 #endif
1902 break;
1904 case 'O': /* "-O[N]" open N vertical split windows */
1905 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1906 /* default is 0: open window for each file */
1907 parmp->window_count = get_number_arg((char_u *)argv[0],
1908 &argv_idx, 0);
1909 parmp->window_layout = WIN_VER;
1910 #endif
1911 break;
1913 #ifdef FEAT_QUICKFIX
1914 case 'q': /* "-q" QuickFix mode */
1915 if (parmp->edit_type != EDIT_NONE)
1916 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1917 parmp->edit_type = EDIT_QF;
1918 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1920 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1921 argv_idx = -1;
1923 else if (argc > 1) /* "-q {errorfile}" */
1924 want_argument = TRUE;
1925 break;
1926 #endif
1928 case 'R': /* "-R" readonly mode */
1929 readonlymode = TRUE;
1930 curbuf->b_p_ro = TRUE;
1931 p_uc = 10000; /* don't update very often */
1932 break;
1934 case 'r': /* "-r" recovery mode */
1935 case 'L': /* "-L" recovery mode */
1936 recoverymode = 1;
1937 break;
1939 case 's':
1940 if (exmode_active) /* "-s" silent (batch) mode */
1941 silent_mode = TRUE;
1942 else /* "-s {scriptin}" read from script file */
1943 want_argument = TRUE;
1944 break;
1946 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1947 if (parmp->edit_type != EDIT_NONE)
1948 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1949 parmp->edit_type = EDIT_TAG;
1950 if (argv[0][argv_idx]) /* "-t{tag}" */
1952 parmp->tagname = (char_u *)argv[0] + argv_idx;
1953 argv_idx = -1;
1955 else /* "-t {tag}" */
1956 want_argument = TRUE;
1957 break;
1959 #ifdef FEAT_EVAL
1960 case 'D': /* "-D" Debugging */
1961 parmp->use_debug_break_level = 9999;
1962 break;
1963 #endif
1964 #ifdef FEAT_DIFF
1965 case 'd': /* "-d" 'diff' */
1966 # ifdef AMIGA
1967 /* check for "-dev {device}" */
1968 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1969 want_argument = TRUE;
1970 else
1971 # endif
1972 parmp->diff_mode = TRUE;
1973 break;
1974 #endif
1975 case 'V': /* "-V{N}" Verbose level */
1976 /* default is 10: a little bit verbose */
1977 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1978 if (argv[0][argv_idx] != NUL)
1980 set_option_value((char_u *)"verbosefile", 0L,
1981 (char_u *)argv[0] + argv_idx, 0);
1982 argv_idx = (int)STRLEN(argv[0]);
1984 break;
1986 case 'v': /* "-v" Vi-mode (as if called "vi") */
1987 exmode_active = 0;
1988 #ifdef FEAT_GUI
1989 gui.starting = FALSE; /* don't start GUI */
1990 #endif
1991 break;
1993 case 'w': /* "-w{number}" set window height */
1994 /* "-w {scriptout}" write to script */
1995 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1997 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1998 set_option_value((char_u *)"window", n, NULL, 0);
1999 break;
2001 want_argument = TRUE;
2002 break;
2004 #ifdef FEAT_CRYPT
2005 case 'x': /* "-x" encrypted reading/writing of files */
2006 parmp->ask_for_key = TRUE;
2007 break;
2008 #endif
2010 case 'X': /* "-X" don't connect to X server */
2011 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2012 x_no_connect = TRUE;
2013 #endif
2014 break;
2016 case 'Z': /* "-Z" restricted mode */
2017 restricted = TRUE;
2018 break;
2020 case 'c': /* "-c{command}" or "-c {command}" execute
2021 command */
2022 if (argv[0][argv_idx] != NUL)
2024 if (parmp->n_commands >= MAX_ARG_CMDS)
2025 mainerr(ME_EXTRA_CMD, NULL);
2026 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2027 + argv_idx;
2028 argv_idx = -1;
2029 break;
2031 /*FALLTHROUGH*/
2032 case 'S': /* "-S {file}" execute Vim script */
2033 case 'i': /* "-i {viminfo}" use for viminfo */
2034 #ifndef FEAT_DIFF
2035 case 'd': /* "-d {device}" device (for Amiga) */
2036 #endif
2037 case 'T': /* "-T {terminal}" terminal name */
2038 case 'u': /* "-u {vimrc}" vim inits file */
2039 case 'U': /* "-U {gvimrc}" gvim inits file */
2040 case 'W': /* "-W {scriptout}" overwrite */
2041 #ifdef FEAT_GUI_W32
2042 case 'P': /* "-P {parent title}" MDI parent */
2043 #endif
2044 want_argument = TRUE;
2045 break;
2047 default:
2048 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2052 * Handle option arguments with argument.
2054 if (want_argument)
2057 * Check for garbage immediately after the option letter.
2059 if (argv[0][argv_idx] != NUL)
2060 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2062 --argc;
2063 if (argc < 1 && c != 'S')
2064 mainerr_arg_missing((char_u *)argv[0]);
2065 ++argv;
2066 argv_idx = -1;
2068 switch (c)
2070 case 'c': /* "-c {command}" execute command */
2071 case 'S': /* "-S {file}" execute Vim script */
2072 if (parmp->n_commands >= MAX_ARG_CMDS)
2073 mainerr(ME_EXTRA_CMD, NULL);
2074 if (c == 'S')
2076 char *a;
2078 if (argc < 1)
2079 /* "-S" without argument: use default session file
2080 * name. */
2081 a = SESSION_FILE;
2082 else if (argv[0][0] == '-')
2084 /* "-S" followed by another option: use default
2085 * session file name. */
2086 a = SESSION_FILE;
2087 ++argc;
2088 --argv;
2090 else
2091 a = argv[0];
2092 p = alloc((unsigned)(STRLEN(a) + 4));
2093 if (p == NULL)
2094 mch_exit(2);
2095 sprintf((char *)p, "so %s", a);
2096 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2097 parmp->commands[parmp->n_commands++] = p;
2099 else
2100 parmp->commands[parmp->n_commands++] =
2101 (char_u *)argv[0];
2102 break;
2104 case '-': /* "--cmd {command}" execute command */
2105 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2106 mainerr(ME_EXTRA_CMD, NULL);
2107 parmp->pre_commands[parmp->n_pre_commands++] =
2108 (char_u *)argv[0];
2109 break;
2111 /* case 'd': -d {device} is handled in mch_check_win() for the
2112 * Amiga */
2114 #ifdef FEAT_QUICKFIX
2115 case 'q': /* "-q {errorfile}" QuickFix mode */
2116 parmp->use_ef = (char_u *)argv[0];
2117 break;
2118 #endif
2120 case 'i': /* "-i {viminfo}" use for viminfo */
2121 use_viminfo = (char_u *)argv[0];
2122 break;
2124 case 's': /* "-s {scriptin}" read from script file */
2125 if (scriptin[0] != NULL)
2127 scripterror:
2128 mch_errmsg(_("Attempt to open script file again: \""));
2129 mch_errmsg(argv[-1]);
2130 mch_errmsg(" ");
2131 mch_errmsg(argv[0]);
2132 mch_errmsg("\"\n");
2133 mch_exit(2);
2135 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2137 mch_errmsg(_("Cannot open for reading: \""));
2138 mch_errmsg(argv[0]);
2139 mch_errmsg("\"\n");
2140 mch_exit(2);
2142 if (save_typebuf() == FAIL)
2143 mch_exit(2); /* out of memory */
2144 break;
2146 case 't': /* "-t {tag}" */
2147 parmp->tagname = (char_u *)argv[0];
2148 break;
2150 case 'T': /* "-T {terminal}" terminal name */
2152 * The -T term argument is always available and when
2153 * HAVE_TERMLIB is supported it overrides the environment
2154 * variable TERM.
2156 #ifdef FEAT_GUI
2157 if (term_is_gui((char_u *)argv[0]))
2158 gui.starting = TRUE; /* start GUI a bit later */
2159 else
2160 #endif
2161 parmp->term = (char_u *)argv[0];
2162 break;
2164 case 'u': /* "-u {vimrc}" vim inits file */
2165 parmp->use_vimrc = (char_u *)argv[0];
2166 break;
2168 case 'U': /* "-U {gvimrc}" gvim inits file */
2169 #ifdef FEAT_GUI
2170 use_gvimrc = (char_u *)argv[0];
2171 #endif
2172 break;
2174 case 'w': /* "-w {nr}" 'window' value */
2175 /* "-w {scriptout}" append to script file */
2176 if (vim_isdigit(*((char_u *)argv[0])))
2178 argv_idx = 0;
2179 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2180 set_option_value((char_u *)"window", n, NULL, 0);
2181 argv_idx = -1;
2182 break;
2184 /*FALLTHROUGH*/
2185 case 'W': /* "-W {scriptout}" overwrite script file */
2186 if (scriptout != NULL)
2187 goto scripterror;
2188 if ((scriptout = mch_fopen(argv[0],
2189 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2191 mch_errmsg(_("Cannot open for script output: \""));
2192 mch_errmsg(argv[0]);
2193 mch_errmsg("\"\n");
2194 mch_exit(2);
2196 break;
2198 #ifdef FEAT_GUI_W32
2199 case 'P': /* "-P {parent title}" MDI parent */
2200 gui_mch_set_parent(argv[0]);
2201 break;
2202 #endif
2208 * File name argument.
2210 else
2212 argv_idx = -1; /* skip to next argument */
2214 /* Check for only one type of editing. */
2215 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2216 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2217 parmp->edit_type = EDIT_FILE;
2219 #ifdef MSWIN
2220 /* Remember if the argument was a full path before changing
2221 * slashes to backslashes. */
2222 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2223 parmp->full_path = TRUE;
2224 #endif
2226 /* Add the file to the global argument list. */
2227 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2228 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2229 mch_exit(2);
2230 #ifdef FEAT_DIFF
2231 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2232 && !mch_isdir(alist_name(&GARGLIST[0])))
2234 char_u *r;
2236 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2237 if (r != NULL)
2239 vim_free(p);
2240 p = r;
2243 #endif
2244 #if defined(__CYGWIN32__) && !defined(WIN32)
2246 * If vim is invoked by non-Cygwin tools, convert away any
2247 * DOS paths, so things like .swp files are created correctly.
2248 * Look for evidence of non-Cygwin paths before we bother.
2249 * This is only for when using the Unix files.
2251 if (strpbrk(p, "\\:") != NULL)
2253 char posix_path[PATH_MAX];
2255 cygwin_conv_to_posix_path(p, posix_path);
2256 vim_free(p);
2257 p = vim_strsave(posix_path);
2258 if (p == NULL)
2259 mch_exit(2);
2261 #endif
2263 #ifdef USE_FNAME_CASE
2264 /* Make the case of the file name match the actual file. */
2265 fname_case(p, 0);
2266 #endif
2268 alist_add(&global_alist, p,
2269 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2270 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2271 #else
2272 2 /* add buffer number now and use curbuf */
2273 #endif
2276 #if defined(FEAT_MBYTE) && defined(WIN32)
2278 /* Remember this argument has been added to the argument list.
2279 * Needed when 'encoding' is changed. */
2280 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2281 parmp->diff_mode);
2283 #endif
2287 * If there are no more letters after the current "-", go to next
2288 * argument. argv_idx is set to -1 when the current argument is to be
2289 * skipped.
2291 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2293 --argc;
2294 ++argv;
2295 argv_idx = 1;
2299 #ifdef FEAT_EVAL
2300 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2301 * one. */
2302 if (parmp->n_commands > 0)
2304 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2305 if (p != NULL)
2307 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2308 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2309 vim_free(p);
2312 #endif
2316 * Print a warning if stdout is not a terminal.
2317 * When starting in Ex mode and commands come from a file, set Silent mode.
2319 static void
2320 check_tty(parmp)
2321 mparm_T *parmp;
2323 int input_isatty; /* is active input a terminal? */
2325 input_isatty = mch_input_isatty();
2326 if (exmode_active)
2328 if (!input_isatty)
2329 silent_mode = TRUE;
2331 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2332 #ifdef FEAT_GUI
2333 /* don't want the delay when started from the desktop */
2334 && !gui.starting
2335 #endif
2338 #ifdef NBDEBUG
2340 * This shouldn't be necessary. But if I run netbeans with the log
2341 * output coming to the console and XOpenDisplay fails, I get vim
2342 * trying to start with input/output to my console tty. This fills my
2343 * input buffer so fast I can't even kill the process in under 2
2344 * minutes (and it beeps continuously the whole time :-)
2346 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2348 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2349 exit(1);
2351 #endif
2352 if (!parmp->stdout_isatty)
2353 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2354 if (!input_isatty)
2355 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2356 out_flush();
2357 if (scriptin[0] == NULL)
2358 ui_delay(2000L, TRUE);
2359 TIME_MSG("Warning delay");
2364 * Read text from stdin.
2366 static void
2367 read_stdin()
2369 int i;
2371 #if defined(HAS_SWAP_EXISTS_ACTION)
2372 /* When getting the ATTENTION prompt here, use a dialog */
2373 swap_exists_action = SEA_DIALOG;
2374 #endif
2375 no_wait_return = TRUE;
2376 i = msg_didany;
2377 set_buflisted(TRUE);
2378 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2379 no_wait_return = FALSE;
2380 msg_didany = i;
2381 TIME_MSG("reading stdin");
2382 #if defined(HAS_SWAP_EXISTS_ACTION)
2383 check_swap_exists_action();
2384 #endif
2385 #if !(defined(AMIGA) || defined(MACOS))
2387 * Close stdin and dup it from stderr. Required for GPM to work
2388 * properly, and for running external commands.
2389 * Is there any other system that cannot do this?
2391 close(0);
2392 dup(2);
2393 #endif
2397 * Create the requested number of windows and edit buffers in them.
2398 * Also does recovery if "recoverymode" set.
2400 /*ARGSUSED*/
2401 static void
2402 create_windows(parmp)
2403 mparm_T *parmp;
2405 #ifdef FEAT_WINDOWS
2406 int dorewind;
2407 int done = 0;
2410 * Create the number of windows that was requested.
2412 if (parmp->window_count == -1) /* was not set */
2413 parmp->window_count = 1;
2414 if (parmp->window_count == 0)
2415 parmp->window_count = GARGCOUNT;
2416 if (parmp->window_count > 1)
2418 /* Don't change the windows if there was a command in .vimrc that
2419 * already split some windows */
2420 if (parmp->window_layout == 0)
2421 parmp->window_layout = WIN_HOR;
2422 if (parmp->window_layout == WIN_TABS)
2424 parmp->window_count = make_tabpages(parmp->window_count);
2425 TIME_MSG("making tab pages");
2427 else if (firstwin->w_next == NULL)
2429 parmp->window_count = make_windows(parmp->window_count,
2430 parmp->window_layout == WIN_VER);
2431 TIME_MSG("making windows");
2433 else
2434 parmp->window_count = win_count();
2436 else
2437 parmp->window_count = 1;
2438 #endif
2440 if (recoverymode) /* do recover */
2442 msg_scroll = TRUE; /* scroll message up */
2443 ml_recover();
2444 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2445 getout(1);
2446 do_modelines(0); /* do modelines */
2448 else
2451 * Open a buffer for windows that don't have one yet.
2452 * Commands in the .vimrc might have loaded a file or split the window.
2453 * Watch out for autocommands that delete a window.
2455 #ifdef FEAT_AUTOCMD
2457 * Don't execute Win/Buf Enter/Leave autocommands here
2459 ++autocmd_no_enter;
2460 ++autocmd_no_leave;
2461 #endif
2462 #ifdef FEAT_WINDOWS
2463 dorewind = TRUE;
2464 while (done++ < 1000)
2466 if (dorewind)
2468 if (parmp->window_layout == WIN_TABS)
2469 goto_tabpage(1);
2470 else
2471 curwin = firstwin;
2473 else if (parmp->window_layout == WIN_TABS)
2475 if (curtab->tp_next == NULL)
2476 break;
2477 goto_tabpage(0);
2479 else
2481 if (curwin->w_next == NULL)
2482 break;
2483 curwin = curwin->w_next;
2485 dorewind = FALSE;
2486 #endif
2487 curbuf = curwin->w_buffer;
2488 if (curbuf->b_ml.ml_mfp == NULL)
2490 #ifdef FEAT_FOLDING
2491 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2492 if (p_fdls >= 0)
2493 curwin->w_p_fdl = p_fdls;
2494 #endif
2495 #if defined(HAS_SWAP_EXISTS_ACTION)
2496 /* When getting the ATTENTION prompt here, use a dialog */
2497 swap_exists_action = SEA_DIALOG;
2498 #endif
2499 set_buflisted(TRUE);
2500 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2502 #if defined(HAS_SWAP_EXISTS_ACTION)
2503 if (swap_exists_action == SEA_QUIT)
2505 if (got_int || only_one_window())
2507 /* abort selected or quit and only one window */
2508 did_emsg = FALSE; /* avoid hit-enter prompt */
2509 getout(1);
2511 /* We can't close the window, it would disturb what
2512 * happens next. Clear the file name and set the arg
2513 * index to -1 to delete it later. */
2514 setfname(curbuf, NULL, NULL, FALSE);
2515 curwin->w_arg_idx = -1;
2516 swap_exists_action = SEA_NONE;
2518 else
2519 handle_swap_exists(NULL);
2520 #endif
2521 #ifdef FEAT_AUTOCMD
2522 dorewind = TRUE; /* start again */
2523 #endif
2525 #ifdef FEAT_WINDOWS
2526 ui_breakcheck();
2527 if (got_int)
2529 (void)vgetc(); /* only break the file loading, not the rest */
2530 break;
2533 #endif
2534 #ifdef FEAT_WINDOWS
2535 if (parmp->window_layout == WIN_TABS)
2536 goto_tabpage(1);
2537 else
2538 curwin = firstwin;
2539 curbuf = curwin->w_buffer;
2540 #endif
2541 #ifdef FEAT_AUTOCMD
2542 --autocmd_no_enter;
2543 --autocmd_no_leave;
2544 #endif
2548 #ifdef FEAT_WINDOWS
2550 * If opened more than one window, start editing files in the other
2551 * windows. make_windows() has already opened the windows.
2553 static void
2554 edit_buffers(parmp)
2555 mparm_T *parmp;
2557 int arg_idx; /* index in argument list */
2558 int i;
2559 int advance = TRUE;
2560 buf_T *old_curbuf;
2562 # ifdef FEAT_AUTOCMD
2564 * Don't execute Win/Buf Enter/Leave autocommands here
2566 ++autocmd_no_enter;
2567 ++autocmd_no_leave;
2568 # endif
2570 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2571 if (curwin->w_arg_idx == -1)
2573 win_close(curwin, TRUE);
2574 advance = FALSE;
2577 arg_idx = 1;
2578 for (i = 1; i < parmp->window_count; ++i)
2580 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2581 if (curwin->w_arg_idx == -1)
2583 ++arg_idx;
2584 win_close(curwin, TRUE);
2585 advance = FALSE;
2586 continue;
2589 if (advance)
2591 if (parmp->window_layout == WIN_TABS)
2593 if (curtab->tp_next == NULL) /* just checking */
2594 break;
2595 goto_tabpage(0);
2597 else
2599 if (curwin->w_next == NULL) /* just checking */
2600 break;
2601 win_enter(curwin->w_next, FALSE);
2604 advance = TRUE;
2606 /* Only open the file if there is no file in this window yet (that can
2607 * happen when .vimrc contains ":sall"). */
2608 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2610 curwin->w_arg_idx = arg_idx;
2611 /* Edit file from arg list, if there is one. When "Quit" selected
2612 * at the ATTENTION prompt close the window. */
2613 old_curbuf = curbuf;
2614 (void)do_ecmd(0, arg_idx < GARGCOUNT
2615 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2616 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
2617 if (curbuf == old_curbuf)
2619 if (got_int || only_one_window())
2621 /* abort selected or quit and only one window */
2622 did_emsg = FALSE; /* avoid hit-enter prompt */
2623 getout(1);
2625 win_close(curwin, TRUE);
2626 advance = FALSE;
2628 if (arg_idx == GARGCOUNT - 1)
2629 arg_had_last = TRUE;
2630 ++arg_idx;
2632 ui_breakcheck();
2633 if (got_int)
2635 (void)vgetc(); /* only break the file loading, not the rest */
2636 break;
2640 if (parmp->window_layout == WIN_TABS)
2641 goto_tabpage(1);
2642 # ifdef FEAT_AUTOCMD
2643 --autocmd_no_enter;
2644 # endif
2645 win_enter(firstwin, FALSE); /* back to first window */
2646 # ifdef FEAT_AUTOCMD
2647 --autocmd_no_leave;
2648 # endif
2649 TIME_MSG("editing files in windows");
2650 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2651 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2653 #endif /* FEAT_WINDOWS */
2656 * Execute the commands from --cmd arguments "cmds[cnt]".
2658 static void
2659 exe_pre_commands(parmp)
2660 mparm_T *parmp;
2662 char_u **cmds = parmp->pre_commands;
2663 int cnt = parmp->n_pre_commands;
2664 int i;
2666 if (cnt > 0)
2668 curwin->w_cursor.lnum = 0; /* just in case.. */
2669 sourcing_name = (char_u *)_("pre-vimrc command line");
2670 # ifdef FEAT_EVAL
2671 current_SID = SID_CMDARG;
2672 # endif
2673 for (i = 0; i < cnt; ++i)
2674 do_cmdline_cmd(cmds[i]);
2675 sourcing_name = NULL;
2676 # ifdef FEAT_EVAL
2677 current_SID = 0;
2678 # endif
2679 TIME_MSG("--cmd commands");
2684 * Execute "+", "-c" and "-S" arguments.
2686 static void
2687 exe_commands(parmp)
2688 mparm_T *parmp;
2690 int i;
2693 * We start commands on line 0, make "vim +/pat file" match a
2694 * pattern on line 1. But don't move the cursor when an autocommand
2695 * with g`" was used.
2697 msg_scroll = TRUE;
2698 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2699 curwin->w_cursor.lnum = 0;
2700 sourcing_name = (char_u *)"command line";
2701 #ifdef FEAT_EVAL
2702 current_SID = SID_CARG;
2703 #endif
2704 for (i = 0; i < parmp->n_commands; ++i)
2706 do_cmdline_cmd(parmp->commands[i]);
2707 if (parmp->cmds_tofree[i])
2708 vim_free(parmp->commands[i]);
2710 sourcing_name = NULL;
2711 #ifdef FEAT_EVAL
2712 current_SID = 0;
2713 #endif
2714 if (curwin->w_cursor.lnum == 0)
2715 curwin->w_cursor.lnum = 1;
2717 if (!exmode_active)
2718 msg_scroll = FALSE;
2720 #ifdef FEAT_QUICKFIX
2721 /* When started with "-q errorfile" jump to first error again. */
2722 if (parmp->edit_type == EDIT_QF)
2723 qf_jump(NULL, 0, 0, FALSE);
2724 #endif
2725 TIME_MSG("executing command arguments");
2729 * Source startup scripts.
2731 static void
2732 source_startup_scripts(parmp)
2733 mparm_T *parmp;
2735 int i;
2738 * For "evim" source evim.vim first of all, so that the user can overrule
2739 * any things he doesn't like.
2741 if (parmp->evim_mode)
2743 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2744 TIME_MSG("source evim file");
2748 * If -u argument given, use only the initializations from that file and
2749 * nothing else.
2751 if (parmp->use_vimrc != NULL)
2753 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2754 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2756 #ifdef FEAT_GUI
2757 if (use_gvimrc == NULL) /* don't load gvimrc either */
2758 use_gvimrc = parmp->use_vimrc;
2759 #endif
2760 if (parmp->use_vimrc[2] == 'N')
2761 p_lpl = FALSE; /* don't load plugins either */
2763 else
2765 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2766 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2769 else if (!silent_mode)
2771 #ifdef AMIGA
2772 struct Process *proc = (struct Process *)FindTask(0L);
2773 APTR save_winptr = proc->pr_WindowPtr;
2775 /* Avoid a requester here for a volume that doesn't exist. */
2776 proc->pr_WindowPtr = (APTR)-1L;
2777 #endif
2780 * Get system wide defaults, if the file name is defined.
2782 #ifdef SYS_VIMRC_FILE
2783 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2784 #endif
2785 #if defined(MACOS_X) && !defined(FEAT_GUI_MACVIM)
2786 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2787 #endif
2790 * Try to read initialization commands from the following places:
2791 * - environment variable VIMINIT
2792 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2793 * - second user vimrc file ($VIM/.vimrc for Dos)
2794 * - environment variable EXINIT
2795 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2796 * - second user exrc file ($VIM/.exrc for Dos)
2797 * The first that exists is used, the rest is ignored.
2799 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2801 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2802 #ifdef USR_VIMRC_FILE2
2803 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2804 DOSO_VIMRC) == FAIL
2805 #endif
2806 #ifdef USR_VIMRC_FILE3
2807 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2808 DOSO_VIMRC) == FAIL
2809 #endif
2810 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2811 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2813 #ifdef USR_EXRC_FILE2
2814 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2815 #endif
2820 * Read initialization commands from ".vimrc" or ".exrc" in current
2821 * directory. This is only done if the 'exrc' option is set.
2822 * Because of security reasons we disallow shell and write commands
2823 * now, except for unix if the file is owned by the user or 'secure'
2824 * option has been reset in environment of global ".exrc" or ".vimrc".
2825 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2826 * SYS_VIMRC_FILE.
2828 if (p_exrc)
2830 #if defined(UNIX) || defined(VMS)
2831 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2832 if (!file_owned(VIMRC_FILE))
2833 #endif
2834 secure = p_secure;
2836 i = FAIL;
2837 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2838 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2839 #ifdef USR_VIMRC_FILE2
2840 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2841 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2842 #endif
2843 #ifdef USR_VIMRC_FILE3
2844 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2845 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2846 #endif
2847 #ifdef SYS_VIMRC_FILE
2848 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2849 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2850 #endif
2852 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2854 if (i == FAIL)
2856 #if defined(UNIX) || defined(VMS)
2857 /* if ".exrc" is not owned by user set 'secure' mode */
2858 if (!file_owned(EXRC_FILE))
2859 secure = p_secure;
2860 else
2861 secure = 0;
2862 #endif
2863 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2864 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2865 #ifdef USR_EXRC_FILE2
2866 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2867 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2868 #endif
2870 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2873 if (secure == 2)
2874 need_wait_return = TRUE;
2875 secure = 0;
2876 #ifdef AMIGA
2877 proc->pr_WindowPtr = save_winptr;
2878 #endif
2880 TIME_MSG("sourcing vimrc file(s)");
2884 * Setup to start using the GUI. Exit with an error when not available.
2886 static void
2887 main_start_gui()
2889 #ifdef FEAT_GUI
2890 gui.starting = TRUE; /* start GUI a bit later */
2891 #else
2892 mch_errmsg(_(e_nogvim));
2893 mch_errmsg("\n");
2894 mch_exit(2);
2895 #endif
2899 * Get an environment variable, and execute it as Ex commands.
2900 * Returns FAIL if the environment variable was not executed, OK otherwise.
2903 process_env(env, is_viminit)
2904 char_u *env;
2905 int is_viminit; /* when TRUE, called for VIMINIT */
2907 char_u *initstr;
2908 char_u *save_sourcing_name;
2909 linenr_T save_sourcing_lnum;
2910 #ifdef FEAT_EVAL
2911 scid_T save_sid;
2912 #endif
2914 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2916 if (is_viminit)
2917 vimrc_found(NULL, NULL);
2918 save_sourcing_name = sourcing_name;
2919 save_sourcing_lnum = sourcing_lnum;
2920 sourcing_name = env;
2921 sourcing_lnum = 0;
2922 #ifdef FEAT_EVAL
2923 save_sid = current_SID;
2924 current_SID = SID_ENV;
2925 #endif
2926 do_cmdline_cmd(initstr);
2927 sourcing_name = save_sourcing_name;
2928 sourcing_lnum = save_sourcing_lnum;
2929 #ifdef FEAT_EVAL
2930 current_SID = save_sid;;
2931 #endif
2932 return OK;
2934 return FAIL;
2937 #if defined(UNIX) || defined(VMS)
2939 * Return TRUE if we are certain the user owns the file "fname".
2940 * Used for ".vimrc" and ".exrc".
2941 * Use both stat() and lstat() for extra security.
2943 static int
2944 file_owned(fname)
2945 char *fname;
2947 struct stat s;
2948 # ifdef UNIX
2949 uid_t uid = getuid();
2950 # else /* VMS */
2951 uid_t uid = ((getgid() << 16) | getuid());
2952 # endif
2954 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2955 # ifdef HAVE_LSTAT
2956 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2957 # endif
2960 #endif
2963 * Give an error message main_errors["n"] and exit.
2965 static void
2966 mainerr(n, str)
2967 int n; /* one of the ME_ defines */
2968 char_u *str; /* extra argument or NULL */
2970 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2971 reset_signals(); /* kill us with CTRL-C here, if you like */
2972 #endif
2974 mch_errmsg(longVersion);
2975 mch_errmsg("\n");
2976 mch_errmsg(_(main_errors[n]));
2977 if (str != NULL)
2979 mch_errmsg(": \"");
2980 mch_errmsg((char *)str);
2981 mch_errmsg("\"");
2983 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
2985 mch_exit(1);
2988 void
2989 mainerr_arg_missing(str)
2990 char_u *str;
2992 mainerr(ME_ARG_MISSING, str);
2996 * print a message with three spaces prepended and '\n' appended.
2998 static void
2999 main_msg(s)
3000 char *s;
3002 mch_msg(" ");
3003 mch_msg(s);
3004 mch_msg("\n");
3008 * Print messages for "vim -h" or "vim --help" and exit.
3010 static void
3011 usage()
3013 int i;
3014 static char *(use[]) =
3016 N_("[file ..] edit specified file(s)"),
3017 N_("- read text from stdin"),
3018 N_("-t tag edit file where tag is defined"),
3019 #ifdef FEAT_QUICKFIX
3020 N_("-q [errorfile] edit file with first error")
3021 #endif
3024 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3025 reset_signals(); /* kill us with CTRL-C here, if you like */
3026 #endif
3028 mch_msg(longVersion);
3029 mch_msg(_("\n\nusage:"));
3030 for (i = 0; ; ++i)
3032 mch_msg(_(" vim [arguments] "));
3033 mch_msg(_(use[i]));
3034 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3035 break;
3036 mch_msg(_("\n or:"));
3038 #ifdef VMS
3039 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3040 #endif
3042 mch_msg(_("\n\nArguments:\n"));
3043 main_msg(_("--\t\t\tOnly file names after this"));
3044 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3045 main_msg(_("--literal\t\tDon't expand wildcards"));
3046 #endif
3047 #ifdef FEAT_OLE
3048 main_msg(_("-register\t\tRegister this gvim for OLE"));
3049 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3050 #endif
3051 #ifdef FEAT_GUI
3052 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3053 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3054 #endif
3055 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3056 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3057 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3058 #ifdef FEAT_DIFF
3059 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3060 #endif
3061 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3062 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3063 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3064 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3065 main_msg(_("-M\t\t\tModifications in text not allowed"));
3066 main_msg(_("-b\t\t\tBinary mode"));
3067 #ifdef FEAT_LISP
3068 main_msg(_("-l\t\t\tLisp mode"));
3069 #endif
3070 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3071 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3072 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3073 #ifdef FEAT_EVAL
3074 main_msg(_("-D\t\t\tDebugging mode"));
3075 #endif
3076 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3077 main_msg(_("-r\t\t\tList swap files and exit"));
3078 main_msg(_("-r (with file name)\tRecover crashed session"));
3079 main_msg(_("-L\t\t\tSame as -r"));
3080 #ifdef AMIGA
3081 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3082 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3083 #endif
3084 #ifdef FEAT_ARABIC
3085 main_msg(_("-A\t\t\tstart in Arabic mode"));
3086 #endif
3087 #ifdef FEAT_RIGHTLEFT
3088 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3089 #endif
3090 #ifdef FEAT_FKMAP
3091 main_msg(_("-F\t\t\tStart in Farsi mode"));
3092 #endif
3093 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3094 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3095 #ifdef FEAT_GUI
3096 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3097 #endif
3098 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3099 #ifdef FEAT_WINDOWS
3100 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3101 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3102 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3103 #endif
3104 main_msg(_("+\t\t\tStart at end of file"));
3105 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3106 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3107 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3108 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3109 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3110 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3111 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3112 #ifdef FEAT_CRYPT
3113 main_msg(_("-x\t\t\tEdit encrypted files"));
3114 #endif
3115 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3116 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3117 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3118 # endif
3119 main_msg(_("-X\t\t\tDo not connect to X server"));
3120 #endif
3121 #ifdef FEAT_CLIENTSERVER
3122 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3123 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3124 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3125 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3126 # ifdef FEAT_WINDOWS
3127 main_msg(_("--remote-tab <files> As --remote but open tab page for each file"));
3128 # endif
3129 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3130 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3131 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3132 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3133 #endif
3134 #ifdef FEAT_VIMINFO
3135 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3136 #endif
3137 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3138 main_msg(_("--version\t\tPrint version information and exit"));
3140 #ifdef FEAT_GUI_X11
3141 # ifdef FEAT_GUI_MOTIF
3142 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3143 # else
3144 # ifdef FEAT_GUI_ATHENA
3145 # ifdef FEAT_GUI_NEXTAW
3146 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3147 # else
3148 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3149 # endif
3150 # endif
3151 # endif
3152 main_msg(_("-display <display>\tRun vim on <display>"));
3153 main_msg(_("-iconic\t\tStart vim iconified"));
3154 # if 0
3155 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3156 mch_msg(_("\t\t\t (Unimplemented)\n"));
3157 # endif
3158 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3159 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3160 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3161 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3162 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3163 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3164 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3165 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3166 # ifdef FEAT_GUI_ATHENA
3167 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3168 # endif
3169 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3170 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3171 main_msg(_("-xrm <resource>\tSet the specified resource"));
3172 #endif /* FEAT_GUI_X11 */
3173 #if defined(FEAT_GUI) && defined(RISCOS)
3174 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3175 main_msg(_("--columns <number>\tInitial width of window in columns"));
3176 main_msg(_("--rows <number>\tInitial height of window in rows"));
3177 #endif
3178 #ifdef FEAT_GUI_GTK
3179 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3180 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3181 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3182 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3183 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3184 # ifdef HAVE_GTK2
3185 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3186 # endif
3187 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3188 #endif
3189 #ifdef FEAT_GUI_W32
3190 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3191 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3192 #endif
3194 #ifdef FEAT_GUI_GNOME
3195 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3196 if (gui.starting)
3197 mch_msg("\n");
3198 else
3199 #endif
3200 mch_exit(0);
3203 #if defined(HAS_SWAP_EXISTS_ACTION)
3205 * Check the result of the ATTENTION dialog:
3206 * When "Quit" selected, exit Vim.
3207 * When "Recover" selected, recover the file.
3209 static void
3210 check_swap_exists_action()
3212 if (swap_exists_action == SEA_QUIT)
3213 getout(1);
3214 handle_swap_exists(NULL);
3216 #endif
3218 #if defined(STARTUPTIME) || defined(PROTO)
3219 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3221 static struct timeval prev_timeval;
3224 * Save the previous time before doing something that could nest.
3225 * set "*tv_rel" to the time elapsed so far.
3227 void
3228 time_push(tv_rel, tv_start)
3229 void *tv_rel, *tv_start;
3231 *((struct timeval *)tv_rel) = prev_timeval;
3232 gettimeofday(&prev_timeval, NULL);
3233 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3234 - ((struct timeval *)tv_rel)->tv_usec;
3235 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3236 - ((struct timeval *)tv_rel)->tv_sec;
3237 if (((struct timeval *)tv_rel)->tv_usec < 0)
3239 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3240 --((struct timeval *)tv_rel)->tv_sec;
3242 *(struct timeval *)tv_start = prev_timeval;
3246 * Compute the previous time after doing something that could nest.
3247 * Subtract "*tp" from prev_timeval;
3248 * Note: The arguments are (void *) to avoid trouble with systems that don't
3249 * have struct timeval.
3251 void
3252 time_pop(tp)
3253 void *tp; /* actually (struct timeval *) */
3255 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3256 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3257 if (prev_timeval.tv_usec < 0)
3259 prev_timeval.tv_usec += 1000000;
3260 --prev_timeval.tv_sec;
3264 static void
3265 time_diff(then, now)
3266 struct timeval *then;
3267 struct timeval *now;
3269 long usec;
3270 long msec;
3272 usec = now->tv_usec - then->tv_usec;
3273 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3274 usec = usec % 1000L;
3275 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3278 void
3279 time_msg(msg, tv_start)
3280 char *msg;
3281 void *tv_start; /* only for do_source: start time; actually
3282 (struct timeval *) */
3284 static struct timeval start;
3285 struct timeval now;
3287 if (time_fd != NULL)
3289 if (strstr(msg, "STARTING") != NULL)
3291 gettimeofday(&start, NULL);
3292 prev_timeval = start;
3293 fprintf(time_fd, "\n\ntimes in msec\n");
3294 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3295 fprintf(time_fd, " clock elapsed: other lines\n\n");
3297 gettimeofday(&now, NULL);
3298 time_diff(&start, &now);
3299 if (((struct timeval *)tv_start) != NULL)
3301 fprintf(time_fd, " ");
3302 time_diff(((struct timeval *)tv_start), &now);
3304 fprintf(time_fd, " ");
3305 time_diff(&prev_timeval, &now);
3306 prev_timeval = now;
3307 fprintf(time_fd, ": %s\n", msg);
3311 # ifdef WIN3264
3313 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3316 gettimeofday(struct timeval *tv, char *dummy)
3318 long t = clock();
3319 tv->tv_sec = t / CLOCKS_PER_SEC;
3320 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3321 return 0;
3323 # endif
3325 #endif
3327 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3330 * Common code for the X command server and the Win32 command server.
3333 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3336 * Do the client-server stuff, unless "--servername ''" was used.
3338 static void
3339 exec_on_server(parmp)
3340 mparm_T *parmp;
3342 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3344 # ifdef WIN32
3345 /* Initialise the client/server messaging infrastructure. */
3346 serverInitMessaging();
3347 # endif
3350 * When a command server argument was found, execute it. This may
3351 * exit Vim when it was successful. Otherwise it's executed further
3352 * on. Remember the encoding used here in "serverStrEnc".
3354 if (parmp->serverArg)
3356 cmdsrv_main(&parmp->argc, parmp->argv,
3357 parmp->serverName_arg, &parmp->serverStr);
3358 # ifdef FEAT_MBYTE
3359 parmp->serverStrEnc = vim_strsave(p_enc);
3360 # endif
3363 /* If we're still running, get the name to register ourselves.
3364 * On Win32 can register right now, for X11 need to setup the
3365 * clipboard first, it's further down. */
3366 parmp->servername = serverMakeName(parmp->serverName_arg,
3367 parmp->argv[0]);
3368 # ifdef WIN32
3369 if (parmp->servername != NULL)
3371 serverSetName(parmp->servername);
3372 vim_free(parmp->servername);
3374 # endif
3379 * Prepare for running as a Vim server.
3381 static void
3382 prepare_server(parmp)
3383 mparm_T *parmp;
3385 # if defined(FEAT_X11)
3387 * Register for remote command execution with :serversend and --remote
3388 * unless there was a -X or a --servername '' on the command line.
3389 * Only register nongui-vim's with an explicit --servername argument.
3390 * When running as root --servername is also required.
3392 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3393 # ifdef FEAT_GUI
3394 (gui.in_use
3395 # ifdef UNIX
3396 && getuid() != ROOT_UID
3397 # endif
3398 ) ||
3399 # endif
3400 parmp->serverName_arg != NULL))
3402 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3403 vim_free(parmp->servername);
3404 TIME_MSG("register server name");
3406 else
3407 serverDelayedStartName = parmp->servername;
3408 # elif defined(MAC_CLIENTSERVER)
3409 // NOTE: Can't set server name at same time as WIN32 because gui.in_use
3410 // isn't set then. Servers are only supported in GUI mode.
3411 if (parmp->servername != NULL && gui.in_use)
3413 serverRegisterName(parmp->servername);
3414 vim_free(parmp->servername);
3416 # endif
3419 * Execute command ourselves if we're here because the send failed (or
3420 * else we would have exited above).
3422 if (parmp->serverStr != NULL)
3424 char_u *p;
3426 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3427 parmp->serverStr, &p));
3428 vim_free(p);
3432 static void
3433 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3434 int *argc;
3435 char **argv;
3436 char_u *serverName_arg;
3437 char_u **serverStr;
3439 char_u *res;
3440 int i;
3441 char_u *sname;
3442 int ret;
3443 int didone = FALSE;
3444 int exiterr = 0;
3445 char **newArgV = argv + 1;
3446 int newArgC = 1,
3447 Argc = *argc;
3448 int argtype;
3449 #define ARGTYPE_OTHER 0
3450 #define ARGTYPE_EDIT 1
3451 #define ARGTYPE_EDIT_WAIT 2
3452 #define ARGTYPE_SEND 3
3453 int silent = FALSE;
3454 int tabs = FALSE;
3455 # ifdef WIN32
3456 HWND srv;
3457 # elif defined(MAC_CLIENTSERVER)
3458 int srv;
3459 # elif defined(FEAT_X11)
3460 Window srv;
3462 setup_term_clip();
3463 # endif
3465 sname = serverMakeName(serverName_arg, argv[0]);
3466 if (sname == NULL)
3467 return;
3470 * Execute the command server related arguments and remove them
3471 * from the argc/argv array; We may have to return into main()
3473 for (i = 1; i < Argc; i++)
3475 res = NULL;
3476 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3478 for (; i < *argc; i++)
3480 *newArgV++ = argv[i];
3481 newArgC++;
3483 break;
3486 if (STRICMP(argv[i], "--remote-send") == 0)
3487 argtype = ARGTYPE_SEND;
3488 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3490 char *p = argv[i] + 8;
3492 argtype = ARGTYPE_EDIT;
3493 while (*p != NUL)
3495 if (STRNICMP(p, "-wait", 5) == 0)
3497 argtype = ARGTYPE_EDIT_WAIT;
3498 p += 5;
3500 else if (STRNICMP(p, "-silent", 7) == 0)
3502 silent = TRUE;
3503 p += 7;
3505 else if (STRNICMP(p, "-tab", 4) == 0)
3507 tabs = TRUE;
3508 p += 4;
3510 else
3512 argtype = ARGTYPE_OTHER;
3513 break;
3517 else
3518 argtype = ARGTYPE_OTHER;
3520 if (argtype != ARGTYPE_OTHER)
3522 if (i == *argc - 1)
3523 mainerr_arg_missing((char_u *)argv[i]);
3524 if (argtype == ARGTYPE_SEND)
3526 *serverStr = (char_u *)argv[i + 1];
3527 i++;
3529 else
3531 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3532 tabs, argtype == ARGTYPE_EDIT_WAIT);
3533 if (*serverStr == NULL)
3535 /* Probably out of memory, exit. */
3536 didone = TRUE;
3537 exiterr = 1;
3538 break;
3540 Argc = i;
3542 # ifdef FEAT_X11
3543 if (xterm_dpy == NULL)
3545 mch_errmsg(_("No display"));
3546 ret = -1;
3548 else
3549 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3550 NULL, &srv, 0, 0, silent);
3551 # elif defined(WIN32) || defined(MAC_CLIENTSERVER)
3552 /* Win32 always works? */
3553 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3554 # endif
3555 if (ret < 0)
3557 if (argtype == ARGTYPE_SEND)
3559 /* Failed to send, abort. */
3560 mch_errmsg(_(": Send failed.\n"));
3561 didone = TRUE;
3562 exiterr = 1;
3564 else if (!silent)
3565 /* Let vim start normally. */
3566 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3567 break;
3570 # ifdef FEAT_GUI_W32
3571 /* Guess that when the server name starts with "g" it's a GUI
3572 * server, which we can bring to the foreground here.
3573 * Foreground() in the server doesn't work very well. */
3574 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3575 SetForegroundWindow(srv);
3576 # endif
3579 * For --remote-wait: Wait until the server did edit each
3580 * file. Also detect that the server no longer runs.
3582 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3584 int numFiles = *argc - i - 1;
3585 int j;
3586 char_u *done = alloc(numFiles);
3587 char_u *p;
3588 # ifdef FEAT_GUI_W32
3589 NOTIFYICONDATA ni;
3590 int count = 0;
3591 extern HWND message_window;
3592 # endif
3594 if (numFiles > 0 && argv[i + 1][0] == '+')
3595 /* Skip "+cmd" argument, don't wait for it to be edited. */
3596 --numFiles;
3598 # ifdef FEAT_GUI_W32
3599 ni.cbSize = sizeof(ni);
3600 ni.hWnd = message_window;
3601 ni.uID = 0;
3602 ni.uFlags = NIF_ICON|NIF_TIP;
3603 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3604 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3605 Shell_NotifyIcon(NIM_ADD, &ni);
3606 # endif
3608 /* Wait for all files to unload in remote */
3609 memset(done, 0, numFiles);
3610 while (memchr(done, 0, numFiles) != NULL)
3612 # ifdef WIN32
3613 p = serverGetReply(srv, NULL, TRUE, TRUE);
3614 if (p == NULL)
3615 break;
3616 # elif defined(FEAT_X11)
3617 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3618 break;
3619 # elif defined(MAC_CLIENTSERVER)
3620 if (serverReadReply(srv, &p) < 0)
3621 break;
3622 # endif
3623 j = atoi((char *)p);
3624 if (j >= 0 && j < numFiles)
3626 # ifdef FEAT_GUI_W32
3627 ++count;
3628 sprintf(ni.szTip, _("%d of %d edited"),
3629 count, numFiles);
3630 Shell_NotifyIcon(NIM_MODIFY, &ni);
3631 # endif
3632 done[j] = 1;
3635 # ifdef FEAT_GUI_W32
3636 Shell_NotifyIcon(NIM_DELETE, &ni);
3637 # endif
3640 else if (STRICMP(argv[i], "--remote-expr") == 0)
3642 if (i == *argc - 1)
3643 mainerr_arg_missing((char_u *)argv[i]);
3644 # ifdef WIN32
3645 /* Win32 always works? */
3646 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3647 &res, NULL, 1, FALSE) < 0)
3648 # elif defined(FEAT_X11)
3649 if (xterm_dpy == NULL)
3650 mch_errmsg(_("No display: Send expression failed.\n"));
3651 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3652 &res, NULL, 1, 1, FALSE) < 0)
3653 # elif defined(MAC_CLIENTSERVER)
3654 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3655 &res, NULL, 1, FALSE) < 0)
3656 # endif
3658 if (res != NULL && *res != NUL)
3660 /* Output error from remote */
3661 mch_errmsg((char *)res);
3662 vim_free(res);
3663 res = NULL;
3665 mch_errmsg(_(": Send expression failed.\n"));
3668 else if (STRICMP(argv[i], "--serverlist") == 0)
3670 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
3671 /* Win32 always works? */
3672 res = serverGetVimNames();
3673 # elif defined(FEAT_X11)
3674 if (xterm_dpy != NULL)
3675 res = serverGetVimNames(xterm_dpy);
3676 # endif
3677 if (called_emsg)
3678 mch_errmsg("\n");
3680 else if (STRICMP(argv[i], "--servername") == 0)
3682 /* Alredy processed. Take it out of the command line */
3683 i++;
3684 continue;
3686 else
3688 *newArgV++ = argv[i];
3689 newArgC++;
3690 continue;
3692 didone = TRUE;
3693 if (res != NULL && *res != NUL)
3695 mch_msg((char *)res);
3696 if (res[STRLEN(res) - 1] != '\n')
3697 mch_msg("\n");
3699 vim_free(res);
3702 if (didone)
3704 display_errors(); /* display any collected messages */
3705 exit(exiterr); /* Mission accomplished - get out */
3708 /* Return back into main() */
3709 *argc = newArgC;
3710 vim_free(sname);
3714 * Build a ":drop" command to send to a Vim server.
3716 static char_u *
3717 build_drop_cmd(filec, filev, tabs, sendReply)
3718 int filec;
3719 char **filev;
3720 int tabs; /* Use ":tab drop" instead of ":drop". */
3721 int sendReply;
3723 garray_T ga;
3724 int i;
3725 char_u *inicmd = NULL;
3726 char_u *p;
3727 char_u cwd[MAXPATHL];
3729 if (filec > 0 && filev[0][0] == '+')
3731 inicmd = (char_u *)filev[0] + 1;
3732 filev++;
3733 filec--;
3735 /* Check if we have at least one argument. */
3736 if (filec <= 0)
3737 mainerr_arg_missing((char_u *)filev[-1]);
3738 if (mch_dirname(cwd, MAXPATHL) != OK)
3739 return NULL;
3740 if ((p = vim_strsave_escaped_ext(cwd,
3741 #ifdef BACKSLASH_IN_FILENAME
3742 "", /* rem_backslash() will tell what chars to escape */
3743 #else
3744 PATH_ESC_CHARS,
3745 #endif
3746 '\\', TRUE)) == NULL)
3747 return NULL;
3748 ga_init2(&ga, 1, 100);
3749 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3750 ga_concat(&ga, p);
3751 vim_free(p);
3753 /* Call inputsave() so that a prompt for an encryption key works. */
3754 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3755 if (tabs)
3756 ga_concat(&ga, (char_u *)"tab ");
3757 ga_concat(&ga, (char_u *)"drop");
3758 for (i = 0; i < filec; i++)
3760 /* On Unix the shell has already expanded the wildcards, don't want to
3761 * do it again in the Vim server. On MS-Windows only escape
3762 * non-wildcard characters. */
3763 p = vim_strsave_escaped((char_u *)filev[i],
3764 #ifdef UNIX
3765 PATH_ESC_CHARS
3766 #else
3767 (char_u *)" \t%#"
3768 #endif
3770 if (p == NULL)
3772 vim_free(ga.ga_data);
3773 return NULL;
3775 ga_concat(&ga, (char_u *)" ");
3776 ga_concat(&ga, p);
3777 vim_free(p);
3779 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3780 * CTRL-\ CTRL-N again. */
3781 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3782 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3783 if (sendReply)
3784 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3785 ga_concat(&ga, (char_u *)"<CR>:");
3786 if (inicmd != NULL)
3788 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3789 * the following commands to be inserted as text. Use a "|",
3790 * hopefully "inicmd" does allow this... */
3791 ga_concat(&ga, inicmd);
3792 ga_concat(&ga, (char_u *)"|");
3794 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3795 * clear command line. */
3796 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3797 ga_append(&ga, NUL);
3798 return ga.ga_data;
3802 * Replace termcodes such as <CR> and insert as key presses if there is room.
3804 void
3805 server_to_input_buf(str)
3806 char_u *str;
3808 char_u *ptr = NULL;
3809 char_u *cpo_save = p_cpo;
3811 /* Set 'cpoptions' the way we want it.
3812 * B set - backslashes are *not* treated specially
3813 * k set - keycodes are *not* reverse-engineered
3814 * < unset - <Key> sequences *are* interpreted
3815 * The last but one parameter of replace_termcodes() is TRUE so that the
3816 * <lt> sequence is recognised - needed for a real backslash.
3818 p_cpo = (char_u *)"Bk";
3819 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3820 p_cpo = cpo_save;
3822 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3825 * Add the string to the input stream.
3826 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3828 * First clear typed characters from the typeahead buffer, there could
3829 * be half a mapping there. Then append to the existing string, so
3830 * that multiple commands from a client are concatenated.
3832 if (typebuf.tb_maplen < typebuf.tb_len)
3833 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3834 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3836 /* Let input_available() know we inserted text in the typeahead
3837 * buffer. */
3838 typebuf_was_filled = TRUE;
3840 vim_free((char_u *)ptr);
3844 * Evaluate an expression that the client sent to a string.
3845 * Handles disabling error messages and disables debugging, otherwise Vim
3846 * hangs, waiting for "cont" to be typed.
3848 char_u *
3849 eval_client_expr_to_string(expr)
3850 char_u *expr;
3852 char_u *res;
3853 int save_dbl = debug_break_level;
3854 int save_ro = redir_off;
3856 debug_break_level = -1;
3857 redir_off = 0;
3858 ++emsg_skip;
3860 res = eval_to_string(expr, NULL, TRUE);
3862 debug_break_level = save_dbl;
3863 redir_off = save_ro;
3864 --emsg_skip;
3866 /* A client can tell us to redraw, but not to display the cursor, so do
3867 * that here. */
3868 setcursor();
3869 out_flush();
3870 #ifdef FEAT_GUI
3871 if (gui.in_use)
3872 gui_update_cursor(FALSE, FALSE);
3873 #endif
3875 return res;
3879 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3880 * return an allocated string. Otherwise return "data".
3881 * "*tofree" is set to the result when it needs to be freed later.
3883 /*ARGSUSED*/
3884 char_u *
3885 serverConvert(client_enc, data, tofree)
3886 char_u *client_enc;
3887 char_u *data;
3888 char_u **tofree;
3890 char_u *res = data;
3892 *tofree = NULL;
3893 # ifdef FEAT_MBYTE
3894 if (client_enc != NULL && p_enc != NULL)
3896 vimconv_T vimconv;
3898 vimconv.vc_type = CONV_NONE;
3899 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3900 && vimconv.vc_type != CONV_NONE)
3902 res = string_convert(&vimconv, data, NULL);
3903 if (res == NULL)
3904 res = data;
3905 else
3906 *tofree = res;
3908 convert_setup(&vimconv, NULL, NULL);
3910 # endif
3911 return res;
3916 * Make our basic server name: use the specified "arg" if given, otherwise use
3917 * the tail of the command "cmd" we were started with.
3918 * Return the name in allocated memory. This doesn't include a serial number.
3920 static char_u *
3921 serverMakeName(arg, cmd)
3922 char_u *arg;
3923 char *cmd;
3925 char_u *p;
3927 if (arg != NULL && *arg != NUL)
3928 p = vim_strsave_up(arg);
3929 else
3931 p = vim_strsave_up(gettail((char_u *)cmd));
3932 /* Remove .exe or .bat from the name. */
3933 if (p != NULL && vim_strchr(p, '.') != NULL)
3934 *vim_strchr(p, '.') = NUL;
3936 return p;
3938 #endif /* FEAT_CLIENTSERVER */
3941 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3943 #if defined(FEAT_FKMAP) || defined(PROTO)
3944 # include "farsi.c"
3945 #endif
3948 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3950 #if defined(FEAT_ARABIC) || defined(PROTO)
3951 # include "arabic.c"
3952 #endif