Merged from the latest developing branch.
[MacVim.git] / src / main.c
blob84aa146e76d2510f51c21faf43a2261120cc214c
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
10 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
11 # include "vimio.h" /* for close() and dup() */
12 #endif
14 #define EXTERN
15 #include "vim.h"
17 #ifdef SPAWNO
18 # include <spawno.h> /* special MS-DOS swapping library */
19 #endif
21 #ifdef __CYGWIN__
22 # ifndef WIN32
23 # include <cygwin/version.h>
24 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
25 * cygwin_conv_path() */
26 # endif
27 # include <limits.h>
28 #endif
30 /* Maximum number of commands from + or -c arguments. */
31 #define MAX_ARG_CMDS 10
33 /* values for "window_layout" */
34 #define WIN_HOR 1 /* "-o" horizontally split windows */
35 #define WIN_VER 2 /* "-O" vertically split windows */
36 #define WIN_TABS 3 /* "-p" windows on tab pages */
38 /* Struct for various parameters passed between main() and other functions. */
39 typedef struct
41 int argc;
42 char **argv;
44 int evim_mode; /* started as "evim" */
45 char_u *use_vimrc; /* vimrc from -u argument */
47 int n_commands; /* no. of commands from + or -c */
48 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
49 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
50 int n_pre_commands; /* no. of commands from --cmd */
51 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
53 int edit_type; /* type of editing to do */
54 char_u *tagname; /* tag from -t argument */
55 #ifdef FEAT_QUICKFIX
56 char_u *use_ef; /* 'errorfile' from -q argument */
57 #endif
59 int want_full_screen;
60 int stdout_isatty; /* is stdout a terminal? */
61 char_u *term; /* specified terminal name */
62 #ifdef FEAT_CRYPT
63 int ask_for_key; /* -x argument */
64 #endif
65 int no_swap_file; /* "-n" argument used */
66 #ifdef FEAT_EVAL
67 int use_debug_break_level;
68 #endif
69 #ifdef FEAT_WINDOWS
70 int window_count; /* number of windows to use */
71 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
72 #endif
74 #ifdef FEAT_CLIENTSERVER
75 int serverArg; /* TRUE when argument for a server */
76 char_u *serverName_arg; /* cmdline arg for server name */
77 char_u *serverStr; /* remote server command */
78 char_u *serverStrEnc; /* encoding of serverStr */
79 char_u *servername; /* allocated name for our server */
80 #endif
81 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
82 int literal; /* don't expand file names */
83 #endif
84 #ifdef MSWIN
85 int full_path; /* file name argument was full path */
86 #endif
87 #ifdef FEAT_DIFF
88 int diff_mode; /* start with 'diff' set */
89 #endif
90 } mparm_T;
92 /* Values for edit_type. */
93 #define EDIT_NONE 0 /* no edit type yet */
94 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */
95 #define EDIT_STDIN 2 /* read file from stdin */
96 #define EDIT_TAG 3 /* tag name argument given, use tagname */
97 #define EDIT_QF 4 /* start in quickfix mode */
99 #if defined(UNIX) || defined(VMS)
100 static int file_owned __ARGS((char *fname));
101 #endif
102 static void mainerr __ARGS((int, char_u *));
103 static void main_msg __ARGS((char *s));
104 static void usage __ARGS((void));
105 static int get_number_arg __ARGS((char_u *p, int *idx, int def));
106 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
107 static void init_locale __ARGS((void));
108 #endif
109 static void parse_command_name __ARGS((mparm_T *parmp));
110 static void early_arg_scan __ARGS((mparm_T *parmp));
111 static void command_line_scan __ARGS((mparm_T *parmp));
112 static void check_tty __ARGS((mparm_T *parmp));
113 static void read_stdin __ARGS((void));
114 static void create_windows __ARGS((mparm_T *parmp));
115 #ifdef FEAT_WINDOWS
116 static void edit_buffers __ARGS((mparm_T *parmp));
117 #endif
118 static void exe_pre_commands __ARGS((mparm_T *parmp));
119 static void exe_commands __ARGS((mparm_T *parmp));
120 static void source_startup_scripts __ARGS((mparm_T *parmp));
121 static void main_start_gui __ARGS((void));
122 #if defined(HAS_SWAP_EXISTS_ACTION)
123 static void check_swap_exists_action __ARGS((void));
124 #endif
125 #ifdef FEAT_CLIENTSERVER
126 static void exec_on_server __ARGS((mparm_T *parmp));
127 static void prepare_server __ARGS((mparm_T *parmp));
128 static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
129 static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
130 #endif
133 #ifdef STARTUPTIME
134 static FILE *time_fd = NULL;
135 #endif
138 * Different types of error messages.
140 static char *(main_errors[]) =
142 N_("Unknown option argument"),
143 #define ME_UNKNOWN_OPTION 0
144 N_("Too many edit arguments"),
145 #define ME_TOO_MANY_ARGS 1
146 N_("Argument missing after"),
147 #define ME_ARG_MISSING 2
148 N_("Garbage after option argument"),
149 #define ME_GARBAGE 3
150 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
151 #define ME_EXTRA_CMD 4
152 N_("Invalid argument for"),
153 #define ME_INVALID_ARG 5
156 #ifndef PROTO /* don't want a prototype for main() */
158 # ifdef VIMDLL
159 _export
160 # endif
161 # ifdef FEAT_GUI_MSWIN
162 # ifdef __BORLANDC__
163 _cdecl
164 # endif
165 VimMain
166 # else
167 main
168 # endif
169 (argc, argv)
170 int argc;
171 char **argv;
173 char_u *fname = NULL; /* file name from command line */
174 mparm_T params; /* various parameters passed between
175 * main() and other functions. */
178 * Do any system-specific initialisations. These can NOT use IObuff or
179 * NameBuff. Thus emsg2() cannot be called!
181 mch_early_init();
183 /* Many variables are in "params" so that we can pass them to invoked
184 * functions without a lot of arguments. "argc" and "argv" are also
185 * copied, so that they can be changed. */
186 vim_memset(&params, 0, sizeof(params));
187 params.argc = argc;
188 params.argv = argv;
189 params.want_full_screen = TRUE;
190 #ifdef FEAT_EVAL
191 params.use_debug_break_level = -1;
192 #endif
193 #ifdef FEAT_WINDOWS
194 params.window_count = -1;
195 #endif
197 #ifdef FEAT_TCL
198 vim_tcl_init(params.argv[0]);
199 #endif
201 #ifdef MEM_PROFILE
202 atexit(vim_mem_profile_dump);
203 #endif
205 #ifdef STARTUPTIME
206 time_fd = mch_fopen(STARTUPTIME, "a");
207 TIME_MSG("--- VIM STARTING ---");
208 #endif
209 starttime = time(NULL);
211 #ifdef __EMX__
212 _wildcard(&params.argc, &params.argv);
213 #endif
215 #ifdef FEAT_MBYTE
216 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
217 #endif
218 #ifdef FEAT_EVAL
219 eval_init(); /* init global variables */
220 #endif
222 #ifdef __QNXNTO__
223 qnx_init(); /* PhAttach() for clipboard, (and gui) */
224 #endif
226 #ifdef MAC_OS_CLASSIC
227 /* Prepare for possibly starting GUI sometime */
228 /* Macintosh needs this before any memory is allocated. */
229 gui_prepare(&params.argc, params.argv);
230 TIME_MSG("GUI prepared");
231 #endif
233 /* Init the table of Normal mode commands. */
234 init_normal_cmds();
236 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
237 make_version(); /* Construct the long version string. */
238 #endif
241 * Allocate space for the generic buffers (needed for set_init_1() and
242 * EMSG2()).
244 if ((IObuff = alloc(IOSIZE)) == NULL
245 || (NameBuff = alloc(MAXPATHL)) == NULL)
246 mch_exit(0);
247 TIME_MSG("Allocated generic buffers");
249 #ifdef NBDEBUG
250 /* Wait a moment for debugging NetBeans. Must be after allocating
251 * NameBuff. */
252 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
253 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
254 TIME_MSG("NetBeans debug wait");
255 #endif
257 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
259 * Setup to use the current locale (for ctype() and many other things).
260 * NOTE: Translated messages with encodings other than latin1 will not
261 * work until set_init_1() has been called!
263 init_locale();
264 TIME_MSG("locale set");
265 #endif
267 #ifdef FEAT_GUI
268 gui.dofork = TRUE; /* default is to use fork() */
269 #endif
272 * Do a first scan of the arguments in "argv[]":
273 * -display or --display
274 * --server...
275 * --socketid
276 * --windowid
278 early_arg_scan(&params);
280 #ifdef FEAT_SUN_WORKSHOP
281 findYourself(params.argv[0]);
282 #endif
283 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
284 /* Prepare for possibly starting GUI sometime */
285 gui_prepare(&params.argc, params.argv);
286 TIME_MSG("GUI prepared");
287 #endif
289 #ifdef FEAT_CLIPBOARD
290 clip_init(FALSE); /* Initialise clipboard stuff */
291 TIME_MSG("clipboard setup");
292 #endif
295 * Check if we have an interactive window.
296 * On the Amiga: If there is no window, we open one with a newcli command
297 * (needed for :! to * work). mch_check_win() will also handle the -d or
298 * -dev argument.
300 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
301 TIME_MSG("window checked");
304 * Allocate the first window and buffer.
305 * Can't do anything without it, exit when it fails.
307 if (win_alloc_first() == FAIL)
308 mch_exit(0);
310 init_yank(); /* init yank buffers */
312 alist_init(&global_alist); /* Init the argument list to empty. */
315 * Set the default values for the options.
316 * NOTE: Non-latin1 translated messages are working only after this,
317 * because this is where "has_mbyte" will be set, which is used by
318 * msg_outtrans_len_attr().
319 * First find out the home directory, needed to expand "~" in options.
321 init_homedir(); /* find real value of $HOME */
322 set_init_1();
323 TIME_MSG("inits 1");
325 #ifdef FEAT_EVAL
326 set_lang_var(); /* set v:lang and v:ctype */
327 #endif
329 #ifdef FEAT_CLIENTSERVER
331 * Do the client-server stuff, unless "--servername ''" was used.
332 * This may exit Vim if the command was sent to the server.
334 exec_on_server(&params);
335 #endif
338 * Figure out the way to work from the command name argv[0].
339 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
341 parse_command_name(&params);
344 * Process the command line arguments. File names are put in the global
345 * argument list "global_alist".
347 command_line_scan(&params);
348 TIME_MSG("parsing arguments");
351 * On some systems, when we compile with the GUI, we always use it. On Mac
352 * there is no terminal version, and on Windows we can't fork one off with
353 * :gui.
355 #ifdef ALWAYS_USE_GUI
356 gui.starting = TRUE;
357 #else
358 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
360 * Check if the GUI can be started. Reset gui.starting if not.
361 * Don't know about other systems, stay on the safe side and don't check.
363 if (gui.starting && gui_init_check() == FAIL)
365 gui.starting = FALSE;
367 /* When running "evim" or "gvim -y" we need the menus, exit if we
368 * don't have them. */
369 if (params.evim_mode)
370 mch_exit(1);
372 # endif
373 #endif
375 if (GARGCOUNT > 0)
377 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
379 * Expand wildcards in file names.
381 if (!params.literal)
383 /* Temporarily add '(' and ')' to 'isfname'. These are valid
384 * filename characters but are excluded from 'isfname' to make
385 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
386 do_cmdline_cmd((char_u *)":set isf+=(,)");
387 alist_expand(NULL, 0);
388 do_cmdline_cmd((char_u *)":set isf&");
390 #endif
391 fname = alist_name(&GARGLIST[0]);
394 #if defined(WIN32) && defined(FEAT_MBYTE)
396 extern void set_alist_count(void);
398 /* Remember the number of entries in the argument list. If it changes
399 * we don't react on setting 'encoding'. */
400 set_alist_count();
402 #endif
404 #ifdef MSWIN
405 if (GARGCOUNT == 1 && params.full_path)
408 * If there is one filename, fully qualified, we have very probably
409 * been invoked from explorer, so change to the file's directory.
410 * Hint: to avoid this when typing a command use a forward slash.
411 * If the cd fails, it doesn't matter.
413 (void)vim_chdirfile(fname);
415 #endif
416 TIME_MSG("expanding arguments");
418 #ifdef FEAT_DIFF
419 if (params.diff_mode && params.window_count == -1)
420 params.window_count = 0; /* open up to 3 windows */
421 #endif
423 /* Don't redraw until much later. */
424 ++RedrawingDisabled;
427 * When listing swap file names, don't do cursor positioning et. al.
429 if (recoverymode && fname == NULL)
430 params.want_full_screen = FALSE;
433 * When certain to start the GUI, don't check capabilities of terminal.
434 * For GTK we can't be sure, but when started from the desktop it doesn't
435 * make sense to try using a terminal.
437 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
438 if (gui.starting
439 # ifdef FEAT_GUI_GTK
440 && !isatty(2)
441 # endif
443 params.want_full_screen = FALSE;
444 #endif
446 #if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
447 /* When the GUI is started from Finder, need to display messages in a
448 * message box. isatty(2) returns TRUE anyway, thus we need to check the
449 * name to know we're not started from a terminal. */
450 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
452 params.want_full_screen = FALSE;
454 /* Avoid always using "/" as the current directory. Note that when
455 * started from Finder the arglist will be filled later in
456 * HandleODocAE() and "fname" will be NULL. */
457 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
458 && STRCMP(NameBuff, "/") == 0)
460 if (fname != NULL)
461 (void)vim_chdirfile(fname);
462 else
464 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
465 vim_chdir(NameBuff);
469 #endif
472 * mch_init() sets up the terminal (window) for use. This must be
473 * done after resetting full_screen, otherwise it may move the cursor
474 * (MSDOS).
475 * Note that we may use mch_exit() before mch_init()!
477 mch_init();
478 TIME_MSG("shell init");
480 #ifdef USE_XSMP
482 * For want of anywhere else to do it, try to connect to xsmp here.
483 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
484 * Hijacking -X 'no X connection' to also disable XSMP connection as that
485 * has a similar delay upon failure.
486 * Only try if SESSION_MANAGER is set to something non-null.
488 if (!x_no_connect)
490 char *p = getenv("SESSION_MANAGER");
492 if (p != NULL && *p != NUL)
494 xsmp_init();
495 TIME_MSG("xsmp init");
498 #endif
501 * Print a warning if stdout is not a terminal.
503 check_tty(&params);
505 /* This message comes before term inits, but after setting "silent_mode"
506 * when the input is not a tty. */
507 if (GARGCOUNT > 1 && !silent_mode)
508 printf(_("%d files to edit\n"), GARGCOUNT);
510 if (params.want_full_screen && !silent_mode)
512 termcapinit(params.term); /* set terminal name and get terminal
513 capabilities (will set full_screen) */
514 screen_start(); /* don't know where cursor is now */
515 TIME_MSG("Termcap init");
519 * Set the default values for the options that use Rows and Columns.
521 ui_get_shellsize(); /* inits Rows and Columns */
522 #ifdef FEAT_NETBEANS_INTG
523 if (usingNetbeans)
524 Columns += 2; /* leave room for glyph gutter */
525 #endif
526 win_init_size();
527 #ifdef FEAT_DIFF
528 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
529 * file. There is no buffer yet though. */
530 if (params.diff_mode)
531 diff_win_options(firstwin, FALSE);
532 #endif
534 cmdline_row = Rows - p_ch;
535 msg_row = cmdline_row;
536 screenalloc(FALSE); /* allocate screen buffers */
537 set_init_2();
538 TIME_MSG("inits 2");
540 msg_scroll = TRUE;
541 no_wait_return = TRUE;
543 init_mappings(); /* set up initial mappings */
545 init_highlight(TRUE, FALSE); /* set the default highlight groups */
546 TIME_MSG("init highlight");
548 #ifdef FEAT_EVAL
549 /* Set the break level after the terminal is initialized. */
550 debug_break_level = params.use_debug_break_level;
551 #endif
553 /* Execute --cmd arguments. */
554 exe_pre_commands(&params);
556 /* Source startup scripts. */
557 source_startup_scripts(&params);
559 #ifdef FEAT_EVAL
561 * Read all the plugin files.
562 * Only when compiled with +eval, since most plugins need it.
564 if (p_lpl)
566 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
567 source_runtime((char_u *)"plugin/*.vim", TRUE);
568 # else
569 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
570 # endif
571 TIME_MSG("loading plugins");
573 #endif
575 #ifdef FEAT_DIFF
576 /* Decide about window layout for diff mode after reading vimrc. */
577 if (params.diff_mode && params.window_layout == 0)
579 if (diffopt_horizontal())
580 params.window_layout = WIN_HOR; /* use horizontal split */
581 else
582 params.window_layout = WIN_VER; /* use vertical split */
584 #endif
587 * Recovery mode without a file name: List swap files.
588 * This uses the 'dir' option, therefore it must be after the
589 * initializations.
591 if (recoverymode && fname == NULL)
593 recover_names(NULL, TRUE, 0);
594 mch_exit(0);
598 * Set a few option defaults after reading .vimrc files:
599 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
601 set_init_3();
602 TIME_MSG("inits 3");
605 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
606 * Note that this overrides anything from a vimrc file.
608 if (params.no_swap_file)
609 p_uc = 0;
611 #ifdef FEAT_FKMAP
612 if (curwin->w_p_rl && p_altkeymap)
614 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
615 # ifdef FEAT_ARABIC
616 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
617 # endif
618 p_fkmap = TRUE; /* Set the Farsi keymap mode */
620 #endif
622 #ifdef FEAT_GUI
623 if (gui.starting)
625 #if defined(UNIX) || defined(VMS)
626 /* When something caused a message from a vimrc script, need to output
627 * an extra newline before the shell prompt. */
628 if (did_emsg || msg_didout)
629 putchar('\n');
630 #endif
632 gui_start(); /* will set full_screen to TRUE */
633 TIME_MSG("starting GUI");
635 /* When running "evim" or "gvim -y" we need the menus, exit if we
636 * don't have them. */
637 if (!gui.in_use && params.evim_mode)
638 mch_exit(1);
640 #endif
642 #ifdef SPAWNO /* special MSDOS swapping library */
643 init_SPAWNO("", SWAP_ANY);
644 #endif
646 #ifdef FEAT_VIMINFO
648 * Read in registers, history etc, but not marks, from the viminfo file.
649 * This is where v:oldfiles gets filled.
651 if (*p_viminfo != NUL)
653 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES);
654 TIME_MSG("reading viminfo");
656 #endif
658 #ifdef FEAT_QUICKFIX
660 * "-q errorfile": Load the error file now.
661 * If the error file can't be read, exit before doing anything else.
663 if (params.edit_type == EDIT_QF)
665 if (params.use_ef != NULL)
666 set_string_option_direct((char_u *)"ef", -1,
667 params.use_ef, OPT_FREE, SID_CARG);
668 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
670 out_char('\n');
671 mch_exit(3);
673 TIME_MSG("reading errorfile");
675 #endif
678 * Start putting things on the screen.
679 * Scroll screen down before drawing over it
680 * Clear screen now, so file message will not be cleared.
682 starting = NO_BUFFERS;
683 no_wait_return = FALSE;
684 if (!exmode_active)
685 msg_scroll = FALSE;
687 #ifdef FEAT_GUI
689 * This seems to be required to make callbacks to be called now, instead
690 * of after things have been put on the screen, which then may be deleted
691 * when getting a resize callback.
692 * For the Mac this handles putting files dropped on the Vim icon to
693 * global_alist.
695 if (gui.in_use)
697 # ifdef FEAT_SUN_WORKSHOP
698 if (!usingSunWorkShop)
699 # endif
700 gui_wait_for_chars(50L);
701 TIME_MSG("GUI delay");
703 #endif
705 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
706 qnx_clip_init();
707 #endif
709 #ifdef FEAT_XCLIPBOARD
710 /* Start using the X clipboard, unless the GUI was started. */
711 # ifdef FEAT_GUI
712 if (!gui.in_use)
713 # endif
715 setup_term_clip();
716 TIME_MSG("setup clipboard");
718 #endif
720 #ifdef FEAT_CLIENTSERVER
721 /* Prepare for being a Vim server. */
722 prepare_server(&params);
723 #endif
726 * If "-" argument given: Read file from stdin.
727 * Do this before starting Raw mode, because it may change things that the
728 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
729 * are the same terminal: "cat | vim -".
730 * Using autocommands here may cause trouble...
732 if (params.edit_type == EDIT_STDIN && !recoverymode)
733 read_stdin();
735 #if defined(UNIX) || defined(VMS)
736 /* When switching screens and something caused a message from a vimrc
737 * script, need to output an extra newline on exit. */
738 if ((did_emsg || msg_didout) && *T_TI != NUL)
739 newline_on_exit = TRUE;
740 #endif
743 * When done something that is not allowed or error message call
744 * wait_return. This must be done before starttermcap(), because it may
745 * switch to another screen. It must be done after settmode(TMODE_RAW),
746 * because we want to react on a single key stroke.
747 * Call settmode and starttermcap here, so the T_KS and T_TI may be
748 * defined by termcapinit and redefined in .exrc.
750 settmode(TMODE_RAW);
751 TIME_MSG("setting raw mode");
753 if (need_wait_return || msg_didany)
755 wait_return(TRUE);
756 TIME_MSG("waiting for return");
759 starttermcap(); /* start termcap if not done by wait_return() */
760 TIME_MSG("start termcap");
762 #ifdef FEAT_MOUSE
763 setmouse(); /* may start using the mouse */
764 #endif
765 if (scroll_region)
766 scroll_region_reset(); /* In case Rows changed */
767 scroll_start(); /* may scroll the screen to the right position */
770 * Don't clear the screen when starting in Ex mode, unless using the GUI.
772 if (exmode_active
773 #ifdef FEAT_GUI
774 && !gui.in_use
775 #endif
777 must_redraw = CLEAR;
778 else
780 screenclear(); /* clear screen */
781 TIME_MSG("clearing screen");
784 #ifdef FEAT_CRYPT
785 if (params.ask_for_key)
787 (void)get_crypt_key(TRUE, TRUE);
788 TIME_MSG("getting crypt key");
790 #endif
792 no_wait_return = TRUE;
795 * Create the requested number of windows and edit buffers in them.
796 * Also does recovery if "recoverymode" set.
798 create_windows(&params);
799 TIME_MSG("opening buffers");
801 #ifdef FEAT_EVAL
802 /* clear v:swapcommand */
803 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
804 #endif
806 /* Ex starts at last line of the file */
807 if (exmode_active)
808 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
810 #ifdef FEAT_AUTOCMD
811 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
812 TIME_MSG("BufEnter autocommands");
813 #endif
814 setpcmark();
816 #ifdef FEAT_QUICKFIX
818 * When started with "-q errorfile" jump to first error now.
820 if (params.edit_type == EDIT_QF)
822 qf_jump(NULL, 0, 0, FALSE);
823 TIME_MSG("jump to first error");
825 #endif
827 #ifdef FEAT_WINDOWS
829 * If opened more than one window, start editing files in the other
830 * windows.
832 edit_buffers(&params);
833 #endif
835 #ifdef FEAT_DIFF
836 if (params.diff_mode)
838 win_T *wp;
840 /* set options in each window for "vimdiff". */
841 for (wp = firstwin; wp != NULL; wp = wp->w_next)
842 diff_win_options(wp, TRUE);
844 #endif
847 * Shorten any of the filenames, but only when absolute.
849 shorten_fnames(FALSE);
852 * Need to jump to the tag before executing the '-c command'.
853 * Makes "vim -c '/return' -t main" work.
855 if (params.tagname != NULL)
857 #if defined(HAS_SWAP_EXISTS_ACTION)
858 swap_exists_did_quit = FALSE;
859 #endif
861 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
862 do_cmdline_cmd(IObuff);
863 TIME_MSG("jumping to tag");
865 #if defined(HAS_SWAP_EXISTS_ACTION)
866 /* If the user doesn't want to edit the file then we quit here. */
867 if (swap_exists_did_quit)
868 getout(1);
869 #endif
872 /* Execute any "+", "-c" and "-S" arguments. */
873 if (params.n_commands > 0)
874 exe_commands(&params);
876 RedrawingDisabled = 0;
877 redraw_all_later(NOT_VALID);
878 no_wait_return = FALSE;
879 starting = 0;
881 #ifdef FEAT_TERMRESPONSE
882 /* Requesting the termresponse is postponed until here, so that a "-c q"
883 * argument doesn't make it appear in the shell Vim was started from. */
884 may_req_termresponse();
885 #endif
887 /* start in insert mode */
888 if (p_im)
889 need_start_insertmode = TRUE;
891 #ifdef FEAT_AUTOCMD
892 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
893 TIME_MSG("VimEnter autocommands");
894 #endif
896 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
897 /* When a startup script or session file setup for diff'ing and
898 * scrollbind, sync the scrollbind now. */
899 if (curwin->w_p_diff && curwin->w_p_scb)
901 update_topline();
902 check_scrollbind((linenr_T)0, 0L);
903 TIME_MSG("diff scrollbinding");
905 #endif
907 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
908 mch_set_winsize_now(); /* Allow winsize changes from now on */
909 #endif
911 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
912 /* When tab pages were created, may need to update the tab pages line and
913 * scrollbars. This is skipped while creating them. */
914 if (first_tabpage->tp_next != NULL)
916 out_flush();
917 gui_init_which_components(NULL);
918 gui_update_scrollbars(TRUE);
920 need_mouse_correct = TRUE;
921 #endif
923 /* If ":startinsert" command used, stuff a dummy command to be able to
924 * call normal_cmd(), which will then start Insert mode. */
925 if (restart_edit != 0)
926 stuffcharReadbuff(K_NOP);
928 #ifdef FEAT_NETBEANS_INTG
929 if (usingNetbeans)
930 /* Tell the client that it can start sending commands. */
931 netbeans_startup_done();
932 #endif
934 TIME_MSG("before starting main loop");
937 * Call the main command loop. This never returns.
938 * For embedded MzScheme the main_loop will be called by Scheme
939 * for proper stack tracking
941 #ifndef FEAT_MZSCHEME
942 main_loop(FALSE, FALSE);
943 #else
944 mzscheme_main();
945 #endif
947 return 0;
949 #endif /* PROTO */
952 * Main loop: Execute Normal mode commands until exiting Vim.
953 * Also used to handle commands in the command-line window, until the window
954 * is closed.
955 * Also used to handle ":visual" command after ":global": execute Normal mode
956 * commands, return when entering Ex mode. "noexmode" is TRUE then.
958 void
959 main_loop(cmdwin, noexmode)
960 int cmdwin; /* TRUE when working in the command-line window */
961 int noexmode; /* TRUE when return on entering Ex mode */
963 oparg_T oa; /* operator arguments */
964 int previous_got_int = FALSE; /* "got_int" was TRUE */
966 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
967 /* Setup to catch a terminating error from the X server. Just ignore
968 * it, restore the state and continue. This might not always work
969 * properly, but at least we don't exit unexpectedly when the X server
970 * exists while Vim is running in a console. */
971 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
973 State = NORMAL;
974 # ifdef FEAT_VISUAL
975 VIsual_active = FALSE;
976 # endif
977 got_int = TRUE;
978 need_wait_return = FALSE;
979 global_busy = FALSE;
980 exmode_active = 0;
981 skip_redraw = FALSE;
982 RedrawingDisabled = 0;
983 no_wait_return = 0;
984 # ifdef FEAT_EVAL
985 emsg_skip = 0;
986 # endif
987 emsg_off = 0;
988 # ifdef FEAT_MOUSE
989 setmouse();
990 # endif
991 settmode(TMODE_RAW);
992 starttermcap();
993 scroll_start();
994 redraw_later_clear();
996 #endif
998 clear_oparg(&oa);
999 while (!cmdwin
1000 #ifdef FEAT_CMDWIN
1001 || cmdwin_result == 0
1002 #endif
1005 if (stuff_empty())
1007 did_check_timestamps = FALSE;
1008 if (need_check_timestamps)
1009 check_timestamps(FALSE);
1010 if (need_wait_return) /* if wait_return still needed ... */
1011 wait_return(FALSE); /* ... call it now */
1012 if (need_start_insertmode && goto_im()
1013 #ifdef FEAT_VISUAL
1014 && !VIsual_active
1015 #endif
1018 need_start_insertmode = FALSE;
1019 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1020 /* skip the fileinfo message now, because it would be shown
1021 * after insert mode finishes! */
1022 need_fileinfo = FALSE;
1026 /* Reset "got_int" now that we got back to the main loop. Except when
1027 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1028 * the ":g" command.
1029 * For ":g/pat/vi" we reset "got_int" when used once. When used
1030 * a second time we go back to Ex mode and abort the ":g" command. */
1031 if (got_int)
1033 if (noexmode && global_busy && !exmode_active && previous_got_int)
1035 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1036 * used and keep "got_int" set, so that it aborts ":g". */
1037 exmode_active = EXMODE_NORMAL;
1038 State = NORMAL;
1040 else if (!global_busy || !exmode_active)
1042 if (!quit_more)
1043 (void)vgetc(); /* flush all buffers */
1044 got_int = FALSE;
1046 previous_got_int = TRUE;
1048 else
1049 previous_got_int = FALSE;
1051 if (!exmode_active)
1052 msg_scroll = FALSE;
1053 quit_more = FALSE;
1056 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1057 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1058 * update cursor and redraw.
1060 if (skip_redraw || exmode_active)
1061 skip_redraw = FALSE;
1062 else if (do_redraw || stuff_empty())
1064 #ifdef FEAT_AUTOCMD
1065 /* Trigger CursorMoved if the cursor moved. */
1066 if (!finish_op && has_cursormoved()
1067 && !equalpos(last_cursormoved, curwin->w_cursor))
1069 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1070 last_cursormoved = curwin->w_cursor;
1072 #endif
1074 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1075 /* Scroll-binding for diff mode may have been postponed until
1076 * here. Avoids doing it for every change. */
1077 if (diff_need_scrollbind)
1079 check_scrollbind((linenr_T)0, 0L);
1080 diff_need_scrollbind = FALSE;
1082 #endif
1083 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1084 /* Include a closed fold completely in the Visual area. */
1085 foldAdjustVisual();
1086 #endif
1087 #ifdef FEAT_FOLDING
1089 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1090 * contain the cursor.
1091 * When 'foldopen' is "all", open the fold(s) under the cursor.
1092 * This may mark the window for redrawing.
1094 if (hasAnyFolding(curwin) && !char_avail())
1096 foldCheckClose();
1097 if (fdo_flags & FDO_ALL)
1098 foldOpenCursor();
1100 #endif
1103 * Before redrawing, make sure w_topline is correct, and w_leftcol
1104 * if lines don't wrap, and w_skipcol if lines wrap.
1106 update_topline();
1107 validate_cursor();
1109 #ifdef FEAT_VISUAL
1110 if (VIsual_active)
1111 update_curbuf(INVERTED);/* update inverted part */
1112 else
1113 #endif
1114 if (must_redraw)
1115 update_screen(0);
1116 else if (redraw_cmdline || clear_cmdline)
1117 showmode();
1118 #ifdef FEAT_WINDOWS
1119 redraw_statuslines();
1120 #endif
1121 #ifdef FEAT_TITLE
1122 if (need_maketitle)
1123 maketitle();
1124 #endif
1125 /* display message after redraw */
1126 if (keep_msg != NULL)
1128 char_u *p;
1130 /* msg_attr_keep() will set keep_msg to NULL, must free the
1131 * string here. */
1132 p = keep_msg;
1133 keep_msg = NULL;
1134 msg_attr(p, keep_msg_attr);
1135 vim_free(p);
1137 if (need_fileinfo) /* show file info after redraw */
1139 fileinfo(FALSE, TRUE, FALSE);
1140 need_fileinfo = FALSE;
1143 emsg_on_display = FALSE; /* can delete error message now */
1144 did_emsg = FALSE;
1145 msg_didany = FALSE; /* reset lines_left in msg_start() */
1146 may_clear_sb_text(); /* clear scroll-back text on next msg */
1147 showruler(FALSE);
1149 setcursor();
1150 cursor_on();
1152 do_redraw = FALSE;
1154 #ifdef FEAT_GUI
1155 if (need_mouse_correct)
1156 gui_mouse_correct();
1157 #endif
1160 * Update w_curswant if w_set_curswant has been set.
1161 * Postponed until here to avoid computing w_virtcol too often.
1163 update_curswant();
1165 #ifdef FEAT_EVAL
1167 * May perform garbage collection when waiting for a character, but
1168 * only at the very toplevel. Otherwise we may be using a List or
1169 * Dict internally somewhere.
1170 * "may_garbage_collect" is reset in vgetc() which is invoked through
1171 * do_exmode() and normal_cmd().
1173 may_garbage_collect = (!cmdwin && !noexmode);
1174 #endif
1176 * If we're invoked as ex, do a round of ex commands.
1177 * Otherwise, get and execute a normal mode command.
1179 if (exmode_active)
1181 if (noexmode) /* End of ":global/path/visual" commands */
1182 return;
1183 do_exmode(exmode_active == EXMODE_VIM);
1185 else
1186 normal_cmd(&oa, TRUE);
1191 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1193 * Exit, but leave behind swap files for modified buffers.
1195 void
1196 getout_preserve_modified(exitval)
1197 int exitval;
1199 # if defined(SIGHUP) && defined(SIG_IGN)
1200 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1201 * makes Vim exit and then handling SIGHUP causes various reentrance
1202 * problems. */
1203 signal(SIGHUP, SIG_IGN);
1204 # endif
1206 ml_close_notmod(); /* close all not-modified buffers */
1207 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1208 ml_close_all(FALSE); /* close all memfiles, without deleting */
1209 getout(exitval); /* exit Vim properly */
1211 #endif
1214 /* Exit properly */
1215 void
1216 getout(exitval)
1217 int exitval;
1219 #ifdef FEAT_AUTOCMD
1220 buf_T *buf;
1221 win_T *wp;
1222 tabpage_T *tp, *next_tp;
1223 #endif
1225 exiting = TRUE;
1227 /* When running in Ex mode an error causes us to exit with a non-zero exit
1228 * code. POSIX requires this, although it's not 100% clear from the
1229 * standard. */
1230 if (exmode_active)
1231 exitval += ex_exitval;
1233 /* Position the cursor on the last screen line, below all the text */
1234 #ifdef FEAT_GUI
1235 if (!gui.in_use)
1236 #endif
1237 windgoto((int)Rows - 1, 0);
1239 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1240 /* Optionally print hashtable efficiency. */
1241 hash_debug_results();
1242 #endif
1244 #ifdef FEAT_GUI
1245 msg_didany = FALSE;
1246 #endif
1248 #ifdef FEAT_AUTOCMD
1249 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1250 # if defined FEAT_WINDOWS
1251 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1253 next_tp = tp->tp_next;
1254 for (wp = (tp == curtab)
1255 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1257 buf = wp->w_buffer;
1258 if (buf->b_changedtick != -1)
1260 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1261 FALSE, buf);
1262 buf->b_changedtick = -1; /* note that we did it already */
1263 /* start all over, autocommands may mess up the lists */
1264 next_tp = first_tabpage;
1265 break;
1269 # else
1270 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1271 # endif
1273 /* Trigger BufUnload for buffers that are loaded */
1274 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1275 if (buf->b_ml.ml_mfp != NULL)
1277 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1278 FALSE, buf);
1279 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1280 break;
1282 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1283 #endif
1285 #ifdef FEAT_VIMINFO
1286 if (*p_viminfo != NUL)
1287 /* Write out the registers, history, marks etc, to the viminfo file */
1288 write_viminfo(NULL, FALSE);
1289 #endif
1291 #ifdef FEAT_AUTOCMD
1292 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1293 #endif
1295 #ifdef FEAT_PROFILE
1296 profile_dump();
1297 #endif
1299 if (did_emsg
1300 #ifdef FEAT_GUI
1301 || (gui.in_use && msg_didany && p_verbose > 0)
1302 #endif
1305 /* give the user a chance to read the (error) message */
1306 no_wait_return = FALSE;
1307 wait_return(FALSE);
1310 #ifdef FEAT_AUTOCMD
1311 /* Position the cursor again, the autocommands may have moved it */
1312 # ifdef FEAT_GUI
1313 if (!gui.in_use)
1314 # endif
1315 windgoto((int)Rows - 1, 0);
1316 #endif
1318 #ifdef FEAT_MZSCHEME
1319 mzscheme_end();
1320 #endif
1321 #ifdef FEAT_TCL
1322 tcl_end();
1323 #endif
1324 #ifdef FEAT_RUBY
1325 ruby_end();
1326 #endif
1327 #ifdef FEAT_PYTHON
1328 python_end();
1329 #endif
1330 #ifdef FEAT_PERL
1331 perl_end();
1332 #endif
1333 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1334 iconv_end();
1335 #endif
1336 #ifdef FEAT_NETBEANS_INTG
1337 netbeans_end();
1338 #endif
1339 #ifdef FEAT_CSCOPE
1340 cs_end();
1341 #endif
1342 #ifdef FEAT_EVAL
1343 if (garbage_collect_at_exit)
1344 garbage_collect();
1345 #endif
1347 mch_exit(exitval);
1351 * Get a (optional) count for a Vim argument.
1353 static int
1354 get_number_arg(p, idx, def)
1355 char_u *p; /* pointer to argument */
1356 int *idx; /* index in argument, is incremented */
1357 int def; /* default value */
1359 if (vim_isdigit(p[*idx]))
1361 def = atoi((char *)&(p[*idx]));
1362 while (vim_isdigit(p[*idx]))
1363 *idx = *idx + 1;
1365 return def;
1368 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1370 * Setup to use the current locale (for ctype() and many other things).
1372 static void
1373 init_locale()
1375 setlocale(LC_ALL, "");
1377 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1378 /* Make sure strtod() uses a decimal point, not a comma. */
1379 setlocale(LC_NUMERIC, "C");
1380 # endif
1382 # ifdef WIN32
1383 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1384 * text while it's expecting text in the current locale. This call avoids
1385 * that. */
1386 setlocale(LC_CTYPE, "C");
1387 # endif
1389 # ifdef FEAT_GETTEXT
1391 int mustfree = FALSE;
1392 char_u *p;
1394 # ifdef DYNAMIC_GETTEXT
1395 /* Initialize the gettext library */
1396 dyn_libintl_init(NULL);
1397 # endif
1398 /* expand_env() doesn't work yet, because chartab[] is not initialized
1399 * yet, call vim_getenv() directly */
1400 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1401 if (p != NULL && *p != NUL)
1403 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1404 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1406 if (mustfree)
1407 vim_free(p);
1408 textdomain(VIMPACKAGE);
1410 # endif
1412 #endif
1415 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1416 * If the executable name starts with "r" we disable shell commands.
1417 * If the next character is "e" we run in Easy mode.
1418 * If the next character is "g" we run the GUI version.
1419 * If the next characters are "view" we start in readonly mode.
1420 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1421 * If the next characters are "ex" we start in Ex mode. If it's followed
1422 * by "im" use improved Ex mode.
1424 static void
1425 parse_command_name(parmp)
1426 mparm_T *parmp;
1428 char_u *initstr;
1430 initstr = gettail((char_u *)parmp->argv[0]);
1432 #ifdef MACOS_X_UNIX
1433 /* An issue has been seen when launching Vim in such a way that
1434 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1435 * executable or a symbolic link of it. Until this issue is resolved
1436 * we prohibit the GUI from being used.
1438 if (STRCMP(initstr, parmp->argv[0]) == 0)
1439 disallow_gui = TRUE;
1441 /* TODO: On MacOS X default to gui if argv[0] ends in:
1442 * /Vim.app/Contents/MacOS/Vim */
1443 #endif
1445 #ifdef FEAT_EVAL
1446 set_vim_var_string(VV_PROGNAME, initstr, -1);
1447 #endif
1449 if (TOLOWER_ASC(initstr[0]) == 'r')
1451 restricted = TRUE;
1452 ++initstr;
1455 /* Avoid using evim mode for "editor". */
1456 if (TOLOWER_ASC(initstr[0]) == 'e'
1457 && (TOLOWER_ASC(initstr[1]) == 'v'
1458 || TOLOWER_ASC(initstr[1]) == 'g'))
1460 #ifdef FEAT_GUI
1461 gui.starting = TRUE;
1462 #endif
1463 parmp->evim_mode = TRUE;
1464 ++initstr;
1467 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1468 if (TOLOWER_ASC(initstr[0]) == 'g')
1470 main_start_gui();
1471 #ifdef FEAT_GUI
1472 ++initstr;
1473 #endif
1476 if (STRNICMP(initstr, "view", 4) == 0)
1478 readonlymode = TRUE;
1479 curbuf->b_p_ro = TRUE;
1480 p_uc = 10000; /* don't update very often */
1481 initstr += 4;
1483 else if (STRNICMP(initstr, "vim", 3) == 0)
1484 initstr += 3;
1486 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1487 if (STRICMP(initstr, "diff") == 0)
1489 #ifdef FEAT_DIFF
1490 parmp->diff_mode = TRUE;
1491 #else
1492 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1493 mch_errmsg("\n");
1494 mch_exit(2);
1495 #endif
1498 if (STRNICMP(initstr, "ex", 2) == 0)
1500 if (STRNICMP(initstr + 2, "im", 2) == 0)
1501 exmode_active = EXMODE_VIM;
1502 else
1503 exmode_active = EXMODE_NORMAL;
1504 change_compatible(TRUE); /* set 'compatible' */
1509 * Get the name of the display, before gui_prepare() removes it from
1510 * argv[]. Used for the xterm-clipboard display.
1512 * Also find the --server... arguments and --socketid and --windowid
1514 static void
1515 early_arg_scan(parmp)
1516 mparm_T *parmp UNUSED;
1518 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1519 || !defined(FEAT_NETBEANS_INTG)
1520 int argc = parmp->argc;
1521 char **argv = parmp->argv;
1522 int i;
1524 for (i = 1; i < argc; i++)
1526 if (STRCMP(argv[i], "--") == 0)
1527 break;
1528 # ifdef FEAT_XCLIPBOARD
1529 else if (STRICMP(argv[i], "-display") == 0
1530 # if defined(FEAT_GUI_GTK)
1531 || STRICMP(argv[i], "--display") == 0
1532 # endif
1535 if (i == argc - 1)
1536 mainerr_arg_missing((char_u *)argv[i]);
1537 xterm_display = argv[++i];
1539 # endif
1540 # ifdef FEAT_CLIENTSERVER
1541 else if (STRICMP(argv[i], "--servername") == 0)
1543 if (i == argc - 1)
1544 mainerr_arg_missing((char_u *)argv[i]);
1545 parmp->serverName_arg = (char_u *)argv[++i];
1547 else if (STRICMP(argv[i], "--serverlist") == 0)
1548 parmp->serverArg = TRUE;
1549 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1551 parmp->serverArg = TRUE;
1552 # ifdef FEAT_GUI
1553 if (strstr(argv[i], "-wait") != 0)
1554 /* don't fork() when starting the GUI to edit files ourself */
1555 gui.dofork = FALSE;
1556 # endif
1558 # endif
1560 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1561 # ifdef FEAT_GUI_W32
1562 else if (STRICMP(argv[i], "--windowid") == 0)
1563 # else
1564 else if (STRICMP(argv[i], "--socketid") == 0)
1565 # endif
1567 long_u id;
1568 int count;
1570 if (i == argc - 1)
1571 mainerr_arg_missing((char_u *)argv[i]);
1572 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1573 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id);
1574 else
1575 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id);
1576 if (count != 1)
1577 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1578 else
1579 # ifdef FEAT_GUI_W32
1580 win_socket_id = id;
1581 # else
1582 gtk_socket_id = id;
1583 # endif
1584 i++;
1586 # endif
1587 # ifdef FEAT_GUI_GTK
1588 else if (STRICMP(argv[i], "--echo-wid") == 0)
1589 echo_wid_arg = TRUE;
1590 # endif
1591 # ifndef FEAT_NETBEANS_INTG
1592 else if (strncmp(argv[i], "-nb", (size_t)3) == 0)
1594 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1595 mch_exit(2);
1597 # endif
1600 #endif
1604 * Scan the command line arguments.
1606 static void
1607 command_line_scan(parmp)
1608 mparm_T *parmp;
1610 int argc = parmp->argc;
1611 char **argv = parmp->argv;
1612 int argv_idx; /* index in argv[n][] */
1613 int had_minmin = FALSE; /* found "--" argument */
1614 int want_argument; /* option argument with argument */
1615 int c;
1616 char_u *p = NULL;
1617 long n;
1619 --argc;
1620 ++argv;
1621 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1622 while (argc > 0)
1625 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1627 if (argv[0][0] == '+' && !had_minmin)
1629 if (parmp->n_commands >= MAX_ARG_CMDS)
1630 mainerr(ME_EXTRA_CMD, NULL);
1631 argv_idx = -1; /* skip to next argument */
1632 if (argv[0][1] == NUL)
1633 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1634 else
1635 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1639 * Optional argument.
1641 else if (argv[0][0] == '-' && !had_minmin)
1643 want_argument = FALSE;
1644 c = argv[0][argv_idx++];
1645 #ifdef VMS
1647 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1648 * and "-/X" as "-X".
1650 if (c == '/')
1652 c = argv[0][argv_idx++];
1653 c = TOUPPER_ASC(c);
1655 else
1656 c = TOLOWER_ASC(c);
1657 #endif
1658 switch (c)
1660 case NUL: /* "vim -" read from stdin */
1661 /* "ex -" silent mode */
1662 if (exmode_active)
1663 silent_mode = TRUE;
1664 else
1666 if (parmp->edit_type != EDIT_NONE)
1667 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1668 parmp->edit_type = EDIT_STDIN;
1669 read_cmd_fd = 2; /* read from stderr instead of stdin */
1671 argv_idx = -1; /* skip to next argument */
1672 break;
1674 case '-': /* "--" don't take any more option arguments */
1675 /* "--help" give help message */
1676 /* "--version" give version message */
1677 /* "--literal" take files literally */
1678 /* "--nofork" don't fork */
1679 /* "--noplugin[s]" skip plugins */
1680 /* "--cmd <cmd>" execute cmd before vimrc */
1681 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1682 usage();
1683 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1685 Columns = 80; /* need to init Columns */
1686 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1687 list_version();
1688 msg_putchar('\n');
1689 msg_didout = FALSE;
1690 mch_exit(0);
1692 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1694 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1695 parmp->literal = TRUE;
1696 #endif
1698 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1700 #ifdef FEAT_GUI
1701 gui.dofork = FALSE; /* don't fork() when starting GUI */
1702 #endif
1704 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1705 p_lpl = FALSE;
1706 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1708 want_argument = TRUE;
1709 argv_idx += 3;
1711 #ifdef FEAT_CLIENTSERVER
1712 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1713 ; /* already processed -- no arg */
1714 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1715 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1717 /* already processed -- snatch the following arg */
1718 if (argc > 1)
1720 --argc;
1721 ++argv;
1724 #endif
1725 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1726 # ifdef FEAT_GUI_GTK
1727 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1728 # else
1729 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1730 # endif
1732 /* already processed -- snatch the following arg */
1733 if (argc > 1)
1735 --argc;
1736 ++argv;
1739 #endif
1740 #ifdef FEAT_GUI_GTK
1741 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1743 /* already processed, skip */
1745 #endif
1746 else
1748 if (argv[0][argv_idx])
1749 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1750 had_minmin = TRUE;
1752 if (!want_argument)
1753 argv_idx = -1; /* skip to next argument */
1754 break;
1756 case 'A': /* "-A" start in Arabic mode */
1757 #ifdef FEAT_ARABIC
1758 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1759 #else
1760 mch_errmsg(_(e_noarabic));
1761 mch_exit(2);
1762 #endif
1763 break;
1765 case 'b': /* "-b" binary mode */
1766 /* Needs to be effective before expanding file names, because
1767 * for Win32 this makes us edit a shortcut file itself,
1768 * instead of the file it links to. */
1769 set_options_bin(curbuf->b_p_bin, 1, 0);
1770 curbuf->b_p_bin = 1; /* binary file I/O */
1771 break;
1773 case 'C': /* "-C" Compatible */
1774 change_compatible(TRUE);
1775 break;
1777 case 'e': /* "-e" Ex mode */
1778 exmode_active = EXMODE_NORMAL;
1779 break;
1781 case 'E': /* "-E" Improved Ex mode */
1782 exmode_active = EXMODE_VIM;
1783 break;
1785 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1786 window directly, not with newcli */
1787 #ifdef FEAT_GUI
1788 gui.dofork = FALSE; /* don't fork() when starting GUI */
1789 #endif
1790 break;
1792 case 'g': /* "-g" start GUI */
1793 main_start_gui();
1794 break;
1796 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1797 #ifdef FEAT_FKMAP
1798 p_fkmap = TRUE;
1799 set_option_value((char_u *)"rl", 1L, NULL, 0);
1800 #else
1801 mch_errmsg(_(e_nofarsi));
1802 mch_exit(2);
1803 #endif
1804 break;
1806 case 'h': /* "-h" give help message */
1807 #ifdef FEAT_GUI_GNOME
1808 /* Tell usage() to exit for "gvim". */
1809 gui.starting = FALSE;
1810 #endif
1811 usage();
1812 break;
1814 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1815 #ifdef FEAT_RIGHTLEFT
1816 p_hkmap = TRUE;
1817 set_option_value((char_u *)"rl", 1L, NULL, 0);
1818 #else
1819 mch_errmsg(_(e_nohebrew));
1820 mch_exit(2);
1821 #endif
1822 break;
1824 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1825 #ifdef FEAT_LISP
1826 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1827 p_sm = TRUE;
1828 #endif
1829 break;
1831 case 'M': /* "-M" no changes or writing of files */
1832 reset_modifiable();
1833 /* FALLTHROUGH */
1835 case 'm': /* "-m" no writing of files */
1836 p_write = FALSE;
1837 break;
1839 case 'y': /* "-y" easy mode */
1840 #ifdef FEAT_GUI
1841 gui.starting = TRUE; /* start GUI a bit later */
1842 #endif
1843 parmp->evim_mode = TRUE;
1844 break;
1846 case 'N': /* "-N" Nocompatible */
1847 change_compatible(FALSE);
1848 break;
1850 case 'n': /* "-n" no swap file */
1851 parmp->no_swap_file = TRUE;
1852 break;
1854 case 'p': /* "-p[N]" open N tab pages */
1855 #ifdef TARGET_API_MAC_OSX
1856 /* For some reason on MacOS X, an argument like:
1857 -psn_0_10223617 is passed in when invoke from Finder
1858 or with the 'open' command */
1859 if (argv[0][argv_idx] == 's')
1861 argv_idx = -1; /* bypass full -psn */
1862 main_start_gui();
1863 break;
1865 #endif
1866 #ifdef FEAT_WINDOWS
1867 /* default is 0: open window for each file */
1868 parmp->window_count = get_number_arg((char_u *)argv[0],
1869 &argv_idx, 0);
1870 parmp->window_layout = WIN_TABS;
1871 #endif
1872 break;
1874 case 'o': /* "-o[N]" open N horizontal split windows */
1875 #ifdef FEAT_WINDOWS
1876 /* default is 0: open window for each file */
1877 parmp->window_count = get_number_arg((char_u *)argv[0],
1878 &argv_idx, 0);
1879 parmp->window_layout = WIN_HOR;
1880 #endif
1881 break;
1883 case 'O': /* "-O[N]" open N vertical split windows */
1884 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1885 /* default is 0: open window for each file */
1886 parmp->window_count = get_number_arg((char_u *)argv[0],
1887 &argv_idx, 0);
1888 parmp->window_layout = WIN_VER;
1889 #endif
1890 break;
1892 #ifdef FEAT_QUICKFIX
1893 case 'q': /* "-q" QuickFix mode */
1894 if (parmp->edit_type != EDIT_NONE)
1895 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1896 parmp->edit_type = EDIT_QF;
1897 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1899 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1900 argv_idx = -1;
1902 else if (argc > 1) /* "-q {errorfile}" */
1903 want_argument = TRUE;
1904 break;
1905 #endif
1907 case 'R': /* "-R" readonly mode */
1908 readonlymode = TRUE;
1909 curbuf->b_p_ro = TRUE;
1910 p_uc = 10000; /* don't update very often */
1911 break;
1913 case 'r': /* "-r" recovery mode */
1914 case 'L': /* "-L" recovery mode */
1915 recoverymode = 1;
1916 break;
1918 case 's':
1919 if (exmode_active) /* "-s" silent (batch) mode */
1920 silent_mode = TRUE;
1921 else /* "-s {scriptin}" read from script file */
1922 want_argument = TRUE;
1923 break;
1925 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1926 if (parmp->edit_type != EDIT_NONE)
1927 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1928 parmp->edit_type = EDIT_TAG;
1929 if (argv[0][argv_idx]) /* "-t{tag}" */
1931 parmp->tagname = (char_u *)argv[0] + argv_idx;
1932 argv_idx = -1;
1934 else /* "-t {tag}" */
1935 want_argument = TRUE;
1936 break;
1938 #ifdef FEAT_EVAL
1939 case 'D': /* "-D" Debugging */
1940 parmp->use_debug_break_level = 9999;
1941 break;
1942 #endif
1943 #ifdef FEAT_DIFF
1944 case 'd': /* "-d" 'diff' */
1945 # ifdef AMIGA
1946 /* check for "-dev {device}" */
1947 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1948 want_argument = TRUE;
1949 else
1950 # endif
1951 parmp->diff_mode = TRUE;
1952 break;
1953 #endif
1954 case 'V': /* "-V{N}" Verbose level */
1955 /* default is 10: a little bit verbose */
1956 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1957 if (argv[0][argv_idx] != NUL)
1959 set_option_value((char_u *)"verbosefile", 0L,
1960 (char_u *)argv[0] + argv_idx, 0);
1961 argv_idx = (int)STRLEN(argv[0]);
1963 break;
1965 case 'v': /* "-v" Vi-mode (as if called "vi") */
1966 exmode_active = 0;
1967 #ifdef FEAT_GUI
1968 gui.starting = FALSE; /* don't start GUI */
1969 #endif
1970 break;
1972 case 'w': /* "-w{number}" set window height */
1973 /* "-w {scriptout}" write to script */
1974 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1976 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1977 set_option_value((char_u *)"window", n, NULL, 0);
1978 break;
1980 want_argument = TRUE;
1981 break;
1983 #ifdef FEAT_CRYPT
1984 case 'x': /* "-x" encrypted reading/writing of files */
1985 parmp->ask_for_key = TRUE;
1986 break;
1987 #endif
1989 case 'X': /* "-X" don't connect to X server */
1990 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
1991 x_no_connect = TRUE;
1992 #endif
1993 break;
1995 case 'Z': /* "-Z" restricted mode */
1996 restricted = TRUE;
1997 break;
1999 case 'c': /* "-c{command}" or "-c {command}" execute
2000 command */
2001 if (argv[0][argv_idx] != NUL)
2003 if (parmp->n_commands >= MAX_ARG_CMDS)
2004 mainerr(ME_EXTRA_CMD, NULL);
2005 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
2006 + argv_idx;
2007 argv_idx = -1;
2008 break;
2010 /*FALLTHROUGH*/
2011 case 'S': /* "-S {file}" execute Vim script */
2012 case 'i': /* "-i {viminfo}" use for viminfo */
2013 #ifndef FEAT_DIFF
2014 case 'd': /* "-d {device}" device (for Amiga) */
2015 #endif
2016 case 'T': /* "-T {terminal}" terminal name */
2017 case 'u': /* "-u {vimrc}" vim inits file */
2018 case 'U': /* "-U {gvimrc}" gvim inits file */
2019 case 'W': /* "-W {scriptout}" overwrite */
2020 #ifdef FEAT_GUI_W32
2021 case 'P': /* "-P {parent title}" MDI parent */
2022 #endif
2023 want_argument = TRUE;
2024 break;
2026 default:
2027 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2031 * Handle option arguments with argument.
2033 if (want_argument)
2036 * Check for garbage immediately after the option letter.
2038 if (argv[0][argv_idx] != NUL)
2039 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2041 --argc;
2042 if (argc < 1 && c != 'S')
2043 mainerr_arg_missing((char_u *)argv[0]);
2044 ++argv;
2045 argv_idx = -1;
2047 switch (c)
2049 case 'c': /* "-c {command}" execute command */
2050 case 'S': /* "-S {file}" execute Vim script */
2051 if (parmp->n_commands >= MAX_ARG_CMDS)
2052 mainerr(ME_EXTRA_CMD, NULL);
2053 if (c == 'S')
2055 char *a;
2057 if (argc < 1)
2058 /* "-S" without argument: use default session file
2059 * name. */
2060 a = SESSION_FILE;
2061 else if (argv[0][0] == '-')
2063 /* "-S" followed by another option: use default
2064 * session file name. */
2065 a = SESSION_FILE;
2066 ++argc;
2067 --argv;
2069 else
2070 a = argv[0];
2071 p = alloc((unsigned)(STRLEN(a) + 4));
2072 if (p == NULL)
2073 mch_exit(2);
2074 sprintf((char *)p, "so %s", a);
2075 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2076 parmp->commands[parmp->n_commands++] = p;
2078 else
2079 parmp->commands[parmp->n_commands++] =
2080 (char_u *)argv[0];
2081 break;
2083 case '-': /* "--cmd {command}" execute command */
2084 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2085 mainerr(ME_EXTRA_CMD, NULL);
2086 parmp->pre_commands[parmp->n_pre_commands++] =
2087 (char_u *)argv[0];
2088 break;
2090 /* case 'd': -d {device} is handled in mch_check_win() for the
2091 * Amiga */
2093 #ifdef FEAT_QUICKFIX
2094 case 'q': /* "-q {errorfile}" QuickFix mode */
2095 parmp->use_ef = (char_u *)argv[0];
2096 break;
2097 #endif
2099 case 'i': /* "-i {viminfo}" use for viminfo */
2100 use_viminfo = (char_u *)argv[0];
2101 break;
2103 case 's': /* "-s {scriptin}" read from script file */
2104 if (scriptin[0] != NULL)
2106 scripterror:
2107 mch_errmsg(_("Attempt to open script file again: \""));
2108 mch_errmsg(argv[-1]);
2109 mch_errmsg(" ");
2110 mch_errmsg(argv[0]);
2111 mch_errmsg("\"\n");
2112 mch_exit(2);
2114 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2116 mch_errmsg(_("Cannot open for reading: \""));
2117 mch_errmsg(argv[0]);
2118 mch_errmsg("\"\n");
2119 mch_exit(2);
2121 if (save_typebuf() == FAIL)
2122 mch_exit(2); /* out of memory */
2123 break;
2125 case 't': /* "-t {tag}" */
2126 parmp->tagname = (char_u *)argv[0];
2127 break;
2129 case 'T': /* "-T {terminal}" terminal name */
2131 * The -T term argument is always available and when
2132 * HAVE_TERMLIB is supported it overrides the environment
2133 * variable TERM.
2135 #ifdef FEAT_GUI
2136 if (term_is_gui((char_u *)argv[0]))
2137 gui.starting = TRUE; /* start GUI a bit later */
2138 else
2139 #endif
2140 parmp->term = (char_u *)argv[0];
2141 break;
2143 case 'u': /* "-u {vimrc}" vim inits file */
2144 parmp->use_vimrc = (char_u *)argv[0];
2145 break;
2147 case 'U': /* "-U {gvimrc}" gvim inits file */
2148 #ifdef FEAT_GUI
2149 use_gvimrc = (char_u *)argv[0];
2150 #endif
2151 break;
2153 case 'w': /* "-w {nr}" 'window' value */
2154 /* "-w {scriptout}" append to script file */
2155 if (vim_isdigit(*((char_u *)argv[0])))
2157 argv_idx = 0;
2158 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2159 set_option_value((char_u *)"window", n, NULL, 0);
2160 argv_idx = -1;
2161 break;
2163 /*FALLTHROUGH*/
2164 case 'W': /* "-W {scriptout}" overwrite script file */
2165 if (scriptout != NULL)
2166 goto scripterror;
2167 if ((scriptout = mch_fopen(argv[0],
2168 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2170 mch_errmsg(_("Cannot open for script output: \""));
2171 mch_errmsg(argv[0]);
2172 mch_errmsg("\"\n");
2173 mch_exit(2);
2175 break;
2177 #ifdef FEAT_GUI_W32
2178 case 'P': /* "-P {parent title}" MDI parent */
2179 gui_mch_set_parent(argv[0]);
2180 break;
2181 #endif
2187 * File name argument.
2189 else
2191 argv_idx = -1; /* skip to next argument */
2193 /* Check for only one type of editing. */
2194 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2195 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2196 parmp->edit_type = EDIT_FILE;
2198 #ifdef MSWIN
2199 /* Remember if the argument was a full path before changing
2200 * slashes to backslashes. */
2201 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2202 parmp->full_path = TRUE;
2203 #endif
2205 /* Add the file to the global argument list. */
2206 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2207 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2208 mch_exit(2);
2209 #ifdef FEAT_DIFF
2210 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2211 && !mch_isdir(alist_name(&GARGLIST[0])))
2213 char_u *r;
2215 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2216 if (r != NULL)
2218 vim_free(p);
2219 p = r;
2222 #endif
2223 #if defined(__CYGWIN32__) && !defined(WIN32)
2225 * If vim is invoked by non-Cygwin tools, convert away any
2226 * DOS paths, so things like .swp files are created correctly.
2227 * Look for evidence of non-Cygwin paths before we bother.
2228 * This is only for when using the Unix files.
2230 if (strpbrk(p, "\\:") != NULL)
2232 char posix_path[PATH_MAX];
2234 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2235 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, PATH_MAX);
2236 # else
2237 cygwin_conv_to_posix_path(p, posix_path);
2238 # endif
2239 vim_free(p);
2240 p = vim_strsave(posix_path);
2241 if (p == NULL)
2242 mch_exit(2);
2244 #endif
2246 #ifdef USE_FNAME_CASE
2247 /* Make the case of the file name match the actual file. */
2248 fname_case(p, 0);
2249 #endif
2251 alist_add(&global_alist, p,
2252 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2253 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2254 #else
2255 2 /* add buffer number now and use curbuf */
2256 #endif
2259 #if defined(FEAT_MBYTE) && defined(WIN32)
2261 /* Remember this argument has been added to the argument list.
2262 * Needed when 'encoding' is changed. */
2263 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2264 # ifdef FEAT_DIFF
2265 parmp->diff_mode
2266 # else
2267 FALSE
2268 # endif
2271 #endif
2275 * If there are no more letters after the current "-", go to next
2276 * argument. argv_idx is set to -1 when the current argument is to be
2277 * skipped.
2279 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2281 --argc;
2282 ++argv;
2283 argv_idx = 1;
2287 #ifdef FEAT_EVAL
2288 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2289 * one. */
2290 if (parmp->n_commands > 0)
2292 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2293 if (p != NULL)
2295 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2296 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2297 vim_free(p);
2300 #endif
2304 * Print a warning if stdout is not a terminal.
2305 * When starting in Ex mode and commands come from a file, set Silent mode.
2307 static void
2308 check_tty(parmp)
2309 mparm_T *parmp;
2311 int input_isatty; /* is active input a terminal? */
2313 input_isatty = mch_input_isatty();
2314 if (exmode_active)
2316 if (!input_isatty)
2317 silent_mode = TRUE;
2319 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2320 #ifdef FEAT_GUI
2321 /* don't want the delay when started from the desktop */
2322 && !gui.starting
2323 #endif
2326 #ifdef NBDEBUG
2328 * This shouldn't be necessary. But if I run netbeans with the log
2329 * output coming to the console and XOpenDisplay fails, I get vim
2330 * trying to start with input/output to my console tty. This fills my
2331 * input buffer so fast I can't even kill the process in under 2
2332 * minutes (and it beeps continuously the whole time :-)
2334 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2336 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2337 exit(1);
2339 #endif
2340 if (!parmp->stdout_isatty)
2341 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2342 if (!input_isatty)
2343 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2344 out_flush();
2345 if (scriptin[0] == NULL)
2346 ui_delay(2000L, TRUE);
2347 TIME_MSG("Warning delay");
2352 * Read text from stdin.
2354 static void
2355 read_stdin()
2357 int i;
2359 #if defined(HAS_SWAP_EXISTS_ACTION)
2360 /* When getting the ATTENTION prompt here, use a dialog */
2361 swap_exists_action = SEA_DIALOG;
2362 #endif
2363 no_wait_return = TRUE;
2364 i = msg_didany;
2365 set_buflisted(TRUE);
2366 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2367 no_wait_return = FALSE;
2368 msg_didany = i;
2369 TIME_MSG("reading stdin");
2370 #if defined(HAS_SWAP_EXISTS_ACTION)
2371 check_swap_exists_action();
2372 #endif
2373 #if !(defined(AMIGA) || defined(MACOS))
2375 * Close stdin and dup it from stderr. Required for GPM to work
2376 * properly, and for running external commands.
2377 * Is there any other system that cannot do this?
2379 close(0);
2380 ignored = dup(2);
2381 #endif
2385 * Create the requested number of windows and edit buffers in them.
2386 * Also does recovery if "recoverymode" set.
2388 static void
2389 create_windows(parmp)
2390 mparm_T *parmp UNUSED;
2392 #ifdef FEAT_WINDOWS
2393 int dorewind;
2394 int done = 0;
2397 * Create the number of windows that was requested.
2399 if (parmp->window_count == -1) /* was not set */
2400 parmp->window_count = 1;
2401 if (parmp->window_count == 0)
2402 parmp->window_count = GARGCOUNT;
2403 if (parmp->window_count > 1)
2405 /* Don't change the windows if there was a command in .vimrc that
2406 * already split some windows */
2407 if (parmp->window_layout == 0)
2408 parmp->window_layout = WIN_HOR;
2409 if (parmp->window_layout == WIN_TABS)
2411 parmp->window_count = make_tabpages(parmp->window_count);
2412 TIME_MSG("making tab pages");
2414 else if (firstwin->w_next == NULL)
2416 parmp->window_count = make_windows(parmp->window_count,
2417 parmp->window_layout == WIN_VER);
2418 TIME_MSG("making windows");
2420 else
2421 parmp->window_count = win_count();
2423 else
2424 parmp->window_count = 1;
2425 #endif
2427 if (recoverymode) /* do recover */
2429 msg_scroll = TRUE; /* scroll message up */
2430 ml_recover();
2431 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2432 getout(1);
2433 do_modelines(0); /* do modelines */
2435 else
2438 * Open a buffer for windows that don't have one yet.
2439 * Commands in the .vimrc might have loaded a file or split the window.
2440 * Watch out for autocommands that delete a window.
2442 #ifdef FEAT_AUTOCMD
2444 * Don't execute Win/Buf Enter/Leave autocommands here
2446 ++autocmd_no_enter;
2447 ++autocmd_no_leave;
2448 #endif
2449 #ifdef FEAT_WINDOWS
2450 dorewind = TRUE;
2451 while (done++ < 1000)
2453 if (dorewind)
2455 if (parmp->window_layout == WIN_TABS)
2456 goto_tabpage(1);
2457 else
2458 curwin = firstwin;
2460 else if (parmp->window_layout == WIN_TABS)
2462 if (curtab->tp_next == NULL)
2463 break;
2464 goto_tabpage(0);
2466 else
2468 if (curwin->w_next == NULL)
2469 break;
2470 curwin = curwin->w_next;
2472 dorewind = FALSE;
2473 #endif
2474 curbuf = curwin->w_buffer;
2475 if (curbuf->b_ml.ml_mfp == NULL)
2477 #ifdef FEAT_FOLDING
2478 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2479 if (p_fdls >= 0)
2480 curwin->w_p_fdl = p_fdls;
2481 #endif
2482 #if defined(HAS_SWAP_EXISTS_ACTION)
2483 /* When getting the ATTENTION prompt here, use a dialog */
2484 swap_exists_action = SEA_DIALOG;
2485 #endif
2486 set_buflisted(TRUE);
2487 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2489 #if defined(HAS_SWAP_EXISTS_ACTION)
2490 if (swap_exists_action == SEA_QUIT)
2492 if (got_int || only_one_window())
2494 /* abort selected or quit and only one window */
2495 did_emsg = FALSE; /* avoid hit-enter prompt */
2496 getout(1);
2498 /* We can't close the window, it would disturb what
2499 * happens next. Clear the file name and set the arg
2500 * index to -1 to delete it later. */
2501 setfname(curbuf, NULL, NULL, FALSE);
2502 curwin->w_arg_idx = -1;
2503 swap_exists_action = SEA_NONE;
2505 else
2506 handle_swap_exists(NULL);
2507 #endif
2508 #ifdef FEAT_AUTOCMD
2509 dorewind = TRUE; /* start again */
2510 #endif
2512 #ifdef FEAT_WINDOWS
2513 ui_breakcheck();
2514 if (got_int)
2516 (void)vgetc(); /* only break the file loading, not the rest */
2517 break;
2520 #endif
2521 #ifdef FEAT_WINDOWS
2522 if (parmp->window_layout == WIN_TABS)
2523 goto_tabpage(1);
2524 else
2525 curwin = firstwin;
2526 curbuf = curwin->w_buffer;
2527 #endif
2528 #ifdef FEAT_AUTOCMD
2529 --autocmd_no_enter;
2530 --autocmd_no_leave;
2531 #endif
2535 #ifdef FEAT_WINDOWS
2537 * If opened more than one window, start editing files in the other
2538 * windows. make_windows() has already opened the windows.
2540 static void
2541 edit_buffers(parmp)
2542 mparm_T *parmp;
2544 int arg_idx; /* index in argument list */
2545 int i;
2546 int advance = TRUE;
2548 # ifdef FEAT_AUTOCMD
2550 * Don't execute Win/Buf Enter/Leave autocommands here
2552 ++autocmd_no_enter;
2553 ++autocmd_no_leave;
2554 # endif
2556 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2557 if (curwin->w_arg_idx == -1)
2559 win_close(curwin, TRUE);
2560 advance = FALSE;
2563 arg_idx = 1;
2564 for (i = 1; i < parmp->window_count; ++i)
2566 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2567 if (curwin->w_arg_idx == -1)
2569 ++arg_idx;
2570 win_close(curwin, TRUE);
2571 advance = FALSE;
2572 continue;
2575 if (advance)
2577 if (parmp->window_layout == WIN_TABS)
2579 if (curtab->tp_next == NULL) /* just checking */
2580 break;
2581 goto_tabpage(0);
2583 else
2585 if (curwin->w_next == NULL) /* just checking */
2586 break;
2587 win_enter(curwin->w_next, FALSE);
2590 advance = TRUE;
2592 /* Only open the file if there is no file in this window yet (that can
2593 * happen when .vimrc contains ":sall"). */
2594 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2596 curwin->w_arg_idx = arg_idx;
2597 /* Edit file from arg list, if there is one. When "Quit" selected
2598 * at the ATTENTION prompt close the window. */
2599 # ifdef HAS_SWAP_EXISTS_ACTION
2600 swap_exists_did_quit = FALSE;
2601 # endif
2602 (void)do_ecmd(0, arg_idx < GARGCOUNT
2603 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2604 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
2605 # ifdef HAS_SWAP_EXISTS_ACTION
2606 if (swap_exists_did_quit)
2608 /* abort or quit selected */
2609 if (got_int || only_one_window())
2611 /* abort selected and only one window */
2612 did_emsg = FALSE; /* avoid hit-enter prompt */
2613 getout(1);
2615 win_close(curwin, TRUE);
2616 advance = FALSE;
2618 # endif
2619 if (arg_idx == GARGCOUNT - 1)
2620 arg_had_last = TRUE;
2621 ++arg_idx;
2623 ui_breakcheck();
2624 if (got_int)
2626 (void)vgetc(); /* only break the file loading, not the rest */
2627 break;
2631 if (parmp->window_layout == WIN_TABS)
2632 goto_tabpage(1);
2633 # ifdef FEAT_AUTOCMD
2634 --autocmd_no_enter;
2635 # endif
2636 win_enter(firstwin, FALSE); /* back to first window */
2637 # ifdef FEAT_AUTOCMD
2638 --autocmd_no_leave;
2639 # endif
2640 TIME_MSG("editing files in windows");
2641 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2642 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2644 #endif /* FEAT_WINDOWS */
2647 * Execute the commands from --cmd arguments "cmds[cnt]".
2649 static void
2650 exe_pre_commands(parmp)
2651 mparm_T *parmp;
2653 char_u **cmds = parmp->pre_commands;
2654 int cnt = parmp->n_pre_commands;
2655 int i;
2657 if (cnt > 0)
2659 curwin->w_cursor.lnum = 0; /* just in case.. */
2660 sourcing_name = (char_u *)_("pre-vimrc command line");
2661 # ifdef FEAT_EVAL
2662 current_SID = SID_CMDARG;
2663 # endif
2664 for (i = 0; i < cnt; ++i)
2665 do_cmdline_cmd(cmds[i]);
2666 sourcing_name = NULL;
2667 # ifdef FEAT_EVAL
2668 current_SID = 0;
2669 # endif
2670 TIME_MSG("--cmd commands");
2675 * Execute "+", "-c" and "-S" arguments.
2677 static void
2678 exe_commands(parmp)
2679 mparm_T *parmp;
2681 int i;
2684 * We start commands on line 0, make "vim +/pat file" match a
2685 * pattern on line 1. But don't move the cursor when an autocommand
2686 * with g`" was used.
2688 msg_scroll = TRUE;
2689 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2690 curwin->w_cursor.lnum = 0;
2691 sourcing_name = (char_u *)"command line";
2692 #ifdef FEAT_EVAL
2693 current_SID = SID_CARG;
2694 #endif
2695 for (i = 0; i < parmp->n_commands; ++i)
2697 do_cmdline_cmd(parmp->commands[i]);
2698 if (parmp->cmds_tofree[i])
2699 vim_free(parmp->commands[i]);
2701 sourcing_name = NULL;
2702 #ifdef FEAT_EVAL
2703 current_SID = 0;
2704 #endif
2705 if (curwin->w_cursor.lnum == 0)
2706 curwin->w_cursor.lnum = 1;
2708 if (!exmode_active)
2709 msg_scroll = FALSE;
2711 #ifdef FEAT_QUICKFIX
2712 /* When started with "-q errorfile" jump to first error again. */
2713 if (parmp->edit_type == EDIT_QF)
2714 qf_jump(NULL, 0, 0, FALSE);
2715 #endif
2716 TIME_MSG("executing command arguments");
2720 * Source startup scripts.
2722 static void
2723 source_startup_scripts(parmp)
2724 mparm_T *parmp;
2726 int i;
2729 * For "evim" source evim.vim first of all, so that the user can overrule
2730 * any things he doesn't like.
2732 if (parmp->evim_mode)
2734 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2735 TIME_MSG("source evim file");
2739 * If -u argument given, use only the initializations from that file and
2740 * nothing else.
2742 if (parmp->use_vimrc != NULL)
2744 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2745 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2747 #ifdef FEAT_GUI
2748 if (use_gvimrc == NULL) /* don't load gvimrc either */
2749 use_gvimrc = parmp->use_vimrc;
2750 #endif
2751 if (parmp->use_vimrc[2] == 'N')
2752 p_lpl = FALSE; /* don't load plugins either */
2754 else
2756 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2757 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2760 else if (!silent_mode)
2762 #ifdef AMIGA
2763 struct Process *proc = (struct Process *)FindTask(0L);
2764 APTR save_winptr = proc->pr_WindowPtr;
2766 /* Avoid a requester here for a volume that doesn't exist. */
2767 proc->pr_WindowPtr = (APTR)-1L;
2768 #endif
2771 * Get system wide defaults, if the file name is defined.
2773 #ifdef SYS_VIMRC_FILE
2774 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2775 #endif
2776 #ifdef MACOS_X
2777 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2778 #endif
2781 * Try to read initialization commands from the following places:
2782 * - environment variable VIMINIT
2783 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2784 * - second user vimrc file ($VIM/.vimrc for Dos)
2785 * - environment variable EXINIT
2786 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2787 * - second user exrc file ($VIM/.exrc for Dos)
2788 * The first that exists is used, the rest is ignored.
2790 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2792 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2793 #ifdef USR_VIMRC_FILE2
2794 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2795 DOSO_VIMRC) == FAIL
2796 #endif
2797 #ifdef USR_VIMRC_FILE3
2798 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2799 DOSO_VIMRC) == FAIL
2800 #endif
2801 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2802 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2804 #ifdef USR_EXRC_FILE2
2805 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2806 #endif
2811 * Read initialization commands from ".vimrc" or ".exrc" in current
2812 * directory. This is only done if the 'exrc' option is set.
2813 * Because of security reasons we disallow shell and write commands
2814 * now, except for unix if the file is owned by the user or 'secure'
2815 * option has been reset in environment of global ".exrc" or ".vimrc".
2816 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2817 * SYS_VIMRC_FILE.
2819 if (p_exrc)
2821 #if defined(UNIX) || defined(VMS)
2822 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2823 if (!file_owned(VIMRC_FILE))
2824 #endif
2825 secure = p_secure;
2827 i = FAIL;
2828 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2829 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2830 #ifdef USR_VIMRC_FILE2
2831 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2832 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2833 #endif
2834 #ifdef USR_VIMRC_FILE3
2835 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2836 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2837 #endif
2838 #ifdef SYS_VIMRC_FILE
2839 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2840 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2841 #endif
2843 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2845 if (i == FAIL)
2847 #if defined(UNIX) || defined(VMS)
2848 /* if ".exrc" is not owned by user set 'secure' mode */
2849 if (!file_owned(EXRC_FILE))
2850 secure = p_secure;
2851 else
2852 secure = 0;
2853 #endif
2854 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2855 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2856 #ifdef USR_EXRC_FILE2
2857 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2858 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2859 #endif
2861 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2864 if (secure == 2)
2865 need_wait_return = TRUE;
2866 secure = 0;
2867 #ifdef AMIGA
2868 proc->pr_WindowPtr = save_winptr;
2869 #endif
2871 TIME_MSG("sourcing vimrc file(s)");
2875 * Setup to start using the GUI. Exit with an error when not available.
2877 static void
2878 main_start_gui()
2880 #ifdef FEAT_GUI
2881 gui.starting = TRUE; /* start GUI a bit later */
2882 #else
2883 mch_errmsg(_(e_nogvim));
2884 mch_errmsg("\n");
2885 mch_exit(2);
2886 #endif
2890 * Get an environment variable, and execute it as Ex commands.
2891 * Returns FAIL if the environment variable was not executed, OK otherwise.
2894 process_env(env, is_viminit)
2895 char_u *env;
2896 int is_viminit; /* when TRUE, called for VIMINIT */
2898 char_u *initstr;
2899 char_u *save_sourcing_name;
2900 linenr_T save_sourcing_lnum;
2901 #ifdef FEAT_EVAL
2902 scid_T save_sid;
2903 #endif
2905 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2907 if (is_viminit)
2908 vimrc_found(NULL, NULL);
2909 save_sourcing_name = sourcing_name;
2910 save_sourcing_lnum = sourcing_lnum;
2911 sourcing_name = env;
2912 sourcing_lnum = 0;
2913 #ifdef FEAT_EVAL
2914 save_sid = current_SID;
2915 current_SID = SID_ENV;
2916 #endif
2917 do_cmdline_cmd(initstr);
2918 sourcing_name = save_sourcing_name;
2919 sourcing_lnum = save_sourcing_lnum;
2920 #ifdef FEAT_EVAL
2921 current_SID = save_sid;;
2922 #endif
2923 return OK;
2925 return FAIL;
2928 #if defined(UNIX) || defined(VMS)
2930 * Return TRUE if we are certain the user owns the file "fname".
2931 * Used for ".vimrc" and ".exrc".
2932 * Use both stat() and lstat() for extra security.
2934 static int
2935 file_owned(fname)
2936 char *fname;
2938 struct stat s;
2939 # ifdef UNIX
2940 uid_t uid = getuid();
2941 # else /* VMS */
2942 uid_t uid = ((getgid() << 16) | getuid());
2943 # endif
2945 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2946 # ifdef HAVE_LSTAT
2947 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2948 # endif
2951 #endif
2954 * Give an error message main_errors["n"] and exit.
2956 static void
2957 mainerr(n, str)
2958 int n; /* one of the ME_ defines */
2959 char_u *str; /* extra argument or NULL */
2961 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2962 reset_signals(); /* kill us with CTRL-C here, if you like */
2963 #endif
2965 mch_errmsg(longVersion);
2966 mch_errmsg("\n");
2967 mch_errmsg(_(main_errors[n]));
2968 if (str != NULL)
2970 mch_errmsg(": \"");
2971 mch_errmsg((char *)str);
2972 mch_errmsg("\"");
2974 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
2976 mch_exit(1);
2979 void
2980 mainerr_arg_missing(str)
2981 char_u *str;
2983 mainerr(ME_ARG_MISSING, str);
2987 * print a message with three spaces prepended and '\n' appended.
2989 static void
2990 main_msg(s)
2991 char *s;
2993 mch_msg(" ");
2994 mch_msg(s);
2995 mch_msg("\n");
2999 * Print messages for "vim -h" or "vim --help" and exit.
3001 static void
3002 usage()
3004 int i;
3005 static char *(use[]) =
3007 N_("[file ..] edit specified file(s)"),
3008 N_("- read text from stdin"),
3009 N_("-t tag edit file where tag is defined"),
3010 #ifdef FEAT_QUICKFIX
3011 N_("-q [errorfile] edit file with first error")
3012 #endif
3015 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3016 reset_signals(); /* kill us with CTRL-C here, if you like */
3017 #endif
3019 mch_msg(longVersion);
3020 mch_msg(_("\n\nusage:"));
3021 for (i = 0; ; ++i)
3023 mch_msg(_(" vim [arguments] "));
3024 mch_msg(_(use[i]));
3025 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
3026 break;
3027 mch_msg(_("\n or:"));
3029 #ifdef VMS
3030 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3031 #endif
3033 mch_msg(_("\n\nArguments:\n"));
3034 main_msg(_("--\t\t\tOnly file names after this"));
3035 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3036 main_msg(_("--literal\t\tDon't expand wildcards"));
3037 #endif
3038 #ifdef FEAT_OLE
3039 main_msg(_("-register\t\tRegister this gvim for OLE"));
3040 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3041 #endif
3042 #ifdef FEAT_GUI
3043 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3044 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3045 #endif
3046 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3047 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3048 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3049 #ifdef FEAT_DIFF
3050 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3051 #endif
3052 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3053 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3054 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3055 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3056 main_msg(_("-M\t\t\tModifications in text not allowed"));
3057 main_msg(_("-b\t\t\tBinary mode"));
3058 #ifdef FEAT_LISP
3059 main_msg(_("-l\t\t\tLisp mode"));
3060 #endif
3061 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3062 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3063 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3064 #ifdef FEAT_EVAL
3065 main_msg(_("-D\t\t\tDebugging mode"));
3066 #endif
3067 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3068 main_msg(_("-r\t\t\tList swap files and exit"));
3069 main_msg(_("-r (with file name)\tRecover crashed session"));
3070 main_msg(_("-L\t\t\tSame as -r"));
3071 #ifdef AMIGA
3072 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3073 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3074 #endif
3075 #ifdef FEAT_ARABIC
3076 main_msg(_("-A\t\t\tstart in Arabic mode"));
3077 #endif
3078 #ifdef FEAT_RIGHTLEFT
3079 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3080 #endif
3081 #ifdef FEAT_FKMAP
3082 main_msg(_("-F\t\t\tStart in Farsi mode"));
3083 #endif
3084 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3085 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3086 #ifdef FEAT_GUI
3087 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3088 #endif
3089 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3090 #ifdef FEAT_WINDOWS
3091 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3092 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3093 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3094 #endif
3095 main_msg(_("+\t\t\tStart at end of file"));
3096 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3097 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3098 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3099 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3100 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3101 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3102 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3103 #ifdef FEAT_CRYPT
3104 main_msg(_("-x\t\t\tEdit encrypted files"));
3105 #endif
3106 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3107 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3108 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3109 # endif
3110 main_msg(_("-X\t\t\tDo not connect to X server"));
3111 #endif
3112 #ifdef FEAT_CLIENTSERVER
3113 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3114 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3115 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3116 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3117 # ifdef FEAT_WINDOWS
3118 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3119 # endif
3120 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3121 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3122 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3123 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3124 #endif
3125 #ifdef FEAT_VIMINFO
3126 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3127 #endif
3128 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3129 main_msg(_("--version\t\tPrint version information and exit"));
3131 #ifdef FEAT_GUI_X11
3132 # ifdef FEAT_GUI_MOTIF
3133 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3134 # else
3135 # ifdef FEAT_GUI_ATHENA
3136 # ifdef FEAT_GUI_NEXTAW
3137 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3138 # else
3139 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3140 # endif
3141 # endif
3142 # endif
3143 main_msg(_("-display <display>\tRun vim on <display>"));
3144 main_msg(_("-iconic\t\tStart vim iconified"));
3145 # if 0
3146 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3147 mch_msg(_("\t\t\t (Unimplemented)\n"));
3148 # endif
3149 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3150 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3151 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3152 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3153 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3154 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3155 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3156 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3157 # ifdef FEAT_GUI_ATHENA
3158 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3159 # endif
3160 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3161 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3162 main_msg(_("-xrm <resource>\tSet the specified resource"));
3163 #endif /* FEAT_GUI_X11 */
3164 #if defined(FEAT_GUI) && defined(RISCOS)
3165 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3166 main_msg(_("--columns <number>\tInitial width of window in columns"));
3167 main_msg(_("--rows <number>\tInitial height of window in rows"));
3168 #endif
3169 #ifdef FEAT_GUI_GTK
3170 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3171 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3172 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3173 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3174 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3175 # ifdef HAVE_GTK2
3176 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3177 # endif
3178 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3179 #endif
3180 #ifdef FEAT_GUI_W32
3181 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3182 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3183 #endif
3185 #ifdef FEAT_GUI_GNOME
3186 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3187 if (gui.starting)
3188 mch_msg("\n");
3189 else
3190 #endif
3191 mch_exit(0);
3194 #if defined(HAS_SWAP_EXISTS_ACTION)
3196 * Check the result of the ATTENTION dialog:
3197 * When "Quit" selected, exit Vim.
3198 * When "Recover" selected, recover the file.
3200 static void
3201 check_swap_exists_action()
3203 if (swap_exists_action == SEA_QUIT)
3204 getout(1);
3205 handle_swap_exists(NULL);
3207 #endif
3209 #if defined(STARTUPTIME) || defined(PROTO)
3210 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3212 static struct timeval prev_timeval;
3215 * Save the previous time before doing something that could nest.
3216 * set "*tv_rel" to the time elapsed so far.
3218 void
3219 time_push(tv_rel, tv_start)
3220 void *tv_rel, *tv_start;
3222 *((struct timeval *)tv_rel) = prev_timeval;
3223 gettimeofday(&prev_timeval, NULL);
3224 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3225 - ((struct timeval *)tv_rel)->tv_usec;
3226 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3227 - ((struct timeval *)tv_rel)->tv_sec;
3228 if (((struct timeval *)tv_rel)->tv_usec < 0)
3230 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3231 --((struct timeval *)tv_rel)->tv_sec;
3233 *(struct timeval *)tv_start = prev_timeval;
3237 * Compute the previous time after doing something that could nest.
3238 * Subtract "*tp" from prev_timeval;
3239 * Note: The arguments are (void *) to avoid trouble with systems that don't
3240 * have struct timeval.
3242 void
3243 time_pop(tp)
3244 void *tp; /* actually (struct timeval *) */
3246 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3247 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3248 if (prev_timeval.tv_usec < 0)
3250 prev_timeval.tv_usec += 1000000;
3251 --prev_timeval.tv_sec;
3255 static void
3256 time_diff(then, now)
3257 struct timeval *then;
3258 struct timeval *now;
3260 long usec;
3261 long msec;
3263 usec = now->tv_usec - then->tv_usec;
3264 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3265 usec = usec % 1000L;
3266 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3269 void
3270 time_msg(msg, tv_start)
3271 char *msg;
3272 void *tv_start; /* only for do_source: start time; actually
3273 (struct timeval *) */
3275 static struct timeval start;
3276 struct timeval now;
3278 if (time_fd != NULL)
3280 if (strstr(msg, "STARTING") != NULL)
3282 gettimeofday(&start, NULL);
3283 prev_timeval = start;
3284 fprintf(time_fd, "\n\ntimes in msec\n");
3285 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3286 fprintf(time_fd, " clock elapsed: other lines\n\n");
3288 gettimeofday(&now, NULL);
3289 time_diff(&start, &now);
3290 if (((struct timeval *)tv_start) != NULL)
3292 fprintf(time_fd, " ");
3293 time_diff(((struct timeval *)tv_start), &now);
3295 fprintf(time_fd, " ");
3296 time_diff(&prev_timeval, &now);
3297 prev_timeval = now;
3298 fprintf(time_fd, ": %s\n", msg);
3302 # ifdef WIN3264
3304 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3307 gettimeofday(struct timeval *tv, char *dummy)
3309 long t = clock();
3310 tv->tv_sec = t / CLOCKS_PER_SEC;
3311 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3312 return 0;
3314 # endif
3316 #endif
3318 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3321 * Common code for the X command server and the Win32 command server.
3324 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3327 * Do the client-server stuff, unless "--servername ''" was used.
3329 static void
3330 exec_on_server(parmp)
3331 mparm_T *parmp;
3333 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3335 # ifdef WIN32
3336 /* Initialise the client/server messaging infrastructure. */
3337 serverInitMessaging();
3338 # endif
3341 * When a command server argument was found, execute it. This may
3342 * exit Vim when it was successful. Otherwise it's executed further
3343 * on. Remember the encoding used here in "serverStrEnc".
3345 if (parmp->serverArg)
3347 cmdsrv_main(&parmp->argc, parmp->argv,
3348 parmp->serverName_arg, &parmp->serverStr);
3349 # ifdef FEAT_MBYTE
3350 parmp->serverStrEnc = vim_strsave(p_enc);
3351 # endif
3354 /* If we're still running, get the name to register ourselves.
3355 * On Win32 can register right now, for X11 need to setup the
3356 * clipboard first, it's further down. */
3357 parmp->servername = serverMakeName(parmp->serverName_arg,
3358 parmp->argv[0]);
3359 # ifdef WIN32
3360 if (parmp->servername != NULL)
3362 serverSetName(parmp->servername);
3363 vim_free(parmp->servername);
3365 # endif
3370 * Prepare for running as a Vim server.
3372 static void
3373 prepare_server(parmp)
3374 mparm_T *parmp;
3376 # if defined(FEAT_X11)
3378 * Register for remote command execution with :serversend and --remote
3379 * unless there was a -X or a --servername '' on the command line.
3380 * Only register nongui-vim's with an explicit --servername argument.
3381 * When running as root --servername is also required.
3383 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3384 # ifdef FEAT_GUI
3385 (gui.in_use
3386 # ifdef UNIX
3387 && getuid() != ROOT_UID
3388 # endif
3389 ) ||
3390 # endif
3391 parmp->serverName_arg != NULL))
3393 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3394 vim_free(parmp->servername);
3395 TIME_MSG("register server name");
3397 else
3398 serverDelayedStartName = parmp->servername;
3399 # endif
3402 * Execute command ourselves if we're here because the send failed (or
3403 * else we would have exited above).
3405 if (parmp->serverStr != NULL)
3407 char_u *p;
3409 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3410 parmp->serverStr, &p));
3411 vim_free(p);
3415 static void
3416 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3417 int *argc;
3418 char **argv;
3419 char_u *serverName_arg;
3420 char_u **serverStr;
3422 char_u *res;
3423 int i;
3424 char_u *sname;
3425 int ret;
3426 int didone = FALSE;
3427 int exiterr = 0;
3428 char **newArgV = argv + 1;
3429 int newArgC = 1,
3430 Argc = *argc;
3431 int argtype;
3432 #define ARGTYPE_OTHER 0
3433 #define ARGTYPE_EDIT 1
3434 #define ARGTYPE_EDIT_WAIT 2
3435 #define ARGTYPE_SEND 3
3436 int silent = FALSE;
3437 int tabs = FALSE;
3438 # ifndef FEAT_X11
3439 HWND srv;
3440 # else
3441 Window srv;
3443 setup_term_clip();
3444 # endif
3446 sname = serverMakeName(serverName_arg, argv[0]);
3447 if (sname == NULL)
3448 return;
3451 * Execute the command server related arguments and remove them
3452 * from the argc/argv array; We may have to return into main()
3454 for (i = 1; i < Argc; i++)
3456 res = NULL;
3457 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3459 for (; i < *argc; i++)
3461 *newArgV++ = argv[i];
3462 newArgC++;
3464 break;
3467 if (STRICMP(argv[i], "--remote-send") == 0)
3468 argtype = ARGTYPE_SEND;
3469 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3471 char *p = argv[i] + 8;
3473 argtype = ARGTYPE_EDIT;
3474 while (*p != NUL)
3476 if (STRNICMP(p, "-wait", 5) == 0)
3478 argtype = ARGTYPE_EDIT_WAIT;
3479 p += 5;
3481 else if (STRNICMP(p, "-silent", 7) == 0)
3483 silent = TRUE;
3484 p += 7;
3486 else if (STRNICMP(p, "-tab", 4) == 0)
3488 tabs = TRUE;
3489 p += 4;
3491 else
3493 argtype = ARGTYPE_OTHER;
3494 break;
3498 else
3499 argtype = ARGTYPE_OTHER;
3501 if (argtype != ARGTYPE_OTHER)
3503 if (i == *argc - 1)
3504 mainerr_arg_missing((char_u *)argv[i]);
3505 if (argtype == ARGTYPE_SEND)
3507 *serverStr = (char_u *)argv[i + 1];
3508 i++;
3510 else
3512 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3513 tabs, argtype == ARGTYPE_EDIT_WAIT);
3514 if (*serverStr == NULL)
3516 /* Probably out of memory, exit. */
3517 didone = TRUE;
3518 exiterr = 1;
3519 break;
3521 Argc = i;
3523 # ifdef FEAT_X11
3524 if (xterm_dpy == NULL)
3526 mch_errmsg(_("No display"));
3527 ret = -1;
3529 else
3530 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3531 NULL, &srv, 0, 0, silent);
3532 # else
3533 /* Win32 always works? */
3534 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3535 # endif
3536 if (ret < 0)
3538 if (argtype == ARGTYPE_SEND)
3540 /* Failed to send, abort. */
3541 mch_errmsg(_(": Send failed.\n"));
3542 didone = TRUE;
3543 exiterr = 1;
3545 else if (!silent)
3546 /* Let vim start normally. */
3547 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3548 break;
3551 # ifdef FEAT_GUI_W32
3552 /* Guess that when the server name starts with "g" it's a GUI
3553 * server, which we can bring to the foreground here.
3554 * Foreground() in the server doesn't work very well. */
3555 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3556 SetForegroundWindow(srv);
3557 # endif
3560 * For --remote-wait: Wait until the server did edit each
3561 * file. Also detect that the server no longer runs.
3563 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3565 int numFiles = *argc - i - 1;
3566 int j;
3567 char_u *done = alloc(numFiles);
3568 char_u *p;
3569 # ifdef FEAT_GUI_W32
3570 NOTIFYICONDATA ni;
3571 int count = 0;
3572 extern HWND message_window;
3573 # endif
3575 if (numFiles > 0 && argv[i + 1][0] == '+')
3576 /* Skip "+cmd" argument, don't wait for it to be edited. */
3577 --numFiles;
3579 # ifdef FEAT_GUI_W32
3580 ni.cbSize = sizeof(ni);
3581 ni.hWnd = message_window;
3582 ni.uID = 0;
3583 ni.uFlags = NIF_ICON|NIF_TIP;
3584 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3585 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3586 Shell_NotifyIcon(NIM_ADD, &ni);
3587 # endif
3589 /* Wait for all files to unload in remote */
3590 memset(done, 0, numFiles);
3591 while (memchr(done, 0, numFiles) != NULL)
3593 # ifdef WIN32
3594 p = serverGetReply(srv, NULL, TRUE, TRUE);
3595 if (p == NULL)
3596 break;
3597 # else
3598 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3599 break;
3600 # endif
3601 j = atoi((char *)p);
3602 if (j >= 0 && j < numFiles)
3604 # ifdef FEAT_GUI_W32
3605 ++count;
3606 sprintf(ni.szTip, _("%d of %d edited"),
3607 count, numFiles);
3608 Shell_NotifyIcon(NIM_MODIFY, &ni);
3609 # endif
3610 done[j] = 1;
3613 # ifdef FEAT_GUI_W32
3614 Shell_NotifyIcon(NIM_DELETE, &ni);
3615 # endif
3618 else if (STRICMP(argv[i], "--remote-expr") == 0)
3620 if (i == *argc - 1)
3621 mainerr_arg_missing((char_u *)argv[i]);
3622 # ifdef WIN32
3623 /* Win32 always works? */
3624 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3625 &res, NULL, 1, FALSE) < 0)
3626 # else
3627 if (xterm_dpy == NULL)
3628 mch_errmsg(_("No display: Send expression failed.\n"));
3629 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3630 &res, NULL, 1, 1, FALSE) < 0)
3631 # endif
3633 if (res != NULL && *res != NUL)
3635 /* Output error from remote */
3636 mch_errmsg((char *)res);
3637 vim_free(res);
3638 res = NULL;
3640 mch_errmsg(_(": Send expression failed.\n"));
3643 else if (STRICMP(argv[i], "--serverlist") == 0)
3645 # ifdef WIN32
3646 /* Win32 always works? */
3647 res = serverGetVimNames();
3648 # else
3649 if (xterm_dpy != NULL)
3650 res = serverGetVimNames(xterm_dpy);
3651 # endif
3652 if (called_emsg)
3653 mch_errmsg("\n");
3655 else if (STRICMP(argv[i], "--servername") == 0)
3657 /* Alredy processed. Take it out of the command line */
3658 i++;
3659 continue;
3661 else
3663 *newArgV++ = argv[i];
3664 newArgC++;
3665 continue;
3667 didone = TRUE;
3668 if (res != NULL && *res != NUL)
3670 mch_msg((char *)res);
3671 if (res[STRLEN(res) - 1] != '\n')
3672 mch_msg("\n");
3674 vim_free(res);
3677 if (didone)
3679 display_errors(); /* display any collected messages */
3680 exit(exiterr); /* Mission accomplished - get out */
3683 /* Return back into main() */
3684 *argc = newArgC;
3685 vim_free(sname);
3689 * Build a ":drop" command to send to a Vim server.
3691 static char_u *
3692 build_drop_cmd(filec, filev, tabs, sendReply)
3693 int filec;
3694 char **filev;
3695 int tabs; /* Use ":tab drop" instead of ":drop". */
3696 int sendReply;
3698 garray_T ga;
3699 int i;
3700 char_u *inicmd = NULL;
3701 char_u *p;
3702 char_u cwd[MAXPATHL];
3704 if (filec > 0 && filev[0][0] == '+')
3706 inicmd = (char_u *)filev[0] + 1;
3707 filev++;
3708 filec--;
3710 /* Check if we have at least one argument. */
3711 if (filec <= 0)
3712 mainerr_arg_missing((char_u *)filev[-1]);
3713 if (mch_dirname(cwd, MAXPATHL) != OK)
3714 return NULL;
3715 if ((p = vim_strsave_escaped_ext(cwd,
3716 #ifdef BACKSLASH_IN_FILENAME
3717 "", /* rem_backslash() will tell what chars to escape */
3718 #else
3719 PATH_ESC_CHARS,
3720 #endif
3721 '\\', TRUE)) == NULL)
3722 return NULL;
3723 ga_init2(&ga, 1, 100);
3724 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3725 ga_concat(&ga, p);
3726 vim_free(p);
3728 /* Call inputsave() so that a prompt for an encryption key works. */
3729 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3730 if (tabs)
3731 ga_concat(&ga, (char_u *)"tab ");
3732 ga_concat(&ga, (char_u *)"drop");
3733 for (i = 0; i < filec; i++)
3735 /* On Unix the shell has already expanded the wildcards, don't want to
3736 * do it again in the Vim server. On MS-Windows only escape
3737 * non-wildcard characters. */
3738 p = vim_strsave_escaped((char_u *)filev[i],
3739 #ifdef UNIX
3740 PATH_ESC_CHARS
3741 #else
3742 (char_u *)" \t%#"
3743 #endif
3745 if (p == NULL)
3747 vim_free(ga.ga_data);
3748 return NULL;
3750 ga_concat(&ga, (char_u *)" ");
3751 ga_concat(&ga, p);
3752 vim_free(p);
3754 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3755 * CTRL-\ CTRL-N again. */
3756 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3757 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3758 if (sendReply)
3759 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3760 ga_concat(&ga, (char_u *)"<CR>:");
3761 if (inicmd != NULL)
3763 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3764 * the following commands to be inserted as text. Use a "|",
3765 * hopefully "inicmd" does allow this... */
3766 ga_concat(&ga, inicmd);
3767 ga_concat(&ga, (char_u *)"|");
3769 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3770 * clear command line. */
3771 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3772 ga_append(&ga, NUL);
3773 return ga.ga_data;
3777 * Replace termcodes such as <CR> and insert as key presses if there is room.
3779 void
3780 server_to_input_buf(str)
3781 char_u *str;
3783 char_u *ptr = NULL;
3784 char_u *cpo_save = p_cpo;
3786 /* Set 'cpoptions' the way we want it.
3787 * B set - backslashes are *not* treated specially
3788 * k set - keycodes are *not* reverse-engineered
3789 * < unset - <Key> sequences *are* interpreted
3790 * The last but one parameter of replace_termcodes() is TRUE so that the
3791 * <lt> sequence is recognised - needed for a real backslash.
3793 p_cpo = (char_u *)"Bk";
3794 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3795 p_cpo = cpo_save;
3797 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3800 * Add the string to the input stream.
3801 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3803 * First clear typed characters from the typeahead buffer, there could
3804 * be half a mapping there. Then append to the existing string, so
3805 * that multiple commands from a client are concatenated.
3807 if (typebuf.tb_maplen < typebuf.tb_len)
3808 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3809 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3811 /* Let input_available() know we inserted text in the typeahead
3812 * buffer. */
3813 typebuf_was_filled = TRUE;
3815 vim_free((char_u *)ptr);
3819 * Evaluate an expression that the client sent to a string.
3820 * Handles disabling error messages and disables debugging, otherwise Vim
3821 * hangs, waiting for "cont" to be typed.
3823 char_u *
3824 eval_client_expr_to_string(expr)
3825 char_u *expr;
3827 char_u *res;
3828 int save_dbl = debug_break_level;
3829 int save_ro = redir_off;
3831 debug_break_level = -1;
3832 redir_off = 0;
3833 ++emsg_skip;
3835 res = eval_to_string(expr, NULL, TRUE);
3837 debug_break_level = save_dbl;
3838 redir_off = save_ro;
3839 --emsg_skip;
3841 /* A client can tell us to redraw, but not to display the cursor, so do
3842 * that here. */
3843 setcursor();
3844 out_flush();
3845 #ifdef FEAT_GUI
3846 if (gui.in_use)
3847 gui_update_cursor(FALSE, FALSE);
3848 #endif
3850 return res;
3854 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3855 * return an allocated string. Otherwise return "data".
3856 * "*tofree" is set to the result when it needs to be freed later.
3858 char_u *
3859 serverConvert(client_enc, data, tofree)
3860 char_u *client_enc UNUSED;
3861 char_u *data;
3862 char_u **tofree;
3864 char_u *res = data;
3866 *tofree = NULL;
3867 # ifdef FEAT_MBYTE
3868 if (client_enc != NULL && p_enc != NULL)
3870 vimconv_T vimconv;
3872 vimconv.vc_type = CONV_NONE;
3873 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3874 && vimconv.vc_type != CONV_NONE)
3876 res = string_convert(&vimconv, data, NULL);
3877 if (res == NULL)
3878 res = data;
3879 else
3880 *tofree = res;
3882 convert_setup(&vimconv, NULL, NULL);
3884 # endif
3885 return res;
3890 * Make our basic server name: use the specified "arg" if given, otherwise use
3891 * the tail of the command "cmd" we were started with.
3892 * Return the name in allocated memory. This doesn't include a serial number.
3894 static char_u *
3895 serverMakeName(arg, cmd)
3896 char_u *arg;
3897 char *cmd;
3899 char_u *p;
3901 if (arg != NULL && *arg != NUL)
3902 p = vim_strsave_up(arg);
3903 else
3905 p = vim_strsave_up(gettail((char_u *)cmd));
3906 /* Remove .exe or .bat from the name. */
3907 if (p != NULL && vim_strchr(p, '.') != NULL)
3908 *vim_strchr(p, '.') = NUL;
3910 return p;
3912 #endif /* FEAT_CLIENTSERVER */
3915 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3917 #if defined(FEAT_FKMAP) || defined(PROTO)
3918 # include "farsi.c"
3919 #endif
3922 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3924 #if defined(FEAT_ARABIC) || defined(PROTO)
3925 # include "arabic.c"
3926 #endif