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.
10 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
11 # include "vimio.h" /* for close() and dup() */
18 # include <spawno.h> /* special MS-DOS swapping library */
23 # include <cygwin/version.h>
24 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
25 * cygwin_conv_path() */
30 /* Maximum number of commands from + or -c arguments. */
31 #define MAX_ARG_CMDS 10
33 /* values for "window_layout" */
34 #define WIN_HOR 1 /* "-o" horizontally split windows */
35 #define WIN_VER 2 /* "-O" vertically split windows */
36 #define WIN_TABS 3 /* "-p" windows on tab pages */
38 /* Struct for various parameters passed between main() and other functions. */
44 int evim_mode
; /* started as "evim" */
45 char_u
*use_vimrc
; /* vimrc from -u argument */
47 int n_commands
; /* no. of commands from + or -c */
48 char_u
*commands
[MAX_ARG_CMDS
]; /* commands from + or -c arg. */
49 char_u cmds_tofree
[MAX_ARG_CMDS
]; /* commands that need free() */
50 int n_pre_commands
; /* no. of commands from --cmd */
51 char_u
*pre_commands
[MAX_ARG_CMDS
]; /* commands from --cmd argument */
53 int edit_type
; /* type of editing to do */
54 char_u
*tagname
; /* tag from -t argument */
56 char_u
*use_ef
; /* 'errorfile' from -q argument */
60 int stdout_isatty
; /* is stdout a terminal? */
61 char_u
*term
; /* specified terminal name */
63 int ask_for_key
; /* -x argument */
65 int no_swap_file
; /* "-n" argument used */
67 int use_debug_break_level
;
70 int window_count
; /* number of windows to use */
71 int window_layout
; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
74 #ifdef FEAT_CLIENTSERVER
75 int serverArg
; /* TRUE when argument for a server */
76 char_u
*serverName_arg
; /* cmdline arg for server name */
77 char_u
*serverStr
; /* remote server command */
78 char_u
*serverStrEnc
; /* encoding of serverStr */
79 char_u
*servername
; /* allocated name for our server */
81 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
82 int literal
; /* don't expand file names */
85 int full_path
; /* file name argument was full path */
88 int diff_mode
; /* start with 'diff' set */
92 /* Values for edit_type. */
93 #define EDIT_NONE 0 /* no edit type yet */
94 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */
95 #define EDIT_STDIN 2 /* read file from stdin */
96 #define EDIT_TAG 3 /* tag name argument given, use tagname */
97 #define EDIT_QF 4 /* start in quickfix mode */
99 #if defined(UNIX) || defined(VMS)
100 static int file_owned
__ARGS((char *fname
));
102 static void mainerr
__ARGS((int, char_u
*));
103 static void main_msg
__ARGS((char *s
));
104 static void usage
__ARGS((void));
105 static int get_number_arg
__ARGS((char_u
*p
, int *idx
, int def
));
106 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
107 static void init_locale
__ARGS((void));
109 static void parse_command_name
__ARGS((mparm_T
*parmp
));
110 static void early_arg_scan
__ARGS((mparm_T
*parmp
));
111 static void command_line_scan
__ARGS((mparm_T
*parmp
));
112 static void check_tty
__ARGS((mparm_T
*parmp
));
113 static void read_stdin
__ARGS((void));
114 static void create_windows
__ARGS((mparm_T
*parmp
));
116 static void edit_buffers
__ARGS((mparm_T
*parmp
));
118 static void exe_pre_commands
__ARGS((mparm_T
*parmp
));
119 static void exe_commands
__ARGS((mparm_T
*parmp
));
120 static void source_startup_scripts
__ARGS((mparm_T
*parmp
));
121 static void main_start_gui
__ARGS((void));
122 #if defined(HAS_SWAP_EXISTS_ACTION)
123 static void check_swap_exists_action
__ARGS((void));
125 #ifdef FEAT_CLIENTSERVER
126 static void exec_on_server
__ARGS((mparm_T
*parmp
));
127 static void prepare_server
__ARGS((mparm_T
*parmp
));
128 static void cmdsrv_main
__ARGS((int *argc
, char **argv
, char_u
*serverName_arg
, char_u
**serverStr
));
129 static char_u
*serverMakeName
__ARGS((char_u
*arg
, char *cmd
));
134 * Different types of error messages.
136 static char *(main_errors
[]) =
138 N_("Unknown option argument"),
139 #define ME_UNKNOWN_OPTION 0
140 N_("Too many edit arguments"),
141 #define ME_TOO_MANY_ARGS 1
142 N_("Argument missing after"),
143 #define ME_ARG_MISSING 2
144 N_("Garbage after option argument"),
146 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"),
147 #define ME_EXTRA_CMD 4
148 N_("Invalid argument for"),
149 #define ME_INVALID_ARG 5
152 #ifndef PROTO /* don't want a prototype for main() */
157 # ifdef FEAT_GUI_MSWIN
169 char_u
*fname
= NULL
; /* file name from command line */
170 mparm_T params
; /* various parameters passed between
171 * main() and other functions. */
177 * Do any system-specific initialisations. These can NOT use IObuff or
178 * NameBuff. Thus emsg2() cannot be called!
182 /* Many variables are in "params" so that we can pass them to invoked
183 * functions without a lot of arguments. "argc" and "argv" are also
184 * copied, so that they can be changed. */
185 vim_memset(¶ms
, 0, sizeof(params
));
188 params
.want_full_screen
= TRUE
;
190 params
.use_debug_break_level
= -1;
193 params
.window_count
= -1;
197 vim_tcl_init(params
.argv
[0]);
201 atexit(vim_mem_profile_dump
);
205 for (i
= 1; i
< argc
; ++i
)
207 if (STRICMP(argv
[i
], "--startuptime") == 0 && i
+ 1 < argc
)
209 time_fd
= mch_fopen(argv
[i
+ 1], "a");
210 TIME_MSG("--- VIM STARTING ---");
215 starttime
= time(NULL
);
218 _wildcard(¶ms
.argc
, ¶ms
.argv
);
222 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
225 eval_init(); /* init global variables */
229 qnx_init(); /* PhAttach() for clipboard, (and gui) */
232 #ifdef MAC_OS_CLASSIC
233 /* Prepare for possibly starting GUI sometime */
234 /* Macintosh needs this before any memory is allocated. */
235 gui_prepare(¶ms
.argc
, params
.argv
);
236 TIME_MSG("GUI prepared");
239 /* Init the table of Normal mode commands. */
242 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
243 make_version(); /* Construct the long version string. */
247 * Allocate space for the generic buffers (needed for set_init_1() and
250 if ((IObuff
= alloc(IOSIZE
)) == NULL
251 || (NameBuff
= alloc(MAXPATHL
)) == NULL
)
253 TIME_MSG("Allocated generic buffers");
256 /* Wait a moment for debugging NetBeans. Must be after allocating
258 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
259 nbdebug_wait(WT_ENV
| WT_WAIT
| WT_STOP
, "SPRO_GVIM_WAIT", 20);
260 TIME_MSG("NetBeans debug wait");
263 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
265 * Setup to use the current locale (for ctype() and many other things).
266 * NOTE: Translated messages with encodings other than latin1 will not
267 * work until set_init_1() has been called!
270 TIME_MSG("locale set");
274 gui
.dofork
= TRUE
; /* default is to use fork() */
278 * Do a first scan of the arguments in "argv[]":
279 * -display or --display
284 early_arg_scan(¶ms
);
286 #ifdef FEAT_SUN_WORKSHOP
287 findYourself(params
.argv
[0]);
289 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
290 /* Prepare for possibly starting GUI sometime */
291 gui_prepare(¶ms
.argc
, params
.argv
);
292 TIME_MSG("GUI prepared");
295 #ifdef FEAT_CLIPBOARD
296 clip_init(FALSE
); /* Initialise clipboard stuff */
297 TIME_MSG("clipboard setup");
301 * Check if we have an interactive window.
302 * On the Amiga: If there is no window, we open one with a newcli command
303 * (needed for :! to * work). mch_check_win() will also handle the -d or
306 params
.stdout_isatty
= (mch_check_win(params
.argc
, params
.argv
) != FAIL
);
307 TIME_MSG("window checked");
310 * Allocate the first window and buffer.
311 * Can't do anything without it, exit when it fails.
313 if (win_alloc_first() == FAIL
)
316 init_yank(); /* init yank buffers */
318 alist_init(&global_alist
); /* Init the argument list to empty. */
321 * Set the default values for the options.
322 * NOTE: Non-latin1 translated messages are working only after this,
323 * because this is where "has_mbyte" will be set, which is used by
324 * msg_outtrans_len_attr().
325 * First find out the home directory, needed to expand "~" in options.
327 init_homedir(); /* find real value of $HOME */
332 set_lang_var(); /* set v:lang and v:ctype */
335 #ifdef FEAT_CLIENTSERVER
337 * Do the client-server stuff, unless "--servername ''" was used.
338 * This may exit Vim if the command was sent to the server.
340 exec_on_server(¶ms
);
344 * Figure out the way to work from the command name argv[0].
345 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
347 parse_command_name(¶ms
);
350 * Process the command line arguments. File names are put in the global
351 * argument list "global_alist".
353 command_line_scan(¶ms
);
354 TIME_MSG("parsing arguments");
357 * On some systems, when we compile with the GUI, we always use it. On Mac
358 * there is no terminal version, and on Windows we can't fork one off with
361 #ifdef ALWAYS_USE_GUI
364 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
366 * Check if the GUI can be started. Reset gui.starting if not.
367 * Don't know about other systems, stay on the safe side and don't check.
369 if (gui
.starting
&& gui_init_check() == FAIL
)
371 gui
.starting
= FALSE
;
373 /* When running "evim" or "gvim -y" we need the menus, exit if we
374 * don't have them. */
375 if (params
.evim_mode
)
383 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
385 * Expand wildcards in file names.
389 /* Temporarily add '(' and ')' to 'isfname'. These are valid
390 * filename characters but are excluded from 'isfname' to make
391 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
392 do_cmdline_cmd((char_u
*)":set isf+=(,)");
393 alist_expand(NULL
, 0);
394 do_cmdline_cmd((char_u
*)":set isf&");
397 fname
= alist_name(&GARGLIST
[0]);
400 #if defined(WIN32) && defined(FEAT_MBYTE)
402 extern void set_alist_count(void);
404 /* Remember the number of entries in the argument list. If it changes
405 * we don't react on setting 'encoding'. */
411 if (GARGCOUNT
== 1 && params
.full_path
)
414 * If there is one filename, fully qualified, we have very probably
415 * been invoked from explorer, so change to the file's directory.
416 * Hint: to avoid this when typing a command use a forward slash.
417 * If the cd fails, it doesn't matter.
419 (void)vim_chdirfile(fname
);
422 TIME_MSG("expanding arguments");
425 if (params
.diff_mode
&& params
.window_count
== -1)
426 params
.window_count
= 0; /* open up to 3 windows */
429 /* Don't redraw until much later. */
433 * When listing swap file names, don't do cursor positioning et. al.
435 if (recoverymode
&& fname
== NULL
)
436 params
.want_full_screen
= FALSE
;
439 * When certain to start the GUI, don't check capabilities of terminal.
440 * For GTK we can't be sure, but when started from the desktop it doesn't
441 * make sense to try using a terminal.
443 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
449 params
.want_full_screen
= FALSE
;
452 #if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
453 /* When the GUI is started from Finder, need to display messages in a
454 * message box. isatty(2) returns TRUE anyway, thus we need to check the
455 * name to know we're not started from a terminal. */
456 if (gui
.starting
&& (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
458 params
.want_full_screen
= FALSE
;
460 /* Avoid always using "/" as the current directory. Note that when
461 * started from Finder the arglist will be filled later in
462 * HandleODocAE() and "fname" will be NULL. */
463 if (getcwd((char *)NameBuff
, MAXPATHL
) != NULL
464 && STRCMP(NameBuff
, "/") == 0)
467 (void)vim_chdirfile(fname
);
470 expand_env((char_u
*)"$HOME", NameBuff
, MAXPATHL
);
478 * mch_init() sets up the terminal (window) for use. This must be
479 * done after resetting full_screen, otherwise it may move the cursor
481 * Note that we may use mch_exit() before mch_init()!
484 TIME_MSG("shell init");
488 * For want of anywhere else to do it, try to connect to xsmp here.
489 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
490 * Hijacking -X 'no X connection' to also disable XSMP connection as that
491 * has a similar delay upon failure.
492 * Only try if SESSION_MANAGER is set to something non-null.
496 char *p
= getenv("SESSION_MANAGER");
498 if (p
!= NULL
&& *p
!= NUL
)
501 TIME_MSG("xsmp init");
507 * Print a warning if stdout is not a terminal.
511 /* This message comes before term inits, but after setting "silent_mode"
512 * when the input is not a tty. */
513 if (GARGCOUNT
> 1 && !silent_mode
)
514 printf(_("%d files to edit\n"), GARGCOUNT
);
516 if (params
.want_full_screen
&& !silent_mode
)
518 termcapinit(params
.term
); /* set terminal name and get terminal
519 capabilities (will set full_screen) */
520 screen_start(); /* don't know where cursor is now */
521 TIME_MSG("Termcap init");
525 * Set the default values for the options that use Rows and Columns.
527 ui_get_shellsize(); /* inits Rows and Columns */
528 #ifdef FEAT_NETBEANS_INTG
530 Columns
+= 2; /* leave room for glyph gutter */
534 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
535 * file. There is no buffer yet though. */
536 if (params
.diff_mode
)
537 diff_win_options(firstwin
, FALSE
);
540 cmdline_row
= Rows
- p_ch
;
541 msg_row
= cmdline_row
;
542 screenalloc(FALSE
); /* allocate screen buffers */
547 no_wait_return
= TRUE
;
549 init_mappings(); /* set up initial mappings */
551 init_highlight(TRUE
, FALSE
); /* set the default highlight groups */
552 TIME_MSG("init highlight");
555 /* Set the break level after the terminal is initialized. */
556 debug_break_level
= params
.use_debug_break_level
;
559 /* Execute --cmd arguments. */
560 exe_pre_commands(¶ms
);
562 /* Source startup scripts. */
563 source_startup_scripts(¶ms
);
567 * Read all the plugin files.
568 * Only when compiled with +eval, since most plugins need it.
572 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
573 source_runtime((char_u
*)"plugin/*.vim", TRUE
);
575 source_runtime((char_u
*)"plugin/**/*.vim", TRUE
);
577 TIME_MSG("loading plugins");
582 /* Decide about window layout for diff mode after reading vimrc. */
583 if (params
.diff_mode
&& params
.window_layout
== 0)
585 if (diffopt_horizontal())
586 params
.window_layout
= WIN_HOR
; /* use horizontal split */
588 params
.window_layout
= WIN_VER
; /* use vertical split */
593 * Recovery mode without a file name: List swap files.
594 * This uses the 'dir' option, therefore it must be after the
597 if (recoverymode
&& fname
== NULL
)
599 recover_names(NULL
, TRUE
, 0);
604 * Set a few option defaults after reading .vimrc files:
605 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
611 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
612 * Note that this overrides anything from a vimrc file.
614 if (params
.no_swap_file
)
618 if (curwin
->w_p_rl
&& p_altkeymap
)
620 p_hkmap
= FALSE
; /* Reset the Hebrew keymap mode */
622 curwin
->w_p_arab
= FALSE
; /* Reset the Arabic keymap mode */
624 p_fkmap
= TRUE
; /* Set the Farsi keymap mode */
631 #if defined(UNIX) || defined(VMS)
632 /* When something caused a message from a vimrc script, need to output
633 * an extra newline before the shell prompt. */
634 if (did_emsg
|| msg_didout
)
638 gui_start(); /* will set full_screen to TRUE */
639 TIME_MSG("starting GUI");
641 /* When running "evim" or "gvim -y" we need the menus, exit if we
642 * don't have them. */
643 if (!gui
.in_use
&& params
.evim_mode
)
648 #ifdef SPAWNO /* special MSDOS swapping library */
649 init_SPAWNO("", SWAP_ANY
);
654 * Read in registers, history etc, but not marks, from the viminfo file.
655 * This is where v:oldfiles gets filled.
657 if (*p_viminfo
!= NUL
)
659 read_viminfo(NULL
, VIF_WANT_INFO
| VIF_GET_OLDFILES
);
660 TIME_MSG("reading viminfo");
666 * "-q errorfile": Load the error file now.
667 * If the error file can't be read, exit before doing anything else.
669 if (params
.edit_type
== EDIT_QF
)
671 if (params
.use_ef
!= NULL
)
672 set_string_option_direct((char_u
*)"ef", -1,
673 params
.use_ef
, OPT_FREE
, SID_CARG
);
674 if (qf_init(NULL
, p_ef
, p_efm
, TRUE
) < 0)
679 TIME_MSG("reading errorfile");
684 * Start putting things on the screen.
685 * Scroll screen down before drawing over it
686 * Clear screen now, so file message will not be cleared.
688 starting
= NO_BUFFERS
;
689 no_wait_return
= FALSE
;
695 * This seems to be required to make callbacks to be called now, instead
696 * of after things have been put on the screen, which then may be deleted
697 * when getting a resize callback.
698 * For the Mac this handles putting files dropped on the Vim icon to
703 # ifdef FEAT_SUN_WORKSHOP
704 if (!usingSunWorkShop
)
706 gui_wait_for_chars(50L);
707 TIME_MSG("GUI delay");
711 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
715 #ifdef FEAT_XCLIPBOARD
716 /* Start using the X clipboard, unless the GUI was started. */
722 TIME_MSG("setup clipboard");
726 #ifdef FEAT_CLIENTSERVER
727 /* Prepare for being a Vim server. */
728 prepare_server(¶ms
);
732 * If "-" argument given: Read file from stdin.
733 * Do this before starting Raw mode, because it may change things that the
734 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
735 * are the same terminal: "cat | vim -".
736 * Using autocommands here may cause trouble...
738 if (params
.edit_type
== EDIT_STDIN
&& !recoverymode
)
741 #if defined(UNIX) || defined(VMS)
742 /* When switching screens and something caused a message from a vimrc
743 * script, need to output an extra newline on exit. */
744 if ((did_emsg
|| msg_didout
) && *T_TI
!= NUL
)
745 newline_on_exit
= TRUE
;
749 * When done something that is not allowed or error message call
750 * wait_return. This must be done before starttermcap(), because it may
751 * switch to another screen. It must be done after settmode(TMODE_RAW),
752 * because we want to react on a single key stroke.
753 * Call settmode and starttermcap here, so the T_KS and T_TI may be
754 * defined by termcapinit and redefined in .exrc.
757 TIME_MSG("setting raw mode");
759 if (need_wait_return
|| msg_didany
)
762 TIME_MSG("waiting for return");
765 starttermcap(); /* start termcap if not done by wait_return() */
766 TIME_MSG("start termcap");
769 setmouse(); /* may start using the mouse */
772 scroll_region_reset(); /* In case Rows changed */
773 scroll_start(); /* may scroll the screen to the right position */
776 * Don't clear the screen when starting in Ex mode, unless using the GUI.
786 screenclear(); /* clear screen */
787 TIME_MSG("clearing screen");
791 if (params
.ask_for_key
)
793 (void)get_crypt_key(TRUE
, TRUE
);
794 TIME_MSG("getting crypt key");
798 no_wait_return
= TRUE
;
801 * Create the requested number of windows and edit buffers in them.
802 * Also does recovery if "recoverymode" set.
804 create_windows(¶ms
);
805 TIME_MSG("opening buffers");
808 /* clear v:swapcommand */
809 set_vim_var_string(VV_SWAPCOMMAND
, NULL
, -1);
812 /* Ex starts at last line of the file */
814 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
817 apply_autocmds(EVENT_BUFENTER
, NULL
, NULL
, FALSE
, curbuf
);
818 TIME_MSG("BufEnter autocommands");
824 * When started with "-q errorfile" jump to first error now.
826 if (params
.edit_type
== EDIT_QF
)
828 qf_jump(NULL
, 0, 0, FALSE
);
829 TIME_MSG("jump to first error");
835 * If opened more than one window, start editing files in the other
838 edit_buffers(¶ms
);
842 if (params
.diff_mode
)
846 /* set options in each window for "vimdiff". */
847 for (wp
= firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
848 diff_win_options(wp
, TRUE
);
853 * Shorten any of the filenames, but only when absolute.
855 shorten_fnames(FALSE
);
858 * Need to jump to the tag before executing the '-c command'.
859 * Makes "vim -c '/return' -t main" work.
861 if (params
.tagname
!= NULL
)
863 #if defined(HAS_SWAP_EXISTS_ACTION)
864 swap_exists_did_quit
= FALSE
;
867 vim_snprintf((char *)IObuff
, IOSIZE
, "ta %s", params
.tagname
);
868 do_cmdline_cmd(IObuff
);
869 TIME_MSG("jumping to tag");
871 #if defined(HAS_SWAP_EXISTS_ACTION)
872 /* If the user doesn't want to edit the file then we quit here. */
873 if (swap_exists_did_quit
)
878 /* Execute any "+", "-c" and "-S" arguments. */
879 if (params
.n_commands
> 0)
880 exe_commands(¶ms
);
882 RedrawingDisabled
= 0;
883 redraw_all_later(NOT_VALID
);
884 no_wait_return
= FALSE
;
887 #ifdef FEAT_TERMRESPONSE
888 /* Requesting the termresponse is postponed until here, so that a "-c q"
889 * argument doesn't make it appear in the shell Vim was started from. */
890 may_req_termresponse();
893 /* start in insert mode */
895 need_start_insertmode
= TRUE
;
898 apply_autocmds(EVENT_VIMENTER
, NULL
, NULL
, FALSE
, curbuf
);
899 TIME_MSG("VimEnter autocommands");
902 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
903 /* When a startup script or session file setup for diff'ing and
904 * scrollbind, sync the scrollbind now. */
905 if (curwin
->w_p_diff
&& curwin
->w_p_scb
)
908 check_scrollbind((linenr_T
)0, 0L);
909 TIME_MSG("diff scrollbinding");
913 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
914 mch_set_winsize_now(); /* Allow winsize changes from now on */
917 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
918 /* When tab pages were created, may need to update the tab pages line and
919 * scrollbars. This is skipped while creating them. */
920 if (first_tabpage
->tp_next
!= NULL
)
923 gui_init_which_components(NULL
);
924 gui_update_scrollbars(TRUE
);
926 need_mouse_correct
= TRUE
;
929 /* If ":startinsert" command used, stuff a dummy command to be able to
930 * call normal_cmd(), which will then start Insert mode. */
931 if (restart_edit
!= 0)
932 stuffcharReadbuff(K_NOP
);
934 #ifdef FEAT_NETBEANS_INTG
936 /* Tell the client that it can start sending commands. */
937 netbeans_startup_done();
940 TIME_MSG("before starting main loop");
943 * Call the main command loop. This never returns.
944 * For embedded MzScheme the main_loop will be called by Scheme
945 * for proper stack tracking
947 #ifndef FEAT_MZSCHEME
948 main_loop(FALSE
, FALSE
);
958 * Main loop: Execute Normal mode commands until exiting Vim.
959 * Also used to handle commands in the command-line window, until the window
961 * Also used to handle ":visual" command after ":global": execute Normal mode
962 * commands, return when entering Ex mode. "noexmode" is TRUE then.
965 main_loop(cmdwin
, noexmode
)
966 int cmdwin
; /* TRUE when working in the command-line window */
967 int noexmode
; /* TRUE when return on entering Ex mode */
969 oparg_T oa
; /* operator arguments */
970 int previous_got_int
= FALSE
; /* "got_int" was TRUE */
972 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
973 /* Setup to catch a terminating error from the X server. Just ignore
974 * it, restore the state and continue. This might not always work
975 * properly, but at least we don't exit unexpectedly when the X server
976 * exists while Vim is running in a console. */
977 if (!cmdwin
&& !noexmode
&& SETJMP(x_jump_env
))
981 VIsual_active
= FALSE
;
984 need_wait_return
= FALSE
;
988 RedrawingDisabled
= 0;
1000 redraw_later_clear();
1007 || cmdwin_result
== 0
1013 did_check_timestamps
= FALSE
;
1014 if (need_check_timestamps
)
1015 check_timestamps(FALSE
);
1016 if (need_wait_return
) /* if wait_return still needed ... */
1017 wait_return(FALSE
); /* ... call it now */
1018 if (need_start_insertmode
&& goto_im()
1024 need_start_insertmode
= FALSE
;
1025 stuffReadbuff((char_u
*)"i"); /* start insert mode next */
1026 /* skip the fileinfo message now, because it would be shown
1027 * after insert mode finishes! */
1028 need_fileinfo
= FALSE
;
1032 /* Reset "got_int" now that we got back to the main loop. Except when
1033 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort
1035 * For ":g/pat/vi" we reset "got_int" when used once. When used
1036 * a second time we go back to Ex mode and abort the ":g" command. */
1039 if (noexmode
&& global_busy
&& !exmode_active
&& previous_got_int
)
1041 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was
1042 * used and keep "got_int" set, so that it aborts ":g". */
1043 exmode_active
= EXMODE_NORMAL
;
1046 else if (!global_busy
|| !exmode_active
)
1049 (void)vgetc(); /* flush all buffers */
1052 previous_got_int
= TRUE
;
1055 previous_got_int
= FALSE
;
1062 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
1063 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
1064 * update cursor and redraw.
1066 if (skip_redraw
|| exmode_active
)
1067 skip_redraw
= FALSE
;
1068 else if (do_redraw
|| stuff_empty())
1071 /* Trigger CursorMoved if the cursor moved. */
1072 if (!finish_op
&& has_cursormoved()
1073 && !equalpos(last_cursormoved
, curwin
->w_cursor
))
1075 apply_autocmds(EVENT_CURSORMOVED
, NULL
, NULL
, FALSE
, curbuf
);
1076 last_cursormoved
= curwin
->w_cursor
;
1080 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
1081 /* Scroll-binding for diff mode may have been postponed until
1082 * here. Avoids doing it for every change. */
1083 if (diff_need_scrollbind
)
1085 check_scrollbind((linenr_T
)0, 0L);
1086 diff_need_scrollbind
= FALSE
;
1089 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
1090 /* Include a closed fold completely in the Visual area. */
1095 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
1096 * contain the cursor.
1097 * When 'foldopen' is "all", open the fold(s) under the cursor.
1098 * This may mark the window for redrawing.
1100 if (hasAnyFolding(curwin
) && !char_avail())
1103 if (fdo_flags
& FDO_ALL
)
1109 * Before redrawing, make sure w_topline is correct, and w_leftcol
1110 * if lines don't wrap, and w_skipcol if lines wrap.
1117 update_curbuf(INVERTED
);/* update inverted part */
1122 else if (redraw_cmdline
|| clear_cmdline
)
1125 redraw_statuslines();
1131 /* display message after redraw */
1132 if (keep_msg
!= NULL
)
1136 /* msg_attr_keep() will set keep_msg to NULL, must free the
1140 msg_attr(p
, keep_msg_attr
);
1143 if (need_fileinfo
) /* show file info after redraw */
1145 fileinfo(FALSE
, TRUE
, FALSE
);
1146 need_fileinfo
= FALSE
;
1149 emsg_on_display
= FALSE
; /* can delete error message now */
1151 msg_didany
= FALSE
; /* reset lines_left in msg_start() */
1152 may_clear_sb_text(); /* clear scroll-back text on next msg */
1161 /* Now that we have drawn the first screen all the startup stuff
1162 * has been done, close any file for startup messages. */
1163 if (time_fd
!= NULL
)
1165 TIME_MSG("first screen update");
1166 TIME_MSG("--- VIM STARTED ---");
1173 if (need_mouse_correct
)
1174 gui_mouse_correct();
1178 * Update w_curswant if w_set_curswant has been set.
1179 * Postponed until here to avoid computing w_virtcol too often.
1185 * May perform garbage collection when waiting for a character, but
1186 * only at the very toplevel. Otherwise we may be using a List or
1187 * Dict internally somewhere.
1188 * "may_garbage_collect" is reset in vgetc() which is invoked through
1189 * do_exmode() and normal_cmd().
1191 may_garbage_collect
= (!cmdwin
&& !noexmode
);
1194 * If we're invoked as ex, do a round of ex commands.
1195 * Otherwise, get and execute a normal mode command.
1199 if (noexmode
) /* End of ":global/path/visual" commands */
1201 do_exmode(exmode_active
== EXMODE_VIM
);
1204 normal_cmd(&oa
, TRUE
);
1209 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
1211 * Exit, but leave behind swap files for modified buffers.
1214 getout_preserve_modified(exitval
)
1217 # if defined(SIGHUP) && defined(SIG_IGN)
1218 /* Ignore SIGHUP, because a dropped connection causes a read error, which
1219 * makes Vim exit and then handling SIGHUP causes various reentrance
1221 signal(SIGHUP
, SIG_IGN
);
1224 ml_close_notmod(); /* close all not-modified buffers */
1225 ml_sync_all(FALSE
, FALSE
); /* preserve all swap files */
1226 ml_close_all(FALSE
); /* close all memfiles, without deleting */
1227 getout(exitval
); /* exit Vim properly */
1240 tabpage_T
*tp
, *next_tp
;
1245 /* When running in Ex mode an error causes us to exit with a non-zero exit
1246 * code. POSIX requires this, although it's not 100% clear from the
1249 exitval
+= ex_exitval
;
1251 /* Position the cursor on the last screen line, below all the text */
1255 windgoto((int)Rows
- 1, 0);
1257 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
1258 /* Optionally print hashtable efficiency. */
1259 hash_debug_results();
1267 /* Trigger BufWinLeave for all windows, but only once per buffer. */
1268 # if defined FEAT_WINDOWS
1269 for (tp
= first_tabpage
; tp
!= NULL
; tp
= next_tp
)
1271 next_tp
= tp
->tp_next
;
1272 for (wp
= (tp
== curtab
)
1273 ? firstwin
: tp
->tp_firstwin
; wp
!= NULL
; wp
= wp
->w_next
)
1276 if (buf
->b_changedtick
!= -1)
1278 apply_autocmds(EVENT_BUFWINLEAVE
, buf
->b_fname
, buf
->b_fname
,
1280 buf
->b_changedtick
= -1; /* note that we did it already */
1281 /* start all over, autocommands may mess up the lists */
1282 next_tp
= first_tabpage
;
1288 apply_autocmds(EVENT_BUFWINLEAVE
, curbuf
, curbuf
->b_fname
, FALSE
, curbuf
);
1291 /* Trigger BufUnload for buffers that are loaded */
1292 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
1293 if (buf
->b_ml
.ml_mfp
!= NULL
)
1295 apply_autocmds(EVENT_BUFUNLOAD
, buf
->b_fname
, buf
->b_fname
,
1297 if (!buf_valid(buf
)) /* autocmd may delete the buffer */
1300 apply_autocmds(EVENT_VIMLEAVEPRE
, NULL
, NULL
, FALSE
, curbuf
);
1304 if (*p_viminfo
!= NUL
)
1305 /* Write out the registers, history, marks etc, to the viminfo file */
1306 write_viminfo(NULL
, FALSE
);
1310 apply_autocmds(EVENT_VIMLEAVE
, NULL
, NULL
, FALSE
, curbuf
);
1319 || (gui
.in_use
&& msg_didany
&& p_verbose
> 0)
1323 /* give the user a chance to read the (error) message */
1324 no_wait_return
= FALSE
;
1329 /* Position the cursor again, the autocommands may have moved it */
1333 windgoto((int)Rows
- 1, 0);
1339 #ifdef FEAT_MZSCHEME
1354 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
1357 #ifdef FEAT_NETBEANS_INTG
1364 if (garbage_collect_at_exit
)
1372 * Get a (optional) count for a Vim argument.
1375 get_number_arg(p
, idx
, def
)
1376 char_u
*p
; /* pointer to argument */
1377 int *idx
; /* index in argument, is incremented */
1378 int def
; /* default value */
1380 if (vim_isdigit(p
[*idx
]))
1382 def
= atoi((char *)&(p
[*idx
]));
1383 while (vim_isdigit(p
[*idx
]))
1389 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1391 * Setup to use the current locale (for ctype() and many other things).
1396 setlocale(LC_ALL
, "");
1398 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1399 /* Make sure strtod() uses a decimal point, not a comma. */
1400 setlocale(LC_NUMERIC
, "C");
1404 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
1405 * text while it's expecting text in the current locale. This call avoids
1407 setlocale(LC_CTYPE
, "C");
1410 # ifdef FEAT_GETTEXT
1412 int mustfree
= FALSE
;
1415 # ifdef DYNAMIC_GETTEXT
1416 /* Initialize the gettext library */
1417 dyn_libintl_init(NULL
);
1419 /* expand_env() doesn't work yet, because chartab[] is not initialized
1420 * yet, call vim_getenv() directly */
1421 p
= vim_getenv((char_u
*)"VIMRUNTIME", &mustfree
);
1422 if (p
!= NULL
&& *p
!= NUL
)
1424 vim_snprintf((char *)NameBuff
, MAXPATHL
, "%s/lang", p
);
1425 bindtextdomain(VIMPACKAGE
, (char *)NameBuff
);
1429 textdomain(VIMPACKAGE
);
1436 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
1437 * If the executable name starts with "r" we disable shell commands.
1438 * If the next character is "e" we run in Easy mode.
1439 * If the next character is "g" we run the GUI version.
1440 * If the next characters are "view" we start in readonly mode.
1441 * If the next characters are "diff" or "vimdiff" we start in diff mode.
1442 * If the next characters are "ex" we start in Ex mode. If it's followed
1443 * by "im" use improved Ex mode.
1446 parse_command_name(parmp
)
1451 initstr
= gettail((char_u
*)parmp
->argv
[0]);
1454 /* An issue has been seen when launching Vim in such a way that
1455 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
1456 * executable or a symbolic link of it. Until this issue is resolved
1457 * we prohibit the GUI from being used.
1459 if (STRCMP(initstr
, parmp
->argv
[0]) == 0)
1460 disallow_gui
= TRUE
;
1462 /* TODO: On MacOS X default to gui if argv[0] ends in:
1463 * /Vim.app/Contents/MacOS/Vim */
1467 set_vim_var_string(VV_PROGNAME
, initstr
, -1);
1470 if (TOLOWER_ASC(initstr
[0]) == 'r')
1476 /* Avoid using evim mode for "editor". */
1477 if (TOLOWER_ASC(initstr
[0]) == 'e'
1478 && (TOLOWER_ASC(initstr
[1]) == 'v'
1479 || TOLOWER_ASC(initstr
[1]) == 'g'))
1482 gui
.starting
= TRUE
;
1484 parmp
->evim_mode
= TRUE
;
1488 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
1489 if (TOLOWER_ASC(initstr
[0]) == 'g')
1497 if (STRNICMP(initstr
, "view", 4) == 0)
1499 readonlymode
= TRUE
;
1500 curbuf
->b_p_ro
= TRUE
;
1501 p_uc
= 10000; /* don't update very often */
1504 else if (STRNICMP(initstr
, "vim", 3) == 0)
1507 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
1508 if (STRICMP(initstr
, "diff") == 0)
1511 parmp
->diff_mode
= TRUE
;
1513 mch_errmsg(_("This Vim was not compiled with the diff feature."));
1519 if (STRNICMP(initstr
, "ex", 2) == 0)
1521 if (STRNICMP(initstr
+ 2, "im", 2) == 0)
1522 exmode_active
= EXMODE_VIM
;
1524 exmode_active
= EXMODE_NORMAL
;
1525 change_compatible(TRUE
); /* set 'compatible' */
1530 * Get the name of the display, before gui_prepare() removes it from
1531 * argv[]. Used for the xterm-clipboard display.
1533 * Also find the --server... arguments and --socketid and --windowid
1536 early_arg_scan(parmp
)
1537 mparm_T
*parmp UNUSED
;
1539 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
1540 || !defined(FEAT_NETBEANS_INTG)
1541 int argc
= parmp
->argc
;
1542 char **argv
= parmp
->argv
;
1545 for (i
= 1; i
< argc
; i
++)
1547 if (STRCMP(argv
[i
], "--") == 0)
1549 # ifdef FEAT_XCLIPBOARD
1550 else if (STRICMP(argv
[i
], "-display") == 0
1551 # if defined(FEAT_GUI_GTK)
1552 || STRICMP(argv
[i
], "--display") == 0
1557 mainerr_arg_missing((char_u
*)argv
[i
]);
1558 xterm_display
= argv
[++i
];
1561 # ifdef FEAT_CLIENTSERVER
1562 else if (STRICMP(argv
[i
], "--servername") == 0)
1565 mainerr_arg_missing((char_u
*)argv
[i
]);
1566 parmp
->serverName_arg
= (char_u
*)argv
[++i
];
1568 else if (STRICMP(argv
[i
], "--serverlist") == 0)
1569 parmp
->serverArg
= TRUE
;
1570 else if (STRNICMP(argv
[i
], "--remote", 8) == 0)
1572 parmp
->serverArg
= TRUE
;
1574 if (strstr(argv
[i
], "-wait") != 0)
1575 /* don't fork() when starting the GUI to edit files ourself */
1581 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1582 # ifdef FEAT_GUI_W32
1583 else if (STRICMP(argv
[i
], "--windowid") == 0)
1585 else if (STRICMP(argv
[i
], "--socketid") == 0)
1592 mainerr_arg_missing((char_u
*)argv
[i
]);
1593 if (STRNICMP(argv
[i
+1], "0x", 2) == 0)
1594 count
= sscanf(&(argv
[i
+ 1][2]), SCANF_HEX_LONG_U
, &id
);
1596 count
= sscanf(argv
[i
+ 1], SCANF_DECIMAL_LONG_U
, &id
);
1598 mainerr(ME_INVALID_ARG
, (char_u
*)argv
[i
]);
1600 # ifdef FEAT_GUI_W32
1608 # ifdef FEAT_GUI_GTK
1609 else if (STRICMP(argv
[i
], "--echo-wid") == 0)
1610 echo_wid_arg
= TRUE
;
1612 # ifndef FEAT_NETBEANS_INTG
1613 else if (strncmp(argv
[i
], "-nb", (size_t)3) == 0)
1615 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n"));
1625 * Scan the command line arguments.
1628 command_line_scan(parmp
)
1631 int argc
= parmp
->argc
;
1632 char **argv
= parmp
->argv
;
1633 int argv_idx
; /* index in argv[n][] */
1634 int had_minmin
= FALSE
; /* found "--" argument */
1635 int want_argument
; /* option argument with argument */
1642 argv_idx
= 1; /* active option letter is argv[0][argv_idx] */
1646 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
1648 if (argv
[0][0] == '+' && !had_minmin
)
1650 if (parmp
->n_commands
>= MAX_ARG_CMDS
)
1651 mainerr(ME_EXTRA_CMD
, NULL
);
1652 argv_idx
= -1; /* skip to next argument */
1653 if (argv
[0][1] == NUL
)
1654 parmp
->commands
[parmp
->n_commands
++] = (char_u
*)"$";
1656 parmp
->commands
[parmp
->n_commands
++] = (char_u
*)&(argv
[0][1]);
1660 * Optional argument.
1662 else if (argv
[0][0] == '-' && !had_minmin
)
1664 want_argument
= FALSE
;
1665 c
= argv
[0][argv_idx
++];
1668 * VMS only uses upper case command lines. Interpret "-X" as "-x"
1669 * and "-/X" as "-X".
1673 c
= argv
[0][argv_idx
++];
1681 case NUL
: /* "vim -" read from stdin */
1682 /* "ex -" silent mode */
1687 if (parmp
->edit_type
!= EDIT_NONE
)
1688 mainerr(ME_TOO_MANY_ARGS
, (char_u
*)argv
[0]);
1689 parmp
->edit_type
= EDIT_STDIN
;
1690 read_cmd_fd
= 2; /* read from stderr instead of stdin */
1692 argv_idx
= -1; /* skip to next argument */
1695 case '-': /* "--" don't take any more option arguments */
1696 /* "--help" give help message */
1697 /* "--version" give version message */
1698 /* "--literal" take files literally */
1699 /* "--nofork" don't fork */
1700 /* "--noplugin[s]" skip plugins */
1701 /* "--cmd <cmd>" execute cmd before vimrc */
1702 if (STRICMP(argv
[0] + argv_idx
, "help") == 0)
1704 else if (STRICMP(argv
[0] + argv_idx
, "version") == 0)
1706 Columns
= 80; /* need to init Columns */
1707 info_message
= TRUE
; /* use mch_msg(), not mch_errmsg() */
1713 else if (STRNICMP(argv
[0] + argv_idx
, "literal", 7) == 0)
1715 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
1716 parmp
->literal
= TRUE
;
1719 else if (STRNICMP(argv
[0] + argv_idx
, "nofork", 6) == 0)
1722 gui
.dofork
= FALSE
; /* don't fork() when starting GUI */
1725 else if (STRNICMP(argv
[0] + argv_idx
, "noplugin", 8) == 0)
1727 else if (STRNICMP(argv
[0] + argv_idx
, "cmd", 3) == 0)
1729 want_argument
= TRUE
;
1732 else if (STRNICMP(argv
[0] + argv_idx
, "startuptime", 11) == 0)
1734 want_argument
= TRUE
;
1737 #ifdef FEAT_CLIENTSERVER
1738 else if (STRNICMP(argv
[0] + argv_idx
, "serverlist", 10) == 0)
1739 ; /* already processed -- no arg */
1740 else if (STRNICMP(argv
[0] + argv_idx
, "servername", 10) == 0
1741 || STRNICMP(argv
[0] + argv_idx
, "serversend", 10) == 0)
1743 /* already processed -- snatch the following arg */
1751 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32)
1752 # ifdef FEAT_GUI_GTK
1753 else if (STRNICMP(argv
[0] + argv_idx
, "socketid", 8) == 0)
1755 else if (STRNICMP(argv
[0] + argv_idx
, "windowid", 8) == 0)
1758 /* already processed -- snatch the following arg */
1767 else if (STRNICMP(argv
[0] + argv_idx
, "echo-wid", 8) == 0)
1769 /* already processed, skip */
1774 if (argv
[0][argv_idx
])
1775 mainerr(ME_UNKNOWN_OPTION
, (char_u
*)argv
[0]);
1779 argv_idx
= -1; /* skip to next argument */
1782 case 'A': /* "-A" start in Arabic mode */
1784 set_option_value((char_u
*)"arabic", 1L, NULL
, 0);
1786 mch_errmsg(_(e_noarabic
));
1791 case 'b': /* "-b" binary mode */
1792 /* Needs to be effective before expanding file names, because
1793 * for Win32 this makes us edit a shortcut file itself,
1794 * instead of the file it links to. */
1795 set_options_bin(curbuf
->b_p_bin
, 1, 0);
1796 curbuf
->b_p_bin
= 1; /* binary file I/O */
1799 case 'C': /* "-C" Compatible */
1800 change_compatible(TRUE
);
1803 case 'e': /* "-e" Ex mode */
1804 exmode_active
= EXMODE_NORMAL
;
1807 case 'E': /* "-E" Improved Ex mode */
1808 exmode_active
= EXMODE_VIM
;
1811 case 'f': /* "-f" GUI: run in foreground. Amiga: open
1812 window directly, not with newcli */
1814 gui
.dofork
= FALSE
; /* don't fork() when starting GUI */
1818 case 'g': /* "-g" start GUI */
1822 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
1825 set_option_value((char_u
*)"rl", 1L, NULL
, 0);
1827 mch_errmsg(_(e_nofarsi
));
1832 case 'h': /* "-h" give help message */
1833 #ifdef FEAT_GUI_GNOME
1834 /* Tell usage() to exit for "gvim". */
1835 gui
.starting
= FALSE
;
1840 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
1841 #ifdef FEAT_RIGHTLEFT
1843 set_option_value((char_u
*)"rl", 1L, NULL
, 0);
1845 mch_errmsg(_(e_nohebrew
));
1850 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
1852 set_option_value((char_u
*)"lisp", 1L, NULL
, 0);
1857 case 'M': /* "-M" no changes or writing of files */
1861 case 'm': /* "-m" no writing of files */
1865 case 'y': /* "-y" easy mode */
1867 gui
.starting
= TRUE
; /* start GUI a bit later */
1869 parmp
->evim_mode
= TRUE
;
1872 case 'N': /* "-N" Nocompatible */
1873 change_compatible(FALSE
);
1876 case 'n': /* "-n" no swap file */
1877 parmp
->no_swap_file
= TRUE
;
1880 case 'p': /* "-p[N]" open N tab pages */
1881 #ifdef TARGET_API_MAC_OSX
1882 /* For some reason on MacOS X, an argument like:
1883 -psn_0_10223617 is passed in when invoke from Finder
1884 or with the 'open' command */
1885 if (argv
[0][argv_idx
] == 's')
1887 argv_idx
= -1; /* bypass full -psn */
1893 /* default is 0: open window for each file */
1894 parmp
->window_count
= get_number_arg((char_u
*)argv
[0],
1896 parmp
->window_layout
= WIN_TABS
;
1900 case 'o': /* "-o[N]" open N horizontal split windows */
1902 /* default is 0: open window for each file */
1903 parmp
->window_count
= get_number_arg((char_u
*)argv
[0],
1905 parmp
->window_layout
= WIN_HOR
;
1909 case 'O': /* "-O[N]" open N vertical split windows */
1910 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
1911 /* default is 0: open window for each file */
1912 parmp
->window_count
= get_number_arg((char_u
*)argv
[0],
1914 parmp
->window_layout
= WIN_VER
;
1918 #ifdef FEAT_QUICKFIX
1919 case 'q': /* "-q" QuickFix mode */
1920 if (parmp
->edit_type
!= EDIT_NONE
)
1921 mainerr(ME_TOO_MANY_ARGS
, (char_u
*)argv
[0]);
1922 parmp
->edit_type
= EDIT_QF
;
1923 if (argv
[0][argv_idx
]) /* "-q{errorfile}" */
1925 parmp
->use_ef
= (char_u
*)argv
[0] + argv_idx
;
1928 else if (argc
> 1) /* "-q {errorfile}" */
1929 want_argument
= TRUE
;
1933 case 'R': /* "-R" readonly mode */
1934 readonlymode
= TRUE
;
1935 curbuf
->b_p_ro
= TRUE
;
1936 p_uc
= 10000; /* don't update very often */
1939 case 'r': /* "-r" recovery mode */
1940 case 'L': /* "-L" recovery mode */
1945 if (exmode_active
) /* "-s" silent (batch) mode */
1947 else /* "-s {scriptin}" read from script file */
1948 want_argument
= TRUE
;
1951 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
1952 if (parmp
->edit_type
!= EDIT_NONE
)
1953 mainerr(ME_TOO_MANY_ARGS
, (char_u
*)argv
[0]);
1954 parmp
->edit_type
= EDIT_TAG
;
1955 if (argv
[0][argv_idx
]) /* "-t{tag}" */
1957 parmp
->tagname
= (char_u
*)argv
[0] + argv_idx
;
1960 else /* "-t {tag}" */
1961 want_argument
= TRUE
;
1965 case 'D': /* "-D" Debugging */
1966 parmp
->use_debug_break_level
= 9999;
1970 case 'd': /* "-d" 'diff' */
1972 /* check for "-dev {device}" */
1973 if (argv
[0][argv_idx
] == 'e' && argv
[0][argv_idx
+ 1] == 'v')
1974 want_argument
= TRUE
;
1977 parmp
->diff_mode
= TRUE
;
1980 case 'V': /* "-V{N}" Verbose level */
1981 /* default is 10: a little bit verbose */
1982 p_verbose
= get_number_arg((char_u
*)argv
[0], &argv_idx
, 10);
1983 if (argv
[0][argv_idx
] != NUL
)
1985 set_option_value((char_u
*)"verbosefile", 0L,
1986 (char_u
*)argv
[0] + argv_idx
, 0);
1987 argv_idx
= (int)STRLEN(argv
[0]);
1991 case 'v': /* "-v" Vi-mode (as if called "vi") */
1994 gui
.starting
= FALSE
; /* don't start GUI */
1998 case 'w': /* "-w{number}" set window height */
1999 /* "-w {scriptout}" write to script */
2000 if (vim_isdigit(((char_u
*)argv
[0])[argv_idx
]))
2002 n
= get_number_arg((char_u
*)argv
[0], &argv_idx
, 10);
2003 set_option_value((char_u
*)"window", n
, NULL
, 0);
2006 want_argument
= TRUE
;
2010 case 'x': /* "-x" encrypted reading/writing of files */
2011 parmp
->ask_for_key
= TRUE
;
2015 case 'X': /* "-X" don't connect to X server */
2016 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
2017 x_no_connect
= TRUE
;
2021 case 'Z': /* "-Z" restricted mode */
2025 case 'c': /* "-c{command}" or "-c {command}" execute
2027 if (argv
[0][argv_idx
] != NUL
)
2029 if (parmp
->n_commands
>= MAX_ARG_CMDS
)
2030 mainerr(ME_EXTRA_CMD
, NULL
);
2031 parmp
->commands
[parmp
->n_commands
++] = (char_u
*)argv
[0]
2037 case 'S': /* "-S {file}" execute Vim script */
2038 case 'i': /* "-i {viminfo}" use for viminfo */
2040 case 'd': /* "-d {device}" device (for Amiga) */
2042 case 'T': /* "-T {terminal}" terminal name */
2043 case 'u': /* "-u {vimrc}" vim inits file */
2044 case 'U': /* "-U {gvimrc}" gvim inits file */
2045 case 'W': /* "-W {scriptout}" overwrite */
2047 case 'P': /* "-P {parent title}" MDI parent */
2049 want_argument
= TRUE
;
2053 mainerr(ME_UNKNOWN_OPTION
, (char_u
*)argv
[0]);
2057 * Handle option arguments with argument.
2062 * Check for garbage immediately after the option letter.
2064 if (argv
[0][argv_idx
] != NUL
)
2065 mainerr(ME_GARBAGE
, (char_u
*)argv
[0]);
2068 if (argc
< 1 && c
!= 'S') /* -S has an optional argument */
2069 mainerr_arg_missing((char_u
*)argv
[0]);
2075 case 'c': /* "-c {command}" execute command */
2076 case 'S': /* "-S {file}" execute Vim script */
2077 if (parmp
->n_commands
>= MAX_ARG_CMDS
)
2078 mainerr(ME_EXTRA_CMD
, NULL
);
2084 /* "-S" without argument: use default session file
2087 else if (argv
[0][0] == '-')
2089 /* "-S" followed by another option: use default
2090 * session file name. */
2097 p
= alloc((unsigned)(STRLEN(a
) + 4));
2100 sprintf((char *)p
, "so %s", a
);
2101 parmp
->cmds_tofree
[parmp
->n_commands
] = TRUE
;
2102 parmp
->commands
[parmp
->n_commands
++] = p
;
2105 parmp
->commands
[parmp
->n_commands
++] =
2110 if (argv
[-1][2] == 'c')
2112 /* "--cmd {command}" execute command */
2113 if (parmp
->n_pre_commands
>= MAX_ARG_CMDS
)
2114 mainerr(ME_EXTRA_CMD
, NULL
);
2115 parmp
->pre_commands
[parmp
->n_pre_commands
++] =
2118 /* "--startuptime <file>" already handled */
2121 /* case 'd': -d {device} is handled in mch_check_win() for the
2124 #ifdef FEAT_QUICKFIX
2125 case 'q': /* "-q {errorfile}" QuickFix mode */
2126 parmp
->use_ef
= (char_u
*)argv
[0];
2130 case 'i': /* "-i {viminfo}" use for viminfo */
2131 use_viminfo
= (char_u
*)argv
[0];
2134 case 's': /* "-s {scriptin}" read from script file */
2135 if (scriptin
[0] != NULL
)
2138 mch_errmsg(_("Attempt to open script file again: \""));
2139 mch_errmsg(argv
[-1]);
2141 mch_errmsg(argv
[0]);
2145 if ((scriptin
[0] = mch_fopen(argv
[0], READBIN
)) == NULL
)
2147 mch_errmsg(_("Cannot open for reading: \""));
2148 mch_errmsg(argv
[0]);
2152 if (save_typebuf() == FAIL
)
2153 mch_exit(2); /* out of memory */
2156 case 't': /* "-t {tag}" */
2157 parmp
->tagname
= (char_u
*)argv
[0];
2160 case 'T': /* "-T {terminal}" terminal name */
2162 * The -T term argument is always available and when
2163 * HAVE_TERMLIB is supported it overrides the environment
2167 if (term_is_gui((char_u
*)argv
[0]))
2168 gui
.starting
= TRUE
; /* start GUI a bit later */
2171 parmp
->term
= (char_u
*)argv
[0];
2174 case 'u': /* "-u {vimrc}" vim inits file */
2175 parmp
->use_vimrc
= (char_u
*)argv
[0];
2178 case 'U': /* "-U {gvimrc}" gvim inits file */
2180 use_gvimrc
= (char_u
*)argv
[0];
2184 case 'w': /* "-w {nr}" 'window' value */
2185 /* "-w {scriptout}" append to script file */
2186 if (vim_isdigit(*((char_u
*)argv
[0])))
2189 n
= get_number_arg((char_u
*)argv
[0], &argv_idx
, 10);
2190 set_option_value((char_u
*)"window", n
, NULL
, 0);
2195 case 'W': /* "-W {scriptout}" overwrite script file */
2196 if (scriptout
!= NULL
)
2198 if ((scriptout
= mch_fopen(argv
[0],
2199 c
== 'w' ? APPENDBIN
: WRITEBIN
)) == NULL
)
2201 mch_errmsg(_("Cannot open for script output: \""));
2202 mch_errmsg(argv
[0]);
2209 case 'P': /* "-P {parent title}" MDI parent */
2210 gui_mch_set_parent(argv
[0]);
2218 * File name argument.
2222 argv_idx
= -1; /* skip to next argument */
2224 /* Check for only one type of editing. */
2225 if (parmp
->edit_type
!= EDIT_NONE
&& parmp
->edit_type
!= EDIT_FILE
)
2226 mainerr(ME_TOO_MANY_ARGS
, (char_u
*)argv
[0]);
2227 parmp
->edit_type
= EDIT_FILE
;
2230 /* Remember if the argument was a full path before changing
2231 * slashes to backslashes. */
2232 if (argv
[0][0] != NUL
&& argv
[0][1] == ':' && argv
[0][2] == '\\')
2233 parmp
->full_path
= TRUE
;
2236 /* Add the file to the global argument list. */
2237 if (ga_grow(&global_alist
.al_ga
, 1) == FAIL
2238 || (p
= vim_strsave((char_u
*)argv
[0])) == NULL
)
2241 if (parmp
->diff_mode
&& mch_isdir(p
) && GARGCOUNT
> 0
2242 && !mch_isdir(alist_name(&GARGLIST
[0])))
2246 r
= concat_fnames(p
, gettail(alist_name(&GARGLIST
[0])), TRUE
);
2254 #if defined(__CYGWIN32__) && !defined(WIN32)
2256 * If vim is invoked by non-Cygwin tools, convert away any
2257 * DOS paths, so things like .swp files are created correctly.
2258 * Look for evidence of non-Cygwin paths before we bother.
2259 * This is only for when using the Unix files.
2261 if (strpbrk(p
, "\\:") != NULL
)
2263 char posix_path
[PATH_MAX
];
2265 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2266 cygwin_conv_path(CCP_WIN_A_TO_POSIX
, p
, posix_path
, PATH_MAX
);
2268 cygwin_conv_to_posix_path(p
, posix_path
);
2271 p
= vim_strsave(posix_path
);
2277 #ifdef USE_FNAME_CASE
2278 /* Make the case of the file name match the actual file. */
2282 alist_add(&global_alist
, p
,
2283 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
2284 parmp
->literal
? 2 : 0 /* add buffer nr after exp. */
2286 2 /* add buffer number now and use curbuf */
2290 #if defined(FEAT_MBYTE) && defined(WIN32)
2292 /* Remember this argument has been added to the argument list.
2293 * Needed when 'encoding' is changed. */
2294 used_file_arg(argv
[0], parmp
->literal
, parmp
->full_path
,
2306 * If there are no more letters after the current "-", go to next
2307 * argument. argv_idx is set to -1 when the current argument is to be
2310 if (argv_idx
<= 0 || argv
[0][argv_idx
] == NUL
)
2319 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
2321 if (parmp
->n_commands
> 0)
2323 p
= alloc((unsigned)STRLEN(parmp
->commands
[0]) + 3);
2326 sprintf((char *)p
, ":%s\r", parmp
->commands
[0]);
2327 set_vim_var_string(VV_SWAPCOMMAND
, p
, -1);
2335 * Print a warning if stdout is not a terminal.
2336 * When starting in Ex mode and commands come from a file, set Silent mode.
2342 int input_isatty
; /* is active input a terminal? */
2344 input_isatty
= mch_input_isatty();
2350 else if (parmp
->want_full_screen
&& (!parmp
->stdout_isatty
|| !input_isatty
)
2352 /* don't want the delay when started from the desktop */
2359 * This shouldn't be necessary. But if I run netbeans with the log
2360 * output coming to the console and XOpenDisplay fails, I get vim
2361 * trying to start with input/output to my console tty. This fills my
2362 * input buffer so fast I can't even kill the process in under 2
2363 * minutes (and it beeps continuously the whole time :-)
2365 if (usingNetbeans
&& (!parmp
->stdout_isatty
|| !input_isatty
))
2367 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
2371 if (!parmp
->stdout_isatty
)
2372 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
2374 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
2376 if (scriptin
[0] == NULL
)
2377 ui_delay(2000L, TRUE
);
2378 TIME_MSG("Warning delay");
2383 * Read text from stdin.
2390 #if defined(HAS_SWAP_EXISTS_ACTION)
2391 /* When getting the ATTENTION prompt here, use a dialog */
2392 swap_exists_action
= SEA_DIALOG
;
2394 no_wait_return
= TRUE
;
2396 set_buflisted(TRUE
);
2397 (void)open_buffer(TRUE
, NULL
); /* create memfile and read file */
2398 no_wait_return
= FALSE
;
2400 TIME_MSG("reading stdin");
2401 #if defined(HAS_SWAP_EXISTS_ACTION)
2402 check_swap_exists_action();
2404 #if !(defined(AMIGA) || defined(MACOS))
2406 * Close stdin and dup it from stderr. Required for GPM to work
2407 * properly, and for running external commands.
2408 * Is there any other system that cannot do this?
2416 * Create the requested number of windows and edit buffers in them.
2417 * Also does recovery if "recoverymode" set.
2420 create_windows(parmp
)
2421 mparm_T
*parmp UNUSED
;
2428 * Create the number of windows that was requested.
2430 if (parmp
->window_count
== -1) /* was not set */
2431 parmp
->window_count
= 1;
2432 if (parmp
->window_count
== 0)
2433 parmp
->window_count
= GARGCOUNT
;
2434 if (parmp
->window_count
> 1)
2436 /* Don't change the windows if there was a command in .vimrc that
2437 * already split some windows */
2438 if (parmp
->window_layout
== 0)
2439 parmp
->window_layout
= WIN_HOR
;
2440 if (parmp
->window_layout
== WIN_TABS
)
2442 parmp
->window_count
= make_tabpages(parmp
->window_count
);
2443 TIME_MSG("making tab pages");
2445 else if (firstwin
->w_next
== NULL
)
2447 parmp
->window_count
= make_windows(parmp
->window_count
,
2448 parmp
->window_layout
== WIN_VER
);
2449 TIME_MSG("making windows");
2452 parmp
->window_count
= win_count();
2455 parmp
->window_count
= 1;
2458 if (recoverymode
) /* do recover */
2460 msg_scroll
= TRUE
; /* scroll message up */
2462 if (curbuf
->b_ml
.ml_mfp
== NULL
) /* failed */
2464 do_modelines(0); /* do modelines */
2469 * Open a buffer for windows that don't have one yet.
2470 * Commands in the .vimrc might have loaded a file or split the window.
2471 * Watch out for autocommands that delete a window.
2475 * Don't execute Win/Buf Enter/Leave autocommands here
2482 while (done
++ < 1000)
2486 if (parmp
->window_layout
== WIN_TABS
)
2491 else if (parmp
->window_layout
== WIN_TABS
)
2493 if (curtab
->tp_next
== NULL
)
2499 if (curwin
->w_next
== NULL
)
2501 curwin
= curwin
->w_next
;
2505 curbuf
= curwin
->w_buffer
;
2506 if (curbuf
->b_ml
.ml_mfp
== NULL
)
2509 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2511 curwin
->w_p_fdl
= p_fdls
;
2513 #if defined(HAS_SWAP_EXISTS_ACTION)
2514 /* When getting the ATTENTION prompt here, use a dialog */
2515 swap_exists_action
= SEA_DIALOG
;
2517 set_buflisted(TRUE
);
2518 (void)open_buffer(FALSE
, NULL
); /* create memfile, read file */
2520 #if defined(HAS_SWAP_EXISTS_ACTION)
2521 if (swap_exists_action
== SEA_QUIT
)
2523 if (got_int
|| only_one_window())
2525 /* abort selected or quit and only one window */
2526 did_emsg
= FALSE
; /* avoid hit-enter prompt */
2529 /* We can't close the window, it would disturb what
2530 * happens next. Clear the file name and set the arg
2531 * index to -1 to delete it later. */
2532 setfname(curbuf
, NULL
, NULL
, FALSE
);
2533 curwin
->w_arg_idx
= -1;
2534 swap_exists_action
= SEA_NONE
;
2537 handle_swap_exists(NULL
);
2540 dorewind
= TRUE
; /* start again */
2547 (void)vgetc(); /* only break the file loading, not the rest */
2553 if (parmp
->window_layout
== WIN_TABS
)
2557 curbuf
= curwin
->w_buffer
;
2568 * If opened more than one window, start editing files in the other
2569 * windows. make_windows() has already opened the windows.
2575 int arg_idx
; /* index in argument list */
2579 # ifdef FEAT_AUTOCMD
2581 * Don't execute Win/Buf Enter/Leave autocommands here
2587 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2588 if (curwin
->w_arg_idx
== -1)
2590 win_close(curwin
, TRUE
);
2595 for (i
= 1; i
< parmp
->window_count
; ++i
)
2597 /* When w_arg_idx is -1 remove the window (see create_windows()). */
2598 if (curwin
->w_arg_idx
== -1)
2601 win_close(curwin
, TRUE
);
2608 if (parmp
->window_layout
== WIN_TABS
)
2610 if (curtab
->tp_next
== NULL
) /* just checking */
2616 if (curwin
->w_next
== NULL
) /* just checking */
2618 win_enter(curwin
->w_next
, FALSE
);
2623 /* Only open the file if there is no file in this window yet (that can
2624 * happen when .vimrc contains ":sall"). */
2625 if (curbuf
== firstwin
->w_buffer
|| curbuf
->b_ffname
== NULL
)
2627 curwin
->w_arg_idx
= arg_idx
;
2628 /* Edit file from arg list, if there is one. When "Quit" selected
2629 * at the ATTENTION prompt close the window. */
2630 # ifdef HAS_SWAP_EXISTS_ACTION
2631 swap_exists_did_quit
= FALSE
;
2633 (void)do_ecmd(0, arg_idx
< GARGCOUNT
2634 ? alist_name(&GARGLIST
[arg_idx
]) : NULL
,
2635 NULL
, NULL
, ECMD_LASTL
, ECMD_HIDE
, curwin
);
2636 # ifdef HAS_SWAP_EXISTS_ACTION
2637 if (swap_exists_did_quit
)
2639 /* abort or quit selected */
2640 if (got_int
|| only_one_window())
2642 /* abort selected and only one window */
2643 did_emsg
= FALSE
; /* avoid hit-enter prompt */
2646 win_close(curwin
, TRUE
);
2650 if (arg_idx
== GARGCOUNT
- 1)
2651 arg_had_last
= TRUE
;
2657 (void)vgetc(); /* only break the file loading, not the rest */
2662 if (parmp
->window_layout
== WIN_TABS
)
2664 # ifdef FEAT_AUTOCMD
2667 win_enter(firstwin
, FALSE
); /* back to first window */
2668 # ifdef FEAT_AUTOCMD
2671 TIME_MSG("editing files in windows");
2672 if (parmp
->window_count
> 1 && parmp
->window_layout
!= WIN_TABS
)
2673 win_equal(curwin
, FALSE
, 'b'); /* adjust heights */
2675 #endif /* FEAT_WINDOWS */
2678 * Execute the commands from --cmd arguments "cmds[cnt]".
2681 exe_pre_commands(parmp
)
2684 char_u
**cmds
= parmp
->pre_commands
;
2685 int cnt
= parmp
->n_pre_commands
;
2690 curwin
->w_cursor
.lnum
= 0; /* just in case.. */
2691 sourcing_name
= (char_u
*)_("pre-vimrc command line");
2693 current_SID
= SID_CMDARG
;
2695 for (i
= 0; i
< cnt
; ++i
)
2696 do_cmdline_cmd(cmds
[i
]);
2697 sourcing_name
= NULL
;
2701 TIME_MSG("--cmd commands");
2706 * Execute "+", "-c" and "-S" arguments.
2715 * We start commands on line 0, make "vim +/pat file" match a
2716 * pattern on line 1. But don't move the cursor when an autocommand
2717 * with g`" was used.
2720 if (parmp
->tagname
== NULL
&& curwin
->w_cursor
.lnum
<= 1)
2721 curwin
->w_cursor
.lnum
= 0;
2722 sourcing_name
= (char_u
*)"command line";
2724 current_SID
= SID_CARG
;
2726 for (i
= 0; i
< parmp
->n_commands
; ++i
)
2728 do_cmdline_cmd(parmp
->commands
[i
]);
2729 if (parmp
->cmds_tofree
[i
])
2730 vim_free(parmp
->commands
[i
]);
2732 sourcing_name
= NULL
;
2736 if (curwin
->w_cursor
.lnum
== 0)
2737 curwin
->w_cursor
.lnum
= 1;
2742 #ifdef FEAT_QUICKFIX
2743 /* When started with "-q errorfile" jump to first error again. */
2744 if (parmp
->edit_type
== EDIT_QF
)
2745 qf_jump(NULL
, 0, 0, FALSE
);
2747 TIME_MSG("executing command arguments");
2751 * Source startup scripts.
2754 source_startup_scripts(parmp
)
2760 * For "evim" source evim.vim first of all, so that the user can overrule
2761 * any things he doesn't like.
2763 if (parmp
->evim_mode
)
2765 (void)do_source((char_u
*)EVIM_FILE
, FALSE
, DOSO_NONE
);
2766 TIME_MSG("source evim file");
2770 * If -u argument given, use only the initializations from that file and
2773 if (parmp
->use_vimrc
!= NULL
)
2775 if (STRCMP(parmp
->use_vimrc
, "NONE") == 0
2776 || STRCMP(parmp
->use_vimrc
, "NORC") == 0)
2779 if (use_gvimrc
== NULL
) /* don't load gvimrc either */
2780 use_gvimrc
= parmp
->use_vimrc
;
2782 if (parmp
->use_vimrc
[2] == 'N')
2783 p_lpl
= FALSE
; /* don't load plugins either */
2787 if (do_source(parmp
->use_vimrc
, FALSE
, DOSO_NONE
) != OK
)
2788 EMSG2(_("E282: Cannot read from \"%s\""), parmp
->use_vimrc
);
2791 else if (!silent_mode
)
2794 struct Process
*proc
= (struct Process
*)FindTask(0L);
2795 APTR save_winptr
= proc
->pr_WindowPtr
;
2797 /* Avoid a requester here for a volume that doesn't exist. */
2798 proc
->pr_WindowPtr
= (APTR
)-1L;
2802 * Get system wide defaults, if the file name is defined.
2804 #ifdef SYS_VIMRC_FILE
2805 (void)do_source((char_u
*)SYS_VIMRC_FILE
, FALSE
, DOSO_NONE
);
2808 (void)do_source((char_u
*)"$VIMRUNTIME/macmap.vim", FALSE
, DOSO_NONE
);
2812 * Try to read initialization commands from the following places:
2813 * - environment variable VIMINIT
2814 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
2815 * - second user vimrc file ($VIM/.vimrc for Dos)
2816 * - environment variable EXINIT
2817 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
2818 * - second user exrc file ($VIM/.exrc for Dos)
2819 * The first that exists is used, the rest is ignored.
2821 if (process_env((char_u
*)"VIMINIT", TRUE
) != OK
)
2823 if (do_source((char_u
*)USR_VIMRC_FILE
, TRUE
, DOSO_VIMRC
) == FAIL
2824 #ifdef USR_VIMRC_FILE2
2825 && do_source((char_u
*)USR_VIMRC_FILE2
, TRUE
,
2828 #ifdef USR_VIMRC_FILE3
2829 && do_source((char_u
*)USR_VIMRC_FILE3
, TRUE
,
2832 && process_env((char_u
*)"EXINIT", FALSE
) == FAIL
2833 && do_source((char_u
*)USR_EXRC_FILE
, FALSE
, DOSO_NONE
) == FAIL
)
2835 #ifdef USR_EXRC_FILE2
2836 (void)do_source((char_u
*)USR_EXRC_FILE2
, FALSE
, DOSO_NONE
);
2842 * Read initialization commands from ".vimrc" or ".exrc" in current
2843 * directory. This is only done if the 'exrc' option is set.
2844 * Because of security reasons we disallow shell and write commands
2845 * now, except for unix if the file is owned by the user or 'secure'
2846 * option has been reset in environment of global ".exrc" or ".vimrc".
2847 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
2852 #if defined(UNIX) || defined(VMS)
2853 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
2854 if (!file_owned(VIMRC_FILE
))
2859 if (fullpathcmp((char_u
*)USR_VIMRC_FILE
,
2860 (char_u
*)VIMRC_FILE
, FALSE
) != FPC_SAME
2861 #ifdef USR_VIMRC_FILE2
2862 && fullpathcmp((char_u
*)USR_VIMRC_FILE2
,
2863 (char_u
*)VIMRC_FILE
, FALSE
) != FPC_SAME
2865 #ifdef USR_VIMRC_FILE3
2866 && fullpathcmp((char_u
*)USR_VIMRC_FILE3
,
2867 (char_u
*)VIMRC_FILE
, FALSE
) != FPC_SAME
2869 #ifdef SYS_VIMRC_FILE
2870 && fullpathcmp((char_u
*)SYS_VIMRC_FILE
,
2871 (char_u
*)VIMRC_FILE
, FALSE
) != FPC_SAME
2874 i
= do_source((char_u
*)VIMRC_FILE
, TRUE
, DOSO_VIMRC
);
2878 #if defined(UNIX) || defined(VMS)
2879 /* if ".exrc" is not owned by user set 'secure' mode */
2880 if (!file_owned(EXRC_FILE
))
2885 if ( fullpathcmp((char_u
*)USR_EXRC_FILE
,
2886 (char_u
*)EXRC_FILE
, FALSE
) != FPC_SAME
2887 #ifdef USR_EXRC_FILE2
2888 && fullpathcmp((char_u
*)USR_EXRC_FILE2
,
2889 (char_u
*)EXRC_FILE
, FALSE
) != FPC_SAME
2892 (void)do_source((char_u
*)EXRC_FILE
, FALSE
, DOSO_NONE
);
2896 need_wait_return
= TRUE
;
2899 proc
->pr_WindowPtr
= save_winptr
;
2902 TIME_MSG("sourcing vimrc file(s)");
2906 * Setup to start using the GUI. Exit with an error when not available.
2912 gui
.starting
= TRUE
; /* start GUI a bit later */
2914 mch_errmsg(_(e_nogvim
));
2921 * Get an environment variable, and execute it as Ex commands.
2922 * Returns FAIL if the environment variable was not executed, OK otherwise.
2925 process_env(env
, is_viminit
)
2927 int is_viminit
; /* when TRUE, called for VIMINIT */
2930 char_u
*save_sourcing_name
;
2931 linenr_T save_sourcing_lnum
;
2936 if ((initstr
= mch_getenv(env
)) != NULL
&& *initstr
!= NUL
)
2939 vimrc_found(NULL
, NULL
);
2940 save_sourcing_name
= sourcing_name
;
2941 save_sourcing_lnum
= sourcing_lnum
;
2942 sourcing_name
= env
;
2945 save_sid
= current_SID
;
2946 current_SID
= SID_ENV
;
2948 do_cmdline_cmd(initstr
);
2949 sourcing_name
= save_sourcing_name
;
2950 sourcing_lnum
= save_sourcing_lnum
;
2952 current_SID
= save_sid
;;
2959 #if defined(UNIX) || defined(VMS)
2961 * Return TRUE if we are certain the user owns the file "fname".
2962 * Used for ".vimrc" and ".exrc".
2963 * Use both stat() and lstat() for extra security.
2971 uid_t uid
= getuid();
2973 uid_t uid
= ((getgid() << 16) | getuid());
2976 return !(mch_stat(fname
, &s
) != 0 || s
.st_uid
!= uid
2978 || mch_lstat(fname
, &s
) != 0 || s
.st_uid
!= uid
2985 * Give an error message main_errors["n"] and exit.
2989 int n
; /* one of the ME_ defines */
2990 char_u
*str
; /* extra argument or NULL */
2992 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
2993 reset_signals(); /* kill us with CTRL-C here, if you like */
2996 mch_errmsg(longVersion
);
2998 mch_errmsg(_(main_errors
[n
]));
3002 mch_errmsg((char *)str
);
3005 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
3011 mainerr_arg_missing(str
)
3014 mainerr(ME_ARG_MISSING
, str
);
3018 * print a message with three spaces prepended and '\n' appended.
3030 * Print messages for "vim -h" or "vim --help" and exit.
3036 static char *(use
[]) =
3038 N_("[file ..] edit specified file(s)"),
3039 N_("- read text from stdin"),
3040 N_("-t tag edit file where tag is defined"),
3041 #ifdef FEAT_QUICKFIX
3042 N_("-q [errorfile] edit file with first error")
3046 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
3047 reset_signals(); /* kill us with CTRL-C here, if you like */
3050 mch_msg(longVersion
);
3051 mch_msg(_("\n\nusage:"));
3054 mch_msg(_(" vim [arguments] "));
3056 if (i
== (sizeof(use
) / sizeof(char_u
*)) - 1)
3058 mch_msg(_("\n or:"));
3061 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case"));
3064 mch_msg(_("\n\nArguments:\n"));
3065 main_msg(_("--\t\t\tOnly file names after this"));
3066 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
3067 main_msg(_("--literal\t\tDon't expand wildcards"));
3070 main_msg(_("-register\t\tRegister this gvim for OLE"));
3071 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
3074 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
3075 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
3077 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
3078 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
3079 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
3081 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
3083 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
3084 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
3085 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
3086 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
3087 main_msg(_("-M\t\t\tModifications in text not allowed"));
3088 main_msg(_("-b\t\t\tBinary mode"));
3090 main_msg(_("-l\t\t\tLisp mode"));
3092 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
3093 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
3094 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]"));
3096 main_msg(_("-D\t\t\tDebugging mode"));
3098 main_msg(_("-n\t\t\tNo swap file, use memory only"));
3099 main_msg(_("-r\t\t\tList swap files and exit"));
3100 main_msg(_("-r (with file name)\tRecover crashed session"));
3101 main_msg(_("-L\t\t\tSame as -r"));
3103 main_msg(_("-f\t\t\tDon't use newcli to open window"));
3104 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
3107 main_msg(_("-A\t\t\tstart in Arabic mode"));
3109 #ifdef FEAT_RIGHTLEFT
3110 main_msg(_("-H\t\t\tStart in Hebrew mode"));
3113 main_msg(_("-F\t\t\tStart in Farsi mode"));
3115 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
3116 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
3118 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
3120 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
3122 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
3123 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
3124 main_msg(_("-O[N]\t\tLike -o but split vertically"));
3126 main_msg(_("+\t\t\tStart at end of file"));
3127 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
3128 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
3129 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
3130 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
3131 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
3132 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
3133 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
3135 main_msg(_("-x\t\t\tEdit encrypted files"));
3137 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
3138 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
3139 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
3141 main_msg(_("-X\t\t\tDo not connect to X server"));
3143 #ifdef FEAT_CLIENTSERVER
3144 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
3145 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
3146 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
3147 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
3148 # ifdef FEAT_WINDOWS
3149 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"));
3151 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
3152 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
3153 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
3154 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
3157 main_msg(_("--startuptime=<file>\tWrite startup timing messages to <file>"));
3160 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
3162 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
3163 main_msg(_("--version\t\tPrint version information and exit"));
3166 # ifdef FEAT_GUI_MOTIF
3167 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3169 # ifdef FEAT_GUI_ATHENA
3170 # ifdef FEAT_GUI_NEXTAW
3171 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3173 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3177 main_msg(_("-display <display>\tRun vim on <display>"));
3178 main_msg(_("-iconic\t\tStart vim iconified"));
3180 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
3181 mch_msg(_("\t\t\t (Unimplemented)\n"));
3183 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3184 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3185 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3186 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3187 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3188 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3189 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3190 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3191 # ifdef FEAT_GUI_ATHENA
3192 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3194 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3195 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3196 main_msg(_("-xrm <resource>\tSet the specified resource"));
3197 #endif /* FEAT_GUI_X11 */
3198 #if defined(FEAT_GUI) && defined(RISCOS)
3199 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
3200 main_msg(_("--columns <number>\tInitial width of window in columns"));
3201 main_msg(_("--rows <number>\tInitial height of window in rows"));
3204 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
3205 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
3206 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3207 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3208 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
3210 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
3212 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
3215 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
3216 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget"));
3219 #ifdef FEAT_GUI_GNOME
3220 /* Gnome gives extra messages for --help if we continue, but not for -h. */
3228 #if defined(HAS_SWAP_EXISTS_ACTION)
3230 * Check the result of the ATTENTION dialog:
3231 * When "Quit" selected, exit Vim.
3232 * When "Recover" selected, recover the file.
3235 check_swap_exists_action()
3237 if (swap_exists_action
== SEA_QUIT
)
3239 handle_swap_exists(NULL
);
3243 #if defined(STARTUPTIME) || defined(PROTO)
3244 static void time_diff
__ARGS((struct timeval
*then
, struct timeval
*now
));
3246 static struct timeval prev_timeval
;
3250 * Windows doesn't have gettimeofday(), although it does have struct timeval.
3253 gettimeofday(struct timeval
*tv
, char *dummy
)
3256 tv
->tv_sec
= t
/ CLOCKS_PER_SEC
;
3257 tv
->tv_usec
= (t
- tv
->tv_sec
* CLOCKS_PER_SEC
) * 1000000 / CLOCKS_PER_SEC
;
3263 * Save the previous time before doing something that could nest.
3264 * set "*tv_rel" to the time elapsed so far.
3267 time_push(tv_rel
, tv_start
)
3268 void *tv_rel
, *tv_start
;
3270 *((struct timeval
*)tv_rel
) = prev_timeval
;
3271 gettimeofday(&prev_timeval
, NULL
);
3272 ((struct timeval
*)tv_rel
)->tv_usec
= prev_timeval
.tv_usec
3273 - ((struct timeval
*)tv_rel
)->tv_usec
;
3274 ((struct timeval
*)tv_rel
)->tv_sec
= prev_timeval
.tv_sec
3275 - ((struct timeval
*)tv_rel
)->tv_sec
;
3276 if (((struct timeval
*)tv_rel
)->tv_usec
< 0)
3278 ((struct timeval
*)tv_rel
)->tv_usec
+= 1000000;
3279 --((struct timeval
*)tv_rel
)->tv_sec
;
3281 *(struct timeval
*)tv_start
= prev_timeval
;
3285 * Compute the previous time after doing something that could nest.
3286 * Subtract "*tp" from prev_timeval;
3287 * Note: The arguments are (void *) to avoid trouble with systems that don't
3288 * have struct timeval.
3292 void *tp
; /* actually (struct timeval *) */
3294 prev_timeval
.tv_usec
-= ((struct timeval
*)tp
)->tv_usec
;
3295 prev_timeval
.tv_sec
-= ((struct timeval
*)tp
)->tv_sec
;
3296 if (prev_timeval
.tv_usec
< 0)
3298 prev_timeval
.tv_usec
+= 1000000;
3299 --prev_timeval
.tv_sec
;
3304 time_diff(then
, now
)
3305 struct timeval
*then
;
3306 struct timeval
*now
;
3311 usec
= now
->tv_usec
- then
->tv_usec
;
3312 msec
= (now
->tv_sec
- then
->tv_sec
) * 1000L + usec
/ 1000L,
3313 usec
= usec
% 1000L;
3314 fprintf(time_fd
, "%03ld.%03ld", msec
, usec
>= 0 ? usec
: usec
+ 1000L);
3318 time_msg(msg
, tv_start
)
3320 void *tv_start
; /* only for do_source: start time; actually
3321 (struct timeval *) */
3323 static struct timeval start
;
3326 if (time_fd
!= NULL
)
3328 if (strstr(msg
, "STARTING") != NULL
)
3330 gettimeofday(&start
, NULL
);
3331 prev_timeval
= start
;
3332 fprintf(time_fd
, "\n\ntimes in msec\n");
3333 fprintf(time_fd
, " clock self+sourced self: sourced script\n");
3334 fprintf(time_fd
, " clock elapsed: other lines\n\n");
3336 gettimeofday(&now
, NULL
);
3337 time_diff(&start
, &now
);
3338 if (((struct timeval
*)tv_start
) != NULL
)
3340 fprintf(time_fd
, " ");
3341 time_diff(((struct timeval
*)tv_start
), &now
);
3343 fprintf(time_fd
, " ");
3344 time_diff(&prev_timeval
, &now
);
3346 fprintf(time_fd
, ": %s\n", msg
);
3352 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
3355 * Common code for the X command server and the Win32 command server.
3358 static char_u
*build_drop_cmd
__ARGS((int filec
, char **filev
, int tabs
, int sendReply
));
3361 * Do the client-server stuff, unless "--servername ''" was used.
3364 exec_on_server(parmp
)
3367 if (parmp
->serverName_arg
== NULL
|| *parmp
->serverName_arg
!= NUL
)
3370 /* Initialise the client/server messaging infrastructure. */
3371 serverInitMessaging();
3375 * When a command server argument was found, execute it. This may
3376 * exit Vim when it was successful. Otherwise it's executed further
3377 * on. Remember the encoding used here in "serverStrEnc".
3379 if (parmp
->serverArg
)
3381 cmdsrv_main(&parmp
->argc
, parmp
->argv
,
3382 parmp
->serverName_arg
, &parmp
->serverStr
);
3384 parmp
->serverStrEnc
= vim_strsave(p_enc
);
3388 /* If we're still running, get the name to register ourselves.
3389 * On Win32 can register right now, for X11 need to setup the
3390 * clipboard first, it's further down. */
3391 parmp
->servername
= serverMakeName(parmp
->serverName_arg
,
3394 if (parmp
->servername
!= NULL
)
3396 serverSetName(parmp
->servername
);
3397 vim_free(parmp
->servername
);
3404 * Prepare for running as a Vim server.
3407 prepare_server(parmp
)
3410 # if defined(FEAT_X11)
3412 * Register for remote command execution with :serversend and --remote
3413 * unless there was a -X or a --servername '' on the command line.
3414 * Only register nongui-vim's with an explicit --servername argument.
3415 * When running as root --servername is also required.
3417 if (X_DISPLAY
!= NULL
&& parmp
->servername
!= NULL
&& (
3421 && getuid() != ROOT_UID
3425 parmp
->serverName_arg
!= NULL
))
3427 (void)serverRegisterName(X_DISPLAY
, parmp
->servername
);
3428 vim_free(parmp
->servername
);
3429 TIME_MSG("register server name");
3432 serverDelayedStartName
= parmp
->servername
;
3436 * Execute command ourselves if we're here because the send failed (or
3437 * else we would have exited above).
3439 if (parmp
->serverStr
!= NULL
)
3443 server_to_input_buf(serverConvert(parmp
->serverStrEnc
,
3444 parmp
->serverStr
, &p
));
3450 cmdsrv_main(argc
, argv
, serverName_arg
, serverStr
)
3453 char_u
*serverName_arg
;
3462 char **newArgV
= argv
+ 1;
3466 #define ARGTYPE_OTHER 0
3467 #define ARGTYPE_EDIT 1
3468 #define ARGTYPE_EDIT_WAIT 2
3469 #define ARGTYPE_SEND 3
3480 sname
= serverMakeName(serverName_arg
, argv
[0]);
3485 * Execute the command server related arguments and remove them
3486 * from the argc/argv array; We may have to return into main()
3488 for (i
= 1; i
< Argc
; i
++)
3491 if (STRCMP(argv
[i
], "--") == 0) /* end of option arguments */
3493 for (; i
< *argc
; i
++)
3495 *newArgV
++ = argv
[i
];
3501 if (STRICMP(argv
[i
], "--remote-send") == 0)
3502 argtype
= ARGTYPE_SEND
;
3503 else if (STRNICMP(argv
[i
], "--remote", 8) == 0)
3505 char *p
= argv
[i
] + 8;
3507 argtype
= ARGTYPE_EDIT
;
3510 if (STRNICMP(p
, "-wait", 5) == 0)
3512 argtype
= ARGTYPE_EDIT_WAIT
;
3515 else if (STRNICMP(p
, "-silent", 7) == 0)
3520 else if (STRNICMP(p
, "-tab", 4) == 0)
3527 argtype
= ARGTYPE_OTHER
;
3533 argtype
= ARGTYPE_OTHER
;
3535 if (argtype
!= ARGTYPE_OTHER
)
3538 mainerr_arg_missing((char_u
*)argv
[i
]);
3539 if (argtype
== ARGTYPE_SEND
)
3541 *serverStr
= (char_u
*)argv
[i
+ 1];
3546 *serverStr
= build_drop_cmd(*argc
- i
- 1, argv
+ i
+ 1,
3547 tabs
, argtype
== ARGTYPE_EDIT_WAIT
);
3548 if (*serverStr
== NULL
)
3550 /* Probably out of memory, exit. */
3558 if (xterm_dpy
== NULL
)
3560 mch_errmsg(_("No display"));
3564 ret
= serverSendToVim(xterm_dpy
, sname
, *serverStr
,
3565 NULL
, &srv
, 0, 0, silent
);
3567 /* Win32 always works? */
3568 ret
= serverSendToVim(sname
, *serverStr
, NULL
, &srv
, 0, silent
);
3572 if (argtype
== ARGTYPE_SEND
)
3574 /* Failed to send, abort. */
3575 mch_errmsg(_(": Send failed.\n"));
3580 /* Let vim start normally. */
3581 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
3585 # ifdef FEAT_GUI_W32
3586 /* Guess that when the server name starts with "g" it's a GUI
3587 * server, which we can bring to the foreground here.
3588 * Foreground() in the server doesn't work very well. */
3589 if (argtype
!= ARGTYPE_SEND
&& TOUPPER_ASC(*sname
) == 'G')
3590 SetForegroundWindow(srv
);
3594 * For --remote-wait: Wait until the server did edit each
3595 * file. Also detect that the server no longer runs.
3597 if (ret
>= 0 && argtype
== ARGTYPE_EDIT_WAIT
)
3599 int numFiles
= *argc
- i
- 1;
3601 char_u
*done
= alloc(numFiles
);
3603 # ifdef FEAT_GUI_W32
3606 extern HWND message_window
;
3609 if (numFiles
> 0 && argv
[i
+ 1][0] == '+')
3610 /* Skip "+cmd" argument, don't wait for it to be edited. */
3613 # ifdef FEAT_GUI_W32
3614 ni
.cbSize
= sizeof(ni
);
3615 ni
.hWnd
= message_window
;
3617 ni
.uFlags
= NIF_ICON
|NIF_TIP
;
3618 ni
.hIcon
= LoadIcon((HINSTANCE
)GetModuleHandle(0), "IDR_VIM");
3619 sprintf(ni
.szTip
, _("%d of %d edited"), count
, numFiles
);
3620 Shell_NotifyIcon(NIM_ADD
, &ni
);
3623 /* Wait for all files to unload in remote */
3624 memset(done
, 0, numFiles
);
3625 while (memchr(done
, 0, numFiles
) != NULL
)
3628 p
= serverGetReply(srv
, NULL
, TRUE
, TRUE
);
3632 if (serverReadReply(xterm_dpy
, srv
, &p
, TRUE
) < 0)
3635 j
= atoi((char *)p
);
3636 if (j
>= 0 && j
< numFiles
)
3638 # ifdef FEAT_GUI_W32
3640 sprintf(ni
.szTip
, _("%d of %d edited"),
3642 Shell_NotifyIcon(NIM_MODIFY
, &ni
);
3647 # ifdef FEAT_GUI_W32
3648 Shell_NotifyIcon(NIM_DELETE
, &ni
);
3652 else if (STRICMP(argv
[i
], "--remote-expr") == 0)
3655 mainerr_arg_missing((char_u
*)argv
[i
]);
3657 /* Win32 always works? */
3658 if (serverSendToVim(sname
, (char_u
*)argv
[i
+ 1],
3659 &res
, NULL
, 1, FALSE
) < 0)
3661 if (xterm_dpy
== NULL
)
3662 mch_errmsg(_("No display: Send expression failed.\n"));
3663 else if (serverSendToVim(xterm_dpy
, sname
, (char_u
*)argv
[i
+ 1],
3664 &res
, NULL
, 1, 1, FALSE
) < 0)
3667 if (res
!= NULL
&& *res
!= NUL
)
3669 /* Output error from remote */
3670 mch_errmsg((char *)res
);
3674 mch_errmsg(_(": Send expression failed.\n"));
3677 else if (STRICMP(argv
[i
], "--serverlist") == 0)
3680 /* Win32 always works? */
3681 res
= serverGetVimNames();
3683 if (xterm_dpy
!= NULL
)
3684 res
= serverGetVimNames(xterm_dpy
);
3689 else if (STRICMP(argv
[i
], "--servername") == 0)
3691 /* Alredy processed. Take it out of the command line */
3697 *newArgV
++ = argv
[i
];
3702 if (res
!= NULL
&& *res
!= NUL
)
3704 mch_msg((char *)res
);
3705 if (res
[STRLEN(res
) - 1] != '\n')
3713 display_errors(); /* display any collected messages */
3714 exit(exiterr
); /* Mission accomplished - get out */
3717 /* Return back into main() */
3723 * Build a ":drop" command to send to a Vim server.
3726 build_drop_cmd(filec
, filev
, tabs
, sendReply
)
3729 int tabs
; /* Use ":tab drop" instead of ":drop". */
3734 char_u
*inicmd
= NULL
;
3736 char_u cwd
[MAXPATHL
];
3738 if (filec
> 0 && filev
[0][0] == '+')
3740 inicmd
= (char_u
*)filev
[0] + 1;
3744 /* Check if we have at least one argument. */
3746 mainerr_arg_missing((char_u
*)filev
[-1]);
3747 if (mch_dirname(cwd
, MAXPATHL
) != OK
)
3749 if ((p
= vim_strsave_escaped_ext(cwd
,
3750 #ifdef BACKSLASH_IN_FILENAME
3751 "", /* rem_backslash() will tell what chars to escape */
3755 '\\', TRUE
)) == NULL
)
3757 ga_init2(&ga
, 1, 100);
3758 ga_concat(&ga
, (char_u
*)"<C-\\><C-N>:cd ");
3762 /* Call inputsave() so that a prompt for an encryption key works. */
3763 ga_concat(&ga
, (char_u
*)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
3765 ga_concat(&ga
, (char_u
*)"tab ");
3766 ga_concat(&ga
, (char_u
*)"drop");
3767 for (i
= 0; i
< filec
; i
++)
3769 /* On Unix the shell has already expanded the wildcards, don't want to
3770 * do it again in the Vim server. On MS-Windows only escape
3771 * non-wildcard characters. */
3772 p
= vim_strsave_escaped((char_u
*)filev
[i
],
3781 vim_free(ga
.ga_data
);
3784 ga_concat(&ga
, (char_u
*)" ");
3788 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
3789 * CTRL-\ CTRL-N again. */
3790 ga_concat(&ga
, (char_u
*)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
3791 ga_concat(&ga
, (char_u
*)"<C-\\><C-N>:cd -");
3793 ga_concat(&ga
, (char_u
*)"<CR>:call SetupRemoteReplies()");
3794 ga_concat(&ga
, (char_u
*)"<CR>:");
3797 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
3798 * the following commands to be inserted as text. Use a "|",
3799 * hopefully "inicmd" does allow this... */
3800 ga_concat(&ga
, inicmd
);
3801 ga_concat(&ga
, (char_u
*)"|");
3803 /* Bring the window to the foreground, goto Insert mode when 'im' set and
3804 * clear command line. */
3805 ga_concat(&ga
, (char_u
*)"cal foreground()|if &im|star|en|redr|f<CR>");
3806 ga_append(&ga
, NUL
);
3811 * Replace termcodes such as <CR> and insert as key presses if there is room.
3814 server_to_input_buf(str
)
3818 char_u
*cpo_save
= p_cpo
;
3820 /* Set 'cpoptions' the way we want it.
3821 * B set - backslashes are *not* treated specially
3822 * k set - keycodes are *not* reverse-engineered
3823 * < unset - <Key> sequences *are* interpreted
3824 * The last but one parameter of replace_termcodes() is TRUE so that the
3825 * <lt> sequence is recognised - needed for a real backslash.
3827 p_cpo
= (char_u
*)"Bk";
3828 str
= replace_termcodes((char_u
*)str
, &ptr
, FALSE
, TRUE
, FALSE
);
3831 if (*ptr
!= NUL
) /* trailing CTRL-V results in nothing */
3834 * Add the string to the input stream.
3835 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
3837 * First clear typed characters from the typeahead buffer, there could
3838 * be half a mapping there. Then append to the existing string, so
3839 * that multiple commands from a client are concatenated.
3841 if (typebuf
.tb_maplen
< typebuf
.tb_len
)
3842 del_typebuf(typebuf
.tb_len
- typebuf
.tb_maplen
, typebuf
.tb_maplen
);
3843 (void)ins_typebuf(str
, REMAP_NONE
, typebuf
.tb_len
, TRUE
, FALSE
);
3845 /* Let input_available() know we inserted text in the typeahead
3847 typebuf_was_filled
= TRUE
;
3849 vim_free((char_u
*)ptr
);
3853 * Evaluate an expression that the client sent to a string.
3854 * Handles disabling error messages and disables debugging, otherwise Vim
3855 * hangs, waiting for "cont" to be typed.
3858 eval_client_expr_to_string(expr
)
3862 int save_dbl
= debug_break_level
;
3863 int save_ro
= redir_off
;
3865 debug_break_level
= -1;
3869 res
= eval_to_string(expr
, NULL
, TRUE
);
3871 debug_break_level
= save_dbl
;
3872 redir_off
= save_ro
;
3875 /* A client can tell us to redraw, but not to display the cursor, so do
3881 gui_update_cursor(FALSE
, FALSE
);
3888 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
3889 * return an allocated string. Otherwise return "data".
3890 * "*tofree" is set to the result when it needs to be freed later.
3893 serverConvert(client_enc
, data
, tofree
)
3894 char_u
*client_enc UNUSED
;
3902 if (client_enc
!= NULL
&& p_enc
!= NULL
)
3906 vimconv
.vc_type
= CONV_NONE
;
3907 if (convert_setup(&vimconv
, client_enc
, p_enc
) != FAIL
3908 && vimconv
.vc_type
!= CONV_NONE
)
3910 res
= string_convert(&vimconv
, data
, NULL
);
3916 convert_setup(&vimconv
, NULL
, NULL
);
3924 * Make our basic server name: use the specified "arg" if given, otherwise use
3925 * the tail of the command "cmd" we were started with.
3926 * Return the name in allocated memory. This doesn't include a serial number.
3929 serverMakeName(arg
, cmd
)
3935 if (arg
!= NULL
&& *arg
!= NUL
)
3936 p
= vim_strsave_up(arg
);
3939 p
= vim_strsave_up(gettail((char_u
*)cmd
));
3940 /* Remove .exe or .bat from the name. */
3941 if (p
!= NULL
&& vim_strchr(p
, '.') != NULL
)
3942 *vim_strchr(p
, '.') = NUL
;
3946 #endif /* FEAT_CLIENTSERVER */
3949 * When FEAT_FKMAP is defined, also compile the Farsi source code.
3951 #if defined(FEAT_FKMAP) || defined(PROTO)
3956 * When FEAT_ARABIC is defined, also compile the Arabic source code.
3958 #if defined(FEAT_ARABIC) || defined(PROTO)
3959 # include "arabic.c"