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