Mercurial > vim
annotate src/main.c @ 14700:0a3b9ecf7cb8 v8.1.0362
patch 8.1.0362: cannot get the script line number when executing a function
commit https://github.com/vim/vim/commit/f29c1c6aa3f365c025890fab5fb9efbe88eb1761
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Sep 10 21:05:02 2018 +0200
patch 8.1.0362: cannot get the script line number when executing a function
Problem: Cannot get the script line number when executing a function.
Solution: Store the line number besides the script ID. (Ozaki Kiichi,
closes #3362) Also display the line number with ":verbose set".
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 10 Sep 2018 21:15:07 +0200 |
parents | 4f5a15867544 |
children | 193471015e1a |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9832
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
6 | 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 #define EXTERN | |
11 #include "vim.h" | |
12 | |
13 #ifdef __CYGWIN__ | |
14 # ifndef WIN32 | |
1657 | 15 # include <cygwin/version.h> |
16 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or | |
17 * cygwin_conv_path() */ | |
6 | 18 # endif |
19 # include <limits.h> | |
20 #endif | |
21 | |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
22 #if defined(WIN3264) && !defined(FEAT_GUI_W32) |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
23 # include "iscygpty.h" |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
24 #endif |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
25 |
443 | 26 /* Values for edit_type. */ |
27 #define EDIT_NONE 0 /* no edit type yet */ | |
28 #define EDIT_FILE 1 /* file name argument[s] given, use argument list */ | |
29 #define EDIT_STDIN 2 /* read file from stdin */ | |
30 #define EDIT_TAG 3 /* tag name argument given, use tagname */ | |
31 #define EDIT_QF 4 /* start in quickfix mode */ | |
32 | |
2730 | 33 #if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN) |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
34 static int file_owned(char *fname); |
6 | 35 #endif |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
36 static void mainerr(int, char_u *); |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
37 # if defined(HAVE_LOCALE_H) || defined(X_LOCALE) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
38 static void init_locale(void); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
39 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
40 static void early_arg_scan(mparm_T *parmp); |
2730 | 41 #ifndef NO_VIM_MAIN |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
42 static void main_msg(char *s); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
43 static void usage(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
44 static int get_number_arg(char_u *p, int *idx, int def); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
45 static void parse_command_name(mparm_T *parmp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
46 static void command_line_scan(mparm_T *parmp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
47 static void check_tty(mparm_T *parmp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
48 static void read_stdin(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
49 static void create_windows(mparm_T *parmp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
50 static void edit_buffers(mparm_T *parmp, char_u *cwd); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
51 static void exe_pre_commands(mparm_T *parmp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
52 static void exe_commands(mparm_T *parmp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
53 static void source_startup_scripts(mparm_T *parmp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
54 static void main_start_gui(void); |
2730 | 55 # if defined(HAS_SWAP_EXISTS_ACTION) |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
56 static void check_swap_exists_action(void); |
2730 | 57 # endif |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
58 # ifdef FEAT_EVAL |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
59 static void set_progpath(char_u *argv0); |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
60 # endif |
2730 | 61 # if defined(FEAT_CLIENTSERVER) || defined(PROTO) |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
62 static void exec_on_server(mparm_T *parmp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
63 static void prepare_server(mparm_T *parmp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
64 static void cmdsrv_main(int *argc, char **argv, char_u *serverName_arg, char_u **serverStr); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
65 static char_u *serverMakeName(char_u *arg, char *cmd); |
2730 | 66 # endif |
6 | 67 #endif |
68 | |
69 | |
70 /* | |
71 * Different types of error messages. | |
72 */ | |
73 static char *(main_errors[]) = | |
74 { | |
443 | 75 N_("Unknown option argument"), |
6 | 76 #define ME_UNKNOWN_OPTION 0 |
77 N_("Too many edit arguments"), | |
78 #define ME_TOO_MANY_ARGS 1 | |
79 N_("Argument missing after"), | |
80 #define ME_ARG_MISSING 2 | |
443 | 81 N_("Garbage after option argument"), |
6 | 82 #define ME_GARBAGE 3 |
83 N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments"), | |
84 #define ME_EXTRA_CMD 4 | |
85 N_("Invalid argument for"), | |
86 #define ME_INVALID_ARG 5 | |
87 }; | |
88 | |
3955 | 89 #ifndef PROTO /* don't want a prototype for main() */ |
11309
b254fd46ef62
patch 8.0.0540: building unit tests fails
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
90 |
b254fd46ef62
patch 8.0.0540: building unit tests fails
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
91 /* Various parameters passed between main() and other functions. */ |
b254fd46ef62
patch 8.0.0540: building unit tests fails
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
92 static mparm_T params; |
b254fd46ef62
patch 8.0.0540: building unit tests fails
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
93 |
2730 | 94 #ifndef NO_VIM_MAIN /* skip this for unittests */ |
6763 | 95 |
96 static char_u *start_dir = NULL; /* current working dir on startup */ | |
97 | |
9678
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
9669
diff
changeset
|
98 static int has_dash_c_arg = FALSE; |
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
9669
diff
changeset
|
99 |
6 | 100 int |
101 # ifdef VIMDLL | |
102 _export | |
103 # endif | |
104 # ifdef FEAT_GUI_MSWIN | |
105 # ifdef __BORLANDC__ | |
106 _cdecl | |
107 # endif | |
108 VimMain | |
109 # else | |
110 main | |
111 # endif | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
112 (int argc, char **argv) |
6 | 113 { |
13363
2103b009e32d
patch 8.0.1555: build error for some combination of features
Christian Brabandt <cb@256bit.org>
parents:
13361
diff
changeset
|
114 #if defined(STARTUPTIME) || defined(CLEAN_RUNTIMEPATH) |
1972 | 115 int i; |
116 #endif | |
6 | 117 |
118 /* | |
119 * Do any system-specific initialisations. These can NOT use IObuff or | |
120 * NameBuff. Thus emsg2() cannot be called! | |
121 */ | |
122 mch_early_init(); | |
123 | |
6193 | 124 #if defined(WIN32) && defined(FEAT_MBYTE) |
125 /* | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
126 * MinGW expands command line arguments, which confuses our code to |
6193 | 127 * convert when 'encoding' changes. Get the unexpanded arguments. |
128 */ | |
129 argc = get_cmd_argsW(&argv); | |
130 #endif | |
131 | |
443 | 132 /* Many variables are in "params" so that we can pass them to invoked |
133 * functions without a lot of arguments. "argc" and "argv" are also | |
134 * copied, so that they can be changed. */ | |
440 | 135 vim_memset(¶ms, 0, sizeof(params)); |
443 | 136 params.argc = argc; |
137 params.argv = argv; | |
138 params.want_full_screen = TRUE; | |
139 #ifdef FEAT_EVAL | |
140 params.use_debug_break_level = -1; | |
141 #endif | |
142 params.window_count = -1; | |
440 | 143 |
4369 | 144 #ifdef FEAT_RUBY |
145 { | |
146 int ruby_stack_start; | |
147 vim_ruby_init((void *)&ruby_stack_start); | |
148 } | |
149 #endif | |
150 | |
6 | 151 #ifdef FEAT_TCL |
443 | 152 vim_tcl_init(params.argv[0]); |
6 | 153 #endif |
154 | |
155 #ifdef MEM_PROFILE | |
156 atexit(vim_mem_profile_dump); | |
157 #endif | |
158 | |
159 #ifdef STARTUPTIME | |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
160 /* Need to find "--startuptime" before actually parsing arguments. */ |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
161 for (i = 1; i < argc - 1; ++i) |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
162 if (STRICMP(argv[i], "--startuptime") == 0) |
1972 | 163 { |
1989 | 164 time_fd = mch_fopen(argv[i + 1], "a"); |
1972 | 165 TIME_MSG("--- VIM STARTING ---"); |
166 break; | |
167 } | |
6 | 168 #endif |
777 | 169 starttime = time(NULL); |
6 | 170 |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
171 #ifdef CLEAN_RUNTIMEPATH |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
172 /* Need to find "--clean" before actually parsing arguments. */ |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
173 for (i = 1; i < argc; ++i) |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
174 if (STRICMP(argv[i], "--clean") == 0) |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
175 { |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
176 params.clean = TRUE; |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
177 break; |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
178 } |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
179 #endif |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
180 common_init(¶ms); |
6 | 181 |
182 #ifdef FEAT_CLIENTSERVER | |
183 /* | |
184 * Do the client-server stuff, unless "--servername ''" was used. | |
443 | 185 * This may exit Vim if the command was sent to the server. |
6 | 186 */ |
443 | 187 exec_on_server(¶ms); |
6 | 188 #endif |
189 | |
190 /* | |
443 | 191 * Figure out the way to work from the command name argv[0]. |
192 * "vimdiff" starts diff mode, "rvim" sets "restricted", etc. | |
6 | 193 */ |
443 | 194 parse_command_name(¶ms); |
6 | 195 |
196 /* | |
443 | 197 * Process the command line arguments. File names are put in the global |
198 * argument list "global_alist". | |
6 | 199 */ |
443 | 200 command_line_scan(¶ms); |
6 | 201 TIME_MSG("parsing arguments"); |
202 | |
203 /* | |
204 * On some systems, when we compile with the GUI, we always use it. On Mac | |
443 | 205 * there is no terminal version, and on Windows we can't fork one off with |
206 * :gui. | |
6 | 207 */ |
208 #ifdef ALWAYS_USE_GUI | |
209 gui.starting = TRUE; | |
210 #else | |
575 | 211 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) |
6 | 212 /* |
213 * Check if the GUI can be started. Reset gui.starting if not. | |
214 * Don't know about other systems, stay on the safe side and don't check. | |
215 */ | |
2021 | 216 if (gui.starting) |
6 | 217 { |
2021 | 218 if (gui_init_check() == FAIL) |
219 { | |
220 gui.starting = FALSE; | |
221 | |
222 /* When running "evim" or "gvim -y" we need the menus, exit if we | |
223 * don't have them. */ | |
224 if (params.evim_mode) | |
225 mch_exit(1); | |
226 } | |
6 | 227 } |
228 # endif | |
229 #endif | |
230 | |
231 if (GARGCOUNT > 0) | |
232 { | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
6923
diff
changeset
|
233 #ifdef EXPAND_FILENAMES |
6 | 234 /* |
235 * Expand wildcards in file names. | |
236 */ | |
443 | 237 if (!params.literal) |
6 | 238 { |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
239 start_dir = alloc(MAXPATHL); |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
240 if (start_dir != NULL) |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
241 mch_dirname(start_dir, MAXPATHL); |
6 | 242 /* Temporarily add '(' and ')' to 'isfname'. These are valid |
243 * filename characters but are excluded from 'isfname' to make | |
244 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */ | |
245 do_cmdline_cmd((char_u *)":set isf+=(,)"); | |
41 | 246 alist_expand(NULL, 0); |
6 | 247 do_cmdline_cmd((char_u *)":set isf&"); |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
248 if (start_dir != NULL) |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
249 mch_chdir((char *)start_dir); |
6 | 250 } |
251 #endif | |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
252 params.fname = alist_name(&GARGLIST[0]); |
6 | 253 } |
23 | 254 |
255 #if defined(WIN32) && defined(FEAT_MBYTE) | |
256 { | |
257 extern void set_alist_count(void); | |
258 | |
259 /* Remember the number of entries in the argument list. If it changes | |
260 * we don't react on setting 'encoding'. */ | |
261 set_alist_count(); | |
262 } | |
263 #endif | |
264 | |
6 | 265 #ifdef MSWIN |
443 | 266 if (GARGCOUNT == 1 && params.full_path) |
6 | 267 { |
268 /* | |
269 * If there is one filename, fully qualified, we have very probably | |
270 * been invoked from explorer, so change to the file's directory. | |
271 * Hint: to avoid this when typing a command use a forward slash. | |
272 * If the cd fails, it doesn't matter. | |
273 */ | |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13160
diff
changeset
|
274 (void)vim_chdirfile(params.fname, "drop"); |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
275 if (start_dir != NULL) |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
276 mch_dirname(start_dir, MAXPATHL); |
6 | 277 } |
278 #endif | |
279 TIME_MSG("expanding arguments"); | |
280 | |
281 #ifdef FEAT_DIFF | |
769 | 282 if (params.diff_mode && params.window_count == -1) |
283 params.window_count = 0; /* open up to 3 windows */ | |
6 | 284 #endif |
285 | |
443 | 286 /* Don't redraw until much later. */ |
6 | 287 ++RedrawingDisabled; |
288 | |
289 /* | |
290 * When listing swap file names, don't do cursor positioning et. al. | |
291 */ | |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
292 if (recoverymode && params.fname == NULL) |
443 | 293 params.want_full_screen = FALSE; |
6 | 294 |
295 /* | |
296 * When certain to start the GUI, don't check capabilities of terminal. | |
297 * For GTK we can't be sure, but when started from the desktop it doesn't | |
298 * make sense to try using a terminal. | |
299 */ | |
575 | 300 #if defined(ALWAYS_USE_GUI) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) |
6 | 301 if (gui.starting |
302 # ifdef FEAT_GUI_GTK | |
303 && !isatty(2) | |
304 # endif | |
305 ) | |
443 | 306 params.want_full_screen = FALSE; |
6 | 307 #endif |
308 | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12678
diff
changeset
|
309 #if defined(FEAT_GUI_MAC) && defined(MACOS_X_DARWIN) |
6 | 310 /* When the GUI is started from Finder, need to display messages in a |
311 * message box. isatty(2) returns TRUE anyway, thus we need to check the | |
312 * name to know we're not started from a terminal. */ | |
313 if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0)) | |
816 | 314 { |
443 | 315 params.want_full_screen = FALSE; |
816 | 316 |
317 /* Avoid always using "/" as the current directory. Note that when | |
318 * started from Finder the arglist will be filled later in | |
319 * HandleODocAE() and "fname" will be NULL. */ | |
320 if (getcwd((char *)NameBuff, MAXPATHL) != NULL | |
321 && STRCMP(NameBuff, "/") == 0) | |
322 { | |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
323 if (params.fname != NULL) |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13160
diff
changeset
|
324 (void)vim_chdirfile(params.fname, "drop"); |
816 | 325 else |
326 { | |
327 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL); | |
328 vim_chdir(NameBuff); | |
329 } | |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
330 if (start_dir != NULL) |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
331 mch_dirname(start_dir, MAXPATHL); |
816 | 332 } |
333 } | |
6 | 334 #endif |
335 | |
336 /* | |
337 * mch_init() sets up the terminal (window) for use. This must be | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
338 * done after resetting full_screen, otherwise it may move the cursor. |
6 | 339 * Note that we may use mch_exit() before mch_init()! |
340 */ | |
341 mch_init(); | |
342 TIME_MSG("shell init"); | |
343 | |
344 #ifdef USE_XSMP | |
345 /* | |
346 * For want of anywhere else to do it, try to connect to xsmp here. | |
347 * Fitting it in after gui_mch_init, but before gui_init (via termcapinit). | |
348 * Hijacking -X 'no X connection' to also disable XSMP connection as that | |
349 * has a similar delay upon failure. | |
350 * Only try if SESSION_MANAGER is set to something non-null. | |
351 */ | |
352 if (!x_no_connect) | |
353 { | |
443 | 354 char *p = getenv("SESSION_MANAGER"); |
355 | |
6 | 356 if (p != NULL && *p != NUL) |
357 { | |
358 xsmp_init(); | |
359 TIME_MSG("xsmp init"); | |
360 } | |
361 } | |
362 #endif | |
363 | |
364 /* | |
365 * Print a warning if stdout is not a terminal. | |
366 */ | |
443 | 367 check_tty(¶ms); |
6 | 368 |
13160
cb99d9198c39
patch 8.0.1454: when in silent mode too much output is buffered
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
369 #ifdef _IOLBF |
cb99d9198c39
patch 8.0.1454: when in silent mode too much output is buffered
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
370 /* Ensure output works usefully without a tty: buffer lines instead of |
cb99d9198c39
patch 8.0.1454: when in silent mode too much output is buffered
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
371 * fully buffered. */ |
cb99d9198c39
patch 8.0.1454: when in silent mode too much output is buffered
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
372 if (silent_mode) |
cb99d9198c39
patch 8.0.1454: when in silent mode too much output is buffered
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
373 setvbuf(stdout, NULL, _IOLBF, 0); |
cb99d9198c39
patch 8.0.1454: when in silent mode too much output is buffered
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
374 #endif |
cb99d9198c39
patch 8.0.1454: when in silent mode too much output is buffered
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
375 |
169 | 376 /* This message comes before term inits, but after setting "silent_mode" |
377 * when the input is not a tty. */ | |
378 if (GARGCOUNT > 1 && !silent_mode) | |
379 printf(_("%d files to edit\n"), GARGCOUNT); | |
380 | |
443 | 381 if (params.want_full_screen && !silent_mode) |
6 | 382 { |
443 | 383 termcapinit(params.term); /* set terminal name and get terminal |
6 | 384 capabilities (will set full_screen) */ |
385 screen_start(); /* don't know where cursor is now */ | |
386 TIME_MSG("Termcap init"); | |
387 } | |
388 | |
389 /* | |
390 * Set the default values for the options that use Rows and Columns. | |
391 */ | |
392 ui_get_shellsize(); /* inits Rows and Columns */ | |
667 | 393 win_init_size(); |
6 | 394 #ifdef FEAT_DIFF |
395 /* Set the 'diff' option now, so that it can be checked for in a .vimrc | |
396 * file. There is no buffer yet though. */ | |
443 | 397 if (params.diff_mode) |
6 | 398 diff_win_options(firstwin, FALSE); |
399 #endif | |
400 | |
401 cmdline_row = Rows - p_ch; | |
402 msg_row = cmdline_row; | |
403 screenalloc(FALSE); /* allocate screen buffers */ | |
404 set_init_2(); | |
405 TIME_MSG("inits 2"); | |
406 | |
407 msg_scroll = TRUE; | |
408 no_wait_return = TRUE; | |
409 | |
410 init_mappings(); /* set up initial mappings */ | |
411 | |
412 init_highlight(TRUE, FALSE); /* set the default highlight groups */ | |
413 TIME_MSG("init highlight"); | |
414 | |
415 #ifdef FEAT_EVAL | |
416 /* Set the break level after the terminal is initialized. */ | |
443 | 417 debug_break_level = params.use_debug_break_level; |
6 | 418 #endif |
419 | |
12670
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
420 /* Reset 'loadplugins' for "-u NONE" before "--cmd" arguments. |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
421 * Allows for setting 'loadplugins' there. */ |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
422 if (params.use_vimrc != NULL |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
423 && (STRCMP(params.use_vimrc, "NONE") == 0 |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
424 || STRCMP(params.use_vimrc, "DEFAULTS") == 0)) |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
425 p_lpl = FALSE; |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
426 |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
427 /* Execute --cmd arguments. */ |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
428 exe_pre_commands(¶ms); |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
429 |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
430 /* Source startup scripts. */ |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
431 source_startup_scripts(¶ms); |
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
432 |
3348 | 433 #ifdef FEAT_MZSCHEME |
434 /* | |
435 * Newer version of MzScheme (Racket) require earlier (trampolined) | |
436 * initialisation via scheme_main_setup. | |
437 * Implement this by initialising it as early as possible | |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
438 * and splitting off remaining Vim main into vim_main2(). |
12670
d348256f04d1
patch 8.0.1213: setting 'mzschemedll' has no effect
Christian Brabandt <cb@256bit.org>
parents:
12557
diff
changeset
|
439 * Do source startup scripts, so that 'mzschemedll' can be set. |
3348 | 440 */ |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
441 return mzscheme_main(); |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
442 #else |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
443 return vim_main2(); |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
444 #endif |
3348 | 445 } |
3955 | 446 #endif /* NO_VIM_MAIN */ |
9832
568ea507b0cd
commit https://github.com/vim/vim/commit/a357e44ccdf5cfe9f6d35cc348ca33ccd973e1a9
Christian Brabandt <cb@256bit.org>
parents:
9802
diff
changeset
|
447 #endif /* PROTO */ |
3955 | 448 |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
449 /* |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
450 * vim_main2() is needed for FEAT_MZSCHEME, but we define it always to keep |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
451 * things simple. |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
452 * It is also defined when NO_VIM_MAIN is defined, but then it's empty. |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
453 */ |
3955 | 454 int |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
455 vim_main2(void) |
3348 | 456 { |
3955 | 457 #ifndef NO_VIM_MAIN |
6 | 458 #ifdef FEAT_EVAL |
459 /* | |
460 * Read all the plugin files. | |
461 * Only when compiled with +eval, since most plugins need it. | |
462 */ | |
463 if (p_lpl) | |
464 { | |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
465 char_u *rtp_copy = NULL; |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
466 |
11457
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
467 /* First add all package directories to 'runtimepath', so that their |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
468 * autoload directories can be found. Only if not done already with a |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
469 * :packloadall command. |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
470 * Make a copy of 'runtimepath', so that source_runtime does not use |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
471 * the pack directories. */ |
11457
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
472 if (!did_source_packages) |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
473 { |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
474 rtp_copy = vim_strsave(p_rtp); |
11457
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
475 add_pack_start_dirs(); |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
476 } |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
477 |
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
478 source_in_path(rtp_copy == NULL ? p_rtp : rtp_copy, |
892 | 479 # ifdef VMS /* Somehow VMS doesn't handle the "**". */ |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
480 (char_u *)"plugin/*.vim", |
892 | 481 # else |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
482 (char_u *)"plugin/**/*.vim", |
892 | 483 # endif |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
484 DIP_ALL | DIP_NOAFTER); |
6 | 485 TIME_MSG("loading plugins"); |
11595
42cd59477698
patch 8.0.0680: plugins in start packages are sourced twice
Christian Brabandt <cb@256bit.org>
parents:
11492
diff
changeset
|
486 vim_free(rtp_copy); |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
487 |
11457
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
488 /* Only source "start" packages if not done already with a :packloadall |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
489 * command. */ |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
490 if (!did_source_packages) |
5a1656d79707
patch 8.0.0612: pack dirs are added to 'runtimepath' too late
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
491 load_start_packages(); |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
492 TIME_MSG("loading packages"); |
9778
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
493 |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
494 # ifdef VMS /* Somehow VMS doesn't handle the "**". */ |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
495 source_runtime((char_u *)"plugin/*.vim", DIP_ALL | DIP_AFTER); |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
496 # else |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
497 source_runtime((char_u *)"plugin/**/*.vim", DIP_ALL | DIP_AFTER); |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
498 # endif |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
499 TIME_MSG("loading after plugins"); |
4360b2b46125
commit https://github.com/vim/vim/commit/66459b7c98c67f8a9d39de8f08e8e8f1fca0e359
Christian Brabandt <cb@256bit.org>
parents:
9678
diff
changeset
|
500 |
6 | 501 } |
502 #endif | |
503 | |
769 | 504 #ifdef FEAT_DIFF |
505 /* Decide about window layout for diff mode after reading vimrc. */ | |
506 if (params.diff_mode && params.window_layout == 0) | |
507 { | |
508 if (diffopt_horizontal()) | |
509 params.window_layout = WIN_HOR; /* use horizontal split */ | |
510 else | |
511 params.window_layout = WIN_VER; /* use vertical split */ | |
512 } | |
513 #endif | |
514 | |
6 | 515 /* |
516 * Recovery mode without a file name: List swap files. | |
517 * This uses the 'dir' option, therefore it must be after the | |
518 * initializations. | |
519 */ | |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
520 if (recoverymode && params.fname == NULL) |
6 | 521 { |
2267 | 522 recover_names(NULL, TRUE, 0, NULL); |
6 | 523 mch_exit(0); |
524 } | |
525 | |
526 /* | |
527 * Set a few option defaults after reading .vimrc files: | |
528 * 'title' and 'icon', Unix: 'shellpipe' and 'shellredir'. | |
529 */ | |
530 set_init_3(); | |
531 TIME_MSG("inits 3"); | |
532 | |
533 /* | |
534 * "-n" argument: Disable swap file by setting 'updatecount' to 0. | |
535 * Note that this overrides anything from a vimrc file. | |
536 */ | |
443 | 537 if (params.no_swap_file) |
6 | 538 p_uc = 0; |
539 | |
540 #ifdef FEAT_FKMAP | |
541 if (curwin->w_p_rl && p_altkeymap) | |
542 { | |
543 p_hkmap = FALSE; /* Reset the Hebrew keymap mode */ | |
544 # ifdef FEAT_ARABIC | |
545 curwin->w_p_arab = FALSE; /* Reset the Arabic keymap mode */ | |
546 # endif | |
547 p_fkmap = TRUE; /* Set the Farsi keymap mode */ | |
548 } | |
549 #endif | |
550 | |
551 #ifdef FEAT_GUI | |
552 if (gui.starting) | |
553 { | |
554 #if defined(UNIX) || defined(VMS) | |
555 /* When something caused a message from a vimrc script, need to output | |
556 * an extra newline before the shell prompt. */ | |
557 if (did_emsg || msg_didout) | |
558 putchar('\n'); | |
559 #endif | |
560 | |
561 gui_start(); /* will set full_screen to TRUE */ | |
562 TIME_MSG("starting GUI"); | |
563 | |
564 /* When running "evim" or "gvim -y" we need the menus, exit if we | |
565 * don't have them. */ | |
440 | 566 if (!gui.in_use && params.evim_mode) |
6 | 567 mch_exit(1); |
568 } | |
569 #endif | |
570 | |
571 #ifdef FEAT_VIMINFO | |
572 /* | |
1733 | 573 * Read in registers, history etc, but not marks, from the viminfo file. |
574 * This is where v:oldfiles gets filled. | |
6 | 575 */ |
576 if (*p_viminfo != NUL) | |
577 { | |
1733 | 578 read_viminfo(NULL, VIF_WANT_INFO | VIF_GET_OLDFILES); |
6 | 579 TIME_MSG("reading viminfo"); |
580 } | |
581 #endif | |
5598 | 582 #ifdef FEAT_EVAL |
583 /* It's better to make v:oldfiles an empty list than NULL. */ | |
584 if (get_vim_var_list(VV_OLDFILES) == NULL) | |
585 set_vim_var_list(VV_OLDFILES, list_alloc()); | |
586 #endif | |
6 | 587 |
588 #ifdef FEAT_QUICKFIX | |
589 /* | |
590 * "-q errorfile": Load the error file now. | |
591 * If the error file can't be read, exit before doing anything else. | |
592 */ | |
443 | 593 if (params.edit_type == EDIT_QF) |
6 | 594 { |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11060
diff
changeset
|
595 char_u *enc = NULL; |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11060
diff
changeset
|
596 |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11060
diff
changeset
|
597 # ifdef FEAT_MBYTE |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11060
diff
changeset
|
598 enc = p_menc; |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11060
diff
changeset
|
599 # endif |
443 | 600 if (params.use_ef != NULL) |
601 set_string_option_direct((char_u *)"ef", -1, | |
694 | 602 params.use_ef, OPT_FREE, SID_CARG); |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
603 vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef); |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11060
diff
changeset
|
604 if (qf_init(NULL, p_ef, p_efm, TRUE, IObuff, enc) < 0) |
6 | 605 { |
606 out_char('\n'); | |
607 mch_exit(3); | |
608 } | |
609 TIME_MSG("reading errorfile"); | |
610 } | |
611 #endif | |
612 | |
613 /* | |
614 * Start putting things on the screen. | |
615 * Scroll screen down before drawing over it | |
616 * Clear screen now, so file message will not be cleared. | |
617 */ | |
618 starting = NO_BUFFERS; | |
619 no_wait_return = FALSE; | |
620 if (!exmode_active) | |
621 msg_scroll = FALSE; | |
622 | |
623 #ifdef FEAT_GUI | |
624 /* | |
625 * This seems to be required to make callbacks to be called now, instead | |
626 * of after things have been put on the screen, which then may be deleted | |
627 * when getting a resize callback. | |
628 * For the Mac this handles putting files dropped on the Vim icon to | |
629 * global_alist. | |
630 */ | |
631 if (gui.in_use) | |
632 { | |
633 # ifdef FEAT_SUN_WORKSHOP | |
634 if (!usingSunWorkShop) | |
635 # endif | |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13058
diff
changeset
|
636 gui_wait_for_chars(50L, typebuf.tb_change_cnt); |
6 | 637 TIME_MSG("GUI delay"); |
638 } | |
639 #endif | |
640 | |
641 #if defined(FEAT_GUI_PHOTON) && defined(FEAT_CLIPBOARD) | |
642 qnx_clip_init(); | |
643 #endif | |
644 | |
2312
bbd6f5539378
Missing piece for Mac console clipboard support. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
645 #if defined(MACOS_X) && defined(FEAT_CLIPBOARD) |
bbd6f5539378
Missing piece for Mac console clipboard support. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
646 clip_init(TRUE); |
bbd6f5539378
Missing piece for Mac console clipboard support. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
647 #endif |
bbd6f5539378
Missing piece for Mac console clipboard support. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
648 |
6 | 649 #ifdef FEAT_XCLIPBOARD |
650 /* Start using the X clipboard, unless the GUI was started. */ | |
651 # ifdef FEAT_GUI | |
652 if (!gui.in_use) | |
653 # endif | |
654 { | |
655 setup_term_clip(); | |
656 TIME_MSG("setup clipboard"); | |
657 } | |
658 #endif | |
659 | |
660 #ifdef FEAT_CLIENTSERVER | |
443 | 661 /* Prepare for being a Vim server. */ |
662 prepare_server(¶ms); | |
6 | 663 #endif |
664 | |
665 /* | |
666 * If "-" argument given: Read file from stdin. | |
667 * Do this before starting Raw mode, because it may change things that the | |
668 * writing end of the pipe doesn't like, e.g., in case stdin and stderr | |
669 * are the same terminal: "cat | vim -". | |
670 * Using autocommands here may cause trouble... | |
671 */ | |
443 | 672 if (params.edit_type == EDIT_STDIN && !recoverymode) |
673 read_stdin(); | |
6 | 674 |
675 #if defined(UNIX) || defined(VMS) | |
676 /* When switching screens and something caused a message from a vimrc | |
677 * script, need to output an extra newline on exit. */ | |
678 if ((did_emsg || msg_didout) && *T_TI != NUL) | |
679 newline_on_exit = TRUE; | |
680 #endif | |
681 | |
682 /* | |
683 * When done something that is not allowed or error message call | |
684 * wait_return. This must be done before starttermcap(), because it may | |
685 * switch to another screen. It must be done after settmode(TMODE_RAW), | |
686 * because we want to react on a single key stroke. | |
687 * Call settmode and starttermcap here, so the T_KS and T_TI may be | |
1226 | 688 * defined by termcapinit and redefined in .exrc. |
6 | 689 */ |
690 settmode(TMODE_RAW); | |
691 TIME_MSG("setting raw mode"); | |
692 | |
693 if (need_wait_return || msg_didany) | |
694 { | |
695 wait_return(TRUE); | |
696 TIME_MSG("waiting for return"); | |
697 } | |
698 | |
699 starttermcap(); /* start termcap if not done by wait_return() */ | |
700 TIME_MSG("start termcap"); | |
701 | |
702 #ifdef FEAT_MOUSE | |
703 setmouse(); /* may start using the mouse */ | |
704 #endif | |
705 if (scroll_region) | |
706 scroll_region_reset(); /* In case Rows changed */ | |
440 | 707 scroll_start(); /* may scroll the screen to the right position */ |
6 | 708 |
14481
4f5a15867544
patch 8.1.0254: cannot build on MS-Windows; unused macro HAVE_HANDLE_DROP
Christian Brabandt <cb@256bit.org>
parents:
14479
diff
changeset
|
709 #if defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) || defined(MACOS_X)) |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14428
diff
changeset
|
710 term_push_title(SAVE_RESTORE_BOTH); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14428
diff
changeset
|
711 #endif |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14428
diff
changeset
|
712 |
6 | 713 /* |
714 * Don't clear the screen when starting in Ex mode, unless using the GUI. | |
715 */ | |
716 if (exmode_active | |
717 #ifdef FEAT_GUI | |
718 && !gui.in_use | |
719 #endif | |
720 ) | |
721 must_redraw = CLEAR; | |
722 else | |
723 { | |
724 screenclear(); /* clear screen */ | |
725 TIME_MSG("clearing screen"); | |
726 } | |
727 | |
728 #ifdef FEAT_CRYPT | |
443 | 729 if (params.ask_for_key) |
6 | 730 { |
6353 | 731 crypt_check_current_method(); |
6122 | 732 (void)crypt_get_key(TRUE, TRUE); |
6 | 733 TIME_MSG("getting crypt key"); |
734 } | |
735 #endif | |
736 | |
737 no_wait_return = TRUE; | |
738 | |
739 /* | |
443 | 740 * Create the requested number of windows and edit buffers in them. |
741 * Also does recovery if "recoverymode" set. | |
6 | 742 */ |
443 | 743 create_windows(¶ms); |
6 | 744 TIME_MSG("opening buffers"); |
745 | |
1093 | 746 #ifdef FEAT_EVAL |
747 /* clear v:swapcommand */ | |
748 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
749 #endif | |
750 | |
6 | 751 /* Ex starts at last line of the file */ |
752 if (exmode_active) | |
753 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
754 | |
755 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); | |
756 TIME_MSG("BufEnter autocommands"); | |
757 setpcmark(); | |
758 | |
759 #ifdef FEAT_QUICKFIX | |
760 /* | |
761 * When started with "-q errorfile" jump to first error now. | |
762 */ | |
443 | 763 if (params.edit_type == EDIT_QF) |
6 | 764 { |
644 | 765 qf_jump(NULL, 0, 0, FALSE); |
6 | 766 TIME_MSG("jump to first error"); |
767 } | |
768 #endif | |
769 | |
770 /* | |
771 * If opened more than one window, start editing files in the other | |
443 | 772 * windows. |
6 | 773 */ |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
774 edit_buffers(¶ms, start_dir); |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
775 vim_free(start_dir); |
6 | 776 |
777 #ifdef FEAT_DIFF | |
443 | 778 if (params.diff_mode) |
6 | 779 { |
780 win_T *wp; | |
781 | |
782 /* set options in each window for "vimdiff". */ | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9542
diff
changeset
|
783 FOR_ALL_WINDOWS(wp) |
6 | 784 diff_win_options(wp, TRUE); |
785 } | |
786 #endif | |
787 | |
788 /* | |
789 * Shorten any of the filenames, but only when absolute. | |
790 */ | |
791 shorten_fnames(FALSE); | |
792 | |
793 /* | |
794 * Need to jump to the tag before executing the '-c command'. | |
795 * Makes "vim -c '/return' -t main" work. | |
796 */ | |
443 | 797 if (params.tagname != NULL) |
6 | 798 { |
604 | 799 #if defined(HAS_SWAP_EXISTS_ACTION) |
800 swap_exists_did_quit = FALSE; | |
801 #endif | |
802 | |
443 | 803 vim_snprintf((char *)IObuff, IOSIZE, "ta %s", params.tagname); |
6 | 804 do_cmdline_cmd(IObuff); |
805 TIME_MSG("jumping to tag"); | |
604 | 806 |
807 #if defined(HAS_SWAP_EXISTS_ACTION) | |
808 /* If the user doesn't want to edit the file then we quit here. */ | |
809 if (swap_exists_did_quit) | |
810 getout(1); | |
811 #endif | |
6 | 812 } |
813 | |
443 | 814 /* Execute any "+", "-c" and "-S" arguments. */ |
815 if (params.n_commands > 0) | |
816 exe_commands(¶ms); | |
6 | 817 |
11492
5ccf1b222223
patch 8.0.0629: checking for ambigous width is not working
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
818 /* Must come before the may_req_ calls. */ |
5ccf1b222223
patch 8.0.0629: checking for ambigous width is not working
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
819 starting = 0; |
5ccf1b222223
patch 8.0.0629: checking for ambigous width is not working
Christian Brabandt <cb@256bit.org>
parents:
11457
diff
changeset
|
820 |
11455
08e60ce4cbf3
patch 8.0.0611: the screen is not redrawn after sending t_u7
Christian Brabandt <cb@256bit.org>
parents:
11364
diff
changeset
|
821 #if defined(FEAT_TERMRESPONSE) && defined(FEAT_MBYTE) |
08e60ce4cbf3
patch 8.0.0611: the screen is not redrawn after sending t_u7
Christian Brabandt <cb@256bit.org>
parents:
11364
diff
changeset
|
822 /* Must be done before redrawing, puts a few characters on the screen. */ |
08e60ce4cbf3
patch 8.0.0611: the screen is not redrawn after sending t_u7
Christian Brabandt <cb@256bit.org>
parents:
11364
diff
changeset
|
823 may_req_ambiguous_char_width(); |
08e60ce4cbf3
patch 8.0.0611: the screen is not redrawn after sending t_u7
Christian Brabandt <cb@256bit.org>
parents:
11364
diff
changeset
|
824 #endif |
08e60ce4cbf3
patch 8.0.0611: the screen is not redrawn after sending t_u7
Christian Brabandt <cb@256bit.org>
parents:
11364
diff
changeset
|
825 |
6 | 826 RedrawingDisabled = 0; |
827 redraw_all_later(NOT_VALID); | |
828 no_wait_return = FALSE; | |
829 | |
8857
df68de6b6f1c
commit https://github.com/vim/vim/commit/baec5c1768098f9dd867b465aaabfdfb294f10c2
Christian Brabandt <cb@256bit.org>
parents:
8738
diff
changeset
|
830 /* 'autochdir' has been postponed */ |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13509
diff
changeset
|
831 DO_AUTOCHDIR; |
8857
df68de6b6f1c
commit https://github.com/vim/vim/commit/baec5c1768098f9dd867b465aaabfdfb294f10c2
Christian Brabandt <cb@256bit.org>
parents:
8738
diff
changeset
|
832 |
626 | 833 #ifdef FEAT_TERMRESPONSE |
834 /* Requesting the termresponse is postponed until here, so that a "-c q" | |
835 * argument doesn't make it appear in the shell Vim was started from. */ | |
836 may_req_termresponse(); | |
11364
0ef92445b4f6
patch 8.0.0567: call for requesting color and ambiwidth is too early
Christian Brabandt <cb@256bit.org>
parents:
11309
diff
changeset
|
837 |
0ef92445b4f6
patch 8.0.0567: call for requesting color and ambiwidth is too early
Christian Brabandt <cb@256bit.org>
parents:
11309
diff
changeset
|
838 may_req_bg_color(); |
626 | 839 #endif |
840 | |
6 | 841 /* start in insert mode */ |
842 if (p_im) | |
843 need_start_insertmode = TRUE; | |
844 | |
8738
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
845 #ifdef FEAT_EVAL |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
846 set_vim_var_nr(VV_VIM_DID_ENTER, 1L); |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
847 #endif |
6 | 848 apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf); |
849 TIME_MSG("VimEnter autocommands"); | |
850 | |
3488 | 851 #if defined(FEAT_EVAL) && defined(FEAT_CLIPBOARD) |
852 /* Adjust default register name for "unnamed" in 'clipboard'. Can only be | |
853 * done after the clipboard is available and all initial commands that may | |
854 * modify the 'clipboard' setting have run; i.e. just before entering the | |
855 * main loop. */ | |
856 { | |
857 int default_regname = 0; | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
6923
diff
changeset
|
858 |
3488 | 859 adjust_clip_reg(&default_regname); |
860 set_reg_var(default_regname); | |
861 } | |
862 #endif | |
863 | |
13384
6740c499de13
patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
864 #if defined(FEAT_DIFF) |
6 | 865 /* When a startup script or session file setup for diff'ing and |
866 * scrollbind, sync the scrollbind now. */ | |
867 if (curwin->w_p_diff && curwin->w_p_scb) | |
868 { | |
869 update_topline(); | |
870 check_scrollbind((linenr_T)0, 0L); | |
871 TIME_MSG("diff scrollbinding"); | |
872 } | |
873 #endif | |
874 | |
875 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
876 mch_set_winsize_now(); /* Allow winsize changes from now on */ | |
877 #endif | |
878 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12457
diff
changeset
|
879 #if defined(FEAT_GUI) |
685 | 880 /* When tab pages were created, may need to update the tab pages line and |
881 * scrollbars. This is skipped while creating them. */ | |
882 if (first_tabpage->tp_next != NULL) | |
883 { | |
884 out_flush(); | |
885 gui_init_which_components(NULL); | |
886 gui_update_scrollbars(TRUE); | |
887 } | |
888 need_mouse_correct = TRUE; | |
889 #endif | |
890 | |
6 | 891 /* If ":startinsert" command used, stuff a dummy command to be able to |
892 * call normal_cmd(), which will then start Insert mode. */ | |
893 if (restart_edit != 0) | |
620 | 894 stuffcharReadbuff(K_NOP); |
6 | 895 |
896 #ifdef FEAT_NETBEANS_INTG | |
2210 | 897 if (netbeansArg != NULL && strncmp("-nb", netbeansArg, 3) == 0) |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
898 { |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
899 # ifdef FEAT_GUI |
2592 | 900 # if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \ |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
901 && !defined(FEAT_GUI_W32) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
902 if (gui.in_use) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
903 { |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
904 mch_errmsg(_("netbeans is not supported with this GUI\n")); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
905 mch_exit(2); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
906 } |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
907 # endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
908 # endif |
6 | 909 /* Tell the client that it can start sending commands. */ |
2210 | 910 netbeans_open(netbeansArg + 3, TRUE); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
911 } |
6 | 912 #endif |
913 | |
914 TIME_MSG("before starting main loop"); | |
915 | |
916 /* | |
917 * Call the main command loop. This never returns. | |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14171
diff
changeset
|
918 */ |
169 | 919 main_loop(FALSE, FALSE); |
6 | 920 |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
921 #endif /* NO_VIM_MAIN */ |
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
922 |
6 | 923 return 0; |
924 } | |
925 | |
926 /* | |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
927 * Initialisation shared by main() and some tests. |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
928 */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
929 void |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
930 common_init(mparm_T *paramp) |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
931 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
932 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
933 #ifdef FEAT_MBYTE |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
934 (void)mb_init(); /* init mb_bytelen_tab[] to ones */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
935 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
936 #ifdef FEAT_EVAL |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
937 eval_init(); /* init global variables */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
938 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
939 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
940 #ifdef __QNXNTO__ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
941 qnx_init(); /* PhAttach() for clipboard, (and gui) */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
942 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
943 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
944 /* Init the table of Normal mode commands. */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
945 init_normal_cmds(); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
946 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
947 /* |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
948 * Allocate space for the generic buffers (needed for set_init_1() and |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
949 * EMSG2()). |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
950 */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
951 if ((IObuff = alloc(IOSIZE)) == NULL |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
952 || (NameBuff = alloc(MAXPATHL)) == NULL) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
953 mch_exit(0); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
954 TIME_MSG("Allocated generic buffers"); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
955 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
956 #ifdef NBDEBUG |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
957 /* Wait a moment for debugging NetBeans. Must be after allocating |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
958 * NameBuff. */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
959 nbdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL"); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
960 nbdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
961 TIME_MSG("NetBeans debug wait"); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
962 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
963 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
964 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
965 /* |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
966 * Setup to use the current locale (for ctype() and many other things). |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
967 * NOTE: Translated messages with encodings other than latin1 will not |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
968 * work until set_init_1() has been called! |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
969 */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
970 init_locale(); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
971 TIME_MSG("locale set"); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
972 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
973 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
974 #ifdef FEAT_GUI |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
975 gui.dofork = TRUE; /* default is to use fork() */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
976 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
977 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
978 /* |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
979 * Do a first scan of the arguments in "argv[]": |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
980 * -display or --display |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
981 * --server... |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
982 * --socketid |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
983 * --windowid |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
984 */ |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
985 early_arg_scan(paramp); |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
986 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
987 #ifdef FEAT_SUN_WORKSHOP |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
988 findYourself(paramp->argv[0]); |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
989 #endif |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12678
diff
changeset
|
990 #if defined(FEAT_GUI) |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
991 /* Prepare for possibly starting GUI sometime */ |
9802
4cb5ab124239
commit https://github.com/vim/vim/commit/a8e691d44937fd9d72dcbad2b8c673682277f13d
Christian Brabandt <cb@256bit.org>
parents:
9778
diff
changeset
|
992 gui_prepare(¶mp->argc, paramp->argv); |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
993 TIME_MSG("GUI prepared"); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
994 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
995 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
996 #ifdef FEAT_CLIPBOARD |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
997 clip_init(FALSE); /* Initialise clipboard stuff */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
998 TIME_MSG("clipboard setup"); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
999 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1000 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1001 /* |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1002 * Check if we have an interactive window. |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1003 * On the Amiga: If there is no window, we open one with a newcli command |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1004 * (needed for :! to * work). mch_check_win() will also handle the -d or |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1005 * -dev argument. |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1006 */ |
10404
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1007 stdout_isatty = (mch_check_win(paramp->argc, paramp->argv) != FAIL); |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1008 TIME_MSG("window checked"); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1009 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1010 /* |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1011 * Allocate the first window and buffer. |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1012 * Can't do anything without it, exit when it fails. |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1013 */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1014 if (win_alloc_first() == FAIL) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1015 mch_exit(0); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1016 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1017 init_yank(); /* init yank buffers */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1018 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1019 alist_init(&global_alist); /* Init the argument list to empty. */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1020 global_alist.id = 0; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1021 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1022 /* |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1023 * Set the default values for the options. |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1024 * NOTE: Non-latin1 translated messages are working only after this, |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1025 * because this is where "has_mbyte" will be set, which is used by |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1026 * msg_outtrans_len_attr(). |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1027 * First find out the home directory, needed to expand "~" in options. |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1028 */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1029 init_homedir(); /* find real value of $HOME */ |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1030 set_init_1(paramp->clean); |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1031 TIME_MSG("inits 1"); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1032 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1033 #ifdef FEAT_EVAL |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1034 set_lang_var(); /* set v:lang and v:ctype */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1035 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1036 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1037 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1038 /* |
11307
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
1039 * Return TRUE when the --not-a-term argument was found. |
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
1040 */ |
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
1041 int |
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
1042 is_not_a_term() |
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
1043 { |
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
1044 return params.not_a_term; |
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
1045 } |
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
1046 |
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
1047 /* |
6 | 1048 * Main loop: Execute Normal mode commands until exiting Vim. |
1049 * Also used to handle commands in the command-line window, until the window | |
1050 * is closed. | |
169 | 1051 * Also used to handle ":visual" command after ":global": execute Normal mode |
1052 * commands, return when entering Ex mode. "noexmode" is TRUE then. | |
6 | 1053 */ |
1054 void | |
7598
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1055 main_loop( |
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1056 int cmdwin, /* TRUE when working in the command-line window */ |
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1057 int noexmode) /* TRUE when return on entering Ex mode */ |
6 | 1058 { |
13708
7c84c16fd376
patch 8.0.1726: older MSVC doesn't support declarations halfway a block
Christian Brabandt <cb@256bit.org>
parents:
13704
diff
changeset
|
1059 oparg_T oa; /* operator arguments */ |
6604 | 1060 volatile int previous_got_int = FALSE; /* "got_int" was TRUE */ |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1061 #ifdef FEAT_CONCEAL |
6923 | 1062 /* these are static to avoid a compiler warning */ |
1063 static linenr_T conceal_old_cursor_line = 0; | |
1064 static linenr_T conceal_new_cursor_line = 0; | |
1065 static int conceal_update_lines = FALSE; | |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1066 #endif |
6 | 1067 |
1068 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) | |
1069 /* Setup to catch a terminating error from the X server. Just ignore | |
1070 * it, restore the state and continue. This might not always work | |
1071 * properly, but at least we don't exit unexpectedly when the X server | |
5598 | 1072 * exits while Vim is running in a console. */ |
169 | 1073 if (!cmdwin && !noexmode && SETJMP(x_jump_env)) |
6 | 1074 { |
1075 State = NORMAL; | |
1076 VIsual_active = FALSE; | |
1077 got_int = TRUE; | |
1078 need_wait_return = FALSE; | |
1079 global_busy = FALSE; | |
1080 exmode_active = 0; | |
1081 skip_redraw = FALSE; | |
1082 RedrawingDisabled = 0; | |
1083 no_wait_return = 0; | |
3119 | 1084 vgetc_busy = 0; |
6 | 1085 # ifdef FEAT_EVAL |
1086 emsg_skip = 0; | |
1087 # endif | |
1088 emsg_off = 0; | |
1089 # ifdef FEAT_MOUSE | |
1090 setmouse(); | |
1091 # endif | |
1092 settmode(TMODE_RAW); | |
1093 starttermcap(); | |
1094 scroll_start(); | |
1095 redraw_later_clear(); | |
1096 } | |
1097 #endif | |
1098 | |
1099 clear_oparg(&oa); | |
1100 while (!cmdwin | |
1101 #ifdef FEAT_CMDWIN | |
1102 || cmdwin_result == 0 | |
1103 #endif | |
1104 ) | |
1105 { | |
1106 if (stuff_empty()) | |
1107 { | |
1108 did_check_timestamps = FALSE; | |
1109 if (need_check_timestamps) | |
1110 check_timestamps(FALSE); | |
1111 if (need_wait_return) /* if wait_return still needed ... */ | |
1112 wait_return(FALSE); /* ... call it now */ | |
5735 | 1113 if (need_start_insertmode && goto_im() && !VIsual_active) |
6 | 1114 { |
1115 need_start_insertmode = FALSE; | |
1116 stuffReadbuff((char_u *)"i"); /* start insert mode next */ | |
1117 /* skip the fileinfo message now, because it would be shown | |
1118 * after insert mode finishes! */ | |
1119 need_fileinfo = FALSE; | |
1120 } | |
1121 } | |
1345 | 1122 |
1123 /* Reset "got_int" now that we got back to the main loop. Except when | |
1124 * inside a ":g/pat/cmd" command, then the "got_int" needs to abort | |
1125 * the ":g" command. | |
1126 * For ":g/pat/vi" we reset "got_int" when used once. When used | |
1127 * a second time we go back to Ex mode and abort the ":g" command. */ | |
1128 if (got_int) | |
6 | 1129 { |
1345 | 1130 if (noexmode && global_busy && !exmode_active && previous_got_int) |
1131 { | |
1132 /* Typed two CTRL-C in a row: go back to ex mode as if "Q" was | |
1133 * used and keep "got_int" set, so that it aborts ":g". */ | |
1134 exmode_active = EXMODE_NORMAL; | |
1135 State = NORMAL; | |
1136 } | |
1137 else if (!global_busy || !exmode_active) | |
1138 { | |
1139 if (!quit_more) | |
1140 (void)vgetc(); /* flush all buffers */ | |
1141 got_int = FALSE; | |
1142 } | |
1143 previous_got_int = TRUE; | |
6 | 1144 } |
1345 | 1145 else |
1146 previous_got_int = FALSE; | |
1147 | |
6 | 1148 if (!exmode_active) |
1149 msg_scroll = FALSE; | |
1150 quit_more = FALSE; | |
1151 | |
1152 /* | |
1153 * If skip redraw is set (for ":" in wait_return()), don't redraw now. | |
1154 * If there is nothing in the stuff_buffer or do_redraw is TRUE, | |
1155 * update cursor and redraw. | |
1156 */ | |
1157 if (skip_redraw || exmode_active) | |
1158 skip_redraw = FALSE; | |
1159 else if (do_redraw || stuff_empty()) | |
1160 { | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1161 #ifdef FEAT_GUI |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14171
diff
changeset
|
1162 // If ui_breakcheck() was used a resize may have been postponed. |
10819
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10404
diff
changeset
|
1163 gui_may_resize_shell(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1164 #endif |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14171
diff
changeset
|
1165 #ifdef HAVE_DROP_FILE |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14171
diff
changeset
|
1166 // If files were dropped while text was locked or the curbuf was |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14171
diff
changeset
|
1167 // locked, this would be a good time to handle the drop. |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14171
diff
changeset
|
1168 handle_any_postponed_drop(); |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14171
diff
changeset
|
1169 #endif |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14171
diff
changeset
|
1170 |
662 | 1171 /* Trigger CursorMoved if the cursor moved. */ |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1172 if (!finish_op && ( |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1173 has_cursormoved() |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1174 #ifdef FEAT_CONCEAL |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1175 || curwin->w_p_cole > 0 |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1176 #endif |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1177 ) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1178 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)) |
662 | 1179 { |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1180 if (has_cursormoved()) |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1181 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1182 FALSE, curbuf); |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1183 # ifdef FEAT_CONCEAL |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
1184 if (curwin->w_p_cole > 0) |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1185 { |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1186 conceal_old_cursor_line = last_cursormoved.lnum; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1187 conceal_new_cursor_line = curwin->w_cursor.lnum; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1188 conceal_update_lines = TRUE; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1189 } |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1190 # endif |
662 | 1191 last_cursormoved = curwin->w_cursor; |
1192 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1193 |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
1194 /* Trigger TextChanged if b:changedtick differs. */ |
4232 | 1195 if (!finish_op && has_textchanged() |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
1196 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf)) |
4232 | 1197 { |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
1198 apply_autocmds(EVENT_TEXTCHANGED, NULL, NULL, FALSE, curbuf); |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
1199 curbuf->b_last_changedtick = CHANGEDTICK(curbuf); |
4232 | 1200 } |
1201 | |
13384
6740c499de13
patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1202 #if defined(FEAT_DIFF) |
640 | 1203 /* Scroll-binding for diff mode may have been postponed until |
1204 * here. Avoids doing it for every change. */ | |
1205 if (diff_need_scrollbind) | |
1206 { | |
1207 check_scrollbind((linenr_T)0, 0L); | |
1208 diff_need_scrollbind = FALSE; | |
1209 } | |
1210 #endif | |
5735 | 1211 #if defined(FEAT_FOLDING) |
6 | 1212 /* Include a closed fold completely in the Visual area. */ |
1213 foldAdjustVisual(); | |
1214 #endif | |
1215 #ifdef FEAT_FOLDING | |
1216 /* | |
1217 * When 'foldclose' is set, apply 'foldlevel' to folds that don't | |
1218 * contain the cursor. | |
1219 * When 'foldopen' is "all", open the fold(s) under the cursor. | |
1220 * This may mark the window for redrawing. | |
1221 */ | |
1222 if (hasAnyFolding(curwin) && !char_avail()) | |
1223 { | |
1224 foldCheckClose(); | |
1225 if (fdo_flags & FDO_ALL) | |
1226 foldOpenCursor(); | |
1227 } | |
1228 #endif | |
1229 | |
1230 /* | |
1231 * Before redrawing, make sure w_topline is correct, and w_leftcol | |
1232 * if lines don't wrap, and w_skipcol if lines wrap. | |
1233 */ | |
1234 update_topline(); | |
1235 validate_cursor(); | |
1236 | |
1237 if (VIsual_active) | |
1238 update_curbuf(INVERTED);/* update inverted part */ | |
5735 | 1239 else if (must_redraw) |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
1240 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
1241 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */ |
6 | 1242 update_screen(0); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
1243 mch_enable_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
1244 } |
6 | 1245 else if (redraw_cmdline || clear_cmdline) |
1246 showmode(); | |
1247 redraw_statuslines(); | |
1248 #ifdef FEAT_TITLE | |
1249 if (need_maketitle) | |
1250 maketitle(); | |
1251 #endif | |
9414
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
1252 #ifdef FEAT_VIMINFO |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
1253 curbuf->b_last_used = vim_time(); |
1003973c99df
commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
1254 #endif |
6 | 1255 /* display message after redraw */ |
1256 if (keep_msg != NULL) | |
1257 { | |
1258 char_u *p; | |
1259 | |
1260 /* msg_attr_keep() will set keep_msg to NULL, must free the | |
6207 | 1261 * string here. Don't reset keep_msg, msg_attr_keep() uses it |
1262 * to check for duplicates. */ | |
6 | 1263 p = keep_msg; |
1264 msg_attr(p, keep_msg_attr); | |
1265 vim_free(p); | |
1266 } | |
1267 if (need_fileinfo) /* show file info after redraw */ | |
1268 { | |
1269 fileinfo(FALSE, TRUE, FALSE); | |
1270 need_fileinfo = FALSE; | |
1271 } | |
1272 | |
1273 emsg_on_display = FALSE; /* can delete error message now */ | |
1274 did_emsg = FALSE; | |
1275 msg_didany = FALSE; /* reset lines_left in msg_start() */ | |
448 | 1276 may_clear_sb_text(); /* clear scroll-back text on next msg */ |
6 | 1277 showruler(FALSE); |
1278 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1279 #if defined(FEAT_CONCEAL) |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1280 if (conceal_update_lines |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
1281 && (conceal_old_cursor_line != conceal_new_cursor_line |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
1282 || conceal_cursor_line(curwin) |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
1283 || need_cursor_line_redraw)) |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1284 { |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
1285 mch_disable_flush(); /* Stop issuing gui_mch_flush(). */ |
2706 | 1286 if (conceal_old_cursor_line != conceal_new_cursor_line |
1287 && conceal_old_cursor_line | |
1288 <= curbuf->b_ml.ml_line_count) | |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
1289 update_single_line(curwin, conceal_old_cursor_line); |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1290 update_single_line(curwin, conceal_new_cursor_line); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
1291 mch_enable_flush(); |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1292 curwin->w_valid &= ~VALID_CROW; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1293 } |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1294 #endif |
6 | 1295 setcursor(); |
1296 cursor_on(); | |
1297 | |
1298 do_redraw = FALSE; | |
1972 | 1299 |
1300 #ifdef STARTUPTIME | |
1301 /* Now that we have drawn the first screen all the startup stuff | |
1302 * has been done, close any file for startup messages. */ | |
1303 if (time_fd != NULL) | |
1304 { | |
1305 TIME_MSG("first screen update"); | |
1306 TIME_MSG("--- VIM STARTED ---"); | |
1307 fclose(time_fd); | |
1308 time_fd = NULL; | |
1309 } | |
1310 #endif | |
6 | 1311 } |
1312 #ifdef FEAT_GUI | |
1313 if (need_mouse_correct) | |
1314 gui_mouse_correct(); | |
1315 #endif | |
1316 | |
1317 /* | |
1318 * Update w_curswant if w_set_curswant has been set. | |
1319 * Postponed until here to avoid computing w_virtcol too often. | |
1320 */ | |
1321 update_curswant(); | |
1322 | |
958 | 1323 #ifdef FEAT_EVAL |
1324 /* | |
1325 * May perform garbage collection when waiting for a character, but | |
1326 * only at the very toplevel. Otherwise we may be using a List or | |
1327 * Dict internally somewhere. | |
1328 * "may_garbage_collect" is reset in vgetc() which is invoked through | |
1329 * do_exmode() and normal_cmd(). | |
1330 */ | |
1331 may_garbage_collect = (!cmdwin && !noexmode); | |
1332 #endif | |
6 | 1333 /* |
1334 * If we're invoked as ex, do a round of ex commands. | |
1335 * Otherwise, get and execute a normal mode command. | |
1336 */ | |
1337 if (exmode_active) | |
169 | 1338 { |
1339 if (noexmode) /* End of ":global/path/visual" commands */ | |
1340 return; | |
6 | 1341 do_exmode(exmode_active == EXMODE_VIM); |
169 | 1342 } |
6 | 1343 else |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11666
diff
changeset
|
1344 { |
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11666
diff
changeset
|
1345 #ifdef FEAT_TERMINAL |
11993
92a86fe8adc0
patch 8.0.0877: using CTRL- CTRL-N in terminal is inconsistent
Christian Brabandt <cb@256bit.org>
parents:
11985
diff
changeset
|
1346 if (term_use_loop() |
11985
d036c1c8537d
patch 8.0.0873: in terminal cannot use CTRL- CTRL-N to start Visual mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
1347 && oa.op_type == OP_NOP && oa.regname == NUL |
14129
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
13841
diff
changeset
|
1348 && !VIsual_active |
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
13841
diff
changeset
|
1349 && !skip_term_loop) |
11866
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11684
diff
changeset
|
1350 { |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11684
diff
changeset
|
1351 /* If terminal_loop() returns OK we got a key that is handled |
11993
92a86fe8adc0
patch 8.0.0877: using CTRL- CTRL-N in terminal is inconsistent
Christian Brabandt <cb@256bit.org>
parents:
11985
diff
changeset
|
1352 * in Normal model. With FAIL we first need to position the |
92a86fe8adc0
patch 8.0.0877: using CTRL- CTRL-N in terminal is inconsistent
Christian Brabandt <cb@256bit.org>
parents:
11985
diff
changeset
|
1353 * cursor and the screen needs to be redrawn. */ |
12457
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12148
diff
changeset
|
1354 if (terminal_loop(TRUE) == OK) |
11866
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11684
diff
changeset
|
1355 normal_cmd(&oa, TRUE); |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11684
diff
changeset
|
1356 } |
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11684
diff
changeset
|
1357 else |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11666
diff
changeset
|
1358 #endif |
14129
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
13841
diff
changeset
|
1359 { |
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
13841
diff
changeset
|
1360 #ifdef FEAT_TERMINAL |
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
13841
diff
changeset
|
1361 skip_term_loop = FALSE; |
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
13841
diff
changeset
|
1362 #endif |
11866
be40c8a9240d
patch 8.0.0813: cannot use a terminal window while the job is running
Christian Brabandt <cb@256bit.org>
parents:
11684
diff
changeset
|
1363 normal_cmd(&oa, TRUE); |
14129
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
13841
diff
changeset
|
1364 } |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11666
diff
changeset
|
1365 } |
6 | 1366 } |
1367 } | |
1368 | |
1369 | |
8617
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1370 #if defined(USE_XSMP) || defined(FEAT_GUI) || defined(PROTO) |
6 | 1371 /* |
1372 * Exit, but leave behind swap files for modified buffers. | |
1373 */ | |
1374 void | |
7598
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1375 getout_preserve_modified(int exitval) |
6 | 1376 { |
39 | 1377 # if defined(SIGHUP) && defined(SIG_IGN) |
1378 /* Ignore SIGHUP, because a dropped connection causes a read error, which | |
1379 * makes Vim exit and then handling SIGHUP causes various reentrance | |
1380 * problems. */ | |
36 | 1381 signal(SIGHUP, SIG_IGN); |
39 | 1382 # endif |
36 | 1383 |
6 | 1384 ml_close_notmod(); /* close all not-modified buffers */ |
1385 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
1386 ml_close_all(FALSE); /* close all memfiles, without deleting */ | |
1387 getout(exitval); /* exit Vim properly */ | |
1388 } | |
1389 #endif | |
1390 | |
1391 | |
8617
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1392 /* |
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1393 * Exit properly. |
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1394 */ |
6 | 1395 void |
7598
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1396 getout(int exitval) |
6 | 1397 { |
1398 exiting = TRUE; | |
13509
0c56cfb463f0
patch 8.0.1628: channel log doesn't mention exiting
Christian Brabandt <cb@256bit.org>
parents:
13466
diff
changeset
|
1399 #if defined(FEAT_JOB_CHANNEL) |
0c56cfb463f0
patch 8.0.1628: channel log doesn't mention exiting
Christian Brabandt <cb@256bit.org>
parents:
13466
diff
changeset
|
1400 ch_log(NULL, "Exiting..."); |
0c56cfb463f0
patch 8.0.1628: channel log doesn't mention exiting
Christian Brabandt <cb@256bit.org>
parents:
13466
diff
changeset
|
1401 #endif |
6 | 1402 |
169 | 1403 /* When running in Ex mode an error causes us to exit with a non-zero exit |
1404 * code. POSIX requires this, although it's not 100% clear from the | |
1405 * standard. */ | |
1406 if (exmode_active) | |
1407 exitval += ex_exitval; | |
1408 | |
6 | 1409 /* Position the cursor on the last screen line, below all the text */ |
1410 #ifdef FEAT_GUI | |
1411 if (!gui.in_use) | |
1412 #endif | |
1413 windgoto((int)Rows - 1, 0); | |
1414 | |
242 | 1415 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL) |
1416 /* Optionally print hashtable efficiency. */ | |
1417 hash_debug_results(); | |
1418 #endif | |
1419 | |
6 | 1420 #ifdef FEAT_GUI |
1421 msg_didany = FALSE; | |
1422 #endif | |
1423 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1424 if (v_dying <= 1) |
6 | 1425 { |
13708
7c84c16fd376
patch 8.0.1726: older MSVC doesn't support declarations halfway a block
Christian Brabandt <cb@256bit.org>
parents:
13704
diff
changeset
|
1426 tabpage_T *tp; |
7c84c16fd376
patch 8.0.1726: older MSVC doesn't support declarations halfway a block
Christian Brabandt <cb@256bit.org>
parents:
13704
diff
changeset
|
1427 tabpage_T *next_tp; |
7c84c16fd376
patch 8.0.1726: older MSVC doesn't support declarations halfway a block
Christian Brabandt <cb@256bit.org>
parents:
13704
diff
changeset
|
1428 buf_T *buf; |
7c84c16fd376
patch 8.0.1726: older MSVC doesn't support declarations halfway a block
Christian Brabandt <cb@256bit.org>
parents:
13704
diff
changeset
|
1429 win_T *wp; |
7c84c16fd376
patch 8.0.1726: older MSVC doesn't support declarations halfway a block
Christian Brabandt <cb@256bit.org>
parents:
13704
diff
changeset
|
1430 |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1431 /* Trigger BufWinLeave for all windows, but only once per buffer. */ |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1432 for (tp = first_tabpage; tp != NULL; tp = next_tp) |
6 | 1433 { |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1434 next_tp = tp->tp_next; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9542
diff
changeset
|
1435 FOR_ALL_WINDOWS_IN_TAB(tp, wp) |
671 | 1436 { |
4021 | 1437 if (wp->w_buffer == NULL) |
1438 /* Autocmd must have close the buffer already, skip. */ | |
1439 continue; | |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1440 buf = wp->w_buffer; |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
1441 if (CHANGEDTICK(buf) != -1) |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1442 { |
13058
1293c33ff452
patch 8.0.1404: invalid memory access on exit
Christian Brabandt <cb@256bit.org>
parents:
12837
diff
changeset
|
1443 bufref_T bufref; |
1293c33ff452
patch 8.0.1404: invalid memory access on exit
Christian Brabandt <cb@256bit.org>
parents:
12837
diff
changeset
|
1444 |
1293c33ff452
patch 8.0.1404: invalid memory access on exit
Christian Brabandt <cb@256bit.org>
parents:
12837
diff
changeset
|
1445 set_bufref(&bufref, buf); |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1446 apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1447 buf->b_fname, FALSE, buf); |
13058
1293c33ff452
patch 8.0.1404: invalid memory access on exit
Christian Brabandt <cb@256bit.org>
parents:
12837
diff
changeset
|
1448 if (bufref_valid(&bufref)) |
1293c33ff452
patch 8.0.1404: invalid memory access on exit
Christian Brabandt <cb@256bit.org>
parents:
12837
diff
changeset
|
1449 CHANGEDTICK(buf) = -1; /* note we did it already */ |
1293c33ff452
patch 8.0.1404: invalid memory access on exit
Christian Brabandt <cb@256bit.org>
parents:
12837
diff
changeset
|
1450 |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1451 /* start all over, autocommands may mess up the lists */ |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1452 next_tp = first_tabpage; |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1453 break; |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1454 } |
671 | 1455 } |
6 | 1456 } |
640 | 1457 |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1458 /* Trigger BufUnload for buffers that are loaded */ |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9542
diff
changeset
|
1459 FOR_ALL_BUFFERS(buf) |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1460 if (buf->b_ml.ml_mfp != NULL) |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1461 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
1462 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
1463 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
1464 set_bufref(&bufref, buf); |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1465 apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname, |
6 | 1466 FALSE, buf); |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
1467 if (!bufref_valid(&bufref)) |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9414
diff
changeset
|
1468 /* autocmd deleted the buffer */ |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1469 break; |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1470 } |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1471 apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf); |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1472 } |
6 | 1473 |
1474 #ifdef FEAT_VIMINFO | |
1475 if (*p_viminfo != NUL) | |
1476 /* Write out the registers, history, marks etc, to the viminfo file */ | |
1477 write_viminfo(NULL, FALSE); | |
1478 #endif | |
1479 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1480 if (v_dying <= 1) |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
1481 apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf); |
6 | 1482 |
170 | 1483 #ifdef FEAT_PROFILE |
1484 profile_dump(); | |
1485 #endif | |
1486 | |
6 | 1487 if (did_emsg |
1488 #ifdef FEAT_GUI | |
1489 || (gui.in_use && msg_didany && p_verbose > 0) | |
1490 #endif | |
1491 ) | |
1492 { | |
1493 /* give the user a chance to read the (error) message */ | |
1494 no_wait_return = FALSE; | |
1495 wait_return(FALSE); | |
1496 } | |
1497 | |
1498 /* Position the cursor again, the autocommands may have moved it */ | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1499 #ifdef FEAT_GUI |
6 | 1500 if (!gui.in_use) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13363
diff
changeset
|
1501 #endif |
6 | 1502 windgoto((int)Rows - 1, 0); |
1503 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8362
diff
changeset
|
1504 #ifdef FEAT_JOB_CHANNEL |
8170
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1505 job_stop_on_exit(); |
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1506 #endif |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2312
diff
changeset
|
1507 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2312
diff
changeset
|
1508 lua_end(); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2312
diff
changeset
|
1509 #endif |
14 | 1510 #ifdef FEAT_MZSCHEME |
1511 mzscheme_end(); | |
1512 #endif | |
6 | 1513 #ifdef FEAT_TCL |
1514 tcl_end(); | |
1515 #endif | |
1516 #ifdef FEAT_RUBY | |
1517 ruby_end(); | |
1518 #endif | |
1519 #ifdef FEAT_PYTHON | |
1520 python_end(); | |
1521 #endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1522 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1523 python3_end(); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1524 #endif |
6 | 1525 #ifdef FEAT_PERL |
1526 perl_end(); | |
1527 #endif | |
1528 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV) | |
1529 iconv_end(); | |
1530 #endif | |
1531 #ifdef FEAT_NETBEANS_INTG | |
1532 netbeans_end(); | |
1533 #endif | |
1385 | 1534 #ifdef FEAT_CSCOPE |
1535 cs_end(); | |
1536 #endif | |
1405 | 1537 #ifdef FEAT_EVAL |
1538 if (garbage_collect_at_exit) | |
8881
ed0b39dd7fd6
commit https://github.com/vim/vim/commit/ebf7dfa6f121c82f97d2adca3d45fbaba9ad8f7e
Christian Brabandt <cb@256bit.org>
parents:
8857
diff
changeset
|
1539 garbage_collect(FALSE); |
1405 | 1540 #endif |
6193 | 1541 #if defined(WIN32) && defined(FEAT_MBYTE) |
1542 free_cmd_argsW(); | |
1543 #endif | |
6 | 1544 |
1545 mch_exit(exitval); | |
1546 } | |
1547 | |
443 | 1548 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE) |
1549 /* | |
1550 * Setup to use the current locale (for ctype() and many other things). | |
1551 */ | |
1552 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1553 init_locale(void) |
443 | 1554 { |
1555 setlocale(LC_ALL, ""); | |
1624 | 1556 |
2201
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1557 # ifdef FEAT_GUI_GTK |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1558 /* Tell Gtk not to change our locale settings. */ |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1559 gtk_disable_setlocale(); |
4c6b4298852f
Other solution for GTK not changing the locale.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1560 # endif |
1624 | 1561 # if defined(FEAT_FLOAT) && defined(LC_NUMERIC) |
1562 /* Make sure strtod() uses a decimal point, not a comma. */ | |
1563 setlocale(LC_NUMERIC, "C"); | |
1564 # endif | |
1565 | |
534 | 1566 # ifdef WIN32 |
1567 /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit | |
1568 * text while it's expecting text in the current locale. This call avoids | |
1569 * that. */ | |
1570 setlocale(LC_CTYPE, "C"); | |
1571 # endif | |
443 | 1572 |
1573 # ifdef FEAT_GETTEXT | |
1574 { | |
1575 int mustfree = FALSE; | |
1576 char_u *p; | |
1577 | |
1578 # ifdef DYNAMIC_GETTEXT | |
1579 /* Initialize the gettext library */ | |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
1580 dyn_libintl_init(); |
443 | 1581 # endif |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
1582 /* expand_env() doesn't work yet, because g_chartab[] is not |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
1583 * initialized yet, call vim_getenv() directly */ |
443 | 1584 p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); |
1585 if (p != NULL && *p != NUL) | |
1586 { | |
1297 | 1587 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p); |
443 | 1588 bindtextdomain(VIMPACKAGE, (char *)NameBuff); |
1589 } | |
1590 if (mustfree) | |
1591 vim_free(p); | |
1592 textdomain(VIMPACKAGE); | |
1593 } | |
1594 # endif | |
1595 } | |
1596 #endif | |
1597 | |
1598 /* | |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1599 * Get the name of the display, before gui_prepare() removes it from |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1600 * argv[]. Used for the xterm-clipboard display. |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1601 * |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1602 * Also find the --server... arguments and --socketid and --windowid |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1603 */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1604 static void |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1605 early_arg_scan(mparm_T *parmp UNUSED) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1606 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1607 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1608 || !defined(FEAT_NETBEANS_INTG) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1609 int argc = parmp->argc; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1610 char **argv = parmp->argv; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1611 int i; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1612 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1613 for (i = 1; i < argc; i++) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1614 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1615 if (STRCMP(argv[i], "--") == 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1616 break; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1617 # ifdef FEAT_XCLIPBOARD |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1618 else if (STRICMP(argv[i], "-display") == 0 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1619 # if defined(FEAT_GUI_GTK) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1620 || STRICMP(argv[i], "--display") == 0 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1621 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1622 ) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1623 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1624 if (i == argc - 1) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1625 mainerr_arg_missing((char_u *)argv[i]); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1626 xterm_display = argv[++i]; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1627 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1628 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1629 # ifdef FEAT_CLIENTSERVER |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1630 else if (STRICMP(argv[i], "--servername") == 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1631 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1632 if (i == argc - 1) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1633 mainerr_arg_missing((char_u *)argv[i]); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1634 parmp->serverName_arg = (char_u *)argv[++i]; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1635 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1636 else if (STRICMP(argv[i], "--serverlist") == 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1637 parmp->serverArg = TRUE; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1638 else if (STRNICMP(argv[i], "--remote", 8) == 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1639 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1640 parmp->serverArg = TRUE; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1641 # ifdef FEAT_GUI |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1642 if (strstr(argv[i], "-wait") != 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1643 /* don't fork() when starting the GUI to edit files ourself */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1644 gui.dofork = FALSE; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1645 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1646 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1647 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1648 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1649 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1650 # ifdef FEAT_GUI_W32 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1651 else if (STRICMP(argv[i], "--windowid") == 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1652 # else |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1653 else if (STRICMP(argv[i], "--socketid") == 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1654 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1655 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1656 long_u id; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1657 int count; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1658 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1659 if (i == argc - 1) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1660 mainerr_arg_missing((char_u *)argv[i]); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1661 if (STRNICMP(argv[i+1], "0x", 2) == 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1662 count = sscanf(&(argv[i + 1][2]), SCANF_HEX_LONG_U, &id); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1663 else |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1664 count = sscanf(argv[i + 1], SCANF_DECIMAL_LONG_U, &id); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1665 if (count != 1) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1666 mainerr(ME_INVALID_ARG, (char_u *)argv[i]); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1667 else |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1668 # ifdef FEAT_GUI_W32 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1669 win_socket_id = id; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1670 # else |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1671 gtk_socket_id = id; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1672 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1673 i++; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1674 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1675 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1676 # ifdef FEAT_GUI_GTK |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1677 else if (STRICMP(argv[i], "--echo-wid") == 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1678 echo_wid_arg = TRUE; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1679 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1680 # ifndef FEAT_NETBEANS_INTG |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1681 else if (strncmp(argv[i], "-nb", (size_t)3) == 0) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1682 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1683 mch_errmsg(_("'-nb' cannot be used: not enabled at compile time\n")); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1684 mch_exit(2); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1685 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1686 # endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1687 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1688 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1689 #endif |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1690 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1691 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1692 #ifndef NO_VIM_MAIN |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1693 /* |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1694 * Get a (optional) count for a Vim argument. |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1695 */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1696 static int |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1697 get_number_arg( |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1698 char_u *p, /* pointer to argument */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1699 int *idx, /* index in argument, is incremented */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1700 int def) /* default value */ |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1701 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1702 if (vim_isdigit(p[*idx])) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1703 { |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1704 def = atoi((char *)&(p[*idx])); |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1705 while (vim_isdigit(p[*idx])) |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1706 *idx = *idx + 1; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1707 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1708 return def; |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1709 } |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1710 |
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1711 /* |
443 | 1712 * Check for: [r][e][g][vi|vim|view][diff][ex[im]] |
1713 * If the executable name starts with "r" we disable shell commands. | |
1714 * If the next character is "e" we run in Easy mode. | |
1715 * If the next character is "g" we run the GUI version. | |
1716 * If the next characters are "view" we start in readonly mode. | |
1717 * If the next characters are "diff" or "vimdiff" we start in diff mode. | |
1718 * If the next characters are "ex" we start in Ex mode. If it's followed | |
1719 * by "im" use improved Ex mode. | |
1720 */ | |
1721 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1722 parse_command_name(mparm_T *parmp) |
443 | 1723 { |
1724 char_u *initstr; | |
1725 | |
1726 initstr = gettail((char_u *)parmp->argv[0]); | |
1727 | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12678
diff
changeset
|
1728 #ifdef FEAT_GUI_MAC |
443 | 1729 /* An issue has been seen when launching Vim in such a way that |
1730 * $PWD/$ARGV[0] or $ARGV[0] is not the absolute path to the | |
1731 * executable or a symbolic link of it. Until this issue is resolved | |
1732 * we prohibit the GUI from being used. | |
1733 */ | |
1734 if (STRCMP(initstr, parmp->argv[0]) == 0) | |
1735 disallow_gui = TRUE; | |
1736 | |
1737 /* TODO: On MacOS X default to gui if argv[0] ends in: | |
769 | 1738 * /Vim.app/Contents/MacOS/Vim */ |
443 | 1739 #endif |
1740 | |
1741 #ifdef FEAT_EVAL | |
1742 set_vim_var_string(VV_PROGNAME, initstr, -1); | |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
1743 set_progpath((char_u *)parmp->argv[0]); |
443 | 1744 #endif |
1745 | |
1746 if (TOLOWER_ASC(initstr[0]) == 'r') | |
1747 { | |
1748 restricted = TRUE; | |
1749 ++initstr; | |
1750 } | |
1751 | |
2133
2b273c71a14b
updated for version 7.2.415
Bram Moolenaar <bram@zimbu.org>
parents:
2021
diff
changeset
|
1752 /* Use evim mode for "evim" and "egvim", not for "editor". */ |
443 | 1753 if (TOLOWER_ASC(initstr[0]) == 'e' |
1754 && (TOLOWER_ASC(initstr[1]) == 'v' | |
1755 || TOLOWER_ASC(initstr[1]) == 'g')) | |
1756 { | |
1757 #ifdef FEAT_GUI | |
1758 gui.starting = TRUE; | |
1759 #endif | |
1760 parmp->evim_mode = TRUE; | |
1761 ++initstr; | |
1762 } | |
1763 | |
1722 | 1764 /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */ |
1765 if (TOLOWER_ASC(initstr[0]) == 'g') | |
443 | 1766 { |
1767 main_start_gui(); | |
1768 #ifdef FEAT_GUI | |
1769 ++initstr; | |
1770 #endif | |
1771 } | |
1772 | |
1773 if (STRNICMP(initstr, "view", 4) == 0) | |
1774 { | |
1775 readonlymode = TRUE; | |
1776 curbuf->b_p_ro = TRUE; | |
1777 p_uc = 10000; /* don't update very often */ | |
1778 initstr += 4; | |
1779 } | |
1780 else if (STRNICMP(initstr, "vim", 3) == 0) | |
1781 initstr += 3; | |
1782 | |
1783 /* Catch "[r][g]vimdiff" and "[r][g]viewdiff". */ | |
1784 if (STRICMP(initstr, "diff") == 0) | |
1785 { | |
1786 #ifdef FEAT_DIFF | |
1787 parmp->diff_mode = TRUE; | |
1788 #else | |
1789 mch_errmsg(_("This Vim was not compiled with the diff feature.")); | |
1790 mch_errmsg("\n"); | |
1791 mch_exit(2); | |
1792 #endif | |
1793 } | |
1794 | |
1795 if (STRNICMP(initstr, "ex", 2) == 0) | |
1796 { | |
1797 if (STRNICMP(initstr + 2, "im", 2) == 0) | |
1798 exmode_active = EXMODE_VIM; | |
1799 else | |
1800 exmode_active = EXMODE_NORMAL; | |
1801 change_compatible(TRUE); /* set 'compatible' */ | |
1802 } | |
1803 } | |
1804 | |
6 | 1805 /* |
443 | 1806 * Scan the command line arguments. |
1807 */ | |
1808 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1809 command_line_scan(mparm_T *parmp) |
443 | 1810 { |
1811 int argc = parmp->argc; | |
1812 char **argv = parmp->argv; | |
1813 int argv_idx; /* index in argv[n][] */ | |
1814 int had_minmin = FALSE; /* found "--" argument */ | |
1815 int want_argument; /* option argument with argument */ | |
1816 int c; | |
445 | 1817 char_u *p = NULL; |
443 | 1818 long n; |
1819 | |
1820 --argc; | |
1821 ++argv; | |
1822 argv_idx = 1; /* active option letter is argv[0][argv_idx] */ | |
1823 while (argc > 0) | |
1824 { | |
1825 /* | |
1826 * "+" or "+{number}" or "+/{pat}" or "+{command}" argument. | |
1827 */ | |
1828 if (argv[0][0] == '+' && !had_minmin) | |
1829 { | |
1830 if (parmp->n_commands >= MAX_ARG_CMDS) | |
1831 mainerr(ME_EXTRA_CMD, NULL); | |
1832 argv_idx = -1; /* skip to next argument */ | |
1833 if (argv[0][1] == NUL) | |
1834 parmp->commands[parmp->n_commands++] = (char_u *)"$"; | |
1835 else | |
1836 parmp->commands[parmp->n_commands++] = (char_u *)&(argv[0][1]); | |
1837 } | |
1838 | |
1839 /* | |
1840 * Optional argument. | |
1841 */ | |
1842 else if (argv[0][0] == '-' && !had_minmin) | |
1843 { | |
1844 want_argument = FALSE; | |
1845 c = argv[0][argv_idx++]; | |
1846 #ifdef VMS | |
1847 /* | |
1848 * VMS only uses upper case command lines. Interpret "-X" as "-x" | |
1849 * and "-/X" as "-X". | |
1850 */ | |
1851 if (c == '/') | |
1852 { | |
1853 c = argv[0][argv_idx++]; | |
1854 c = TOUPPER_ASC(c); | |
1855 } | |
1856 else | |
1857 c = TOLOWER_ASC(c); | |
1858 #endif | |
1859 switch (c) | |
1860 { | |
1861 case NUL: /* "vim -" read from stdin */ | |
1862 /* "ex -" silent mode */ | |
1863 if (exmode_active) | |
1864 silent_mode = TRUE; | |
1865 else | |
1866 { | |
1867 if (parmp->edit_type != EDIT_NONE) | |
1868 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]); | |
1869 parmp->edit_type = EDIT_STDIN; | |
1870 read_cmd_fd = 2; /* read from stderr instead of stdin */ | |
1871 } | |
1872 argv_idx = -1; /* skip to next argument */ | |
1873 break; | |
1874 | |
1875 case '-': /* "--" don't take any more option arguments */ | |
1876 /* "--help" give help message */ | |
1877 /* "--version" give version message */ | |
11666
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
1878 /* "--clean" clean context */ |
443 | 1879 /* "--literal" take files literally */ |
1880 /* "--nofork" don't fork */ | |
8253
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1881 /* "--not-a-term" don't warn for not a term */ |
10404
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1882 /* "--ttyfail" exit if not a term */ |
443 | 1883 /* "--noplugin[s]" skip plugins */ |
1884 /* "--cmd <cmd>" execute cmd before vimrc */ | |
1885 if (STRICMP(argv[0] + argv_idx, "help") == 0) | |
1886 usage(); | |
1887 else if (STRICMP(argv[0] + argv_idx, "version") == 0) | |
1888 { | |
1889 Columns = 80; /* need to init Columns */ | |
1890 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ | |
1891 list_version(); | |
1892 msg_putchar('\n'); | |
1893 msg_didout = FALSE; | |
1894 mch_exit(0); | |
1895 } | |
11666
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
1896 else if (STRNICMP(argv[0] + argv_idx, "clean", 5) == 0) |
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
1897 { |
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
1898 parmp->use_vimrc = (char_u *)"DEFAULTS"; |
13466
cf7cd0272011
patch 8.0.1607: --clean loads user settings from .gvimrc
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
1899 #ifdef FEAT_GUI |
cf7cd0272011
patch 8.0.1607: --clean loads user settings from .gvimrc
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
1900 use_gvimrc = (char_u *)"NONE"; |
cf7cd0272011
patch 8.0.1607: --clean loads user settings from .gvimrc
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
1901 #endif |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1902 parmp->clean = TRUE; |
11666
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
1903 set_option_value((char_u *)"vif", 0L, (char_u *)"NONE", 0); |
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
1904 } |
443 | 1905 else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0) |
1906 { | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
6923
diff
changeset
|
1907 #ifdef EXPAND_FILENAMES |
443 | 1908 parmp->literal = TRUE; |
1909 #endif | |
1910 } | |
1911 else if (STRNICMP(argv[0] + argv_idx, "nofork", 6) == 0) | |
1912 { | |
1913 #ifdef FEAT_GUI | |
1914 gui.dofork = FALSE; /* don't fork() when starting GUI */ | |
1915 #endif | |
1916 } | |
1917 else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0) | |
1918 p_lpl = FALSE; | |
8253
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1919 else if (STRNICMP(argv[0] + argv_idx, "not-a-term", 10) == 0) |
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1920 parmp->not_a_term = TRUE; |
10404
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1921 else if (STRNICMP(argv[0] + argv_idx, "ttyfail", 7) == 0) |
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1922 parmp->tty_fail = TRUE; |
443 | 1923 else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0) |
1924 { | |
1925 want_argument = TRUE; | |
1926 argv_idx += 3; | |
1927 } | |
1989 | 1928 else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0) |
1929 { | |
1930 want_argument = TRUE; | |
1931 argv_idx += 11; | |
1932 } | |
443 | 1933 #ifdef FEAT_CLIENTSERVER |
1934 else if (STRNICMP(argv[0] + argv_idx, "serverlist", 10) == 0) | |
1935 ; /* already processed -- no arg */ | |
1936 else if (STRNICMP(argv[0] + argv_idx, "servername", 10) == 0 | |
1937 || STRNICMP(argv[0] + argv_idx, "serversend", 10) == 0) | |
1938 { | |
1939 /* already processed -- snatch the following arg */ | |
1940 if (argc > 1) | |
1941 { | |
1942 --argc; | |
1943 ++argv; | |
1944 } | |
1945 } | |
1946 #endif | |
1376 | 1947 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32) |
1948 # ifdef FEAT_GUI_GTK | |
443 | 1949 else if (STRNICMP(argv[0] + argv_idx, "socketid", 8) == 0) |
1376 | 1950 # else |
1951 else if (STRNICMP(argv[0] + argv_idx, "windowid", 8) == 0) | |
1952 # endif | |
443 | 1953 { |
1954 /* already processed -- snatch the following arg */ | |
1955 if (argc > 1) | |
1956 { | |
1957 --argc; | |
1958 ++argv; | |
1959 } | |
1960 } | |
1376 | 1961 #endif |
1962 #ifdef FEAT_GUI_GTK | |
443 | 1963 else if (STRNICMP(argv[0] + argv_idx, "echo-wid", 8) == 0) |
1964 { | |
1965 /* already processed, skip */ | |
1966 } | |
1967 #endif | |
1968 else | |
1969 { | |
1970 if (argv[0][argv_idx]) | |
1971 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]); | |
1972 had_minmin = TRUE; | |
1973 } | |
1974 if (!want_argument) | |
1975 argv_idx = -1; /* skip to next argument */ | |
1976 break; | |
1977 | |
1978 case 'A': /* "-A" start in Arabic mode */ | |
1979 #ifdef FEAT_ARABIC | |
1980 set_option_value((char_u *)"arabic", 1L, NULL, 0); | |
1981 #else | |
1982 mch_errmsg(_(e_noarabic)); | |
1983 mch_exit(2); | |
1984 #endif | |
1985 break; | |
1986 | |
1987 case 'b': /* "-b" binary mode */ | |
445 | 1988 /* Needs to be effective before expanding file names, because |
1989 * for Win32 this makes us edit a shortcut file itself, | |
1990 * instead of the file it links to. */ | |
1991 set_options_bin(curbuf->b_p_bin, 1, 0); | |
1992 curbuf->b_p_bin = 1; /* binary file I/O */ | |
443 | 1993 break; |
1994 | |
1995 case 'C': /* "-C" Compatible */ | |
1996 change_compatible(TRUE); | |
9678
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
9669
diff
changeset
|
1997 has_dash_c_arg = TRUE; |
443 | 1998 break; |
1999 | |
2000 case 'e': /* "-e" Ex mode */ | |
2001 exmode_active = EXMODE_NORMAL; | |
2002 break; | |
2003 | |
2004 case 'E': /* "-E" Improved Ex mode */ | |
2005 exmode_active = EXMODE_VIM; | |
2006 break; | |
2007 | |
2008 case 'f': /* "-f" GUI: run in foreground. Amiga: open | |
2009 window directly, not with newcli */ | |
2010 #ifdef FEAT_GUI | |
2011 gui.dofork = FALSE; /* don't fork() when starting GUI */ | |
2012 #endif | |
2013 break; | |
2014 | |
2015 case 'g': /* "-g" start GUI */ | |
2016 main_start_gui(); | |
2017 break; | |
2018 | |
2019 case 'F': /* "-F" start in Farsi mode: rl + fkmap set */ | |
2020 #ifdef FEAT_FKMAP | |
1509 | 2021 p_fkmap = TRUE; |
2022 set_option_value((char_u *)"rl", 1L, NULL, 0); | |
443 | 2023 #else |
2024 mch_errmsg(_(e_nofarsi)); | |
2025 mch_exit(2); | |
2026 #endif | |
2027 break; | |
2028 | |
13841
032bc07c32da
patch 8.0.1792: MS-Windows users expect -? to work like --help
Christian Brabandt <cb@256bit.org>
parents:
13708
diff
changeset
|
2029 case '?': /* "-?" give help message (for MS-Windows) */ |
443 | 2030 case 'h': /* "-h" give help message */ |
2031 #ifdef FEAT_GUI_GNOME | |
2032 /* Tell usage() to exit for "gvim". */ | |
2033 gui.starting = FALSE; | |
2034 #endif | |
2035 usage(); | |
2036 break; | |
2037 | |
2038 case 'H': /* "-H" start in Hebrew mode: rl + hkmap set */ | |
2039 #ifdef FEAT_RIGHTLEFT | |
1509 | 2040 p_hkmap = TRUE; |
2041 set_option_value((char_u *)"rl", 1L, NULL, 0); | |
443 | 2042 #else |
2043 mch_errmsg(_(e_nohebrew)); | |
2044 mch_exit(2); | |
2045 #endif | |
2046 break; | |
2047 | |
2048 case 'l': /* "-l" lisp mode, 'lisp' and 'showmatch' on */ | |
2049 #ifdef FEAT_LISP | |
2050 set_option_value((char_u *)"lisp", 1L, NULL, 0); | |
2051 p_sm = TRUE; | |
2052 #endif | |
2053 break; | |
2054 | |
2055 case 'M': /* "-M" no changes or writing of files */ | |
2056 reset_modifiable(); | |
2057 /* FALLTHROUGH */ | |
2058 | |
2059 case 'm': /* "-m" no writing of files */ | |
2060 p_write = FALSE; | |
2061 break; | |
2062 | |
2063 case 'y': /* "-y" easy mode */ | |
2064 #ifdef FEAT_GUI | |
2065 gui.starting = TRUE; /* start GUI a bit later */ | |
2066 #endif | |
2067 parmp->evim_mode = TRUE; | |
2068 break; | |
2069 | |
2070 case 'N': /* "-N" Nocompatible */ | |
2071 change_compatible(FALSE); | |
2072 break; | |
2073 | |
2074 case 'n': /* "-n" no swap file */ | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
2075 #ifdef FEAT_NETBEANS_INTG |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
2076 /* checking for "-nb", netbeans parameters */ |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
2077 if (argv[0][argv_idx] == 'b') |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
2078 { |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
2079 netbeansArg = argv[0]; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
2080 argv_idx = -1; /* skip to next argument */ |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
2081 } |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
2082 else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2201
diff
changeset
|
2083 #endif |
443 | 2084 parmp->no_swap_file = TRUE; |
2085 break; | |
2086 | |
673 | 2087 case 'p': /* "-p[N]" open N tab pages */ |
674 | 2088 #ifdef TARGET_API_MAC_OSX |
2089 /* For some reason on MacOS X, an argument like: | |
2090 -psn_0_10223617 is passed in when invoke from Finder | |
2091 or with the 'open' command */ | |
2092 if (argv[0][argv_idx] == 's') | |
2093 { | |
2094 argv_idx = -1; /* bypass full -psn */ | |
2095 main_start_gui(); | |
2096 break; | |
2097 } | |
2098 #endif | |
673 | 2099 /* default is 0: open window for each file */ |
2100 parmp->window_count = get_number_arg((char_u *)argv[0], | |
2101 &argv_idx, 0); | |
2102 parmp->window_layout = WIN_TABS; | |
2103 break; | |
2104 | |
443 | 2105 case 'o': /* "-o[N]" open N horizontal split windows */ |
2106 /* default is 0: open window for each file */ | |
445 | 2107 parmp->window_count = get_number_arg((char_u *)argv[0], |
2108 &argv_idx, 0); | |
673 | 2109 parmp->window_layout = WIN_HOR; |
443 | 2110 break; |
2111 | |
2112 case 'O': /* "-O[N]" open N vertical split windows */ | |
2113 /* default is 0: open window for each file */ | |
445 | 2114 parmp->window_count = get_number_arg((char_u *)argv[0], |
2115 &argv_idx, 0); | |
673 | 2116 parmp->window_layout = WIN_VER; |
443 | 2117 break; |
2118 | |
2119 #ifdef FEAT_QUICKFIX | |
2120 case 'q': /* "-q" QuickFix mode */ | |
2121 if (parmp->edit_type != EDIT_NONE) | |
2122 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]); | |
2123 parmp->edit_type = EDIT_QF; | |
2124 if (argv[0][argv_idx]) /* "-q{errorfile}" */ | |
2125 { | |
2126 parmp->use_ef = (char_u *)argv[0] + argv_idx; | |
2127 argv_idx = -1; | |
2128 } | |
2129 else if (argc > 1) /* "-q {errorfile}" */ | |
2130 want_argument = TRUE; | |
2131 break; | |
2132 #endif | |
2133 | |
2134 case 'R': /* "-R" readonly mode */ | |
2135 readonlymode = TRUE; | |
2136 curbuf->b_p_ro = TRUE; | |
2137 p_uc = 10000; /* don't update very often */ | |
2138 break; | |
2139 | |
2140 case 'r': /* "-r" recovery mode */ | |
2141 case 'L': /* "-L" recovery mode */ | |
2142 recoverymode = 1; | |
2143 break; | |
2144 | |
2145 case 's': | |
2146 if (exmode_active) /* "-s" silent (batch) mode */ | |
2147 silent_mode = TRUE; | |
2148 else /* "-s {scriptin}" read from script file */ | |
2149 want_argument = TRUE; | |
2150 break; | |
2151 | |
2152 case 't': /* "-t {tag}" or "-t{tag}" jump to tag */ | |
2153 if (parmp->edit_type != EDIT_NONE) | |
2154 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]); | |
2155 parmp->edit_type = EDIT_TAG; | |
2156 if (argv[0][argv_idx]) /* "-t{tag}" */ | |
2157 { | |
2158 parmp->tagname = (char_u *)argv[0] + argv_idx; | |
2159 argv_idx = -1; | |
2160 } | |
2161 else /* "-t {tag}" */ | |
2162 want_argument = TRUE; | |
2163 break; | |
2164 | |
2165 #ifdef FEAT_EVAL | |
2166 case 'D': /* "-D" Debugging */ | |
2167 parmp->use_debug_break_level = 9999; | |
2168 break; | |
2169 #endif | |
2170 #ifdef FEAT_DIFF | |
2171 case 'd': /* "-d" 'diff' */ | |
2172 # ifdef AMIGA | |
2173 /* check for "-dev {device}" */ | |
2174 if (argv[0][argv_idx] == 'e' && argv[0][argv_idx + 1] == 'v') | |
2175 want_argument = TRUE; | |
2176 else | |
2177 # endif | |
2178 parmp->diff_mode = TRUE; | |
2179 break; | |
2180 #endif | |
2181 case 'V': /* "-V{N}" Verbose level */ | |
2182 /* default is 10: a little bit verbose */ | |
2183 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10); | |
2184 if (argv[0][argv_idx] != NUL) | |
2185 { | |
2186 set_option_value((char_u *)"verbosefile", 0L, | |
2187 (char_u *)argv[0] + argv_idx, 0); | |
835 | 2188 argv_idx = (int)STRLEN(argv[0]); |
443 | 2189 } |
2190 break; | |
2191 | |
2192 case 'v': /* "-v" Vi-mode (as if called "vi") */ | |
2193 exmode_active = 0; | |
2194 #ifdef FEAT_GUI | |
2195 gui.starting = FALSE; /* don't start GUI */ | |
2196 #endif | |
2197 break; | |
2198 | |
2199 case 'w': /* "-w{number}" set window height */ | |
2200 /* "-w {scriptout}" write to script */ | |
2201 if (vim_isdigit(((char_u *)argv[0])[argv_idx])) | |
2202 { | |
2203 n = get_number_arg((char_u *)argv[0], &argv_idx, 10); | |
2204 set_option_value((char_u *)"window", n, NULL, 0); | |
2205 break; | |
2206 } | |
2207 want_argument = TRUE; | |
2208 break; | |
2209 | |
2210 #ifdef FEAT_CRYPT | |
2211 case 'x': /* "-x" encrypted reading/writing of files */ | |
2212 parmp->ask_for_key = TRUE; | |
2213 break; | |
2214 #endif | |
2215 | |
2216 case 'X': /* "-X" don't connect to X server */ | |
2217 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11) | |
2218 x_no_connect = TRUE; | |
2219 #endif | |
2220 break; | |
2221 | |
2222 case 'Z': /* "-Z" restricted mode */ | |
2223 restricted = TRUE; | |
2224 break; | |
2225 | |
2226 case 'c': /* "-c{command}" or "-c {command}" execute | |
2227 command */ | |
2228 if (argv[0][argv_idx] != NUL) | |
2229 { | |
2230 if (parmp->n_commands >= MAX_ARG_CMDS) | |
2231 mainerr(ME_EXTRA_CMD, NULL); | |
445 | 2232 parmp->commands[parmp->n_commands++] = (char_u *)argv[0] |
2233 + argv_idx; | |
443 | 2234 argv_idx = -1; |
2235 break; | |
2236 } | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12670
diff
changeset
|
2237 /* FALLTHROUGH */ |
443 | 2238 case 'S': /* "-S {file}" execute Vim script */ |
2239 case 'i': /* "-i {viminfo}" use for viminfo */ | |
2240 #ifndef FEAT_DIFF | |
2241 case 'd': /* "-d {device}" device (for Amiga) */ | |
2242 #endif | |
2243 case 'T': /* "-T {terminal}" terminal name */ | |
2244 case 'u': /* "-u {vimrc}" vim inits file */ | |
2245 case 'U': /* "-U {gvimrc}" gvim inits file */ | |
2246 case 'W': /* "-W {scriptout}" overwrite */ | |
2247 #ifdef FEAT_GUI_W32 | |
2248 case 'P': /* "-P {parent title}" MDI parent */ | |
2249 #endif | |
2250 want_argument = TRUE; | |
2251 break; | |
2252 | |
2253 default: | |
2254 mainerr(ME_UNKNOWN_OPTION, (char_u *)argv[0]); | |
2255 } | |
2256 | |
2257 /* | |
2258 * Handle option arguments with argument. | |
2259 */ | |
2260 if (want_argument) | |
2261 { | |
2262 /* | |
2263 * Check for garbage immediately after the option letter. | |
2264 */ | |
2265 if (argv[0][argv_idx] != NUL) | |
2266 mainerr(ME_GARBAGE, (char_u *)argv[0]); | |
2267 | |
2268 --argc; | |
1989 | 2269 if (argc < 1 && c != 'S') /* -S has an optional argument */ |
443 | 2270 mainerr_arg_missing((char_u *)argv[0]); |
2271 ++argv; | |
2272 argv_idx = -1; | |
2273 | |
2274 switch (c) | |
2275 { | |
2276 case 'c': /* "-c {command}" execute command */ | |
2277 case 'S': /* "-S {file}" execute Vim script */ | |
2278 if (parmp->n_commands >= MAX_ARG_CMDS) | |
2279 mainerr(ME_EXTRA_CMD, NULL); | |
2280 if (c == 'S') | |
2281 { | |
2282 char *a; | |
2283 | |
2284 if (argc < 1) | |
2285 /* "-S" without argument: use default session file | |
2286 * name. */ | |
2287 a = SESSION_FILE; | |
2288 else if (argv[0][0] == '-') | |
2289 { | |
2290 /* "-S" followed by another option: use default | |
2291 * session file name. */ | |
2292 a = SESSION_FILE; | |
2293 ++argc; | |
2294 --argv; | |
2295 } | |
2296 else | |
2297 a = argv[0]; | |
2298 p = alloc((unsigned)(STRLEN(a) + 4)); | |
2299 if (p == NULL) | |
2300 mch_exit(2); | |
2301 sprintf((char *)p, "so %s", a); | |
2302 parmp->cmds_tofree[parmp->n_commands] = TRUE; | |
2303 parmp->commands[parmp->n_commands++] = p; | |
2304 } | |
2305 else | |
445 | 2306 parmp->commands[parmp->n_commands++] = |
2307 (char_u *)argv[0]; | |
443 | 2308 break; |
2309 | |
1989 | 2310 case '-': |
2311 if (argv[-1][2] == 'c') | |
2312 { | |
2313 /* "--cmd {command}" execute command */ | |
2314 if (parmp->n_pre_commands >= MAX_ARG_CMDS) | |
2315 mainerr(ME_EXTRA_CMD, NULL); | |
2316 parmp->pre_commands[parmp->n_pre_commands++] = | |
445 | 2317 (char_u *)argv[0]; |
1989 | 2318 } |
2319 /* "--startuptime <file>" already handled */ | |
443 | 2320 break; |
2321 | |
2322 /* case 'd': -d {device} is handled in mch_check_win() for the | |
2323 * Amiga */ | |
2324 | |
2325 #ifdef FEAT_QUICKFIX | |
2326 case 'q': /* "-q {errorfile}" QuickFix mode */ | |
2327 parmp->use_ef = (char_u *)argv[0]; | |
2328 break; | |
2329 #endif | |
2330 | |
2331 case 'i': /* "-i {viminfo}" use for viminfo */ | |
11666
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
2332 set_option_value((char_u *)"vif", 0L, (char_u *)argv[0], 0); |
443 | 2333 break; |
2334 | |
2335 case 's': /* "-s {scriptin}" read from script file */ | |
2336 if (scriptin[0] != NULL) | |
2337 { | |
2338 scripterror: | |
2339 mch_errmsg(_("Attempt to open script file again: \"")); | |
2340 mch_errmsg(argv[-1]); | |
2341 mch_errmsg(" "); | |
2342 mch_errmsg(argv[0]); | |
2343 mch_errmsg("\"\n"); | |
2344 mch_exit(2); | |
2345 } | |
2346 if ((scriptin[0] = mch_fopen(argv[0], READBIN)) == NULL) | |
2347 { | |
2348 mch_errmsg(_("Cannot open for reading: \"")); | |
2349 mch_errmsg(argv[0]); | |
2350 mch_errmsg("\"\n"); | |
2351 mch_exit(2); | |
2352 } | |
2353 if (save_typebuf() == FAIL) | |
2354 mch_exit(2); /* out of memory */ | |
2355 break; | |
2356 | |
2357 case 't': /* "-t {tag}" */ | |
2358 parmp->tagname = (char_u *)argv[0]; | |
2359 break; | |
2360 | |
2361 case 'T': /* "-T {terminal}" terminal name */ | |
2362 /* | |
2363 * The -T term argument is always available and when | |
2364 * HAVE_TERMLIB is supported it overrides the environment | |
2365 * variable TERM. | |
2366 */ | |
2367 #ifdef FEAT_GUI | |
2368 if (term_is_gui((char_u *)argv[0])) | |
2369 gui.starting = TRUE; /* start GUI a bit later */ | |
2370 else | |
2371 #endif | |
2372 parmp->term = (char_u *)argv[0]; | |
2373 break; | |
2374 | |
2375 case 'u': /* "-u {vimrc}" vim inits file */ | |
2376 parmp->use_vimrc = (char_u *)argv[0]; | |
2377 break; | |
2378 | |
2379 case 'U': /* "-U {gvimrc}" gvim inits file */ | |
2380 #ifdef FEAT_GUI | |
2381 use_gvimrc = (char_u *)argv[0]; | |
2382 #endif | |
2383 break; | |
2384 | |
2385 case 'w': /* "-w {nr}" 'window' value */ | |
2386 /* "-w {scriptout}" append to script file */ | |
2387 if (vim_isdigit(*((char_u *)argv[0]))) | |
2388 { | |
2389 argv_idx = 0; | |
2390 n = get_number_arg((char_u *)argv[0], &argv_idx, 10); | |
2391 set_option_value((char_u *)"window", n, NULL, 0); | |
2392 argv_idx = -1; | |
2393 break; | |
2394 } | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12670
diff
changeset
|
2395 /* FALLTHROUGH */ |
443 | 2396 case 'W': /* "-W {scriptout}" overwrite script file */ |
2397 if (scriptout != NULL) | |
2398 goto scripterror; | |
2399 if ((scriptout = mch_fopen(argv[0], | |
2400 c == 'w' ? APPENDBIN : WRITEBIN)) == NULL) | |
2401 { | |
2402 mch_errmsg(_("Cannot open for script output: \"")); | |
2403 mch_errmsg(argv[0]); | |
2404 mch_errmsg("\"\n"); | |
2405 mch_exit(2); | |
2406 } | |
2407 break; | |
2408 | |
2409 #ifdef FEAT_GUI_W32 | |
2410 case 'P': /* "-P {parent title}" MDI parent */ | |
2411 gui_mch_set_parent(argv[0]); | |
2412 break; | |
2413 #endif | |
2414 } | |
2415 } | |
2416 } | |
2417 | |
2418 /* | |
2419 * File name argument. | |
2420 */ | |
2421 else | |
2422 { | |
2423 argv_idx = -1; /* skip to next argument */ | |
2424 | |
2425 /* Check for only one type of editing. */ | |
2426 if (parmp->edit_type != EDIT_NONE && parmp->edit_type != EDIT_FILE) | |
2427 mainerr(ME_TOO_MANY_ARGS, (char_u *)argv[0]); | |
2428 parmp->edit_type = EDIT_FILE; | |
2429 | |
2430 #ifdef MSWIN | |
2431 /* Remember if the argument was a full path before changing | |
2432 * slashes to backslashes. */ | |
2433 if (argv[0][0] != NUL && argv[0][1] == ':' && argv[0][2] == '\\') | |
2434 parmp->full_path = TRUE; | |
2435 #endif | |
2436 | |
2437 /* Add the file to the global argument list. */ | |
2438 if (ga_grow(&global_alist.al_ga, 1) == FAIL | |
2439 || (p = vim_strsave((char_u *)argv[0])) == NULL) | |
2440 mch_exit(2); | |
2441 #ifdef FEAT_DIFF | |
2442 if (parmp->diff_mode && mch_isdir(p) && GARGCOUNT > 0 | |
2443 && !mch_isdir(alist_name(&GARGLIST[0]))) | |
2444 { | |
2445 char_u *r; | |
2446 | |
2447 r = concat_fnames(p, gettail(alist_name(&GARGLIST[0])), TRUE); | |
2448 if (r != NULL) | |
2449 { | |
2450 vim_free(p); | |
2451 p = r; | |
2452 } | |
2453 } | |
2454 #endif | |
2455 #if defined(__CYGWIN32__) && !defined(WIN32) | |
2456 /* | |
2457 * If vim is invoked by non-Cygwin tools, convert away any | |
2458 * DOS paths, so things like .swp files are created correctly. | |
2459 * Look for evidence of non-Cygwin paths before we bother. | |
2460 * This is only for when using the Unix files. | |
2461 */ | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4912
diff
changeset
|
2462 if (vim_strpbrk(p, "\\:") != NULL && !path_with_url(p)) |
443 | 2463 { |
12132
9e5f310b0713
patch 8.0.0946: using PATH_MAX does not work well on some systems
Christian Brabandt <cb@256bit.org>
parents:
11993
diff
changeset
|
2464 char posix_path[MAXPATHL]; |
443 | 2465 |
1657 | 2466 # if CYGWIN_VERSION_DLL_MAJOR >= 1007 |
12132
9e5f310b0713
patch 8.0.0946: using PATH_MAX does not work well on some systems
Christian Brabandt <cb@256bit.org>
parents:
11993
diff
changeset
|
2467 cygwin_conv_path(CCP_WIN_A_TO_POSIX, p, posix_path, MAXPATHL); |
1657 | 2468 # else |
443 | 2469 cygwin_conv_to_posix_path(p, posix_path); |
1657 | 2470 # endif |
443 | 2471 vim_free(p); |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4912
diff
changeset
|
2472 p = vim_strsave((char_u *)posix_path); |
443 | 2473 if (p == NULL) |
2474 mch_exit(2); | |
2475 } | |
2476 #endif | |
587 | 2477 |
2478 #ifdef USE_FNAME_CASE | |
2479 /* Make the case of the file name match the actual file. */ | |
2480 fname_case(p, 0); | |
2481 #endif | |
2482 | |
443 | 2483 alist_add(&global_alist, p, |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
6923
diff
changeset
|
2484 #ifdef EXPAND_FILENAMES |
445 | 2485 parmp->literal ? 2 : 0 /* add buffer nr after exp. */ |
443 | 2486 #else |
2487 2 /* add buffer number now and use curbuf */ | |
2488 #endif | |
2489 ); | |
2490 | |
2491 #if defined(FEAT_MBYTE) && defined(WIN32) | |
2492 { | |
2493 /* Remember this argument has been added to the argument list. | |
2494 * Needed when 'encoding' is changed. */ | |
819 | 2495 used_file_arg(argv[0], parmp->literal, parmp->full_path, |
1680 | 2496 # ifdef FEAT_DIFF |
2497 parmp->diff_mode | |
2498 # else | |
2499 FALSE | |
2500 # endif | |
2501 ); | |
443 | 2502 } |
2503 #endif | |
2504 } | |
2505 | |
2506 /* | |
2507 * If there are no more letters after the current "-", go to next | |
2508 * argument. argv_idx is set to -1 when the current argument is to be | |
2509 * skipped. | |
2510 */ | |
2511 if (argv_idx <= 0 || argv[0][argv_idx] == NUL) | |
2512 { | |
2513 --argc; | |
2514 ++argv; | |
2515 argv_idx = 1; | |
2516 } | |
2517 } | |
1093 | 2518 |
2519 #ifdef FEAT_EVAL | |
2520 /* If there is a "+123" or "-c" command, set v:swapcommand to the first | |
2521 * one. */ | |
2522 if (parmp->n_commands > 0) | |
2523 { | |
2524 p = alloc((unsigned)STRLEN(parmp->commands[0]) + 3); | |
2525 if (p != NULL) | |
2526 { | |
2527 sprintf((char *)p, ":%s\r", parmp->commands[0]); | |
2528 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
2529 vim_free(p); | |
2530 } | |
2531 } | |
2532 #endif | |
443 | 2533 } |
2534 | |
2535 /* | |
2536 * Print a warning if stdout is not a terminal. | |
13160
cb99d9198c39
patch 8.0.1454: when in silent mode too much output is buffered
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2537 * When starting in Ex mode and commands come from a file, set silent_mode. |
443 | 2538 */ |
2539 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2540 check_tty(mparm_T *parmp) |
443 | 2541 { |
2542 int input_isatty; /* is active input a terminal? */ | |
2543 | |
2544 input_isatty = mch_input_isatty(); | |
2545 if (exmode_active) | |
2546 { | |
2547 if (!input_isatty) | |
2548 silent_mode = TRUE; | |
2549 } | |
10404
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2550 else if (parmp->want_full_screen && (!stdout_isatty || !input_isatty) |
443 | 2551 #ifdef FEAT_GUI |
2552 /* don't want the delay when started from the desktop */ | |
2553 && !gui.starting | |
2554 #endif | |
8253
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
2555 && !parmp->not_a_term) |
443 | 2556 { |
2557 #ifdef NBDEBUG | |
2558 /* | |
2559 * This shouldn't be necessary. But if I run netbeans with the log | |
2560 * output coming to the console and XOpenDisplay fails, I get vim | |
2561 * trying to start with input/output to my console tty. This fills my | |
2562 * input buffer so fast I can't even kill the process in under 2 | |
1226 | 2563 * minutes (and it beeps continuously the whole time :-) |
443 | 2564 */ |
10404
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2565 if (netbeans_active() && (!stdout_isatty || !input_isatty)) |
443 | 2566 { |
2567 mch_errmsg(_("Vim: Error: Failure to start gvim from NetBeans\n")); | |
2568 exit(1); | |
2569 } | |
2570 #endif | |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
2571 #if defined(WIN3264) && !defined(FEAT_GUI_W32) |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
2572 if (is_cygpty_used()) |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
2573 { |
12547
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2574 # if defined(FEAT_MBYTE) && defined(HAVE_BIND_TEXTDOMAIN_CODESET) \ |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2575 && defined(FEAT_GETTEXT) |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2576 char *s, *tofree = NULL; |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2577 |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2578 /* Set the encoding of the error message based on $LC_ALL or |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2579 * other environment variables instead of 'encoding'. |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2580 * Note that the message is shown on a Cygwin terminal (e.g. |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2581 * mintty) which encoding is based on $LC_ALL or etc., not the |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2582 * current codepage used by normal Win32 console programs. */ |
12557
a75fea44fb77
patch 8.0.1157: compiler warning on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12547
diff
changeset
|
2583 tofree = s = (char *)enc_locale_env(NULL); |
12547
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2584 if (s == NULL) |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2585 s = "utf-8"; /* Use "utf-8" by default. */ |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2586 (void)bind_textdomain_codeset(VIMPACKAGE, s); |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2587 vim_free(tofree); |
aa3f6d093f4b
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2588 # endif |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
2589 mch_errmsg(_("Vim: Error: This version of Vim does not run in a Cygwin terminal\n")); |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
2590 exit(1); |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
2591 } |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9252
diff
changeset
|
2592 #endif |
10404
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2593 if (!stdout_isatty) |
443 | 2594 mch_errmsg(_("Vim: Warning: Output is not to a terminal\n")); |
2595 if (!input_isatty) | |
2596 mch_errmsg(_("Vim: Warning: Input is not from a terminal\n")); | |
2597 out_flush(); | |
10404
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2598 if (parmp->tty_fail && (!stdout_isatty || !input_isatty)) |
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2599 exit(1); |
443 | 2600 if (scriptin[0] == NULL) |
2601 ui_delay(2000L, TRUE); | |
2602 TIME_MSG("Warning delay"); | |
2603 } | |
2604 } | |
2605 | |
2606 /* | |
2607 * Read text from stdin. | |
2608 */ | |
2609 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2610 read_stdin(void) |
443 | 2611 { |
2612 int i; | |
2613 | |
580 | 2614 #if defined(HAS_SWAP_EXISTS_ACTION) |
443 | 2615 /* When getting the ATTENTION prompt here, use a dialog */ |
2616 swap_exists_action = SEA_DIALOG; | |
2617 #endif | |
2618 no_wait_return = TRUE; | |
2619 i = msg_didany; | |
2620 set_buflisted(TRUE); | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
2621 (void)open_buffer(TRUE, NULL, 0); /* create memfile and read file */ |
443 | 2622 no_wait_return = FALSE; |
2623 msg_didany = i; | |
2624 TIME_MSG("reading stdin"); | |
580 | 2625 #if defined(HAS_SWAP_EXISTS_ACTION) |
443 | 2626 check_swap_exists_action(); |
2627 #endif | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12678
diff
changeset
|
2628 #if !(defined(AMIGA) || defined(MACOS_X)) |
443 | 2629 /* |
2630 * Close stdin and dup it from stderr. Required for GPM to work | |
2631 * properly, and for running external commands. | |
2632 * Is there any other system that cannot do this? | |
2633 */ | |
2634 close(0); | |
1757 | 2635 ignored = dup(2); |
443 | 2636 #endif |
2637 } | |
2638 | |
2639 /* | |
2640 * Create the requested number of windows and edit buffers in them. | |
2641 * Also does recovery if "recoverymode" set. | |
2642 */ | |
2643 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2644 create_windows(mparm_T *parmp UNUSED) |
443 | 2645 { |
944 | 2646 int dorewind; |
673 | 2647 int done = 0; |
2648 | |
443 | 2649 /* |
2650 * Create the number of windows that was requested. | |
2651 */ | |
2652 if (parmp->window_count == -1) /* was not set */ | |
2653 parmp->window_count = 1; | |
2654 if (parmp->window_count == 0) | |
2655 parmp->window_count = GARGCOUNT; | |
2656 if (parmp->window_count > 1) | |
2657 { | |
2658 /* Don't change the windows if there was a command in .vimrc that | |
2659 * already split some windows */ | |
673 | 2660 if (parmp->window_layout == 0) |
2661 parmp->window_layout = WIN_HOR; | |
2662 if (parmp->window_layout == WIN_TABS) | |
2663 { | |
2664 parmp->window_count = make_tabpages(parmp->window_count); | |
2665 TIME_MSG("making tab pages"); | |
2666 } | |
2667 else if (firstwin->w_next == NULL) | |
443 | 2668 { |
2669 parmp->window_count = make_windows(parmp->window_count, | |
673 | 2670 parmp->window_layout == WIN_VER); |
443 | 2671 TIME_MSG("making windows"); |
2672 } | |
2673 else | |
2674 parmp->window_count = win_count(); | |
2675 } | |
2676 else | |
2677 parmp->window_count = 1; | |
2678 | |
2679 if (recoverymode) /* do recover */ | |
2680 { | |
2681 msg_scroll = TRUE; /* scroll message up */ | |
2682 ml_recover(); | |
2683 if (curbuf->b_ml.ml_mfp == NULL) /* failed */ | |
2684 getout(1); | |
717 | 2685 do_modelines(0); /* do modelines */ |
443 | 2686 } |
2687 else | |
2688 { | |
2689 /* | |
2690 * Open a buffer for windows that don't have one yet. | |
2691 * Commands in the .vimrc might have loaded a file or split the window. | |
2692 * Watch out for autocommands that delete a window. | |
2693 */ | |
2694 /* | |
2695 * Don't execute Win/Buf Enter/Leave autocommands here | |
2696 */ | |
2697 ++autocmd_no_enter; | |
2698 ++autocmd_no_leave; | |
944 | 2699 dorewind = TRUE; |
673 | 2700 while (done++ < 1000) |
2701 { | |
944 | 2702 if (dorewind) |
673 | 2703 { |
2704 if (parmp->window_layout == WIN_TABS) | |
2705 goto_tabpage(1); | |
2706 else | |
2707 curwin = firstwin; | |
2708 } | |
2709 else if (parmp->window_layout == WIN_TABS) | |
2710 { | |
2711 if (curtab->tp_next == NULL) | |
2712 break; | |
2713 goto_tabpage(0); | |
2714 } | |
2715 else | |
2716 { | |
2717 if (curwin->w_next == NULL) | |
2718 break; | |
2719 curwin = curwin->w_next; | |
2720 } | |
944 | 2721 dorewind = FALSE; |
443 | 2722 curbuf = curwin->w_buffer; |
2723 if (curbuf->b_ml.ml_mfp == NULL) | |
2724 { | |
2725 #ifdef FEAT_FOLDING | |
2726 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */ | |
2727 if (p_fdls >= 0) | |
2728 curwin->w_p_fdl = p_fdls; | |
2729 #endif | |
580 | 2730 #if defined(HAS_SWAP_EXISTS_ACTION) |
443 | 2731 /* When getting the ATTENTION prompt here, use a dialog */ |
2732 swap_exists_action = SEA_DIALOG; | |
2733 #endif | |
2734 set_buflisted(TRUE); | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
2735 |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
2736 /* create memfile, read file */ |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
2737 (void)open_buffer(FALSE, NULL, 0); |
443 | 2738 |
580 | 2739 #if defined(HAS_SWAP_EXISTS_ACTION) |
1036 | 2740 if (swap_exists_action == SEA_QUIT) |
2741 { | |
2742 if (got_int || only_one_window()) | |
2743 { | |
2744 /* abort selected or quit and only one window */ | |
2745 did_emsg = FALSE; /* avoid hit-enter prompt */ | |
2746 getout(1); | |
2747 } | |
2748 /* We can't close the window, it would disturb what | |
2749 * happens next. Clear the file name and set the arg | |
2750 * index to -1 to delete it later. */ | |
2751 setfname(curbuf, NULL, NULL, FALSE); | |
2752 curwin->w_arg_idx = -1; | |
2753 swap_exists_action = SEA_NONE; | |
2754 } | |
2755 else | |
2756 handle_swap_exists(NULL); | |
443 | 2757 #endif |
944 | 2758 dorewind = TRUE; /* start again */ |
443 | 2759 } |
2760 ui_breakcheck(); | |
2761 if (got_int) | |
2762 { | |
2763 (void)vgetc(); /* only break the file loading, not the rest */ | |
2764 break; | |
2765 } | |
673 | 2766 } |
2767 if (parmp->window_layout == WIN_TABS) | |
2768 goto_tabpage(1); | |
2769 else | |
2770 curwin = firstwin; | |
2771 curbuf = curwin->w_buffer; | |
443 | 2772 --autocmd_no_enter; |
2773 --autocmd_no_leave; | |
2774 } | |
2775 } | |
2776 | |
2777 /* | |
2778 * If opened more than one window, start editing files in the other | |
2779 * windows. make_windows() has already opened the windows. | |
2780 */ | |
2781 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2782 edit_buffers( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2783 mparm_T *parmp, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2784 char_u *cwd) /* current working dir */ |
443 | 2785 { |
2786 int arg_idx; /* index in argument list */ | |
2787 int i; | |
1036 | 2788 int advance = TRUE; |
5308 | 2789 win_T *win; |
443 | 2790 |
2791 /* | |
2792 * Don't execute Win/Buf Enter/Leave autocommands here | |
2793 */ | |
2794 ++autocmd_no_enter; | |
2795 ++autocmd_no_leave; | |
1036 | 2796 |
2797 /* When w_arg_idx is -1 remove the window (see create_windows()). */ | |
2798 if (curwin->w_arg_idx == -1) | |
2799 { | |
2800 win_close(curwin, TRUE); | |
2801 advance = FALSE; | |
2802 } | |
2803 | |
443 | 2804 arg_idx = 1; |
2805 for (i = 1; i < parmp->window_count; ++i) | |
2806 { | |
6731 | 2807 if (cwd != NULL) |
2808 mch_chdir((char *)cwd); | |
1036 | 2809 /* When w_arg_idx is -1 remove the window (see create_windows()). */ |
2810 if (curwin->w_arg_idx == -1) | |
673 | 2811 { |
1036 | 2812 ++arg_idx; |
2813 win_close(curwin, TRUE); | |
2814 advance = FALSE; | |
2815 continue; | |
673 | 2816 } |
1036 | 2817 |
2818 if (advance) | |
673 | 2819 { |
1036 | 2820 if (parmp->window_layout == WIN_TABS) |
2821 { | |
2822 if (curtab->tp_next == NULL) /* just checking */ | |
2823 break; | |
2824 goto_tabpage(0); | |
2825 } | |
2826 else | |
2827 { | |
2828 if (curwin->w_next == NULL) /* just checking */ | |
2829 break; | |
2830 win_enter(curwin->w_next, FALSE); | |
2831 } | |
673 | 2832 } |
1036 | 2833 advance = TRUE; |
443 | 2834 |
2835 /* Only open the file if there is no file in this window yet (that can | |
1036 | 2836 * happen when .vimrc contains ":sall"). */ |
443 | 2837 if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL) |
2838 { | |
2839 curwin->w_arg_idx = arg_idx; | |
1036 | 2840 /* Edit file from arg list, if there is one. When "Quit" selected |
2841 * at the ATTENTION prompt close the window. */ | |
1684 | 2842 # ifdef HAS_SWAP_EXISTS_ACTION |
2843 swap_exists_did_quit = FALSE; | |
2844 # endif | |
443 | 2845 (void)do_ecmd(0, arg_idx < GARGCOUNT |
2846 ? alist_name(&GARGLIST[arg_idx]) : NULL, | |
1743 | 2847 NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin); |
1684 | 2848 # ifdef HAS_SWAP_EXISTS_ACTION |
2849 if (swap_exists_did_quit) | |
1036 | 2850 { |
1684 | 2851 /* abort or quit selected */ |
1036 | 2852 if (got_int || only_one_window()) |
2853 { | |
1684 | 2854 /* abort selected and only one window */ |
1036 | 2855 did_emsg = FALSE; /* avoid hit-enter prompt */ |
2856 getout(1); | |
2857 } | |
2858 win_close(curwin, TRUE); | |
2859 advance = FALSE; | |
2860 } | |
1684 | 2861 # endif |
443 | 2862 if (arg_idx == GARGCOUNT - 1) |
2863 arg_had_last = TRUE; | |
2864 ++arg_idx; | |
2865 } | |
2866 ui_breakcheck(); | |
2867 if (got_int) | |
2868 { | |
2869 (void)vgetc(); /* only break the file loading, not the rest */ | |
2870 break; | |
2871 } | |
2872 } | |
673 | 2873 |
2874 if (parmp->window_layout == WIN_TABS) | |
2875 goto_tabpage(1); | |
443 | 2876 --autocmd_no_enter; |
5308 | 2877 |
2878 /* make the first window the current window */ | |
2879 win = firstwin; | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12457
diff
changeset
|
2880 #if defined(FEAT_QUICKFIX) |
5308 | 2881 /* Avoid making a preview window the current window. */ |
2882 while (win->w_p_pvw) | |
4912
d8f65e6238fa
updated for version 7.3.1201
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2883 { |
5308 | 2884 win = win->w_next; |
2885 if (win == NULL) | |
2886 { | |
2887 win = firstwin; | |
2888 break; | |
2889 } | |
4912
d8f65e6238fa
updated for version 7.3.1201
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2890 } |
d8f65e6238fa
updated for version 7.3.1201
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2891 #endif |
5308 | 2892 win_enter(win, FALSE); |
4912
d8f65e6238fa
updated for version 7.3.1201
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2893 |
443 | 2894 --autocmd_no_leave; |
2895 TIME_MSG("editing files in windows"); | |
673 | 2896 if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS) |
443 | 2897 win_equal(curwin, FALSE, 'b'); /* adjust heights */ |
2898 } | |
2899 | |
2900 /* | |
440 | 2901 * Execute the commands from --cmd arguments "cmds[cnt]". |
2902 */ | |
2903 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2904 exe_pre_commands(mparm_T *parmp) |
440 | 2905 { |
443 | 2906 char_u **cmds = parmp->pre_commands; |
2907 int cnt = parmp->n_pre_commands; | |
440 | 2908 int i; |
2909 | |
2910 if (cnt > 0) | |
2911 { | |
2912 curwin->w_cursor.lnum = 0; /* just in case.. */ | |
2913 sourcing_name = (char_u *)_("pre-vimrc command line"); | |
2914 # ifdef FEAT_EVAL | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14481
diff
changeset
|
2915 current_sctx.sc_sid = SID_CMDARG; |
440 | 2916 # endif |
2917 for (i = 0; i < cnt; ++i) | |
2918 do_cmdline_cmd(cmds[i]); | |
2919 sourcing_name = NULL; | |
2920 # ifdef FEAT_EVAL | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14481
diff
changeset
|
2921 current_sctx.sc_sid = 0; |
440 | 2922 # endif |
2923 TIME_MSG("--cmd commands"); | |
2924 } | |
2925 } | |
2926 | |
2927 /* | |
443 | 2928 * Execute "+", "-c" and "-S" arguments. |
2929 */ | |
2930 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2931 exe_commands(mparm_T *parmp) |
443 | 2932 { |
2933 int i; | |
2934 | |
2935 /* | |
2936 * We start commands on line 0, make "vim +/pat file" match a | |
2937 * pattern on line 1. But don't move the cursor when an autocommand | |
2938 * with g`" was used. | |
2939 */ | |
2940 msg_scroll = TRUE; | |
2941 if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1) | |
2942 curwin->w_cursor.lnum = 0; | |
2943 sourcing_name = (char_u *)"command line"; | |
2944 #ifdef FEAT_EVAL | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14481
diff
changeset
|
2945 current_sctx.sc_sid = SID_CARG; |
443 | 2946 #endif |
2947 for (i = 0; i < parmp->n_commands; ++i) | |
2948 { | |
2949 do_cmdline_cmd(parmp->commands[i]); | |
2950 if (parmp->cmds_tofree[i]) | |
2951 vim_free(parmp->commands[i]); | |
2952 } | |
2953 sourcing_name = NULL; | |
2954 #ifdef FEAT_EVAL | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14481
diff
changeset
|
2955 current_sctx.sc_sid = 0; |
443 | 2956 #endif |
2957 if (curwin->w_cursor.lnum == 0) | |
2958 curwin->w_cursor.lnum = 1; | |
2959 | |
2960 if (!exmode_active) | |
2961 msg_scroll = FALSE; | |
2962 | |
2963 #ifdef FEAT_QUICKFIX | |
2964 /* When started with "-q errorfile" jump to first error again. */ | |
2965 if (parmp->edit_type == EDIT_QF) | |
644 | 2966 qf_jump(NULL, 0, 0, FALSE); |
443 | 2967 #endif |
2968 TIME_MSG("executing command arguments"); | |
2969 } | |
2970 | |
2971 /* | |
440 | 2972 * Source startup scripts. |
2973 */ | |
2974 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2975 source_startup_scripts(mparm_T *parmp) |
440 | 2976 { |
2977 int i; | |
2978 | |
2979 /* | |
2980 * For "evim" source evim.vim first of all, so that the user can overrule | |
2981 * any things he doesn't like. | |
2982 */ | |
2983 if (parmp->evim_mode) | |
2984 { | |
819 | 2985 (void)do_source((char_u *)EVIM_FILE, FALSE, DOSO_NONE); |
440 | 2986 TIME_MSG("source evim file"); |
2987 } | |
2988 | |
2989 /* | |
443 | 2990 * If -u argument given, use only the initializations from that file and |
440 | 2991 * nothing else. |
2992 */ | |
2993 if (parmp->use_vimrc != NULL) | |
2994 { | |
11666
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
2995 if (STRCMP(parmp->use_vimrc, "DEFAULTS") == 0) |
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
2996 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE); |
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
2997 else if (STRCMP(parmp->use_vimrc, "NONE") == 0 |
445 | 2998 || STRCMP(parmp->use_vimrc, "NORC") == 0) |
440 | 2999 { |
3000 #ifdef FEAT_GUI | |
3001 if (use_gvimrc == NULL) /* don't load gvimrc either */ | |
3002 use_gvimrc = parmp->use_vimrc; | |
3003 #endif | |
3004 } | |
3005 else | |
3006 { | |
819 | 3007 if (do_source(parmp->use_vimrc, FALSE, DOSO_NONE) != OK) |
440 | 3008 EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc); |
3009 } | |
3010 } | |
3011 else if (!silent_mode) | |
3012 { | |
3013 #ifdef AMIGA | |
3014 struct Process *proc = (struct Process *)FindTask(0L); | |
3015 APTR save_winptr = proc->pr_WindowPtr; | |
3016 | |
3017 /* Avoid a requester here for a volume that doesn't exist. */ | |
3018 proc->pr_WindowPtr = (APTR)-1L; | |
3019 #endif | |
3020 | |
3021 /* | |
3022 * Get system wide defaults, if the file name is defined. | |
3023 */ | |
3024 #ifdef SYS_VIMRC_FILE | |
819 | 3025 (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, DOSO_NONE); |
440 | 3026 #endif |
720 | 3027 #ifdef MACOS_X |
819 | 3028 (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, DOSO_NONE); |
720 | 3029 #endif |
440 | 3030 |
3031 /* | |
3032 * Try to read initialization commands from the following places: | |
3033 * - environment variable VIMINIT | |
3034 * - user vimrc file (s:.vimrc for Amiga, ~/.vimrc otherwise) | |
3035 * - second user vimrc file ($VIM/.vimrc for Dos) | |
3036 * - environment variable EXINIT | |
3037 * - user exrc file (s:.exrc for Amiga, ~/.exrc otherwise) | |
3038 * - second user exrc file ($VIM/.exrc for Dos) | |
3039 * The first that exists is used, the rest is ignored. | |
3040 */ | |
3041 if (process_env((char_u *)"VIMINIT", TRUE) != OK) | |
3042 { | |
819 | 3043 if (do_source((char_u *)USR_VIMRC_FILE, TRUE, DOSO_VIMRC) == FAIL |
440 | 3044 #ifdef USR_VIMRC_FILE2 |
819 | 3045 && do_source((char_u *)USR_VIMRC_FILE2, TRUE, |
3046 DOSO_VIMRC) == FAIL | |
440 | 3047 #endif |
3048 #ifdef USR_VIMRC_FILE3 | |
819 | 3049 && do_source((char_u *)USR_VIMRC_FILE3, TRUE, |
3050 DOSO_VIMRC) == FAIL | |
440 | 3051 #endif |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4369
diff
changeset
|
3052 #ifdef USR_VIMRC_FILE4 |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4369
diff
changeset
|
3053 && do_source((char_u *)USR_VIMRC_FILE4, TRUE, |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4369
diff
changeset
|
3054 DOSO_VIMRC) == FAIL |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4369
diff
changeset
|
3055 #endif |
440 | 3056 && process_env((char_u *)"EXINIT", FALSE) == FAIL |
9669
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
3057 && do_source((char_u *)USR_EXRC_FILE, FALSE, DOSO_NONE) == FAIL |
440 | 3058 #ifdef USR_EXRC_FILE2 |
9669
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
3059 && do_source((char_u *)USR_EXRC_FILE2, FALSE, DOSO_NONE) == FAIL |
440 | 3060 #endif |
9678
8c9e13109df8
commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535
Christian Brabandt <cb@256bit.org>
parents:
9669
diff
changeset
|
3061 && !has_dash_c_arg) |
9669
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
3062 { |
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
3063 /* When no .vimrc file was found: source defaults.vim. */ |
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
3064 do_source((char_u *)VIM_DEFAULTS_FILE, FALSE, DOSO_NONE); |
440 | 3065 } |
3066 } | |
3067 | |
3068 /* | |
3069 * Read initialization commands from ".vimrc" or ".exrc" in current | |
3070 * directory. This is only done if the 'exrc' option is set. | |
3071 * Because of security reasons we disallow shell and write commands | |
9669
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
3072 * now, except for Unix if the file is owned by the user or 'secure' |
440 | 3073 * option has been reset in environment of global ".exrc" or ".vimrc". |
3074 * Only do this if VIMRC_FILE is not the same as USR_VIMRC_FILE or | |
3075 * SYS_VIMRC_FILE. | |
3076 */ | |
3077 if (p_exrc) | |
3078 { | |
3079 #if defined(UNIX) || defined(VMS) | |
3080 /* If ".vimrc" file is not owned by user, set 'secure' mode. */ | |
3081 if (!file_owned(VIMRC_FILE)) | |
3082 #endif | |
3083 secure = p_secure; | |
3084 | |
3085 i = FAIL; | |
3086 if (fullpathcmp((char_u *)USR_VIMRC_FILE, | |
3087 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME | |
3088 #ifdef USR_VIMRC_FILE2 | |
3089 && fullpathcmp((char_u *)USR_VIMRC_FILE2, | |
3090 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME | |
3091 #endif | |
3092 #ifdef USR_VIMRC_FILE3 | |
3093 && fullpathcmp((char_u *)USR_VIMRC_FILE3, | |
3094 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME | |
3095 #endif | |
3096 #ifdef SYS_VIMRC_FILE | |
3097 && fullpathcmp((char_u *)SYS_VIMRC_FILE, | |
3098 (char_u *)VIMRC_FILE, FALSE) != FPC_SAME | |
3099 #endif | |
3100 ) | |
819 | 3101 i = do_source((char_u *)VIMRC_FILE, TRUE, DOSO_VIMRC); |
440 | 3102 |
3103 if (i == FAIL) | |
3104 { | |
3105 #if defined(UNIX) || defined(VMS) | |
3106 /* if ".exrc" is not owned by user set 'secure' mode */ | |
3107 if (!file_owned(EXRC_FILE)) | |
3108 secure = p_secure; | |
3109 else | |
3110 secure = 0; | |
3111 #endif | |
3112 if ( fullpathcmp((char_u *)USR_EXRC_FILE, | |
3113 (char_u *)EXRC_FILE, FALSE) != FPC_SAME | |
3114 #ifdef USR_EXRC_FILE2 | |
3115 && fullpathcmp((char_u *)USR_EXRC_FILE2, | |
3116 (char_u *)EXRC_FILE, FALSE) != FPC_SAME | |
3117 #endif | |
3118 ) | |
819 | 3119 (void)do_source((char_u *)EXRC_FILE, FALSE, DOSO_NONE); |
440 | 3120 } |
3121 } | |
3122 if (secure == 2) | |
3123 need_wait_return = TRUE; | |
3124 secure = 0; | |
3125 #ifdef AMIGA | |
3126 proc->pr_WindowPtr = save_winptr; | |
3127 #endif | |
3128 } | |
3129 TIME_MSG("sourcing vimrc file(s)"); | |
3130 } | |
3131 | |
3132 /* | |
6 | 3133 * Setup to start using the GUI. Exit with an error when not available. |
3134 */ | |
3135 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3136 main_start_gui(void) |
6 | 3137 { |
3138 #ifdef FEAT_GUI | |
3139 gui.starting = TRUE; /* start GUI a bit later */ | |
3140 #else | |
3141 mch_errmsg(_(e_nogvim)); | |
3142 mch_errmsg("\n"); | |
3143 mch_exit(2); | |
3144 #endif | |
3145 } | |
3146 | |
2730 | 3147 #endif /* NO_VIM_MAIN */ |
3148 | |
6 | 3149 /* |
1226 | 3150 * Get an environment variable, and execute it as Ex commands. |
6 | 3151 * Returns FAIL if the environment variable was not executed, OK otherwise. |
3152 */ | |
3153 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3154 process_env( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3155 char_u *env, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3156 int is_viminit) /* when TRUE, called for VIMINIT */ |
6 | 3157 { |
3158 char_u *initstr; | |
3159 char_u *save_sourcing_name; | |
3160 linenr_T save_sourcing_lnum; | |
3161 #ifdef FEAT_EVAL | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14481
diff
changeset
|
3162 sctx_T save_current_sctx; |
6 | 3163 #endif |
3164 | |
3165 if ((initstr = mch_getenv(env)) != NULL && *initstr != NUL) | |
3166 { | |
3167 if (is_viminit) | |
819 | 3168 vimrc_found(NULL, NULL); |
6 | 3169 save_sourcing_name = sourcing_name; |
3170 save_sourcing_lnum = sourcing_lnum; | |
3171 sourcing_name = env; | |
3172 sourcing_lnum = 0; | |
3173 #ifdef FEAT_EVAL | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14481
diff
changeset
|
3174 save_current_sctx = current_sctx; |
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14481
diff
changeset
|
3175 current_sctx.sc_sid = SID_ENV; |
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14481
diff
changeset
|
3176 current_sctx.sc_lnum = 0; |
6 | 3177 #endif |
3178 do_cmdline_cmd(initstr); | |
3179 sourcing_name = save_sourcing_name; | |
3180 sourcing_lnum = save_sourcing_lnum; | |
3181 #ifdef FEAT_EVAL | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14481
diff
changeset
|
3182 current_sctx = save_current_sctx; |
6 | 3183 #endif |
3184 return OK; | |
3185 } | |
3186 return FAIL; | |
3187 } | |
3188 | |
2730 | 3189 #if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN) |
6 | 3190 /* |
3191 * Return TRUE if we are certain the user owns the file "fname". | |
3192 * Used for ".vimrc" and ".exrc". | |
3193 * Use both stat() and lstat() for extra security. | |
3194 */ | |
3195 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3196 file_owned(char *fname) |
6 | 3197 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9363
diff
changeset
|
3198 stat_T s; |
6 | 3199 # ifdef UNIX |
3200 uid_t uid = getuid(); | |
3201 # else /* VMS */ | |
3202 uid_t uid = ((getgid() << 16) | getuid()); | |
3203 # endif | |
3204 | |
3205 return !(mch_stat(fname, &s) != 0 || s.st_uid != uid | |
3206 # ifdef HAVE_LSTAT | |
3207 || mch_lstat(fname, &s) != 0 || s.st_uid != uid | |
3208 # endif | |
3209 ); | |
3210 } | |
3211 #endif | |
3212 | |
3213 /* | |
3214 * Give an error message main_errors["n"] and exit. | |
3215 */ | |
3216 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3217 mainerr( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3218 int n, /* one of the ME_ defines */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3219 char_u *str) /* extra argument or NULL */ |
6 | 3220 { |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3221 #if defined(UNIX) || defined(VMS) |
6 | 3222 reset_signals(); /* kill us with CTRL-C here, if you like */ |
3223 #endif | |
3224 | |
14171
ddf160d82971
patch 8.1.0103: long version string cannot be translated
Christian Brabandt <cb@256bit.org>
parents:
14153
diff
changeset
|
3225 init_longVersion(); |
6 | 3226 mch_errmsg(longVersion); |
159 | 3227 mch_errmsg("\n"); |
6 | 3228 mch_errmsg(_(main_errors[n])); |
3229 if (str != NULL) | |
3230 { | |
3231 mch_errmsg(": \""); | |
3232 mch_errmsg((char *)str); | |
3233 mch_errmsg("\""); | |
3234 } | |
159 | 3235 mch_errmsg(_("\nMore info with: \"vim -h\"\n")); |
6 | 3236 |
3237 mch_exit(1); | |
3238 } | |
3239 | |
3240 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3241 mainerr_arg_missing(char_u *str) |
6 | 3242 { |
3243 mainerr(ME_ARG_MISSING, str); | |
3244 } | |
3245 | |
2730 | 3246 #ifndef NO_VIM_MAIN |
6 | 3247 /* |
3248 * print a message with three spaces prepended and '\n' appended. | |
3249 */ | |
3250 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3251 main_msg(char *s) |
6 | 3252 { |
3253 mch_msg(" "); | |
3254 mch_msg(s); | |
3255 mch_msg("\n"); | |
3256 } | |
3257 | |
3258 /* | |
3259 * Print messages for "vim -h" or "vim --help" and exit. | |
3260 */ | |
3261 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3262 usage(void) |
6 | 3263 { |
3264 int i; | |
3265 static char *(use[]) = | |
3266 { | |
3267 N_("[file ..] edit specified file(s)"), | |
3268 N_("- read text from stdin"), | |
3269 N_("-t tag edit file where tag is defined"), | |
3270 #ifdef FEAT_QUICKFIX | |
3271 N_("-q [errorfile] edit file with first error") | |
3272 #endif | |
3273 }; | |
3274 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3275 #if defined(UNIX) || defined(VMS) |
6 | 3276 reset_signals(); /* kill us with CTRL-C here, if you like */ |
3277 #endif | |
3278 | |
14171
ddf160d82971
patch 8.1.0103: long version string cannot be translated
Christian Brabandt <cb@256bit.org>
parents:
14153
diff
changeset
|
3279 init_longVersion(); |
6 | 3280 mch_msg(longVersion); |
14153
01b7a627d403
patch 8.1.0094: help text "usage:" is not capatalized
Christian Brabandt <cb@256bit.org>
parents:
14129
diff
changeset
|
3281 mch_msg(_("\n\nUsage:")); |
6 | 3282 for (i = 0; ; ++i) |
3283 { | |
3284 mch_msg(_(" vim [arguments] ")); | |
3285 mch_msg(_(use[i])); | |
3286 if (i == (sizeof(use) / sizeof(char_u *)) - 1) | |
3287 break; | |
3288 mch_msg(_("\n or:")); | |
3289 } | |
22 | 3290 #ifdef VMS |
1164 | 3291 mch_msg(_("\nWhere case is ignored prepend / to make flag upper case")); |
22 | 3292 #endif |
6 | 3293 |
3294 mch_msg(_("\n\nArguments:\n")); | |
3295 main_msg(_("--\t\t\tOnly file names after this")); | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
6923
diff
changeset
|
3296 #ifdef EXPAND_FILENAMES |
6 | 3297 main_msg(_("--literal\t\tDon't expand wildcards")); |
3298 #endif | |
3299 #ifdef FEAT_OLE | |
3300 main_msg(_("-register\t\tRegister this gvim for OLE")); | |
3301 main_msg(_("-unregister\t\tUnregister gvim for OLE")); | |
3302 #endif | |
3303 #ifdef FEAT_GUI | |
3304 main_msg(_("-g\t\t\tRun using GUI (like \"gvim\")")); | |
3305 main_msg(_("-f or --nofork\tForeground: Don't fork when starting GUI")); | |
3306 #endif | |
3307 main_msg(_("-v\t\t\tVi mode (like \"vi\")")); | |
3308 main_msg(_("-e\t\t\tEx mode (like \"ex\")")); | |
3437 | 3309 main_msg(_("-E\t\t\tImproved Ex mode")); |
6 | 3310 main_msg(_("-s\t\t\tSilent (batch) mode (only for \"ex\")")); |
3311 #ifdef FEAT_DIFF | |
3312 main_msg(_("-d\t\t\tDiff mode (like \"vimdiff\")")); | |
3313 #endif | |
3314 main_msg(_("-y\t\t\tEasy mode (like \"evim\", modeless)")); | |
3315 main_msg(_("-R\t\t\tReadonly mode (like \"view\")")); | |
3316 main_msg(_("-Z\t\t\tRestricted mode (like \"rvim\")")); | |
3317 main_msg(_("-m\t\t\tModifications (writing files) not allowed")); | |
3318 main_msg(_("-M\t\t\tModifications in text not allowed")); | |
3319 main_msg(_("-b\t\t\tBinary mode")); | |
3320 #ifdef FEAT_LISP | |
3321 main_msg(_("-l\t\t\tLisp mode")); | |
3322 #endif | |
3323 main_msg(_("-C\t\t\tCompatible with Vi: 'compatible'")); | |
3324 main_msg(_("-N\t\t\tNot fully Vi compatible: 'nocompatible'")); | |
1164 | 3325 main_msg(_("-V[N][fname]\t\tBe verbose [level N] [log messages to fname]")); |
3326 #ifdef FEAT_EVAL | |
6 | 3327 main_msg(_("-D\t\t\tDebugging mode")); |
1164 | 3328 #endif |
6 | 3329 main_msg(_("-n\t\t\tNo swap file, use memory only")); |
3330 main_msg(_("-r\t\t\tList swap files and exit")); | |
3331 main_msg(_("-r (with file name)\tRecover crashed session")); | |
3332 main_msg(_("-L\t\t\tSame as -r")); | |
3333 #ifdef AMIGA | |
3334 main_msg(_("-f\t\t\tDon't use newcli to open window")); | |
3335 main_msg(_("-dev <device>\t\tUse <device> for I/O")); | |
3336 #endif | |
3337 #ifdef FEAT_ARABIC | |
14129
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
13841
diff
changeset
|
3338 main_msg(_("-A\t\t\tStart in Arabic mode")); |
6 | 3339 #endif |
3340 #ifdef FEAT_RIGHTLEFT | |
3341 main_msg(_("-H\t\t\tStart in Hebrew mode")); | |
3342 #endif | |
3343 #ifdef FEAT_FKMAP | |
3344 main_msg(_("-F\t\t\tStart in Farsi mode")); | |
3345 #endif | |
3346 main_msg(_("-T <terminal>\tSet terminal type to <terminal>")); | |
8253
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3347 main_msg(_("--not-a-term\t\tSkip warning for input/output not being a terminal")); |
10404
65e0537a4560
commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3348 main_msg(_("--ttyfail\t\tExit if input or output is not a terminal")); |
6 | 3349 main_msg(_("-u <vimrc>\t\tUse <vimrc> instead of any .vimrc")); |
3350 #ifdef FEAT_GUI | |
3351 main_msg(_("-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc")); | |
3352 #endif | |
3353 main_msg(_("--noplugin\t\tDon't load plugin scripts")); | |
673 | 3354 main_msg(_("-p[N]\t\tOpen N tab pages (default: one for each file)")); |
6 | 3355 main_msg(_("-o[N]\t\tOpen N windows (default: one for each file)")); |
3356 main_msg(_("-O[N]\t\tLike -o but split vertically")); | |
3357 main_msg(_("+\t\t\tStart at end of file")); | |
3358 main_msg(_("+<lnum>\t\tStart at line <lnum>")); | |
3359 main_msg(_("--cmd <command>\tExecute <command> before loading any vimrc file")); | |
3360 main_msg(_("-c <command>\t\tExecute <command> after loading the first file")); | |
3361 main_msg(_("-S <session>\t\tSource file <session> after loading the first file")); | |
3362 main_msg(_("-s <scriptin>\tRead Normal mode commands from file <scriptin>")); | |
3363 main_msg(_("-w <scriptout>\tAppend all typed commands to file <scriptout>")); | |
3364 main_msg(_("-W <scriptout>\tWrite all typed commands to file <scriptout>")); | |
3365 #ifdef FEAT_CRYPT | |
3366 main_msg(_("-x\t\t\tEdit encrypted files")); | |
3367 #endif | |
3368 #if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11) | |
3369 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) | |
3370 main_msg(_("-display <display>\tConnect vim to this particular X-server")); | |
3371 # endif | |
3372 main_msg(_("-X\t\t\tDo not connect to X server")); | |
3373 #endif | |
3374 #ifdef FEAT_CLIENTSERVER | |
3375 main_msg(_("--remote <files>\tEdit <files> in a Vim server if possible")); | |
3376 main_msg(_("--remote-silent <files> Same, don't complain if there is no server")); | |
3377 main_msg(_("--remote-wait <files> As --remote but wait for files to have been edited")); | |
3378 main_msg(_("--remote-wait-silent <files> Same, don't complain if there is no server")); | |
1501 | 3379 main_msg(_("--remote-tab[-wait][-silent] <files> As --remote but use tab page per file")); |
6 | 3380 main_msg(_("--remote-send <keys>\tSend <keys> to a Vim server and exit")); |
3381 main_msg(_("--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result")); | |
3382 main_msg(_("--serverlist\t\tList available Vim server names and exit")); | |
3383 main_msg(_("--servername <name>\tSend to/become the Vim server <name>")); | |
3384 #endif | |
1989 | 3385 #ifdef STARTUPTIME |
1999 | 3386 main_msg(_("--startuptime <file>\tWrite startup timing messages to <file>")); |
1989 | 3387 #endif |
6 | 3388 #ifdef FEAT_VIMINFO |
3389 main_msg(_("-i <viminfo>\t\tUse <viminfo> instead of .viminfo")); | |
3390 #endif | |
11666
5cd9ba96561d
patch 8.0.0716: not easy to start Vim cleanly
Christian Brabandt <cb@256bit.org>
parents:
11595
diff
changeset
|
3391 main_msg(_("--clean\t\t'nocompatible', Vim defaults, no plugins, no viminfo")); |
6 | 3392 main_msg(_("-h or --help\tPrint Help (this message) and exit")); |
3393 main_msg(_("--version\t\tPrint version information and exit")); | |
3394 | |
3395 #ifdef FEAT_GUI_X11 | |
3396 # ifdef FEAT_GUI_MOTIF | |
3397 mch_msg(_("\nArguments recognised by gvim (Motif version):\n")); | |
3398 # else | |
3399 # ifdef FEAT_GUI_ATHENA | |
3400 # ifdef FEAT_GUI_NEXTAW | |
3401 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n")); | |
3402 # else | |
3403 mch_msg(_("\nArguments recognised by gvim (Athena version):\n")); | |
3404 # endif | |
3405 # endif | |
3406 # endif | |
3407 main_msg(_("-display <display>\tRun vim on <display>")); | |
3408 main_msg(_("-iconic\t\tStart vim iconified")); | |
3409 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)")); | |
3410 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)")); | |
3411 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)")); | |
3412 main_msg(_("-boldfont <font>\tUse <font> for bold text")); | |
3413 main_msg(_("-italicfont <font>\tUse <font> for italic text")); | |
3414 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)")); | |
3415 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)")); | |
3416 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)")); | |
3417 # ifdef FEAT_GUI_ATHENA | |
3418 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)")); | |
3419 # endif | |
3420 main_msg(_("-reverse\t\tUse reverse video (also: -rv)")); | |
3421 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)")); | |
3422 main_msg(_("-xrm <resource>\tSet the specified resource")); | |
3423 #endif /* FEAT_GUI_X11 */ | |
3424 #ifdef FEAT_GUI_GTK | |
3425 mch_msg(_("\nArguments recognised by gvim (GTK+ version):\n")); | |
3426 main_msg(_("-font <font>\t\tUse <font> for normal text (also: -fn)")); | |
3427 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)")); | |
3428 main_msg(_("-reverse\t\tUse reverse video (also: -rv)")); | |
3429 main_msg(_("-display <display>\tRun vim on <display> (also: --display)")); | |
3430 main_msg(_("--role <role>\tSet a unique role to identify the main window")); | |
3431 main_msg(_("--socketid <xid>\tOpen Vim inside another GTK widget")); | |
3437 | 3432 main_msg(_("--echo-wid\t\tMake gvim echo the Window ID on stdout")); |
6 | 3433 #endif |
3434 #ifdef FEAT_GUI_W32 | |
3435 main_msg(_("-P <parent title>\tOpen Vim inside parent application")); | |
1376 | 3436 main_msg(_("--windowid <HWND>\tOpen Vim inside another win32 widget")); |
6 | 3437 #endif |
3438 | |
3439 #ifdef FEAT_GUI_GNOME | |
3440 /* Gnome gives extra messages for --help if we continue, but not for -h. */ | |
3441 if (gui.starting) | |
3198 | 3442 { |
6 | 3443 mch_msg("\n"); |
3198 | 3444 gui.dofork = FALSE; |
3445 } | |
6 | 3446 else |
3447 #endif | |
3448 mch_exit(0); | |
3449 } | |
3450 | |
580 | 3451 #if defined(HAS_SWAP_EXISTS_ACTION) |
6 | 3452 /* |
3453 * Check the result of the ATTENTION dialog: | |
3454 * When "Quit" selected, exit Vim. | |
3455 * When "Recover" selected, recover the file. | |
3456 */ | |
3457 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3458 check_swap_exists_action(void) |
6 | 3459 { |
3460 if (swap_exists_action == SEA_QUIT) | |
3461 getout(1); | |
3462 handle_swap_exists(NULL); | |
3463 } | |
3464 #endif | |
3465 | |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3466 #endif /* NO_VIM_MAIN */ |
2730 | 3467 |
6 | 3468 #if defined(STARTUPTIME) || defined(PROTO) |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
3469 static void time_diff(struct timeval *then, struct timeval *now); |
6 | 3470 |
3471 static struct timeval prev_timeval; | |
3472 | |
1972 | 3473 # ifdef WIN3264 |
3474 /* | |
3475 * Windows doesn't have gettimeofday(), although it does have struct timeval. | |
3476 */ | |
3477 static int | |
3478 gettimeofday(struct timeval *tv, char *dummy) | |
3479 { | |
3480 long t = clock(); | |
3481 tv->tv_sec = t / CLOCKS_PER_SEC; | |
3482 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC; | |
3483 return 0; | |
3484 } | |
3485 # endif | |
3486 | |
6 | 3487 /* |
3488 * Save the previous time before doing something that could nest. | |
3489 * set "*tv_rel" to the time elapsed so far. | |
3490 */ | |
3491 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3492 time_push(void *tv_rel, void *tv_start) |
6 | 3493 { |
3494 *((struct timeval *)tv_rel) = prev_timeval; | |
3495 gettimeofday(&prev_timeval, NULL); | |
3496 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec | |
3497 - ((struct timeval *)tv_rel)->tv_usec; | |
3498 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec | |
3499 - ((struct timeval *)tv_rel)->tv_sec; | |
3500 if (((struct timeval *)tv_rel)->tv_usec < 0) | |
3501 { | |
3502 ((struct timeval *)tv_rel)->tv_usec += 1000000; | |
3503 --((struct timeval *)tv_rel)->tv_sec; | |
3504 } | |
3505 *(struct timeval *)tv_start = prev_timeval; | |
3506 } | |
3507 | |
3508 /* | |
3509 * Compute the previous time after doing something that could nest. | |
3510 * Subtract "*tp" from prev_timeval; | |
3511 * Note: The arguments are (void *) to avoid trouble with systems that don't | |
3512 * have struct timeval. | |
3513 */ | |
3514 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3515 time_pop( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3516 void *tp) /* actually (struct timeval *) */ |
6 | 3517 { |
3518 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec; | |
3519 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec; | |
3520 if (prev_timeval.tv_usec < 0) | |
3521 { | |
3522 prev_timeval.tv_usec += 1000000; | |
3523 --prev_timeval.tv_sec; | |
3524 } | |
3525 } | |
3526 | |
3527 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3528 time_diff(struct timeval *then, struct timeval *now) |
6 | 3529 { |
3530 long usec; | |
3531 long msec; | |
3532 | |
3533 usec = now->tv_usec - then->tv_usec; | |
3534 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L, | |
3535 usec = usec % 1000L; | |
3536 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L); | |
3537 } | |
3538 | |
3539 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3540 time_msg( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3541 char *mesg, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3542 void *tv_start) /* only for do_source: start time; actually |
6 | 3543 (struct timeval *) */ |
3544 { | |
3545 static struct timeval start; | |
3546 struct timeval now; | |
3547 | |
3548 if (time_fd != NULL) | |
3549 { | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2267
diff
changeset
|
3550 if (strstr(mesg, "STARTING") != NULL) |
6 | 3551 { |
3552 gettimeofday(&start, NULL); | |
3553 prev_timeval = start; | |
3554 fprintf(time_fd, "\n\ntimes in msec\n"); | |
3555 fprintf(time_fd, " clock self+sourced self: sourced script\n"); | |
3556 fprintf(time_fd, " clock elapsed: other lines\n\n"); | |
3557 } | |
3558 gettimeofday(&now, NULL); | |
3559 time_diff(&start, &now); | |
3560 if (((struct timeval *)tv_start) != NULL) | |
3561 { | |
3562 fprintf(time_fd, " "); | |
3563 time_diff(((struct timeval *)tv_start), &now); | |
3564 } | |
3565 fprintf(time_fd, " "); | |
3566 time_diff(&prev_timeval, &now); | |
3567 prev_timeval = now; | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2267
diff
changeset
|
3568 fprintf(time_fd, ": %s\n", mesg); |
6 | 3569 } |
3570 } | |
3571 | |
3572 #endif | |
3573 | |
11040
fde2cdef6b97
patch 8.0.0409: set_progpath is defined but not always used
Christian Brabandt <cb@256bit.org>
parents:
11032
diff
changeset
|
3574 #if !defined(NO_VIM_MAIN) && defined(FEAT_EVAL) |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3575 static void |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3576 set_progpath(char_u *argv0) |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3577 { |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3578 char_u *val = argv0; |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3579 |
12148
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3580 # if defined(WIN32) |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3581 /* A relative path containing a "/" will become invalid when using ":cd", |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3582 * turn it into a full path. |
11060
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3583 * On MS-Windows "vim" should be expanded to "vim.exe", thus always do |
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3584 * this. */ |
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3585 char_u *path = NULL; |
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3586 |
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3587 if (mch_can_exe(argv0, &path, FALSE) && path != NULL) |
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3588 val = path; |
12148
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3589 # else |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3590 char_u buf[MAXPATHL + 1]; |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3591 # ifdef PROC_EXE_LINK |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3592 char linkbuf[MAXPATHL + 1]; |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3593 ssize_t len; |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3594 |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3595 len = readlink(PROC_EXE_LINK, linkbuf, MAXPATHL); |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3596 if (len > 0) |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11040
diff
changeset
|
3597 { |
12148
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3598 linkbuf[len] = NUL; |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3599 val = (char_u *)linkbuf; |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3600 } |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3601 # endif |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3602 |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3603 if (!mch_isFullName(val)) |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3604 { |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3605 if (gettail(val) != val |
315919a95b4d
patch 8.0.0954: /proc/self/exe might be a relative path
Christian Brabandt <cb@256bit.org>
parents:
12132
diff
changeset
|
3606 && vim_FullName(val, buf, MAXPATHL, TRUE) != FAIL) |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11040
diff
changeset
|
3607 val = buf; |
11060
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3608 } |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3609 # endif |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
3610 |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3611 set_vim_var_string(VV_PROGPATH, val, -1); |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11063
diff
changeset
|
3612 |
11060
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3613 # ifdef WIN32 |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11040
diff
changeset
|
3614 vim_free(path); |
11060
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3615 # endif |
11032
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3616 } |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3617 |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3618 #endif /* NO_VIM_MAIN */ |
516391d8865f
patch 8.0.0405: v:progpath may become invalid after :cd
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
3619 |
2730 | 3620 #if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO) |
6 | 3621 |
3622 /* | |
3623 * Common code for the X command server and the Win32 command server. | |
3624 */ | |
3625 | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
3626 static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply); |
6 | 3627 |
443 | 3628 /* |
3629 * Do the client-server stuff, unless "--servername ''" was used. | |
3630 */ | |
3631 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3632 exec_on_server(mparm_T *parmp) |
443 | 3633 { |
3634 if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL) | |
3635 { | |
3636 # ifdef WIN32 | |
3637 /* Initialise the client/server messaging infrastructure. */ | |
3638 serverInitMessaging(); | |
3639 # endif | |
3640 | |
3641 /* | |
3642 * When a command server argument was found, execute it. This may | |
3643 * exit Vim when it was successful. Otherwise it's executed further | |
3644 * on. Remember the encoding used here in "serverStrEnc". | |
3645 */ | |
3646 if (parmp->serverArg) | |
3647 { | |
3648 cmdsrv_main(&parmp->argc, parmp->argv, | |
3649 parmp->serverName_arg, &parmp->serverStr); | |
3650 # ifdef FEAT_MBYTE | |
3651 parmp->serverStrEnc = vim_strsave(p_enc); | |
3652 # endif | |
3653 } | |
3654 | |
3655 /* If we're still running, get the name to register ourselves. | |
3656 * On Win32 can register right now, for X11 need to setup the | |
3657 * clipboard first, it's further down. */ | |
3658 parmp->servername = serverMakeName(parmp->serverName_arg, | |
3659 parmp->argv[0]); | |
3660 # ifdef WIN32 | |
3661 if (parmp->servername != NULL) | |
3662 { | |
3663 serverSetName(parmp->servername); | |
3664 vim_free(parmp->servername); | |
3665 } | |
3666 # endif | |
3667 } | |
3668 } | |
3669 | |
3670 /* | |
3671 * Prepare for running as a Vim server. | |
3672 */ | |
3673 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3674 prepare_server(mparm_T *parmp) |
443 | 3675 { |
3676 # if defined(FEAT_X11) | |
3677 /* | |
3678 * Register for remote command execution with :serversend and --remote | |
3679 * unless there was a -X or a --servername '' on the command line. | |
12837
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
3680 * Only register nongui-vim's with an explicit --servername argument, |
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
3681 * or when compiling with autoservername. |
926 | 3682 * When running as root --servername is also required. |
443 | 3683 */ |
3684 if (X_DISPLAY != NULL && parmp->servername != NULL && ( | |
12837
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
3685 # if defined(FEAT_AUTOSERVERNAME) || defined(FEAT_GUI) |
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
3686 ( |
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
3687 # if defined(FEAT_AUTOSERVERNAME) |
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
3688 1 |
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
3689 # else |
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
3690 gui.in_use |
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
3691 # endif |
926 | 3692 # ifdef UNIX |
1076 | 3693 && getuid() != ROOT_UID |
926 | 3694 # endif |
3695 ) || | |
443 | 3696 # endif |
3697 parmp->serverName_arg != NULL)) | |
3698 { | |
3699 (void)serverRegisterName(X_DISPLAY, parmp->servername); | |
3700 vim_free(parmp->servername); | |
3701 TIME_MSG("register server name"); | |
3702 } | |
3703 else | |
3704 serverDelayedStartName = parmp->servername; | |
3705 # endif | |
3706 | |
3707 /* | |
3708 * Execute command ourselves if we're here because the send failed (or | |
3709 * else we would have exited above). | |
3710 */ | |
3711 if (parmp->serverStr != NULL) | |
3712 { | |
3713 char_u *p; | |
3714 | |
3715 server_to_input_buf(serverConvert(parmp->serverStrEnc, | |
3716 parmp->serverStr, &p)); | |
3717 vim_free(p); | |
3718 } | |
3719 } | |
3720 | |
6 | 3721 static void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3722 cmdsrv_main( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3723 int *argc, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3724 char **argv, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3725 char_u *serverName_arg, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3726 char_u **serverStr) |
6 | 3727 { |
3728 char_u *res; | |
3729 int i; | |
3730 char_u *sname; | |
3731 int ret; | |
3732 int didone = FALSE; | |
3733 int exiterr = 0; | |
3734 char **newArgV = argv + 1; | |
3735 int newArgC = 1, | |
3736 Argc = *argc; | |
3737 int argtype; | |
3738 #define ARGTYPE_OTHER 0 | |
3739 #define ARGTYPE_EDIT 1 | |
3740 #define ARGTYPE_EDIT_WAIT 2 | |
3741 #define ARGTYPE_SEND 3 | |
3742 int silent = FALSE; | |
734 | 3743 int tabs = FALSE; |
6 | 3744 # ifndef FEAT_X11 |
3745 HWND srv; | |
3746 # else | |
3747 Window srv; | |
3748 | |
3749 setup_term_clip(); | |
3750 # endif | |
3751 | |
3752 sname = serverMakeName(serverName_arg, argv[0]); | |
3753 if (sname == NULL) | |
3754 return; | |
3755 | |
3756 /* | |
3757 * Execute the command server related arguments and remove them | |
3758 * from the argc/argv array; We may have to return into main() | |
3759 */ | |
3760 for (i = 1; i < Argc; i++) | |
3761 { | |
3762 res = NULL; | |
443 | 3763 if (STRCMP(argv[i], "--") == 0) /* end of option arguments */ |
6 | 3764 { |
3765 for (; i < *argc; i++) | |
3766 { | |
3767 *newArgV++ = argv[i]; | |
3768 newArgC++; | |
3769 } | |
3770 break; | |
3771 } | |
3772 | |
734 | 3773 if (STRICMP(argv[i], "--remote-send") == 0) |
3774 argtype = ARGTYPE_SEND; | |
3775 else if (STRNICMP(argv[i], "--remote", 8) == 0) | |
3776 { | |
3777 char *p = argv[i] + 8; | |
3778 | |
6 | 3779 argtype = ARGTYPE_EDIT; |
734 | 3780 while (*p != NUL) |
3781 { | |
3782 if (STRNICMP(p, "-wait", 5) == 0) | |
3783 { | |
3784 argtype = ARGTYPE_EDIT_WAIT; | |
3785 p += 5; | |
3786 } | |
3787 else if (STRNICMP(p, "-silent", 7) == 0) | |
3788 { | |
3789 silent = TRUE; | |
3790 p += 7; | |
3791 } | |
3792 else if (STRNICMP(p, "-tab", 4) == 0) | |
3793 { | |
3794 tabs = TRUE; | |
3795 p += 4; | |
3796 } | |
3797 else | |
3798 { | |
3799 argtype = ARGTYPE_OTHER; | |
3800 break; | |
3801 } | |
3802 } | |
6 | 3803 } |
3804 else | |
3805 argtype = ARGTYPE_OTHER; | |
734 | 3806 |
6 | 3807 if (argtype != ARGTYPE_OTHER) |
3808 { | |
3809 if (i == *argc - 1) | |
3810 mainerr_arg_missing((char_u *)argv[i]); | |
3811 if (argtype == ARGTYPE_SEND) | |
3812 { | |
3813 *serverStr = (char_u *)argv[i + 1]; | |
3814 i++; | |
3815 } | |
3816 else | |
3817 { | |
3818 *serverStr = build_drop_cmd(*argc - i - 1, argv + i + 1, | |
734 | 3819 tabs, argtype == ARGTYPE_EDIT_WAIT); |
6 | 3820 if (*serverStr == NULL) |
3821 { | |
3822 /* Probably out of memory, exit. */ | |
3823 didone = TRUE; | |
3824 exiterr = 1; | |
3825 break; | |
3826 } | |
3827 Argc = i; | |
3828 } | |
3829 # ifdef FEAT_X11 | |
3830 if (xterm_dpy == NULL) | |
3831 { | |
3832 mch_errmsg(_("No display")); | |
3833 ret = -1; | |
3834 } | |
3835 else | |
3836 ret = serverSendToVim(xterm_dpy, sname, *serverStr, | |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11179
diff
changeset
|
3837 NULL, &srv, 0, 0, 0, silent); |
6 | 3838 # else |
3839 /* Win32 always works? */ | |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11179
diff
changeset
|
3840 ret = serverSendToVim(sname, *serverStr, NULL, &srv, 0, 0, silent); |
6 | 3841 # endif |
3842 if (ret < 0) | |
3843 { | |
3844 if (argtype == ARGTYPE_SEND) | |
3845 { | |
3846 /* Failed to send, abort. */ | |
3847 mch_errmsg(_(": Send failed.\n")); | |
3848 didone = TRUE; | |
3849 exiterr = 1; | |
3850 } | |
3851 else if (!silent) | |
3852 /* Let vim start normally. */ | |
3853 mch_errmsg(_(": Send failed. Trying to execute locally\n")); | |
3854 break; | |
3855 } | |
3856 | |
3857 # ifdef FEAT_GUI_W32 | |
3858 /* Guess that when the server name starts with "g" it's a GUI | |
3859 * server, which we can bring to the foreground here. | |
3860 * Foreground() in the server doesn't work very well. */ | |
3861 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G') | |
3862 SetForegroundWindow(srv); | |
3863 # endif | |
3864 | |
3865 /* | |
3866 * For --remote-wait: Wait until the server did edit each | |
3867 * file. Also detect that the server no longer runs. | |
3868 */ | |
3869 if (ret >= 0 && argtype == ARGTYPE_EDIT_WAIT) | |
3870 { | |
3871 int numFiles = *argc - i - 1; | |
3872 int j; | |
3873 char_u *done = alloc(numFiles); | |
3874 char_u *p; | |
3875 # ifdef FEAT_GUI_W32 | |
3876 NOTIFYICONDATA ni; | |
3877 int count = 0; | |
3878 extern HWND message_window; | |
3879 # endif | |
3880 | |
3881 if (numFiles > 0 && argv[i + 1][0] == '+') | |
3882 /* Skip "+cmd" argument, don't wait for it to be edited. */ | |
3883 --numFiles; | |
3884 | |
3885 # ifdef FEAT_GUI_W32 | |
3886 ni.cbSize = sizeof(ni); | |
3887 ni.hWnd = message_window; | |
3888 ni.uID = 0; | |
3889 ni.uFlags = NIF_ICON|NIF_TIP; | |
3890 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM"); | |
3891 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles); | |
3892 Shell_NotifyIcon(NIM_ADD, &ni); | |
3893 # endif | |
3894 | |
3895 /* Wait for all files to unload in remote */ | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3896 vim_memset(done, 0, numFiles); |
6 | 3897 while (memchr(done, 0, numFiles) != NULL) |
3898 { | |
3899 # ifdef WIN32 | |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11179
diff
changeset
|
3900 p = serverGetReply(srv, NULL, TRUE, TRUE, 0); |
6 | 3901 if (p == NULL) |
3902 break; | |
3903 # else | |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11179
diff
changeset
|
3904 if (serverReadReply(xterm_dpy, srv, &p, TRUE, -1) < 0) |
6 | 3905 break; |
3906 # endif | |
3907 j = atoi((char *)p); | |
3908 if (j >= 0 && j < numFiles) | |
3909 { | |
3910 # ifdef FEAT_GUI_W32 | |
3911 ++count; | |
3912 sprintf(ni.szTip, _("%d of %d edited"), | |
3913 count, numFiles); | |
3914 Shell_NotifyIcon(NIM_MODIFY, &ni); | |
3915 # endif | |
3916 done[j] = 1; | |
3917 } | |
3918 } | |
3919 # ifdef FEAT_GUI_W32 | |
3920 Shell_NotifyIcon(NIM_DELETE, &ni); | |
3921 # endif | |
3922 } | |
3923 } | |
3924 else if (STRICMP(argv[i], "--remote-expr") == 0) | |
3925 { | |
3926 if (i == *argc - 1) | |
3927 mainerr_arg_missing((char_u *)argv[i]); | |
3928 # ifdef WIN32 | |
3929 /* Win32 always works? */ | |
3930 if (serverSendToVim(sname, (char_u *)argv[i + 1], | |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11179
diff
changeset
|
3931 &res, NULL, 1, 0, FALSE) < 0) |
6 | 3932 # else |
3933 if (xterm_dpy == NULL) | |
3934 mch_errmsg(_("No display: Send expression failed.\n")); | |
3935 else if (serverSendToVim(xterm_dpy, sname, (char_u *)argv[i + 1], | |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11179
diff
changeset
|
3936 &res, NULL, 1, 0, 1, FALSE) < 0) |
6 | 3937 # endif |
3938 { | |
3939 if (res != NULL && *res != NUL) | |
3940 { | |
3941 /* Output error from remote */ | |
3942 mch_errmsg((char *)res); | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13240
diff
changeset
|
3943 VIM_CLEAR(res); |
6 | 3944 } |
3945 mch_errmsg(_(": Send expression failed.\n")); | |
3946 } | |
3947 } | |
3948 else if (STRICMP(argv[i], "--serverlist") == 0) | |
3949 { | |
3950 # ifdef WIN32 | |
3951 /* Win32 always works? */ | |
3952 res = serverGetVimNames(); | |
3953 # else | |
3954 if (xterm_dpy != NULL) | |
3955 res = serverGetVimNames(xterm_dpy); | |
3956 # endif | |
3957 if (called_emsg) | |
3958 mch_errmsg("\n"); | |
3959 } | |
3960 else if (STRICMP(argv[i], "--servername") == 0) | |
3961 { | |
2021 | 3962 /* Already processed. Take it out of the command line */ |
6 | 3963 i++; |
3964 continue; | |
3965 } | |
3966 else | |
3967 { | |
3968 *newArgV++ = argv[i]; | |
3969 newArgC++; | |
3970 continue; | |
3971 } | |
3972 didone = TRUE; | |
3973 if (res != NULL && *res != NUL) | |
3974 { | |
3975 mch_msg((char *)res); | |
3976 if (res[STRLEN(res) - 1] != '\n') | |
3977 mch_msg("\n"); | |
3978 } | |
3979 vim_free(res); | |
3980 } | |
3981 | |
3982 if (didone) | |
3983 { | |
3984 display_errors(); /* display any collected messages */ | |
3985 exit(exiterr); /* Mission accomplished - get out */ | |
3986 } | |
3987 | |
3988 /* Return back into main() */ | |
3989 *argc = newArgC; | |
3990 vim_free(sname); | |
3991 } | |
3992 | |
3993 /* | |
3994 * Build a ":drop" command to send to a Vim server. | |
3995 */ | |
3996 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3997 build_drop_cmd( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3998 int filec, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3999 char **filev, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4000 int tabs, /* Use ":tab drop" instead of ":drop". */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4001 int sendReply) |
6 | 4002 { |
4003 garray_T ga; | |
4004 int i; | |
4005 char_u *inicmd = NULL; | |
4006 char_u *p; | |
6708 | 4007 char_u *cdp; |
2770 | 4008 char_u *cwd; |
6 | 4009 |
4010 if (filec > 0 && filev[0][0] == '+') | |
4011 { | |
4012 inicmd = (char_u *)filev[0] + 1; | |
4013 filev++; | |
4014 filec--; | |
4015 } | |
4016 /* Check if we have at least one argument. */ | |
4017 if (filec <= 0) | |
4018 mainerr_arg_missing((char_u *)filev[-1]); | |
2640 | 4019 |
4020 /* Temporarily cd to the current directory to handle relative file names. */ | |
2770 | 4021 cwd = alloc(MAXPATHL); |
4022 if (cwd == NULL) | |
6 | 4023 return NULL; |
2770 | 4024 if (mch_dirname(cwd, MAXPATHL) != OK) |
4025 { | |
4026 vim_free(cwd); | |
4027 return NULL; | |
4028 } | |
6708 | 4029 cdp = vim_strsave_escaped_ext(cwd, |
1385 | 4030 #ifdef BACKSLASH_IN_FILENAME |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7827
diff
changeset
|
4031 (char_u *)"", /* rem_backslash() will tell what chars to escape */ |
1385 | 4032 #else |
4033 PATH_ESC_CHARS, | |
4034 #endif | |
2770 | 4035 '\\', TRUE); |
4036 vim_free(cwd); | |
6708 | 4037 if (cdp == NULL) |
6 | 4038 return NULL; |
4039 ga_init2(&ga, 1, 100); | |
4040 ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd "); | |
6708 | 4041 ga_concat(&ga, cdp); |
734 | 4042 |
6 | 4043 /* Call inputsave() so that a prompt for an encryption key works. */ |
734 | 4044 ga_concat(&ga, (char_u *)"<CR>:if exists('*inputsave')|call inputsave()|endif|"); |
4045 if (tabs) | |
4046 ga_concat(&ga, (char_u *)"tab "); | |
4047 ga_concat(&ga, (char_u *)"drop"); | |
6 | 4048 for (i = 0; i < filec; i++) |
4049 { | |
4050 /* On Unix the shell has already expanded the wildcards, don't want to | |
40 | 4051 * do it again in the Vim server. On MS-Windows only escape |
4052 * non-wildcard characters. */ | |
6 | 4053 p = vim_strsave_escaped((char_u *)filev[i], |
4054 #ifdef UNIX | |
4055 PATH_ESC_CHARS | |
4056 #else | |
40 | 4057 (char_u *)" \t%#" |
6 | 4058 #endif |
4059 ); | |
4060 if (p == NULL) | |
4061 { | |
4062 vim_free(ga.ga_data); | |
4063 return NULL; | |
4064 } | |
4065 ga_concat(&ga, (char_u *)" "); | |
4066 ga_concat(&ga, p); | |
4067 vim_free(p); | |
4068 } | |
2640 | 4069 ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>"); |
4070 | |
6 | 4071 /* The :drop commands goes to Insert mode when 'insertmode' is set, use |
4072 * CTRL-\ CTRL-N again. */ | |
2640 | 4073 ga_concat(&ga, (char_u *)"<C-\\><C-N>"); |
4074 | |
4075 /* Switch back to the correct current directory (prior to temporary path | |
4076 * switch) unless 'autochdir' is set, in which case it will already be | |
6708 | 4077 * correct after the :drop command. With line breaks and spaces: |
4078 * if !exists('+acd') || !&acd | |
4079 * if haslocaldir() | |
4080 * cd - | |
4081 * lcd - | |
6895 | 4082 * elseif getcwd() ==# 'current path' |
6708 | 4083 * cd - |
4084 * endif | |
4085 * endif | |
4086 */ | |
4087 ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|"); | |
6895 | 4088 ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '"); |
6708 | 4089 ga_concat(&ga, cdp); |
6895 | 4090 ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>"); |
6708 | 4091 vim_free(cdp); |
2640 | 4092 |
6 | 4093 if (sendReply) |
2640 | 4094 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>"); |
4095 ga_concat(&ga, (char_u *)":"); | |
6 | 4096 if (inicmd != NULL) |
4097 { | |
4098 /* Can't use <CR> after "inicmd", because an "startinsert" would cause | |
4099 * the following commands to be inserted as text. Use a "|", | |
4100 * hopefully "inicmd" does allow this... */ | |
4101 ga_concat(&ga, inicmd); | |
4102 ga_concat(&ga, (char_u *)"|"); | |
4103 } | |
4104 /* Bring the window to the foreground, goto Insert mode when 'im' set and | |
4105 * clear command line. */ | |
46 | 4106 ga_concat(&ga, (char_u *)"cal foreground()|if &im|star|en|redr|f<CR>"); |
6 | 4107 ga_append(&ga, NUL); |
4108 return ga.ga_data; | |
4109 } | |
4110 | |
4111 /* | |
2730 | 4112 * Make our basic server name: use the specified "arg" if given, otherwise use |
4113 * the tail of the command "cmd" we were started with. | |
4114 * Return the name in allocated memory. This doesn't include a serial number. | |
4115 */ | |
4116 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4117 serverMakeName(char_u *arg, char *cmd) |
2730 | 4118 { |
4119 char_u *p; | |
4120 | |
4121 if (arg != NULL && *arg != NUL) | |
4122 p = vim_strsave_up(arg); | |
4123 else | |
4124 { | |
4125 p = vim_strsave_up(gettail((char_u *)cmd)); | |
4126 /* Remove .exe or .bat from the name. */ | |
4127 if (p != NULL && vim_strchr(p, '.') != NULL) | |
4128 *vim_strchr(p, '.') = NUL; | |
4129 } | |
4130 return p; | |
4131 } | |
4132 #endif /* FEAT_CLIENTSERVER */ | |
4133 | |
4134 #if defined(FEAT_CLIENTSERVER) || defined(PROTO) | |
4135 /* | |
6 | 4136 * Replace termcodes such as <CR> and insert as key presses if there is room. |
4137 */ | |
4138 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4139 server_to_input_buf(char_u *str) |
6 | 4140 { |
4141 char_u *ptr = NULL; | |
4142 char_u *cpo_save = p_cpo; | |
4143 | |
4144 /* Set 'cpoptions' the way we want it. | |
4145 * B set - backslashes are *not* treated specially | |
4146 * k set - keycodes are *not* reverse-engineered | |
4147 * < unset - <Key> sequences *are* interpreted | |
860 | 4148 * The last but one parameter of replace_termcodes() is TRUE so that the |
4149 * <lt> sequence is recognised - needed for a real backslash. | |
6 | 4150 */ |
4151 p_cpo = (char_u *)"Bk"; | |
860 | 4152 str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE); |
6 | 4153 p_cpo = cpo_save; |
4154 | |
4155 if (*ptr != NUL) /* trailing CTRL-V results in nothing */ | |
4156 { | |
4157 /* | |
4158 * Add the string to the input stream. | |
4159 * Can't use add_to_input_buf() here, we now have K_SPECIAL bytes. | |
4160 * | |
4161 * First clear typed characters from the typeahead buffer, there could | |
4162 * be half a mapping there. Then append to the existing string, so | |
4163 * that multiple commands from a client are concatenated. | |
4164 */ | |
4165 if (typebuf.tb_maplen < typebuf.tb_len) | |
4166 del_typebuf(typebuf.tb_len - typebuf.tb_maplen, typebuf.tb_maplen); | |
4167 (void)ins_typebuf(str, REMAP_NONE, typebuf.tb_len, TRUE, FALSE); | |
4168 | |
4169 /* Let input_available() know we inserted text in the typeahead | |
4170 * buffer. */ | |
841 | 4171 typebuf_was_filled = TRUE; |
6 | 4172 } |
4173 vim_free((char_u *)ptr); | |
4174 } | |
4175 | |
4176 /* | |
4177 * Evaluate an expression that the client sent to a string. | |
4178 */ | |
4179 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4180 eval_client_expr_to_string(char_u *expr) |
6 | 4181 { |
4182 char_u *res; | |
4183 int save_dbl = debug_break_level; | |
4184 int save_ro = redir_off; | |
12678
116b7394b8af
patch 8.0.1217: can't use remote eval to inspect vars in debug mode
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4185 void *fc = NULL; |
11179
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4186 |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4187 /* Evaluate the expression at the toplevel, don't use variables local to |
12678
116b7394b8af
patch 8.0.1217: can't use remote eval to inspect vars in debug mode
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4188 * the calling function. Except when in debug mode. */ |
116b7394b8af
patch 8.0.1217: can't use remote eval to inspect vars in debug mode
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4189 if (!debug_mode) |
116b7394b8af
patch 8.0.1217: can't use remote eval to inspect vars in debug mode
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4190 fc = clear_current_funccal(); |
6 | 4191 |
4217 | 4192 /* Disable debugging, otherwise Vim hangs, waiting for "cont" to be |
4193 * typed. */ | |
6 | 4194 debug_break_level = -1; |
4195 redir_off = 0; | |
4217 | 4196 /* Do not display error message, otherwise Vim hangs, waiting for "cont" |
4197 * to be typed. Do generate errors so that try/catch works. */ | |
4198 ++emsg_silent; | |
6 | 4199 |
714 | 4200 res = eval_to_string(expr, NULL, TRUE); |
6 | 4201 |
4202 debug_break_level = save_dbl; | |
4203 redir_off = save_ro; | |
4217 | 4204 --emsg_silent; |
4205 if (emsg_silent < 0) | |
4206 emsg_silent = 0; | |
12678
116b7394b8af
patch 8.0.1217: can't use remote eval to inspect vars in debug mode
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4207 if (fc != NULL) |
116b7394b8af
patch 8.0.1217: can't use remote eval to inspect vars in debug mode
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
4208 restore_current_funccal(fc); |
6 | 4209 |
591 | 4210 /* A client can tell us to redraw, but not to display the cursor, so do |
4211 * that here. */ | |
4212 setcursor(); | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
4213 out_flush_cursor(FALSE, FALSE); |
591 | 4214 |
6 | 4215 return res; |
4216 } | |
4217 | |
39 | 4218 /* |
11179
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4219 * Evaluate a command or expression sent to ourselves. |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4220 */ |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4221 int |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4222 sendToLocalVim(char_u *cmd, int asExpr, char_u **result) |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4223 { |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4224 if (asExpr) |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4225 { |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4226 char_u *ret; |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4227 |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4228 ret = eval_client_expr_to_string(cmd); |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4229 if (result != NULL) |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4230 { |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4231 if (ret == NULL) |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4232 { |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4233 char *err = _(e_invexprmsg); |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4234 size_t len = STRLEN(cmd) + STRLEN(err) + 5; |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4235 char_u *msg; |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4236 |
11215
2e4877acfe0a
patch 8.0.0494: build failure with older compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11211
diff
changeset
|
4237 msg = alloc((unsigned)len); |
11179
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4238 if (msg != NULL) |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4239 vim_snprintf((char *)msg, len, "%s: \"%s\"", err, cmd); |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4240 *result = msg; |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4241 } |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4242 else |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4243 *result = ret; |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4244 } |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4245 else |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4246 vim_free(ret); |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4247 return ret == NULL ? -1 : 0; |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4248 } |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4249 server_to_input_buf(cmd); |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4250 return 0; |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4251 } |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4252 |
49fda934f7e8
patch 8.0.0476: missing change to main.c
Christian Brabandt <cb@256bit.org>
parents:
11154
diff
changeset
|
4253 /* |
39 | 4254 * If conversion is needed, convert "data" from "client_enc" to 'encoding' and |
4255 * return an allocated string. Otherwise return "data". | |
4256 * "*tofree" is set to the result when it needs to be freed later. | |
4257 */ | |
4258 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4259 serverConvert( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4260 char_u *client_enc UNUSED, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4261 char_u *data, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4262 char_u **tofree) |
39 | 4263 { |
4264 char_u *res = data; | |
4265 | |
4266 *tofree = NULL; | |
4267 # ifdef FEAT_MBYTE | |
4268 if (client_enc != NULL && p_enc != NULL) | |
4269 { | |
4270 vimconv_T vimconv; | |
4271 | |
4272 vimconv.vc_type = CONV_NONE; | |
4273 if (convert_setup(&vimconv, client_enc, p_enc) != FAIL | |
4274 && vimconv.vc_type != CONV_NONE) | |
4275 { | |
4276 res = string_convert(&vimconv, data, NULL); | |
4277 if (res == NULL) | |
4278 res = data; | |
4279 else | |
4280 *tofree = res; | |
4281 } | |
4282 convert_setup(&vimconv, NULL, NULL); | |
4283 } | |
4284 # endif | |
4285 return res; | |
4286 } | |
2730 | 4287 #endif |