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