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