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