Merged from the latest developing branch.
[MacVim/KaoriYa.git] / src / main.c
blob45282ba55f23e835de336d09b07aac78fd1a9972
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
10 #if defined(MSDOS) || defined(WIN32) || defined(_WIN64)
11 # include "vimio.h" /* for close() and dup() */
12 #endif
14 #define EXTERN
15 #include "vim.h"
17 #ifdef SPAWNO
18 # include <spawno.h> /* special MS-DOS swapping library */
19 #endif
21 #ifdef HAVE_FCNTL_H
22 # include <fcntl.h>
23 #endif
25 #ifdef __CYGWIN__
26 # ifndef WIN32
27 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() */
28 # endif
29 # include <limits.h>
30 #endif
32 /* Maximum number of commands from + or -c arguments. */
33 #define MAX_ARG_CMDS 10
35 /* values for "window_layout" */
36 #define WIN_HOR 1 /* "-o" horizontally split windows */
37 #define WIN_VER 2 /* "-O" vertically split windows */
38 #define WIN_TABS 3 /* "-p" windows on tab pages */
40 /* Struct for various parameters passed between main() and other functions. */
41 typedef struct
43 int argc;
44 char **argv;
46 int evim_mode; /* started as "evim" */
47 char_u *use_vimrc; /* vimrc from -u argument */
49 int n_commands; /* no. of commands from + or -c */
50 char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
51 char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
52 int n_pre_commands; /* no. of commands from --cmd */
53 char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */
55 int edit_type; /* type of editing to do */
56 char_u *tagname; /* tag from -t argument */
57 #ifdef FEAT_QUICKFIX
58 char_u *use_ef; /* 'errorfile' from -q argument */
59 #endif
61 int want_full_screen;
62 int stdout_isatty; /* is stdout a terminal? */
63 char_u *term; /* specified terminal name */
64 #ifdef FEAT_CRYPT
65 int ask_for_key; /* -x argument */
66 #endif
67 int no_swap_file; /* "-n" argument used */
68 #ifdef FEAT_EVAL
69 int use_debug_break_level;
70 #endif
71 #ifdef FEAT_WINDOWS
72 int window_count; /* number of windows to use */
73 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
74 #endif
76 #ifdef FEAT_CLIENTSERVER
77 int serverArg; /* TRUE when argument for a server */
78 char_u *serverName_arg; /* cmdline arg for server name */
79 char_u *serverStr; /* remote server command */
80 char_u *serverStrEnc; /* encoding of serverStr */
81 char_u *servername; /* allocated name for our server */
82 #endif
83 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
84 int literal; /* don't expand file names */
85 #endif
86 #ifdef MSWIN
87 int full_path; /* file name argument was full path */
88 #endif
89 #ifdef FEAT_DIFF
90 int diff_mode; /* start with 'diff' set */
91 #endif
92 } mparm_T;
94 /* Values for edit_type. */
95 #define EDIT_NONE 0 /* no edit type yet */
96 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */
97 #define EDIT_STDIN 2 /* read file from stdin */
98 #define EDIT_TAG 3 /* tag name argument given, use tagname */
99 #define EDIT_QF 4 /* start in quickfix mode */
101 #if defined(UNIX) || defined(VMS)
102 static int file_owned __ARGS((char *fname));
103 #endif
104 static void mainerr __ARGS((int, char_u *));
105 static void main_msg __ARGS((char *s));
106 static void usage __ARGS((void));
107 static int get_number_arg __ARGS((char_u *p, int *idx, int def));
108 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
109 static void init_locale __ARGS((void));
110 #endif
111 static void parse_command_name __ARGS((mparm_T *parmp));
112 static void early_arg_scan __ARGS((mparm_T *parmp));
113 static void command_line_scan __ARGS((mparm_T *parmp));
114 static void check_tty __ARGS((mparm_T *parmp));
115 static void read_stdin __ARGS((void));
116 static void create_windows __ARGS((mparm_T *parmp));
117 #ifdef FEAT_WINDOWS
118 static void edit_buffers __ARGS((mparm_T *parmp));
119 #endif
120 static void exe_pre_commands __ARGS((mparm_T *parmp));
121 static void exe_commands __ARGS((mparm_T *parmp));
122 static void source_startup_scripts __ARGS((mparm_T *parmp));
123 static void main_start_gui __ARGS((void));
124 #if defined(HAS_SWAP_EXISTS_ACTION)
125 static void check_swap_exists_action __ARGS((void));
126 #endif
127 #ifdef FEAT_CLIENTSERVER
128 static void exec_on_server __ARGS((mparm_T *parmp));
129 static void prepare_server __ARGS((mparm_T *parmp));
130 static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
131 static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
132 #endif
135 #ifdef STARTUPTIME
136 static FILE *time_fd = NULL;
137 #endif
140 * Different types of error messages.
142 static char *(main_errors[]) =
144 N_("Unknown option argument"),
145 #define ME_UNKNOWN_OPTION 0
146 N_("Too many edit arguments"),
147 #define ME_TOO_MANY_ARGS 1
148 N_("Argument missing after"),
149 #define ME_ARG_MISSING 2
150 N_("Garbage after option argument"),
151 #define ME_GARBAGE 3
152 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
153 #define ME_EXTRA_CMD 4
154 N_("Invalid argument for"),
155 #define ME_INVALID_ARG 5
158 #ifndef PROTO /* don't want a prototype for main() */
160 # ifdef VIMDLL
161 _export
162 # endif
163 # ifdef FEAT_GUI_MSWIN
164 # ifdef __BORLANDC__
165 _cdecl
166 # endif
167 VimMain
168 # else
169 main
170 # endif
171 (argc, argv)
172 int argc;
173 char **argv;
175 char_u *fname = NULL; /* file name from command line */
176 mparm_T params; /* various parameters passed between
177 * main() and other functions. */
180 * Do any system-specific initialisations. These can NOT use IObuff or
181 * NameBuff. Thus emsg2() cannot be called!
183 mch_early_init();
185 /* Many variables are in "params" so that we can pass them to invoked
186 * functions without a lot of arguments. "argc" and "argv" are also
187 * copied, so that they can be changed. */
188 vim_memset(&params, 0, sizeof(params));
189 params.argc = argc;
190 params.argv = argv;
191 params.want_full_screen = TRUE;
192 #ifdef FEAT_EVAL
193 params.use_debug_break_level = -1;
194 #endif
195 #ifdef FEAT_WINDOWS
196 params.window_count = -1;
197 #endif
199 #ifdef FEAT_TCL
200 vim_tcl_init(params.argv[0]);
201 #endif
203 #ifdef MEM_PROFILE
204 atexit(vim_mem_profile_dump);
205 #endif
207 #ifdef STARTUPTIME
208 time_fd = mch_fopen(STARTUPTIME, "a");
209 TIME_MSG("--- VIM STARTING ---");
210 #endif
211 starttime = time(NULL);
213 #ifdef __EMX__
214 _wildcard(&params.argc, &params.argv);
215 #endif
217 #ifdef FEAT_MBYTE
218 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
219 #endif
220 #ifdef FEAT_EVAL
221 eval_init(); /* init global variables */
222 #endif
224 #ifdef __QNXNTO__
225 qnx_init(); /* PhAttach() for clipboard, (and gui) */
226 #endif
228 #ifdef MAC_OS_CLASSIC
229 /* Prepare for possibly starting GUI sometime */
230 /* Macintosh needs this before any memory is allocated. */
231 gui_prepare(&params.argc, params.argv);
232 TIME_MSG("GUI prepared");
233 #endif
235 /* Init the table of Normal mode commands. */
236 init_normal_cmds();
238 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
239 make_version(); /* Construct the long version string. */
240 #endif
243 * Allocate space for the generic buffers (needed for set_init_1() and
244 * EMSG2()).
246 if ((IObuff = alloc(IOSIZE)) == NULL
247 || (NameBuff = alloc(MAXPATHL)) == NULL)
248 mch_exit(0);
249 TIME_MSG("Allocated generic buffers");
251 #ifdef NBDEBUG
252 /* Wait a moment for debugging NetBeans. Must be after allocating
253 * NameBuff. */
254 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
255 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
256 TIME_MSG("NetBeans debug wait");
257 #endif
259 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
261 * Setup to use the current locale (for ctype() and many other things).
262 * NOTE: Translated messages with encodings other than latin1 will not
263 * work until set_init_1() has been called!
265 init_locale();
266 TIME_MSG("locale set");
267 #endif
269 #ifdef FEAT_GUI
270 gui.dofork = TRUE; /* default is to use fork() */
271 #endif
274 * Do a first scan of the arguments in "argv[]":
275 * -display or --display
276 * --server...
277 * --socketid
278 * --windowid
280 early_arg_scan(&params);
282 #ifdef FEAT_SUN_WORKSHOP
283 findYourself(params.argv[0]);
284 #endif
285 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
286 /* Prepare for possibly starting GUI sometime */
287 gui_prepare(&params.argc, params.argv);
288 TIME_MSG("GUI prepared");
289 #endif
291 #ifdef FEAT_CLIPBOARD
292 clip_init(FALSE); /* Initialise clipboard stuff */
293 TIME_MSG("clipboard setup");
294 #endif
297 * Check if we have an interactive window.
298 * On the Amiga: If there is no window, we open one with a newcli command
299 * (needed for :! to * work). mch_check_win() will also handle the -d or
300 * -dev argument.
302 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
303 TIME_MSG("window checked");
306 * Allocate the first window and buffer.
307 * Can't do anything without it, exit when it fails.
309 if (win_alloc_first() == FAIL)
310 mch_exit(0);
312 init_yank(); /* init yank buffers */
314 alist_init(&global_alist); /* Init the argument list to empty. */
317 * Set the default values for the options.
318 * NOTE: Non-latin1 translated messages are working only after this,
319 * because this is where "has_mbyte" will be set, which is used by
320 * msg_outtrans_len_attr().
321 * First find out the home directory, needed to expand "~" in options.
323 init_homedir(); /* find real value of $HOME */
324 set_init_1();
325 TIME_MSG("inits 1");
327 #ifdef FEAT_EVAL
328 set_lang_var(); /* set v:lang and v:ctype */
329 #endif
331 #ifdef FEAT_CLIENTSERVER
333 * Do the client-server stuff, unless "--servername ''" was used.
334 * This may exit Vim if the command was sent to the server.
336 exec_on_server(&params);
337 #endif
340 * Figure out the way to work from the command name argv[0].
341 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
343 parse_command_name(&params);
346 * Process the command line arguments. File names are put in the global
347 * argument list "global_alist".
349 command_line_scan(&params);
350 TIME_MSG("parsing arguments");
353 * On some systems, when we compile with the GUI, we always use it. On Mac
354 * there is no terminal version, and on Windows we can't fork one off with
355 * :gui.
357 #ifdef ALWAYS_USE_GUI
358 gui.starting = TRUE;
359 #else
360 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
362 * Check if the GUI can be started. Reset gui.starting if not.
363 * Don't know about other systems, stay on the safe side and don't check.
365 if (gui.starting && gui_init_check() == FAIL)
367 gui.starting = FALSE;
369 /* When running "evim" or "gvim -y" we need the menus, exit if we
370 * don't have them. */
371 if (params.evim_mode)
372 mch_exit(1);
374 # endif
375 #endif
377 if (GARGCOUNT > 0)
379 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
381 * Expand wildcards in file names.
383 if (!params.literal)
385 /* Temporarily add '(' and ')' to 'isfname'. These are valid
386 * filename characters but are excluded from 'isfname' to make
387 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
388 do_cmdline_cmd((char_u *)":set isf+=(,)");
389 alist_expand(NULL, 0);
390 do_cmdline_cmd((char_u *)":set isf&");
392 #endif
393 fname = alist_name(&GARGLIST[0]);
396 #if defined(WIN32) && defined(FEAT_MBYTE)
398 extern void set_alist_count(void);
400 /* Remember the number of entries in the argument list. If it changes
401 * we don't react on setting 'encoding'. */
402 set_alist_count();
404 #endif
406 #ifdef MSWIN
407 if (GARGCOUNT == 1 && params.full_path)
410 * If there is one filename, fully qualified, we have very probably
411 * been invoked from explorer, so change to the file's directory.
412 * Hint: to avoid this when typing a command use a forward slash.
413 * If the cd fails, it doesn't matter.
415 (void)vim_chdirfile(fname);
417 #endif
418 TIME_MSG("expanding arguments");
420 #ifdef FEAT_DIFF
421 if (params.diff_mode && params.window_count == -1)
422 params.window_count = 0; /* open up to 3 windows */
423 #endif
425 /* Don't redraw until much later. */
426 ++RedrawingDisabled;
429 * When listing swap file names, don't do cursor positioning et. al.
431 if (recoverymode && fname == NULL)
432 params.want_full_screen = FALSE;
435 * When certain to start the GUI, don't check capabilities of terminal.
436 * For GTK we can't be sure, but when started from the desktop it doesn't
437 * make sense to try using a terminal.
439 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
440 if (gui.starting
441 # ifdef FEAT_GUI_GTK
442 && !isatty(2)
443 # endif
445 params.want_full_screen = FALSE;
446 #endif
448 #if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
449 /* When the GUI is started from Finder, need to display messages in a
450 * message box. isatty(2) returns TRUE anyway, thus we need to check the
451 * name to know we're not started from a terminal. */
452 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
454 params.want_full_screen = FALSE;
456 /* Avoid always using "/" as the current directory. Note that when
457 * started from Finder the arglist will be filled later in
458 * HandleODocAE() and "fname" will be NULL. */
459 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
460 && STRCMP(NameBuff, "/") == 0)
462 if (fname != NULL)
463 (void)vim_chdirfile(fname);
464 else
466 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
467 vim_chdir(NameBuff);
471 #endif
474 * mch_init() sets up the terminal (window) for use. This must be
475 * done after resetting full_screen, otherwise it may move the cursor
476 * (MSDOS).
477 * Note that we may use mch_exit() before mch_init()!
479 mch_init();
480 TIME_MSG("shell init");
482 #ifdef USE_XSMP
484 * For want of anywhere else to do it, try to connect to xsmp here.
485 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
486 * Hijacking -X 'no X connection' to also disable XSMP connection as that
487 * has a similar delay upon failure.
488 * Only try if SESSION_MANAGER is set to something non-null.
490 if (!x_no_connect)
492 char *p = getenv("SESSION_MANAGER");
494 if (p != NULL && *p != NUL)
496 xsmp_init();
497 TIME_MSG("xsmp init");
500 #endif
503 * Print a warning if stdout is not a terminal.
505 check_tty(&params);
507 /* This message comes before term inits, but after setting "silent_mode"
508 * when the input is not a tty. */
509 if (GARGCOUNT > 1 && !silent_mode)
510 printf(_("%d files to edit\n"), GARGCOUNT);
512 if (params.want_full_screen && !silent_mode)
514 termcapinit(params.term); /* set terminal name and get terminal
515 capabilities (will set full_screen) */
516 screen_start(); /* don't know where cursor is now */
517 TIME_MSG("Termcap init");
521 * Set the default values for the options that use Rows and Columns.
523 ui_get_shellsize(); /* inits Rows and Columns */
524 #ifdef FEAT_NETBEANS_INTG
525 if (usingNetbeans)
526 Columns += 2; /* leave room for glyph gutter */
527 #endif
528 win_init_size();
529 #ifdef FEAT_DIFF
530 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
531 * file. There is no buffer yet though. */
532 if (params.diff_mode)
533 diff_win_options(firstwin, FALSE);
534 #endif
536 cmdline_row = Rows - p_ch;
537 msg_row = cmdline_row;
538 screenalloc(FALSE); /* allocate screen buffers */
539 set_init_2();
540 TIME_MSG("inits 2");
542 msg_scroll = TRUE;
543 no_wait_return = TRUE;
545 init_mappings(); /* set up initial mappings */
547 init_highlight(TRUE, FALSE); /* set the default highlight groups */
548 TIME_MSG("init highlight");
550 #ifdef FEAT_EVAL
551 /* Set the break level after the terminal is initialized. */
552 debug_break_level = params.use_debug_break_level;
553 #endif
555 /* Execute --cmd arguments. */
556 exe_pre_commands(&params);
558 /* Source startup scripts. */
559 source_startup_scripts(&params);
561 #ifdef FEAT_EVAL
563 * Read all the plugin files.
564 * Only when compiled with +eval, since most plugins need it.
566 if (p_lpl)
568 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
569 source_runtime((char_u *)"plugin/*.vim", TRUE);
570 # else
571 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
572 # endif
573 TIME_MSG("loading plugins");
575 #endif
577 #ifdef FEAT_DIFF
578 /* Decide about window layout for diff mode after reading vimrc. */
579 if (params.diff_mode && params.window_layout == 0)
581 if (diffopt_horizontal())
582 params.window_layout = WIN_HOR; /* use horizontal split */
583 else
584 params.window_layout = WIN_VER; /* use vertical split */
586 #endif
589 * Recovery mode without a file name: List swap files.
590 * This uses the 'dir' option, therefore it must be after the
591 * initializations.
593 if (recoverymode && fname == NULL)
595 recover_names(NULL, TRUE, 0);
596 mch_exit(0);
600 * Set a few option defaults after reading .vimrc files:
601 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
603 set_init_3();
604 TIME_MSG("inits 3");
607 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
608 * Note that this overrides anything from a vimrc file.
610 if (params.no_swap_file)
611 p_uc = 0;
613 #ifdef FEAT_FKMAP
614 if (curwin->w_p_rl && p_altkeymap)
616 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
617 # ifdef FEAT_ARABIC
618 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
619 # endif
620 p_fkmap = TRUE; /* Set the Farsi keymap mode */
622 #endif
624 #ifdef FEAT_GUI
625 if (gui.starting)
627 #if defined(UNIX) || defined(VMS)
628 /* When something caused a message from a vimrc script, need to output
629 * an extra newline before the shell prompt. */
630 if (did_emsg || msg_didout)
631 putchar('\n');
632 #endif
634 gui_start(); /* will set full_screen to TRUE */
635 TIME_MSG("starting GUI");
637 /* When running "evim" or "gvim -y" we need the menus, exit if we
638 * don't have them. */
639 if (!gui.in_use && params.evim_mode)
640 mch_exit(1);
642 #endif
644 #ifdef SPAWNO /* special MSDOS swapping library */
645 init_SPAWNO("", SWAP_ANY);
646 #endif
648 #ifdef FEAT_VIMINFO
650 * Read in registers, history etc, but not marks, from the viminfo file
652 if (*p_viminfo != NUL)
654 read_viminfo(NULL, TRUE, FALSE, FALSE);
655 TIME_MSG("reading viminfo");
657 #endif
659 #ifdef FEAT_QUICKFIX
661 * "-q errorfile": Load the error file now.
662 * If the error file can't be read, exit before doing anything else.
664 if (params.edit_type == EDIT_QF)
666 if (params.use_ef != NULL)
667 set_string_option_direct((char_u *)"ef", -1,
668 params.use_ef, OPT_FREE, SID_CARG);
669 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
671 out_char('\n');
672 mch_exit(3);
674 TIME_MSG("reading errorfile");
676 #endif
679 * Start putting things on the screen.
680 * Scroll screen down before drawing over it
681 * Clear screen now, so file message will not be cleared.
683 starting = NO_BUFFERS;
684 no_wait_return = FALSE;
685 if (!exmode_active)
686 msg_scroll = FALSE;
688 #ifdef FEAT_GUI
690 * This seems to be required to make callbacks to be called now, instead
691 * of after things have been put on the screen, which then may be deleted
692 * when getting a resize callback.
693 * For the Mac this handles putting files dropped on the Vim icon to
694 * global_alist.
696 if (gui.in_use)
698 # ifdef FEAT_SUN_WORKSHOP
699 if (!usingSunWorkShop)
700 # endif
701 gui_wait_for_chars(50L);
702 TIME_MSG("GUI delay");
704 #endif
706 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
707 qnx_clip_init();
708 #endif
710 #ifdef FEAT_XCLIPBOARD
711 /* Start using the X clipboard, unless the GUI was started. */
712 # ifdef FEAT_GUI
713 if (!gui.in_use)
714 # endif
716 setup_term_clip();
717 TIME_MSG("setup clipboard");
719 #endif
721 #ifdef FEAT_CLIENTSERVER
722 /* Prepare for being a Vim server. */
723 prepare_server(&params);
724 #endif
727 * If "-" argument given: Read file from stdin.
728 * Do this before starting Raw mode, because it may change things that the
729 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
730 * are the same terminal: "cat | vim -".
731 * Using autocommands here may cause trouble...
733 if (params.edit_type == EDIT_STDIN && !recoverymode)
734 read_stdin();
736 #if defined(UNIX) || defined(VMS)
737 /* When switching screens and something caused a message from a vimrc
738 * script, need to output an extra newline on exit. */
739 if ((did_emsg || msg_didout) && *T_TI != NUL)
740 newline_on_exit = TRUE;
741 #endif
744 * When done something that is not allowed or error message call
745 * wait_return. This must be done before starttermcap(), because it may
746 * switch to another screen. It must be done after settmode(TMODE_RAW),
747 * because we want to react on a single key stroke.
748 * Call settmode and starttermcap here, so the T_KS and T_TI may be
749 * defined by termcapinit and redefined in .exrc.
751 settmode(TMODE_RAW);
752 TIME_MSG("setting raw mode");
754 if (need_wait_return || msg_didany)
756 wait_return(TRUE);
757 TIME_MSG("waiting for return");
760 starttermcap(); /* start termcap if not done by wait_return() */
761 TIME_MSG("start termcap");
763 #ifdef FEAT_MOUSE
764 setmouse(); /* may start using the mouse */
765 #endif
766 if (scroll_region)
767 scroll_region_reset(); /* In case Rows changed */
768 scroll_start(); /* may scroll the screen to the right position */
771 * Don't clear the screen when starting in Ex mode, unless using the GUI.
773 if (exmode_active
774 #ifdef FEAT_GUI
775 && !gui.in_use
776 #endif
778 must_redraw = CLEAR;
779 else
781 screenclear(); /* clear screen */
782 TIME_MSG("clearing screen");
785 #ifdef FEAT_CRYPT
786 if (params.ask_for_key)
788 (void)get_crypt_key(TRUE, TRUE);
789 TIME_MSG("getting crypt key");
791 #endif
793 no_wait_return = TRUE;
796 * Create the requested number of windows and edit buffers in them.
797 * Also does recovery if "recoverymode" set.
799 create_windows(&params);
800 TIME_MSG("opening buffers");
802 #ifdef FEAT_EVAL
803 /* clear v:swapcommand */
804 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
805 #endif
807 /* Ex starts at last line of the file */
808 if (exmode_active)
809 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
811 #ifdef FEAT_AUTOCMD
812 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
813 TIME_MSG("BufEnter autocommands");
814 #endif
815 setpcmark();
817 #ifdef FEAT_QUICKFIX
819 * When started with "-q errorfile" jump to first error now.
821 if (params.edit_type == EDIT_QF)
823 qf_jump(NULL, 0, 0, FALSE);
824 TIME_MSG("jump to first error");
826 #endif
828 #ifdef FEAT_WINDOWS
830 * If opened more than one window, start editing files in the other
831 * windows.
833 edit_buffers(&params);
834 #endif
836 #ifdef FEAT_DIFF
837 if (params.diff_mode)
839 win_T *wp;
841 /* set options in each window for "vimdiff". */
842 for (wp = firstwin; wp != NULL; wp = wp->w_next)
843 diff_win_options(wp, TRUE);
845 #endif
848 * Shorten any of the filenames, but only when absolute.
850 shorten_fnames(FALSE);
853 * Need to jump to the tag before executing the '-c command'.
854 * Makes "vim -c '/return' -t main" work.
856 if (params.tagname != NULL)
858 #if defined(HAS_SWAP_EXISTS_ACTION)
859 swap_exists_did_quit = FALSE;
860 #endif
862 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
863 do_cmdline_cmd(IObuff);
864 TIME_MSG("jumping to tag");
866 #if defined(HAS_SWAP_EXISTS_ACTION)
867 /* If the user doesn't want to edit the file then we quit here. */
868 if (swap_exists_did_quit)
869 getout(1);
870 #endif
873 /* Execute any "+", "-c" and "-S" arguments. */
874 if (params.n_commands > 0)
875 exe_commands(&params);
877 RedrawingDisabled = 0;
878 redraw_all_later(NOT_VALID);
879 no_wait_return = FALSE;
880 starting = 0;
882 #ifdef FEAT_TERMRESPONSE
883 /* Requesting the termresponse is postponed until here, so that a "-c q"
884 * argument doesn't make it appear in the shell Vim was started from. */
885 may_req_termresponse();
886 #endif
888 /* start in insert mode */
889 if (p_im)
890 need_start_insertmode = TRUE;
892 #ifdef FEAT_AUTOCMD
893 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
894 TIME_MSG("VimEnter autocommands");
895 #endif
897 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
898 /* When a startup script or session file setup for diff'ing and
899 * scrollbind, sync the scrollbind now. */
900 if (curwin->w_p_diff && curwin->w_p_scb)
902 update_topline();
903 check_scrollbind((linenr_T)0, 0L);
904 TIME_MSG("diff scrollbinding");
906 #endif
908 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
909 mch_set_winsize_now(); /* Allow winsize changes from now on */
910 #endif
912 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
913 /* When tab pages were created, may need to update the tab pages line and
914 * scrollbars. This is skipped while creating them. */
915 if (first_tabpage->tp_next != NULL)
917 out_flush();
918 gui_init_which_components(NULL);
919 gui_update_scrollbars(TRUE);
921 need_mouse_correct = TRUE;
922 #endif
924 /* If ":startinsert" command used, stuff a dummy command to be able to
925 * call normal_cmd(), which will then start Insert mode. */
926 if (restart_edit != 0)
927 stuffcharReadbuff(K_NOP);
929 #ifdef FEAT_NETBEANS_INTG
930 if (usingNetbeans)
931 /* Tell the client that it can start sending commands. */
932 netbeans_startup_done();
933 #endif
935 TIME_MSG("before starting main loop");
938 * Call the main command loop. This never returns.
940 main_loop(FALSE, FALSE);
942 return 0;
944 #endif /* PROTO */
947 * Main loop: Execute Normal mode commands until exiting Vim.
948 * Also used to handle commands in the command-line window, until the window
949 * is closed.
950 * Also used to handle ":visual" command after ":global": execute Normal mode
951 * commands, return when entering Ex mode. "noexmode" is TRUE then.
953 void
954 main_loop(cmdwin, noexmode)
955 int cmdwin; /* TRUE when working in the command-line window */
956 int noexmode; /* TRUE when return on entering Ex mode */
958 oparg_T oa; /* operator arguments */
959 int previous_got_int = FALSE; /* "got_int" was TRUE */
961 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
962 /* Setup to catch a terminating error from the X server. Just ignore
963 * it, restore the state and continue. This might not always work
964 * properly, but at least we don't exit unexpectedly when the X server
965 * exists while Vim is running in a console. */
966 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
968 State = NORMAL;
969 # ifdef FEAT_VISUAL
970 VIsual_active = FALSE;
971 # endif
972 got_int = TRUE;
973 need_wait_return = FALSE;
974 global_busy = FALSE;
975 exmode_active = 0;
976 skip_redraw = FALSE;
977 RedrawingDisabled = 0;
978 no_wait_return = 0;
979 # ifdef FEAT_EVAL
980 emsg_skip = 0;
981 # endif
982 emsg_off = 0;
983 # ifdef FEAT_MOUSE
984 setmouse();
985 # endif
986 settmode(TMODE_RAW);
987 starttermcap();
988 scroll_start();
989 redraw_later_clear();
991 #endif
993 clear_oparg(&oa);
994 while (!cmdwin
995 #ifdef FEAT_CMDWIN
996 || cmdwin_result == 0
997 #endif
1000 if (stuff_empty())
1002 did_check_timestamps = FALSE;
1003 if (need_check_timestamps)
1004 check_timestamps(FALSE);
1005 if (need_wait_return) /* if wait_return still needed ... */
1006 wait_return(FALSE); /* ... call it now */
1007 if (need_start_insertmode && goto_im()
1008 #ifdef FEAT_VISUAL
1009 && !VIsual_active
1010 #endif
1013 need_start_insertmode = FALSE;
1014 stuffReadbuff((char_u *)"i"); /* start insert mode next */
1015 /* skip the fileinfo message now, because it would be shown
1016 * after insert mode finishes! */
1017 need_fileinfo = FALSE;
1021 /* Reset "got_int" now that we got back to the main loop. Except when
1022 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1023 * the ":g" command.
1024 * For ":g/pat/vi" we reset "got_int" when used once. When used
1025 * a second time we go back to Ex mode and abort the ":g" command. */
1026 if (got_int)
1028 if (noexmode && global_busy && !exmode_active && previous_got_int)
1030 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1031 * used and keep "got_int" set, so that it aborts ":g". */
1032 exmode_active = EXMODE_NORMAL;
1033 State = NORMAL;
1035 else if (!global_busy || !exmode_active)
1037 if (!quit_more)
1038 (void)vgetc(); /* flush all buffers */
1039 got_int = FALSE;
1041 previous_got_int = TRUE;
1043 else
1044 previous_got_int = FALSE;
1046 if (!exmode_active)
1047 msg_scroll = FALSE;
1048 quit_more = FALSE;
1051 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1052 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1053 * update cursor and redraw.
1055 if (skip_redraw || exmode_active)
1056 skip_redraw = FALSE;
1057 else if (do_redraw || stuff_empty())
1059 #ifdef FEAT_AUTOCMD
1060 /* Trigger CursorMoved if the cursor moved. */
1061 if (!finish_op && has_cursormoved()
1062 && !equalpos(last_cursormoved, curwin->w_cursor))
1064 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
1065 last_cursormoved = curwin->w_cursor;
1067 #endif
1069 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1070 /* Scroll-binding for diff mode may have been postponed until
1071 * here. Avoids doing it for every change. */
1072 if (diff_need_scrollbind)
1074 check_scrollbind((linenr_T)0, 0L);
1075 diff_need_scrollbind = FALSE;
1077 #endif
1078 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1079 /* Include a closed fold completely in the Visual area. */
1080 foldAdjustVisual();
1081 #endif
1082 #ifdef FEAT_FOLDING
1084 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1085 * contain the cursor.
1086 * When 'foldopen' is "all", open the fold(s) under the cursor.
1087 * This may mark the window for redrawing.
1089 if (hasAnyFolding(curwin) && !char_avail())
1091 foldCheckClose();
1092 if (fdo_flags & FDO_ALL)
1093 foldOpenCursor();
1095 #endif
1098 * Before redrawing, make sure w_topline is correct, and w_leftcol
1099 * if lines don't wrap, and w_skipcol if lines wrap.
1101 update_topline();
1102 validate_cursor();
1104 #ifdef FEAT_VISUAL
1105 if (VIsual_active)
1106 update_curbuf(INVERTED);/* update inverted part */
1107 else
1108 #endif
1109 if (must_redraw)
1110 update_screen(0);
1111 else if (redraw_cmdline || clear_cmdline)
1112 showmode();
1113 #ifdef FEAT_WINDOWS
1114 redraw_statuslines();
1115 #endif
1116 #ifdef FEAT_TITLE
1117 if (need_maketitle)
1118 maketitle();
1119 #endif
1120 /* display message after redraw */
1121 if (keep_msg != NULL)
1123 char_u *p;
1125 /* msg_attr_keep() will set keep_msg to NULL, must free the
1126 * string here. */
1127 p = keep_msg;
1128 keep_msg = NULL;
1129 msg_attr(p, keep_msg_attr);
1130 vim_free(p);
1132 if (need_fileinfo) /* show file info after redraw */
1134 fileinfo(FALSE, TRUE, FALSE);
1135 need_fileinfo = FALSE;
1138 emsg_on_display = FALSE; /* can delete error message now */
1139 did_emsg = FALSE;
1140 msg_didany = FALSE; /* reset lines_left in msg_start() */
1141 may_clear_sb_text(); /* clear scroll-back text on next msg */
1142 showruler(FALSE);
1144 setcursor();
1145 cursor_on();
1147 do_redraw = FALSE;
1149 #ifdef FEAT_GUI
1150 if (need_mouse_correct)
1151 gui_mouse_correct();
1152 #endif
1155 * Update w_curswant if w_set_curswant has been set.
1156 * Postponed until here to avoid computing w_virtcol too often.
1158 update_curswant();
1160 #ifdef FEAT_EVAL
1162 * May perform garbage collection when waiting for a character, but
1163 * only at the very toplevel. Otherwise we may be using a List or
1164 * Dict internally somewhere.
1165 * "may_garbage_collect" is reset in vgetc() which is invoked through
1166 * do_exmode() and normal_cmd().
1168 may_garbage_collect = (!cmdwin && !noexmode);
1169 #endif
1171 * If we're invoked as ex, do a round of ex commands.
1172 * Otherwise, get and execute a normal mode command.
1174 if (exmode_active)
1176 if (noexmode) /* End of ":global/path/visual" commands */
1177 return;
1178 do_exmode(exmode_active == EXMODE_VIM);
1180 else
1181 normal_cmd(&oa, TRUE);
1186 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1188 * Exit, but leave behind swap files for modified buffers.
1190 void
1191 getout_preserve_modified(exitval)
1192 int exitval;
1194 # if defined(SIGHUP) && defined(SIG_IGN)
1195 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1196 * makes Vim exit and then handling SIGHUP causes various reentrance
1197 * problems. */
1198 signal(SIGHUP, SIG_IGN);
1199 # endif
1201 ml_close_notmod(); /* close all not-modified buffers */
1202 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
1203 ml_close_all(FALSE); /* close all memfiles, without deleting */
1204 getout(exitval); /* exit Vim properly */
1206 #endif
1209 /* Exit properly */
1210 void
1211 getout(exitval)
1212 int exitval;
1214 #ifdef FEAT_AUTOCMD
1215 buf_T *buf;
1216 win_T *wp;
1217 tabpage_T *tp, *next_tp;
1218 #endif
1220 exiting = TRUE;
1222 /* When running in Ex mode an error causes us to exit with a non-zero exit
1223 * code. POSIX requires this, although it's not 100% clear from the
1224 * standard. */
1225 if (exmode_active)
1226 exitval += ex_exitval;
1228 /* Position the cursor on the last screen line, below all the text */
1229 #ifdef FEAT_GUI
1230 if (!gui.in_use)
1231 #endif
1232 windgoto((int)Rows - 1, 0);
1234 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1235 /* Optionally print hashtable efficiency. */
1236 hash_debug_results();
1237 #endif
1239 #ifdef FEAT_GUI
1240 msg_didany = FALSE;
1241 #endif
1243 #ifdef FEAT_AUTOCMD
1244 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1245 # if defined FEAT_WINDOWS
1246 for (tp = first_tabpage; tp != NULL; tp = next_tp)
1248 next_tp = tp->tp_next;
1249 for (wp = (tp == curtab)
1250 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
1252 buf = wp->w_buffer;
1253 if (buf->b_changedtick != -1)
1255 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
1256 FALSE, buf);
1257 buf->b_changedtick = -1; /* note that we did it already */
1258 /* start all over, autocommands may mess up the lists */
1259 next_tp = first_tabpage;
1260 break;
1264 # else
1265 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
1266 # endif
1268 /* Trigger BufUnload for buffers that are loaded */
1269 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1270 if (buf->b_ml.ml_mfp != NULL)
1272 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
1273 FALSE, buf);
1274 if (!buf_valid(buf)) /* autocmd may delete the buffer */
1275 break;
1277 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
1278 #endif
1280 #ifdef FEAT_VIMINFO
1281 if (*p_viminfo != NUL)
1282 /* Write out the registers, history, marks etc, to the viminfo file */
1283 write_viminfo(NULL, FALSE);
1284 #endif
1286 #ifdef FEAT_AUTOCMD
1287 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
1288 #endif
1290 #ifdef FEAT_PROFILE
1291 profile_dump();
1292 #endif
1294 if (did_emsg
1295 #ifdef FEAT_GUI
1296 || (gui.in_use && msg_didany && p_verbose > 0)
1297 #endif
1300 /* give the user a chance to read the (error) message */
1301 no_wait_return = FALSE;
1302 wait_return(FALSE);
1305 #ifdef FEAT_AUTOCMD
1306 /* Position the cursor again, the autocommands may have moved it */
1307 # ifdef FEAT_GUI
1308 if (!gui.in_use)
1309 # endif
1310 windgoto((int)Rows - 1, 0);
1311 #endif
1313 #ifdef FEAT_MZSCHEME
1314 mzscheme_end();
1315 #endif
1316 #ifdef FEAT_TCL
1317 tcl_end();
1318 #endif
1319 #ifdef FEAT_RUBY
1320 ruby_end();
1321 #endif
1322 #ifdef FEAT_PYTHON
1323 python_end();
1324 #endif
1325 #ifdef FEAT_PERL
1326 perl_end();
1327 #endif
1328 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1329 iconv_end();
1330 #endif
1331 #ifdef FEAT_NETBEANS_INTG
1332 netbeans_end();
1333 #endif
1334 #ifdef FEAT_CSCOPE
1335 cs_end();
1336 #endif
1337 #ifdef FEAT_EVAL
1338 if (garbage_collect_at_exit)
1339 garbage_collect();
1340 #endif
1342 mch_exit(exitval);
1346 * Get a (optional) count for a Vim argument.
1348 static int
1349 get_number_arg(p, idx, def)
1350 char_u *p; /* pointer to argument */
1351 int *idx; /* index in argument, is incremented */
1352 int def; /* default value */
1354 if (vim_isdigit(p[*idx]))
1356 def = atoi((char *)&(p[*idx]));
1357 while (vim_isdigit(p[*idx]))
1358 *idx = *idx + 1;
1360 return def;
1363 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1365 * Setup to use the current locale (for ctype() and many other things).
1367 static void
1368 init_locale()
1370 setlocale(LC_ALL, "");
1371 # ifdef WIN32
1372 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1373 * text while it's expecting text in the current locale. This call avoids
1374 * that. */
1375 setlocale(LC_CTYPE, "C");
1376 # endif
1378 # ifdef FEAT_GETTEXT
1380 int mustfree = FALSE;
1381 char_u *p;
1383 # ifdef DYNAMIC_GETTEXT
1384 /* Initialize the gettext library */
1385 dyn_libintl_init(NULL);
1386 # endif
1387 /* expand_env() doesn't work yet, because chartab[] is not initialized
1388 * yet, call vim_getenv() directly */
1389 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
1390 if (p != NULL && *p != NUL)
1392 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
1393 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
1395 if (mustfree)
1396 vim_free(p);
1397 textdomain(VIMPACKAGE);
1399 # endif
1401 #endif
1404 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1405 * If the executable name starts with "r" we disable shell commands.
1406 * If the next character is "e" we run in Easy mode.
1407 * If the next character is "g" we run the GUI version.
1408 * If the next characters are "view" we start in readonly mode.
1409 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1410 * If the next characters are "ex" we start in Ex mode. If it's followed
1411 * by "im" use improved Ex mode.
1413 static void
1414 parse_command_name(parmp)
1415 mparm_T *parmp;
1417 char_u *initstr;
1419 initstr = gettail((char_u *)parmp->argv[0]);
1421 #ifdef MACOS_X_UNIX
1422 /* An issue has been seen when launching Vim in such a way that
1423 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1424 * executable or a symbolic link of it. Until this issue is resolved
1425 * we prohibit the GUI from being used.
1427 if (STRCMP(initstr, parmp->argv[0]) == 0)
1428 disallow_gui = TRUE;
1430 /* TODO: On MacOS X default to gui if argv[0] ends in:
1431 * /Vim.app/Contents/MacOS/Vim */
1432 #endif
1434 #ifdef FEAT_EVAL
1435 set_vim_var_string(VV_PROGNAME, initstr, -1);
1436 #endif
1438 if (TOLOWER_ASC(initstr[0]) == 'r')
1440 restricted = TRUE;
1441 ++initstr;
1444 /* Avoid using evim mode for "editor". */
1445 if (TOLOWER_ASC(initstr[0]) == 'e'
1446 && (TOLOWER_ASC(initstr[1]) == 'v'
1447 || TOLOWER_ASC(initstr[1]) == 'g'))
1449 #ifdef FEAT_GUI
1450 gui.starting = TRUE;
1451 #endif
1452 parmp->evim_mode = TRUE;
1453 ++initstr;
1456 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
1458 main_start_gui();
1459 #ifdef FEAT_GUI
1460 ++initstr;
1461 #endif
1464 if (STRNICMP(initstr, "view", 4) == 0)
1466 readonlymode = TRUE;
1467 curbuf->b_p_ro = TRUE;
1468 p_uc = 10000; /* don't update very often */
1469 initstr += 4;
1471 else if (STRNICMP(initstr, "vim", 3) == 0)
1472 initstr += 3;
1474 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1475 if (STRICMP(initstr, "diff") == 0)
1477 #ifdef FEAT_DIFF
1478 parmp->diff_mode = TRUE;
1479 #else
1480 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1481 mch_errmsg("\n");
1482 mch_exit(2);
1483 #endif
1486 if (STRNICMP(initstr, "ex", 2) == 0)
1488 if (STRNICMP(initstr + 2, "im", 2) == 0)
1489 exmode_active = EXMODE_VIM;
1490 else
1491 exmode_active = EXMODE_NORMAL;
1492 change_compatible(TRUE); /* set 'compatible' */
1497 * Get the name of the display, before gui_prepare() removes it from
1498 * argv[]. Used for the xterm-clipboard display.
1500 * Also find the --server... arguments and --socketid and --windowid
1502 /*ARGSUSED*/
1503 static void
1504 early_arg_scan(parmp)
1505 mparm_T *parmp;
1507 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
1508 int argc = parmp->argc;
1509 char **argv = parmp->argv;
1510 int i;
1512 for (i = 1; i < argc; i++)
1514 if (STRCMP(argv[i], "--") == 0)
1515 break;
1516 # ifdef FEAT_XCLIPBOARD
1517 else if (STRICMP(argv[i], "-display") == 0
1518 # if defined(FEAT_GUI_GTK)
1519 || STRICMP(argv[i], "--display") == 0
1520 # endif
1523 if (i == argc - 1)
1524 mainerr_arg_missing((char_u *)argv[i]);
1525 xterm_display = argv[++i];
1527 # endif
1528 # ifdef FEAT_CLIENTSERVER
1529 else if (STRICMP(argv[i], "--servername") == 0)
1531 if (i == argc - 1)
1532 mainerr_arg_missing((char_u *)argv[i]);
1533 parmp->serverName_arg = (char_u *)argv[++i];
1535 else if (STRICMP(argv[i], "--serverlist") == 0)
1536 parmp->serverArg = TRUE;
1537 else if (STRNICMP(argv[i], "--remote", 8) == 0)
1539 parmp->serverArg = TRUE;
1540 # ifdef FEAT_GUI
1541 if (strstr(argv[i], "-wait") != 0)
1542 /* don't fork() when starting the GUI to edit files ourself */
1543 gui.dofork = FALSE;
1544 # endif
1546 # endif
1548 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1549 # ifdef FEAT_GUI_W32
1550 else if (STRICMP(argv[i], "--windowid") == 0)
1551 # else
1552 else if (STRICMP(argv[i], "--socketid") == 0)
1553 # endif
1555 unsigned int id;
1556 int count;
1558 if (i == argc - 1)
1559 mainerr_arg_missing((char_u *)argv[i]);
1560 if (STRNICMP(argv[i+1], "0x", 2) == 0)
1561 count = sscanf(&(argv[i + 1][2]), "%x", &id);
1562 else
1563 count = sscanf(argv[i+1], "%u", &id);
1564 if (count != 1)
1565 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
1566 else
1567 # ifdef FEAT_GUI_W32
1568 win_socket_id = id;
1569 # else
1570 gtk_socket_id = id;
1571 # endif
1572 i++;
1574 # endif
1575 # ifdef FEAT_GUI_GTK
1576 else if (STRICMP(argv[i], "--echo-wid") == 0)
1577 echo_wid_arg = TRUE;
1578 # endif
1580 #endif
1584 * Scan the command line arguments.
1586 static void
1587 command_line_scan(parmp)
1588 mparm_T *parmp;
1590 int argc = parmp->argc;
1591 char **argv = parmp->argv;
1592 int argv_idx; /* index in argv[n][] */
1593 int had_minmin = FALSE; /* found "--" argument */
1594 int want_argument; /* option argument with argument */
1595 int c;
1596 char_u *p = NULL;
1597 long n;
1599 --argc;
1600 ++argv;
1601 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
1602 while (argc > 0)
1605 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1607 if (argv[0][0] == '+' && !had_minmin)
1609 if (parmp->n_commands >= MAX_ARG_CMDS)
1610 mainerr(ME_EXTRA_CMD, NULL);
1611 argv_idx = -1; /* skip to next argument */
1612 if (argv[0][1] == NUL)
1613 parmp->commands[parmp->n_commands++] = (char_u *)"$";
1614 else
1615 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
1619 * Optional argument.
1621 else if (argv[0][0] == '-' && !had_minmin)
1623 want_argument = FALSE;
1624 c = argv[0][argv_idx++];
1625 #ifdef VMS
1627 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1628 * and "-/X" as "-X".
1630 if (c == '/')
1632 c = argv[0][argv_idx++];
1633 c = TOUPPER_ASC(c);
1635 else
1636 c = TOLOWER_ASC(c);
1637 #endif
1638 switch (c)
1640 case NUL: /* "vim -" read from stdin */
1641 /* "ex -" silent mode */
1642 if (exmode_active)
1643 silent_mode = TRUE;
1644 else
1646 if (parmp->edit_type != EDIT_NONE)
1647 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1648 parmp->edit_type = EDIT_STDIN;
1649 read_cmd_fd = 2; /* read from stderr instead of stdin */
1651 argv_idx = -1; /* skip to next argument */
1652 break;
1654 case '-': /* "--" don't take any more option arguments */
1655 /* "--help" give help message */
1656 /* "--version" give version message */
1657 /* "--literal" take files literally */
1658 /* "--nofork" don't fork */
1659 /* "--noplugin[s]" skip plugins */
1660 /* "--cmd <cmd>" execute cmd before vimrc */
1661 if (STRICMP(argv[0] + argv_idx, "help") == 0)
1662 usage();
1663 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
1665 Columns = 80; /* need to init Columns */
1666 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
1667 list_version();
1668 msg_putchar('\n');
1669 msg_didout = FALSE;
1670 mch_exit(0);
1672 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
1674 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1675 parmp->literal = TRUE;
1676 #endif
1678 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
1680 #ifdef FEAT_GUI
1681 gui.dofork = FALSE; /* don't fork() when starting GUI */
1682 #endif
1684 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
1685 p_lpl = FALSE;
1686 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
1688 want_argument = TRUE;
1689 argv_idx += 3;
1691 #ifdef FEAT_CLIENTSERVER
1692 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
1693 ; /* already processed -- no arg */
1694 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
1695 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
1697 /* already processed -- snatch the following arg */
1698 if (argc > 1)
1700 --argc;
1701 ++argv;
1704 #endif
1705 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1706 # ifdef FEAT_GUI_GTK
1707 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
1708 # else
1709 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0)
1710 # endif
1712 /* already processed -- snatch the following arg */
1713 if (argc > 1)
1715 --argc;
1716 ++argv;
1719 #endif
1720 #ifdef FEAT_GUI_GTK
1721 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
1723 /* already processed, skip */
1725 #endif
1726 else
1728 if (argv[0][argv_idx])
1729 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
1730 had_minmin = TRUE;
1732 if (!want_argument)
1733 argv_idx = -1; /* skip to next argument */
1734 break;
1736 case 'A': /* "-A" start in Arabic mode */
1737 #ifdef FEAT_ARABIC
1738 set_option_value((char_u *)"arabic", 1L, NULL, 0);
1739 #else
1740 mch_errmsg(_(e_noarabic));
1741 mch_exit(2);
1742 #endif
1743 break;
1745 case 'b': /* "-b" binary mode */
1746 /* Needs to be effective before expanding file names, because
1747 * for Win32 this makes us edit a shortcut file itself,
1748 * instead of the file it links to. */
1749 set_options_bin(curbuf->b_p_bin, 1, 0);
1750 curbuf->b_p_bin = 1; /* binary file I/O */
1751 break;
1753 case 'C': /* "-C" Compatible */
1754 change_compatible(TRUE);
1755 break;
1757 case 'e': /* "-e" Ex mode */
1758 exmode_active = EXMODE_NORMAL;
1759 break;
1761 case 'E': /* "-E" Improved Ex mode */
1762 exmode_active = EXMODE_VIM;
1763 break;
1765 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1766 window directly, not with newcli */
1767 #ifdef FEAT_GUI
1768 gui.dofork = FALSE; /* don't fork() when starting GUI */
1769 #endif
1770 break;
1772 case 'g': /* "-g" start GUI */
1773 main_start_gui();
1774 break;
1776 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1777 #ifdef FEAT_FKMAP
1778 curwin->w_p_rl = p_fkmap = TRUE;
1779 #else
1780 mch_errmsg(_(e_nofarsi));
1781 mch_exit(2);
1782 #endif
1783 break;
1785 case 'h': /* "-h" give help message */
1786 #ifdef FEAT_GUI_GNOME
1787 /* Tell usage() to exit for "gvim". */
1788 gui.starting = FALSE;
1789 #endif
1790 usage();
1791 break;
1793 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1794 #ifdef FEAT_RIGHTLEFT
1795 curwin->w_p_rl = p_hkmap = TRUE;
1796 #else
1797 mch_errmsg(_(e_nohebrew));
1798 mch_exit(2);
1799 #endif
1800 break;
1802 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1803 #ifdef FEAT_LISP
1804 set_option_value((char_u *)"lisp", 1L, NULL, 0);
1805 p_sm = TRUE;
1806 #endif
1807 break;
1809 case 'M': /* "-M" no changes or writing of files */
1810 reset_modifiable();
1811 /* FALLTHROUGH */
1813 case 'm': /* "-m" no writing of files */
1814 p_write = FALSE;
1815 break;
1817 case 'y': /* "-y" easy mode */
1818 #ifdef FEAT_GUI
1819 gui.starting = TRUE; /* start GUI a bit later */
1820 #endif
1821 parmp->evim_mode = TRUE;
1822 break;
1824 case 'N': /* "-N" Nocompatible */
1825 change_compatible(FALSE);
1826 break;
1828 case 'n': /* "-n" no swap file */
1829 parmp->no_swap_file = TRUE;
1830 break;
1832 case 'p': /* "-p[N]" open N tab pages */
1833 #ifdef TARGET_API_MAC_OSX
1834 /* For some reason on MacOS X, an argument like:
1835 -psn_0_10223617 is passed in when invoke from Finder
1836 or with the 'open' command */
1837 if (argv[0][argv_idx] == 's')
1839 argv_idx = -1; /* bypass full -psn */
1840 main_start_gui();
1841 break;
1843 #endif
1844 #ifdef FEAT_WINDOWS
1845 /* default is 0: open window for each file */
1846 parmp->window_count = get_number_arg((char_u *)argv[0],
1847 &argv_idx, 0);
1848 parmp->window_layout = WIN_TABS;
1849 #endif
1850 break;
1852 case 'o': /* "-o[N]" open N horizontal split windows */
1853 #ifdef FEAT_WINDOWS
1854 /* default is 0: open window for each file */
1855 parmp->window_count = get_number_arg((char_u *)argv[0],
1856 &argv_idx, 0);
1857 parmp->window_layout = WIN_HOR;
1858 #endif
1859 break;
1861 case 'O': /* "-O[N]" open N vertical split windows */
1862 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1863 /* default is 0: open window for each file */
1864 parmp->window_count = get_number_arg((char_u *)argv[0],
1865 &argv_idx, 0);
1866 parmp->window_layout = WIN_VER;
1867 #endif
1868 break;
1870 #ifdef FEAT_QUICKFIX
1871 case 'q': /* "-q" QuickFix mode */
1872 if (parmp->edit_type != EDIT_NONE)
1873 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1874 parmp->edit_type = EDIT_QF;
1875 if (argv[0][argv_idx]) /* "-q{errorfile}" */
1877 parmp->use_ef = (char_u *)argv[0] + argv_idx;
1878 argv_idx = -1;
1880 else if (argc > 1) /* "-q {errorfile}" */
1881 want_argument = TRUE;
1882 break;
1883 #endif
1885 case 'R': /* "-R" readonly mode */
1886 readonlymode = TRUE;
1887 curbuf->b_p_ro = TRUE;
1888 p_uc = 10000; /* don't update very often */
1889 break;
1891 case 'r': /* "-r" recovery mode */
1892 case 'L': /* "-L" recovery mode */
1893 recoverymode = 1;
1894 break;
1896 case 's':
1897 if (exmode_active) /* "-s" silent (batch) mode */
1898 silent_mode = TRUE;
1899 else /* "-s {scriptin}" read from script file */
1900 want_argument = TRUE;
1901 break;
1903 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1904 if (parmp->edit_type != EDIT_NONE)
1905 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
1906 parmp->edit_type = EDIT_TAG;
1907 if (argv[0][argv_idx]) /* "-t{tag}" */
1909 parmp->tagname = (char_u *)argv[0] + argv_idx;
1910 argv_idx = -1;
1912 else /* "-t {tag}" */
1913 want_argument = TRUE;
1914 break;
1916 #ifdef FEAT_EVAL
1917 case 'D': /* "-D" Debugging */
1918 parmp->use_debug_break_level = 9999;
1919 break;
1920 #endif
1921 #ifdef FEAT_DIFF
1922 case 'd': /* "-d" 'diff' */
1923 # ifdef AMIGA
1924 /* check for "-dev {device}" */
1925 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
1926 want_argument = TRUE;
1927 else
1928 # endif
1929 parmp->diff_mode = TRUE;
1930 break;
1931 #endif
1932 case 'V': /* "-V{N}" Verbose level */
1933 /* default is 10: a little bit verbose */
1934 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1935 if (argv[0][argv_idx] != NUL)
1937 set_option_value((char_u *)"verbosefile", 0L,
1938 (char_u *)argv[0] + argv_idx, 0);
1939 argv_idx = (int)STRLEN(argv[0]);
1941 break;
1943 case 'v': /* "-v" Vi-mode (as if called "vi") */
1944 exmode_active = 0;
1945 #ifdef FEAT_GUI
1946 gui.starting = FALSE; /* don't start GUI */
1947 #endif
1948 break;
1950 case 'w': /* "-w{number}" set window height */
1951 /* "-w {scriptout}" write to script */
1952 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
1954 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
1955 set_option_value((char_u *)"window", n, NULL, 0);
1956 break;
1958 want_argument = TRUE;
1959 break;
1961 #ifdef FEAT_CRYPT
1962 case 'x': /* "-x" encrypted reading/writing of files */
1963 parmp->ask_for_key = TRUE;
1964 break;
1965 #endif
1967 case 'X': /* "-X" don't connect to X server */
1968 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
1969 x_no_connect = TRUE;
1970 #endif
1971 break;
1973 case 'Z': /* "-Z" restricted mode */
1974 restricted = TRUE;
1975 break;
1977 case 'c': /* "-c{command}" or "-c {command}" execute
1978 command */
1979 if (argv[0][argv_idx] != NUL)
1981 if (parmp->n_commands >= MAX_ARG_CMDS)
1982 mainerr(ME_EXTRA_CMD, NULL);
1983 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
1984 + argv_idx;
1985 argv_idx = -1;
1986 break;
1988 /*FALLTHROUGH*/
1989 case 'S': /* "-S {file}" execute Vim script */
1990 case 'i': /* "-i {viminfo}" use for viminfo */
1991 #ifndef FEAT_DIFF
1992 case 'd': /* "-d {device}" device (for Amiga) */
1993 #endif
1994 case 'T': /* "-T {terminal}" terminal name */
1995 case 'u': /* "-u {vimrc}" vim inits file */
1996 case 'U': /* "-U {gvimrc}" gvim inits file */
1997 case 'W': /* "-W {scriptout}" overwrite */
1998 #ifdef FEAT_GUI_W32
1999 case 'P': /* "-P {parent title}" MDI parent */
2000 #endif
2001 want_argument = TRUE;
2002 break;
2004 default:
2005 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
2009 * Handle option arguments with argument.
2011 if (want_argument)
2014 * Check for garbage immediately after the option letter.
2016 if (argv[0][argv_idx] != NUL)
2017 mainerr(ME_GARBAGE, (char_u *)argv[0]);
2019 --argc;
2020 if (argc < 1 && c != 'S')
2021 mainerr_arg_missing((char_u *)argv[0]);
2022 ++argv;
2023 argv_idx = -1;
2025 switch (c)
2027 case 'c': /* "-c {command}" execute command */
2028 case 'S': /* "-S {file}" execute Vim script */
2029 if (parmp->n_commands >= MAX_ARG_CMDS)
2030 mainerr(ME_EXTRA_CMD, NULL);
2031 if (c == 'S')
2033 char *a;
2035 if (argc < 1)
2036 /* "-S" without argument: use default session file
2037 * name. */
2038 a = SESSION_FILE;
2039 else if (argv[0][0] == '-')
2041 /* "-S" followed by another option: use default
2042 * session file name. */
2043 a = SESSION_FILE;
2044 ++argc;
2045 --argv;
2047 else
2048 a = argv[0];
2049 p = alloc((unsigned)(STRLEN(a) + 4));
2050 if (p == NULL)
2051 mch_exit(2);
2052 sprintf((char *)p, "so %s", a);
2053 parmp->cmds_tofree[parmp->n_commands] = TRUE;
2054 parmp->commands[parmp->n_commands++] = p;
2056 else
2057 parmp->commands[parmp->n_commands++] =
2058 (char_u *)argv[0];
2059 break;
2061 case '-': /* "--cmd {command}" execute command */
2062 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
2063 mainerr(ME_EXTRA_CMD, NULL);
2064 parmp->pre_commands[parmp->n_pre_commands++] =
2065 (char_u *)argv[0];
2066 break;
2068 /* case 'd': -d {device} is handled in mch_check_win() for the
2069 * Amiga */
2071 #ifdef FEAT_QUICKFIX
2072 case 'q': /* "-q {errorfile}" QuickFix mode */
2073 parmp->use_ef = (char_u *)argv[0];
2074 break;
2075 #endif
2077 case 'i': /* "-i {viminfo}" use for viminfo */
2078 use_viminfo = (char_u *)argv[0];
2079 break;
2081 case 's': /* "-s {scriptin}" read from script file */
2082 if (scriptin[0] != NULL)
2084 scripterror:
2085 mch_errmsg(_("Attempt to open script file again: \""));
2086 mch_errmsg(argv[-1]);
2087 mch_errmsg(" ");
2088 mch_errmsg(argv[0]);
2089 mch_errmsg("\"\n");
2090 mch_exit(2);
2092 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
2094 mch_errmsg(_("Cannot open for reading: \""));
2095 mch_errmsg(argv[0]);
2096 mch_errmsg("\"\n");
2097 mch_exit(2);
2099 if (save_typebuf() == FAIL)
2100 mch_exit(2); /* out of memory */
2101 break;
2103 case 't': /* "-t {tag}" */
2104 parmp->tagname = (char_u *)argv[0];
2105 break;
2107 case 'T': /* "-T {terminal}" terminal name */
2109 * The -T term argument is always available and when
2110 * HAVE_TERMLIB is supported it overrides the environment
2111 * variable TERM.
2113 #ifdef FEAT_GUI
2114 if (term_is_gui((char_u *)argv[0]))
2115 gui.starting = TRUE; /* start GUI a bit later */
2116 else
2117 #endif
2118 parmp->term = (char_u *)argv[0];
2119 break;
2121 case 'u': /* "-u {vimrc}" vim inits file */
2122 parmp->use_vimrc = (char_u *)argv[0];
2123 break;
2125 case 'U': /* "-U {gvimrc}" gvim inits file */
2126 #ifdef FEAT_GUI
2127 use_gvimrc = (char_u *)argv[0];
2128 #endif
2129 break;
2131 case 'w': /* "-w {nr}" 'window' value */
2132 /* "-w {scriptout}" append to script file */
2133 if (vim_isdigit(*((char_u *)argv[0])))
2135 argv_idx = 0;
2136 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
2137 set_option_value((char_u *)"window", n, NULL, 0);
2138 argv_idx = -1;
2139 break;
2141 /*FALLTHROUGH*/
2142 case 'W': /* "-W {scriptout}" overwrite script file */
2143 if (scriptout != NULL)
2144 goto scripterror;
2145 if ((scriptout = mch_fopen(argv[0],
2146 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
2148 mch_errmsg(_("Cannot open for script output: \""));
2149 mch_errmsg(argv[0]);
2150 mch_errmsg("\"\n");
2151 mch_exit(2);
2153 break;
2155 #ifdef FEAT_GUI_W32
2156 case 'P': /* "-P {parent title}" MDI parent */
2157 gui_mch_set_parent(argv[0]);
2158 break;
2159 #endif
2165 * File name argument.
2167 else
2169 argv_idx = -1; /* skip to next argument */
2171 /* Check for only one type of editing. */
2172 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
2173 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
2174 parmp->edit_type = EDIT_FILE;
2176 #ifdef MSWIN
2177 /* Remember if the argument was a full path before changing
2178 * slashes to backslashes. */
2179 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
2180 parmp->full_path = TRUE;
2181 #endif
2183 /* Add the file to the global argument list. */
2184 if (ga_grow(&global_alist.al_ga, 1) == FAIL
2185 || (p = vim_strsave((char_u *)argv[0])) == NULL)
2186 mch_exit(2);
2187 #ifdef FEAT_DIFF
2188 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
2189 && !mch_isdir(alist_name(&GARGLIST[0])))
2191 char_u *r;
2193 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
2194 if (r != NULL)
2196 vim_free(p);
2197 p = r;
2200 #endif
2201 #if defined(__CYGWIN32__) && !defined(WIN32)
2203 * If vim is invoked by non-Cygwin tools, convert away any
2204 * DOS paths, so things like .swp files are created correctly.
2205 * Look for evidence of non-Cygwin paths before we bother.
2206 * This is only for when using the Unix files.
2208 if (strpbrk(p, "\\:") != NULL)
2210 char posix_path[PATH_MAX];
2212 cygwin_conv_to_posix_path(p, posix_path);
2213 vim_free(p);
2214 p = vim_strsave(posix_path);
2215 if (p == NULL)
2216 mch_exit(2);
2218 #endif
2220 #ifdef USE_FNAME_CASE
2221 /* Make the case of the file name match the actual file. */
2222 fname_case(p, 0);
2223 #endif
2225 alist_add(&global_alist, p,
2226 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2227 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
2228 #else
2229 2 /* add buffer number now and use curbuf */
2230 #endif
2233 #if defined(FEAT_MBYTE) && defined(WIN32)
2235 /* Remember this argument has been added to the argument list.
2236 * Needed when 'encoding' is changed. */
2237 used_file_arg(argv[0], parmp->literal, parmp->full_path,
2238 parmp->diff_mode);
2240 #endif
2244 * If there are no more letters after the current "-", go to next
2245 * argument. argv_idx is set to -1 when the current argument is to be
2246 * skipped.
2248 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
2250 --argc;
2251 ++argv;
2252 argv_idx = 1;
2256 #ifdef FEAT_EVAL
2257 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2258 * one. */
2259 if (parmp->n_commands > 0)
2261 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
2262 if (p != NULL)
2264 sprintf((char *)p, ":%s\r", parmp->commands[0]);
2265 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
2266 vim_free(p);
2269 #endif
2273 * Print a warning if stdout is not a terminal.
2274 * When starting in Ex mode and commands come from a file, set Silent mode.
2276 static void
2277 check_tty(parmp)
2278 mparm_T *parmp;
2280 int input_isatty; /* is active input a terminal? */
2282 input_isatty = mch_input_isatty();
2283 if (exmode_active)
2285 if (!input_isatty)
2286 silent_mode = TRUE;
2288 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
2289 #ifdef FEAT_GUI
2290 /* don't want the delay when started from the desktop */
2291 && !gui.starting
2292 #endif
2295 #ifdef NBDEBUG
2297 * This shouldn't be necessary. But if I run netbeans with the log
2298 * output coming to the console and XOpenDisplay fails, I get vim
2299 * trying to start with input/output to my console tty. This fills my
2300 * input buffer so fast I can't even kill the process in under 2
2301 * minutes (and it beeps continuously the whole time :-)
2303 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
2305 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2306 exit(1);
2308 #endif
2309 if (!parmp->stdout_isatty)
2310 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2311 if (!input_isatty)
2312 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2313 out_flush();
2314 if (scriptin[0] == NULL)
2315 ui_delay(2000L, TRUE);
2316 TIME_MSG("Warning delay");
2321 * Read text from stdin.
2323 static void
2324 read_stdin()
2326 int i;
2328 #if defined(HAS_SWAP_EXISTS_ACTION)
2329 /* When getting the ATTENTION prompt here, use a dialog */
2330 swap_exists_action = SEA_DIALOG;
2331 #endif
2332 no_wait_return = TRUE;
2333 i = msg_didany;
2334 set_buflisted(TRUE);
2335 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
2336 no_wait_return = FALSE;
2337 msg_didany = i;
2338 TIME_MSG("reading stdin");
2339 #if defined(HAS_SWAP_EXISTS_ACTION)
2340 check_swap_exists_action();
2341 #endif
2342 #if !(defined(AMIGA) || defined(MACOS))
2344 * Close stdin and dup it from stderr. Required for GPM to work
2345 * properly, and for running external commands.
2346 * Is there any other system that cannot do this?
2348 close(0);
2349 dup(2);
2350 #endif
2354 * Create the requested number of windows and edit buffers in them.
2355 * Also does recovery if "recoverymode" set.
2357 /*ARGSUSED*/
2358 static void
2359 create_windows(parmp)
2360 mparm_T *parmp;
2362 #ifdef FEAT_WINDOWS
2363 int dorewind;
2364 int done = 0;
2367 * Create the number of windows that was requested.
2369 if (parmp->window_count == -1) /* was not set */
2370 parmp->window_count = 1;
2371 if (parmp->window_count == 0)
2372 parmp->window_count = GARGCOUNT;
2373 if (parmp->window_count > 1)
2375 /* Don't change the windows if there was a command in .vimrc that
2376 * already split some windows */
2377 if (parmp->window_layout == 0)
2378 parmp->window_layout = WIN_HOR;
2379 if (parmp->window_layout == WIN_TABS)
2381 parmp->window_count = make_tabpages(parmp->window_count);
2382 TIME_MSG("making tab pages");
2384 else if (firstwin->w_next == NULL)
2386 parmp->window_count = make_windows(parmp->window_count,
2387 parmp->window_layout == WIN_VER);
2388 TIME_MSG("making windows");
2390 else
2391 parmp->window_count = win_count();
2393 else
2394 parmp->window_count = 1;
2395 #endif
2397 if (recoverymode) /* do recover */
2399 msg_scroll = TRUE; /* scroll message up */
2400 ml_recover();
2401 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
2402 getout(1);
2403 do_modelines(0); /* do modelines */
2405 else
2408 * Open a buffer for windows that don't have one yet.
2409 * Commands in the .vimrc might have loaded a file or split the window.
2410 * Watch out for autocommands that delete a window.
2412 #ifdef FEAT_AUTOCMD
2414 * Don't execute Win/Buf Enter/Leave autocommands here
2416 ++autocmd_no_enter;
2417 ++autocmd_no_leave;
2418 #endif
2419 #ifdef FEAT_WINDOWS
2420 dorewind = TRUE;
2421 while (done++ < 1000)
2423 if (dorewind)
2425 if (parmp->window_layout == WIN_TABS)
2426 goto_tabpage(1);
2427 else
2428 curwin = firstwin;
2430 else if (parmp->window_layout == WIN_TABS)
2432 if (curtab->tp_next == NULL)
2433 break;
2434 goto_tabpage(0);
2436 else
2438 if (curwin->w_next == NULL)
2439 break;
2440 curwin = curwin->w_next;
2442 dorewind = FALSE;
2443 #endif
2444 curbuf = curwin->w_buffer;
2445 if (curbuf->b_ml.ml_mfp == NULL)
2447 #ifdef FEAT_FOLDING
2448 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2449 if (p_fdls >= 0)
2450 curwin->w_p_fdl = p_fdls;
2451 #endif
2452 #if defined(HAS_SWAP_EXISTS_ACTION)
2453 /* When getting the ATTENTION prompt here, use a dialog */
2454 swap_exists_action = SEA_DIALOG;
2455 #endif
2456 set_buflisted(TRUE);
2457 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
2459 #if defined(HAS_SWAP_EXISTS_ACTION)
2460 if (swap_exists_action == SEA_QUIT)
2462 if (got_int || only_one_window())
2464 /* abort selected or quit and only one window */
2465 did_emsg = FALSE; /* avoid hit-enter prompt */
2466 getout(1);
2468 /* We can't close the window, it would disturb what
2469 * happens next. Clear the file name and set the arg
2470 * index to -1 to delete it later. */
2471 setfname(curbuf, NULL, NULL, FALSE);
2472 curwin->w_arg_idx = -1;
2473 swap_exists_action = SEA_NONE;
2475 else
2476 handle_swap_exists(NULL);
2477 #endif
2478 #ifdef FEAT_AUTOCMD
2479 dorewind = TRUE; /* start again */
2480 #endif
2482 #ifdef FEAT_WINDOWS
2483 ui_breakcheck();
2484 if (got_int)
2486 (void)vgetc(); /* only break the file loading, not the rest */
2487 break;
2490 #endif
2491 #ifdef FEAT_WINDOWS
2492 if (parmp->window_layout == WIN_TABS)
2493 goto_tabpage(1);
2494 else
2495 curwin = firstwin;
2496 curbuf = curwin->w_buffer;
2497 #endif
2498 #ifdef FEAT_AUTOCMD
2499 --autocmd_no_enter;
2500 --autocmd_no_leave;
2501 #endif
2505 #ifdef FEAT_WINDOWS
2507 * If opened more than one window, start editing files in the other
2508 * windows. make_windows() has already opened the windows.
2510 static void
2511 edit_buffers(parmp)
2512 mparm_T *parmp;
2514 int arg_idx; /* index in argument list */
2515 int i;
2516 int advance = TRUE;
2517 buf_T *old_curbuf;
2519 # ifdef FEAT_AUTOCMD
2521 * Don't execute Win/Buf Enter/Leave autocommands here
2523 ++autocmd_no_enter;
2524 ++autocmd_no_leave;
2525 # endif
2527 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2528 if (curwin->w_arg_idx == -1)
2530 win_close(curwin, TRUE);
2531 advance = FALSE;
2534 arg_idx = 1;
2535 for (i = 1; i < parmp->window_count; ++i)
2537 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2538 if (curwin->w_arg_idx == -1)
2540 ++arg_idx;
2541 win_close(curwin, TRUE);
2542 advance = FALSE;
2543 continue;
2546 if (advance)
2548 if (parmp->window_layout == WIN_TABS)
2550 if (curtab->tp_next == NULL) /* just checking */
2551 break;
2552 goto_tabpage(0);
2554 else
2556 if (curwin->w_next == NULL) /* just checking */
2557 break;
2558 win_enter(curwin->w_next, FALSE);
2561 advance = TRUE;
2563 /* Only open the file if there is no file in this window yet (that can
2564 * happen when .vimrc contains ":sall"). */
2565 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
2567 curwin->w_arg_idx = arg_idx;
2568 /* Edit file from arg list, if there is one. When "Quit" selected
2569 * at the ATTENTION prompt close the window. */
2570 old_curbuf = curbuf;
2571 (void)do_ecmd(0, arg_idx < GARGCOUNT
2572 ? alist_name(&GARGLIST[arg_idx]) : NULL,
2573 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
2574 if (curbuf == old_curbuf)
2576 if (got_int || only_one_window())
2578 /* abort selected or quit and only one window */
2579 did_emsg = FALSE; /* avoid hit-enter prompt */
2580 getout(1);
2582 win_close(curwin, TRUE);
2583 advance = FALSE;
2585 if (arg_idx == GARGCOUNT - 1)
2586 arg_had_last = TRUE;
2587 ++arg_idx;
2589 ui_breakcheck();
2590 if (got_int)
2592 (void)vgetc(); /* only break the file loading, not the rest */
2593 break;
2597 if (parmp->window_layout == WIN_TABS)
2598 goto_tabpage(1);
2599 # ifdef FEAT_AUTOCMD
2600 --autocmd_no_enter;
2601 # endif
2602 win_enter(firstwin, FALSE); /* back to first window */
2603 # ifdef FEAT_AUTOCMD
2604 --autocmd_no_leave;
2605 # endif
2606 TIME_MSG("editing files in windows");
2607 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
2608 win_equal(curwin, FALSE, 'b'); /* adjust heights */
2610 #endif /* FEAT_WINDOWS */
2613 * Execute the commands from --cmd arguments "cmds[cnt]".
2615 static void
2616 exe_pre_commands(parmp)
2617 mparm_T *parmp;
2619 char_u **cmds = parmp->pre_commands;
2620 int cnt = parmp->n_pre_commands;
2621 int i;
2623 if (cnt > 0)
2625 curwin->w_cursor.lnum = 0; /* just in case.. */
2626 sourcing_name = (char_u *)_("pre-vimrc command line");
2627 # ifdef FEAT_EVAL
2628 current_SID = SID_CMDARG;
2629 # endif
2630 for (i = 0; i < cnt; ++i)
2631 do_cmdline_cmd(cmds[i]);
2632 sourcing_name = NULL;
2633 # ifdef FEAT_EVAL
2634 current_SID = 0;
2635 # endif
2636 TIME_MSG("--cmd commands");
2641 * Execute "+", "-c" and "-S" arguments.
2643 static void
2644 exe_commands(parmp)
2645 mparm_T *parmp;
2647 int i;
2650 * We start commands on line 0, make "vim +/pat file" match a
2651 * pattern on line 1. But don't move the cursor when an autocommand
2652 * with g`" was used.
2654 msg_scroll = TRUE;
2655 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
2656 curwin->w_cursor.lnum = 0;
2657 sourcing_name = (char_u *)"command line";
2658 #ifdef FEAT_EVAL
2659 current_SID = SID_CARG;
2660 #endif
2661 for (i = 0; i < parmp->n_commands; ++i)
2663 do_cmdline_cmd(parmp->commands[i]);
2664 if (parmp->cmds_tofree[i])
2665 vim_free(parmp->commands[i]);
2667 sourcing_name = NULL;
2668 #ifdef FEAT_EVAL
2669 current_SID = 0;
2670 #endif
2671 if (curwin->w_cursor.lnum == 0)
2672 curwin->w_cursor.lnum = 1;
2674 if (!exmode_active)
2675 msg_scroll = FALSE;
2677 #ifdef FEAT_QUICKFIX
2678 /* When started with "-q errorfile" jump to first error again. */
2679 if (parmp->edit_type == EDIT_QF)
2680 qf_jump(NULL, 0, 0, FALSE);
2681 #endif
2682 TIME_MSG("executing command arguments");
2686 * Source startup scripts.
2688 static void
2689 source_startup_scripts(parmp)
2690 mparm_T *parmp;
2692 int i;
2695 * For "evim" source evim.vim first of all, so that the user can overrule
2696 * any things he doesn't like.
2698 if (parmp->evim_mode)
2700 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
2701 TIME_MSG("source evim file");
2705 * If -u argument given, use only the initializations from that file and
2706 * nothing else.
2708 if (parmp->use_vimrc != NULL)
2710 if (STRCMP(parmp->use_vimrc, "NONE") == 0
2711 || STRCMP(parmp->use_vimrc, "NORC") == 0)
2713 #ifdef FEAT_GUI
2714 if (use_gvimrc == NULL) /* don't load gvimrc either */
2715 use_gvimrc = parmp->use_vimrc;
2716 #endif
2717 if (parmp->use_vimrc[2] == 'N')
2718 p_lpl = FALSE; /* don't load plugins either */
2720 else
2722 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
2723 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2726 else if (!silent_mode)
2728 #ifdef AMIGA
2729 struct Process *proc = (struct Process *)FindTask(0L);
2730 APTR save_winptr = proc->pr_WindowPtr;
2732 /* Avoid a requester here for a volume that doesn't exist. */
2733 proc->pr_WindowPtr = (APTR)-1L;
2734 #endif
2737 * Get system wide defaults, if the file name is defined.
2739 #ifdef SYS_VIMRC_FILE
2740 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
2741 #endif
2742 #ifdef MACOS_X
2743 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
2744 #endif
2747 * Try to read initialization commands from the following places:
2748 * - environment variable VIMINIT
2749 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2750 * - second user vimrc file ($VIM/.vimrc for Dos)
2751 * - environment variable EXINIT
2752 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2753 * - second user exrc file ($VIM/.exrc for Dos)
2754 * The first that exists is used, the rest is ignored.
2756 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
2758 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
2759 #ifdef USR_VIMRC_FILE2
2760 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
2761 DOSO_VIMRC) == FAIL
2762 #endif
2763 #ifdef USR_VIMRC_FILE3
2764 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
2765 DOSO_VIMRC) == FAIL
2766 #endif
2767 && process_env((char_u *)"EXINIT", FALSE) == FAIL
2768 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
2770 #ifdef USR_EXRC_FILE2
2771 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
2772 #endif
2777 * Read initialization commands from ".vimrc" or ".exrc" in current
2778 * directory. This is only done if the 'exrc' option is set.
2779 * Because of security reasons we disallow shell and write commands
2780 * now, except for unix if the file is owned by the user or 'secure'
2781 * option has been reset in environment of global ".exrc" or ".vimrc".
2782 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2783 * SYS_VIMRC_FILE.
2785 if (p_exrc)
2787 #if defined(UNIX) || defined(VMS)
2788 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2789 if (!file_owned(VIMRC_FILE))
2790 #endif
2791 secure = p_secure;
2793 i = FAIL;
2794 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
2795 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2796 #ifdef USR_VIMRC_FILE2
2797 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
2798 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2799 #endif
2800 #ifdef USR_VIMRC_FILE3
2801 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
2802 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2803 #endif
2804 #ifdef SYS_VIMRC_FILE
2805 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
2806 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
2807 #endif
2809 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
2811 if (i == FAIL)
2813 #if defined(UNIX) || defined(VMS)
2814 /* if ".exrc" is not owned by user set 'secure' mode */
2815 if (!file_owned(EXRC_FILE))
2816 secure = p_secure;
2817 else
2818 secure = 0;
2819 #endif
2820 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
2821 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2822 #ifdef USR_EXRC_FILE2
2823 && fullpathcmp((char_u *)USR_EXRC_FILE2,
2824 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
2825 #endif
2827 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
2830 if (secure == 2)
2831 need_wait_return = TRUE;
2832 secure = 0;
2833 #ifdef AMIGA
2834 proc->pr_WindowPtr = save_winptr;
2835 #endif
2837 TIME_MSG("sourcing vimrc file(s)");
2841 * Setup to start using the GUI. Exit with an error when not available.
2843 static void
2844 main_start_gui()
2846 #ifdef FEAT_GUI
2847 gui.starting = TRUE; /* start GUI a bit later */
2848 #else
2849 mch_errmsg(_(e_nogvim));
2850 mch_errmsg("\n");
2851 mch_exit(2);
2852 #endif
2856 * Get an environment variable, and execute it as Ex commands.
2857 * Returns FAIL if the environment variable was not executed, OK otherwise.
2860 process_env(env, is_viminit)
2861 char_u *env;
2862 int is_viminit; /* when TRUE, called for VIMINIT */
2864 char_u *initstr;
2865 char_u *save_sourcing_name;
2866 linenr_T save_sourcing_lnum;
2867 #ifdef FEAT_EVAL
2868 scid_T save_sid;
2869 #endif
2871 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
2873 if (is_viminit)
2874 vimrc_found(NULL, NULL);
2875 save_sourcing_name = sourcing_name;
2876 save_sourcing_lnum = sourcing_lnum;
2877 sourcing_name = env;
2878 sourcing_lnum = 0;
2879 #ifdef FEAT_EVAL
2880 save_sid = current_SID;
2881 current_SID = SID_ENV;
2882 #endif
2883 do_cmdline_cmd(initstr);
2884 sourcing_name = save_sourcing_name;
2885 sourcing_lnum = save_sourcing_lnum;
2886 #ifdef FEAT_EVAL
2887 current_SID = save_sid;;
2888 #endif
2889 return OK;
2891 return FAIL;
2894 #if defined(UNIX) || defined(VMS)
2896 * Return TRUE if we are certain the user owns the file "fname".
2897 * Used for ".vimrc" and ".exrc".
2898 * Use both stat() and lstat() for extra security.
2900 static int
2901 file_owned(fname)
2902 char *fname;
2904 struct stat s;
2905 # ifdef UNIX
2906 uid_t uid = getuid();
2907 # else /* VMS */
2908 uid_t uid = ((getgid() << 16) | getuid());
2909 # endif
2911 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
2912 # ifdef HAVE_LSTAT
2913 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
2914 # endif
2917 #endif
2920 * Give an error message main_errors["n"] and exit.
2922 static void
2923 mainerr(n, str)
2924 int n; /* one of the ME_ defines */
2925 char_u *str; /* extra argument or NULL */
2927 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2928 reset_signals(); /* kill us with CTRL-C here, if you like */
2929 #endif
2931 mch_errmsg(longVersion);
2932 mch_errmsg("\n");
2933 mch_errmsg(_(main_errors[n]));
2934 if (str != NULL)
2936 mch_errmsg(": \"");
2937 mch_errmsg((char *)str);
2938 mch_errmsg("\"");
2940 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
2942 mch_exit(1);
2945 void
2946 mainerr_arg_missing(str)
2947 char_u *str;
2949 mainerr(ME_ARG_MISSING, str);
2953 * print a message with three spaces prepended and '\n' appended.
2955 static void
2956 main_msg(s)
2957 char *s;
2959 mch_msg(" ");
2960 mch_msg(s);
2961 mch_msg("\n");
2965 * Print messages for "vim -h" or "vim --help" and exit.
2967 static void
2968 usage()
2970 int i;
2971 static char *(use[]) =
2973 N_("[file ..] edit specified file(s)"),
2974 N_("- read text from stdin"),
2975 N_("-t tag edit file where tag is defined"),
2976 #ifdef FEAT_QUICKFIX
2977 N_("-q [errorfile] edit file with first error")
2978 #endif
2981 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2982 reset_signals(); /* kill us with CTRL-C here, if you like */
2983 #endif
2985 mch_msg(longVersion);
2986 mch_msg(_("\n\nusage:"));
2987 for (i = 0; ; ++i)
2989 mch_msg(_(" vim [arguments] "));
2990 mch_msg(_(use[i]));
2991 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
2992 break;
2993 mch_msg(_("\n or:"));
2995 #ifdef VMS
2996 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
2997 #endif
2999 mch_msg(_("\n\nArguments:\n"));
3000 main_msg(_("--\t\t\tOnly file names after this"));
3001 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3002 main_msg(_("--literal\t\tDon't expand wildcards"));
3003 #endif
3004 #ifdef FEAT_OLE
3005 main_msg(_("-register\t\tRegister this gvim for OLE"));
3006 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3007 #endif
3008 #ifdef FEAT_GUI
3009 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3010 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3011 #endif
3012 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3013 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3014 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3015 #ifdef FEAT_DIFF
3016 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3017 #endif
3018 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3019 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3020 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3021 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3022 main_msg(_("-M\t\t\tModifications in text not allowed"));
3023 main_msg(_("-b\t\t\tBinary mode"));
3024 #ifdef FEAT_LISP
3025 main_msg(_("-l\t\t\tLisp mode"));
3026 #endif
3027 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3028 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3029 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3030 #ifdef FEAT_EVAL
3031 main_msg(_("-D\t\t\tDebugging mode"));
3032 #endif
3033 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3034 main_msg(_("-r\t\t\tList swap files and exit"));
3035 main_msg(_("-r (with file name)\tRecover crashed session"));
3036 main_msg(_("-L\t\t\tSame as -r"));
3037 #ifdef AMIGA
3038 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3039 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3040 #endif
3041 #ifdef FEAT_ARABIC
3042 main_msg(_("-A\t\t\tstart in Arabic mode"));
3043 #endif
3044 #ifdef FEAT_RIGHTLEFT
3045 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3046 #endif
3047 #ifdef FEAT_FKMAP
3048 main_msg(_("-F\t\t\tStart in Farsi mode"));
3049 #endif
3050 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3051 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3052 #ifdef FEAT_GUI
3053 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3054 #endif
3055 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3056 #ifdef FEAT_WINDOWS
3057 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3058 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3059 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3060 #endif
3061 main_msg(_("+\t\t\tStart at end of file"));
3062 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3063 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3064 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3065 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3066 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3067 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3068 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3069 #ifdef FEAT_CRYPT
3070 main_msg(_("-x\t\t\tEdit encrypted files"));
3071 #endif
3072 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3073 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3074 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3075 # endif
3076 main_msg(_("-X\t\t\tDo not connect to X server"));
3077 #endif
3078 #ifdef FEAT_CLIENTSERVER
3079 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3080 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3081 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3082 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3083 # ifdef FEAT_WINDOWS
3084 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3085 # endif
3086 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3087 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3088 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3089 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3090 #endif
3091 #ifdef FEAT_VIMINFO
3092 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3093 #endif
3094 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3095 main_msg(_("--version\t\tPrint version information and exit"));
3097 #ifdef FEAT_GUI_X11
3098 # ifdef FEAT_GUI_MOTIF
3099 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3100 # else
3101 # ifdef FEAT_GUI_ATHENA
3102 # ifdef FEAT_GUI_NEXTAW
3103 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3104 # else
3105 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3106 # endif
3107 # endif
3108 # endif
3109 main_msg(_("-display <display>\tRun vim on <display>"));
3110 main_msg(_("-iconic\t\tStart vim iconified"));
3111 # if 0
3112 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3113 mch_msg(_("\t\t\t (Unimplemented)\n"));
3114 # endif
3115 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3116 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3117 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3118 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3119 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3120 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3121 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3122 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3123 # ifdef FEAT_GUI_ATHENA
3124 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3125 # endif
3126 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3127 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3128 main_msg(_("-xrm <resource>\tSet the specified resource"));
3129 #endif /* FEAT_GUI_X11 */
3130 #if defined(FEAT_GUI) && defined(RISCOS)
3131 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3132 main_msg(_("--columns <number>\tInitial width of window in columns"));
3133 main_msg(_("--rows <number>\tInitial height of window in rows"));
3134 #endif
3135 #ifdef FEAT_GUI_GTK
3136 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3137 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3138 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3139 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3140 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3141 # ifdef HAVE_GTK2
3142 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3143 # endif
3144 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3145 #endif
3146 #ifdef FEAT_GUI_W32
3147 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3148 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3149 #endif
3151 #ifdef FEAT_GUI_GNOME
3152 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3153 if (gui.starting)
3154 mch_msg("\n");
3155 else
3156 #endif
3157 mch_exit(0);
3160 #if defined(HAS_SWAP_EXISTS_ACTION)
3162 * Check the result of the ATTENTION dialog:
3163 * When "Quit" selected, exit Vim.
3164 * When "Recover" selected, recover the file.
3166 static void
3167 check_swap_exists_action()
3169 if (swap_exists_action == SEA_QUIT)
3170 getout(1);
3171 handle_swap_exists(NULL);
3173 #endif
3175 #if defined(STARTUPTIME) || defined(PROTO)
3176 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
3178 static struct timeval prev_timeval;
3181 * Save the previous time before doing something that could nest.
3182 * set "*tv_rel" to the time elapsed so far.
3184 void
3185 time_push(tv_rel, tv_start)
3186 void *tv_rel, *tv_start;
3188 *((struct timeval *)tv_rel) = prev_timeval;
3189 gettimeofday(&prev_timeval, NULL);
3190 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
3191 - ((struct timeval *)tv_rel)->tv_usec;
3192 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
3193 - ((struct timeval *)tv_rel)->tv_sec;
3194 if (((struct timeval *)tv_rel)->tv_usec < 0)
3196 ((struct timeval *)tv_rel)->tv_usec += 1000000;
3197 --((struct timeval *)tv_rel)->tv_sec;
3199 *(struct timeval *)tv_start = prev_timeval;
3203 * Compute the previous time after doing something that could nest.
3204 * Subtract "*tp" from prev_timeval;
3205 * Note: The arguments are (void *) to avoid trouble with systems that don't
3206 * have struct timeval.
3208 void
3209 time_pop(tp)
3210 void *tp; /* actually (struct timeval *) */
3212 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
3213 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
3214 if (prev_timeval.tv_usec < 0)
3216 prev_timeval.tv_usec += 1000000;
3217 --prev_timeval.tv_sec;
3221 static void
3222 time_diff(then, now)
3223 struct timeval *then;
3224 struct timeval *now;
3226 long usec;
3227 long msec;
3229 usec = now->tv_usec - then->tv_usec;
3230 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
3231 usec = usec % 1000L;
3232 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
3235 void
3236 time_msg(msg, tv_start)
3237 char *msg;
3238 void *tv_start; /* only for do_source: start time; actually
3239 (struct timeval *) */
3241 static struct timeval start;
3242 struct timeval now;
3244 if (time_fd != NULL)
3246 if (strstr(msg, "STARTING") != NULL)
3248 gettimeofday(&start, NULL);
3249 prev_timeval = start;
3250 fprintf(time_fd, "\n\ntimes in msec\n");
3251 fprintf(time_fd, " clock self+sourced self: sourced script\n");
3252 fprintf(time_fd, " clock elapsed: other lines\n\n");
3254 gettimeofday(&now, NULL);
3255 time_diff(&start, &now);
3256 if (((struct timeval *)tv_start) != NULL)
3258 fprintf(time_fd, " ");
3259 time_diff(((struct timeval *)tv_start), &now);
3261 fprintf(time_fd, " ");
3262 time_diff(&prev_timeval, &now);
3263 prev_timeval = now;
3264 fprintf(time_fd, ": %s\n", msg);
3268 # ifdef WIN3264
3270 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3273 gettimeofday(struct timeval *tv, char *dummy)
3275 long t = clock();
3276 tv->tv_sec = t / CLOCKS_PER_SEC;
3277 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
3278 return 0;
3280 # endif
3282 #endif
3284 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3287 * Common code for the X command server and the Win32 command server.
3290 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
3293 * Do the client-server stuff, unless "--servername ''" was used.
3295 static void
3296 exec_on_server(parmp)
3297 mparm_T *parmp;
3299 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
3301 # ifdef WIN32
3302 /* Initialise the client/server messaging infrastructure. */
3303 serverInitMessaging();
3304 # endif
3307 * When a command server argument was found, execute it. This may
3308 * exit Vim when it was successful. Otherwise it's executed further
3309 * on. Remember the encoding used here in "serverStrEnc".
3311 if (parmp->serverArg)
3313 cmdsrv_main(&parmp->argc, parmp->argv,
3314 parmp->serverName_arg, &parmp->serverStr);
3315 # ifdef FEAT_MBYTE
3316 parmp->serverStrEnc = vim_strsave(p_enc);
3317 # endif
3320 /* If we're still running, get the name to register ourselves.
3321 * On Win32 can register right now, for X11 need to setup the
3322 * clipboard first, it's further down. */
3323 parmp->servername = serverMakeName(parmp->serverName_arg,
3324 parmp->argv[0]);
3325 # ifdef WIN32
3326 if (parmp->servername != NULL)
3328 serverSetName(parmp->servername);
3329 vim_free(parmp->servername);
3331 # endif
3336 * Prepare for running as a Vim server.
3338 static void
3339 prepare_server(parmp)
3340 mparm_T *parmp;
3342 # if defined(FEAT_X11)
3344 * Register for remote command execution with :serversend and --remote
3345 * unless there was a -X or a --servername '' on the command line.
3346 * Only register nongui-vim's with an explicit --servername argument.
3347 * When running as root --servername is also required.
3349 if (X_DISPLAY != NULL && parmp->servername != NULL && (
3350 # ifdef FEAT_GUI
3351 (gui.in_use
3352 # ifdef UNIX
3353 && getuid() != ROOT_UID
3354 # endif
3355 ) ||
3356 # endif
3357 parmp->serverName_arg != NULL))
3359 (void)serverRegisterName(X_DISPLAY, parmp->servername);
3360 vim_free(parmp->servername);
3361 TIME_MSG("register server name");
3363 else
3364 serverDelayedStartName = parmp->servername;
3365 # endif
3368 * Execute command ourselves if we're here because the send failed (or
3369 * else we would have exited above).
3371 if (parmp->serverStr != NULL)
3373 char_u *p;
3375 server_to_input_buf(serverConvert(parmp->serverStrEnc,
3376 parmp->serverStr, &p));
3377 vim_free(p);
3381 static void
3382 cmdsrv_main(argc, argv, serverName_arg, serverStr)
3383 int *argc;
3384 char **argv;
3385 char_u *serverName_arg;
3386 char_u **serverStr;
3388 char_u *res;
3389 int i;
3390 char_u *sname;
3391 int ret;
3392 int didone = FALSE;
3393 int exiterr = 0;
3394 char **newArgV = argv + 1;
3395 int newArgC = 1,
3396 Argc = *argc;
3397 int argtype;
3398 #define ARGTYPE_OTHER 0
3399 #define ARGTYPE_EDIT 1
3400 #define ARGTYPE_EDIT_WAIT 2
3401 #define ARGTYPE_SEND 3
3402 int silent = FALSE;
3403 int tabs = FALSE;
3404 # ifndef FEAT_X11
3405 HWND srv;
3406 # else
3407 Window srv;
3409 setup_term_clip();
3410 # endif
3412 sname = serverMakeName(serverName_arg, argv[0]);
3413 if (sname == NULL)
3414 return;
3417 * Execute the command server related arguments and remove them
3418 * from the argc/argv array; We may have to return into main()
3420 for (i = 1; i < Argc; i++)
3422 res = NULL;
3423 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
3425 for (; i < *argc; i++)
3427 *newArgV++ = argv[i];
3428 newArgC++;
3430 break;
3433 if (STRICMP(argv[i], "--remote-send") == 0)
3434 argtype = ARGTYPE_SEND;
3435 else if (STRNICMP(argv[i], "--remote", 8) == 0)
3437 char *p = argv[i] + 8;
3439 argtype = ARGTYPE_EDIT;
3440 while (*p != NUL)
3442 if (STRNICMP(p, "-wait", 5) == 0)
3444 argtype = ARGTYPE_EDIT_WAIT;
3445 p += 5;
3447 else if (STRNICMP(p, "-silent", 7) == 0)
3449 silent = TRUE;
3450 p += 7;
3452 else if (STRNICMP(p, "-tab", 4) == 0)
3454 tabs = TRUE;
3455 p += 4;
3457 else
3459 argtype = ARGTYPE_OTHER;
3460 break;
3464 else
3465 argtype = ARGTYPE_OTHER;
3467 if (argtype != ARGTYPE_OTHER)
3469 if (i == *argc - 1)
3470 mainerr_arg_missing((char_u *)argv[i]);
3471 if (argtype == ARGTYPE_SEND)
3473 *serverStr = (char_u *)argv[i + 1];
3474 i++;
3476 else
3478 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
3479 tabs, argtype == ARGTYPE_EDIT_WAIT);
3480 if (*serverStr == NULL)
3482 /* Probably out of memory, exit. */
3483 didone = TRUE;
3484 exiterr = 1;
3485 break;
3487 Argc = i;
3489 # ifdef FEAT_X11
3490 if (xterm_dpy == NULL)
3492 mch_errmsg(_("No display"));
3493 ret = -1;
3495 else
3496 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
3497 NULL, &srv, 0, 0, silent);
3498 # else
3499 /* Win32 always works? */
3500 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
3501 # endif
3502 if (ret < 0)
3504 if (argtype == ARGTYPE_SEND)
3506 /* Failed to send, abort. */
3507 mch_errmsg(_(": Send failed.\n"));
3508 didone = TRUE;
3509 exiterr = 1;
3511 else if (!silent)
3512 /* Let vim start normally. */
3513 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3514 break;
3517 # ifdef FEAT_GUI_W32
3518 /* Guess that when the server name starts with "g" it's a GUI
3519 * server, which we can bring to the foreground here.
3520 * Foreground() in the server doesn't work very well. */
3521 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
3522 SetForegroundWindow(srv);
3523 # endif
3526 * For --remote-wait: Wait until the server did edit each
3527 * file. Also detect that the server no longer runs.
3529 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
3531 int numFiles = *argc - i - 1;
3532 int j;
3533 char_u *done = alloc(numFiles);
3534 char_u *p;
3535 # ifdef FEAT_GUI_W32
3536 NOTIFYICONDATA ni;
3537 int count = 0;
3538 extern HWND message_window;
3539 # endif
3541 if (numFiles > 0 && argv[i + 1][0] == '+')
3542 /* Skip "+cmd" argument, don't wait for it to be edited. */
3543 --numFiles;
3545 # ifdef FEAT_GUI_W32
3546 ni.cbSize = sizeof(ni);
3547 ni.hWnd = message_window;
3548 ni.uID = 0;
3549 ni.uFlags = NIF_ICON|NIF_TIP;
3550 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
3551 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
3552 Shell_NotifyIcon(NIM_ADD, &ni);
3553 # endif
3555 /* Wait for all files to unload in remote */
3556 memset(done, 0, numFiles);
3557 while (memchr(done, 0, numFiles) != NULL)
3559 # ifdef WIN32
3560 p = serverGetReply(srv, NULL, TRUE, TRUE);
3561 if (p == NULL)
3562 break;
3563 # else
3564 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
3565 break;
3566 # endif
3567 j = atoi((char *)p);
3568 if (j >= 0 && j < numFiles)
3570 # ifdef FEAT_GUI_W32
3571 ++count;
3572 sprintf(ni.szTip, _("%d of %d edited"),
3573 count, numFiles);
3574 Shell_NotifyIcon(NIM_MODIFY, &ni);
3575 # endif
3576 done[j] = 1;
3579 # ifdef FEAT_GUI_W32
3580 Shell_NotifyIcon(NIM_DELETE, &ni);
3581 # endif
3584 else if (STRICMP(argv[i], "--remote-expr") == 0)
3586 if (i == *argc - 1)
3587 mainerr_arg_missing((char_u *)argv[i]);
3588 # ifdef WIN32
3589 /* Win32 always works? */
3590 if (serverSendToVim(sname, (char_u *)argv[i + 1],
3591 &res, NULL, 1, FALSE) < 0)
3592 # else
3593 if (xterm_dpy == NULL)
3594 mch_errmsg(_("No display: Send expression failed.\n"));
3595 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
3596 &res, NULL, 1, 1, FALSE) < 0)
3597 # endif
3599 if (res != NULL && *res != NUL)
3601 /* Output error from remote */
3602 mch_errmsg((char *)res);
3603 vim_free(res);
3604 res = NULL;
3606 mch_errmsg(_(": Send expression failed.\n"));
3609 else if (STRICMP(argv[i], "--serverlist") == 0)
3611 # ifdef WIN32
3612 /* Win32 always works? */
3613 res = serverGetVimNames();
3614 # else
3615 if (xterm_dpy != NULL)
3616 res = serverGetVimNames(xterm_dpy);
3617 # endif
3618 if (called_emsg)
3619 mch_errmsg("\n");
3621 else if (STRICMP(argv[i], "--servername") == 0)
3623 /* Alredy processed. Take it out of the command line */
3624 i++;
3625 continue;
3627 else
3629 *newArgV++ = argv[i];
3630 newArgC++;
3631 continue;
3633 didone = TRUE;
3634 if (res != NULL && *res != NUL)
3636 mch_msg((char *)res);
3637 if (res[STRLEN(res) - 1] != '\n')
3638 mch_msg("\n");
3640 vim_free(res);
3643 if (didone)
3645 display_errors(); /* display any collected messages */
3646 exit(exiterr); /* Mission accomplished - get out */
3649 /* Return back into main() */
3650 *argc = newArgC;
3651 vim_free(sname);
3655 * Build a ":drop" command to send to a Vim server.
3657 static char_u *
3658 build_drop_cmd(filec, filev, tabs, sendReply)
3659 int filec;
3660 char **filev;
3661 int tabs; /* Use ":tab drop" instead of ":drop". */
3662 int sendReply;
3664 garray_T ga;
3665 int i;
3666 char_u *inicmd = NULL;
3667 char_u *p;
3668 char_u cwd[MAXPATHL];
3670 if (filec > 0 && filev[0][0] == '+')
3672 inicmd = (char_u *)filev[0] + 1;
3673 filev++;
3674 filec--;
3676 /* Check if we have at least one argument. */
3677 if (filec <= 0)
3678 mainerr_arg_missing((char_u *)filev[-1]);
3679 if (mch_dirname(cwd, MAXPATHL) != OK)
3680 return NULL;
3681 if ((p = vim_strsave_escaped_ext(cwd,
3682 #ifdef BACKSLASH_IN_FILENAME
3683 "", /* rem_backslash() will tell what chars to escape */
3684 #else
3685 PATH_ESC_CHARS,
3686 #endif
3687 '\\', TRUE)) == NULL)
3688 return NULL;
3689 ga_init2(&ga, 1, 100);
3690 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
3691 ga_concat(&ga, p);
3692 vim_free(p);
3694 /* Call inputsave() so that a prompt for an encryption key works. */
3695 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3696 if (tabs)
3697 ga_concat(&ga, (char_u *)"tab ");
3698 ga_concat(&ga, (char_u *)"drop");
3699 for (i = 0; i < filec; i++)
3701 /* On Unix the shell has already expanded the wildcards, don't want to
3702 * do it again in the Vim server. On MS-Windows only escape
3703 * non-wildcard characters. */
3704 p = vim_strsave_escaped((char_u *)filev[i],
3705 #ifdef UNIX
3706 PATH_ESC_CHARS
3707 #else
3708 (char_u *)" \t%#"
3709 #endif
3711 if (p == NULL)
3713 vim_free(ga.ga_data);
3714 return NULL;
3716 ga_concat(&ga, (char_u *)" ");
3717 ga_concat(&ga, p);
3718 vim_free(p);
3720 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3721 * CTRL-\ CTRL-N again. */
3722 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3723 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
3724 if (sendReply)
3725 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
3726 ga_concat(&ga, (char_u *)"<CR>:");
3727 if (inicmd != NULL)
3729 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3730 * the following commands to be inserted as text. Use a "|",
3731 * hopefully "inicmd" does allow this... */
3732 ga_concat(&ga, inicmd);
3733 ga_concat(&ga, (char_u *)"|");
3735 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3736 * clear command line. */
3737 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
3738 ga_append(&ga, NUL);
3739 return ga.ga_data;
3743 * Replace termcodes such as <CR> and insert as key presses if there is room.
3745 void
3746 server_to_input_buf(str)
3747 char_u *str;
3749 char_u *ptr = NULL;
3750 char_u *cpo_save = p_cpo;
3752 /* Set 'cpoptions' the way we want it.
3753 * B set - backslashes are *not* treated specially
3754 * k set - keycodes are *not* reverse-engineered
3755 * < unset - <Key> sequences *are* interpreted
3756 * The last but one parameter of replace_termcodes() is TRUE so that the
3757 * <lt> sequence is recognised - needed for a real backslash.
3759 p_cpo = (char_u *)"Bk";
3760 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
3761 p_cpo = cpo_save;
3763 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
3766 * Add the string to the input stream.
3767 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3769 * First clear typed characters from the typeahead buffer, there could
3770 * be half a mapping there. Then append to the existing string, so
3771 * that multiple commands from a client are concatenated.
3773 if (typebuf.tb_maplen < typebuf.tb_len)
3774 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
3775 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
3777 /* Let input_available() know we inserted text in the typeahead
3778 * buffer. */
3779 typebuf_was_filled = TRUE;
3781 vim_free((char_u *)ptr);
3785 * Evaluate an expression that the client sent to a string.
3786 * Handles disabling error messages and disables debugging, otherwise Vim
3787 * hangs, waiting for "cont" to be typed.
3789 char_u *
3790 eval_client_expr_to_string(expr)
3791 char_u *expr;
3793 char_u *res;
3794 int save_dbl = debug_break_level;
3795 int save_ro = redir_off;
3797 debug_break_level = -1;
3798 redir_off = 0;
3799 ++emsg_skip;
3801 res = eval_to_string(expr, NULL, TRUE);
3803 debug_break_level = save_dbl;
3804 redir_off = save_ro;
3805 --emsg_skip;
3807 /* A client can tell us to redraw, but not to display the cursor, so do
3808 * that here. */
3809 setcursor();
3810 out_flush();
3811 #ifdef FEAT_GUI
3812 if (gui.in_use)
3813 gui_update_cursor(FALSE, FALSE);
3814 #endif
3816 return res;
3820 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3821 * return an allocated string. Otherwise return "data".
3822 * "*tofree" is set to the result when it needs to be freed later.
3824 /*ARGSUSED*/
3825 char_u *
3826 serverConvert(client_enc, data, tofree)
3827 char_u *client_enc;
3828 char_u *data;
3829 char_u **tofree;
3831 char_u *res = data;
3833 *tofree = NULL;
3834 # ifdef FEAT_MBYTE
3835 if (client_enc != NULL && p_enc != NULL)
3837 vimconv_T vimconv;
3839 vimconv.vc_type = CONV_NONE;
3840 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
3841 && vimconv.vc_type != CONV_NONE)
3843 res = string_convert(&vimconv, data, NULL);
3844 if (res == NULL)
3845 res = data;
3846 else
3847 *tofree = res;
3849 convert_setup(&vimconv, NULL, NULL);
3851 # endif
3852 return res;
3857 * Make our basic server name: use the specified "arg" if given, otherwise use
3858 * the tail of the command "cmd" we were started with.
3859 * Return the name in allocated memory. This doesn't include a serial number.
3861 static char_u *
3862 serverMakeName(arg, cmd)
3863 char_u *arg;
3864 char *cmd;
3866 char_u *p;
3868 if (arg != NULL && *arg != NUL)
3869 p = vim_strsave_up(arg);
3870 else
3872 p = vim_strsave_up(gettail((char_u *)cmd));
3873 /* Remove .exe or .bat from the name. */
3874 if (p != NULL && vim_strchr(p, '.') != NULL)
3875 *vim_strchr(p, '.') = NUL;
3877 return p;
3879 #endif /* FEAT_CLIENTSERVER */
3882 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3884 #if defined(FEAT_FKMAP) || defined(PROTO)
3885 # include "farsi.c"
3886 #endif
3889 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3891 #if defined(FEAT_ARABIC) || defined(PROTO)
3892 # include "arabic.c"
3893 #endif