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