6
|
1 /* vi:set ts=8 sts=4 sw=4:
|
|
2 *
|
|
3 * VIM - Vi IMproved by Bram Moolenaar
|
|
4 *
|
|
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 */
|
|
9
|
|
10 #if defined(MSDOS) || defined(WIN32) || defined(_WIN64)
|
714
|
11 # include "vimio.h" /* for close() and dup() */
|
6
|
12 #endif
|
|
13
|
|
14 #define EXTERN
|
|
15 #include "vim.h"
|
|
16
|
|
17 #ifdef SPAWNO
|
242
|
18 # include <spawno.h> /* special MS-DOS swapping library */
|
6
|
19 #endif
|
|
20
|
|
21 #ifdef HAVE_FCNTL_H
|
|
22 # include <fcntl.h>
|
|
23 #endif
|
|
24
|
|
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
|
|
31
|
443
|
32 /* Maximum number of commands from + or -c arguments. */
|
|
33 #define MAX_ARG_CMDS 10
|
|
34
|
673
|
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 */
|
|
39
|
440
|
40 /* Struct for various parameters passed between main() and other functions. */
|
|
41 typedef struct
|
|
42 {
|
443
|
43 int argc;
|
|
44 char **argv;
|
|
45
|
|
46 int evim_mode; /* started as "evim" */
|
|
47 char_u *use_vimrc; /* vimrc from -u argument */
|
|
48
|
|
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 */
|
|
54
|
|
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
|
|
60
|
|
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 */
|
673
|
73 int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
|
443
|
74 #endif
|
|
75
|
|
76 #ifdef FEAT_CLIENTSERVER
|
440
|
77 int serverArg; /* TRUE when argument for a server */
|
|
78 char_u *serverName_arg; /* cmdline arg for server name */
|
443
|
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
|
440
|
92 } mparm_T;
|
|
93
|
443
|
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 */
|
|
100
|
6
|
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));
|
443
|
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));
|
440
|
122 static void source_startup_scripts __ARGS((mparm_T *parmp));
|
6
|
123 static void main_start_gui __ARGS((void));
|
580
|
124 #if defined(HAS_SWAP_EXISTS_ACTION)
|
6
|
125 static void check_swap_exists_action __ARGS((void));
|
|
126 #endif
|
|
127 #ifdef FEAT_CLIENTSERVER
|
443
|
128 static void exec_on_server __ARGS((mparm_T *parmp));
|
|
129 static void prepare_server __ARGS((mparm_T *parmp));
|
6
|
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
|
|
133
|
|
134
|
|
135 #ifdef STARTUPTIME
|
|
136 static FILE *time_fd = NULL;
|
|
137 #endif
|
|
138
|
|
139 /*
|
|
140 * Different types of error messages.
|
|
141 */
|
|
142 static char *(main_errors[]) =
|
|
143 {
|
443
|
144 N_("Unknown option argument"),
|
6
|
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
|
443
|
150 N_("Garbage after option argument"),
|
6
|
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
|
|
156 };
|
|
157
|
|
158 #ifndef PROTO /* don't want a prototype for main() */
|
|
159 int
|
|
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;
|
|
174 {
|
|
175 char_u *fname = NULL; /* file name from command line */
|
440
|
176 mparm_T params; /* various parameters passed between
|
|
177 * main() and other functions. */
|
6
|
178
|
|
179 /*
|
|
180 * Do any system-specific initialisations. These can NOT use IObuff or
|
|
181 * NameBuff. Thus emsg2() cannot be called!
|
|
182 */
|
|
183 mch_early_init();
|
|
184
|
443
|
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. */
|
440
|
188 vim_memset(¶ms, 0, sizeof(params));
|
443
|
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
|
440
|
198
|
6
|
199 #ifdef FEAT_TCL
|
443
|
200 vim_tcl_init(params.argv[0]);
|
6
|
201 #endif
|
|
202
|
|
203 #ifdef MEM_PROFILE
|
|
204 atexit(vim_mem_profile_dump);
|
|
205 #endif
|
|
206
|
|
207 #ifdef STARTUPTIME
|
531
|
208 time_fd = mch_fopen(STARTUPTIME, "a");
|
6
|
209 TIME_MSG("--- VIM STARTING ---");
|
|
210 #endif
|
777
|
211 starttime = time(NULL);
|
6
|
212
|
|
213 #ifdef __EMX__
|
443
|
214 _wildcard(¶ms.argc, ¶ms.argv);
|
6
|
215 #endif
|
|
216
|
|
217 #ifdef FEAT_MBYTE
|
|
218 (void)mb_init(); /* init mb_bytelen_tab[] to ones */
|
|
219 #endif
|
123
|
220 #ifdef FEAT_EVAL
|
|
221 eval_init(); /* init global variables */
|
|
222 #endif
|
6
|
223
|
|
224 #ifdef __QNXNTO__
|
|
225 qnx_init(); /* PhAttach() for clipboard, (and gui) */
|
|
226 #endif
|
|
227
|
|
228 #ifdef MAC_OS_CLASSIC
|
443
|
229 /* Prepare for possibly starting GUI sometime */
|
6
|
230 /* Macintosh needs this before any memory is allocated. */
|
443
|
231 gui_prepare(¶ms.argc, params.argv);
|
6
|
232 TIME_MSG("GUI prepared");
|
|
233 #endif
|
|
234
|
|
235 /* Init the table of Normal mode commands. */
|
|
236 init_normal_cmds();
|
|
237
|
|
238 #if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
|
440
|
239 make_version(); /* Construct the long version string. */
|
6
|
240 #endif
|
|
241
|
|
242 /*
|
|
243 * Allocate space for the generic buffers (needed for set_init_1() and
|
|
244 * EMSG2()).
|
|
245 */
|
|
246 if ((IObuff = alloc(IOSIZE)) == NULL
|
|
247 || (NameBuff = alloc(MAXPATHL)) == NULL)
|
|
248 mch_exit(0);
|
|
249 TIME_MSG("Allocated generic buffers");
|
|
250
|
22
|
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);
|
443
|
256 TIME_MSG("NetBeans debug wait");
|
22
|
257 #endif
|
|
258
|
6
|
259 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
|
|
260 /*
|
|
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!
|
|
264 */
|
443
|
265 init_locale();
|
6
|
266 TIME_MSG("locale set");
|
|
267 #endif
|
|
268
|
|
269 #ifdef FEAT_GUI
|
|
270 gui.dofork = TRUE; /* default is to use fork() */
|
|
271 #endif
|
|
272
|
|
273 /*
|
440
|
274 * Do a first scan of the arguments in "argv[]":
|
443
|
275 * -display or --display
|
440
|
276 * --server...
|
|
277 * --socketid
|
6
|
278 */
|
443
|
279 early_arg_scan(¶ms);
|
6
|
280
|
|
281 #ifdef FEAT_SUN_WORKSHOP
|
443
|
282 findYourself(params.argv[0]);
|
6
|
283 #endif
|
|
284 #if defined(FEAT_GUI) && !defined(MAC_OS_CLASSIC)
|
443
|
285 /* Prepare for possibly starting GUI sometime */
|
|
286 gui_prepare(¶ms.argc, params.argv);
|
6
|
287 TIME_MSG("GUI prepared");
|
|
288 #endif
|
|
289
|
|
290 #ifdef FEAT_CLIPBOARD
|
|
291 clip_init(FALSE); /* Initialise clipboard stuff */
|
|
292 TIME_MSG("clipboard setup");
|
|
293 #endif
|
|
294
|
|
295 /*
|
|
296 * Check if we have an interactive window.
|
|
297 * On the Amiga: If there is no window, we open one with a newcli command
|
|
298 * (needed for :! to * work). mch_check_win() will also handle the -d or
|
|
299 * -dev argument.
|
|
300 */
|
443
|
301 params.stdout_isatty = (mch_check_win(params.argc, params.argv) != FAIL);
|
6
|
302 TIME_MSG("window checked");
|
|
303
|
|
304 /*
|
667
|
305 * Allocate the first window and buffer.
|
|
306 * Can't do anything without it, exit when it fails.
|
6
|
307 */
|
667
|
308 if (win_alloc_first() == FAIL)
|
|
309 mch_exit(0);
|
6
|
310
|
|
311 init_yank(); /* init yank buffers */
|
|
312
|
443
|
313 alist_init(&global_alist); /* Init the argument list to empty. */
|
6
|
314
|
|
315 /*
|
|
316 * Set the default values for the options.
|
|
317 * NOTE: Non-latin1 translated messages are working only after this,
|
|
318 * because this is where "has_mbyte" will be set, which is used by
|
|
319 * msg_outtrans_len_attr().
|
|
320 * First find out the home directory, needed to expand "~" in options.
|
|
321 */
|
|
322 init_homedir(); /* find real value of $HOME */
|
|
323 set_init_1();
|
|
324 TIME_MSG("inits 1");
|
|
325
|
|
326 #ifdef FEAT_EVAL
|
|
327 set_lang_var(); /* set v:lang and v:ctype */
|
|
328 #endif
|
|
329
|
|
330 #ifdef FEAT_CLIENTSERVER
|
|
331 /*
|
|
332 * Do the client-server stuff, unless "--servername ''" was used.
|
443
|
333 * This may exit Vim if the command was sent to the server.
|
6
|
334 */
|
443
|
335 exec_on_server(¶ms);
|
6
|
336 #endif
|
|
337
|
|
338 /*
|
443
|
339 * Figure out the way to work from the command name argv[0].
|
|
340 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc.
|
6
|
341 */
|
443
|
342 parse_command_name(¶ms);
|
6
|
343
|
|
344 /*
|
443
|
345 * Process the command line arguments. File names are put in the global
|
|
346 * argument list "global_alist".
|
6
|
347 */
|
443
|
348 command_line_scan(¶ms);
|
6
|
349 TIME_MSG("parsing arguments");
|
|
350
|
|
351 /*
|
|
352 * On some systems, when we compile with the GUI, we always use it. On Mac
|
443
|
353 * there is no terminal version, and on Windows we can't fork one off with
|
|
354 * :gui.
|
6
|
355 */
|
|
356 #ifdef ALWAYS_USE_GUI
|
|
357 gui.starting = TRUE;
|
|
358 #else
|
575
|
359 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
|
6
|
360 /*
|
|
361 * Check if the GUI can be started. Reset gui.starting if not.
|
|
362 * Don't know about other systems, stay on the safe side and don't check.
|
|
363 */
|
|
364 if (gui.starting && gui_init_check() == FAIL)
|
|
365 {
|
|
366 gui.starting = FALSE;
|
|
367
|
|
368 /* When running "evim" or "gvim -y" we need the menus, exit if we
|
|
369 * don't have them. */
|
440
|
370 if (params.evim_mode)
|
6
|
371 mch_exit(1);
|
|
372 }
|
|
373 # endif
|
|
374 #endif
|
|
375
|
|
376 if (GARGCOUNT > 0)
|
|
377 {
|
|
378 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
|
|
379 /*
|
|
380 * Expand wildcards in file names.
|
|
381 */
|
443
|
382 if (!params.literal)
|
6
|
383 {
|
|
384 /* Temporarily add '(' and ')' to 'isfname'. These are valid
|
|
385 * filename characters but are excluded from 'isfname' to make
|
|
386 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
|
|
387 do_cmdline_cmd((char_u *)":set isf+=(,)");
|
41
|
388 alist_expand(NULL, 0);
|
6
|
389 do_cmdline_cmd((char_u *)":set isf&");
|
|
390 }
|
|
391 #endif
|
|
392 fname = alist_name(&GARGLIST[0]);
|
|
393 }
|
23
|
394
|
|
395 #if defined(WIN32) && defined(FEAT_MBYTE)
|
|
396 {
|
|
397 extern void set_alist_count(void);
|
|
398
|
|
399 /* Remember the number of entries in the argument list. If it changes
|
|
400 * we don't react on setting 'encoding'. */
|
|
401 set_alist_count();
|
|
402 }
|
|
403 #endif
|
|
404
|
6
|
405 #ifdef MSWIN
|
443
|
406 if (GARGCOUNT == 1 && params.full_path)
|
6
|
407 {
|
|
408 /*
|
|
409 * If there is one filename, fully qualified, we have very probably
|
|
410 * been invoked from explorer, so change to the file's directory.
|
|
411 * Hint: to avoid this when typing a command use a forward slash.
|
|
412 * If the cd fails, it doesn't matter.
|
|
413 */
|
|
414 (void)vim_chdirfile(fname);
|
|
415 }
|
|
416 #endif
|
|
417 TIME_MSG("expanding arguments");
|
|
418
|
|
419 #ifdef FEAT_DIFF
|
769
|
420 if (params.diff_mode && params.window_count == -1)
|
|
421 params.window_count = 0; /* open up to 3 windows */
|
6
|
422 #endif
|
|
423
|
443
|
424 /* Don't redraw until much later. */
|
6
|
425 ++RedrawingDisabled;
|
|
426
|
|
427 /*
|
|
428 * When listing swap file names, don't do cursor positioning et. al.
|
|
429 */
|
|
430 if (recoverymode && fname == NULL)
|
443
|
431 params.want_full_screen = FALSE;
|
6
|
432
|
|
433 /*
|
|
434 * When certain to start the GUI, don't check capabilities of terminal.
|
|
435 * For GTK we can't be sure, but when started from the desktop it doesn't
|
|
436 * make sense to try using a terminal.
|
|
437 */
|
575
|
438 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
|
6
|
439 if (gui.starting
|
|
440 # ifdef FEAT_GUI_GTK
|
|
441 && !isatty(2)
|
|
442 # endif
|
|
443 )
|
443
|
444 params.want_full_screen = FALSE;
|
6
|
445 #endif
|
|
446
|
|
447 #if defined(FEAT_GUI_MAC) && defined(MACOS_X_UNIX)
|
|
448 /* When the GUI is started from Finder, need to display messages in a
|
|
449 * message box. isatty(2) returns TRUE anyway, thus we need to check the
|
|
450 * name to know we're not started from a terminal. */
|
|
451 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
|
816
|
452 {
|
443
|
453 params.want_full_screen = FALSE;
|
816
|
454
|
|
455 /* Avoid always using "/" as the current directory. Note that when
|
|
456 * started from Finder the arglist will be filled later in
|
|
457 * HandleODocAE() and "fname" will be NULL. */
|
|
458 if (getcwd((char *)NameBuff, MAXPATHL) != NULL
|
|
459 && STRCMP(NameBuff, "/") == 0)
|
|
460 {
|
|
461 if (fname != NULL)
|
|
462 (void)vim_chdirfile(fname);
|
|
463 else
|
|
464 {
|
|
465 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
|
|
466 vim_chdir(NameBuff);
|
|
467 }
|
|
468 }
|
|
469 }
|
6
|
470 #endif
|
|
471
|
|
472 /*
|
|
473 * mch_init() sets up the terminal (window) for use. This must be
|
|
474 * done after resetting full_screen, otherwise it may move the cursor
|
|
475 * (MSDOS).
|
|
476 * Note that we may use mch_exit() before mch_init()!
|
|
477 */
|
|
478 mch_init();
|
|
479 TIME_MSG("shell init");
|
|
480
|
|
481 #ifdef USE_XSMP
|
|
482 /*
|
|
483 * For want of anywhere else to do it, try to connect to xsmp here.
|
|
484 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit).
|
|
485 * Hijacking -X 'no X connection' to also disable XSMP connection as that
|
|
486 * has a similar delay upon failure.
|
|
487 * Only try if SESSION_MANAGER is set to something non-null.
|
|
488 */
|
|
489 if (!x_no_connect)
|
|
490 {
|
443
|
491 char *p = getenv("SESSION_MANAGER");
|
|
492
|
6
|
493 if (p != NULL && *p != NUL)
|
|
494 {
|
|
495 xsmp_init();
|
|
496 TIME_MSG("xsmp init");
|
|
497 }
|
|
498 }
|
|
499 #endif
|
|
500
|
|
501 /*
|
|
502 * Print a warning if stdout is not a terminal.
|
|
503 */
|
443
|
504 check_tty(¶ms);
|
6
|
505
|
169
|
506 /* This message comes before term inits, but after setting "silent_mode"
|
|
507 * when the input is not a tty. */
|
|
508 if (GARGCOUNT > 1 && !silent_mode)
|
|
509 printf(_("%d files to edit\n"), GARGCOUNT);
|
|
510
|
443
|
511 if (params.want_full_screen && !silent_mode)
|
6
|
512 {
|
443
|
513 termcapinit(params.term); /* set terminal name and get terminal
|
6
|
514 capabilities (will set full_screen) */
|
|
515 screen_start(); /* don't know where cursor is now */
|
|
516 TIME_MSG("Termcap init");
|
|
517 }
|
|
518
|
|
519 /*
|
|
520 * Set the default values for the options that use Rows and Columns.
|
|
521 */
|
|
522 ui_get_shellsize(); /* inits Rows and Columns */
|
|
523 #ifdef FEAT_NETBEANS_INTG
|
|
524 if (usingNetbeans)
|
|
525 Columns += 2; /* leave room for glyph gutter */
|
|
526 #endif
|
667
|
527 win_init_size();
|
6
|
528 #ifdef FEAT_DIFF
|
|
529 /* Set the 'diff' option now, so that it can be checked for in a .vimrc
|
|
530 * file. There is no buffer yet though. */
|
443
|
531 if (params.diff_mode)
|
6
|
532 diff_win_options(firstwin, FALSE);
|
|
533 #endif
|
|
534
|
|
535 cmdline_row = Rows - p_ch;
|
|
536 msg_row = cmdline_row;
|
|
537 screenalloc(FALSE); /* allocate screen buffers */
|
|
538 set_init_2();
|
|
539 TIME_MSG("inits 2");
|
|
540
|
|
541 msg_scroll = TRUE;
|
|
542 no_wait_return = TRUE;
|
|
543
|
|
544 init_mappings(); /* set up initial mappings */
|
|
545
|
|
546 init_highlight(TRUE, FALSE); /* set the default highlight groups */
|
|
547 TIME_MSG("init highlight");
|
|
548
|
|
549 #ifdef FEAT_EVAL
|
|
550 /* Set the break level after the terminal is initialized. */
|
443
|
551 debug_break_level = params.use_debug_break_level;
|
6
|
552 #endif
|
|
553
|
440
|
554 /* Execute --cmd arguments. */
|
443
|
555 exe_pre_commands(¶ms);
|
440
|
556
|
|
557 /* Source startup scripts. */
|
|
558 source_startup_scripts(¶ms);
|
6
|
559
|
|
560 #ifdef FEAT_EVAL
|
|
561 /*
|
|
562 * Read all the plugin files.
|
|
563 * Only when compiled with +eval, since most plugins need it.
|
|
564 */
|
|
565 if (p_lpl)
|
|
566 {
|
892
|
567 # ifdef VMS /* Somehow VMS doesn't handle the "**". */
|
|
568 source_runtime((char_u *)"plugin/*.vim", TRUE);
|
|
569 # else
|
541
|
570 source_runtime((char_u *)"plugin/**/*.vim", TRUE);
|
892
|
571 # endif
|
6
|
572 TIME_MSG("loading plugins");
|
|
573 }
|
|
574 #endif
|
|
575
|
769
|
576 #ifdef FEAT_DIFF
|
|
577 /* Decide about window layout for diff mode after reading vimrc. */
|
|
578 if (params.diff_mode && params.window_layout == 0)
|
|
579 {
|
|
580 if (diffopt_horizontal())
|
|
581 params.window_layout = WIN_HOR; /* use horizontal split */
|
|
582 else
|
|
583 params.window_layout = WIN_VER; /* use vertical split */
|
|
584 }
|
|
585 #endif
|
|
586
|
6
|
587 /*
|
|
588 * Recovery mode without a file name: List swap files.
|
|
589 * This uses the 'dir' option, therefore it must be after the
|
|
590 * initializations.
|
|
591 */
|
|
592 if (recoverymode && fname == NULL)
|
|
593 {
|
|
594 recover_names(NULL, TRUE, 0);
|
|
595 mch_exit(0);
|
|
596 }
|
|
597
|
|
598 /*
|
|
599 * Set a few option defaults after reading .vimrc files:
|
|
600 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'.
|
|
601 */
|
|
602 set_init_3();
|
|
603 TIME_MSG("inits 3");
|
|
604
|
|
605 /*
|
|
606 * "-n" argument: Disable swap file by setting 'updatecount' to 0.
|
|
607 * Note that this overrides anything from a vimrc file.
|
|
608 */
|
443
|
609 if (params.no_swap_file)
|
6
|
610 p_uc = 0;
|
|
611
|
|
612 #ifdef FEAT_FKMAP
|
|
613 if (curwin->w_p_rl && p_altkeymap)
|
|
614 {
|
|
615 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */
|
|
616 # ifdef FEAT_ARABIC
|
|
617 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */
|
|
618 # endif
|
|
619 p_fkmap = TRUE; /* Set the Farsi keymap mode */
|
|
620 }
|
|
621 #endif
|
|
622
|
|
623 #ifdef FEAT_GUI
|
|
624 if (gui.starting)
|
|
625 {
|
|
626 #if defined(UNIX) || defined(VMS)
|
|
627 /* When something caused a message from a vimrc script, need to output
|
|
628 * an extra newline before the shell prompt. */
|
|
629 if (did_emsg || msg_didout)
|
|
630 putchar('\n');
|
|
631 #endif
|
|
632
|
|
633 gui_start(); /* will set full_screen to TRUE */
|
|
634 TIME_MSG("starting GUI");
|
|
635
|
|
636 /* When running "evim" or "gvim -y" we need the menus, exit if we
|
|
637 * don't have them. */
|
440
|
638 if (!gui.in_use && params.evim_mode)
|
6
|
639 mch_exit(1);
|
|
640 }
|
|
641 #endif
|
|
642
|
|
643 #ifdef SPAWNO /* special MSDOS swapping library */
|
|
644 init_SPAWNO("", SWAP_ANY);
|
|
645 #endif
|
|
646
|
|
647 #ifdef FEAT_VIMINFO
|
|
648 /*
|
|
649 * Read in registers, history etc, but not marks, from the viminfo file
|
|
650 */
|
|
651 if (*p_viminfo != NUL)
|
|
652 {
|
|
653 read_viminfo(NULL, TRUE, FALSE, FALSE);
|
|
654 TIME_MSG("reading viminfo");
|
|
655 }
|
|
656 #endif
|
|
657
|
|
658 #ifdef FEAT_QUICKFIX
|
|
659 /*
|
|
660 * "-q errorfile": Load the error file now.
|
|
661 * If the error file can't be read, exit before doing anything else.
|
|
662 */
|
443
|
663 if (params.edit_type == EDIT_QF)
|
6
|
664 {
|
443
|
665 if (params.use_ef != NULL)
|
|
666 set_string_option_direct((char_u *)"ef", -1,
|
694
|
667 params.use_ef, OPT_FREE, SID_CARG);
|
644
|
668 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
|
6
|
669 {
|
|
670 out_char('\n');
|
|
671 mch_exit(3);
|
|
672 }
|
|
673 TIME_MSG("reading errorfile");
|
|
674 }
|
|
675 #endif
|
|
676
|
|
677 /*
|
|
678 * Start putting things on the screen.
|
|
679 * Scroll screen down before drawing over it
|
|
680 * Clear screen now, so file message will not be cleared.
|
|
681 */
|
|
682 starting = NO_BUFFERS;
|
|
683 no_wait_return = FALSE;
|
|
684 if (!exmode_active)
|
|
685 msg_scroll = FALSE;
|
|
686
|
|
687 #ifdef FEAT_GUI
|
|
688 /*
|
|
689 * This seems to be required to make callbacks to be called now, instead
|
|
690 * of after things have been put on the screen, which then may be deleted
|
|
691 * when getting a resize callback.
|
|
692 * For the Mac this handles putting files dropped on the Vim icon to
|
|
693 * global_alist.
|
|
694 */
|
|
695 if (gui.in_use)
|
|
696 {
|
|
697 # ifdef FEAT_SUN_WORKSHOP
|
|
698 if (!usingSunWorkShop)
|
|
699 # endif
|
|
700 gui_wait_for_chars(50L);
|
|
701 TIME_MSG("GUI delay");
|
|
702 }
|
|
703 #endif
|
|
704
|
|
705 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD)
|
|
706 qnx_clip_init();
|
|
707 #endif
|
|
708
|
|
709 #ifdef FEAT_XCLIPBOARD
|
|
710 /* Start using the X clipboard, unless the GUI was started. */
|
|
711 # ifdef FEAT_GUI
|
|
712 if (!gui.in_use)
|
|
713 # endif
|
|
714 {
|
|
715 setup_term_clip();
|
|
716 TIME_MSG("setup clipboard");
|
|
717 }
|
|
718 #endif
|
|
719
|
|
720 #ifdef FEAT_CLIENTSERVER
|
443
|
721 /* Prepare for being a Vim server. */
|
|
722 prepare_server(¶ms);
|
6
|
723 #endif
|
|
724
|
|
725 /*
|
|
726 * If "-" argument given: Read file from stdin.
|
|
727 * Do this before starting Raw mode, because it may change things that the
|
|
728 * writing end of the pipe doesn't like, e.g., in case stdin and stderr
|
|
729 * are the same terminal: "cat | vim -".
|
|
730 * Using autocommands here may cause trouble...
|
|
731 */
|
443
|
732 if (params.edit_type == EDIT_STDIN && !recoverymode)
|
|
733 read_stdin();
|
6
|
734
|
|
735 #if defined(UNIX) || defined(VMS)
|
|
736 /* When switching screens and something caused a message from a vimrc
|
|
737 * script, need to output an extra newline on exit. */
|
|
738 if ((did_emsg || msg_didout) && *T_TI != NUL)
|
|
739 newline_on_exit = TRUE;
|
|
740 #endif
|
|
741
|
|
742 /*
|
|
743 * When done something that is not allowed or error message call
|
|
744 * wait_return. This must be done before starttermcap(), because it may
|
|
745 * switch to another screen. It must be done after settmode(TMODE_RAW),
|
|
746 * because we want to react on a single key stroke.
|
|
747 * Call settmode and starttermcap here, so the T_KS and T_TI may be
|
|
748 * defined by termcapinit and redifined in .exrc.
|
|
749 */
|
|
750 settmode(TMODE_RAW);
|
|
751 TIME_MSG("setting raw mode");
|
|
752
|
|
753 if (need_wait_return || msg_didany)
|
|
754 {
|
|
755 wait_return(TRUE);
|
|
756 TIME_MSG("waiting for return");
|
|
757 }
|
|
758
|
|
759 starttermcap(); /* start termcap if not done by wait_return() */
|
|
760 TIME_MSG("start termcap");
|
|
761
|
|
762 #ifdef FEAT_MOUSE
|
|
763 setmouse(); /* may start using the mouse */
|
|
764 #endif
|
|
765 if (scroll_region)
|
|
766 scroll_region_reset(); /* In case Rows changed */
|
440
|
767 scroll_start(); /* may scroll the screen to the right position */
|
6
|
768
|
|
769 /*
|
|
770 * Don't clear the screen when starting in Ex mode, unless using the GUI.
|
|
771 */
|
|
772 if (exmode_active
|
|
773 #ifdef FEAT_GUI
|
|
774 && !gui.in_use
|
|
775 #endif
|
|
776 )
|
|
777 must_redraw = CLEAR;
|
|
778 else
|
|
779 {
|
|
780 screenclear(); /* clear screen */
|
|
781 TIME_MSG("clearing screen");
|
|
782 }
|
|
783
|
|
784 #ifdef FEAT_CRYPT
|
443
|
785 if (params.ask_for_key)
|
6
|
786 {
|
|
787 (void)get_crypt_key(TRUE, TRUE);
|
|
788 TIME_MSG("getting crypt key");
|
|
789 }
|
|
790 #endif
|
|
791
|
|
792 no_wait_return = TRUE;
|
|
793
|
|
794 /*
|
443
|
795 * Create the requested number of windows and edit buffers in them.
|
|
796 * Also does recovery if "recoverymode" set.
|
6
|
797 */
|
443
|
798 create_windows(¶ms);
|
6
|
799 TIME_MSG("opening buffers");
|
|
800
|
1093
|
801 #ifdef FEAT_EVAL
|
|
802 /* clear v:swapcommand */
|
|
803 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
|
|
804 #endif
|
|
805
|
6
|
806 /* Ex starts at last line of the file */
|
|
807 if (exmode_active)
|
|
808 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
|
|
809
|
|
810 #ifdef FEAT_AUTOCMD
|
|
811 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
|
|
812 TIME_MSG("BufEnter autocommands");
|
|
813 #endif
|
|
814 setpcmark();
|
|
815
|
|
816 #ifdef FEAT_QUICKFIX
|
|
817 /*
|
|
818 * When started with "-q errorfile" jump to first error now.
|
|
819 */
|
443
|
820 if (params.edit_type == EDIT_QF)
|
6
|
821 {
|
644
|
822 qf_jump(NULL, 0, 0, FALSE);
|
6
|
823 TIME_MSG("jump to first error");
|
|
824 }
|
|
825 #endif
|
|
826
|
|
827 #ifdef FEAT_WINDOWS
|
|
828 /*
|
|
829 * If opened more than one window, start editing files in the other
|
443
|
830 * windows.
|
6
|
831 */
|
443
|
832 edit_buffers(¶ms);
|
|
833 #endif
|
6
|
834
|
|
835 #ifdef FEAT_DIFF
|
443
|
836 if (params.diff_mode)
|
6
|
837 {
|
|
838 win_T *wp;
|
|
839
|
|
840 /* set options in each window for "vimdiff". */
|
|
841 for (wp = firstwin; wp != NULL; wp = wp->w_next)
|
|
842 diff_win_options(wp, TRUE);
|
|
843 }
|
|
844 #endif
|
|
845
|
|
846 /*
|
|
847 * Shorten any of the filenames, but only when absolute.
|
|
848 */
|
|
849 shorten_fnames(FALSE);
|
|
850
|
|
851 /*
|
|
852 * Need to jump to the tag before executing the '-c command'.
|
|
853 * Makes "vim -c '/return' -t main" work.
|
|
854 */
|
443
|
855 if (params.tagname != NULL)
|
6
|
856 {
|
604
|
857 #if defined(HAS_SWAP_EXISTS_ACTION)
|
|
858 swap_exists_did_quit = FALSE;
|
|
859 #endif
|
|
860
|
443
|
861 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname);
|
6
|
862 do_cmdline_cmd(IObuff);
|
|
863 TIME_MSG("jumping to tag");
|
604
|
864
|
|
865 #if defined(HAS_SWAP_EXISTS_ACTION)
|
|
866 /* If the user doesn't want to edit the file then we quit here. */
|
|
867 if (swap_exists_did_quit)
|
|
868 getout(1);
|
|
869 #endif
|
6
|
870 }
|
|
871
|
443
|
872 /* Execute any "+", "-c" and "-S" arguments. */
|
|
873 if (params.n_commands > 0)
|
|
874 exe_commands(¶ms);
|
6
|
875
|
|
876 RedrawingDisabled = 0;
|
|
877 redraw_all_later(NOT_VALID);
|
|
878 no_wait_return = FALSE;
|
|
879 starting = 0;
|
|
880
|
626
|
881 #ifdef FEAT_TERMRESPONSE
|
|
882 /* Requesting the termresponse is postponed until here, so that a "-c q"
|
|
883 * argument doesn't make it appear in the shell Vim was started from. */
|
|
884 may_req_termresponse();
|
|
885 #endif
|
|
886
|
6
|
887 /* start in insert mode */
|
|
888 if (p_im)
|
|
889 need_start_insertmode = TRUE;
|
|
890
|
|
891 #ifdef FEAT_AUTOCMD
|
|
892 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf);
|
|
893 TIME_MSG("VimEnter autocommands");
|
|
894 #endif
|
|
895
|
|
896 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
|
|
897 /* When a startup script or session file setup for diff'ing and
|
|
898 * scrollbind, sync the scrollbind now. */
|
|
899 if (curwin->w_p_diff && curwin->w_p_scb)
|
|
900 {
|
|
901 update_topline();
|
|
902 check_scrollbind((linenr_T)0, 0L);
|
|
903 TIME_MSG("diff scrollbinding");
|
|
904 }
|
|
905 #endif
|
|
906
|
|
907 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
|
|
908 mch_set_winsize_now(); /* Allow winsize changes from now on */
|
|
909 #endif
|
|
910
|
685
|
911 #if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
|
|
912 /* When tab pages were created, may need to update the tab pages line and
|
|
913 * scrollbars. This is skipped while creating them. */
|
|
914 if (first_tabpage->tp_next != NULL)
|
|
915 {
|
|
916 out_flush();
|
|
917 gui_init_which_components(NULL);
|
|
918 gui_update_scrollbars(TRUE);
|
|
919 }
|
|
920 need_mouse_correct = TRUE;
|
|
921 #endif
|
|
922
|
6
|
923 /* If ":startinsert" command used, stuff a dummy command to be able to
|
|
924 * call normal_cmd(), which will then start Insert mode. */
|
|
925 if (restart_edit != 0)
|
620
|
926 stuffcharReadbuff(K_NOP);
|
6
|
927
|
|
928 #ifdef FEAT_NETBEANS_INTG
|
|
929 if (usingNetbeans)
|
|
930 /* Tell the client that it can start sending commands. */
|
|
931 netbeans_startup_done();
|
|
932 #endif
|
|
933
|
|
934 TIME_MSG("before starting main loop");
|
|
935
|
|
936 /*
|
|
937 * Call the main command loop. This never returns.
|
|
938 */
|
169
|
939 main_loop(FALSE, FALSE);
|
6
|
940
|
|
941 return 0;
|
|
942 }
|
|
943 #endif /* PROTO */
|
|
944
|
|
945 /*
|
|
946 * Main loop: Execute Normal mode commands until exiting Vim.
|
|
947 * Also used to handle commands in the command-line window, until the window
|
|
948 * is closed.
|
169
|
949 * Also used to handle ":visual" command after ":global": execute Normal mode
|
|
950 * commands, return when entering Ex mode. "noexmode" is TRUE then.
|
6
|
951 */
|
|
952 void
|
169
|
953 main_loop(cmdwin, noexmode)
|
|
954 int cmdwin; /* TRUE when working in the command-line window */
|
|
955 int noexmode; /* TRUE when return on entering Ex mode */
|
6
|
956 {
|
|
957 oparg_T oa; /* operator arguments */
|
|
958
|
|
959 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
|
|
960 /* Setup to catch a terminating error from the X server. Just ignore
|
|
961 * it, restore the state and continue. This might not always work
|
|
962 * properly, but at least we don't exit unexpectedly when the X server
|
|
963 * exists while Vim is running in a console. */
|
169
|
964 if (!cmdwin && !noexmode && SETJMP(x_jump_env))
|
6
|
965 {
|
|
966 State = NORMAL;
|
|
967 # ifdef FEAT_VISUAL
|
|
968 VIsual_active = FALSE;
|
|
969 # endif
|
|
970 got_int = TRUE;
|
|
971 need_wait_return = FALSE;
|
|
972 global_busy = FALSE;
|
|
973 exmode_active = 0;
|
|
974 skip_redraw = FALSE;
|
|
975 RedrawingDisabled = 0;
|
|
976 no_wait_return = 0;
|
|
977 # ifdef FEAT_EVAL
|
|
978 emsg_skip = 0;
|
|
979 # endif
|
|
980 emsg_off = 0;
|
|
981 # ifdef FEAT_MOUSE
|
|
982 setmouse();
|
|
983 # endif
|
|
984 settmode(TMODE_RAW);
|
|
985 starttermcap();
|
|
986 scroll_start();
|
|
987 redraw_later_clear();
|
|
988 }
|
|
989 #endif
|
|
990
|
|
991 clear_oparg(&oa);
|
|
992 while (!cmdwin
|
|
993 #ifdef FEAT_CMDWIN
|
|
994 || cmdwin_result == 0
|
|
995 #endif
|
|
996 )
|
|
997 {
|
|
998 if (stuff_empty())
|
|
999 {
|
|
1000 did_check_timestamps = FALSE;
|
|
1001 if (need_check_timestamps)
|
|
1002 check_timestamps(FALSE);
|
|
1003 if (need_wait_return) /* if wait_return still needed ... */
|
|
1004 wait_return(FALSE); /* ... call it now */
|
|
1005 if (need_start_insertmode && goto_im()
|
|
1006 #ifdef FEAT_VISUAL
|
|
1007 && !VIsual_active
|
|
1008 #endif
|
|
1009 )
|
|
1010 {
|
|
1011 need_start_insertmode = FALSE;
|
|
1012 stuffReadbuff((char_u *)"i"); /* start insert mode next */
|
|
1013 /* skip the fileinfo message now, because it would be shown
|
|
1014 * after insert mode finishes! */
|
|
1015 need_fileinfo = FALSE;
|
|
1016 }
|
|
1017 }
|
|
1018 if (got_int && !global_busy)
|
|
1019 {
|
|
1020 if (!quit_more)
|
|
1021 (void)vgetc(); /* flush all buffers */
|
|
1022 got_int = FALSE;
|
|
1023 }
|
|
1024 if (!exmode_active)
|
|
1025 msg_scroll = FALSE;
|
|
1026 quit_more = FALSE;
|
|
1027
|
|
1028 /*
|
|
1029 * If skip redraw is set (for ":" in wait_return()), don't redraw now.
|
|
1030 * If there is nothing in the stuff_buffer or do_redraw is TRUE,
|
|
1031 * update cursor and redraw.
|
|
1032 */
|
|
1033 if (skip_redraw || exmode_active)
|
|
1034 skip_redraw = FALSE;
|
|
1035 else if (do_redraw || stuff_empty())
|
|
1036 {
|
662
|
1037 #ifdef FEAT_AUTOCMD
|
|
1038 /* Trigger CursorMoved if the cursor moved. */
|
|
1039 if (!finish_op && has_cursormoved()
|
|
1040 && !equalpos(last_cursormoved, curwin->w_cursor))
|
|
1041 {
|
|
1042 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
|
|
1043 last_cursormoved = curwin->w_cursor;
|
|
1044 }
|
|
1045 #endif
|
|
1046
|
640
|
1047 #if defined(FEAT_DIFF) && defined(FEAT_SCROLLBIND)
|
|
1048 /* Scroll-binding for diff mode may have been postponed until
|
|
1049 * here. Avoids doing it for every change. */
|
|
1050 if (diff_need_scrollbind)
|
|
1051 {
|
|
1052 check_scrollbind((linenr_T)0, 0L);
|
|
1053 diff_need_scrollbind = FALSE;
|
|
1054 }
|
|
1055 #endif
|
6
|
1056 #if defined(FEAT_FOLDING) && defined(FEAT_VISUAL)
|
|
1057 /* Include a closed fold completely in the Visual area. */
|
|
1058 foldAdjustVisual();
|
|
1059 #endif
|
|
1060 #ifdef FEAT_FOLDING
|
|
1061 /*
|
|
1062 * When 'foldclose' is set, apply 'foldlevel' to folds that don't
|
|
1063 * contain the cursor.
|
|
1064 * When 'foldopen' is "all", open the fold(s) under the cursor.
|
|
1065 * This may mark the window for redrawing.
|
|
1066 */
|
|
1067 if (hasAnyFolding(curwin) && !char_avail())
|
|
1068 {
|
|
1069 foldCheckClose();
|
|
1070 if (fdo_flags & FDO_ALL)
|
|
1071 foldOpenCursor();
|
|
1072 }
|
|
1073 #endif
|
|
1074
|
|
1075 /*
|
|
1076 * Before redrawing, make sure w_topline is correct, and w_leftcol
|
|
1077 * if lines don't wrap, and w_skipcol if lines wrap.
|
|
1078 */
|
|
1079 update_topline();
|
|
1080 validate_cursor();
|
|
1081
|
|
1082 #ifdef FEAT_VISUAL
|
|
1083 if (VIsual_active)
|
|
1084 update_curbuf(INVERTED);/* update inverted part */
|
|
1085 else
|
|
1086 #endif
|
|
1087 if (must_redraw)
|
|
1088 update_screen(0);
|
|
1089 else if (redraw_cmdline || clear_cmdline)
|
|
1090 showmode();
|
|
1091 #ifdef FEAT_WINDOWS
|
|
1092 redraw_statuslines();
|
|
1093 #endif
|
|
1094 #ifdef FEAT_TITLE
|
|
1095 if (need_maketitle)
|
|
1096 maketitle();
|
|
1097 #endif
|
|
1098 /* display message after redraw */
|
|
1099 if (keep_msg != NULL)
|
|
1100 {
|
|
1101 char_u *p;
|
|
1102
|
|
1103 /* msg_attr_keep() will set keep_msg to NULL, must free the
|
|
1104 * string here. */
|
|
1105 p = keep_msg;
|
680
|
1106 keep_msg = NULL;
|
6
|
1107 msg_attr(p, keep_msg_attr);
|
|
1108 vim_free(p);
|
|
1109 }
|
|
1110 if (need_fileinfo) /* show file info after redraw */
|
|
1111 {
|
|
1112 fileinfo(FALSE, TRUE, FALSE);
|
|
1113 need_fileinfo = FALSE;
|
|
1114 }
|
|
1115
|
|
1116 emsg_on_display = FALSE; /* can delete error message now */
|
|
1117 did_emsg = FALSE;
|
|
1118 msg_didany = FALSE; /* reset lines_left in msg_start() */
|
448
|
1119 may_clear_sb_text(); /* clear scroll-back text on next msg */
|
6
|
1120 showruler(FALSE);
|
|
1121
|
|
1122 setcursor();
|
|
1123 cursor_on();
|
|
1124
|
|
1125 do_redraw = FALSE;
|
|
1126 }
|
|
1127 #ifdef FEAT_GUI
|
|
1128 if (need_mouse_correct)
|
|
1129 gui_mouse_correct();
|
|
1130 #endif
|
|
1131
|
|
1132 /*
|
|
1133 * Update w_curswant if w_set_curswant has been set.
|
|
1134 * Postponed until here to avoid computing w_virtcol too often.
|
|
1135 */
|
|
1136 update_curswant();
|
|
1137
|
958
|
1138 #ifdef FEAT_EVAL
|
|
1139 /*
|
|
1140 * May perform garbage collection when waiting for a character, but
|
|
1141 * only at the very toplevel. Otherwise we may be using a List or
|
|
1142 * Dict internally somewhere.
|
|
1143 * "may_garbage_collect" is reset in vgetc() which is invoked through
|
|
1144 * do_exmode() and normal_cmd().
|
|
1145 */
|
|
1146 may_garbage_collect = (!cmdwin && !noexmode);
|
|
1147 #endif
|
6
|
1148 /*
|
|
1149 * If we're invoked as ex, do a round of ex commands.
|
|
1150 * Otherwise, get and execute a normal mode command.
|
|
1151 */
|
|
1152 if (exmode_active)
|
169
|
1153 {
|
|
1154 if (noexmode) /* End of ":global/path/visual" commands */
|
|
1155 return;
|
6
|
1156 do_exmode(exmode_active == EXMODE_VIM);
|
169
|
1157 }
|
6
|
1158 else
|
|
1159 normal_cmd(&oa, TRUE);
|
|
1160 }
|
|
1161 }
|
|
1162
|
|
1163
|
|
1164 #if defined(USE_XSMP) || defined(FEAT_GUI_MSWIN) || defined(PROTO)
|
|
1165 /*
|
|
1166 * Exit, but leave behind swap files for modified buffers.
|
|
1167 */
|
|
1168 void
|
|
1169 getout_preserve_modified(exitval)
|
|
1170 int exitval;
|
|
1171 {
|
39
|
1172 # if defined(SIGHUP) && defined(SIG_IGN)
|
|
1173 /* Ignore SIGHUP, because a dropped connection causes a read error, which
|
|
1174 * makes Vim exit and then handling SIGHUP causes various reentrance
|
|
1175 * problems. */
|
36
|
1176 signal(SIGHUP, SIG_IGN);
|
39
|
1177 # endif
|
36
|
1178
|
6
|
1179 ml_close_notmod(); /* close all not-modified buffers */
|
|
1180 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
|
|
1181 ml_close_all(FALSE); /* close all memfiles, without deleting */
|
|
1182 getout(exitval); /* exit Vim properly */
|
|
1183 }
|
|
1184 #endif
|
|
1185
|
|
1186
|
|
1187 /* Exit properly */
|
|
1188 void
|
|
1189 getout(exitval)
|
|
1190 int exitval;
|
|
1191 {
|
|
1192 #ifdef FEAT_AUTOCMD
|
|
1193 buf_T *buf;
|
|
1194 win_T *wp;
|
671
|
1195 tabpage_T *tp, *next_tp;
|
6
|
1196 #endif
|
|
1197
|
|
1198 exiting = TRUE;
|
|
1199
|
169
|
1200 /* When running in Ex mode an error causes us to exit with a non-zero exit
|
|
1201 * code. POSIX requires this, although it's not 100% clear from the
|
|
1202 * standard. */
|
|
1203 if (exmode_active)
|
|
1204 exitval += ex_exitval;
|
|
1205
|
6
|
1206 /* Position the cursor on the last screen line, below all the text */
|
|
1207 #ifdef FEAT_GUI
|
|
1208 if (!gui.in_use)
|
|
1209 #endif
|
|
1210 windgoto((int)Rows - 1, 0);
|
|
1211
|
242
|
1212 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
|
|
1213 /* Optionally print hashtable efficiency. */
|
|
1214 hash_debug_results();
|
|
1215 #endif
|
|
1216
|
6
|
1217 #ifdef FEAT_GUI
|
|
1218 msg_didany = FALSE;
|
|
1219 #endif
|
|
1220
|
|
1221 #ifdef FEAT_AUTOCMD
|
|
1222 /* Trigger BufWinLeave for all windows, but only once per buffer. */
|
671
|
1223 # if defined FEAT_WINDOWS
|
|
1224 for (tp = first_tabpage; tp != NULL; tp = next_tp)
|
6
|
1225 {
|
671
|
1226 next_tp = tp->tp_next;
|
680
|
1227 for (wp = (tp == curtab)
|
671
|
1228 ? firstwin : tp->tp_firstwin; wp != NULL; wp = wp->w_next)
|
6
|
1229 {
|
671
|
1230 buf = wp->w_buffer;
|
|
1231 if (buf->b_changedtick != -1)
|
|
1232 {
|
|
1233 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
|
6
|
1234 FALSE, buf);
|
671
|
1235 buf->b_changedtick = -1; /* note that we did it already */
|
|
1236 /* start all over, autocommands may mess up the lists */
|
|
1237 next_tp = first_tabpage;
|
|
1238 break;
|
|
1239 }
|
6
|
1240 }
|
671
|
1241 }
|
640
|
1242 # else
|
671
|
1243 apply_autocmds(EVENT_BUFWINLEAVE, curbuf, curbuf->b_fname, FALSE, curbuf);
|
640
|
1244 # endif
|
|
1245
|
6
|
1246 /* Trigger BufUnload for buffers that are loaded */
|
|
1247 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
|
|
1248 if (buf->b_ml.ml_mfp != NULL)
|
|
1249 {
|
|
1250 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
|
|
1251 FALSE, buf);
|
|
1252 if (!buf_valid(buf)) /* autocmd may delete the buffer */
|
|
1253 break;
|
|
1254 }
|
|
1255 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
|
|
1256 #endif
|
|
1257
|
|
1258 #ifdef FEAT_VIMINFO
|
|
1259 if (*p_viminfo != NUL)
|
|
1260 /* Write out the registers, history, marks etc, to the viminfo file */
|
|
1261 write_viminfo(NULL, FALSE);
|
|
1262 #endif
|
|
1263
|
|
1264 #ifdef FEAT_AUTOCMD
|
|
1265 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
|
|
1266 #endif
|
|
1267
|
170
|
1268 #ifdef FEAT_PROFILE
|
|
1269 profile_dump();
|
|
1270 #endif
|
|
1271
|
6
|
1272 if (did_emsg
|
|
1273 #ifdef FEAT_GUI
|
|
1274 || (gui.in_use && msg_didany && p_verbose > 0)
|
|
1275 #endif
|
|
1276 )
|
|
1277 {
|
|
1278 /* give the user a chance to read the (error) message */
|
|
1279 no_wait_return = FALSE;
|
|
1280 wait_return(FALSE);
|
|
1281 }
|
|
1282
|
|
1283 #ifdef FEAT_AUTOCMD
|
|
1284 /* Position the cursor again, the autocommands may have moved it */
|
|
1285 # ifdef FEAT_GUI
|
|
1286 if (!gui.in_use)
|
|
1287 # endif
|
|
1288 windgoto((int)Rows - 1, 0);
|
|
1289 #endif
|
|
1290
|
14
|
1291 #ifdef FEAT_MZSCHEME
|
|
1292 mzscheme_end();
|
|
1293 #endif
|
6
|
1294 #ifdef FEAT_TCL
|
|
1295 tcl_end();
|
|
1296 #endif
|
|
1297 #ifdef FEAT_RUBY
|
|
1298 ruby_end();
|
|
1299 #endif
|
|
1300 #ifdef FEAT_PYTHON
|
|
1301 python_end();
|
|
1302 #endif
|
|
1303 #ifdef FEAT_PERL
|
|
1304 perl_end();
|
|
1305 #endif
|
|
1306 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
|
|
1307 iconv_end();
|
|
1308 #endif
|
|
1309 #ifdef FEAT_NETBEANS_INTG
|
|
1310 netbeans_end();
|
|
1311 #endif
|
|
1312
|
|
1313 mch_exit(exitval);
|
|
1314 }
|
|
1315
|
|
1316 /*
|
|
1317 * Get a (optional) count for a Vim argument.
|
|
1318 */
|
|
1319 static int
|
|
1320 get_number_arg(p, idx, def)
|
|
1321 char_u *p; /* pointer to argument */
|
|
1322 int *idx; /* index in argument, is incremented */
|
|
1323 int def; /* default value */
|
|
1324 {
|
|
1325 if (vim_isdigit(p[*idx]))
|
|
1326 {
|
|
1327 def = atoi((char *)&(p[*idx]));
|
|
1328 while (vim_isdigit(p[*idx]))
|
|
1329 *idx = *idx + 1;
|
|
1330 }
|
|
1331 return def;
|
|
1332 }
|
|
1333
|
443
|
1334 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
|
|
1335 /*
|
|
1336 * Setup to use the current locale (for ctype() and many other things).
|
|
1337 */
|
|
1338 static void
|
|
1339 init_locale()
|
|
1340 {
|
|
1341 setlocale(LC_ALL, "");
|
534
|
1342 # ifdef WIN32
|
|
1343 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit
|
|
1344 * text while it's expecting text in the current locale. This call avoids
|
|
1345 * that. */
|
|
1346 setlocale(LC_CTYPE, "C");
|
|
1347 # endif
|
443
|
1348
|
|
1349 # ifdef FEAT_GETTEXT
|
|
1350 {
|
|
1351 int mustfree = FALSE;
|
|
1352 char_u *p;
|
|
1353
|
|
1354 # ifdef DYNAMIC_GETTEXT
|
|
1355 /* Initialize the gettext library */
|
|
1356 dyn_libintl_init(NULL);
|
|
1357 # endif
|
|
1358 /* expand_env() doesn't work yet, because chartab[] is not initialized
|
|
1359 * yet, call vim_getenv() directly */
|
|
1360 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
|
|
1361 if (p != NULL && *p != NUL)
|
|
1362 {
|
|
1363 STRCPY(NameBuff, p);
|
|
1364 STRCAT(NameBuff, "/lang");
|
|
1365 bindtextdomain(VIMPACKAGE, (char *)NameBuff);
|
|
1366 }
|
|
1367 if (mustfree)
|
|
1368 vim_free(p);
|
|
1369 textdomain(VIMPACKAGE);
|
|
1370 }
|
|
1371 # endif
|
|
1372 }
|
|
1373 #endif
|
|
1374
|
|
1375 /*
|
|
1376 * Check for: [r][e][g][vi|vim|view][diff][ex[im]]
|
|
1377 * If the executable name starts with "r" we disable shell commands.
|
|
1378 * If the next character is "e" we run in Easy mode.
|
|
1379 * If the next character is "g" we run the GUI version.
|
|
1380 * If the next characters are "view" we start in readonly mode.
|
|
1381 * If the next characters are "diff" or "vimdiff" we start in diff mode.
|
|
1382 * If the next characters are "ex" we start in Ex mode. If it's followed
|
|
1383 * by "im" use improved Ex mode.
|
|
1384 */
|
|
1385 static void
|
|
1386 parse_command_name(parmp)
|
|
1387 mparm_T *parmp;
|
|
1388 {
|
|
1389 char_u *initstr;
|
|
1390
|
|
1391 initstr = gettail((char_u *)parmp->argv[0]);
|
|
1392
|
|
1393 #ifdef MACOS_X_UNIX
|
|
1394 /* An issue has been seen when launching Vim in such a way that
|
|
1395 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the
|
|
1396 * executable or a symbolic link of it. Until this issue is resolved
|
|
1397 * we prohibit the GUI from being used.
|
|
1398 */
|
|
1399 if (STRCMP(initstr, parmp->argv[0]) == 0)
|
|
1400 disallow_gui = TRUE;
|
|
1401
|
|
1402 /* TODO: On MacOS X default to gui if argv[0] ends in:
|
769
|
1403 * /Vim.app/Contents/MacOS/Vim */
|
443
|
1404 #endif
|
|
1405
|
|
1406 #ifdef FEAT_EVAL
|
|
1407 set_vim_var_string(VV_PROGNAME, initstr, -1);
|
|
1408 #endif
|
|
1409
|
|
1410 if (TOLOWER_ASC(initstr[0]) == 'r')
|
|
1411 {
|
|
1412 restricted = TRUE;
|
|
1413 ++initstr;
|
|
1414 }
|
|
1415
|
|
1416 /* Avoid using evim mode for "editor". */
|
|
1417 if (TOLOWER_ASC(initstr[0]) == 'e'
|
|
1418 && (TOLOWER_ASC(initstr[1]) == 'v'
|
|
1419 || TOLOWER_ASC(initstr[1]) == 'g'))
|
|
1420 {
|
|
1421 #ifdef FEAT_GUI
|
|
1422 gui.starting = TRUE;
|
|
1423 #endif
|
|
1424 parmp->evim_mode = TRUE;
|
|
1425 ++initstr;
|
|
1426 }
|
|
1427
|
|
1428 if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
|
|
1429 {
|
|
1430 main_start_gui();
|
|
1431 #ifdef FEAT_GUI
|
|
1432 ++initstr;
|
|
1433 #endif
|
|
1434 }
|
|
1435
|
|
1436 if (STRNICMP(initstr, "view", 4) == 0)
|
|
1437 {
|
|
1438 readonlymode = TRUE;
|
|
1439 curbuf->b_p_ro = TRUE;
|
|
1440 p_uc = 10000; /* don't update very often */
|
|
1441 initstr += 4;
|
|
1442 }
|
|
1443 else if (STRNICMP(initstr, "vim", 3) == 0)
|
|
1444 initstr += 3;
|
|
1445
|
|
1446 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */
|
|
1447 if (STRICMP(initstr, "diff") == 0)
|
|
1448 {
|
|
1449 #ifdef FEAT_DIFF
|
|
1450 parmp->diff_mode = TRUE;
|
|
1451 #else
|
|
1452 mch_errmsg(_("This Vim was not compiled with the diff feature."));
|
|
1453 mch_errmsg("\n");
|
|
1454 mch_exit(2);
|
|
1455 #endif
|
|
1456 }
|
|
1457
|
|
1458 if (STRNICMP(initstr, "ex", 2) == 0)
|
|
1459 {
|
|
1460 if (STRNICMP(initstr + 2, "im", 2) == 0)
|
|
1461 exmode_active = EXMODE_VIM;
|
|
1462 else
|
|
1463 exmode_active = EXMODE_NORMAL;
|
|
1464 change_compatible(TRUE); /* set 'compatible' */
|
|
1465 }
|
|
1466 }
|
|
1467
|
6
|
1468 /*
|
440
|
1469 * Get the name of the display, before gui_prepare() removes it from
|
|
1470 * argv[]. Used for the xterm-clipboard display.
|
|
1471 *
|
|
1472 * Also find the --server... arguments and --socketid
|
|
1473 */
|
|
1474 /*ARGSUSED*/
|
|
1475 static void
|
443
|
1476 early_arg_scan(parmp)
|
440
|
1477 mparm_T *parmp;
|
|
1478 {
|
|
1479 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER)
|
443
|
1480 int argc = parmp->argc;
|
|
1481 char **argv = parmp->argv;
|
440
|
1482 int i;
|
|
1483
|
|
1484 for (i = 1; i < argc; i++)
|
|
1485 {
|
|
1486 if (STRCMP(argv[i], "--") == 0)
|
|
1487 break;
|
|
1488 # ifdef FEAT_XCLIPBOARD
|
|
1489 else if (STRICMP(argv[i], "-display") == 0
|
575
|
1490 # if defined(FEAT_GUI_GTK)
|
440
|
1491 || STRICMP(argv[i], "--display") == 0
|
|
1492 # endif
|
|
1493 )
|
|
1494 {
|
|
1495 if (i == argc - 1)
|
|
1496 mainerr_arg_missing((char_u *)argv[i]);
|
|
1497 xterm_display = argv[++i];
|
|
1498 }
|
|
1499 # endif
|
|
1500 # ifdef FEAT_CLIENTSERVER
|
|
1501 else if (STRICMP(argv[i], "--servername") == 0)
|
|
1502 {
|
|
1503 if (i == argc - 1)
|
|
1504 mainerr_arg_missing((char_u *)argv[i]);
|
|
1505 parmp->serverName_arg = (char_u *)argv[++i];
|
|
1506 }
|
734
|
1507 else if (STRICMP(argv[i], "--serverlist") == 0)
|
440
|
1508 parmp->serverArg = TRUE;
|
734
|
1509 else if (STRNICMP(argv[i], "--remote", 8) == 0)
|
440
|
1510 {
|
|
1511 parmp->serverArg = TRUE;
|
734
|
1512 # ifdef FEAT_GUI
|
|
1513 if (strstr(argv[i], "-wait") != 0)
|
|
1514 /* don't fork() when starting the GUI to edit files ourself */
|
|
1515 gui.dofork = FALSE;
|
|
1516 # endif
|
440
|
1517 }
|
|
1518 # endif
|
|
1519 # ifdef FEAT_GUI_GTK
|
|
1520 else if (STRICMP(argv[i], "--socketid") == 0)
|
|
1521 {
|
|
1522 unsigned int socket_id;
|
|
1523 int count;
|
|
1524
|
|
1525 if (i == argc - 1)
|
|
1526 mainerr_arg_missing((char_u *)argv[i]);
|
|
1527 if (STRNICMP(argv[i+1], "0x", 2) == 0)
|
|
1528 count = sscanf(&(argv[i + 1][2]), "%x", &socket_id);
|
|
1529 else
|
|
1530 count = sscanf(argv[i+1], "%u", &socket_id);
|
|
1531 if (count != 1)
|
|
1532 mainerr(ME_INVALID_ARG, (char_u *)argv[i]);
|
|
1533 else
|
|
1534 gtk_socket_id = socket_id;
|
|
1535 i++;
|
|
1536 }
|
|
1537 else if (STRICMP(argv[i], "--echo-wid") == 0)
|
|
1538 echo_wid_arg = TRUE;
|
|
1539 # endif
|
|
1540 }
|
|
1541 #endif
|
|
1542 }
|
|
1543
|
|
1544 /*
|
443
|
1545 * Scan the command line arguments.
|
|
1546 */
|
|
1547 static void
|
|
1548 command_line_scan(parmp)
|
|
1549 mparm_T *parmp;
|
|
1550 {
|
|
1551 int argc = parmp->argc;
|
|
1552 char **argv = parmp->argv;
|
|
1553 int argv_idx; /* index in argv[n][] */
|
|
1554 int had_minmin = FALSE; /* found "--" argument */
|
|
1555 int want_argument; /* option argument with argument */
|
|
1556 int c;
|
445
|
1557 char_u *p = NULL;
|
443
|
1558 long n;
|
|
1559
|
|
1560 --argc;
|
|
1561 ++argv;
|
|
1562 argv_idx = 1; /* active option letter is argv[0][argv_idx] */
|
|
1563 while (argc > 0)
|
|
1564 {
|
|
1565 /*
|
|
1566 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
|
|
1567 */
|
|
1568 if (argv[0][0] == '+' && !had_minmin)
|
|
1569 {
|
|
1570 if (parmp->n_commands >= MAX_ARG_CMDS)
|
|
1571 mainerr(ME_EXTRA_CMD, NULL);
|
|
1572 argv_idx = -1; /* skip to next argument */
|
|
1573 if (argv[0][1] == NUL)
|
|
1574 parmp->commands[parmp->n_commands++] = (char_u *)"$";
|
|
1575 else
|
|
1576 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]);
|
|
1577 }
|
|
1578
|
|
1579 /*
|
|
1580 * Optional argument.
|
|
1581 */
|
|
1582 else if (argv[0][0] == '-' && !had_minmin)
|
|
1583 {
|
|
1584 want_argument = FALSE;
|
|
1585 c = argv[0][argv_idx++];
|
|
1586 #ifdef VMS
|
|
1587 /*
|
|
1588 * VMS only uses upper case command lines. Interpret "-X" as "-x"
|
|
1589 * and "-/X" as "-X".
|
|
1590 */
|
|
1591 if (c == '/')
|
|
1592 {
|
|
1593 c = argv[0][argv_idx++];
|
|
1594 c = TOUPPER_ASC(c);
|
|
1595 }
|
|
1596 else
|
|
1597 c = TOLOWER_ASC(c);
|
|
1598 #endif
|
|
1599 switch (c)
|
|
1600 {
|
|
1601 case NUL: /* "vim -" read from stdin */
|
|
1602 /* "ex -" silent mode */
|
|
1603 if (exmode_active)
|
|
1604 silent_mode = TRUE;
|
|
1605 else
|
|
1606 {
|
|
1607 if (parmp->edit_type != EDIT_NONE)
|
|
1608 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
|
|
1609 parmp->edit_type = EDIT_STDIN;
|
|
1610 read_cmd_fd = 2; /* read from stderr instead of stdin */
|
|
1611 }
|
|
1612 argv_idx = -1; /* skip to next argument */
|
|
1613 break;
|
|
1614
|
|
1615 case '-': /* "--" don't take any more option arguments */
|
|
1616 /* "--help" give help message */
|
|
1617 /* "--version" give version message */
|
|
1618 /* "--literal" take files literally */
|
|
1619 /* "--nofork" don't fork */
|
|
1620 /* "--noplugin[s]" skip plugins */
|
|
1621 /* "--cmd <cmd>" execute cmd before vimrc */
|
|
1622 if (STRICMP(argv[0] + argv_idx, "help") == 0)
|
|
1623 usage();
|
|
1624 else if (STRICMP(argv[0] + argv_idx, "version") == 0)
|
|
1625 {
|
|
1626 Columns = 80; /* need to init Columns */
|
|
1627 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
|
|
1628 list_version();
|
|
1629 msg_putchar('\n');
|
|
1630 msg_didout = FALSE;
|
|
1631 mch_exit(0);
|
|
1632 }
|
|
1633 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0)
|
|
1634 {
|
|
1635 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
|
|
1636 parmp->literal = TRUE;
|
|
1637 #endif
|
|
1638 }
|
|
1639 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0)
|
|
1640 {
|
|
1641 #ifdef FEAT_GUI
|
|
1642 gui.dofork = FALSE; /* don't fork() when starting GUI */
|
|
1643 #endif
|
|
1644 }
|
|
1645 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0)
|
|
1646 p_lpl = FALSE;
|
|
1647 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0)
|
|
1648 {
|
|
1649 want_argument = TRUE;
|
|
1650 argv_idx += 3;
|
|
1651 }
|
|
1652 #ifdef FEAT_CLIENTSERVER
|
|
1653 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0)
|
|
1654 ; /* already processed -- no arg */
|
|
1655 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0
|
|
1656 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0)
|
|
1657 {
|
|
1658 /* already processed -- snatch the following arg */
|
|
1659 if (argc > 1)
|
|
1660 {
|
|
1661 --argc;
|
|
1662 ++argv;
|
|
1663 }
|
|
1664 }
|
|
1665 #endif
|
|
1666 #ifdef FEAT_GUI_GTK
|
|
1667 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0)
|
|
1668 {
|
|
1669 /* already processed -- snatch the following arg */
|
|
1670 if (argc > 1)
|
|
1671 {
|
|
1672 --argc;
|
|
1673 ++argv;
|
|
1674 }
|
|
1675 }
|
|
1676 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0)
|
|
1677 {
|
|
1678 /* already processed, skip */
|
|
1679 }
|
|
1680 #endif
|
|
1681 else
|
|
1682 {
|
|
1683 if (argv[0][argv_idx])
|
|
1684 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
|
|
1685 had_minmin = TRUE;
|
|
1686 }
|
|
1687 if (!want_argument)
|
|
1688 argv_idx = -1; /* skip to next argument */
|
|
1689 break;
|
|
1690
|
|
1691 case 'A': /* "-A" start in Arabic mode */
|
|
1692 #ifdef FEAT_ARABIC
|
|
1693 set_option_value((char_u *)"arabic", 1L, NULL, 0);
|
|
1694 #else
|
|
1695 mch_errmsg(_(e_noarabic));
|
|
1696 mch_exit(2);
|
|
1697 #endif
|
|
1698 break;
|
|
1699
|
|
1700 case 'b': /* "-b" binary mode */
|
445
|
1701 /* Needs to be effective before expanding file names, because
|
|
1702 * for Win32 this makes us edit a shortcut file itself,
|
|
1703 * instead of the file it links to. */
|
|
1704 set_options_bin(curbuf->b_p_bin, 1, 0);
|
|
1705 curbuf->b_p_bin = 1; /* binary file I/O */
|
443
|
1706 break;
|
|
1707
|
|
1708 case 'C': /* "-C" Compatible */
|
|
1709 change_compatible(TRUE);
|
|
1710 break;
|
|
1711
|
|
1712 case 'e': /* "-e" Ex mode */
|
|
1713 exmode_active = EXMODE_NORMAL;
|
|
1714 break;
|
|
1715
|
|
1716 case 'E': /* "-E" Improved Ex mode */
|
|
1717 exmode_active = EXMODE_VIM;
|
|
1718 break;
|
|
1719
|
|
1720 case 'f': /* "-f" GUI: run in foreground. Amiga: open
|
|
1721 window directly, not with newcli */
|
|
1722 #ifdef FEAT_GUI
|
|
1723 gui.dofork = FALSE; /* don't fork() when starting GUI */
|
|
1724 #endif
|
|
1725 break;
|
|
1726
|
|
1727 case 'g': /* "-g" start GUI */
|
|
1728 main_start_gui();
|
|
1729 break;
|
|
1730
|
|
1731 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */
|
|
1732 #ifdef FEAT_FKMAP
|
|
1733 curwin->w_p_rl = p_fkmap = TRUE;
|
|
1734 #else
|
|
1735 mch_errmsg(_(e_nofarsi));
|
|
1736 mch_exit(2);
|
|
1737 #endif
|
|
1738 break;
|
|
1739
|
|
1740 case 'h': /* "-h" give help message */
|
|
1741 #ifdef FEAT_GUI_GNOME
|
|
1742 /* Tell usage() to exit for "gvim". */
|
|
1743 gui.starting = FALSE;
|
|
1744 #endif
|
|
1745 usage();
|
|
1746 break;
|
|
1747
|
|
1748 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */
|
|
1749 #ifdef FEAT_RIGHTLEFT
|
|
1750 curwin->w_p_rl = p_hkmap = TRUE;
|
|
1751 #else
|
|
1752 mch_errmsg(_(e_nohebrew));
|
|
1753 mch_exit(2);
|
|
1754 #endif
|
|
1755 break;
|
|
1756
|
|
1757 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */
|
|
1758 #ifdef FEAT_LISP
|
|
1759 set_option_value((char_u *)"lisp", 1L, NULL, 0);
|
|
1760 p_sm = TRUE;
|
|
1761 #endif
|
|
1762 break;
|
|
1763
|
|
1764 case 'M': /* "-M" no changes or writing of files */
|
|
1765 reset_modifiable();
|
|
1766 /* FALLTHROUGH */
|
|
1767
|
|
1768 case 'm': /* "-m" no writing of files */
|
|
1769 p_write = FALSE;
|
|
1770 break;
|
|
1771
|
|
1772 case 'y': /* "-y" easy mode */
|
|
1773 #ifdef FEAT_GUI
|
|
1774 gui.starting = TRUE; /* start GUI a bit later */
|
|
1775 #endif
|
|
1776 parmp->evim_mode = TRUE;
|
|
1777 break;
|
|
1778
|
|
1779 case 'N': /* "-N" Nocompatible */
|
|
1780 change_compatible(FALSE);
|
|
1781 break;
|
|
1782
|
|
1783 case 'n': /* "-n" no swap file */
|
|
1784 parmp->no_swap_file = TRUE;
|
|
1785 break;
|
|
1786
|
673
|
1787 case 'p': /* "-p[N]" open N tab pages */
|
674
|
1788 #ifdef TARGET_API_MAC_OSX
|
|
1789 /* For some reason on MacOS X, an argument like:
|
|
1790 -psn_0_10223617 is passed in when invoke from Finder
|
|
1791 or with the 'open' command */
|
|
1792 if (argv[0][argv_idx] == 's')
|
|
1793 {
|
|
1794 argv_idx = -1; /* bypass full -psn */
|
|
1795 main_start_gui();
|
|
1796 break;
|
|
1797 }
|
|
1798 #endif
|
673
|
1799 #ifdef FEAT_WINDOWS
|
|
1800 /* default is 0: open window for each file */
|
|
1801 parmp->window_count = get_number_arg((char_u *)argv[0],
|
|
1802 &argv_idx, 0);
|
|
1803 parmp->window_layout = WIN_TABS;
|
|
1804 #endif
|
|
1805 break;
|
|
1806
|
443
|
1807 case 'o': /* "-o[N]" open N horizontal split windows */
|
|
1808 #ifdef FEAT_WINDOWS
|
|
1809 /* default is 0: open window for each file */
|
445
|
1810 parmp->window_count = get_number_arg((char_u *)argv[0],
|
|
1811 &argv_idx, 0);
|
673
|
1812 parmp->window_layout = WIN_HOR;
|
443
|
1813 #endif
|
|
1814 break;
|
|
1815
|
|
1816 case 'O': /* "-O[N]" open N vertical split windows */
|
|
1817 #if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
|
|
1818 /* default is 0: open window for each file */
|
445
|
1819 parmp->window_count = get_number_arg((char_u *)argv[0],
|
|
1820 &argv_idx, 0);
|
673
|
1821 parmp->window_layout = WIN_VER;
|
443
|
1822 #endif
|
|
1823 break;
|
|
1824
|
|
1825 #ifdef FEAT_QUICKFIX
|
|
1826 case 'q': /* "-q" QuickFix mode */
|
|
1827 if (parmp->edit_type != EDIT_NONE)
|
|
1828 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
|
|
1829 parmp->edit_type = EDIT_QF;
|
|
1830 if (argv[0][argv_idx]) /* "-q{errorfile}" */
|
|
1831 {
|
|
1832 parmp->use_ef = (char_u *)argv[0] + argv_idx;
|
|
1833 argv_idx = -1;
|
|
1834 }
|
|
1835 else if (argc > 1) /* "-q {errorfile}" */
|
|
1836 want_argument = TRUE;
|
|
1837 break;
|
|
1838 #endif
|
|
1839
|
|
1840 case 'R': /* "-R" readonly mode */
|
|
1841 readonlymode = TRUE;
|
|
1842 curbuf->b_p_ro = TRUE;
|
|
1843 p_uc = 10000; /* don't update very often */
|
|
1844 break;
|
|
1845
|
|
1846 case 'r': /* "-r" recovery mode */
|
|
1847 case 'L': /* "-L" recovery mode */
|
|
1848 recoverymode = 1;
|
|
1849 break;
|
|
1850
|
|
1851 case 's':
|
|
1852 if (exmode_active) /* "-s" silent (batch) mode */
|
|
1853 silent_mode = TRUE;
|
|
1854 else /* "-s {scriptin}" read from script file */
|
|
1855 want_argument = TRUE;
|
|
1856 break;
|
|
1857
|
|
1858 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */
|
|
1859 if (parmp->edit_type != EDIT_NONE)
|
|
1860 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
|
|
1861 parmp->edit_type = EDIT_TAG;
|
|
1862 if (argv[0][argv_idx]) /* "-t{tag}" */
|
|
1863 {
|
|
1864 parmp->tagname = (char_u *)argv[0] + argv_idx;
|
|
1865 argv_idx = -1;
|
|
1866 }
|
|
1867 else /* "-t {tag}" */
|
|
1868 want_argument = TRUE;
|
|
1869 break;
|
|
1870
|
|
1871 #ifdef FEAT_EVAL
|
|
1872 case 'D': /* "-D" Debugging */
|
|
1873 parmp->use_debug_break_level = 9999;
|
|
1874 break;
|
|
1875 #endif
|
|
1876 #ifdef FEAT_DIFF
|
|
1877 case 'd': /* "-d" 'diff' */
|
|
1878 # ifdef AMIGA
|
|
1879 /* check for "-dev {device}" */
|
|
1880 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v')
|
|
1881 want_argument = TRUE;
|
|
1882 else
|
|
1883 # endif
|
|
1884 parmp->diff_mode = TRUE;
|
|
1885 break;
|
|
1886 #endif
|
|
1887 case 'V': /* "-V{N}" Verbose level */
|
|
1888 /* default is 10: a little bit verbose */
|
|
1889 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
|
|
1890 if (argv[0][argv_idx] != NUL)
|
|
1891 {
|
|
1892 set_option_value((char_u *)"verbosefile", 0L,
|
|
1893 (char_u *)argv[0] + argv_idx, 0);
|
835
|
1894 argv_idx = (int)STRLEN(argv[0]);
|
443
|
1895 }
|
|
1896 break;
|
|
1897
|
|
1898 case 'v': /* "-v" Vi-mode (as if called "vi") */
|
|
1899 exmode_active = 0;
|
|
1900 #ifdef FEAT_GUI
|
|
1901 gui.starting = FALSE; /* don't start GUI */
|
|
1902 #endif
|
|
1903 break;
|
|
1904
|
|
1905 case 'w': /* "-w{number}" set window height */
|
|
1906 /* "-w {scriptout}" write to script */
|
|
1907 if (vim_isdigit(((char_u *)argv[0])[argv_idx]))
|
|
1908 {
|
|
1909 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
|
|
1910 set_option_value((char_u *)"window", n, NULL, 0);
|
|
1911 break;
|
|
1912 }
|
|
1913 want_argument = TRUE;
|
|
1914 break;
|
|
1915
|
|
1916 #ifdef FEAT_CRYPT
|
|
1917 case 'x': /* "-x" encrypted reading/writing of files */
|
|
1918 parmp->ask_for_key = TRUE;
|
|
1919 break;
|
|
1920 #endif
|
|
1921
|
|
1922 case 'X': /* "-X" don't connect to X server */
|
|
1923 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
|
|
1924 x_no_connect = TRUE;
|
|
1925 #endif
|
|
1926 break;
|
|
1927
|
|
1928 case 'Z': /* "-Z" restricted mode */
|
|
1929 restricted = TRUE;
|
|
1930 break;
|
|
1931
|
|
1932 case 'c': /* "-c{command}" or "-c {command}" execute
|
|
1933 command */
|
|
1934 if (argv[0][argv_idx] != NUL)
|
|
1935 {
|
|
1936 if (parmp->n_commands >= MAX_ARG_CMDS)
|
|
1937 mainerr(ME_EXTRA_CMD, NULL);
|
445
|
1938 parmp->commands[parmp->n_commands++] = (char_u *)argv[0]
|
|
1939 + argv_idx;
|
443
|
1940 argv_idx = -1;
|
|
1941 break;
|
|
1942 }
|
|
1943 /*FALLTHROUGH*/
|
|
1944 case 'S': /* "-S {file}" execute Vim script */
|
|
1945 case 'i': /* "-i {viminfo}" use for viminfo */
|
|
1946 #ifndef FEAT_DIFF
|
|
1947 case 'd': /* "-d {device}" device (for Amiga) */
|
|
1948 #endif
|
|
1949 case 'T': /* "-T {terminal}" terminal name */
|
|
1950 case 'u': /* "-u {vimrc}" vim inits file */
|
|
1951 case 'U': /* "-U {gvimrc}" gvim inits file */
|
|
1952 case 'W': /* "-W {scriptout}" overwrite */
|
|
1953 #ifdef FEAT_GUI_W32
|
|
1954 case 'P': /* "-P {parent title}" MDI parent */
|
|
1955 #endif
|
|
1956 want_argument = TRUE;
|
|
1957 break;
|
|
1958
|
|
1959 default:
|
|
1960 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]);
|
|
1961 }
|
|
1962
|
|
1963 /*
|
|
1964 * Handle option arguments with argument.
|
|
1965 */
|
|
1966 if (want_argument)
|
|
1967 {
|
|
1968 /*
|
|
1969 * Check for garbage immediately after the option letter.
|
|
1970 */
|
|
1971 if (argv[0][argv_idx] != NUL)
|
|
1972 mainerr(ME_GARBAGE, (char_u *)argv[0]);
|
|
1973
|
|
1974 --argc;
|
|
1975 if (argc < 1 && c != 'S')
|
|
1976 mainerr_arg_missing((char_u *)argv[0]);
|
|
1977 ++argv;
|
|
1978 argv_idx = -1;
|
|
1979
|
|
1980 switch (c)
|
|
1981 {
|
|
1982 case 'c': /* "-c {command}" execute command */
|
|
1983 case 'S': /* "-S {file}" execute Vim script */
|
|
1984 if (parmp->n_commands >= MAX_ARG_CMDS)
|
|
1985 mainerr(ME_EXTRA_CMD, NULL);
|
|
1986 if (c == 'S')
|
|
1987 {
|
|
1988 char *a;
|
|
1989
|
|
1990 if (argc < 1)
|
|
1991 /* "-S" without argument: use default session file
|
|
1992 * name. */
|
|
1993 a = SESSION_FILE;
|
|
1994 else if (argv[0][0] == '-')
|
|
1995 {
|
|
1996 /* "-S" followed by another option: use default
|
|
1997 * session file name. */
|
|
1998 a = SESSION_FILE;
|
|
1999 ++argc;
|
|
2000 --argv;
|
|
2001 }
|
|
2002 else
|
|
2003 a = argv[0];
|
|
2004 p = alloc((unsigned)(STRLEN(a) + 4));
|
|
2005 if (p == NULL)
|
|
2006 mch_exit(2);
|
|
2007 sprintf((char *)p, "so %s", a);
|
|
2008 parmp->cmds_tofree[parmp->n_commands] = TRUE;
|
|
2009 parmp->commands[parmp->n_commands++] = p;
|
|
2010 }
|
|
2011 else
|
445
|
2012 parmp->commands[parmp->n_commands++] =
|
|
2013 (char_u *)argv[0];
|
443
|
2014 break;
|
|
2015
|
|
2016 case '-': /* "--cmd {command}" execute command */
|
|
2017 if (parmp->n_pre_commands >= MAX_ARG_CMDS)
|
|
2018 mainerr(ME_EXTRA_CMD, NULL);
|
445
|
2019 parmp->pre_commands[parmp->n_pre_commands++] =
|
|
2020 (char_u *)argv[0];
|
443
|
2021 break;
|
|
2022
|
|
2023 /* case 'd': -d {device} is handled in mch_check_win() for the
|
|
2024 * Amiga */
|
|
2025
|
|
2026 #ifdef FEAT_QUICKFIX
|
|
2027 case 'q': /* "-q {errorfile}" QuickFix mode */
|
|
2028 parmp->use_ef = (char_u *)argv[0];
|
|
2029 break;
|
|
2030 #endif
|
|
2031
|
|
2032 case 'i': /* "-i {viminfo}" use for viminfo */
|
|
2033 use_viminfo = (char_u *)argv[0];
|
|
2034 break;
|
|
2035
|
|
2036 case 's': /* "-s {scriptin}" read from script file */
|
|
2037 if (scriptin[0] != NULL)
|
|
2038 {
|
|
2039 scripterror:
|
|
2040 mch_errmsg(_("Attempt to open script file again: \""));
|
|
2041 mch_errmsg(argv[-1]);
|
|
2042 mch_errmsg(" ");
|
|
2043 mch_errmsg(argv[0]);
|
|
2044 mch_errmsg("\"\n");
|
|
2045 mch_exit(2);
|
|
2046 }
|
|
2047 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL)
|
|
2048 {
|
|
2049 mch_errmsg(_("Cannot open for reading: \""));
|
|
2050 mch_errmsg(argv[0]);
|
|
2051 mch_errmsg("\"\n");
|
|
2052 mch_exit(2);
|
|
2053 }
|
|
2054 if (save_typebuf() == FAIL)
|
|
2055 mch_exit(2); /* out of memory */
|
|
2056 break;
|
|
2057
|
|
2058 case 't': /* "-t {tag}" */
|
|
2059 parmp->tagname = (char_u *)argv[0];
|
|
2060 break;
|
|
2061
|
|
2062 case 'T': /* "-T {terminal}" terminal name */
|
|
2063 /*
|
|
2064 * The -T term argument is always available and when
|
|
2065 * HAVE_TERMLIB is supported it overrides the environment
|
|
2066 * variable TERM.
|
|
2067 */
|
|
2068 #ifdef FEAT_GUI
|
|
2069 if (term_is_gui((char_u *)argv[0]))
|
|
2070 gui.starting = TRUE; /* start GUI a bit later */
|
|
2071 else
|
|
2072 #endif
|
|
2073 parmp->term = (char_u *)argv[0];
|
|
2074 break;
|
|
2075
|
|
2076 case 'u': /* "-u {vimrc}" vim inits file */
|
|
2077 parmp->use_vimrc = (char_u *)argv[0];
|
|
2078 break;
|
|
2079
|
|
2080 case 'U': /* "-U {gvimrc}" gvim inits file */
|
|
2081 #ifdef FEAT_GUI
|
|
2082 use_gvimrc = (char_u *)argv[0];
|
|
2083 #endif
|
|
2084 break;
|
|
2085
|
|
2086 case 'w': /* "-w {nr}" 'window' value */
|
|
2087 /* "-w {scriptout}" append to script file */
|
|
2088 if (vim_isdigit(*((char_u *)argv[0])))
|
|
2089 {
|
|
2090 argv_idx = 0;
|
|
2091 n = get_number_arg((char_u *)argv[0], &argv_idx, 10);
|
|
2092 set_option_value((char_u *)"window", n, NULL, 0);
|
|
2093 argv_idx = -1;
|
|
2094 break;
|
|
2095 }
|
|
2096 /*FALLTHROUGH*/
|
|
2097 case 'W': /* "-W {scriptout}" overwrite script file */
|
|
2098 if (scriptout != NULL)
|
|
2099 goto scripterror;
|
|
2100 if ((scriptout = mch_fopen(argv[0],
|
|
2101 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL)
|
|
2102 {
|
|
2103 mch_errmsg(_("Cannot open for script output: \""));
|
|
2104 mch_errmsg(argv[0]);
|
|
2105 mch_errmsg("\"\n");
|
|
2106 mch_exit(2);
|
|
2107 }
|
|
2108 break;
|
|
2109
|
|
2110 #ifdef FEAT_GUI_W32
|
|
2111 case 'P': /* "-P {parent title}" MDI parent */
|
|
2112 gui_mch_set_parent(argv[0]);
|
|
2113 break;
|
|
2114 #endif
|
|
2115 }
|
|
2116 }
|
|
2117 }
|
|
2118
|
|
2119 /*
|
|
2120 * File name argument.
|
|
2121 */
|
|
2122 else
|
|
2123 {
|
|
2124 argv_idx = -1; /* skip to next argument */
|
|
2125
|
|
2126 /* Check for only one type of editing. */
|
|
2127 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE)
|
|
2128 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]);
|
|
2129 parmp->edit_type = EDIT_FILE;
|
|
2130
|
|
2131 #ifdef MSWIN
|
|
2132 /* Remember if the argument was a full path before changing
|
|
2133 * slashes to backslashes. */
|
|
2134 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\')
|
|
2135 parmp->full_path = TRUE;
|
|
2136 #endif
|
|
2137
|
|
2138 /* Add the file to the global argument list. */
|
|
2139 if (ga_grow(&global_alist.al_ga, 1) == FAIL
|
|
2140 || (p = vim_strsave((char_u *)argv[0])) == NULL)
|
|
2141 mch_exit(2);
|
|
2142 #ifdef FEAT_DIFF
|
|
2143 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0
|
|
2144 && !mch_isdir(alist_name(&GARGLIST[0])))
|
|
2145 {
|
|
2146 char_u *r;
|
|
2147
|
|
2148 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE);
|
|
2149 if (r != NULL)
|
|
2150 {
|
|
2151 vim_free(p);
|
|
2152 p = r;
|
|
2153 }
|
|
2154 }
|
|
2155 #endif
|
|
2156 #if defined(__CYGWIN32__) && !defined(WIN32)
|
|
2157 /*
|
|
2158 * If vim is invoked by non-Cygwin tools, convert away any
|
|
2159 * DOS paths, so things like .swp files are created correctly.
|
|
2160 * Look for evidence of non-Cygwin paths before we bother.
|
|
2161 * This is only for when using the Unix files.
|
|
2162 */
|
|
2163 if (strpbrk(p, "\\:") != NULL)
|
|
2164 {
|
|
2165 char posix_path[PATH_MAX];
|
|
2166
|
|
2167 cygwin_conv_to_posix_path(p, posix_path);
|
|
2168 vim_free(p);
|
|
2169 p = vim_strsave(posix_path);
|
|
2170 if (p == NULL)
|
|
2171 mch_exit(2);
|
|
2172 }
|
|
2173 #endif
|
587
|
2174
|
|
2175 #ifdef USE_FNAME_CASE
|
|
2176 /* Make the case of the file name match the actual file. */
|
|
2177 fname_case(p, 0);
|
|
2178 #endif
|
|
2179
|
443
|
2180 alist_add(&global_alist, p,
|
|
2181 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
|
445
|
2182 parmp->literal ? 2 : 0 /* add buffer nr after exp. */
|
443
|
2183 #else
|
|
2184 2 /* add buffer number now and use curbuf */
|
|
2185 #endif
|
|
2186 );
|
|
2187
|
|
2188 #if defined(FEAT_MBYTE) && defined(WIN32)
|
|
2189 {
|
|
2190 /* Remember this argument has been added to the argument list.
|
|
2191 * Needed when 'encoding' is changed. */
|
819
|
2192 used_file_arg(argv[0], parmp->literal, parmp->full_path,
|
|
2193 parmp->diff_mode);
|
443
|
2194 }
|
|
2195 #endif
|
|
2196 }
|
|
2197
|
|
2198 /*
|
|
2199 * If there are no more letters after the current "-", go to next
|
|
2200 * argument. argv_idx is set to -1 when the current argument is to be
|
|
2201 * skipped.
|
|
2202 */
|
|
2203 if (argv_idx <= 0 || argv[0][argv_idx] == NUL)
|
|
2204 {
|
|
2205 --argc;
|
|
2206 ++argv;
|
|
2207 argv_idx = 1;
|
|
2208 }
|
|
2209 }
|
1093
|
2210
|
|
2211 #ifdef FEAT_EVAL
|
|
2212 /* If there is a "+123" or "-c" command, set v:swapcommand to the first
|
|
2213 * one. */
|
|
2214 if (parmp->n_commands > 0)
|
|
2215 {
|
|
2216 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3);
|
|
2217 if (p != NULL)
|
|
2218 {
|
|
2219 sprintf((char *)p, ":%s\r", parmp->commands[0]);
|
|
2220 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
|
|
2221 vim_free(p);
|
|
2222 }
|
|
2223 }
|
|
2224 #endif
|
443
|
2225 }
|
|
2226
|
|
2227 /*
|
|
2228 * Print a warning if stdout is not a terminal.
|
|
2229 * When starting in Ex mode and commands come from a file, set Silent mode.
|
|
2230 */
|
|
2231 static void
|
|
2232 check_tty(parmp)
|
|
2233 mparm_T *parmp;
|
|
2234 {
|
|
2235 int input_isatty; /* is active input a terminal? */
|
|
2236
|
|
2237 input_isatty = mch_input_isatty();
|
|
2238 if (exmode_active)
|
|
2239 {
|
|
2240 if (!input_isatty)
|
|
2241 silent_mode = TRUE;
|
|
2242 }
|
|
2243 else if (parmp->want_full_screen && (!parmp->stdout_isatty || !input_isatty)
|
|
2244 #ifdef FEAT_GUI
|
|
2245 /* don't want the delay when started from the desktop */
|
|
2246 && !gui.starting
|
|
2247 #endif
|
|
2248 )
|
|
2249 {
|
|
2250 #ifdef NBDEBUG
|
|
2251 /*
|
|
2252 * This shouldn't be necessary. But if I run netbeans with the log
|
|
2253 * output coming to the console and XOpenDisplay fails, I get vim
|
|
2254 * trying to start with input/output to my console tty. This fills my
|
|
2255 * input buffer so fast I can't even kill the process in under 2
|
|
2256 * minutes (and it beeps continuosly the whole time :-)
|
|
2257 */
|
|
2258 if (usingNetbeans && (!parmp->stdout_isatty || !input_isatty))
|
|
2259 {
|
|
2260 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n"));
|
|
2261 exit(1);
|
|
2262 }
|
|
2263 #endif
|
|
2264 if (!parmp->stdout_isatty)
|
|
2265 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n"));
|
|
2266 if (!input_isatty)
|
|
2267 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
|
|
2268 out_flush();
|
|
2269 if (scriptin[0] == NULL)
|
|
2270 ui_delay(2000L, TRUE);
|
|
2271 TIME_MSG("Warning delay");
|
|
2272 }
|
|
2273 }
|
|
2274
|
|
2275 /*
|
|
2276 * Read text from stdin.
|
|
2277 */
|
|
2278 static void
|
|
2279 read_stdin()
|
|
2280 {
|
|
2281 int i;
|
|
2282
|
580
|
2283 #if defined(HAS_SWAP_EXISTS_ACTION)
|
443
|
2284 /* When getting the ATTENTION prompt here, use a dialog */
|
|
2285 swap_exists_action = SEA_DIALOG;
|
|
2286 #endif
|
|
2287 no_wait_return = TRUE;
|
|
2288 i = msg_didany;
|
|
2289 set_buflisted(TRUE);
|
|
2290 (void)open_buffer(TRUE, NULL); /* create memfile and read file */
|
|
2291 no_wait_return = FALSE;
|
|
2292 msg_didany = i;
|
|
2293 TIME_MSG("reading stdin");
|
580
|
2294 #if defined(HAS_SWAP_EXISTS_ACTION)
|
443
|
2295 check_swap_exists_action();
|
|
2296 #endif
|
|
2297 #if !(defined(AMIGA) || defined(MACOS))
|
|
2298 /*
|
|
2299 * Close stdin and dup it from stderr. Required for GPM to work
|
|
2300 * properly, and for running external commands.
|
|
2301 * Is there any other system that cannot do this?
|
|
2302 */
|
|
2303 close(0);
|
|
2304 dup(2);
|
|
2305 #endif
|
|
2306 }
|
|
2307
|
|
2308 /*
|
|
2309 * Create the requested number of windows and edit buffers in them.
|
|
2310 * Also does recovery if "recoverymode" set.
|
|
2311 */
|
|
2312 /*ARGSUSED*/
|
|
2313 static void
|
|
2314 create_windows(parmp)
|
|
2315 mparm_T *parmp;
|
|
2316 {
|
|
2317 #ifdef FEAT_WINDOWS
|
944
|
2318 int dorewind;
|
673
|
2319 int done = 0;
|
|
2320
|
443
|
2321 /*
|
|
2322 * Create the number of windows that was requested.
|
|
2323 */
|
|
2324 if (parmp->window_count == -1) /* was not set */
|
|
2325 parmp->window_count = 1;
|
|
2326 if (parmp->window_count == 0)
|
|
2327 parmp->window_count = GARGCOUNT;
|
|
2328 if (parmp->window_count > 1)
|
|
2329 {
|
|
2330 /* Don't change the windows if there was a command in .vimrc that
|
|
2331 * already split some windows */
|
673
|
2332 if (parmp->window_layout == 0)
|
|
2333 parmp->window_layout = WIN_HOR;
|
|
2334 if (parmp->window_layout == WIN_TABS)
|
|
2335 {
|
|
2336 parmp->window_count = make_tabpages(parmp->window_count);
|
|
2337 TIME_MSG("making tab pages");
|
|
2338 }
|
|
2339 else if (firstwin->w_next == NULL)
|
443
|
2340 {
|
|
2341 parmp->window_count = make_windows(parmp->window_count,
|
673
|
2342 parmp->window_layout == WIN_VER);
|
443
|
2343 TIME_MSG("making windows");
|
|
2344 }
|
|
2345 else
|
|
2346 parmp->window_count = win_count();
|
|
2347 }
|
|
2348 else
|
|
2349 parmp->window_count = 1;
|
|
2350 #endif
|
|
2351
|
|
2352 if (recoverymode) /* do recover */
|
|
2353 {
|
|
2354 msg_scroll = TRUE; /* scroll message up */
|
|
2355 ml_recover();
|
|
2356 if (curbuf->b_ml.ml_mfp == NULL) /* failed */
|
|
2357 getout(1);
|
717
|
2358 do_modelines(0); /* do modelines */
|
443
|
2359 }
|
|
2360 else
|
|
2361 {
|
|
2362 /*
|
|
2363 * Open a buffer for windows that don't have one yet.
|
|
2364 * Commands in the .vimrc might have loaded a file or split the window.
|
|
2365 * Watch out for autocommands that delete a window.
|
|
2366 */
|
|
2367 #ifdef FEAT_AUTOCMD
|
|
2368 /*
|
|
2369 * Don't execute Win/Buf Enter/Leave autocommands here
|
|
2370 */
|
|
2371 ++autocmd_no_enter;
|
|
2372 ++autocmd_no_leave;
|
|
2373 #endif
|
|
2374 #ifdef FEAT_WINDOWS
|
944
|
2375 dorewind = TRUE;
|
673
|
2376 while (done++ < 1000)
|
|
2377 {
|
944
|
2378 if (dorewind)
|
673
|
2379 {
|
|
2380 if (parmp->window_layout == WIN_TABS)
|
|
2381 goto_tabpage(1);
|
|
2382 else
|
|
2383 curwin = firstwin;
|
|
2384 }
|
|
2385 else if (parmp->window_layout == WIN_TABS)
|
|
2386 {
|
|
2387 if (curtab->tp_next == NULL)
|
|
2388 break;
|
|
2389 goto_tabpage(0);
|
|
2390 }
|
|
2391 else
|
|
2392 {
|
|
2393 if (curwin->w_next == NULL)
|
|
2394 break;
|
|
2395 curwin = curwin->w_next;
|
|
2396 }
|
944
|
2397 dorewind = FALSE;
|
443
|
2398 #endif
|
|
2399 curbuf = curwin->w_buffer;
|
|
2400 if (curbuf->b_ml.ml_mfp == NULL)
|
|
2401 {
|
|
2402 #ifdef FEAT_FOLDING
|
|
2403 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
|
|
2404 if (p_fdls >= 0)
|
|
2405 curwin->w_p_fdl = p_fdls;
|
|
2406 #endif
|
580
|
2407 #if defined(HAS_SWAP_EXISTS_ACTION)
|
443
|
2408 /* When getting the ATTENTION prompt here, use a dialog */
|
|
2409 swap_exists_action = SEA_DIALOG;
|
|
2410 #endif
|
|
2411 set_buflisted(TRUE);
|
|
2412 (void)open_buffer(FALSE, NULL); /* create memfile, read file */
|
|
2413
|
580
|
2414 #if defined(HAS_SWAP_EXISTS_ACTION)
|
1036
|
2415 if (swap_exists_action == SEA_QUIT)
|
|
2416 {
|
|
2417 if (got_int || only_one_window())
|
|
2418 {
|
|
2419 /* abort selected or quit and only one window */
|
|
2420 did_emsg = FALSE; /* avoid hit-enter prompt */
|
|
2421 getout(1);
|
|
2422 }
|
|
2423 /* We can't close the window, it would disturb what
|
|
2424 * happens next. Clear the file name and set the arg
|
|
2425 * index to -1 to delete it later. */
|
|
2426 setfname(curbuf, NULL, NULL, FALSE);
|
|
2427 curwin->w_arg_idx = -1;
|
|
2428 swap_exists_action = SEA_NONE;
|
|
2429 }
|
|
2430 else
|
|
2431 handle_swap_exists(NULL);
|
443
|
2432 #endif
|
|
2433 #ifdef FEAT_AUTOCMD
|
944
|
2434 dorewind = TRUE; /* start again */
|
443
|
2435 #endif
|
|
2436 }
|
|
2437 #ifdef FEAT_WINDOWS
|
|
2438 ui_breakcheck();
|
|
2439 if (got_int)
|
|
2440 {
|
|
2441 (void)vgetc(); /* only break the file loading, not the rest */
|
|
2442 break;
|
|
2443 }
|
673
|
2444 }
|
443
|
2445 #endif
|
673
|
2446 #ifdef FEAT_WINDOWS
|
|
2447 if (parmp->window_layout == WIN_TABS)
|
|
2448 goto_tabpage(1);
|
|
2449 else
|
|
2450 curwin = firstwin;
|
|
2451 curbuf = curwin->w_buffer;
|
|
2452 #endif
|
443
|
2453 #ifdef FEAT_AUTOCMD
|
|
2454 --autocmd_no_enter;
|
|
2455 --autocmd_no_leave;
|
|
2456 #endif
|
|
2457 }
|
|
2458 }
|
|
2459
|
|
2460 #ifdef FEAT_WINDOWS
|
|
2461 /*
|
|
2462 * If opened more than one window, start editing files in the other
|
|
2463 * windows. make_windows() has already opened the windows.
|
|
2464 */
|
|
2465 static void
|
|
2466 edit_buffers(parmp)
|
|
2467 mparm_T *parmp;
|
|
2468 {
|
|
2469 int arg_idx; /* index in argument list */
|
|
2470 int i;
|
1036
|
2471 int advance = TRUE;
|
|
2472 buf_T *old_curbuf;
|
443
|
2473
|
|
2474 # ifdef FEAT_AUTOCMD
|
|
2475 /*
|
|
2476 * Don't execute Win/Buf Enter/Leave autocommands here
|
|
2477 */
|
|
2478 ++autocmd_no_enter;
|
|
2479 ++autocmd_no_leave;
|
|
2480 # endif
|
1036
|
2481
|
|
2482 /* When w_arg_idx is -1 remove the window (see create_windows()). */
|
|
2483 if (curwin->w_arg_idx == -1)
|
|
2484 {
|
|
2485 win_close(curwin, TRUE);
|
|
2486 advance = FALSE;
|
|
2487 }
|
|
2488
|
443
|
2489 arg_idx = 1;
|
|
2490 for (i = 1; i < parmp->window_count; ++i)
|
|
2491 {
|
1036
|
2492 /* When w_arg_idx is -1 remove the window (see create_windows()). */
|
|
2493 if (curwin->w_arg_idx == -1)
|
673
|
2494 {
|
1036
|
2495 ++arg_idx;
|
|
2496 win_close(curwin, TRUE);
|
|
2497 advance = FALSE;
|
|
2498 continue;
|
673
|
2499 }
|
1036
|
2500
|
|
2501 if (advance)
|
673
|
2502 {
|
1036
|
2503 if (parmp->window_layout == WIN_TABS)
|
|
2504 {
|
|
2505 if (curtab->tp_next == NULL) /* just checking */
|
|
2506 break;
|
|
2507 goto_tabpage(0);
|
|
2508 }
|
|
2509 else
|
|
2510 {
|
|
2511 if (curwin->w_next == NULL) /* just checking */
|
|
2512 break;
|
|
2513 win_enter(curwin->w_next, FALSE);
|
|
2514 }
|
673
|
2515 }
|
1036
|
2516 advance = TRUE;
|
443
|
2517
|
|
2518 /* Only open the file if there is no file in this window yet (that can
|
1036
|
2519 * happen when .vimrc contains ":sall"). */
|
443
|
2520 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL)
|
|
2521 {
|
|
2522 curwin->w_arg_idx = arg_idx;
|
1036
|
2523 /* Edit file from arg list, if there is one. When "Quit" selected
|
|
2524 * at the ATTENTION prompt close the window. */
|
|
2525 old_curbuf = curbuf;
|
443
|
2526 (void)do_ecmd(0, arg_idx < GARGCOUNT
|
|
2527 ? alist_name(&GARGLIST[arg_idx]) : NULL,
|
|
2528 NULL, NULL, ECMD_LASTL, ECMD_HIDE);
|
1036
|
2529 if (curbuf == old_curbuf)
|
|
2530 {
|
|
2531 if (got_int || only_one_window())
|
|
2532 {
|
|
2533 /* abort selected or quit and only one window */
|
|
2534 did_emsg = FALSE; /* avoid hit-enter prompt */
|
|
2535 getout(1);
|
|
2536 }
|
|
2537 win_close(curwin, TRUE);
|
|
2538 advance = FALSE;
|
|
2539 }
|
443
|
2540 if (arg_idx == GARGCOUNT - 1)
|
|
2541 arg_had_last = TRUE;
|
|
2542 ++arg_idx;
|
|
2543 }
|
|
2544 ui_breakcheck();
|
|
2545 if (got_int)
|
|
2546 {
|
|
2547 (void)vgetc(); /* only break the file loading, not the rest */
|
|
2548 break;
|
|
2549 }
|
|
2550 }
|
673
|
2551
|
|
2552 if (parmp->window_layout == WIN_TABS)
|
|
2553 goto_tabpage(1);
|
443
|
2554 # ifdef FEAT_AUTOCMD
|
|
2555 --autocmd_no_enter;
|
|
2556 # endif
|
|
2557 win_enter(firstwin, FALSE); /* back to first window */
|
|
2558 # ifdef FEAT_AUTOCMD
|
|
2559 --autocmd_no_leave;
|
|
2560 # endif
|
|
2561 TIME_MSG("editing files in windows");
|
673
|
2562 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
|
443
|
2563 win_equal(curwin, FALSE, 'b'); /* adjust heights */
|
|
2564 }
|
|
2565 #endif /* FEAT_WINDOWS */
|
|
2566
|
|
2567 /*
|
440
|
2568 * Execute the commands from --cmd arguments "cmds[cnt]".
|
|
2569 */
|
|
2570 static void
|
443
|
2571 exe_pre_commands(parmp)
|
|
2572 mparm_T *parmp;
|
440
|
2573 {
|
443
|
2574 char_u **cmds = parmp->pre_commands;
|
|
2575 int cnt = parmp->n_pre_commands;
|
440
|
2576 int i;
|
|
2577
|
|
2578 if (cnt > 0)
|
|
2579 {
|
|
2580 curwin->w_cursor.lnum = 0; /* just in case.. */
|
|
2581 sourcing_name = (char_u *)_("pre-vimrc command line");
|
|
2582 # ifdef FEAT_EVAL
|
|
2583 current_SID = SID_CMDARG;
|
|
2584 # endif
|
|
2585 for (i = 0; i < cnt; ++i)
|
|
2586 do_cmdline_cmd(cmds[i]);
|
|
2587 sourcing_name = NULL;
|
|
2588 # ifdef FEAT_EVAL
|
|
2589 current_SID = 0;
|
|
2590 # endif
|
|
2591 TIME_MSG("--cmd commands");
|
|
2592 }
|
|
2593 }
|
|
2594
|
|
2595 /*
|
443
|
2596 * Execute "+", "-c" and "-S" arguments.
|
|
2597 */
|
|
2598 static void
|
|
2599 exe_commands(parmp)
|
|
2600 mparm_T *parmp;
|
|
2601 {
|
|
2602 int i;
|
|
2603
|
|
2604 /*
|
|
2605 * We start commands on line 0, make "vim +/pat file" match a
|
|
2606 * pattern on line 1. But don't move the cursor when an autocommand
|
|
2607 * with g`" was used.
|
|
2608 */
|
|
2609 msg_scroll = TRUE;
|
|
2610 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
|
|
2611 curwin->w_cursor.lnum = 0;
|
|
2612 sourcing_name = (char_u *)"command line";
|
|
2613 #ifdef FEAT_EVAL
|
|
2614 current_SID = SID_CARG;
|
|
2615 #endif
|
|
2616 for (i = 0; i < parmp->n_commands; ++i)
|
|
2617 {
|
|
2618 do_cmdline_cmd(parmp->commands[i]);
|
|
2619 if (parmp->cmds_tofree[i])
|
|
2620 vim_free(parmp->commands[i]);
|
|
2621 }
|
|
2622 sourcing_name = NULL;
|
|
2623 #ifdef FEAT_EVAL
|
|
2624 current_SID = 0;
|
|
2625 #endif
|
|
2626 if (curwin->w_cursor.lnum == 0)
|
|
2627 curwin->w_cursor.lnum = 1;
|
|
2628
|
|
2629 if (!exmode_active)
|
|
2630 msg_scroll = FALSE;
|
|
2631
|
|
2632 #ifdef FEAT_QUICKFIX
|
|
2633 /* When started with "-q errorfile" jump to first error again. */
|
|
2634 if (parmp->edit_type == EDIT_QF)
|
644
|
2635 qf_jump(NULL, 0, 0, FALSE);
|
443
|
2636 #endif
|
|
2637 TIME_MSG("executing command arguments");
|
|
2638 }
|
|
2639
|
|
2640 /*
|
440
|
2641 * Source startup scripts.
|
|
2642 */
|
|
2643 static void
|
|
2644 source_startup_scripts(parmp)
|
|
2645 mparm_T *parmp;
|
|
2646 {
|
|
2647 int i;
|
|
2648
|
|
2649 /*
|
|
2650 * For "evim" source evim.vim first of all, so that the user can overrule
|
|
2651 * any things he doesn't like.
|
|
2652 */
|
|
2653 if (parmp->evim_mode)
|
|
2654 {
|
819
|
2655 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE);
|
440
|
2656 TIME_MSG("source evim file");
|
|
2657 }
|
|
2658
|
|
2659 /*
|
443
|
2660 * If -u argument given, use only the initializations from that file and
|
440
|
2661 * nothing else.
|
|
2662 */
|
|
2663 if (parmp->use_vimrc != NULL)
|
|
2664 {
|
445
|
2665 if (STRCMP(parmp->use_vimrc, "NONE") == 0
|
|
2666 || STRCMP(parmp->use_vimrc, "NORC") == 0)
|
440
|
2667 {
|
|
2668 #ifdef FEAT_GUI
|
|
2669 if (use_gvimrc == NULL) /* don't load gvimrc either */
|
|
2670 use_gvimrc = parmp->use_vimrc;
|
|
2671 #endif
|
|
2672 if (parmp->use_vimrc[2] == 'N')
|
|
2673 p_lpl = FALSE; /* don't load plugins either */
|
|
2674 }
|
|
2675 else
|
|
2676 {
|
819
|
2677 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK)
|
440
|
2678 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
|
|
2679 }
|
|
2680 }
|
|
2681 else if (!silent_mode)
|
|
2682 {
|
|
2683 #ifdef AMIGA
|
|
2684 struct Process *proc = (struct Process *)FindTask(0L);
|
|
2685 APTR save_winptr = proc->pr_WindowPtr;
|
|
2686
|
|
2687 /* Avoid a requester here for a volume that doesn't exist. */
|
|
2688 proc->pr_WindowPtr = (APTR)-1L;
|
|
2689 #endif
|
|
2690
|
|
2691 /*
|
|
2692 * Get system wide defaults, if the file name is defined.
|
|
2693 */
|
|
2694 #ifdef SYS_VIMRC_FILE
|
819
|
2695 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE);
|
440
|
2696 #endif
|
720
|
2697 #ifdef MACOS_X
|
819
|
2698 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE);
|
720
|
2699 #endif
|
440
|
2700
|
|
2701 /*
|
|
2702 * Try to read initialization commands from the following places:
|
|
2703 * - environment variable VIMINIT
|
|
2704 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise)
|
|
2705 * - second user vimrc file ($VIM/.vimrc for Dos)
|
|
2706 * - environment variable EXINIT
|
|
2707 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise)
|
|
2708 * - second user exrc file ($VIM/.exrc for Dos)
|
|
2709 * The first that exists is used, the rest is ignored.
|
|
2710 */
|
|
2711 if (process_env((char_u *)"VIMINIT", TRUE) != OK)
|
|
2712 {
|
819
|
2713 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL
|
440
|
2714 #ifdef USR_VIMRC_FILE2
|
819
|
2715 && do_source((char_u *)USR_VIMRC_FILE2, TRUE,
|
|
2716 DOSO_VIMRC) == FAIL
|
440
|
2717 #endif
|
|
2718 #ifdef USR_VIMRC_FILE3
|
819
|
2719 && do_source((char_u *)USR_VIMRC_FILE3, TRUE,
|
|
2720 DOSO_VIMRC) == FAIL
|
440
|
2721 #endif
|
|
2722 && process_env((char_u *)"EXINIT", FALSE) == FAIL
|
819
|
2723 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL)
|
440
|
2724 {
|
|
2725 #ifdef USR_EXRC_FILE2
|
819
|
2726 (void)do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE);
|
440
|
2727 #endif
|
|
2728 }
|
|
2729 }
|
|
2730
|
|
2731 /*
|
|
2732 * Read initialization commands from ".vimrc" or ".exrc" in current
|
|
2733 * directory. This is only done if the 'exrc' option is set.
|
|
2734 * Because of security reasons we disallow shell and write commands
|
|
2735 * now, except for unix if the file is owned by the user or 'secure'
|
|
2736 * option has been reset in environment of global ".exrc" or ".vimrc".
|
|
2737 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or
|
|
2738 * SYS_VIMRC_FILE.
|
|
2739 */
|
|
2740 if (p_exrc)
|
|
2741 {
|
|
2742 #if defined(UNIX) || defined(VMS)
|
|
2743 /* If ".vimrc" file is not owned by user, set 'secure' mode. */
|
|
2744 if (!file_owned(VIMRC_FILE))
|
|
2745 #endif
|
|
2746 secure = p_secure;
|
|
2747
|
|
2748 i = FAIL;
|
|
2749 if (fullpathcmp((char_u *)USR_VIMRC_FILE,
|
|
2750 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
|
|
2751 #ifdef USR_VIMRC_FILE2
|
|
2752 && fullpathcmp((char_u *)USR_VIMRC_FILE2,
|
|
2753 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
|
|
2754 #endif
|
|
2755 #ifdef USR_VIMRC_FILE3
|
|
2756 && fullpathcmp((char_u *)USR_VIMRC_FILE3,
|
|
2757 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
|
|
2758 #endif
|
|
2759 #ifdef SYS_VIMRC_FILE
|
|
2760 && fullpathcmp((char_u *)SYS_VIMRC_FILE,
|
|
2761 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME
|
|
2762 #endif
|
|
2763 )
|
819
|
2764 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC);
|
440
|
2765
|
|
2766 if (i == FAIL)
|
|
2767 {
|
|
2768 #if defined(UNIX) || defined(VMS)
|
|
2769 /* if ".exrc" is not owned by user set 'secure' mode */
|
|
2770 if (!file_owned(EXRC_FILE))
|
|
2771 secure = p_secure;
|
|
2772 else
|
|
2773 secure = 0;
|
|
2774 #endif
|
|
2775 if ( fullpathcmp((char_u *)USR_EXRC_FILE,
|
|
2776 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
|
|
2777 #ifdef USR_EXRC_FILE2
|
|
2778 && fullpathcmp((char_u *)USR_EXRC_FILE2,
|
|
2779 (char_u *)EXRC_FILE, FALSE) != FPC_SAME
|
|
2780 #endif
|
|
2781 )
|
819
|
2782 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE);
|
440
|
2783 }
|
|
2784 }
|
|
2785 if (secure == 2)
|
|
2786 need_wait_return = TRUE;
|
|
2787 secure = 0;
|
|
2788 #ifdef AMIGA
|
|
2789 proc->pr_WindowPtr = save_winptr;
|
|
2790 #endif
|
|
2791 }
|
|
2792 TIME_MSG("sourcing vimrc file(s)");
|
|
2793 }
|
|
2794
|
|
2795 /*
|
6
|
2796 * Setup to start using the GUI. Exit with an error when not available.
|
|
2797 */
|
|
2798 static void
|
|
2799 main_start_gui()
|
|
2800 {
|
|
2801 #ifdef FEAT_GUI
|
|
2802 gui.starting = TRUE; /* start GUI a bit later */
|
|
2803 #else
|
|
2804 mch_errmsg(_(e_nogvim));
|
|
2805 mch_errmsg("\n");
|
|
2806 mch_exit(2);
|
|
2807 #endif
|
|
2808 }
|
|
2809
|
|
2810 /*
|
|
2811 * Get an evironment variable, and execute it as Ex commands.
|
|
2812 * Returns FAIL if the environment variable was not executed, OK otherwise.
|
|
2813 */
|
|
2814 int
|
|
2815 process_env(env, is_viminit)
|
|
2816 char_u *env;
|
|
2817 int is_viminit; /* when TRUE, called for VIMINIT */
|
|
2818 {
|
|
2819 char_u *initstr;
|
|
2820 char_u *save_sourcing_name;
|
|
2821 linenr_T save_sourcing_lnum;
|
|
2822 #ifdef FEAT_EVAL
|
|
2823 scid_T save_sid;
|
|
2824 #endif
|
|
2825
|
|
2826 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL)
|
|
2827 {
|
|
2828 if (is_viminit)
|
819
|
2829 vimrc_found(NULL, NULL);
|
6
|
2830 save_sourcing_name = sourcing_name;
|
|
2831 save_sourcing_lnum = sourcing_lnum;
|
|
2832 sourcing_name = env;
|
|
2833 sourcing_lnum = 0;
|
|
2834 #ifdef FEAT_EVAL
|
|
2835 save_sid = current_SID;
|
|
2836 current_SID = SID_ENV;
|
|
2837 #endif
|
|
2838 do_cmdline_cmd(initstr);
|
|
2839 sourcing_name = save_sourcing_name;
|
|
2840 sourcing_lnum = save_sourcing_lnum;
|
|
2841 #ifdef FEAT_EVAL
|
|
2842 current_SID = save_sid;;
|
|
2843 #endif
|
|
2844 return OK;
|
|
2845 }
|
|
2846 return FAIL;
|
|
2847 }
|
|
2848
|
|
2849 #if defined(UNIX) || defined(VMS)
|
|
2850 /*
|
|
2851 * Return TRUE if we are certain the user owns the file "fname".
|
|
2852 * Used for ".vimrc" and ".exrc".
|
|
2853 * Use both stat() and lstat() for extra security.
|
|
2854 */
|
|
2855 static int
|
|
2856 file_owned(fname)
|
|
2857 char *fname;
|
|
2858 {
|
|
2859 struct stat s;
|
|
2860 # ifdef UNIX
|
|
2861 uid_t uid = getuid();
|
|
2862 # else /* VMS */
|
|
2863 uid_t uid = ((getgid() << 16) | getuid());
|
|
2864 # endif
|
|
2865
|
|
2866 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid
|
|
2867 # ifdef HAVE_LSTAT
|
|
2868 || mch_lstat(fname, &s) != 0 || s.st_uid != uid
|
|
2869 # endif
|
|
2870 );
|
|
2871 }
|
|
2872 #endif
|
|
2873
|
|
2874 /*
|
|
2875 * Give an error message main_errors["n"] and exit.
|
|
2876 */
|
|
2877 static void
|
|
2878 mainerr(n, str)
|
|
2879 int n; /* one of the ME_ defines */
|
|
2880 char_u *str; /* extra argument or NULL */
|
|
2881 {
|
|
2882 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
|
|
2883 reset_signals(); /* kill us with CTRL-C here, if you like */
|
|
2884 #endif
|
|
2885
|
|
2886 mch_errmsg(longVersion);
|
159
|
2887 mch_errmsg("\n");
|
6
|
2888 mch_errmsg(_(main_errors[n]));
|
|
2889 if (str != NULL)
|
|
2890 {
|
|
2891 mch_errmsg(": \"");
|
|
2892 mch_errmsg((char *)str);
|
|
2893 mch_errmsg("\"");
|
|
2894 }
|
159
|
2895 mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
|
6
|
2896
|
|
2897 mch_exit(1);
|
|
2898 }
|
|
2899
|
|
2900 void
|
|
2901 mainerr_arg_missing(str)
|
|
2902 char_u *str;
|
|
2903 {
|
|
2904 mainerr(ME_ARG_MISSING, str);
|
|
2905 }
|
|
2906
|
|
2907 /*
|
|
2908 * print a message with three spaces prepended and '\n' appended.
|
|
2909 */
|
|
2910 static void
|
|
2911 main_msg(s)
|
|
2912 char *s;
|
|
2913 {
|
|
2914 mch_msg(" ");
|
|
2915 mch_msg(s);
|
|
2916 mch_msg("\n");
|
|
2917 }
|
|
2918
|
|
2919 /*
|
|
2920 * Print messages for "vim -h" or "vim --help" and exit.
|
|
2921 */
|
|
2922 static void
|
|
2923 usage()
|
|
2924 {
|
|
2925 int i;
|
|
2926 static char *(use[]) =
|
|
2927 {
|
|
2928 N_("[file ..] edit specified file(s)"),
|
|
2929 N_("- read text from stdin"),
|
|
2930 N_("-t tag edit file where tag is defined"),
|
|
2931 #ifdef FEAT_QUICKFIX
|
|
2932 N_("-q [errorfile] edit file with first error")
|
|
2933 #endif
|
|
2934 };
|
|
2935
|
|
2936 #if defined(UNIX) || defined(__EMX__) || defined(VMS)
|
|
2937 reset_signals(); /* kill us with CTRL-C here, if you like */
|
|
2938 #endif
|
|
2939
|
|
2940 mch_msg(longVersion);
|
|
2941 mch_msg(_("\n\nusage:"));
|
|
2942 for (i = 0; ; ++i)
|
|
2943 {
|
|
2944 mch_msg(_(" vim [arguments] "));
|
|
2945 mch_msg(_(use[i]));
|
|
2946 if (i == (sizeof(use) / sizeof(char_u *)) - 1)
|
|
2947 break;
|
|
2948 mch_msg(_("\n or:"));
|
|
2949 }
|
22
|
2950 #ifdef VMS
|
|
2951 mch_msg(_("where case is ignored prepend / to make flag upper case"));
|
|
2952 #endif
|
6
|
2953
|
|
2954 mch_msg(_("\n\nArguments:\n"));
|
|
2955 main_msg(_("--\t\t\tOnly file names after this"));
|
|
2956 #if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
|
|
2957 main_msg(_("--literal\t\tDon't expand wildcards"));
|
|
2958 #endif
|
|
2959 #ifdef FEAT_OLE
|
|
2960 main_msg(_("-register\t\tRegister this gvim for OLE"));
|
|
2961 main_msg(_("-unregister\t\tUnregister gvim for OLE"));
|
|
2962 #endif
|
|
2963 #ifdef FEAT_GUI
|
|
2964 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")"));
|
|
2965 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI"));
|
|
2966 #endif
|
|
2967 main_msg(_("-v\t\t\tVi mode (like \"vi\")"));
|
|
2968 main_msg(_("-e\t\t\tEx mode (like \"ex\")"));
|
|
2969 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")"));
|
|
2970 #ifdef FEAT_DIFF
|
|
2971 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")"));
|
|
2972 #endif
|
|
2973 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)"));
|
|
2974 main_msg(_("-R\t\t\tReadonly mode (like \"view\")"));
|
|
2975 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")"));
|
|
2976 main_msg(_("-m\t\t\tModifications (writing files) not allowed"));
|
|
2977 main_msg(_("-M\t\t\tModifications in text not allowed"));
|
|
2978 main_msg(_("-b\t\t\tBinary mode"));
|
|
2979 #ifdef FEAT_LISP
|
|
2980 main_msg(_("-l\t\t\tLisp mode"));
|
|
2981 #endif
|
|
2982 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'"));
|
|
2983 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'"));
|
|
2984 main_msg(_("-V[N]\t\tVerbose level"));
|
|
2985 main_msg(_("-D\t\t\tDebugging mode"));
|
|
2986 main_msg(_("-n\t\t\tNo swap file, use memory only"));
|
|
2987 main_msg(_("-r\t\t\tList swap files and exit"));
|
|
2988 main_msg(_("-r (with file name)\tRecover crashed session"));
|
|
2989 main_msg(_("-L\t\t\tSame as -r"));
|
|
2990 #ifdef AMIGA
|
|
2991 main_msg(_("-f\t\t\tDon't use newcli to open window"));
|
|
2992 main_msg(_("-dev <device>\t\tUse <device> for I/O"));
|
|
2993 #endif
|
|
2994 #ifdef FEAT_ARABIC
|
|
2995 main_msg(_("-A\t\t\tstart in Arabic mode"));
|
|
2996 #endif
|
|
2997 #ifdef FEAT_RIGHTLEFT
|
|
2998 main_msg(_("-H\t\t\tStart in Hebrew mode"));
|
|
2999 #endif
|
|
3000 #ifdef FEAT_FKMAP
|
|
3001 main_msg(_("-F\t\t\tStart in Farsi mode"));
|
|
3002 #endif
|
|
3003 main_msg(_("-T <terminal>\tSet terminal type to <terminal>"));
|
|
3004 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc"));
|
|
3005 #ifdef FEAT_GUI
|
|
3006 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc"));
|
|
3007 #endif
|
|
3008 main_msg(_("--noplugin\t\tDon't load plugin scripts"));
|
673
|
3009 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)"));
|
6
|
3010 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)"));
|
|
3011 main_msg(_("-O[N]\t\tLike -o but split vertically"));
|
|
3012 main_msg(_("+\t\t\tStart at end of file"));
|
|
3013 main_msg(_("+<lnum>\t\tStart at line <lnum>"));
|
|
3014 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file"));
|
|
3015 main_msg(_("-c <command>\t\tExecute <command> after loading the first file"));
|
|
3016 main_msg(_("-S <session>\t\tSource file <session> after loading the first file"));
|
|
3017 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>"));
|
|
3018 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>"));
|
|
3019 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>"));
|
|
3020 #ifdef FEAT_CRYPT
|
|
3021 main_msg(_("-x\t\t\tEdit encrypted files"));
|
|
3022 #endif
|
|
3023 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
|
|
3024 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
|
|
3025 main_msg(_("-display <display>\tConnect vim to this particular X-server"));
|
|
3026 # endif
|
|
3027 main_msg(_("-X\t\t\tDo not connect to X server"));
|
|
3028 #endif
|
|
3029 #ifdef FEAT_CLIENTSERVER
|
|
3030 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible"));
|
|
3031 main_msg(_("--remote-silent <files> Same, don't complain if there is no server"));
|
|
3032 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited"));
|
|
3033 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server"));
|
754
|
3034 # ifdef FEAT_WINDOWS
|
|
3035 main_msg(_("--remote-tab <files> As --remote but open tab page for each file"));
|
|
3036 # endif
|
6
|
3037 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit"));
|
|
3038 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result"));
|
|
3039 main_msg(_("--serverlist\t\tList available Vim server names and exit"));
|
|
3040 main_msg(_("--servername <name>\tSend to/become the Vim server <name>"));
|
|
3041 #endif
|
|
3042 #ifdef FEAT_VIMINFO
|
|
3043 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo"));
|
|
3044 #endif
|
|
3045 main_msg(_("-h or --help\tPrint Help (this message) and exit"));
|
|
3046 main_msg(_("--version\t\tPrint version information and exit"));
|
|
3047
|
|
3048 #ifdef FEAT_GUI_X11
|
|
3049 # ifdef FEAT_GUI_MOTIF
|
|
3050 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
|
|
3051 # else
|
|
3052 # ifdef FEAT_GUI_ATHENA
|
|
3053 # ifdef FEAT_GUI_NEXTAW
|
|
3054 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
|
|
3055 # else
|
|
3056 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
|
|
3057 # endif
|
|
3058 # endif
|
|
3059 # endif
|
|
3060 main_msg(_("-display <display>\tRun vim on <display>"));
|
|
3061 main_msg(_("-iconic\t\tStart vim iconified"));
|
|
3062 # if 0
|
|
3063 main_msg(_("-name <name>\t\tUse resource as if vim was <name>"));
|
|
3064 mch_msg(_("\t\t\t (Unimplemented)\n"));
|
|
3065 # endif
|
|
3066 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
|
|
3067 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
|
|
3068 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
|
|
3069 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
|
|
3070 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
|
|
3071 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
|
|
3072 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
|
|
3073 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
|
|
3074 # ifdef FEAT_GUI_ATHENA
|
|
3075 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
|
|
3076 # endif
|
|
3077 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
|
|
3078 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
|
|
3079 main_msg(_("-xrm <resource>\tSet the specified resource"));
|
|
3080 #endif /* FEAT_GUI_X11 */
|
|
3081 #if defined(FEAT_GUI) && defined(RISCOS)
|
|
3082 mch_msg(_("\nArguments recognised by gvim (RISC OS version):\n"));
|
|
3083 main_msg(_("--columns <number>\tInitial width of window in columns"));
|
|
3084 main_msg(_("--rows <number>\tInitial height of window in rows"));
|
|
3085 #endif
|
|
3086 #ifdef FEAT_GUI_GTK
|
|
3087 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n"));
|
|
3088 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)"));
|
|
3089 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
|
|
3090 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
|
|
3091 main_msg(_("-display <display>\tRun vim on <display> (also: --display)"));
|
|
3092 # ifdef HAVE_GTK2
|
|
3093 main_msg(_("--role <role>\tSet a unique role to identify the main window"));
|
|
3094 # endif
|
|
3095 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget"));
|
|
3096 #endif
|
|
3097 #ifdef FEAT_GUI_W32
|
|
3098 main_msg(_("-P <parent title>\tOpen Vim inside parent application"));
|
|
3099 #endif
|
|
3100
|
|
3101 #ifdef FEAT_GUI_GNOME
|
|
3102 /* Gnome gives extra messages for --help if we continue, but not for -h. */
|
|
3103 if (gui.starting)
|
|
3104 mch_msg("\n");
|
|
3105 else
|
|
3106 #endif
|
|
3107 mch_exit(0);
|
|
3108 }
|
|
3109
|
580
|
3110 #if defined(HAS_SWAP_EXISTS_ACTION)
|
6
|
3111 /*
|
|
3112 * Check the result of the ATTENTION dialog:
|
|
3113 * When "Quit" selected, exit Vim.
|
|
3114 * When "Recover" selected, recover the file.
|
|
3115 */
|
|
3116 static void
|
|
3117 check_swap_exists_action()
|
|
3118 {
|
|
3119 if (swap_exists_action == SEA_QUIT)
|
|
3120 getout(1);
|
|
3121 handle_swap_exists(NULL);
|
|
3122 }
|
|
3123 #endif
|
|
3124
|
|
3125 #if defined(STARTUPTIME) || defined(PROTO)
|
|
3126 static void time_diff __ARGS((struct timeval *then, struct timeval *now));
|
|
3127
|
|
3128 static struct timeval prev_timeval;
|
|
3129
|
|
3130 /*
|
|
3131 * Save the previous time before doing something that could nest.
|
|
3132 * set "*tv_rel" to the time elapsed so far.
|
|
3133 */
|
|
3134 void
|
|
3135 time_push(tv_rel, tv_start)
|
|
3136 void *tv_rel, *tv_start;
|
|
3137 {
|
|
3138 *((struct timeval *)tv_rel) = prev_timeval;
|
|
3139 gettimeofday(&prev_timeval, NULL);
|
|
3140 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
|
|
3141 - ((struct timeval *)tv_rel)->tv_usec;
|
|
3142 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
|
|
3143 - ((struct timeval *)tv_rel)->tv_sec;
|
|
3144 if (((struct timeval *)tv_rel)->tv_usec < 0)
|
|
3145 {
|
|
3146 ((struct timeval *)tv_rel)->tv_usec += 1000000;
|
|
3147 --((struct timeval *)tv_rel)->tv_sec;
|
|
3148 }
|
|
3149 *(struct timeval *)tv_start = prev_timeval;
|
|
3150 }
|
|
3151
|
|
3152 /*
|
|
3153 * Compute the previous time after doing something that could nest.
|
|
3154 * Subtract "*tp" from prev_timeval;
|
|
3155 * Note: The arguments are (void *) to avoid trouble with systems that don't
|
|
3156 * have struct timeval.
|
|
3157 */
|
|
3158 void
|
|
3159 time_pop(tp)
|
|
3160 void *tp; /* actually (struct timeval *) */
|
|
3161 {
|
|
3162 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
|
|
3163 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
|
|
3164 if (prev_timeval.tv_usec < 0)
|
|
3165 {
|
|
3166 prev_timeval.tv_usec += 1000000;
|
|
3167 --prev_timeval.tv_sec;
|
|
3168 }
|
|
3169 }
|
|
3170
|
|
3171 static void
|
|
3172 time_diff(then, now)
|
|
3173 struct timeval *then;
|
|
3174 struct timeval *now;
|
|
3175 {
|
|
3176 long usec;
|
|
3177 long msec;
|
|
3178
|
|
3179 usec = now->tv_usec - then->tv_usec;
|
|
3180 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
|
|
3181 usec = usec % 1000L;
|
|
3182 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
|
|
3183 }
|
|
3184
|
|
3185 void
|
|
3186 time_msg(msg, tv_start)
|
|
3187 char *msg;
|
|
3188 void *tv_start; /* only for do_source: start time; actually
|
|
3189 (struct timeval *) */
|
|
3190 {
|
|
3191 static struct timeval start;
|
|
3192 struct timeval now;
|
|
3193
|
|
3194 if (time_fd != NULL)
|
|
3195 {
|
|
3196 if (strstr(msg, "STARTING") != NULL)
|
|
3197 {
|
|
3198 gettimeofday(&start, NULL);
|
|
3199 prev_timeval = start;
|
|
3200 fprintf(time_fd, "\n\ntimes in msec\n");
|
|
3201 fprintf(time_fd, " clock self+sourced self: sourced script\n");
|
|
3202 fprintf(time_fd, " clock elapsed: other lines\n\n");
|
|
3203 }
|
|
3204 gettimeofday(&now, NULL);
|
|
3205 time_diff(&start, &now);
|
|
3206 if (((struct timeval *)tv_start) != NULL)
|
|
3207 {
|
|
3208 fprintf(time_fd, " ");
|
|
3209 time_diff(((struct timeval *)tv_start), &now);
|
|
3210 }
|
|
3211 fprintf(time_fd, " ");
|
|
3212 time_diff(&prev_timeval, &now);
|
|
3213 prev_timeval = now;
|
|
3214 fprintf(time_fd, ": %s\n", msg);
|
|
3215 }
|
|
3216 }
|
|
3217
|
|
3218 # ifdef WIN3264
|
|
3219 /*
|
|
3220 * Windows doesn't have gettimeofday(), although it does have struct timeval.
|
|
3221 */
|
|
3222 int
|
|
3223 gettimeofday(struct timeval *tv, char *dummy)
|
|
3224 {
|
|
3225 long t = clock();
|
|
3226 tv->tv_sec = t / CLOCKS_PER_SEC;
|
|
3227 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
|
|
3228 return 0;
|
|
3229 }
|
|
3230 # endif
|
|
3231
|
|
3232 #endif
|
|
3233
|
|
3234 #if defined(FEAT_CLIENTSERVER) || defined(PROTO)
|
|
3235
|
|
3236 /*
|
|
3237 * Common code for the X command server and the Win32 command server.
|
|
3238 */
|
|
3239
|
734
|
3240 static char_u *build_drop_cmd __ARGS((int filec, char **filev, int tabs, int sendReply));
|
6
|
3241
|
443
|
3242 /*
|
|
3243 * Do the client-server stuff, unless "--servername ''" was used.
|
|
3244 */
|
|
3245 static void
|
|
3246 exec_on_server(parmp)
|
|
3247 mparm_T *parmp;
|
|
3248 {
|
|
3249 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
|
|
3250 {
|
|
3251 # ifdef WIN32
|
|
3252 /* Initialise the client/server messaging infrastructure. */
|
|
3253 serverInitMessaging();
|
|
3254 # endif
|
|
3255
|
|
3256 /*
|
|
3257 * When a command server argument was found, execute it. This may
|
|
3258 * exit Vim when it was successful. Otherwise it's executed further
|
|
3259 * on. Remember the encoding used here in "serverStrEnc".
|
|
3260 */
|
|
3261 if (parmp->serverArg)
|
|
3262 {
|
|
3263 cmdsrv_main(&parmp->argc, parmp->argv,
|
|
3264 parmp->serverName_arg, &parmp->serverStr);
|
|
3265 # ifdef FEAT_MBYTE
|
|
3266 parmp->serverStrEnc = vim_strsave(p_enc);
|
|
3267 # endif
|
|
3268 }
|
|
3269
|
|
3270 /* If we're still running, get the name to register ourselves.
|
|
3271 * On Win32 can register right now, for X11 need to setup the
|
|
3272 * clipboard first, it's further down. */
|
|
3273 parmp->servername = serverMakeName(parmp->serverName_arg,
|
|
3274 parmp->argv[0]);
|
|
3275 # ifdef WIN32
|
|
3276 if (parmp->servername != NULL)
|
|
3277 {
|
|
3278 serverSetName(parmp->servername);
|
|
3279 vim_free(parmp->servername);
|
|
3280 }
|
|
3281 # endif
|
|
3282 }
|
|
3283 }
|
|
3284
|
|
3285 /*
|
|
3286 * Prepare for running as a Vim server.
|
|
3287 */
|
|
3288 static void
|
|
3289 prepare_server(parmp)
|
|
3290 mparm_T *parmp;
|
|
3291 {
|
|
3292 # if defined(FEAT_X11)
|
|
3293 /*
|
|
3294 * Register for remote command execution with :serversend and --remote
|
|
3295 * unless there was a -X or a --servername '' on the command line.
|
|
3296 * Only register nongui-vim's with an explicit --servername argument.
|
926
|
3297 * When running as root --servername is also required.
|
443
|
3298 */
|
|
3299 if (X_DISPLAY != NULL && parmp->servername != NULL && (
|
|
3300 # ifdef FEAT_GUI
|
926
|
3301 (gui.in_use
|
|
3302 # ifdef UNIX
|
1076
|
3303 && getuid() != ROOT_UID
|
926
|
3304 # endif
|
|
3305 ) ||
|
443
|
3306 # endif
|
|
3307 parmp->serverName_arg != NULL))
|
|
3308 {
|
|
3309 (void)serverRegisterName(X_DISPLAY, parmp->servername);
|
|
3310 vim_free(parmp->servername);
|
|
3311 TIME_MSG("register server name");
|
|
3312 }
|
|
3313 else
|
|
3314 serverDelayedStartName = parmp->servername;
|
|
3315 # endif
|
|
3316
|
|
3317 /*
|
|
3318 * Execute command ourselves if we're here because the send failed (or
|
|
3319 * else we would have exited above).
|
|
3320 */
|
|
3321 if (parmp->serverStr != NULL)
|
|
3322 {
|
|
3323 char_u *p;
|
|
3324
|
|
3325 server_to_input_buf(serverConvert(parmp->serverStrEnc,
|
|
3326 parmp->serverStr, &p));
|
|
3327 vim_free(p);
|
|
3328 }
|
|
3329 }
|
|
3330
|
6
|
3331 static void
|
|
3332 cmdsrv_main(argc, argv, serverName_arg, serverStr)
|
|
3333 int *argc;
|
|
3334 char **argv;
|
|
3335 char_u *serverName_arg;
|
|
3336 char_u **serverStr;
|
|
3337 {
|
|
3338 char_u *res;
|
|
3339 int i;
|
|
3340 char_u *sname;
|
|
3341 int ret;
|
|
3342 int didone = FALSE;
|
|
3343 int exiterr = 0;
|
|
3344 char **newArgV = argv + 1;
|
|
3345 int newArgC = 1,
|
|
3346 Argc = *argc;
|
|
3347 int argtype;
|
|
3348 #define ARGTYPE_OTHER 0
|
|
3349 #define ARGTYPE_EDIT 1
|
|
3350 #define ARGTYPE_EDIT_WAIT 2
|
|
3351 #define ARGTYPE_SEND 3
|
|
3352 int silent = FALSE;
|
734
|
3353 int tabs = FALSE;
|
6
|
3354 # ifndef FEAT_X11
|
|
3355 HWND srv;
|
|
3356 # else
|
|
3357 Window srv;
|
|
3358
|
|
3359 setup_term_clip();
|
|
3360 # endif
|
|
3361
|
|
3362 sname = serverMakeName(serverName_arg, argv[0]);
|
|
3363 if (sname == NULL)
|
|
3364 return;
|
|
3365
|
|
3366 /*
|
|
3367 * Execute the command server related arguments and remove them
|
|
3368 * from the argc/argv array; We may have to return into main()
|
|
3369 */
|
|
3370 for (i = 1; i < Argc; i++)
|
|
3371 {
|
|
3372 res = NULL;
|
443
|
3373 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */
|
6
|
3374 {
|
|
3375 for (; i < *argc; i++)
|
|
3376 {
|
|
3377 *newArgV++ = argv[i];
|
|
3378 newArgC++;
|
|
3379 }
|
|
3380 break;
|
|
3381 }
|
|
3382
|
734
|
3383 if (STRICMP(argv[i], "--remote-send") == 0)
|
|
3384 argtype = ARGTYPE_SEND;
|
|
3385 else if (STRNICMP(argv[i], "--remote", 8) == 0)
|
|
3386 {
|
|
3387 char *p = argv[i] + 8;
|
|
3388
|
6
|
3389 argtype = ARGTYPE_EDIT;
|
734
|
3390 while (*p != NUL)
|
|
3391 {
|
|
3392 if (STRNICMP(p, "-wait", 5) == 0)
|
|
3393 {
|
|
3394 argtype = ARGTYPE_EDIT_WAIT;
|
|
3395 p += 5;
|
|
3396 }
|
|
3397 else if (STRNICMP(p, "-silent", 7) == 0)
|
|
3398 {
|
|
3399 silent = TRUE;
|
|
3400 p += 7;
|
|
3401 }
|
|
3402 else if (STRNICMP(p, "-tab", 4) == 0)
|
|
3403 {
|
|
3404 tabs = TRUE;
|
|
3405 p += 4;
|
|
3406 }
|
|
3407 else
|
|
3408 {
|
|
3409 argtype = ARGTYPE_OTHER;
|
|
3410 break;
|
|
3411 }
|
|
3412 }
|
6
|
3413 }
|
|
3414 else
|
|
3415 argtype = ARGTYPE_OTHER;
|
734
|
3416
|
6
|
3417 if (argtype != ARGTYPE_OTHER)
|
|
3418 {
|
|
3419 if (i == *argc - 1)
|
|
3420 mainerr_arg_missing((char_u *)argv[i]);
|
|
3421 if (argtype == ARGTYPE_SEND)
|
|
3422 {
|
|
3423 *serverStr = (char_u *)argv[i + 1];
|
|
3424 i++;
|
|
3425 }
|
|
3426 else
|
|
3427 {
|
|
3428 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1,
|
734
|
3429 tabs, argtype == ARGTYPE_EDIT_WAIT);
|
6
|
3430 if (*serverStr == NULL)
|
|
3431 {
|
|
3432 /* Probably out of memory, exit. */
|
|
3433 didone = TRUE;
|
|
3434 exiterr = 1;
|
|
3435 break;
|
|
3436 }
|
|
3437 Argc = i;
|
|
3438 }
|
|
3439 # ifdef FEAT_X11
|
|
3440 if (xterm_dpy == NULL)
|
|
3441 {
|
|
3442 mch_errmsg(_("No display"));
|
|
3443 ret = -1;
|
|
3444 }
|
|
3445 else
|
|
3446 ret = serverSendToVim(xterm_dpy, sname, *serverStr,
|
|
3447 NULL, &srv, 0, 0, silent);
|
|
3448 # else
|
|
3449 /* Win32 always works? */
|
|
3450 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, silent);
|
|
3451 # endif
|
|
3452 if (ret < 0)
|
|
3453 {
|
|
3454 if (argtype == ARGTYPE_SEND)
|
|
3455 {
|
|
3456 /* Failed to send, abort. */
|
|
3457 mch_errmsg(_(": Send failed.\n"));
|
|
3458 didone = TRUE;
|
|
3459 exiterr = 1;
|
|
3460 }
|
|
3461 else if (!silent)
|
|
3462 /* Let vim start normally. */
|
|
3463 mch_errmsg(_(": Send failed. Trying to execute locally\n"));
|
|
3464 break;
|
|
3465 }
|
|
3466
|
|
3467 # ifdef FEAT_GUI_W32
|
|
3468 /* Guess that when the server name starts with "g" it's a GUI
|
|
3469 * server, which we can bring to the foreground here.
|
|
3470 * Foreground() in the server doesn't work very well. */
|
|
3471 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
|
|
3472 SetForegroundWindow(srv);
|
|
3473 # endif
|
|
3474
|
|
3475 /*
|
|
3476 * For --remote-wait: Wait until the server did edit each
|
|
3477 * file. Also detect that the server no longer runs.
|
|
3478 */
|
|
3479 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT)
|
|
3480 {
|
|
3481 int numFiles = *argc - i - 1;
|
|
3482 int j;
|
|
3483 char_u *done = alloc(numFiles);
|
|
3484 char_u *p;
|
|
3485 # ifdef FEAT_GUI_W32
|
|
3486 NOTIFYICONDATA ni;
|
|
3487 int count = 0;
|
|
3488 extern HWND message_window;
|
|
3489 # endif
|
|
3490
|
|
3491 if (numFiles > 0 && argv[i + 1][0] == '+')
|
|
3492 /* Skip "+cmd" argument, don't wait for it to be edited. */
|
|
3493 --numFiles;
|
|
3494
|
|
3495 # ifdef FEAT_GUI_W32
|
|
3496 ni.cbSize = sizeof(ni);
|
|
3497 ni.hWnd = message_window;
|
|
3498 ni.uID = 0;
|
|
3499 ni.uFlags = NIF_ICON|NIF_TIP;
|
|
3500 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM");
|
|
3501 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles);
|
|
3502 Shell_NotifyIcon(NIM_ADD, &ni);
|
|
3503 # endif
|
|
3504
|
|
3505 /* Wait for all files to unload in remote */
|
|
3506 memset(done, 0, numFiles);
|
|
3507 while (memchr(done, 0, numFiles) != NULL)
|
|
3508 {
|
|
3509 # ifdef WIN32
|
|
3510 p = serverGetReply(srv, NULL, TRUE, TRUE);
|
|
3511 if (p == NULL)
|
|
3512 break;
|
|
3513 # else
|
|
3514 if (serverReadReply(xterm_dpy, srv, &p, TRUE) < 0)
|
|
3515 break;
|
|
3516 # endif
|
|
3517 j = atoi((char *)p);
|
|
3518 if (j >= 0 && j < numFiles)
|
|
3519 {
|
|
3520 # ifdef FEAT_GUI_W32
|
|
3521 ++count;
|
|
3522 sprintf(ni.szTip, _("%d of %d edited"),
|
|
3523 count, numFiles);
|
|
3524 Shell_NotifyIcon(NIM_MODIFY, &ni);
|
|
3525 # endif
|
|
3526 done[j] = 1;
|
|
3527 }
|
|
3528 }
|
|
3529 # ifdef FEAT_GUI_W32
|
|
3530 Shell_NotifyIcon(NIM_DELETE, &ni);
|
|
3531 # endif
|
|
3532 }
|
|
3533 }
|
|
3534 else if (STRICMP(argv[i], "--remote-expr") == 0)
|
|
3535 {
|
|
3536 if (i == *argc - 1)
|
|
3537 mainerr_arg_missing((char_u *)argv[i]);
|
|
3538 # ifdef WIN32
|
|
3539 /* Win32 always works? */
|
|
3540 if (serverSendToVim(sname, (char_u *)argv[i + 1],
|
|
3541 &res, NULL, 1, FALSE) < 0)
|
|
3542 # else
|
|
3543 if (xterm_dpy == NULL)
|
|
3544 mch_errmsg(_("No display: Send expression failed.\n"));
|
|
3545 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1],
|
|
3546 &res, NULL, 1, 1, FALSE) < 0)
|
|
3547 # endif
|
|
3548 {
|
|
3549 if (res != NULL && *res != NUL)
|
|
3550 {
|
|
3551 /* Output error from remote */
|
|
3552 mch_errmsg((char *)res);
|
|
3553 vim_free(res);
|
|
3554 res = NULL;
|
|
3555 }
|
|
3556 mch_errmsg(_(": Send expression failed.\n"));
|
|
3557 }
|
|
3558 }
|
|
3559 else if (STRICMP(argv[i], "--serverlist") == 0)
|
|
3560 {
|
|
3561 # ifdef WIN32
|
|
3562 /* Win32 always works? */
|
|
3563 res = serverGetVimNames();
|
|
3564 # else
|
|
3565 if (xterm_dpy != NULL)
|
|
3566 res = serverGetVimNames(xterm_dpy);
|
|
3567 # endif
|
|
3568 if (called_emsg)
|
|
3569 mch_errmsg("\n");
|
|
3570 }
|
|
3571 else if (STRICMP(argv[i], "--servername") == 0)
|
|
3572 {
|
|
3573 /* Alredy processed. Take it out of the command line */
|
|
3574 i++;
|
|
3575 continue;
|
|
3576 }
|
|
3577 else
|
|
3578 {
|
|
3579 *newArgV++ = argv[i];
|
|
3580 newArgC++;
|
|
3581 continue;
|
|
3582 }
|
|
3583 didone = TRUE;
|
|
3584 if (res != NULL && *res != NUL)
|
|
3585 {
|
|
3586 mch_msg((char *)res);
|
|
3587 if (res[STRLEN(res) - 1] != '\n')
|
|
3588 mch_msg("\n");
|
|
3589 }
|
|
3590 vim_free(res);
|
|
3591 }
|
|
3592
|
|
3593 if (didone)
|
|
3594 {
|
|
3595 display_errors(); /* display any collected messages */
|
|
3596 exit(exiterr); /* Mission accomplished - get out */
|
|
3597 }
|
|
3598
|
|
3599 /* Return back into main() */
|
|
3600 *argc = newArgC;
|
|
3601 vim_free(sname);
|
|
3602 }
|
|
3603
|
|
3604 /*
|
|
3605 * Build a ":drop" command to send to a Vim server.
|
|
3606 */
|
|
3607 static char_u *
|
734
|
3608 build_drop_cmd(filec, filev, tabs, sendReply)
|
6
|
3609 int filec;
|
|
3610 char **filev;
|
734
|
3611 int tabs; /* Use ":tab drop" instead of ":drop". */
|
6
|
3612 int sendReply;
|
|
3613 {
|
|
3614 garray_T ga;
|
|
3615 int i;
|
|
3616 char_u *inicmd = NULL;
|
|
3617 char_u *p;
|
|
3618 char_u cwd[MAXPATHL];
|
|
3619
|
|
3620 if (filec > 0 && filev[0][0] == '+')
|
|
3621 {
|
|
3622 inicmd = (char_u *)filev[0] + 1;
|
|
3623 filev++;
|
|
3624 filec--;
|
|
3625 }
|
|
3626 /* Check if we have at least one argument. */
|
|
3627 if (filec <= 0)
|
|
3628 mainerr_arg_missing((char_u *)filev[-1]);
|
|
3629 if (mch_dirname(cwd, MAXPATHL) != OK)
|
|
3630 return NULL;
|
16
|
3631 if ((p = vim_strsave_escaped_ext(cwd, PATH_ESC_CHARS, '\\', TRUE)) == NULL)
|
6
|
3632 return NULL;
|
|
3633 ga_init2(&ga, 1, 100);
|
|
3634 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd ");
|
|
3635 ga_concat(&ga, p);
|
734
|
3636 vim_free(p);
|
|
3637
|
6
|
3638 /* Call inputsave() so that a prompt for an encryption key works. */
|
734
|
3639 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|");
|
|
3640 if (tabs)
|
|
3641 ga_concat(&ga, (char_u *)"tab ");
|
|
3642 ga_concat(&ga, (char_u *)"drop");
|
6
|
3643 for (i = 0; i < filec; i++)
|
|
3644 {
|
|
3645 /* On Unix the shell has already expanded the wildcards, don't want to
|
40
|
3646 * do it again in the Vim server. On MS-Windows only escape
|
|
3647 * non-wildcard characters. */
|
6
|
3648 p = vim_strsave_escaped((char_u *)filev[i],
|
|
3649 #ifdef UNIX
|
|
3650 PATH_ESC_CHARS
|
|
3651 #else
|
40
|
3652 (char_u *)" \t%#"
|
6
|
3653 #endif
|
|
3654 );
|
|
3655 if (p == NULL)
|
|
3656 {
|
|
3657 vim_free(ga.ga_data);
|
|
3658 return NULL;
|
|
3659 }
|
|
3660 ga_concat(&ga, (char_u *)" ");
|
|
3661 ga_concat(&ga, p);
|
|
3662 vim_free(p);
|
|
3663 }
|
|
3664 /* The :drop commands goes to Insert mode when 'insertmode' is set, use
|
|
3665 * CTRL-\ CTRL-N again. */
|
|
3666 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
|
|
3667 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
|
|
3668 if (sendReply)
|
|
3669 ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
|
|
3670 ga_concat(&ga, (char_u *)"<CR>:");
|
|
3671 if (inicmd != NULL)
|
|
3672 {
|
|
3673 /* Can't use <CR> after "inicmd", because an "startinsert" would cause
|
|
3674 * the following commands to be inserted as text. Use a "|",
|
|
3675 * hopefully "inicmd" does allow this... */
|
|
3676 ga_concat(&ga, inicmd);
|
|
3677 ga_concat(&ga, (char_u *)"|");
|
|
3678 }
|
|
3679 /* Bring the window to the foreground, goto Insert mode when 'im' set and
|
|
3680 * clear command line. */
|
46
|
3681 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>");
|
6
|
3682 ga_append(&ga, NUL);
|
|
3683 return ga.ga_data;
|
|
3684 }
|
|
3685
|
|
3686 /*
|
|
3687 * Replace termcodes such as <CR> and insert as key presses if there is room.
|
|
3688 */
|
|
3689 void
|
|
3690 server_to_input_buf(str)
|
|
3691 char_u *str;
|
|
3692 {
|
|
3693 char_u *ptr = NULL;
|
|
3694 char_u *cpo_save = p_cpo;
|
|
3695
|
|
3696 /* Set 'cpoptions' the way we want it.
|
|
3697 * B set - backslashes are *not* treated specially
|
|
3698 * k set - keycodes are *not* reverse-engineered
|
|
3699 * < unset - <Key> sequences *are* interpreted
|
860
|
3700 * The last but one parameter of replace_termcodes() is TRUE so that the
|
|
3701 * <lt> sequence is recognised - needed for a real backslash.
|
6
|
3702 */
|
|
3703 p_cpo = (char_u *)"Bk";
|
860
|
3704 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
|
6
|
3705 p_cpo = cpo_save;
|
|
3706
|
|
3707 if (*ptr != NUL) /* trailing CTRL-V results in nothing */
|
|
3708 {
|
|
3709 /*
|
|
3710 * Add the string to the input stream.
|
|
3711 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes.
|
|
3712 *
|
|
3713 * First clear typed characters from the typeahead buffer, there could
|
|
3714 * be half a mapping there. Then append to the existing string, so
|
|
3715 * that multiple commands from a client are concatenated.
|
|
3716 */
|
|
3717 if (typebuf.tb_maplen < typebuf.tb_len)
|
|
3718 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen);
|
|
3719 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE);
|
|
3720
|
|
3721 /* Let input_available() know we inserted text in the typeahead
|
|
3722 * buffer. */
|
841
|
3723 typebuf_was_filled = TRUE;
|
6
|
3724 }
|
|
3725 vim_free((char_u *)ptr);
|
|
3726 }
|
|
3727
|
|
3728 /*
|
|
3729 * Evaluate an expression that the client sent to a string.
|
|
3730 * Handles disabling error messages and disables debugging, otherwise Vim
|
|
3731 * hangs, waiting for "cont" to be typed.
|
|
3732 */
|
|
3733 char_u *
|
|
3734 eval_client_expr_to_string(expr)
|
|
3735 char_u *expr;
|
|
3736 {
|
|
3737 char_u *res;
|
|
3738 int save_dbl = debug_break_level;
|
|
3739 int save_ro = redir_off;
|
|
3740
|
|
3741 debug_break_level = -1;
|
|
3742 redir_off = 0;
|
|
3743 ++emsg_skip;
|
|
3744
|
714
|
3745 res = eval_to_string(expr, NULL, TRUE);
|
6
|
3746
|
|
3747 debug_break_level = save_dbl;
|
|
3748 redir_off = save_ro;
|
|
3749 --emsg_skip;
|
|
3750
|
591
|
3751 /* A client can tell us to redraw, but not to display the cursor, so do
|
|
3752 * that here. */
|
|
3753 setcursor();
|
|
3754 out_flush();
|
|
3755 #ifdef FEAT_GUI
|
|
3756 if (gui.in_use)
|
|
3757 gui_update_cursor(FALSE, FALSE);
|
|
3758 #endif
|
|
3759
|
6
|
3760 return res;
|
|
3761 }
|
|
3762
|
39
|
3763 /*
|
|
3764 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and
|
|
3765 * return an allocated string. Otherwise return "data".
|
|
3766 * "*tofree" is set to the result when it needs to be freed later.
|
|
3767 */
|
|
3768 /*ARGSUSED*/
|
|
3769 char_u *
|
|
3770 serverConvert(client_enc, data, tofree)
|
|
3771 char_u *client_enc;
|
|
3772 char_u *data;
|
|
3773 char_u **tofree;
|
|
3774 {
|
|
3775 char_u *res = data;
|
|
3776
|
|
3777 *tofree = NULL;
|
|
3778 # ifdef FEAT_MBYTE
|
|
3779 if (client_enc != NULL && p_enc != NULL)
|
|
3780 {
|
|
3781 vimconv_T vimconv;
|
|
3782
|
|
3783 vimconv.vc_type = CONV_NONE;
|
|
3784 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL
|
|
3785 && vimconv.vc_type != CONV_NONE)
|
|
3786 {
|
|
3787 res = string_convert(&vimconv, data, NULL);
|
|
3788 if (res == NULL)
|
|
3789 res = data;
|
|
3790 else
|
|
3791 *tofree = res;
|
|
3792 }
|
|
3793 convert_setup(&vimconv, NULL, NULL);
|
|
3794 }
|
|
3795 # endif
|
|
3796 return res;
|
|
3797 }
|
|
3798
|
6
|
3799
|
|
3800 /*
|
|
3801 * Make our basic server name: use the specified "arg" if given, otherwise use
|
|
3802 * the tail of the command "cmd" we were started with.
|
|
3803 * Return the name in allocated memory. This doesn't include a serial number.
|
|
3804 */
|
|
3805 static char_u *
|
|
3806 serverMakeName(arg, cmd)
|
|
3807 char_u *arg;
|
|
3808 char *cmd;
|
|
3809 {
|
|
3810 char_u *p;
|
|
3811
|
|
3812 if (arg != NULL && *arg != NUL)
|
|
3813 p = vim_strsave_up(arg);
|
|
3814 else
|
|
3815 {
|
|
3816 p = vim_strsave_up(gettail((char_u *)cmd));
|
|
3817 /* Remove .exe or .bat from the name. */
|
|
3818 if (p != NULL && vim_strchr(p, '.') != NULL)
|
|
3819 *vim_strchr(p, '.') = NUL;
|
|
3820 }
|
|
3821 return p;
|
|
3822 }
|
|
3823 #endif /* FEAT_CLIENTSERVER */
|
|
3824
|
|
3825 /*
|
|
3826 * When FEAT_FKMAP is defined, also compile the Farsi source code.
|
|
3827 */
|
|
3828 #if defined(FEAT_FKMAP) || defined(PROTO)
|
|
3829 # include "farsi.c"
|
|
3830 #endif
|
|
3831
|
|
3832 /*
|
|
3833 * When FEAT_ARABIC is defined, also compile the Arabic source code.
|
|
3834 */
|
|
3835 #if defined(FEAT_ARABIC) || defined(PROTO)
|
|
3836 # include "arabic.c"
|
|
3837 #endif
|