Mercurial > vim
annotate src/term.c @ 10801:e7b8be5ecacd v8.0.0290
patch 8.0.0290: cursor positioning wrong if wide character wraps
commit https://github.com/vim/vim/commit/04e87b72c5fa88b7034a5b0ec0be6a7ad763e9d2
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 1 21:23:10 2017 +0100
patch 8.0.0290: cursor positioning wrong if wide character wraps
Problem: If a wide character doesn't fit at the end of the screen line, and
the line doesn't fit on the screen, then the cursor position may
be wrong. (anliting)
Solution: Don't skip over wide character. (Christian Brabandt, closes #1408)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 01 Feb 2017 21:30:04 +0100 |
parents | b8c04c007d39 |
children | 501f46f7644c |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9939
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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 * | |
11 * term.c: functions for controlling the terminal | |
12 * | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
13 * primitive termcap support for Amiga and Win32 included |
7 | 14 * |
15 * NOTE: padding and variable substitution is not performed, | |
16 * when compiling without HAVE_TGETENT, we use tputs() and tgoto() dummies. | |
17 */ | |
18 | |
19 /* | |
20 * Some systems have a prototype for tgetstr() with (char *) instead of | |
21 * (char **). This define removes that prototype. We include our own prototype | |
22 * below. | |
23 */ | |
24 | |
25 #define tgetstr tgetstr_defined_wrong | |
26 #include "vim.h" | |
27 | |
28 #ifdef HAVE_TGETENT | |
29 # ifdef HAVE_TERMIOS_H | |
30 # include <termios.h> /* seems to be required for some Linux */ | |
31 # endif | |
32 # ifdef HAVE_TERMCAP_H | |
33 # include <termcap.h> | |
34 # endif | |
35 | |
36 /* | |
37 * A few linux systems define outfuntype in termcap.h to be used as the third | |
38 * argument for tputs(). | |
39 */ | |
40 # ifdef VMS | |
41 # define TPUTSFUNCAST | |
42 # else | |
43 # ifdef HAVE_OUTFUNTYPE | |
44 # define TPUTSFUNCAST (outfuntype) | |
45 # else | |
46 # define TPUTSFUNCAST (int (*)()) | |
47 # endif | |
48 # endif | |
49 #endif | |
50 | |
51 #undef tgetstr | |
52 | |
53 /* | |
54 * Here are the builtin termcap entries. They are not stored as complete | |
2823 | 55 * structures with all entries, as such a structure is too big. |
7 | 56 * |
57 * The entries are compact, therefore they normally are included even when | |
58 * HAVE_TGETENT is defined. When HAVE_TGETENT is defined, the builtin entries | |
59 * can be accessed with "builtin_amiga", "builtin_ansi", "builtin_debug", etc. | |
60 * | |
61 * Each termcap is a list of builtin_term structures. It always starts with | |
62 * KS_NAME, which separates the entries. See parse_builtin_tcap() for all | |
63 * details. | |
64 * bt_entry is either a KS_xxx code (>= 0), or a K_xxx code. | |
65 * | |
66 * Entries marked with "guessed" may be wrong. | |
67 */ | |
68 struct builtin_term | |
69 { | |
70 int bt_entry; | |
71 char *bt_string; | |
72 }; | |
73 | |
74 /* start of keys that are not directly used by Vim but can be mapped */ | |
75 #define BT_EXTRA_KEYS 0x101 | |
76 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
77 static struct builtin_term *find_builtin_term(char_u *name); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
78 static void parse_builtin_tcap(char_u *s); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
79 static void term_color(char_u *s, int n); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
80 static void gather_termleader(void); |
7 | 81 #ifdef FEAT_TERMRESPONSE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
82 static void req_codes_from_term(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
83 static void req_more_codes_from_term(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
84 static void got_code_from_term(char_u *code, int len); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
85 static void check_for_codes_from_term(void); |
7 | 86 #endif |
87 #if defined(FEAT_GUI) \ | |
1623 | 88 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \ |
89 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE))) | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
90 static int get_bytes_from_buf(char_u *, char_u *, int); |
7 | 91 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
92 static void del_termcode_idx(int idx); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
93 static int term_is_builtin(char_u *name); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
94 static int term_7to8bit(char_u *p); |
7 | 95 #ifdef FEAT_TERMRESPONSE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
96 static void switch_to_8bit(void); |
7 | 97 #endif |
98 | |
99 #ifdef HAVE_TGETENT | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
100 static char_u *tgetent_error(char_u *, char_u *); |
7 | 101 |
102 /* | |
103 * Here is our own prototype for tgetstr(), any prototypes from the include | |
104 * files have been disabled by the define at the start of this file. | |
105 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
106 char *tgetstr(char *, char **); |
7 | 107 |
108 # ifdef FEAT_TERMRESPONSE | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
109 /* Change this to "if 1" to debug what happens with termresponse. */ |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
110 # if 0 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
111 # define DEBUG_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
112 static void log_tr(char *msg); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
113 # define LOG_TR(msg) log_tr(msg) |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
114 # else |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
115 # define LOG_TR(msg) |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
116 # endif |
7 | 117 /* Request Terminal Version status: */ |
118 # define CRV_GET 1 /* send T_CRV when switched to RAW mode */ | |
119 # define CRV_SENT 2 /* did send T_CRV, waiting for answer */ | |
120 # define CRV_GOT 3 /* received T_CRV response */ | |
121 static int crv_status = CRV_GET; | |
4215 | 122 /* Request Cursor position report: */ |
123 # define U7_GET 1 /* send T_U7 when switched to RAW mode */ | |
124 # define U7_SENT 2 /* did send T_U7, waiting for answer */ | |
125 # define U7_GOT 3 /* received T_U7 response */ | |
126 static int u7_status = U7_GET; | |
6874 | 127 /* Request background color report: */ |
128 # define RBG_GET 1 /* send T_RBG when switched to RAW mode */ | |
129 # define RBG_SENT 2 /* did send T_RBG, waiting for answer */ | |
130 # define RBG_GOT 3 /* received T_RBG response */ | |
131 static int rbg_status = RBG_GET; | |
7 | 132 # endif |
133 | |
134 /* | |
135 * Don't declare these variables if termcap.h contains them. | |
136 * Autoconf checks if these variables should be declared extern (not all | |
137 * systems have them). | |
138 * Some versions define ospeed to be speed_t, but that is incompatible with | |
139 * BSD, where ospeed is short and speed_t is long. | |
140 */ | |
141 # ifndef HAVE_OSPEED | |
142 # ifdef OSPEED_EXTERN | |
143 extern short ospeed; | |
144 # else | |
145 short ospeed; | |
146 # endif | |
147 # endif | |
148 # ifndef HAVE_UP_BC_PC | |
149 # ifdef UP_BC_PC_EXTERN | |
150 extern char *UP, *BC, PC; | |
151 # else | |
152 char *UP, *BC, PC; | |
153 # endif | |
154 # endif | |
155 | |
156 # define TGETSTR(s, p) vim_tgetstr((s), (p)) | |
157 # define TGETENT(b, t) tgetent((char *)(b), (char *)(t)) | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
158 static char_u *vim_tgetstr(char *s, char_u **pp); |
7 | 159 #endif /* HAVE_TGETENT */ |
160 | |
161 static int detected_8bit = FALSE; /* detected 8-bit terminal */ | |
162 | |
298 | 163 static struct builtin_term builtin_termcaps[] = |
7 | 164 { |
165 | |
166 #if defined(FEAT_GUI) | |
167 /* | |
168 * GUI pseudo term-cap. | |
169 */ | |
170 {(int)KS_NAME, "gui"}, | |
171 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")}, | |
172 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")}, | |
173 # ifdef TERMINFO | |
174 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")}, | |
175 # else | |
176 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")}, | |
177 # endif | |
178 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")}, | |
179 # ifdef TERMINFO | |
180 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")}, | |
181 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")}, | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
182 # ifdef FEAT_WINDOWS |
7 | 183 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")}, |
184 # endif | |
185 # else | |
186 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")}, | |
187 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")}, | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
188 # ifdef FEAT_WINDOWS |
7 | 189 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")}, |
190 # endif | |
191 # endif | |
192 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")}, | |
193 /* attributes switched on with 'h', off with * 'H' */ | |
194 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */ | |
195 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */ | |
196 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */ | |
197 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */ | |
198 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */ | |
199 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */ | |
200 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */ | |
205 | 201 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */ |
202 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */ | |
7 | 203 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */ |
204 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */ | |
205 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")}, | |
206 {(int)KS_MS, "y"}, | |
207 {(int)KS_UT, "y"}, | |
6602 | 208 {(int)KS_XN, "y"}, |
7 | 209 {(int)KS_LE, "\b"}, /* cursor-left = BS */ |
210 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */ | |
211 # ifdef TERMINFO | |
212 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")}, | |
213 # else | |
214 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")}, | |
215 # endif | |
216 /* there are no key sequences here, the GUI sequences are recognized | |
205 | 217 * in check_termcode() */ |
7 | 218 #endif |
219 | |
220 #ifndef NO_BUILTIN_TCAPS | |
221 | |
222 # if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS) | |
223 /* | |
224 * Amiga console window, default for Amiga | |
225 */ | |
226 {(int)KS_NAME, "amiga"}, | |
227 {(int)KS_CE, "\033[K"}, | |
228 {(int)KS_CD, "\033[J"}, | |
229 {(int)KS_AL, "\033[L"}, | |
230 # ifdef TERMINFO | |
231 {(int)KS_CAL, "\033[%p1%dL"}, | |
232 # else | |
233 {(int)KS_CAL, "\033[%dL"}, | |
234 # endif | |
235 {(int)KS_DL, "\033[M"}, | |
236 # ifdef TERMINFO | |
237 {(int)KS_CDL, "\033[%p1%dM"}, | |
238 # else | |
239 {(int)KS_CDL, "\033[%dM"}, | |
240 # endif | |
241 {(int)KS_CL, "\014"}, | |
242 {(int)KS_VI, "\033[0 p"}, | |
243 {(int)KS_VE, "\033[1 p"}, | |
244 {(int)KS_ME, "\033[0m"}, | |
245 {(int)KS_MR, "\033[7m"}, | |
246 {(int)KS_MD, "\033[1m"}, | |
247 {(int)KS_SE, "\033[0m"}, | |
248 {(int)KS_SO, "\033[33m"}, | |
249 {(int)KS_US, "\033[4m"}, | |
250 {(int)KS_UE, "\033[0m"}, | |
251 {(int)KS_CZH, "\033[3m"}, | |
252 {(int)KS_CZR, "\033[0m"}, | |
253 #if defined(__MORPHOS__) || defined(__AROS__) | |
254 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
255 # ifdef TERMINFO | |
256 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */ | |
257 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */ | |
258 # else | |
259 {(int)KS_CAB, "\033[4%dm"}, /* set background color */ | |
260 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */ | |
261 # endif | |
262 {(int)KS_OP, "\033[m"}, /* reset colors */ | |
263 #endif | |
264 {(int)KS_MS, "y"}, | |
265 {(int)KS_UT, "y"}, /* guessed */ | |
266 {(int)KS_LE, "\b"}, | |
267 # ifdef TERMINFO | |
268 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
269 # else | |
270 {(int)KS_CM, "\033[%i%d;%dH"}, | |
271 # endif | |
272 #if defined(__MORPHOS__) | |
273 {(int)KS_SR, "\033M"}, | |
274 #endif | |
275 # ifdef TERMINFO | |
276 {(int)KS_CRI, "\033[%p1%dC"}, | |
277 # else | |
278 {(int)KS_CRI, "\033[%dC"}, | |
279 # endif | |
280 {K_UP, "\233A"}, | |
281 {K_DOWN, "\233B"}, | |
282 {K_LEFT, "\233D"}, | |
283 {K_RIGHT, "\233C"}, | |
284 {K_S_UP, "\233T"}, | |
285 {K_S_DOWN, "\233S"}, | |
286 {K_S_LEFT, "\233 A"}, | |
287 {K_S_RIGHT, "\233 @"}, | |
288 {K_S_TAB, "\233Z"}, | |
289 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */ | |
290 {K_F2, "\233\061~"}, | |
291 {K_F3, "\233\062~"}, | |
292 {K_F4, "\233\063~"}, | |
293 {K_F5, "\233\064~"}, | |
294 {K_F6, "\233\065~"}, | |
295 {K_F7, "\233\066~"}, | |
296 {K_F8, "\233\067~"}, | |
297 {K_F9, "\233\070~"}, | |
298 {K_F10, "\233\071~"}, | |
299 {K_S_F1, "\233\061\060~"}, | |
300 {K_S_F2, "\233\061\061~"}, | |
301 {K_S_F3, "\233\061\062~"}, | |
302 {K_S_F4, "\233\061\063~"}, | |
303 {K_S_F5, "\233\061\064~"}, | |
304 {K_S_F6, "\233\061\065~"}, | |
305 {K_S_F7, "\233\061\066~"}, | |
306 {K_S_F8, "\233\061\067~"}, | |
307 {K_S_F9, "\233\061\070~"}, | |
308 {K_S_F10, "\233\061\071~"}, | |
309 {K_HELP, "\233?~"}, | |
310 {K_INS, "\233\064\060~"}, /* 101 key keyboard */ | |
311 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */ | |
312 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */ | |
313 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */ | |
314 {K_END, "\233\064\065~"}, /* 101 key keyboard */ | |
315 | |
316 {BT_EXTRA_KEYS, ""}, | |
317 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */ | |
318 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */ | |
319 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */ | |
320 # endif | |
321 | |
322 # if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS) | |
323 /* | |
324 * almost standard ANSI terminal, default for bebox | |
325 */ | |
326 {(int)KS_NAME, "beos-ansi"}, | |
327 {(int)KS_CE, "\033[K"}, | |
328 {(int)KS_CD, "\033[J"}, | |
329 {(int)KS_AL, "\033[L"}, | |
330 # ifdef TERMINFO | |
331 {(int)KS_CAL, "\033[%p1%dL"}, | |
332 # else | |
333 {(int)KS_CAL, "\033[%dL"}, | |
334 # endif | |
335 {(int)KS_DL, "\033[M"}, | |
336 # ifdef TERMINFO | |
337 {(int)KS_CDL, "\033[%p1%dM"}, | |
338 # else | |
339 {(int)KS_CDL, "\033[%dM"}, | |
340 # endif | |
341 #ifdef BEOS_PR_OR_BETTER | |
342 # ifdef TERMINFO | |
343 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"}, | |
344 # else | |
345 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */ | |
346 # endif | |
347 #endif | |
348 {(int)KS_CL, "\033[H\033[2J"}, | |
349 #ifdef notyet | |
350 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */ | |
351 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */ | |
352 #endif | |
353 {(int)KS_ME, "\033[m"}, /* normal mode */ | |
354 {(int)KS_MR, "\033[7m"}, /* reverse */ | |
355 {(int)KS_MD, "\033[1m"}, /* bold */ | |
356 {(int)KS_SO, "\033[31m"}, /* standout mode: red */ | |
357 {(int)KS_SE, "\033[m"}, /* standout end */ | |
358 {(int)KS_CZH, "\033[35m"}, /* italic: purple */ | |
359 {(int)KS_CZR, "\033[m"}, /* italic end */ | |
360 {(int)KS_US, "\033[4m"}, /* underscore mode */ | |
361 {(int)KS_UE, "\033[m"}, /* underscore end */ | |
362 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
363 # ifdef TERMINFO | |
364 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */ | |
365 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */ | |
366 # else | |
367 {(int)KS_CAB, "\033[4%dm"}, /* set background color */ | |
368 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */ | |
369 # endif | |
370 {(int)KS_OP, "\033[m"}, /* reset colors */ | |
371 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */ | |
372 {(int)KS_UT, "y"}, /* guessed */ | |
373 {(int)KS_LE, "\b"}, | |
374 # ifdef TERMINFO | |
375 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
376 # else | |
377 {(int)KS_CM, "\033[%i%d;%dH"}, | |
378 # endif | |
379 {(int)KS_SR, "\033M"}, | |
380 # ifdef TERMINFO | |
381 {(int)KS_CRI, "\033[%p1%dC"}, | |
382 # else | |
383 {(int)KS_CRI, "\033[%dC"}, | |
384 # endif | |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
385 # if defined(BEOS_DR8) |
7 | 386 {(int)KS_DB, ""}, /* hack! see screen.c */ |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
387 # endif |
7 | 388 |
389 {K_UP, "\033[A"}, | |
390 {K_DOWN, "\033[B"}, | |
391 {K_LEFT, "\033[D"}, | |
392 {K_RIGHT, "\033[C"}, | |
393 # endif | |
394 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
395 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) |
7 | 396 /* |
397 * standard ANSI terminal, default for unix | |
398 */ | |
399 {(int)KS_NAME, "ansi"}, | |
400 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")}, | |
401 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")}, | |
402 # ifdef TERMINFO | |
403 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")}, | |
404 # else | |
405 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")}, | |
406 # endif | |
407 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")}, | |
408 # ifdef TERMINFO | |
409 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")}, | |
410 # else | |
411 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")}, | |
412 # endif | |
413 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")}, | |
414 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")}, | |
415 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")}, | |
416 {(int)KS_MS, "y"}, | |
417 {(int)KS_UT, "y"}, /* guessed */ | |
418 {(int)KS_LE, "\b"}, | |
419 # ifdef TERMINFO | |
420 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")}, | |
421 # else | |
422 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
423 # endif | |
424 # ifdef TERMINFO | |
425 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")}, | |
426 # else | |
427 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")}, | |
428 # endif | |
429 # endif | |
430 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
431 # if defined(ALL_BUILTIN_TCAPS) |
7 | 432 /* |
433 * These codes are valid when nansi.sys or equivalent has been installed. | |
434 * Function keys on a PC are preceded with a NUL. These are converted into | |
435 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes. | |
436 * CTRL-arrow is used instead of SHIFT-arrow. | |
437 */ | |
438 {(int)KS_NAME, "pcansi"}, | |
439 {(int)KS_DL, "\033[M"}, | |
440 {(int)KS_AL, "\033[L"}, | |
441 {(int)KS_CE, "\033[K"}, | |
442 {(int)KS_CL, "\033[2J"}, | |
443 {(int)KS_ME, "\033[0m"}, | |
444 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */ | |
445 {(int)KS_MD, "\033[1m"}, /* bold: white text */ | |
446 {(int)KS_SE, "\033[0m"}, /* standout end */ | |
447 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */ | |
448 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */ | |
449 {(int)KS_CZR, "\033[0m"}, /* italic mode end */ | |
450 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */ | |
451 {(int)KS_UE, "\033[0m"}, /* underscore mode end */ | |
452 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
453 # ifdef TERMINFO | |
454 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */ | |
455 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */ | |
456 # else | |
457 {(int)KS_CAB, "\033[4%dm"}, /* set background color */ | |
458 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */ | |
459 # endif | |
460 {(int)KS_OP, "\033[0m"}, /* reset colors */ | |
461 {(int)KS_MS, "y"}, | |
462 {(int)KS_UT, "y"}, /* guessed */ | |
463 {(int)KS_LE, "\b"}, | |
464 # ifdef TERMINFO | |
465 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
466 # else | |
467 {(int)KS_CM, "\033[%i%d;%dH"}, | |
468 # endif | |
469 # ifdef TERMINFO | |
470 {(int)KS_CRI, "\033[%p1%dC"}, | |
471 # else | |
472 {(int)KS_CRI, "\033[%dC"}, | |
473 # endif | |
474 {K_UP, "\316H"}, | |
475 {K_DOWN, "\316P"}, | |
476 {K_LEFT, "\316K"}, | |
477 {K_RIGHT, "\316M"}, | |
478 {K_S_LEFT, "\316s"}, | |
479 {K_S_RIGHT, "\316t"}, | |
480 {K_F1, "\316;"}, | |
481 {K_F2, "\316<"}, | |
482 {K_F3, "\316="}, | |
483 {K_F4, "\316>"}, | |
484 {K_F5, "\316?"}, | |
485 {K_F6, "\316@"}, | |
486 {K_F7, "\316A"}, | |
487 {K_F8, "\316B"}, | |
488 {K_F9, "\316C"}, | |
489 {K_F10, "\316D"}, | |
490 {K_F11, "\316\205"}, /* guessed */ | |
491 {K_F12, "\316\206"}, /* guessed */ | |
492 {K_S_F1, "\316T"}, | |
493 {K_S_F2, "\316U"}, | |
494 {K_S_F3, "\316V"}, | |
495 {K_S_F4, "\316W"}, | |
496 {K_S_F5, "\316X"}, | |
497 {K_S_F6, "\316Y"}, | |
498 {K_S_F7, "\316Z"}, | |
499 {K_S_F8, "\316["}, | |
500 {K_S_F9, "\316\\"}, | |
501 {K_S_F10, "\316]"}, | |
502 {K_S_F11, "\316\207"}, /* guessed */ | |
503 {K_S_F12, "\316\210"}, /* guessed */ | |
504 {K_INS, "\316R"}, | |
505 {K_DEL, "\316S"}, | |
506 {K_HOME, "\316G"}, | |
507 {K_END, "\316O"}, | |
508 {K_PAGEDOWN, "\316Q"}, | |
509 {K_PAGEUP, "\316I"}, | |
510 # endif | |
511 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
512 # if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS) |
7 | 513 /* |
514 * These codes are valid for the Win32 Console . The entries that start with | |
515 * ESC | are translated into console calls in os_win32.c. The function keys | |
516 * are also translated in os_win32.c. | |
517 */ | |
518 {(int)KS_NAME, "win32"}, | |
519 {(int)KS_CE, "\033|K"}, /* clear to end of line */ | |
520 {(int)KS_AL, "\033|L"}, /* add new blank line */ | |
521 # ifdef TERMINFO | |
522 {(int)KS_CAL, "\033|%p1%dL"}, /* add number of new blank lines */ | |
523 # else | |
524 {(int)KS_CAL, "\033|%dL"}, /* add number of new blank lines */ | |
525 # endif | |
526 {(int)KS_DL, "\033|M"}, /* delete line */ | |
527 # ifdef TERMINFO | |
528 {(int)KS_CDL, "\033|%p1%dM"}, /* delete number of lines */ | |
529 # else | |
530 {(int)KS_CDL, "\033|%dM"}, /* delete number of lines */ | |
531 # endif | |
532 {(int)KS_CL, "\033|J"}, /* clear screen */ | |
533 {(int)KS_CD, "\033|j"}, /* clear to end of display */ | |
534 {(int)KS_VI, "\033|v"}, /* cursor invisible */ | |
535 {(int)KS_VE, "\033|V"}, /* cursor visible */ | |
536 | |
537 {(int)KS_ME, "\033|0m"}, /* normal */ | |
538 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgray */ | |
539 {(int)KS_MD, "\033|15m"}, /* bold: white on black */ | |
540 #if 1 | |
541 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */ | |
542 {(int)KS_SE, "\033|0m"}, /* standout end */ | |
543 #else | |
544 {(int)KS_SO, "\033|F"}, /* standout: high intensity */ | |
545 {(int)KS_SE, "\033|f"}, /* standout end */ | |
546 #endif | |
547 {(int)KS_CZH, "\033|225m"}, /* italic: blue text on yellow */ | |
548 {(int)KS_CZR, "\033|0m"}, /* italic end */ | |
549 {(int)KS_US, "\033|67m"}, /* underscore: cyan text on red */ | |
550 {(int)KS_UE, "\033|0m"}, /* underscore end */ | |
551 {(int)KS_CCO, "16"}, /* allow 16 colors */ | |
552 # ifdef TERMINFO | |
553 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */ | |
554 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */ | |
555 # else | |
556 {(int)KS_CAB, "\033|%db"}, /* set background color */ | |
557 {(int)KS_CAF, "\033|%df"}, /* set foreground color */ | |
558 # endif | |
559 | |
560 {(int)KS_MS, "y"}, /* save to move cur in reverse mode */ | |
561 {(int)KS_UT, "y"}, | |
6602 | 562 {(int)KS_XN, "y"}, |
7 | 563 {(int)KS_LE, "\b"}, |
564 # ifdef TERMINFO | |
565 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */ | |
566 # else | |
567 {(int)KS_CM, "\033|%i%d;%dH"},/* cursor motion */ | |
568 # endif | |
569 {(int)KS_VB, "\033|B"}, /* visual bell */ | |
570 {(int)KS_TI, "\033|S"}, /* put terminal in termcap mode */ | |
571 {(int)KS_TE, "\033|E"}, /* out of termcap mode */ | |
572 # ifdef TERMINFO | |
573 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},/* scroll region */ | |
574 # else | |
575 {(int)KS_CS, "\033|%i%d;%dr"},/* scroll region */ | |
576 # endif | |
577 | |
578 {K_UP, "\316H"}, | |
579 {K_DOWN, "\316P"}, | |
580 {K_LEFT, "\316K"}, | |
581 {K_RIGHT, "\316M"}, | |
582 {K_S_UP, "\316\304"}, | |
583 {K_S_DOWN, "\316\317"}, | |
584 {K_S_LEFT, "\316\311"}, | |
585 {K_C_LEFT, "\316s"}, | |
586 {K_S_RIGHT, "\316\313"}, | |
587 {K_C_RIGHT, "\316t"}, | |
588 {K_S_TAB, "\316\017"}, | |
589 {K_F1, "\316;"}, | |
590 {K_F2, "\316<"}, | |
591 {K_F3, "\316="}, | |
592 {K_F4, "\316>"}, | |
593 {K_F5, "\316?"}, | |
594 {K_F6, "\316@"}, | |
595 {K_F7, "\316A"}, | |
596 {K_F8, "\316B"}, | |
597 {K_F9, "\316C"}, | |
598 {K_F10, "\316D"}, | |
599 {K_F11, "\316\205"}, | |
600 {K_F12, "\316\206"}, | |
601 {K_S_F1, "\316T"}, | |
602 {K_S_F2, "\316U"}, | |
603 {K_S_F3, "\316V"}, | |
604 {K_S_F4, "\316W"}, | |
605 {K_S_F5, "\316X"}, | |
606 {K_S_F6, "\316Y"}, | |
607 {K_S_F7, "\316Z"}, | |
608 {K_S_F8, "\316["}, | |
609 {K_S_F9, "\316\\"}, | |
610 {K_S_F10, "\316]"}, | |
611 {K_S_F11, "\316\207"}, | |
612 {K_S_F12, "\316\210"}, | |
613 {K_INS, "\316R"}, | |
614 {K_DEL, "\316S"}, | |
615 {K_HOME, "\316G"}, | |
616 {K_S_HOME, "\316\302"}, | |
617 {K_C_HOME, "\316w"}, | |
618 {K_END, "\316O"}, | |
619 {K_S_END, "\316\315"}, | |
620 {K_C_END, "\316u"}, | |
621 {K_PAGEDOWN, "\316Q"}, | |
622 {K_PAGEUP, "\316I"}, | |
623 {K_KPLUS, "\316N"}, | |
624 {K_KMINUS, "\316J"}, | |
625 {K_KMULTIPLY, "\316\067"}, | |
626 {K_K0, "\316\332"}, | |
627 {K_K1, "\316\336"}, | |
628 {K_K2, "\316\342"}, | |
629 {K_K3, "\316\346"}, | |
630 {K_K4, "\316\352"}, | |
631 {K_K5, "\316\356"}, | |
632 {K_K6, "\316\362"}, | |
633 {K_K7, "\316\366"}, | |
634 {K_K8, "\316\372"}, | |
635 {K_K9, "\316\376"}, | |
636 # endif | |
637 | |
638 # if defined(VMS) || defined(ALL_BUILTIN_TCAPS) | |
639 /* | |
640 * VT320 is working as an ANSI terminal compatible DEC terminal. | |
641 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well) | |
642 * Note: K_F1...K_F5 are for internal use, should not be defined. | |
643 * TODO:- rewrite ESC[ codes to CSI | |
644 * - keyboard languages (CSI ? 26 n) | |
645 */ | |
646 {(int)KS_NAME, "vt320"}, | |
647 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")}, | |
648 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")}, | |
649 # ifdef TERMINFO | |
650 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")}, | |
651 # else | |
652 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")}, | |
653 # endif | |
654 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")}, | |
655 # ifdef TERMINFO | |
656 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")}, | |
657 # else | |
658 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")}, | |
659 # endif | |
660 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")}, | |
22 | 661 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")}, |
662 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
7 | 663 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")}, |
664 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")}, | |
344 | 665 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */ |
666 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */ | |
667 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */ | |
668 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */ | |
669 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */ | |
670 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */ | |
671 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */ | |
672 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */ | |
673 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */ | |
674 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */ | |
7 | 675 {(int)KS_MS, "y"}, |
676 {(int)KS_UT, "y"}, | |
6602 | 677 {(int)KS_XN, "y"}, |
7 | 678 {(int)KS_LE, "\b"}, |
679 # ifdef TERMINFO | |
680 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", | |
681 ESC_STR "[%i%p1%d;%p2%dH")}, | |
682 # else | |
683 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
684 # endif | |
685 # ifdef TERMINFO | |
686 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")}, | |
687 # else | |
688 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")}, | |
689 # endif | |
690 {K_UP, IF_EB("\033[A", ESC_STR "[A")}, | |
691 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")}, | |
692 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")}, | |
693 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")}, | |
344 | 694 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")}, |
695 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")}, | |
696 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")}, | |
697 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")}, | |
698 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")}, | |
7 | 699 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")}, |
700 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")}, | |
701 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")}, | |
702 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")}, | |
703 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")}, | |
344 | 704 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")}, |
7 | 705 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")}, |
706 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")}, | |
707 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")}, | |
708 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */ | |
709 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */ | |
710 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")}, | |
711 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")}, | |
712 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")}, | |
713 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")}, | |
714 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")}, | |
715 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")}, | |
716 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")}, | |
717 {K_END, IF_EB("\033[4~", ESC_STR "[4~")}, | |
718 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")}, | |
719 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")}, | |
720 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */ | |
721 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */ | |
722 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */ | |
723 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */ | |
724 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */ | |
725 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */ | |
726 # endif | |
727 | |
728 # if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__) | |
729 /* | |
730 * Ordinary vt52 | |
731 */ | |
732 {(int)KS_NAME, "vt52"}, | |
733 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")}, | |
734 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")}, | |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
735 # ifdef TERMINFO |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
736 {(int)KS_CM, IF_EB("\033Y%p1%' '%+%c%p2%' '%+%c", |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
737 ESC_STR "Y%p1%' '%+%c%p2%' '%+%c")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
738 # else |
7 | 739 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
740 # endif |
7 | 741 {(int)KS_LE, "\b"}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
742 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")}, |
7 | 743 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")}, |
744 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")}, | |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
745 {K_UP, IF_EB("\033A", ESC_STR "A")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
746 {K_DOWN, IF_EB("\033B", ESC_STR "B")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
747 {K_LEFT, IF_EB("\033D", ESC_STR "D")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
748 {K_RIGHT, IF_EB("\033C", ESC_STR "C")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
749 {K_F1, IF_EB("\033P", ESC_STR "P")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
750 {K_F2, IF_EB("\033Q", ESC_STR "Q")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
751 {K_F3, IF_EB("\033R", ESC_STR "R")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
752 # ifdef __MINT__ |
7 | 753 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")}, |
754 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")}, | |
755 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")}, | |
756 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")}, | |
757 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")}, | |
758 {K_S_UP, IF_EB("\033a", ESC_STR "a")}, | |
759 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")}, | |
760 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")}, | |
761 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")}, | |
762 {K_F4, IF_EB("\033S", ESC_STR "S")}, | |
763 {K_F5, IF_EB("\033T", ESC_STR "T")}, | |
764 {K_F6, IF_EB("\033U", ESC_STR "U")}, | |
765 {K_F7, IF_EB("\033V", ESC_STR "V")}, | |
766 {K_F8, IF_EB("\033W", ESC_STR "W")}, | |
767 {K_F9, IF_EB("\033X", ESC_STR "X")}, | |
768 {K_F10, IF_EB("\033Y", ESC_STR "Y")}, | |
769 {K_S_F1, IF_EB("\033p", ESC_STR "p")}, | |
770 {K_S_F2, IF_EB("\033q", ESC_STR "q")}, | |
771 {K_S_F3, IF_EB("\033r", ESC_STR "r")}, | |
772 {K_S_F4, IF_EB("\033s", ESC_STR "s")}, | |
773 {K_S_F5, IF_EB("\033t", ESC_STR "t")}, | |
774 {K_S_F6, IF_EB("\033u", ESC_STR "u")}, | |
775 {K_S_F7, IF_EB("\033v", ESC_STR "v")}, | |
776 {K_S_F8, IF_EB("\033w", ESC_STR "w")}, | |
777 {K_S_F9, IF_EB("\033x", ESC_STR "x")}, | |
778 {K_S_F10, IF_EB("\033y", ESC_STR "y")}, | |
779 {K_INS, IF_EB("\033I", ESC_STR "I")}, | |
780 {K_HOME, IF_EB("\033E", ESC_STR "E")}, | |
781 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")}, | |
782 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")}, | |
783 # else | |
784 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")}, | |
785 {(int)KS_MS, "y"}, | |
786 # endif | |
787 # endif | |
788 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
789 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
790 {(int)KS_NAME, "xterm"}, |
7 | 791 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")}, |
792 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")}, | |
793 # ifdef TERMINFO | |
794 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")}, | |
795 # else | |
796 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")}, | |
797 # endif | |
798 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")}, | |
799 # ifdef TERMINFO | |
800 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")}, | |
801 # else | |
802 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")}, | |
803 # endif | |
804 # ifdef TERMINFO | |
805 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr", | |
806 ESC_STR "[%i%p1%d;%p2%dr")}, | |
807 # else | |
808 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")}, | |
809 # endif | |
810 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")}, | |
811 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")}, | |
812 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")}, | |
813 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")}, | |
814 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, | |
815 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")}, | |
816 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, | |
817 {(int)KS_MS, "y"}, | |
818 {(int)KS_UT, "y"}, | |
819 {(int)KS_LE, "\b"}, | |
820 # ifdef TERMINFO | |
821 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", | |
822 ESC_STR "[%i%p1%d;%p2%dH")}, | |
823 # else | |
824 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
825 # endif | |
826 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")}, | |
827 # ifdef TERMINFO | |
828 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")}, | |
829 # else | |
830 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")}, | |
831 # endif | |
832 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")}, | |
833 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")}, | |
834 # ifdef FEAT_XTERM_SAVE | |
835 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")}, | |
836 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338", | |
837 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")}, | |
838 # endif | |
839 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")}, | |
840 {(int)KS_CIE, "\007"}, | |
841 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")}, | |
842 {(int)KS_FS, "\007"}, | |
843 # ifdef TERMINFO | |
844 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt", | |
845 ESC_STR "[8;%p1%d;%p2%dt")}, | |
846 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt", | |
847 ESC_STR "[3;%p1%d;%p2%dt")}, | |
848 # else | |
849 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")}, | |
850 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")}, | |
851 # endif | |
852 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")}, | |
6874 | 853 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")}, |
4215 | 854 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")}, |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
855 # ifdef FEAT_TERMGUICOLORS |
8985
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
856 /* These are printf strings, not terminal codes. */ |
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
857 {(int)KS_8F, IF_EB("\033[38;2;%lu;%lu;%lum", ESC_STR "[38;2;%lu;%lu;%lum")}, |
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
858 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")}, |
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
859 # endif |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
860 {(int)KS_CBE, IF_EB("\033[?2004h", ESC_STR "[?2004h")}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
861 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")}, |
180 | 862 |
863 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")}, | |
864 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")}, | |
865 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")}, | |
866 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")}, | |
867 /* An extra set of cursor keys for vt100 mode */ | |
868 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")}, | |
869 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")}, | |
870 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")}, | |
871 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")}, | |
7 | 872 /* An extra set of function keys for vt100 mode */ |
180 | 873 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")}, |
874 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")}, | |
875 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")}, | |
876 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")}, | |
179 | 877 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")}, |
878 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")}, | |
879 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")}, | |
880 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")}, | |
881 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")}, | |
882 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")}, | |
883 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")}, | |
884 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")}, | |
885 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")}, | |
886 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")}, | |
887 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")}, | |
888 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")}, | |
7 | 889 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")}, |
179 | 890 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")}, |
891 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")}, | |
892 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")}, | |
893 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")}, | |
180 | 894 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */ |
895 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */ | |
230 | 896 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")}, |
180 | 897 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */ |
230 | 898 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */ |
179 | 899 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")}, |
180 | 900 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */ |
901 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */ | |
179 | 902 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")}, |
180 | 903 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */ |
230 | 904 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")}, |
179 | 905 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")}, |
906 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")}, | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
907 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
908 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
909 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
910 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
911 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
912 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
913 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
914 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, /* paste start */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
915 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, /* paste end */ |
7 | 916 |
917 {BT_EXTRA_KEYS, ""}, | |
179 | 918 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, /* F0 */ |
919 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, /* F13 */ | |
920 /* F14 and F15 are missing, because they send the same codes as the undo | |
921 * and help key, although they don't work on all keyboards. */ | |
922 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, /* F16 */ | |
923 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, /* F17 */ | |
924 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, /* F18 */ | |
925 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, /* F19 */ | |
926 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, /* F20 */ | |
927 | |
928 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, /* F21 */ | |
929 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, /* F22 */ | |
930 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, /* F23 */ | |
931 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, /* F24 */ | |
932 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, /* F25 */ | |
933 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, /* F26 */ | |
934 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, /* F27 */ | |
935 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, /* F28 */ | |
936 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, /* F29 */ | |
937 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, /* F30 */ | |
938 | |
939 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, /* F31 */ | |
940 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, /* F32 */ | |
941 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, /* F33 */ | |
942 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, /* F34 */ | |
943 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, /* F35 */ | |
944 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, /* F36 */ | |
945 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, /* F37 */ | |
7 | 946 # endif |
947 | |
948 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) | |
949 /* | |
950 * iris-ansi for Silicon Graphics machines. | |
951 */ | |
952 {(int)KS_NAME, "iris-ansi"}, | |
953 {(int)KS_CE, "\033[K"}, | |
954 {(int)KS_CD, "\033[J"}, | |
955 {(int)KS_AL, "\033[L"}, | |
956 # ifdef TERMINFO | |
957 {(int)KS_CAL, "\033[%p1%dL"}, | |
958 # else | |
959 {(int)KS_CAL, "\033[%dL"}, | |
960 # endif | |
961 {(int)KS_DL, "\033[M"}, | |
962 # ifdef TERMINFO | |
963 {(int)KS_CDL, "\033[%p1%dM"}, | |
964 # else | |
965 {(int)KS_CDL, "\033[%dM"}, | |
966 # endif | |
967 #if 0 /* The scroll region is not working as Vim expects. */ | |
968 # ifdef TERMINFO | |
969 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"}, | |
970 # else | |
971 {(int)KS_CS, "\033[%i%d;%dr"}, | |
972 # endif | |
973 #endif | |
974 {(int)KS_CL, "\033[H\033[2J"}, | |
975 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */ | |
976 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */ | |
977 {(int)KS_TI, "\033[=6h"}, | |
978 {(int)KS_TE, "\033[=6l"}, | |
979 {(int)KS_SE, "\033[21;27m"}, | |
980 {(int)KS_SO, "\033[1;7m"}, | |
981 {(int)KS_ME, "\033[m"}, | |
982 {(int)KS_MR, "\033[7m"}, | |
983 {(int)KS_MD, "\033[1m"}, | |
984 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
985 {(int)KS_CZH, "\033[3m"}, /* italic mode on */ | |
986 {(int)KS_CZR, "\033[23m"}, /* italic mode off */ | |
987 {(int)KS_US, "\033[4m"}, /* underline on */ | |
988 {(int)KS_UE, "\033[24m"}, /* underline off */ | |
989 # ifdef TERMINFO | |
990 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */ | |
991 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */ | |
992 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */ | |
993 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */ | |
994 # else | |
995 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */ | |
996 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */ | |
997 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */ | |
998 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */ | |
999 # endif | |
1000 {(int)KS_MS, "y"}, /* guessed */ | |
1001 {(int)KS_UT, "y"}, /* guessed */ | |
1002 {(int)KS_LE, "\b"}, | |
1003 # ifdef TERMINFO | |
1004 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
1005 # else | |
1006 {(int)KS_CM, "\033[%i%d;%dH"}, | |
1007 # endif | |
1008 {(int)KS_SR, "\033M"}, | |
1009 # ifdef TERMINFO | |
1010 {(int)KS_CRI, "\033[%p1%dC"}, | |
1011 # else | |
1012 {(int)KS_CRI, "\033[%dC"}, | |
1013 # endif | |
1014 {(int)KS_CIS, "\033P3.y"}, | |
1015 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */ | |
1016 {(int)KS_TS, "\033P1.y"}, | |
1017 {(int)KS_FS, "\234"}, /* ST "String Terminator" */ | |
1018 # ifdef TERMINFO | |
1019 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"}, | |
1020 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"}, | |
1021 # else | |
1022 {(int)KS_CWS, "\033[203;%d;%d/y"}, | |
1023 {(int)KS_CWP, "\033[205;%d;%d/y"}, | |
1024 # endif | |
1025 {K_UP, "\033[A"}, | |
1026 {K_DOWN, "\033[B"}, | |
1027 {K_LEFT, "\033[D"}, | |
1028 {K_RIGHT, "\033[C"}, | |
1029 {K_S_UP, "\033[161q"}, | |
1030 {K_S_DOWN, "\033[164q"}, | |
1031 {K_S_LEFT, "\033[158q"}, | |
1032 {K_S_RIGHT, "\033[167q"}, | |
1033 {K_F1, "\033[001q"}, | |
1034 {K_F2, "\033[002q"}, | |
1035 {K_F3, "\033[003q"}, | |
1036 {K_F4, "\033[004q"}, | |
1037 {K_F5, "\033[005q"}, | |
1038 {K_F6, "\033[006q"}, | |
1039 {K_F7, "\033[007q"}, | |
1040 {K_F8, "\033[008q"}, | |
1041 {K_F9, "\033[009q"}, | |
1042 {K_F10, "\033[010q"}, | |
1043 {K_F11, "\033[011q"}, | |
1044 {K_F12, "\033[012q"}, | |
1045 {K_S_F1, "\033[013q"}, | |
1046 {K_S_F2, "\033[014q"}, | |
1047 {K_S_F3, "\033[015q"}, | |
1048 {K_S_F4, "\033[016q"}, | |
1049 {K_S_F5, "\033[017q"}, | |
1050 {K_S_F6, "\033[018q"}, | |
1051 {K_S_F7, "\033[019q"}, | |
1052 {K_S_F8, "\033[020q"}, | |
1053 {K_S_F9, "\033[021q"}, | |
1054 {K_S_F10, "\033[022q"}, | |
1055 {K_S_F11, "\033[023q"}, | |
1056 {K_S_F12, "\033[024q"}, | |
1057 {K_INS, "\033[139q"}, | |
1058 {K_HOME, "\033[H"}, | |
1059 {K_END, "\033[146q"}, | |
1060 {K_PAGEUP, "\033[150q"}, | |
1061 {K_PAGEDOWN, "\033[154q"}, | |
1062 # endif | |
1063 | |
1064 # if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS) | |
1065 /* | |
1066 * for debugging | |
1067 */ | |
1068 {(int)KS_NAME, "debug"}, | |
1069 {(int)KS_CE, "[CE]"}, | |
1070 {(int)KS_CD, "[CD]"}, | |
1071 {(int)KS_AL, "[AL]"}, | |
1072 # ifdef TERMINFO | |
1073 {(int)KS_CAL, "[CAL%p1%d]"}, | |
1074 # else | |
1075 {(int)KS_CAL, "[CAL%d]"}, | |
1076 # endif | |
1077 {(int)KS_DL, "[DL]"}, | |
1078 # ifdef TERMINFO | |
1079 {(int)KS_CDL, "[CDL%p1%d]"}, | |
1080 # else | |
1081 {(int)KS_CDL, "[CDL%d]"}, | |
1082 # endif | |
1083 # ifdef TERMINFO | |
1084 {(int)KS_CS, "[%p1%dCS%p2%d]"}, | |
1085 # else | |
1086 {(int)KS_CS, "[%dCS%d]"}, | |
1087 # endif | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1088 # ifdef FEAT_WINDOWS |
7 | 1089 # ifdef TERMINFO |
1090 {(int)KS_CSV, "[%p1%dCSV%p2%d]"}, | |
1091 # else | |
1092 {(int)KS_CSV, "[%dCSV%d]"}, | |
1093 # endif | |
1094 # endif | |
1095 # ifdef TERMINFO | |
1096 {(int)KS_CAB, "[CAB%p1%d]"}, | |
1097 {(int)KS_CAF, "[CAF%p1%d]"}, | |
1098 {(int)KS_CSB, "[CSB%p1%d]"}, | |
1099 {(int)KS_CSF, "[CSF%p1%d]"}, | |
1100 # else | |
1101 {(int)KS_CAB, "[CAB%d]"}, | |
1102 {(int)KS_CAF, "[CAF%d]"}, | |
1103 {(int)KS_CSB, "[CSB%d]"}, | |
1104 {(int)KS_CSF, "[CSF%d]"}, | |
1105 # endif | |
1106 {(int)KS_OP, "[OP]"}, | |
1107 {(int)KS_LE, "[LE]"}, | |
1108 {(int)KS_CL, "[CL]"}, | |
1109 {(int)KS_VI, "[VI]"}, | |
1110 {(int)KS_VE, "[VE]"}, | |
1111 {(int)KS_VS, "[VS]"}, | |
1112 {(int)KS_ME, "[ME]"}, | |
1113 {(int)KS_MR, "[MR]"}, | |
1114 {(int)KS_MB, "[MB]"}, | |
1115 {(int)KS_MD, "[MD]"}, | |
1116 {(int)KS_SE, "[SE]"}, | |
1117 {(int)KS_SO, "[SO]"}, | |
1118 {(int)KS_UE, "[UE]"}, | |
1119 {(int)KS_US, "[US]"}, | |
205 | 1120 {(int)KS_UCE, "[UCE]"}, |
1121 {(int)KS_UCS, "[UCS]"}, | |
7 | 1122 {(int)KS_MS, "[MS]"}, |
1123 {(int)KS_UT, "[UT]"}, | |
6602 | 1124 {(int)KS_XN, "[XN]"}, |
7 | 1125 # ifdef TERMINFO |
1126 {(int)KS_CM, "[%p1%dCM%p2%d]"}, | |
1127 # else | |
1128 {(int)KS_CM, "[%dCM%d]"}, | |
1129 # endif | |
1130 {(int)KS_SR, "[SR]"}, | |
1131 # ifdef TERMINFO | |
1132 {(int)KS_CRI, "[CRI%p1%d]"}, | |
1133 # else | |
1134 {(int)KS_CRI, "[CRI%d]"}, | |
1135 # endif | |
1136 {(int)KS_VB, "[VB]"}, | |
1137 {(int)KS_KS, "[KS]"}, | |
1138 {(int)KS_KE, "[KE]"}, | |
1139 {(int)KS_TI, "[TI]"}, | |
1140 {(int)KS_TE, "[TE]"}, | |
1141 {(int)KS_CIS, "[CIS]"}, | |
1142 {(int)KS_CIE, "[CIE]"}, | |
1143 {(int)KS_TS, "[TS]"}, | |
1144 {(int)KS_FS, "[FS]"}, | |
1145 # ifdef TERMINFO | |
1146 {(int)KS_CWS, "[%p1%dCWS%p2%d]"}, | |
1147 {(int)KS_CWP, "[%p1%dCWP%p2%d]"}, | |
1148 # else | |
1149 {(int)KS_CWS, "[%dCWS%d]"}, | |
1150 {(int)KS_CWP, "[%dCWP%d]"}, | |
1151 # endif | |
1152 {(int)KS_CRV, "[CRV]"}, | |
4215 | 1153 {(int)KS_U7, "[U7]"}, |
6874 | 1154 {(int)KS_RBG, "[RBG]"}, |
7 | 1155 {K_UP, "[KU]"}, |
1156 {K_DOWN, "[KD]"}, | |
1157 {K_LEFT, "[KL]"}, | |
1158 {K_RIGHT, "[KR]"}, | |
180 | 1159 {K_XUP, "[xKU]"}, |
1160 {K_XDOWN, "[xKD]"}, | |
1161 {K_XLEFT, "[xKL]"}, | |
1162 {K_XRIGHT, "[xKR]"}, | |
7 | 1163 {K_S_UP, "[S-KU]"}, |
1164 {K_S_DOWN, "[S-KD]"}, | |
1165 {K_S_LEFT, "[S-KL]"}, | |
1166 {K_C_LEFT, "[C-KL]"}, | |
1167 {K_S_RIGHT, "[S-KR]"}, | |
1168 {K_C_RIGHT, "[C-KR]"}, | |
1169 {K_F1, "[F1]"}, | |
1170 {K_XF1, "[xF1]"}, | |
1171 {K_F2, "[F2]"}, | |
1172 {K_XF2, "[xF2]"}, | |
1173 {K_F3, "[F3]"}, | |
1174 {K_XF3, "[xF3]"}, | |
1175 {K_F4, "[F4]"}, | |
1176 {K_XF4, "[xF4]"}, | |
1177 {K_F5, "[F5]"}, | |
1178 {K_F6, "[F6]"}, | |
1179 {K_F7, "[F7]"}, | |
1180 {K_F8, "[F8]"}, | |
1181 {K_F9, "[F9]"}, | |
1182 {K_F10, "[F10]"}, | |
1183 {K_F11, "[F11]"}, | |
1184 {K_F12, "[F12]"}, | |
1185 {K_S_F1, "[S-F1]"}, | |
1186 {K_S_XF1, "[S-xF1]"}, | |
1187 {K_S_F2, "[S-F2]"}, | |
1188 {K_S_XF2, "[S-xF2]"}, | |
1189 {K_S_F3, "[S-F3]"}, | |
1190 {K_S_XF3, "[S-xF3]"}, | |
1191 {K_S_F4, "[S-F4]"}, | |
1192 {K_S_XF4, "[S-xF4]"}, | |
1193 {K_S_F5, "[S-F5]"}, | |
1194 {K_S_F6, "[S-F6]"}, | |
1195 {K_S_F7, "[S-F7]"}, | |
1196 {K_S_F8, "[S-F8]"}, | |
1197 {K_S_F9, "[S-F9]"}, | |
1198 {K_S_F10, "[S-F10]"}, | |
1199 {K_S_F11, "[S-F11]"}, | |
1200 {K_S_F12, "[S-F12]"}, | |
1201 {K_HELP, "[HELP]"}, | |
1202 {K_UNDO, "[UNDO]"}, | |
1203 {K_BS, "[BS]"}, | |
1204 {K_INS, "[INS]"}, | |
1205 {K_KINS, "[KINS]"}, | |
1206 {K_DEL, "[DEL]"}, | |
1207 {K_KDEL, "[KDEL]"}, | |
1208 {K_HOME, "[HOME]"}, | |
1209 {K_S_HOME, "[C-HOME]"}, | |
1210 {K_C_HOME, "[C-HOME]"}, | |
1211 {K_KHOME, "[KHOME]"}, | |
1212 {K_XHOME, "[XHOME]"}, | |
230 | 1213 {K_ZHOME, "[ZHOME]"}, |
7 | 1214 {K_END, "[END]"}, |
1215 {K_S_END, "[C-END]"}, | |
1216 {K_C_END, "[C-END]"}, | |
1217 {K_KEND, "[KEND]"}, | |
1218 {K_XEND, "[XEND]"}, | |
230 | 1219 {K_ZEND, "[ZEND]"}, |
7 | 1220 {K_PAGEUP, "[PAGEUP]"}, |
1221 {K_PAGEDOWN, "[PAGEDOWN]"}, | |
1222 {K_KPAGEUP, "[KPAGEUP]"}, | |
1223 {K_KPAGEDOWN, "[KPAGEDOWN]"}, | |
1224 {K_MOUSE, "[MOUSE]"}, | |
1225 {K_KPLUS, "[KPLUS]"}, | |
1226 {K_KMINUS, "[KMINUS]"}, | |
1227 {K_KDIVIDE, "[KDIVIDE]"}, | |
1228 {K_KMULTIPLY, "[KMULTIPLY]"}, | |
1229 {K_KENTER, "[KENTER]"}, | |
1230 {K_KPOINT, "[KPOINT]"}, | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1231 {K_PS, "[PASTE-START]"}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1232 {K_PE, "[PASTE-END]"}, |
7 | 1233 {K_K0, "[K0]"}, |
1234 {K_K1, "[K1]"}, | |
1235 {K_K2, "[K2]"}, | |
1236 {K_K3, "[K3]"}, | |
1237 {K_K4, "[K4]"}, | |
1238 {K_K5, "[K5]"}, | |
1239 {K_K6, "[K6]"}, | |
1240 {K_K7, "[K7]"}, | |
1241 {K_K8, "[K8]"}, | |
1242 {K_K9, "[K9]"}, | |
1243 # endif | |
1244 | |
1245 #endif /* NO_BUILTIN_TCAPS */ | |
1246 | |
1247 /* | |
1248 * The most minimal terminal: only clear screen and cursor positioning | |
1249 * Always included. | |
1250 */ | |
1251 {(int)KS_NAME, "dumb"}, | |
1252 {(int)KS_CL, "\014"}, | |
1253 #ifdef TERMINFO | |
1254 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", | |
1255 ESC_STR "[%i%p1%d;%p2%dH")}, | |
1256 #else | |
1257 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
1258 #endif | |
1259 | |
1260 /* | |
1261 * end marker | |
1262 */ | |
1263 {(int)KS_NAME, NULL} | |
1264 | |
1265 }; /* end of builtin_termcaps */ | |
1266 | |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1267 #if defined(FEAT_TERMGUICOLORS) || defined(PROTO) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1268 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1269 termgui_mch_get_color(char_u *name) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1270 { |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
1271 return gui_get_color_cmn(name); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1272 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1273 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1274 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1275 termgui_get_color(char_u *name) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1276 { |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1277 guicolor_T t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1278 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1279 if (*name == NUL) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1280 return INVALCOLOR; |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1281 t = termgui_mch_get_color(name); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1282 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1283 if (t == INVALCOLOR) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1284 EMSG2(_("E254: Cannot allocate color %s"), name); |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1285 return t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1286 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1287 |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1288 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1289 termgui_mch_get_rgb(guicolor_T color) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1290 { |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1291 return color; |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1292 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1293 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1294 |
7 | 1295 /* |
1296 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM. | |
1297 */ | |
1298 #ifdef AMIGA | |
1299 # define DEFAULT_TERM (char_u *)"amiga" | |
1300 #endif | |
1301 | |
1302 #ifdef MSWIN | |
1303 # define DEFAULT_TERM (char_u *)"win32" | |
1304 #endif | |
1305 | |
1306 #if defined(UNIX) && !defined(__MINT__) | |
1307 # define DEFAULT_TERM (char_u *)"ansi" | |
1308 #endif | |
1309 | |
1310 #ifdef __MINT__ | |
1311 # define DEFAULT_TERM (char_u *)"vt52" | |
1312 #endif | |
1313 | |
1314 #ifdef VMS | |
1315 # define DEFAULT_TERM (char_u *)"vt320" | |
1316 #endif | |
1317 | |
1318 #ifdef __BEOS__ | |
1319 # undef DEFAULT_TERM | |
1320 # define DEFAULT_TERM (char_u *)"beos-ansi" | |
1321 #endif | |
1322 | |
1323 #ifndef DEFAULT_TERM | |
1324 # define DEFAULT_TERM (char_u *)"dumb" | |
1325 #endif | |
1326 | |
1327 /* | |
1328 * Term_strings contains currently used terminal output strings. | |
1329 * It is initialized with the default values by parse_builtin_tcap(). | |
1330 * The values can be changed by setting the option with the same name. | |
1331 */ | |
1332 char_u *(term_strings[(int)KS_LAST + 1]); | |
1333 | |
1221 | 1334 static int need_gather = FALSE; /* need to fill termleader[] */ |
1335 static char_u termleader[256 + 1]; /* for check_termcode() */ | |
7 | 1336 #ifdef FEAT_TERMRESPONSE |
1221 | 1337 static int check_for_codes = FALSE; /* check for key code response */ |
7 | 1338 #endif |
1339 | |
1340 static struct builtin_term * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1341 find_builtin_term(char_u *term) |
7 | 1342 { |
1343 struct builtin_term *p; | |
1344 | |
1345 p = builtin_termcaps; | |
1346 while (p->bt_string != NULL) | |
1347 { | |
1348 if (p->bt_entry == (int)KS_NAME) | |
1349 { | |
1350 #ifdef UNIX | |
1351 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term)) | |
1352 return p; | |
1353 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term)) | |
1354 return p; | |
1355 else | |
1356 #endif | |
1357 #ifdef VMS | |
1358 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term)) | |
1359 return p; | |
1360 else | |
1361 #endif | |
1362 if (STRCMP(term, p->bt_string) == 0) | |
1363 return p; | |
1364 } | |
1365 ++p; | |
1366 } | |
1367 return p; | |
1368 } | |
1369 | |
1370 /* | |
1371 * Parsing of the builtin termcap entries. | |
1372 * Caller should check if 'name' is a valid builtin term. | |
1373 * The terminal's name is not set, as this is already done in termcapinit(). | |
1374 */ | |
1375 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1376 parse_builtin_tcap(char_u *term) |
7 | 1377 { |
1378 struct builtin_term *p; | |
1379 char_u name[2]; | |
1380 int term_8bit; | |
1381 | |
1382 p = find_builtin_term(term); | |
1383 term_8bit = term_is_8bit(term); | |
1384 | |
1385 /* Do not parse if builtin term not found */ | |
1386 if (p->bt_string == NULL) | |
1387 return; | |
1388 | |
1389 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p) | |
1390 { | |
1391 if ((int)p->bt_entry >= 0) /* KS_xx entry */ | |
1392 { | |
1393 /* Only set the value if it wasn't set yet. */ | |
1394 if (term_strings[p->bt_entry] == NULL | |
1395 || term_strings[p->bt_entry] == empty_option) | |
1396 { | |
1397 /* 8bit terminal: use CSI instead of <Esc>[ */ | |
1398 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0) | |
1399 { | |
1400 char_u *s, *t; | |
1401 | |
1402 s = vim_strsave((char_u *)p->bt_string); | |
1403 if (s != NULL) | |
1404 { | |
1405 for (t = s; *t; ++t) | |
1406 if (term_7to8bit(t)) | |
1407 { | |
1408 *t = term_7to8bit(t); | |
1409 STRCPY(t + 1, t + 2); | |
1410 } | |
1411 term_strings[p->bt_entry] = s; | |
1412 set_term_option_alloced(&term_strings[p->bt_entry]); | |
1413 } | |
1414 } | |
1415 else | |
1416 term_strings[p->bt_entry] = (char_u *)p->bt_string; | |
1417 } | |
1418 } | |
1419 else | |
1420 { | |
1421 name[0] = KEY2TERMCAP0((int)p->bt_entry); | |
1422 name[1] = KEY2TERMCAP1((int)p->bt_entry); | |
1423 if (find_termcode(name) == NULL) | |
1424 add_termcode(name, (char_u *)p->bt_string, term_8bit); | |
1425 } | |
1426 } | |
1427 } | |
1428 #if defined(HAVE_TGETENT) || defined(FEAT_TERMRESPONSE) | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1429 static void set_color_count(int nr); |
7 | 1430 |
1431 /* | |
1432 * Set number of colors. | |
1433 * Store it as a number in t_colors. | |
1434 * Store it as a string in T_CCO (using nr_colors[]). | |
1435 */ | |
1436 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1437 set_color_count(int nr) |
7 | 1438 { |
1439 char_u nr_colors[20]; /* string for number of colors */ | |
1440 | |
1441 t_colors = nr; | |
1442 if (t_colors > 1) | |
1443 sprintf((char *)nr_colors, "%d", t_colors); | |
1444 else | |
1445 *nr_colors = NUL; | |
694 | 1446 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0); |
7 | 1447 } |
1448 #endif | |
1449 | |
1450 #ifdef HAVE_TGETENT | |
1451 static char *(key_names[]) = | |
1452 { | |
1453 #ifdef FEAT_TERMRESPONSE | |
1454 /* Do this one first, it may cause a screen redraw. */ | |
1455 "Co", | |
1456 #endif | |
1457 "ku", "kd", "kr", "kl", | |
1458 "#2", "#4", "%i", "*7", | |
1459 "k1", "k2", "k3", "k4", "k5", "k6", | |
1460 "k7", "k8", "k9", "k;", "F1", "F2", | |
1461 "%1", "&8", "kb", "kI", "kD", "kh", | |
1462 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB", | |
1463 NULL | |
1464 }; | |
1465 #endif | |
1466 | |
1467 /* | |
1468 * Set terminal options for terminal "term". | |
1469 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise. | |
1470 * | |
1471 * While doing this, until ttest(), some options may be NULL, be careful. | |
1472 */ | |
1473 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1474 set_termname(char_u *term) |
7 | 1475 { |
1476 struct builtin_term *termp; | |
1477 #ifdef HAVE_TGETENT | |
1478 int builtin_first = p_tbi; | |
1479 int try; | |
1480 int termcap_cleared = FALSE; | |
1481 #endif | |
1482 int width = 0, height = 0; | |
1483 char_u *error_msg = NULL; | |
1484 char_u *bs_p, *del_p; | |
1485 | |
168 | 1486 /* In silect mode (ex -s) we don't use the 'term' option. */ |
1487 if (silent_mode) | |
1488 return OK; | |
1489 | |
7 | 1490 detected_8bit = FALSE; /* reset 8-bit detection */ |
1491 | |
1492 if (term_is_builtin(term)) | |
1493 { | |
1494 term += 8; | |
1495 #ifdef HAVE_TGETENT | |
1496 builtin_first = 1; | |
1497 #endif | |
1498 } | |
1499 | |
1500 /* | |
1501 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise: | |
1502 * If builtin_first is TRUE: | |
1503 * 0. try builtin termcap | |
1504 * 1. try external termcap | |
1505 * 2. if both fail default to a builtin terminal | |
1506 * If builtin_first is FALSE: | |
1507 * 1. try external termcap | |
1508 * 2. try builtin termcap, if both fail default to a builtin terminal | |
1509 */ | |
1510 #ifdef HAVE_TGETENT | |
1511 for (try = builtin_first ? 0 : 1; try < 3; ++try) | |
1512 { | |
1513 /* | |
1514 * Use external termcap | |
1515 */ | |
1516 if (try == 1) | |
1517 { | |
1518 char_u *p; | |
1519 static char_u tstrbuf[TBUFSZ]; | |
1520 int i; | |
1521 char_u tbuf[TBUFSZ]; | |
1522 char_u *tp; | |
1523 static struct { | |
1524 enum SpecialKey dest; /* index in term_strings[] */ | |
1525 char *name; /* termcap name for string */ | |
1526 } string_names[] = | |
1527 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"}, | |
1528 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"}, | |
1529 {KS_CL, "cl"}, {KS_CD, "cd"}, | |
1530 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"}, | |
1531 {KS_VS, "vs"}, {KS_ME, "me"}, {KS_MR, "mr"}, | |
1532 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"}, | |
1533 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"}, | |
205 | 1534 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"}, |
1535 {KS_CM, "cm"}, {KS_SR, "sr"}, | |
7 | 1536 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"}, |
1537 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"}, | |
1538 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"}, | |
1539 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"}, | |
1540 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"}, | |
1541 {KS_CIS, "IS"}, {KS_CIE, "IE"}, | |
1542 {KS_TS, "ts"}, {KS_FS, "fs"}, | |
1543 {KS_CWP, "WP"}, {KS_CWS, "WS"}, | |
36 | 1544 {KS_CSI, "SI"}, {KS_CEI, "EI"}, |
6882 | 1545 {KS_U7, "u7"}, {KS_RBG, "RB"}, |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1546 {KS_8F, "8f"}, {KS_8B, "8b"}, |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1547 {KS_CBE, "BE"}, {KS_CBD, "BD"}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1548 {KS_CPS, "PS"}, {KS_CPE, "PE"}, |
7 | 1549 {(enum SpecialKey)0, NULL} |
1550 }; | |
1551 | |
1552 /* | |
1553 * If the external termcap does not have a matching entry, try the | |
1554 * builtin ones. | |
1555 */ | |
1556 if ((error_msg = tgetent_error(tbuf, term)) == NULL) | |
1557 { | |
1558 tp = tstrbuf; | |
1559 if (!termcap_cleared) | |
1560 { | |
1561 clear_termoptions(); /* clear old options */ | |
1562 termcap_cleared = TRUE; | |
1563 } | |
1564 | |
1565 /* get output strings */ | |
1566 for (i = 0; string_names[i].name != NULL; ++i) | |
1567 { | |
1568 if (term_str(string_names[i].dest) == NULL | |
1569 || term_str(string_names[i].dest) == empty_option) | |
1570 term_str(string_names[i].dest) = | |
1571 TGETSTR(string_names[i].name, &tp); | |
1572 } | |
1573 | |
1574 /* tgetflag() returns 1 if the flag is present, 0 if not and | |
1575 * possibly -1 if the flag doesn't exist. */ | |
1576 if ((T_MS == NULL || T_MS == empty_option) | |
1577 && tgetflag("ms") > 0) | |
1578 T_MS = (char_u *)"y"; | |
1579 if ((T_XS == NULL || T_XS == empty_option) | |
1580 && tgetflag("xs") > 0) | |
1581 T_XS = (char_u *)"y"; | |
6602 | 1582 if ((T_XN == NULL || T_XN == empty_option) |
1583 && tgetflag("xn") > 0) | |
1584 T_XN = (char_u *)"y"; | |
7 | 1585 if ((T_DB == NULL || T_DB == empty_option) |
1586 && tgetflag("db") > 0) | |
1587 T_DB = (char_u *)"y"; | |
1588 if ((T_DA == NULL || T_DA == empty_option) | |
1589 && tgetflag("da") > 0) | |
1590 T_DA = (char_u *)"y"; | |
1591 if ((T_UT == NULL || T_UT == empty_option) | |
1592 && tgetflag("ut") > 0) | |
1593 T_UT = (char_u *)"y"; | |
1594 | |
1595 | |
1596 /* | |
1597 * get key codes | |
1598 */ | |
1599 for (i = 0; key_names[i] != NULL; ++i) | |
1600 { | |
1601 if (find_termcode((char_u *)key_names[i]) == NULL) | |
1602 { | |
1603 p = TGETSTR(key_names[i], &tp); | |
1604 /* if cursor-left == backspace, ignore it (televideo | |
1605 * 925) */ | |
1606 if (p != NULL | |
1607 && (*p != Ctrl_H | |
1608 || key_names[i][0] != 'k' | |
1609 || key_names[i][1] != 'l')) | |
1610 add_termcode((char_u *)key_names[i], p, FALSE); | |
1611 } | |
1612 } | |
1613 | |
1614 if (height == 0) | |
1615 height = tgetnum("li"); | |
1616 if (width == 0) | |
1617 width = tgetnum("co"); | |
1618 | |
1619 /* | |
1620 * Get number of colors (if not done already). | |
1621 */ | |
1622 if (term_str(KS_CCO) == NULL | |
1623 || term_str(KS_CCO) == empty_option) | |
1624 set_color_count(tgetnum("Co")); | |
1625 | |
1626 # ifndef hpux | |
1627 BC = (char *)TGETSTR("bc", &tp); | |
1628 UP = (char *)TGETSTR("up", &tp); | |
1629 p = TGETSTR("pc", &tp); | |
1630 if (p) | |
1631 PC = *p; | |
1632 # endif /* hpux */ | |
1633 } | |
1634 } | |
1635 else /* try == 0 || try == 2 */ | |
1636 #endif /* HAVE_TGETENT */ | |
1637 /* | |
1638 * Use builtin termcap | |
1639 */ | |
1640 { | |
1641 #ifdef HAVE_TGETENT | |
1642 /* | |
1643 * If builtin termcap was already used, there is no need to search | |
1644 * for the builtin termcap again, quit now. | |
1645 */ | |
1646 if (try == 2 && builtin_first && termcap_cleared) | |
1647 break; | |
1648 #endif | |
1649 /* | |
1650 * search for 'term' in builtin_termcaps[] | |
1651 */ | |
1652 termp = find_builtin_term(term); | |
1653 if (termp->bt_string == NULL) /* did not find it */ | |
1654 { | |
1655 #ifdef HAVE_TGETENT | |
1656 /* | |
1657 * If try == 0, first try the external termcap. If that is not | |
1658 * found we'll get back here with try == 2. | |
1659 * If termcap_cleared is set we used the external termcap, | |
1660 * don't complain about not finding the term in the builtin | |
1661 * termcap. | |
1662 */ | |
1663 if (try == 0) /* try external one */ | |
1664 continue; | |
1665 if (termcap_cleared) /* found in external termcap */ | |
1666 break; | |
1667 #endif | |
1668 | |
1669 mch_errmsg("\r\n"); | |
1670 if (error_msg != NULL) | |
1671 { | |
1672 mch_errmsg((char *)error_msg); | |
1673 mch_errmsg("\r\n"); | |
1674 } | |
1675 mch_errmsg("'"); | |
1676 mch_errmsg((char *)term); | |
1677 mch_errmsg(_("' not known. Available builtin terminals are:")); | |
1678 mch_errmsg("\r\n"); | |
1679 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL; | |
1680 ++termp) | |
1681 { | |
1682 if (termp->bt_entry == (int)KS_NAME) | |
1683 { | |
1684 #ifdef HAVE_TGETENT | |
1685 mch_errmsg(" builtin_"); | |
1686 #else | |
1687 mch_errmsg(" "); | |
1688 #endif | |
1689 mch_errmsg(termp->bt_string); | |
1690 mch_errmsg("\r\n"); | |
1691 } | |
1692 } | |
1693 /* when user typed :set term=xxx, quit here */ | |
1694 if (starting != NO_SCREEN) | |
1695 { | |
1696 screen_start(); /* don't know where cursor is now */ | |
1697 wait_return(TRUE); | |
1698 return FAIL; | |
1699 } | |
1700 term = DEFAULT_TERM; | |
1701 mch_errmsg(_("defaulting to '")); | |
1702 mch_errmsg((char *)term); | |
1703 mch_errmsg("'\r\n"); | |
1704 if (emsg_silent == 0) | |
1705 { | |
1706 screen_start(); /* don't know where cursor is now */ | |
1707 out_flush(); | |
1708 ui_delay(2000L, TRUE); | |
1709 } | |
694 | 1710 set_string_option_direct((char_u *)"term", -1, term, |
1711 OPT_FREE, 0); | |
7 | 1712 display_errors(); |
1713 } | |
1714 out_flush(); | |
1715 #ifdef HAVE_TGETENT | |
1716 if (!termcap_cleared) | |
1717 { | |
1718 #endif | |
1719 clear_termoptions(); /* clear old options */ | |
1720 #ifdef HAVE_TGETENT | |
1721 termcap_cleared = TRUE; | |
1722 } | |
1723 #endif | |
1724 parse_builtin_tcap(term); | |
1725 #ifdef FEAT_GUI | |
1726 if (term_is_gui(term)) | |
1727 { | |
1728 out_flush(); | |
1729 gui_init(); | |
1730 /* If starting the GUI failed, don't do any of the other | |
1731 * things for this terminal */ | |
1732 if (!gui.in_use) | |
1733 return FAIL; | |
1734 #ifdef HAVE_TGETENT | |
1735 break; /* don't try using external termcap */ | |
1736 #endif | |
1737 } | |
1738 #endif /* FEAT_GUI */ | |
1739 } | |
1740 #ifdef HAVE_TGETENT | |
1741 } | |
1742 #endif | |
1743 | |
1744 /* | |
1745 * special: There is no info in the termcap about whether the cursor | |
1746 * positioning is relative to the start of the screen or to the start of the | |
1747 * scrolling region. We just guess here. Only msdos pcterm is known to do it | |
1748 * relative. | |
1749 */ | |
1750 if (STRCMP(term, "pcterm") == 0) | |
1751 T_CCS = (char_u *)"yes"; | |
1752 else | |
1753 T_CCS = empty_option; | |
1754 | |
1755 #ifdef UNIX | |
1756 /* | |
1757 * Any "stty" settings override the default for t_kb from the termcap. | |
1758 * This is in os_unix.c, because it depends a lot on the version of unix that | |
1759 * is being used. | |
1760 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly. | |
1761 */ | |
1762 #ifdef FEAT_GUI | |
1763 if (!gui.in_use) | |
1764 #endif | |
1765 get_stty(); | |
1766 #endif | |
1767 | |
1768 /* | |
1769 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also | |
1770 * didn't work, use the default CTRL-H | |
1771 * The default for t_kD is DEL, unless t_kb is DEL. | |
1772 * The vim_strsave'd strings are probably lost forever, well it's only two | |
1773 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD" | |
1774 * directly. | |
1775 */ | |
1776 #ifdef FEAT_GUI | |
1777 if (!gui.in_use) | |
1778 #endif | |
1779 { | |
1780 bs_p = find_termcode((char_u *)"kb"); | |
1781 del_p = find_termcode((char_u *)"kD"); | |
1782 if (bs_p == NULL || *bs_p == NUL) | |
1783 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE); | |
1784 if ((del_p == NULL || *del_p == NUL) && | |
1785 (bs_p == NULL || *bs_p != DEL)) | |
1786 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE); | |
1787 } | |
1788 | |
1789 #if defined(UNIX) || defined(VMS) | |
1790 term_is_xterm = vim_is_xterm(term); | |
1791 #endif | |
1792 | |
1793 #ifdef FEAT_MOUSE | |
1794 # if defined(UNIX) || defined(VMS) | |
1795 # ifdef FEAT_MOUSE_TTY | |
1796 /* | |
1797 * For Unix, set the 'ttymouse' option to the type of mouse to be used. | |
1798 * The termcode for the mouse is added as a side effect in option.c. | |
1799 */ | |
1800 { | |
1801 char_u *p; | |
1802 | |
1803 p = (char_u *)""; | |
1804 # ifdef FEAT_MOUSE_XTERM | |
1623 | 1805 if (use_xterm_like_mouse(term)) |
7 | 1806 { |
1807 if (use_xterm_mouse()) | |
1808 p = NULL; /* keep existing value, might be "xterm2" */ | |
1809 else | |
1810 p = (char_u *)"xterm"; | |
1811 } | |
1812 # endif | |
1813 if (p != NULL) | |
3980 | 1814 { |
7 | 1815 set_option_value((char_u *)"ttym", 0L, p, 0); |
3980 | 1816 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or |
1817 * "xterm2" in check_termcode(). */ | |
1818 reset_option_was_set((char_u *)"ttym"); | |
1819 } | |
7 | 1820 if (p == NULL |
1821 # ifdef FEAT_GUI | |
1822 || gui.in_use | |
1823 # endif | |
1824 ) | |
1825 check_mouse_termcode(); /* set mouse termcode anyway */ | |
1826 } | |
1827 # endif | |
1828 # else | |
1829 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M"); | |
1830 # endif | |
1831 #endif /* FEAT_MOUSE */ | |
1832 | |
1833 #ifdef USE_TERM_CONSOLE | |
1834 /* DEFAULT_TERM indicates that it is the machine console. */ | |
1835 if (STRCMP(term, DEFAULT_TERM) != 0) | |
1836 term_console = FALSE; | |
1837 else | |
1838 { | |
1839 term_console = TRUE; | |
1840 # ifdef AMIGA | |
1841 win_resize_on(); /* enable window resizing reports */ | |
1842 # endif | |
1843 } | |
1844 #endif | |
1845 | |
1846 #if defined(UNIX) || defined(VMS) | |
1847 /* | |
1848 * 'ttyfast' is default on for xterm, iris-ansi and a few others. | |
1849 */ | |
1850 if (vim_is_fastterm(term)) | |
1851 p_tf = TRUE; | |
1852 #endif | |
1853 #ifdef USE_TERM_CONSOLE | |
1854 /* | |
1855 * 'ttyfast' is default on consoles | |
1856 */ | |
1857 if (term_console) | |
1858 p_tf = TRUE; | |
1859 #endif | |
1860 | |
1861 ttest(TRUE); /* make sure we have a valid set of terminal codes */ | |
1862 | |
1863 full_screen = TRUE; /* we can use termcap codes from now on */ | |
1864 set_term_defaults(); /* use current values as defaults */ | |
1865 #ifdef FEAT_TERMRESPONSE | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
1866 LOG_TR("setting crv_status to CRV_GET"); |
7 | 1867 crv_status = CRV_GET; /* Get terminal version later */ |
1868 #endif | |
1869 | |
1870 /* | |
1871 * Initialize the terminal with the appropriate termcap codes. | |
1872 * Set the mouse and window title if possible. | |
1873 * Don't do this when starting, need to parse the .vimrc first, because it | |
1874 * may redefine t_TI etc. | |
1875 */ | |
1876 if (starting != NO_SCREEN) | |
1877 { | |
1878 starttermcap(); /* may change terminal mode */ | |
1879 #ifdef FEAT_MOUSE | |
1880 setmouse(); /* may start using the mouse */ | |
1881 #endif | |
1882 #ifdef FEAT_TITLE | |
1883 maketitle(); /* may display window title */ | |
1884 #endif | |
1885 } | |
1886 | |
1887 /* display initial screen after ttest() checking. jw. */ | |
1888 if (width <= 0 || height <= 0) | |
1889 { | |
1890 /* termcap failed to report size */ | |
1891 /* set defaults, in case ui_get_shellsize() also fails */ | |
1892 width = 80; | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
1893 #if defined(WIN3264) |
7 | 1894 height = 25; /* console is often 25 lines */ |
1895 #else | |
1896 height = 24; /* most terminals are 24 lines */ | |
1897 #endif | |
1898 } | |
1899 set_shellsize(width, height, FALSE); /* may change Rows */ | |
1900 if (starting != NO_SCREEN) | |
1901 { | |
1902 if (scroll_region) | |
1903 scroll_region_reset(); /* In case Rows changed */ | |
1904 check_map_keycodes(); /* check mappings for terminal codes used */ | |
1905 | |
1906 #ifdef FEAT_AUTOCMD | |
1907 { | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
1908 bufref_T old_curbuf; |
7 | 1909 |
1910 /* | |
1911 * Execute the TermChanged autocommands for each buffer that is | |
1912 * loaded. | |
1913 */ | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
1914 set_bufref(&old_curbuf, curbuf); |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9628
diff
changeset
|
1915 FOR_ALL_BUFFERS(curbuf) |
7 | 1916 { |
1917 if (curbuf->b_ml.ml_mfp != NULL) | |
1918 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE, | |
1919 curbuf); | |
1920 } | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
1921 if (bufref_valid(&old_curbuf)) |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
1922 curbuf = old_curbuf.br_buf; |
7 | 1923 } |
1924 #endif | |
1925 } | |
1926 | |
1927 #ifdef FEAT_TERMRESPONSE | |
1928 may_req_termresponse(); | |
1929 #endif | |
1930 | |
1931 return OK; | |
1932 } | |
1933 | |
1934 #if defined(FEAT_MOUSE) || defined(PROTO) | |
1935 | |
1936 # ifdef FEAT_MOUSE_TTY | |
1937 # define HMT_NORMAL 1 | |
1938 # define HMT_NETTERM 2 | |
1939 # define HMT_DEC 4 | |
1940 # define HMT_JSBTERM 8 | |
1941 # define HMT_PTERM 16 | |
3176 | 1942 # define HMT_URXVT 32 |
3746 | 1943 # define HMT_SGR 64 |
7 | 1944 static int has_mouse_termcode = 0; |
1945 # endif | |
1946 | |
1623 | 1947 # if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO) |
7 | 1948 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1949 set_mouse_termcode( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1950 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1951 char_u *s) |
7 | 1952 { |
1953 char_u name[2]; | |
1954 | |
1955 name[0] = n; | |
1956 name[1] = KE_FILLER; | |
1957 add_termcode(name, s, FALSE); | |
1958 # ifdef FEAT_MOUSE_TTY | |
1959 # ifdef FEAT_MOUSE_JSB | |
1960 if (n == KS_JSBTERM_MOUSE) | |
1961 has_mouse_termcode |= HMT_JSBTERM; | |
1962 else | |
1963 # endif | |
1964 # ifdef FEAT_MOUSE_NET | |
1965 if (n == KS_NETTERM_MOUSE) | |
1966 has_mouse_termcode |= HMT_NETTERM; | |
1967 else | |
1968 # endif | |
1969 # ifdef FEAT_MOUSE_DEC | |
1970 if (n == KS_DEC_MOUSE) | |
1971 has_mouse_termcode |= HMT_DEC; | |
1972 else | |
1973 # endif | |
1974 # ifdef FEAT_MOUSE_PTERM | |
1975 if (n == KS_PTERM_MOUSE) | |
1976 has_mouse_termcode |= HMT_PTERM; | |
1977 else | |
1978 # endif | |
3176 | 1979 # ifdef FEAT_MOUSE_URXVT |
1980 if (n == KS_URXVT_MOUSE) | |
1981 has_mouse_termcode |= HMT_URXVT; | |
1982 else | |
1983 # endif | |
3746 | 1984 # ifdef FEAT_MOUSE_SGR |
1985 if (n == KS_SGR_MOUSE) | |
1986 has_mouse_termcode |= HMT_SGR; | |
1987 else | |
1988 # endif | |
7 | 1989 has_mouse_termcode |= HMT_NORMAL; |
1990 # endif | |
1991 } | |
1992 # endif | |
1993 | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
1994 # if ((defined(UNIX) || defined(VMS)) \ |
1623 | 1995 && defined(FEAT_MOUSE_TTY)) || defined(PROTO) |
7 | 1996 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1997 del_mouse_termcode( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1998 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */ |
7 | 1999 { |
2000 char_u name[2]; | |
2001 | |
2002 name[0] = n; | |
2003 name[1] = KE_FILLER; | |
2004 del_termcode(name); | |
2005 # ifdef FEAT_MOUSE_TTY | |
2006 # ifdef FEAT_MOUSE_JSB | |
2007 if (n == KS_JSBTERM_MOUSE) | |
2008 has_mouse_termcode &= ~HMT_JSBTERM; | |
2009 else | |
2010 # endif | |
2011 # ifdef FEAT_MOUSE_NET | |
2012 if (n == KS_NETTERM_MOUSE) | |
2013 has_mouse_termcode &= ~HMT_NETTERM; | |
2014 else | |
2015 # endif | |
2016 # ifdef FEAT_MOUSE_DEC | |
2017 if (n == KS_DEC_MOUSE) | |
2018 has_mouse_termcode &= ~HMT_DEC; | |
2019 else | |
2020 # endif | |
2021 # ifdef FEAT_MOUSE_PTERM | |
2022 if (n == KS_PTERM_MOUSE) | |
2023 has_mouse_termcode &= ~HMT_PTERM; | |
2024 else | |
2025 # endif | |
3176 | 2026 # ifdef FEAT_MOUSE_URXVT |
2027 if (n == KS_URXVT_MOUSE) | |
2028 has_mouse_termcode &= ~HMT_URXVT; | |
2029 else | |
2030 # endif | |
3746 | 2031 # ifdef FEAT_MOUSE_SGR |
2032 if (n == KS_SGR_MOUSE) | |
2033 has_mouse_termcode &= ~HMT_SGR; | |
2034 else | |
2035 # endif | |
7 | 2036 has_mouse_termcode &= ~HMT_NORMAL; |
2037 # endif | |
2038 } | |
2039 # endif | |
2040 #endif | |
2041 | |
2042 #ifdef HAVE_TGETENT | |
2043 /* | |
2044 * Call tgetent() | |
2045 * Return error message if it fails, NULL if it's OK. | |
2046 */ | |
2047 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2048 tgetent_error(char_u *tbuf, char_u *term) |
7 | 2049 { |
2050 int i; | |
2051 | |
2052 i = TGETENT(tbuf, term); | |
2053 if (i < 0 /* -1 is always an error */ | |
2054 # ifdef TGETENT_ZERO_ERR | |
2055 || i == 0 /* sometimes zero is also an error */ | |
2056 # endif | |
2057 ) | |
2058 { | |
2059 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call | |
2060 * tgetent() with the always existing "dumb" entry to avoid a crash or | |
2061 * hang. */ | |
2062 (void)TGETENT(tbuf, "dumb"); | |
2063 | |
2064 if (i < 0) | |
2065 # ifdef TGETENT_ZERO_ERR | |
2066 return (char_u *)_("E557: Cannot open termcap file"); | |
2067 if (i == 0) | |
2068 # endif | |
2069 #ifdef TERMINFO | |
2070 return (char_u *)_("E558: Terminal entry not found in terminfo"); | |
2071 #else | |
2072 return (char_u *)_("E559: Terminal entry not found in termcap"); | |
2073 #endif | |
2074 } | |
2075 return NULL; | |
2076 } | |
2077 | |
2078 /* | |
2079 * Some versions of tgetstr() have been reported to return -1 instead of NULL. | |
2080 * Fix that here. | |
2081 */ | |
2082 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2083 vim_tgetstr(char *s, char_u **pp) |
7 | 2084 { |
2085 char *p; | |
2086 | |
2087 p = tgetstr(s, (char **)pp); | |
2088 if (p == (char *)-1) | |
2089 p = NULL; | |
2090 return (char_u *)p; | |
2091 } | |
2092 #endif /* HAVE_TGETENT */ | |
2093 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2094 #if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X)) |
7 | 2095 /* |
2096 * Get Columns and Rows from the termcap. Used after a window signal if the | |
2097 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co" | |
2098 * and "li" entries never change. But on some systems this works. | |
2099 * Errors while getting the entries are ignored. | |
2100 */ | |
2101 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2102 getlinecol( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2103 long *cp, /* pointer to columns */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2104 long *rp) /* pointer to rows */ |
7 | 2105 { |
2106 char_u tbuf[TBUFSZ]; | |
2107 | |
2108 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL) | |
2109 { | |
2110 if (*cp == 0) | |
2111 *cp = tgetnum("co"); | |
2112 if (*rp == 0) | |
2113 *rp = tgetnum("li"); | |
2114 } | |
2115 } | |
2116 #endif /* defined(HAVE_TGETENT) && defined(UNIX) */ | |
2117 | |
2118 /* | |
2119 * Get a string entry from the termcap and add it to the list of termcodes. | |
2120 * Used for <t_xx> special keys. | |
2121 * Give an error message for failure when not sourcing. | |
2122 * If force given, replace an existing entry. | |
2123 * Return FAIL if the entry was not found, OK if the entry was added. | |
2124 */ | |
2125 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2126 add_termcap_entry(char_u *name, int force) |
7 | 2127 { |
2128 char_u *term; | |
2129 int key; | |
2130 struct builtin_term *termp; | |
2131 #ifdef HAVE_TGETENT | |
2132 char_u *string; | |
2133 int i; | |
2134 int builtin_first; | |
2135 char_u tbuf[TBUFSZ]; | |
2136 char_u tstrbuf[TBUFSZ]; | |
2137 char_u *tp = tstrbuf; | |
2138 char_u *error_msg = NULL; | |
2139 #endif | |
2140 | |
2141 /* | |
2142 * If the GUI is running or will start in a moment, we only support the keys | |
2143 * that the GUI can produce. | |
2144 */ | |
2145 #ifdef FEAT_GUI | |
2146 if (gui.in_use || gui.starting) | |
2147 return gui_mch_haskey(name); | |
2148 #endif | |
2149 | |
2150 if (!force && find_termcode(name) != NULL) /* it's already there */ | |
2151 return OK; | |
2152 | |
2153 term = T_NAME; | |
2154 if (term == NULL || *term == NUL) /* 'term' not defined yet */ | |
2155 return FAIL; | |
2156 | |
2157 if (term_is_builtin(term)) /* name starts with "builtin_" */ | |
2158 { | |
2159 term += 8; | |
2160 #ifdef HAVE_TGETENT | |
2161 builtin_first = TRUE; | |
2162 #endif | |
2163 } | |
2164 #ifdef HAVE_TGETENT | |
2165 else | |
2166 builtin_first = p_tbi; | |
2167 #endif | |
2168 | |
2169 #ifdef HAVE_TGETENT | |
2170 /* | |
2171 * We can get the entry from the builtin termcap and from the external one. | |
2172 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try | |
2173 * builtin termcap first. | |
2174 * If 'ttybuiltin' is off, try external termcap first. | |
2175 */ | |
2176 for (i = 0; i < 2; ++i) | |
2177 { | |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
6901
diff
changeset
|
2178 if ((!builtin_first) == i) |
7 | 2179 #endif |
2180 /* | |
2181 * Search in builtin termcap | |
2182 */ | |
2183 { | |
2184 termp = find_builtin_term(term); | |
2185 if (termp->bt_string != NULL) /* found it */ | |
2186 { | |
2187 key = TERMCAP2KEY(name[0], name[1]); | |
2188 while (termp->bt_entry != (int)KS_NAME) | |
2189 { | |
2190 if ((int)termp->bt_entry == key) | |
2191 { | |
2192 add_termcode(name, (char_u *)termp->bt_string, | |
2193 term_is_8bit(term)); | |
2194 return OK; | |
2195 } | |
2196 ++termp; | |
2197 } | |
2198 } | |
2199 } | |
2200 #ifdef HAVE_TGETENT | |
2201 else | |
2202 /* | |
2203 * Search in external termcap | |
2204 */ | |
2205 { | |
2206 error_msg = tgetent_error(tbuf, term); | |
2207 if (error_msg == NULL) | |
2208 { | |
2209 string = TGETSTR((char *)name, &tp); | |
2210 if (string != NULL && *string != NUL) | |
2211 { | |
2212 add_termcode(name, string, FALSE); | |
2213 return OK; | |
2214 } | |
2215 } | |
2216 } | |
2217 } | |
2218 #endif | |
2219 | |
2220 if (sourcing_name == NULL) | |
2221 { | |
2222 #ifdef HAVE_TGETENT | |
2223 if (error_msg != NULL) | |
2224 EMSG(error_msg); | |
2225 else | |
2226 #endif | |
2227 EMSG2(_("E436: No \"%s\" entry in termcap"), name); | |
2228 } | |
2229 return FAIL; | |
2230 } | |
2231 | |
2232 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2233 term_is_builtin(char_u *name) |
7 | 2234 { |
2235 return (STRNCMP(name, "builtin_", (size_t)8) == 0); | |
2236 } | |
2237 | |
2238 /* | |
2239 * Return TRUE if terminal "name" uses CSI instead of <Esc>[. | |
2240 * Assume that the terminal is using 8-bit controls when the name contains | |
2241 * "8bit", like in "xterm-8bit". | |
2242 */ | |
2243 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2244 term_is_8bit(char_u *name) |
7 | 2245 { |
2246 return (detected_8bit || strstr((char *)name, "8bit") != NULL); | |
2247 } | |
2248 | |
2249 /* | |
2250 * Translate terminal control chars from 7-bit to 8-bit: | |
2251 * <Esc>[ -> CSI | |
2252 * <Esc>] -> <M-C-]> | |
2253 * <Esc>O -> <M-C-O> | |
2254 */ | |
2255 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2256 term_7to8bit(char_u *p) |
7 | 2257 { |
2258 if (*p == ESC) | |
2259 { | |
2260 if (p[1] == '[') | |
2261 return CSI; | |
2262 if (p[1] == ']') | |
6901 | 2263 return OSC; |
7 | 2264 if (p[1] == 'O') |
2265 return 0x8f; | |
2266 } | |
2267 return 0; | |
2268 } | |
2269 | |
2270 #ifdef FEAT_GUI | |
2271 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2272 term_is_gui(char_u *name) |
7 | 2273 { |
2274 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0); | |
2275 } | |
2276 #endif | |
2277 | |
2278 #if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO) | |
2279 | |
2280 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2281 tltoa(unsigned long i) |
7 | 2282 { |
2283 static char_u buf[16]; | |
2284 char_u *p; | |
2285 | |
2286 p = buf + 15; | |
2287 *p = '\0'; | |
2288 do | |
2289 { | |
2290 --p; | |
2291 *p = (char_u) (i % 10 + '0'); | |
2292 i /= 10; | |
2293 } | |
2294 while (i > 0 && p > buf); | |
2295 return p; | |
2296 } | |
2297 #endif | |
2298 | |
2299 #ifndef HAVE_TGETENT | |
2300 | |
2301 /* | |
2302 * minimal tgoto() implementation. | |
2303 * no padding and we only parse for %i %d and %+char | |
2304 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2305 static char *tgoto(char *, int, int); |
298 | 2306 |
2307 static char * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2308 tgoto(char *cm, int x, int y) |
7 | 2309 { |
2310 static char buf[30]; | |
2311 char *p, *s, *e; | |
2312 | |
2313 if (!cm) | |
2314 return "OOPS"; | |
2315 e = buf + 29; | |
2316 for (s = buf; s < e && *cm; cm++) | |
2317 { | |
2318 if (*cm != '%') | |
2319 { | |
2320 *s++ = *cm; | |
2321 continue; | |
2322 } | |
2323 switch (*++cm) | |
2324 { | |
2325 case 'd': | |
2326 p = (char *)tltoa((unsigned long)y); | |
2327 y = x; | |
2328 while (*p) | |
2329 *s++ = *p++; | |
2330 break; | |
2331 case 'i': | |
2332 x++; | |
2333 y++; | |
2334 break; | |
2335 case '+': | |
2336 *s++ = (char)(*++cm + y); | |
2337 y = x; | |
2338 break; | |
2339 case '%': | |
2340 *s++ = *cm; | |
2341 break; | |
2342 default: | |
2343 return "OOPS"; | |
2344 } | |
2345 } | |
2346 *s = '\0'; | |
2347 return buf; | |
2348 } | |
2349 | |
2350 #endif /* HAVE_TGETENT */ | |
2351 | |
2352 /* | |
2353 * Set the terminal name and initialize the terminal options. | |
2354 * If "name" is NULL or empty, get the terminal name from the environment. | |
2355 * If that fails, use the default terminal name. | |
2356 */ | |
2357 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2358 termcapinit(char_u *name) |
7 | 2359 { |
2360 char_u *term; | |
2361 | |
2362 if (name != NULL && *name == NUL) | |
2363 name = NULL; /* empty name is equal to no name */ | |
2364 term = name; | |
2365 | |
2366 #ifdef __BEOS__ | |
2367 /* | |
2368 * TERM environment variable is normally set to 'ansi' on the Bebox; | |
2369 * Since the BeBox doesn't quite support full ANSI yet, we use our | |
2370 * own custom 'ansi-beos' termcap instead, unless the -T option has | |
2371 * been given on the command line. | |
2372 */ | |
2373 if (term == NULL | |
2374 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0) | |
2375 term = DEFAULT_TERM; | |
2376 #endif | |
2377 #ifndef MSWIN | |
2378 if (term == NULL) | |
2379 term = mch_getenv((char_u *)"TERM"); | |
2380 #endif | |
2381 if (term == NULL || *term == NUL) | |
2382 term = DEFAULT_TERM; | |
694 | 2383 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0); |
7 | 2384 |
2385 /* Set the default terminal name. */ | |
2386 set_string_default("term", term); | |
2387 set_string_default("ttytype", term); | |
2388 | |
2389 /* | |
2390 * Avoid using "term" here, because the next mch_getenv() may overwrite it. | |
2391 */ | |
2392 set_termname(T_NAME != NULL ? T_NAME : term); | |
2393 } | |
2394 | |
2395 /* | |
2396 * the number of calls to ui_write is reduced by using the buffer "out_buf" | |
2397 */ | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2398 #define OUT_SIZE 2047 |
7 | 2399 /* Add one to allow mch_write() in os_win32.c to append a NUL */ |
2400 static char_u out_buf[OUT_SIZE + 1]; | |
2401 static int out_pos = 0; /* number of chars in out_buf */ | |
2402 | |
2403 /* | |
2404 * out_flush(): flush the output buffer | |
2405 */ | |
2406 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2407 out_flush(void) |
7 | 2408 { |
2409 int len; | |
2410 | |
2411 if (out_pos != 0) | |
2412 { | |
2413 /* set out_pos to 0 before ui_write, to avoid recursiveness */ | |
2414 len = out_pos; | |
2415 out_pos = 0; | |
2416 ui_write(out_buf, len); | |
2417 } | |
2418 } | |
2419 | |
2420 #if defined(FEAT_MBYTE) || defined(PROTO) | |
2421 /* | |
2422 * Sometimes a byte out of a multi-byte character is written with out_char(). | |
2423 * To avoid flushing half of the character, call this function first. | |
2424 */ | |
2425 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2426 out_flush_check(void) |
7 | 2427 { |
2428 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES) | |
2429 out_flush(); | |
2430 } | |
2431 #endif | |
2432 | |
2433 #ifdef FEAT_GUI | |
2434 /* | |
2435 * out_trash(): Throw away the contents of the output buffer | |
2436 */ | |
2437 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2438 out_trash(void) |
7 | 2439 { |
2440 out_pos = 0; | |
2441 } | |
2442 #endif | |
2443 | |
2444 /* | |
2445 * out_char(c): put a byte into the output buffer. | |
2446 * Flush it if it becomes full. | |
2447 * This should not be used for outputting text on the screen (use functions | |
2448 * like msg_puts() and screen_putchar() for that). | |
2449 */ | |
2450 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2451 out_char(unsigned c) |
7 | 2452 { |
2453 #if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX) | |
2454 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */ | |
2455 out_char('\r'); | |
2456 #endif | |
2457 | |
2458 out_buf[out_pos++] = c; | |
2459 | |
2460 /* For testing we flush each time. */ | |
2461 if (out_pos >= OUT_SIZE || p_wd) | |
2462 out_flush(); | |
2463 } | |
2464 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2465 static void out_char_nf(unsigned); |
7 | 2466 |
2467 /* | |
2468 * out_char_nf(c): like out_char(), but don't flush when p_wd is set | |
2469 */ | |
2470 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2471 out_char_nf(unsigned c) |
7 | 2472 { |
2473 #if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX) | |
2474 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */ | |
2475 out_char_nf('\r'); | |
2476 #endif | |
2477 | |
2478 out_buf[out_pos++] = c; | |
2479 | |
2480 if (out_pos >= OUT_SIZE) | |
2481 out_flush(); | |
2482 } | |
2483 | |
2237
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
2484 #if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \ |
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
2485 || defined(FEAT_TERMRESPONSE) || defined(PROTO) |
7 | 2486 /* |
2487 * A never-padding out_str. | |
2488 * use this whenever you don't want to run the string through tputs. | |
2489 * tputs above is harmless, but tputs from the termcap library | |
2490 * is likely to strip off leading digits, that it mistakes for padding | |
2491 * information, and "%i", "%d", etc. | |
2492 * This should only be used for writing terminal codes, not for outputting | |
2493 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2494 */ | |
2495 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2496 out_str_nf(char_u *s) |
7 | 2497 { |
2498 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */ | |
2499 out_flush(); | |
2500 while (*s) | |
2501 out_char_nf(*s++); | |
2502 | |
2503 /* For testing we write one string at a time. */ | |
2504 if (p_wd) | |
2505 out_flush(); | |
2506 } | |
2237
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
2507 #endif |
7 | 2508 |
2509 /* | |
2510 * out_str(s): Put a character string a byte at a time into the output buffer. | |
2511 * If HAVE_TGETENT is defined use the termcap parser. (jw) | |
2512 * This should only be used for writing terminal codes, not for outputting | |
2513 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2514 */ | |
2515 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2516 out_str(char_u *s) |
7 | 2517 { |
2518 if (s != NULL && *s) | |
2519 { | |
2520 #ifdef FEAT_GUI | |
2521 /* Don't use tputs() when GUI is used, ncurses crashes. */ | |
2522 if (gui.in_use) | |
2523 { | |
2524 out_str_nf(s); | |
2525 return; | |
2526 } | |
2527 #endif | |
2528 /* avoid terminal strings being split up */ | |
2529 if (out_pos > OUT_SIZE - 20) | |
2530 out_flush(); | |
2531 #ifdef HAVE_TGETENT | |
2532 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf); | |
2533 #else | |
2534 while (*s) | |
2535 out_char_nf(*s++); | |
2536 #endif | |
2537 | |
2538 /* For testing we write one string at a time. */ | |
2539 if (p_wd) | |
2540 out_flush(); | |
2541 } | |
2542 } | |
2543 | |
2544 /* | |
2545 * cursor positioning using termcap parser. (jw) | |
2546 */ | |
2547 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2548 term_windgoto(int row, int col) |
7 | 2549 { |
2550 OUT_STR(tgoto((char *)T_CM, col, row)); | |
2551 } | |
2552 | |
2553 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2554 term_cursor_right(int i) |
7 | 2555 { |
2556 OUT_STR(tgoto((char *)T_CRI, 0, i)); | |
2557 } | |
2558 | |
2559 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2560 term_append_lines(int line_count) |
7 | 2561 { |
2562 OUT_STR(tgoto((char *)T_CAL, 0, line_count)); | |
2563 } | |
2564 | |
2565 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2566 term_delete_lines(int line_count) |
7 | 2567 { |
2568 OUT_STR(tgoto((char *)T_CDL, 0, line_count)); | |
2569 } | |
2570 | |
2571 #if defined(HAVE_TGETENT) || defined(PROTO) | |
2572 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2573 term_set_winpos(int x, int y) |
7 | 2574 { |
2575 /* Can't handle a negative value here */ | |
2576 if (x < 0) | |
2577 x = 0; | |
2578 if (y < 0) | |
2579 y = 0; | |
2580 OUT_STR(tgoto((char *)T_CWP, y, x)); | |
2581 } | |
2582 | |
2583 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2584 term_set_winsize(int width, int height) |
7 | 2585 { |
2586 OUT_STR(tgoto((char *)T_CWS, height, width)); | |
2587 } | |
2588 #endif | |
2589 | |
2590 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2591 term_fg_color(int n) |
7 | 2592 { |
2593 /* Use "AF" termcap entry if present, "Sf" entry otherwise */ | |
2594 if (*T_CAF) | |
2595 term_color(T_CAF, n); | |
2596 else if (*T_CSF) | |
2597 term_color(T_CSF, n); | |
2598 } | |
2599 | |
2600 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2601 term_bg_color(int n) |
7 | 2602 { |
2603 /* Use "AB" termcap entry if present, "Sb" entry otherwise */ | |
2604 if (*T_CAB) | |
2605 term_color(T_CAB, n); | |
2606 else if (*T_CSB) | |
2607 term_color(T_CSB, n); | |
2608 } | |
2609 | |
2610 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2611 term_color(char_u *s, int n) |
7 | 2612 { |
2613 char buf[20]; | |
2614 int i = 2; /* index in s[] just after <Esc>[ or CSI */ | |
2615 | |
2616 /* Special handling of 16 colors, because termcap can't handle it */ | |
2617 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */ | |
2618 /* Also accept CSI instead of <Esc>[ */ | |
2619 if (n >= 8 && t_colors >= 16 | |
2620 && ((s[0] == ESC && s[1] == '[') || (s[0] == CSI && (i = 1) == 1)) | |
2621 && s[i] != NUL | |
2622 && (STRCMP(s + i + 1, "%p1%dm") == 0 | |
2623 || STRCMP(s + i + 1, "%dm") == 0) | |
2624 && (s[i] == '3' || s[i] == '4')) | |
2625 { | |
2626 #ifdef TERMINFO | |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
2627 char *format = "%s%s%%p1%%dm"; |
7 | 2628 #else |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
2629 char *format = "%s%s%%dm"; |
7 | 2630 #endif |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
2631 sprintf(buf, format, |
7 | 2632 i == 2 ? IF_EB("\033[", ESC_STR "[") : "\233", |
2633 s[i] == '3' ? (n >= 16 ? "38;5;" : "9") | |
2634 : (n >= 16 ? "48;5;" : "10")); | |
2635 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8)); | |
2636 } | |
2637 else | |
2638 OUT_STR(tgoto((char *)s, 0, n)); | |
2639 } | |
2640 | |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
2641 #if defined(FEAT_TERMGUICOLORS) || defined(PROTO) |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2642 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2643 #define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2644 #define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2645 #define BLUE(rgb) (((long_u)(rgb) ) & 0xFF) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2646 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2647 static void |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2648 term_rgb_color(char_u *s, guicolor_T rgb) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2649 { |
8975
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2650 #define MAX_COLOR_STR_LEN 100 |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2651 char buf[MAX_COLOR_STR_LEN]; |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2652 |
8981
3b51b0aeb9a3
commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
2653 vim_snprintf(buf, MAX_COLOR_STR_LEN, |
8975
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2654 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb)); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2655 OUT_STR(buf); |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2656 } |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2657 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2658 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2659 term_fg_rgb_color(guicolor_T rgb) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2660 { |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2661 term_rgb_color(T_8F, rgb); |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2662 } |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2663 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2664 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2665 term_bg_rgb_color(guicolor_T rgb) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2666 { |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2667 term_rgb_color(T_8B, rgb); |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2668 } |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2669 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2670 |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2671 #if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \ |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2672 || defined(MACOS_X))) || defined(PROTO) |
7 | 2673 /* |
2674 * Generic function to set window title, using t_ts and t_fs. | |
2675 */ | |
2676 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2677 term_settitle(char_u *title) |
7 | 2678 { |
2679 /* t_ts takes one argument: column in status line */ | |
2680 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */ | |
2681 out_str_nf(title); | |
2682 out_str(T_FS); /* set title end */ | |
2683 out_flush(); | |
2684 } | |
2685 #endif | |
2686 | |
2687 /* | |
2688 * Make sure we have a valid set or terminal options. | |
2689 * Replace all entries that are NULL by empty_option | |
2690 */ | |
2691 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2692 ttest(int pairs) |
7 | 2693 { |
2694 check_options(); /* make sure no options are NULL */ | |
2695 | |
2696 /* | |
2697 * MUST have "cm": cursor motion. | |
2698 */ | |
2699 if (*T_CM == NUL) | |
2700 EMSG(_("E437: terminal capability \"cm\" required")); | |
2701 | |
2702 /* | |
2703 * if "cs" defined, use a scroll region, it's faster. | |
2704 */ | |
2705 if (*T_CS != NUL) | |
2706 scroll_region = TRUE; | |
2707 else | |
2708 scroll_region = FALSE; | |
2709 | |
2710 if (pairs) | |
2711 { | |
2712 /* | |
2713 * optional pairs | |
2714 */ | |
2715 /* TP goes to normal mode for TI (invert) and TB (bold) */ | |
2716 if (*T_ME == NUL) | |
2717 T_ME = T_MR = T_MD = T_MB = empty_option; | |
2718 if (*T_SO == NUL || *T_SE == NUL) | |
2719 T_SO = T_SE = empty_option; | |
2720 if (*T_US == NUL || *T_UE == NUL) | |
2721 T_US = T_UE = empty_option; | |
2722 if (*T_CZH == NUL || *T_CZR == NUL) | |
2723 T_CZH = T_CZR = empty_option; | |
2724 | |
2725 /* T_VE is needed even though T_VI is not defined */ | |
2726 if (*T_VE == NUL) | |
2727 T_VI = empty_option; | |
2728 | |
2729 /* if 'mr' or 'me' is not defined use 'so' and 'se' */ | |
2730 if (*T_ME == NUL) | |
2731 { | |
2732 T_ME = T_SE; | |
2733 T_MR = T_SO; | |
2734 T_MD = T_SO; | |
2735 } | |
2736 | |
2737 /* if 'so' or 'se' is not defined use 'mr' and 'me' */ | |
2738 if (*T_SO == NUL) | |
2739 { | |
2740 T_SE = T_ME; | |
2741 if (*T_MR == NUL) | |
2742 T_SO = T_MD; | |
2743 else | |
2744 T_SO = T_MR; | |
2745 } | |
2746 | |
2747 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */ | |
2748 if (*T_CZH == NUL) | |
2749 { | |
2750 T_CZR = T_ME; | |
2751 if (*T_MR == NUL) | |
2752 T_CZH = T_MD; | |
2753 else | |
2754 T_CZH = T_MR; | |
2755 } | |
2756 | |
2757 /* "Sb" and "Sf" come in pairs */ | |
2758 if (*T_CSB == NUL || *T_CSF == NUL) | |
2759 { | |
2760 T_CSB = empty_option; | |
2761 T_CSF = empty_option; | |
2762 } | |
2763 | |
2764 /* "AB" and "AF" come in pairs */ | |
2765 if (*T_CAB == NUL || *T_CAF == NUL) | |
2766 { | |
2767 T_CAB = empty_option; | |
2768 T_CAF = empty_option; | |
2769 } | |
2770 | |
2771 /* if 'Sb' and 'AB' are not defined, reset "Co" */ | |
2772 if (*T_CSB == NUL && *T_CAB == NUL) | |
1941 | 2773 free_one_termoption(T_CCO); |
7 | 2774 |
2775 /* Set 'weirdinvert' according to value of 't_xs' */ | |
2776 p_wiv = (*T_XS != NUL); | |
2777 } | |
2778 need_gather = TRUE; | |
2779 | |
2780 /* Set t_colors to the value of t_Co. */ | |
2781 t_colors = atoi((char *)T_CCO); | |
2782 } | |
2783 | |
2784 #if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \ | |
2785 || defined(PROTO) | |
2786 /* | |
2787 * Represent the given long_u as individual bytes, with the most significant | |
2788 * byte first, and store them in dst. | |
2789 */ | |
2790 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2791 add_long_to_buf(long_u val, char_u *dst) |
7 | 2792 { |
2793 int i; | |
2794 int shift; | |
2795 | |
1883 | 2796 for (i = 1; i <= (int)sizeof(long_u); i++) |
7 | 2797 { |
2798 shift = 8 * (sizeof(long_u) - i); | |
2799 dst[i - 1] = (char_u) ((val >> shift) & 0xff); | |
2800 } | |
2801 } | |
2802 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2803 static int get_long_from_buf(char_u *buf, long_u *val); |
7 | 2804 |
2805 /* | |
2806 * Interpret the next string of bytes in buf as a long integer, with the most | |
2807 * significant byte first. Note that it is assumed that buf has been through | |
2808 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each. | |
2809 * Puts result in val, and returns the number of bytes read from buf | |
2810 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes | |
2811 * were present. | |
2812 */ | |
2813 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2814 get_long_from_buf(char_u *buf, long_u *val) |
7 | 2815 { |
2816 int len; | |
2817 char_u bytes[sizeof(long_u)]; | |
2818 int i; | |
2819 int shift; | |
2820 | |
2821 *val = 0; | |
2822 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u)); | |
2823 if (len != -1) | |
2824 { | |
1883 | 2825 for (i = 0; i < (int)sizeof(long_u); i++) |
7 | 2826 { |
2827 shift = 8 * (sizeof(long_u) - 1 - i); | |
2828 *val += (long_u)bytes[i] << shift; | |
2829 } | |
2830 } | |
2831 return len; | |
2832 } | |
2833 #endif | |
2834 | |
2835 #if defined(FEAT_GUI) \ | |
1623 | 2836 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \ |
2837 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE))) | |
7 | 2838 /* |
2839 * Read the next num_bytes bytes from buf, and store them in bytes. Assume | |
2840 * that buf has been through inchar(). Returns the actual number of bytes used | |
2841 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were | |
2842 * available. | |
2843 */ | |
2844 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2845 get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes) |
7 | 2846 { |
2847 int len = 0; | |
2848 int i; | |
2849 char_u c; | |
2850 | |
2851 for (i = 0; i < num_bytes; i++) | |
2852 { | |
2853 if ((c = buf[len++]) == NUL) | |
2854 return -1; | |
2855 if (c == K_SPECIAL) | |
2856 { | |
2857 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */ | |
2858 return -1; | |
2859 if (buf[len++] == (int)KS_ZERO) | |
2860 c = NUL; | |
5076
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
2861 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is |
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
2862 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */ |
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
2863 if (buf[len++] == (int)KE_CSI) |
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
2864 c = CSI; |
7 | 2865 } |
1160 | 2866 else if (c == CSI && buf[len] == KS_EXTRA |
2867 && buf[len + 1] == (int)KE_CSI) | |
667 | 2868 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with |
2869 * the start of a special key, see add_to_input_buf_csi(). */ | |
2870 len += 2; | |
7 | 2871 bytes[i] = c; |
2872 } | |
2873 return len; | |
2874 } | |
2875 #endif | |
2876 | |
2877 /* | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2878 * Check if the new shell size is valid, correct it if it's too small or way |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2879 * too big. |
7 | 2880 */ |
2881 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2882 check_shellsize(void) |
7 | 2883 { |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2884 if (Rows < min_rows()) /* need room for one window and command line */ |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2885 Rows = min_rows(); |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2886 limit_screen_size(); |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2887 } |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2888 |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2889 /* |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2890 * Limit Rows and Columns to avoid an overflow in Rows * Columns. |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2891 */ |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2892 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2893 limit_screen_size(void) |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2894 { |
7 | 2895 if (Columns < MIN_COLUMNS) |
2896 Columns = MIN_COLUMNS; | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2897 else if (Columns > 10000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2898 Columns = 10000; |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2899 if (Rows > 1000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
2900 Rows = 1000; |
7 | 2901 } |
2902 | |
41 | 2903 /* |
2904 * Invoked just before the screen structures are going to be (re)allocated. | |
2905 */ | |
7 | 2906 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2907 win_new_shellsize(void) |
7 | 2908 { |
2909 static int old_Rows = 0; | |
2910 static int old_Columns = 0; | |
2911 | |
2912 if (old_Rows != Rows || old_Columns != Columns) | |
2913 ui_new_shellsize(); | |
2914 if (old_Rows != Rows) | |
2915 { | |
164 | 2916 /* if 'window' uses the whole screen, keep it using that */ |
179 | 2917 if (p_window == old_Rows - 1 || old_Rows == 0) |
164 | 2918 p_window = Rows - 1; |
7 | 2919 old_Rows = Rows; |
2920 shell_new_rows(); /* update window sizes */ | |
2921 } | |
2922 if (old_Columns != Columns) | |
2923 { | |
2924 old_Columns = Columns; | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
2925 #ifdef FEAT_WINDOWS |
7 | 2926 shell_new_columns(); /* update window sizes */ |
2927 #endif | |
2928 } | |
2929 } | |
2930 | |
2931 /* | |
2932 * Call this function when the Vim shell has been resized in any way. | |
2933 * Will obtain the current size and redraw (also when size didn't change). | |
2934 */ | |
2935 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2936 shell_resized(void) |
7 | 2937 { |
2938 set_shellsize(0, 0, FALSE); | |
2939 } | |
2940 | |
2941 /* | |
2942 * Check if the shell size changed. Handle a resize. | |
2943 * When the size didn't change, nothing happens. | |
2944 */ | |
2945 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2946 shell_resized_check(void) |
7 | 2947 { |
2948 int old_Rows = Rows; | |
2949 int old_Columns = Columns; | |
2950 | |
3770 | 2951 if (!exiting |
2952 #ifdef FEAT_GUI | |
2953 /* Do not get the size when executing a shell command during | |
2954 * startup. */ | |
2955 && !gui.starting | |
2956 #endif | |
2957 ) | |
2673 | 2958 { |
2959 (void)ui_get_shellsize(); | |
2960 check_shellsize(); | |
2961 if (old_Rows != Rows || old_Columns != Columns) | |
2962 shell_resized(); | |
2963 } | |
7 | 2964 } |
2965 | |
2966 /* | |
2967 * Set size of the Vim shell. | |
2968 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real | |
2969 * window size (this is used for the :win command). | |
2970 * If 'mustset' is FALSE, we may try to get the real window size and if | |
2971 * it fails use 'width' and 'height'. | |
2972 */ | |
2973 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2974 set_shellsize(int width, int height, int mustset) |
7 | 2975 { |
2976 static int busy = FALSE; | |
2977 | |
2978 /* | |
2979 * Avoid recursiveness, can happen when setting the window size causes | |
2980 * another window-changed signal. | |
2981 */ | |
2982 if (busy) | |
2983 return; | |
2984 | |
2985 if (width < 0 || height < 0) /* just checking... */ | |
2986 return; | |
2987 | |
3068 | 2988 if (State == HITRETURN || State == SETWSIZE) |
7 | 2989 { |
3068 | 2990 /* postpone the resizing */ |
7 | 2991 State = SETWSIZE; |
2992 return; | |
2993 } | |
2994 | |
3068 | 2995 /* curwin->w_buffer can be NULL when we are closing a window and the |
2996 * buffer has already been closed and removing a scrollbar causes a resize | |
2997 * event. Don't resize then, it will happen after entering another buffer. | |
2998 */ | |
2999 if (curwin->w_buffer == NULL) | |
3000 return; | |
3001 | |
7 | 3002 ++busy; |
3003 | |
3004 #ifdef AMIGA | |
3005 out_flush(); /* must do this before mch_get_shellsize() for | |
3006 some obscure reason */ | |
3007 #endif | |
3008 | |
3009 if (mustset || (ui_get_shellsize() == FAIL && height != 0)) | |
3010 { | |
3011 Rows = height; | |
3012 Columns = width; | |
3013 check_shellsize(); | |
3014 ui_set_shellsize(mustset); | |
3015 } | |
3016 else | |
3017 check_shellsize(); | |
3018 | |
3019 /* The window layout used to be adjusted here, but it now happens in | |
3020 * screenalloc() (also invoked from screenclear()). That is because the | |
3021 * "busy" check above may skip this, but not screenalloc(). */ | |
3022 | |
3023 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM) | |
3024 screenclear(); | |
3025 else | |
3026 screen_start(); /* don't know where cursor is now */ | |
3027 | |
3028 if (starting != NO_SCREEN) | |
3029 { | |
3030 #ifdef FEAT_TITLE | |
3031 maketitle(); | |
3032 #endif | |
3033 changed_line_abv_curs(); | |
3034 invalidate_botline(); | |
3035 | |
3036 /* | |
3037 * We only redraw when it's needed: | |
3038 * - While at the more prompt or executing an external command, don't | |
3039 * redraw, but position the cursor. | |
3040 * - While editing the command line, only redraw that. | |
3041 * - in Ex mode, don't redraw anything. | |
3042 * - Otherwise, redraw right now, and position the cursor. | |
3043 * Always need to call update_screen() or screenalloc(), to make | |
3044 * sure Rows/Columns and the size of ScreenLines[] is correct! | |
3045 */ | |
3046 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM | |
3047 || exmode_active) | |
3048 { | |
3049 screenalloc(FALSE); | |
3050 repeat_message(); | |
3051 } | |
3052 else | |
3053 { | |
1024 | 3054 #ifdef FEAT_SCROLLBIND |
3055 if (curwin->w_p_scb) | |
3056 do_check_scrollbind(TRUE); | |
3057 #endif | |
3058 if (State & CMDLINE) | |
648 | 3059 { |
1024 | 3060 update_screen(NOT_VALID); |
3061 redrawcmdline(); | |
648 | 3062 } |
3063 else | |
1024 | 3064 { |
3065 update_topline(); | |
3066 #if defined(FEAT_INS_EXPAND) | |
3067 if (pum_visible()) | |
3068 { | |
3069 redraw_later(NOT_VALID); | |
3070 ins_compl_show_pum(); /* This includes the redraw. */ | |
3071 } | |
3072 else | |
648 | 3073 #endif |
1024 | 3074 update_screen(NOT_VALID); |
3075 if (redrawing()) | |
3076 setcursor(); | |
3077 } | |
7 | 3078 } |
3079 cursor_on(); /* redrawing may have switched it off */ | |
3080 } | |
3081 out_flush(); | |
3082 --busy; | |
3083 } | |
3084 | |
3085 /* | |
3086 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external | |
3087 * commands and Ex mode). | |
3088 */ | |
3089 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3090 settmode(int tmode) |
7 | 3091 { |
3092 #ifdef FEAT_GUI | |
3093 /* don't set the term where gvim was started to any mode */ | |
3094 if (gui.in_use) | |
3095 return; | |
3096 #endif | |
3097 | |
3098 if (full_screen) | |
3099 { | |
3100 /* | |
3101 * When returning after calling a shell we want to really set the | |
3102 * terminal to raw mode, even though we think it already is, because | |
3103 * the shell program may have reset the terminal mode. | |
3104 * When we think the terminal is normal, don't try to set it to | |
3105 * normal again, because that causes problems (logout!) on some | |
3106 * machines. | |
3107 */ | |
3108 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK) | |
3109 { | |
3110 #ifdef FEAT_TERMRESPONSE | |
1691 | 3111 # ifdef FEAT_GUI |
3112 if (!gui.in_use && !gui.starting) | |
3113 # endif | |
3114 { | |
3115 /* May need to check for T_CRV response and termcodes, it | |
3116 * doesn't work in Cooked mode, an external program may get | |
3117 * them. */ | |
4215 | 3118 if (tmode != TMODE_RAW && (crv_status == CRV_SENT |
6874 | 3119 || u7_status == U7_SENT |
3120 || rbg_status == RBG_SENT)) | |
1691 | 3121 (void)vpeekc_nomap(); |
3122 check_for_codes_from_term(); | |
3123 } | |
7 | 3124 #endif |
3125 #ifdef FEAT_MOUSE_TTY | |
3126 if (tmode != TMODE_RAW) | |
3127 mch_setmouse(FALSE); /* switch mouse off */ | |
3128 #endif | |
3129 out_flush(); | |
3130 mch_settmode(tmode); /* machine specific function */ | |
3131 cur_tmode = tmode; | |
3132 #ifdef FEAT_MOUSE | |
3133 if (tmode == TMODE_RAW) | |
3134 setmouse(); /* may switch mouse on */ | |
3135 #endif | |
3136 out_flush(); | |
3137 } | |
3138 #ifdef FEAT_TERMRESPONSE | |
3139 may_req_termresponse(); | |
3140 #endif | |
3141 } | |
3142 } | |
3143 | |
3144 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3145 starttermcap(void) |
7 | 3146 { |
3147 if (full_screen && !termcap_active) | |
3148 { | |
3149 out_str(T_TI); /* start termcap mode */ | |
3150 out_str(T_KS); /* start "keypad transmit" mode */ | |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
3151 out_str(T_BE); /* enable bracketed paste mode */ |
7 | 3152 out_flush(); |
3153 termcap_active = TRUE; | |
3154 screen_start(); /* don't know where cursor is now */ | |
3155 #ifdef FEAT_TERMRESPONSE | |
1691 | 3156 # ifdef FEAT_GUI |
3157 if (!gui.in_use && !gui.starting) | |
3158 # endif | |
3159 { | |
3160 may_req_termresponse(); | |
3161 /* Immediately check for a response. If t_Co changes, we don't | |
3162 * want to redraw with wrong colors first. */ | |
5927 | 3163 if (crv_status == CRV_SENT) |
1691 | 3164 check_for_codes_from_term(); |
3165 } | |
7 | 3166 #endif |
3167 } | |
3168 } | |
3169 | |
3170 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3171 stoptermcap(void) |
7 | 3172 { |
3173 screen_stop_highlight(); | |
3174 reset_cterm_colors(); | |
3175 if (termcap_active) | |
3176 { | |
3177 #ifdef FEAT_TERMRESPONSE | |
1691 | 3178 # ifdef FEAT_GUI |
3179 if (!gui.in_use && !gui.starting) | |
3180 # endif | |
3181 { | |
6874 | 3182 /* May need to discard T_CRV, T_U7 or T_RBG response. */ |
3183 if (crv_status == CRV_SENT || u7_status == U7_SENT | |
3184 || rbg_status == RBG_SENT) | |
4391 | 3185 { |
3186 # ifdef UNIX | |
3187 /* Give the terminal a chance to respond. */ | |
3188 mch_delay(100L, FALSE); | |
3189 # endif | |
3190 # ifdef TCIFLUSH | |
3191 /* Discard data received but not read. */ | |
3192 if (exiting) | |
3193 tcflush(fileno(stdin), TCIFLUSH); | |
3194 # endif | |
3195 } | |
1691 | 3196 /* Check for termcodes first, otherwise an external program may |
3197 * get them. */ | |
3198 check_for_codes_from_term(); | |
3199 } | |
7 | 3200 #endif |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
3201 out_str(T_BD); /* disable bracketed paste mode */ |
7 | 3202 out_str(T_KE); /* stop "keypad transmit" mode */ |
3203 out_flush(); | |
3204 termcap_active = FALSE; | |
3205 cursor_on(); /* just in case it is still off */ | |
3206 out_str(T_TE); /* stop termcap mode */ | |
3207 screen_start(); /* don't know where cursor is now */ | |
3208 out_flush(); | |
3209 } | |
3210 } | |
3211 | |
5932 | 3212 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) |
7 | 3213 /* |
3214 * Request version string (for xterm) when needed. | |
3215 * Only do this after switching to raw mode, otherwise the result will be | |
3216 * echoed. | |
626 | 3217 * Only do this after startup has finished, to avoid that the response comes |
1221 | 3218 * while executing "-c !cmd" or even after "-c quit". |
7 | 3219 * Only do this after termcap mode has been started, otherwise the codes for |
3220 * the cursor keys may be wrong. | |
620 | 3221 * Only do this when 'esckeys' is on, otherwise the response causes trouble in |
3222 * Insert mode. | |
164 | 3223 * On Unix only do it when both output and input are a tty (avoid writing |
3224 * request to terminal while reading from a file). | |
7 | 3225 * The result is caught in check_termcode(). |
3226 */ | |
626 | 3227 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3228 may_req_termresponse(void) |
7 | 3229 { |
3230 if (crv_status == CRV_GET | |
3231 && cur_tmode == TMODE_RAW | |
626 | 3232 && starting == 0 |
7 | 3233 && termcap_active |
620 | 3234 && p_ek |
626 | 3235 # ifdef UNIX |
7 | 3236 && isatty(1) |
164 | 3237 && isatty(read_cmd_fd) |
626 | 3238 # endif |
7 | 3239 && *T_CRV != NUL) |
3240 { | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3241 LOG_TR("Sending CRV"); |
7 | 3242 out_str(T_CRV); |
3243 crv_status = CRV_SENT; | |
3244 /* check for the characters now, otherwise they might be eaten by | |
3245 * get_keystroke() */ | |
3246 out_flush(); | |
3247 (void)vpeekc_nomap(); | |
3248 } | |
3249 } | |
4215 | 3250 |
3251 # if defined(FEAT_MBYTE) || defined(PROTO) | |
3252 /* | |
3253 * Check how the terminal treats ambiguous character width (UAX #11). | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3254 * First, we move the cursor to (1, 0) and print a test ambiguous character |
4215 | 3255 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position. |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3256 * If the terminal treats \u25bd as single width, the position is (1, 1), |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3257 * or if it is treated as double width, that will be (1, 2). |
4215 | 3258 * This function has the side effect that changes cursor position, so |
3259 * it must be called immediately after entering termcap mode. | |
3260 */ | |
3261 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3262 may_req_ambiguous_char_width(void) |
4215 | 3263 { |
3264 if (u7_status == U7_GET | |
3265 && cur_tmode == TMODE_RAW | |
3266 && termcap_active | |
3267 && p_ek | |
3268 # ifdef UNIX | |
3269 && isatty(1) | |
3270 && isatty(read_cmd_fd) | |
3271 # endif | |
3272 && *T_U7 != NUL | |
3273 && !option_was_set((char_u *)"ambiwidth")) | |
3274 { | |
3275 char_u buf[16]; | |
3276 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3277 LOG_TR("Sending U7 request"); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3278 /* Do this in the second row. In the first row the returned sequence |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3279 * may be CSI 1;2R, which is the same as <S-F3>. */ |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3280 term_windgoto(1, 0); |
4215 | 3281 buf[mb_char2bytes(0x25bd, buf)] = 0; |
3282 out_str(buf); | |
3283 out_str(T_U7); | |
3284 u7_status = U7_SENT; | |
5724 | 3285 out_flush(); |
3286 term_windgoto(1, 0); | |
4215 | 3287 out_str((char_u *)" "); |
3288 term_windgoto(0, 0); | |
3289 /* check for the characters now, otherwise they might be eaten by | |
3290 * get_keystroke() */ | |
3291 out_flush(); | |
3292 (void)vpeekc_nomap(); | |
3293 } | |
3294 } | |
3295 # endif | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3296 |
6874 | 3297 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) |
3298 /* | |
6885 | 3299 * Similar to requesting the version string: Request the terminal background |
3300 * color when it is the right moment. | |
6874 | 3301 */ |
3302 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3303 may_req_bg_color(void) |
6874 | 3304 { |
3305 if (rbg_status == RBG_GET | |
3306 && cur_tmode == TMODE_RAW | |
3307 && termcap_active | |
3308 && p_ek | |
3309 # ifdef UNIX | |
3310 && isatty(1) | |
3311 && isatty(read_cmd_fd) | |
3312 # endif | |
3313 && *T_RBG != NUL | |
3314 && !option_was_set((char_u *)"bg")) | |
3315 { | |
3316 LOG_TR("Sending BG request"); | |
3317 out_str(T_RBG); | |
3318 rbg_status = RBG_SENT; | |
3319 /* check for the characters now, otherwise they might be eaten by | |
3320 * get_keystroke() */ | |
3321 out_flush(); | |
3322 (void)vpeekc_nomap(); | |
3323 } | |
3324 } | |
3325 # endif | |
3326 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3327 # ifdef DEBUG_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3328 static void |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3329 log_tr(char *msg) |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3330 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3331 static FILE *fd_tr = NULL; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3332 static proftime_T start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3333 proftime_T now; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3334 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3335 if (fd_tr == NULL) |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3336 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3337 fd_tr = fopen("termresponse.log", "w"); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3338 profile_start(&start); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3339 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3340 now = start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3341 profile_end(&now); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3342 fprintf(fd_tr, "%s: %s %s\n", |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3343 profile_msg(&now), |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3344 must_redraw == NOT_VALID ? "NV" |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3345 : must_redraw == CLEAR ? "CL" : " ", |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3346 msg); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3347 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3348 # endif |
7 | 3349 #endif |
3350 | |
3351 /* | |
3352 * Return TRUE when saving and restoring the screen. | |
3353 */ | |
3354 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3355 swapping_screen(void) |
7 | 3356 { |
3357 return (full_screen && *T_TI != NUL); | |
3358 } | |
3359 | |
3360 #ifdef FEAT_MOUSE | |
3361 /* | |
3362 * setmouse() - switch mouse on/off depending on current mode and 'mouse' | |
3363 */ | |
3364 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3365 setmouse(void) |
7 | 3366 { |
3367 # ifdef FEAT_MOUSE_TTY | |
3368 int checkfor; | |
3369 # endif | |
3370 | |
3371 # ifdef FEAT_MOUSESHAPE | |
3372 update_mouseshape(-1); | |
3373 # endif | |
3374 | |
3375 # ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */ | |
3376 # ifdef FEAT_GUI | |
3377 /* In the GUI the mouse is always enabled. */ | |
3378 if (gui.in_use) | |
3379 return; | |
3380 # endif | |
3381 /* be quick when mouse is off */ | |
3382 if (*p_mouse == NUL || has_mouse_termcode == 0) | |
3383 return; | |
3384 | |
3385 /* don't switch mouse on when not in raw mode (Ex mode) */ | |
3386 if (cur_tmode != TMODE_RAW) | |
3387 { | |
3388 mch_setmouse(FALSE); | |
3389 return; | |
3390 } | |
3391 | |
3392 if (VIsual_active) | |
3393 checkfor = MOUSE_VISUAL; | |
5735 | 3394 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE) |
7 | 3395 checkfor = MOUSE_RETURN; |
3396 else if (State & INSERT) | |
3397 checkfor = MOUSE_INSERT; | |
3398 else if (State & CMDLINE) | |
3399 checkfor = MOUSE_COMMAND; | |
3400 else if (State == CONFIRM || State == EXTERNCMD) | |
3401 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */ | |
3402 else | |
3403 checkfor = MOUSE_NORMAL; /* assume normal mode */ | |
3404 | |
3405 if (mouse_has(checkfor)) | |
3406 mch_setmouse(TRUE); | |
3407 else | |
3408 mch_setmouse(FALSE); | |
3409 # endif | |
3410 } | |
3411 | |
3412 /* | |
3413 * Return TRUE if | |
3414 * - "c" is in 'mouse', or | |
3415 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or | |
3416 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a | |
3417 * normal editing mode (not at hit-return message). | |
3418 */ | |
3419 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3420 mouse_has(int c) |
7 | 3421 { |
3422 char_u *p; | |
3423 | |
3424 for (p = p_mouse; *p; ++p) | |
3425 switch (*p) | |
3426 { | |
3427 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL) | |
3428 return TRUE; | |
3429 break; | |
3430 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help) | |
3431 return TRUE; | |
3432 break; | |
3433 default: if (c == *p) return TRUE; break; | |
3434 } | |
3435 return FALSE; | |
3436 } | |
3437 | |
3438 /* | |
3439 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos". | |
3440 */ | |
3441 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3442 mouse_model_popup(void) |
7 | 3443 { |
3444 return (p_mousem[0] == 'p'); | |
3445 } | |
3446 #endif | |
3447 | |
3448 /* | |
3449 * By outputting the 'cursor very visible' termcap code, for some windowed | |
3450 * terminals this makes the screen scrolled to the correct position. | |
3451 * Used when starting Vim or returning from a shell. | |
3452 */ | |
3453 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3454 scroll_start(void) |
7 | 3455 { |
3456 if (*T_VS != NUL) | |
3457 { | |
3458 out_str(T_VS); | |
3459 out_str(T_VE); | |
3460 screen_start(); /* don't know where cursor is now */ | |
3461 } | |
3462 } | |
3463 | |
3464 static int cursor_is_off = FALSE; | |
3465 | |
3466 /* | |
3467 * Enable the cursor. | |
3468 */ | |
3469 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3470 cursor_on(void) |
7 | 3471 { |
3472 if (cursor_is_off) | |
3473 { | |
3474 out_str(T_VE); | |
3475 cursor_is_off = FALSE; | |
3476 } | |
3477 } | |
3478 | |
3479 /* | |
3480 * Disable the cursor. | |
3481 */ | |
3482 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3483 cursor_off(void) |
7 | 3484 { |
3485 if (full_screen) | |
3486 { | |
3487 if (!cursor_is_off) | |
3488 out_str(T_VI); /* disable cursor */ | |
3489 cursor_is_off = TRUE; | |
3490 } | |
3491 } | |
3492 | |
39 | 3493 #if defined(CURSOR_SHAPE) || defined(PROTO) |
7 | 3494 /* |
6727 | 3495 * Set cursor shape to match Insert or Replace mode. |
36 | 3496 */ |
3497 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3498 term_cursor_shape(void) |
36 | 3499 { |
6727 | 3500 static int showing_mode = NORMAL; |
3501 char_u *p; | |
3502 | |
3503 /* Only do something when redrawing the screen and we can restore the | |
3504 * mode. */ | |
3505 if (!full_screen || *T_CEI == NUL) | |
36 | 3506 return; |
3507 | |
6727 | 3508 if ((State & REPLACE) == REPLACE) |
36 | 3509 { |
6727 | 3510 if (showing_mode != REPLACE) |
3511 { | |
3512 if (*T_CSR != NUL) | |
3513 p = T_CSR; /* Replace mode cursor */ | |
3514 else | |
3515 p = T_CSI; /* fall back to Insert mode cursor */ | |
3516 if (*p != NUL) | |
3517 { | |
3518 out_str(p); | |
3519 showing_mode = REPLACE; | |
3520 } | |
3521 } | |
36 | 3522 } |
6727 | 3523 else if (State & INSERT) |
36 | 3524 { |
6727 | 3525 if (showing_mode != INSERT && *T_CSI != NUL) |
3526 { | |
3527 out_str(T_CSI); /* Insert mode cursor */ | |
3528 showing_mode = INSERT; | |
3529 } | |
3530 } | |
3531 else if (showing_mode != NORMAL) | |
3532 { | |
3533 out_str(T_CEI); /* non-Insert mode cursor */ | |
3534 showing_mode = NORMAL; | |
36 | 3535 } |
3536 } | |
39 | 3537 #endif |
36 | 3538 |
3539 /* | |
7 | 3540 * Set scrolling region for window 'wp'. |
3541 * The region starts 'off' lines from the start of the window. | |
3542 * Also set the vertical scroll region for a vertically split window. Always | |
3543 * the full width of the window, excluding the vertical separator. | |
3544 */ | |
3545 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3546 scroll_region_set(win_T *wp, int off) |
7 | 3547 { |
3548 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1, | |
3549 W_WINROW(wp) + off)); | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
3550 #ifdef FEAT_WINDOWS |
7 | 3551 if (*T_CSV != NUL && wp->w_width != Columns) |
3552 OUT_STR(tgoto((char *)T_CSV, W_WINCOL(wp) + wp->w_width - 1, | |
3553 W_WINCOL(wp))); | |
3554 #endif | |
3555 screen_start(); /* don't know where cursor is now */ | |
3556 } | |
3557 | |
3558 /* | |
3559 * Reset scrolling region to the whole screen. | |
3560 */ | |
3561 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3562 scroll_region_reset(void) |
7 | 3563 { |
3564 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0)); | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
3565 #ifdef FEAT_WINDOWS |
7 | 3566 if (*T_CSV != NUL) |
3567 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0)); | |
3568 #endif | |
3569 screen_start(); /* don't know where cursor is now */ | |
3570 } | |
3571 | |
3572 | |
3573 /* | |
3574 * List of terminal codes that are currently recognized. | |
3575 */ | |
3576 | |
298 | 3577 static struct termcode |
7 | 3578 { |
3579 char_u name[2]; /* termcap name of entry */ | |
3580 char_u *code; /* terminal code (in allocated memory) */ | |
3581 int len; /* STRLEN(code) */ | |
179 | 3582 int modlen; /* length of part before ";*~". */ |
7 | 3583 } *termcodes = NULL; |
3584 | |
3585 static int tc_max_len = 0; /* number of entries that termcodes[] can hold */ | |
3586 static int tc_len = 0; /* current number of entries in termcodes[] */ | |
3587 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
3588 static int termcode_star(char_u *code, int len); |
180 | 3589 |
7 | 3590 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3591 clear_termcodes(void) |
7 | 3592 { |
3593 while (tc_len > 0) | |
3594 vim_free(termcodes[--tc_len].code); | |
3595 vim_free(termcodes); | |
3596 termcodes = NULL; | |
3597 tc_max_len = 0; | |
3598 | |
3599 #ifdef HAVE_TGETENT | |
3600 BC = (char *)empty_option; | |
3601 UP = (char *)empty_option; | |
3602 PC = NUL; /* set pad character to NUL */ | |
3603 ospeed = 0; | |
3604 #endif | |
3605 | |
3606 need_gather = TRUE; /* need to fill termleader[] */ | |
3607 } | |
3608 | |
180 | 3609 #define ATC_FROM_TERM 55 |
3610 | |
7 | 3611 /* |
3612 * Add a new entry to the list of terminal codes. | |
3613 * The list is kept alphabetical for ":set termcap" | |
180 | 3614 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired. |
3615 * "flags" can also be ATC_FROM_TERM for got_code_from_term(). | |
7 | 3616 */ |
3617 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3618 add_termcode(char_u *name, char_u *string, int flags) |
7 | 3619 { |
3620 struct termcode *new_tc; | |
3621 int i, j; | |
3622 char_u *s; | |
179 | 3623 int len; |
7 | 3624 |
3625 if (string == NULL || *string == NUL) | |
3626 { | |
3627 del_termcode(name); | |
3628 return; | |
3629 } | |
3630 | |
6047 | 3631 #if defined(WIN3264) && !defined(FEAT_GUI) |
3632 s = vim_strnsave(string, (int)STRLEN(string) + 1); | |
3633 #else | |
7 | 3634 s = vim_strsave(string); |
6047 | 3635 #endif |
7 | 3636 if (s == NULL) |
3637 return; | |
3638 | |
3639 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */ | |
180 | 3640 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0) |
7 | 3641 { |
1623 | 3642 STRMOVE(s, s + 1); |
7 | 3643 s[0] = term_7to8bit(string); |
3644 } | |
6047 | 3645 |
3646 #if defined(WIN3264) && !defined(FEAT_GUI) | |
3647 if (s[0] == K_NUL) | |
3648 { | |
6102 | 3649 STRMOVE(s + 1, s); |
3650 s[1] = 3; | |
6047 | 3651 } |
3652 #endif | |
3653 | |
179 | 3654 len = (int)STRLEN(s); |
7 | 3655 |
3656 need_gather = TRUE; /* need to fill termleader[] */ | |
3657 | |
3658 /* | |
3659 * need to make space for more entries | |
3660 */ | |
3661 if (tc_len == tc_max_len) | |
3662 { | |
3663 tc_max_len += 20; | |
3664 new_tc = (struct termcode *)alloc( | |
3665 (unsigned)(tc_max_len * sizeof(struct termcode))); | |
3666 if (new_tc == NULL) | |
3667 { | |
3668 tc_max_len -= 20; | |
3669 return; | |
3670 } | |
3671 for (i = 0; i < tc_len; ++i) | |
3672 new_tc[i] = termcodes[i]; | |
3673 vim_free(termcodes); | |
3674 termcodes = new_tc; | |
3675 } | |
3676 | |
3677 /* | |
3678 * Look for existing entry with the same name, it is replaced. | |
3679 * Look for an existing entry that is alphabetical higher, the new entry | |
3680 * is inserted in front of it. | |
3681 */ | |
3682 for (i = 0; i < tc_len; ++i) | |
3683 { | |
3684 if (termcodes[i].name[0] < name[0]) | |
3685 continue; | |
3686 if (termcodes[i].name[0] == name[0]) | |
3687 { | |
3688 if (termcodes[i].name[1] < name[1]) | |
3689 continue; | |
3690 /* | |
180 | 3691 * Exact match: May replace old code. |
7 | 3692 */ |
3693 if (termcodes[i].name[1] == name[1]) | |
3694 { | |
180 | 3695 if (flags == ATC_FROM_TERM && (j = termcode_star( |
3696 termcodes[i].code, termcodes[i].len)) > 0) | |
179 | 3697 { |
180 | 3698 /* Don't replace ESC[123;*X or ESC O*X with another when |
3699 * invoked from got_code_from_term(). */ | |
3700 if (len == termcodes[i].len - j | |
179 | 3701 && STRNCMP(s, termcodes[i].code, len - 1) == 0 |
180 | 3702 && s[len - 1] |
3703 == termcodes[i].code[termcodes[i].len - 1]) | |
179 | 3704 { |
180 | 3705 /* They are equal but for the ";*": don't add it. */ |
179 | 3706 vim_free(s); |
3707 return; | |
3708 } | |
3709 } | |
3710 else | |
3711 { | |
180 | 3712 /* Replace old code. */ |
179 | 3713 vim_free(termcodes[i].code); |
3714 --tc_len; | |
3715 break; | |
3716 } | |
7 | 3717 } |
3718 } | |
3719 /* | |
3720 * Found alphabetical larger entry, move rest to insert new entry | |
3721 */ | |
3722 for (j = tc_len; j > i; --j) | |
3723 termcodes[j] = termcodes[j - 1]; | |
3724 break; | |
3725 } | |
3726 | |
3727 termcodes[i].name[0] = name[0]; | |
3728 termcodes[i].name[1] = name[1]; | |
3729 termcodes[i].code = s; | |
179 | 3730 termcodes[i].len = len; |
180 | 3731 |
3732 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that | |
3733 * accept modifiers. */ | |
3734 termcodes[i].modlen = 0; | |
3735 j = termcode_star(s, len); | |
3736 if (j > 0) | |
3737 termcodes[i].modlen = len - 1 - j; | |
7 | 3738 ++tc_len; |
3739 } | |
3740 | |
180 | 3741 /* |
3742 * Check termcode "code[len]" for ending in ;*X, <Esc>O*X or <M-O>*X. | |
3743 * The "X" can be any character. | |
3744 * Return 0 if not found, 2 for ;*X and 1 for O*X and <M-O>*X. | |
3745 */ | |
3746 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3747 termcode_star(char_u *code, int len) |
180 | 3748 { |
3749 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */ | |
3750 if (len >= 3 && code[len - 2] == '*') | |
3751 { | |
3752 if (len >= 5 && code[len - 3] == ';') | |
3753 return 2; | |
3754 if ((len >= 4 && code[len - 3] == 'O') || code[len - 3] == 'O' + 128) | |
3755 return 1; | |
3756 } | |
3757 return 0; | |
3758 } | |
3759 | |
7 | 3760 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3761 find_termcode(char_u *name) |
7 | 3762 { |
3763 int i; | |
3764 | |
3765 for (i = 0; i < tc_len; ++i) | |
3766 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
3767 return termcodes[i].code; | |
3768 return NULL; | |
3769 } | |
3770 | |
3771 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
3772 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3773 get_termcode(int i) |
7 | 3774 { |
3775 if (i >= tc_len) | |
3776 return NULL; | |
3777 return &termcodes[i].name[0]; | |
3778 } | |
3779 #endif | |
3780 | |
3781 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3782 del_termcode(char_u *name) |
7 | 3783 { |
3784 int i; | |
3785 | |
3786 if (termcodes == NULL) /* nothing there yet */ | |
3787 return; | |
3788 | |
3789 need_gather = TRUE; /* need to fill termleader[] */ | |
3790 | |
3791 for (i = 0; i < tc_len; ++i) | |
3792 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
3793 { | |
3794 del_termcode_idx(i); | |
3795 return; | |
3796 } | |
3797 /* not found. Give error message? */ | |
3798 } | |
3799 | |
3800 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3801 del_termcode_idx(int idx) |
7 | 3802 { |
3803 int i; | |
3804 | |
3805 vim_free(termcodes[idx].code); | |
3806 --tc_len; | |
3807 for (i = idx; i < tc_len; ++i) | |
3808 termcodes[i] = termcodes[i + 1]; | |
3809 } | |
3810 | |
3811 #ifdef FEAT_TERMRESPONSE | |
3812 /* | |
3813 * Called when detected that the terminal sends 8-bit codes. | |
3814 * Convert all 7-bit codes to their 8-bit equivalent. | |
3815 */ | |
3816 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3817 switch_to_8bit(void) |
7 | 3818 { |
3819 int i; | |
3820 int c; | |
3821 | |
3822 /* Only need to do something when not already using 8-bit codes. */ | |
3823 if (!term_is_8bit(T_NAME)) | |
3824 { | |
3825 for (i = 0; i < tc_len; ++i) | |
3826 { | |
3827 c = term_7to8bit(termcodes[i].code); | |
3828 if (c != 0) | |
3829 { | |
1623 | 3830 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2); |
7 | 3831 termcodes[i].code[0] = c; |
3832 } | |
3833 } | |
3834 need_gather = TRUE; /* need to fill termleader[] */ | |
3835 } | |
3836 detected_8bit = TRUE; | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3837 LOG_TR("Switching to 8 bit"); |
7 | 3838 } |
3839 #endif | |
3840 | |
3841 #ifdef CHECK_DOUBLE_CLICK | |
3842 static linenr_T orig_topline = 0; | |
3843 # ifdef FEAT_DIFF | |
3844 static int orig_topfill = 0; | |
3845 # endif | |
3846 #endif | |
3847 #if (defined(FEAT_WINDOWS) && defined(CHECK_DOUBLE_CLICK)) || defined(PROTO) | |
3848 /* | |
3849 * Checking for double clicks ourselves. | |
3850 * "orig_topline" is used to avoid detecting a double-click when the window | |
3851 * contents scrolled (e.g., when 'scrolloff' is non-zero). | |
3852 */ | |
3853 /* | |
3854 * Set orig_topline. Used when jumping to another window, so that a double | |
3855 * click still works. | |
3856 */ | |
3857 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3858 set_mouse_topline(win_T *wp) |
7 | 3859 { |
3860 orig_topline = wp->w_topline; | |
3861 # ifdef FEAT_DIFF | |
3862 orig_topfill = wp->w_topfill; | |
3863 # endif | |
3864 } | |
3865 #endif | |
3866 | |
3867 /* | |
3868 * Check if typebuf.tb_buf[] contains a terminal key code. | |
3869 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off | |
3870 * + max_offset]. | |
3871 * Return 0 for no match, -1 for partial match, > 0 for full match. | |
2672 | 3872 * Return KEYLEN_REMOVED when a key code was deleted. |
7 | 3873 * With a match, the match is removed, the replacement code is inserted in |
3874 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is | |
3875 * returned. | |
3328 | 3876 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[]. |
3877 * "buflen" is then the length of the string in buf[] and is updated for | |
3878 * inserts and deletes. | |
7 | 3879 */ |
3880 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3881 check_termcode( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3882 int max_offset, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3883 char_u *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3884 int bufsize, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3885 int *buflen) |
7 | 3886 { |
3887 char_u *tp; | |
3888 char_u *p; | |
3889 int slen = 0; /* init for GCC */ | |
180 | 3890 int modslen; |
7 | 3891 int len; |
2672 | 3892 int retval = 0; |
7 | 3893 int offset; |
3894 char_u key_name[2]; | |
180 | 3895 int modifiers; |
3896 int key; | |
7 | 3897 int new_slen; |
3898 int extra; | |
3899 char_u string[MAX_KEY_CODE_LEN + 1]; | |
3900 int i, j; | |
3901 int idx = 0; | |
3902 #ifdef FEAT_MOUSE | |
1623 | 3903 # if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \ |
3904 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) | |
7 | 3905 char_u bytes[6]; |
3906 int num_bytes; | |
3907 # endif | |
3908 int mouse_code = 0; /* init for GCC */ | |
3909 int is_click, is_drag; | |
3910 int wheel_code = 0; | |
3911 int current_button; | |
3912 static int held_button = MOUSE_RELEASE; | |
3913 static int orig_num_clicks = 1; | |
3914 static int orig_mouse_code = 0x0; | |
3915 # ifdef CHECK_DOUBLE_CLICK | |
3916 static int orig_mouse_col = 0; | |
3917 static int orig_mouse_row = 0; | |
3918 static struct timeval orig_mouse_time = {0, 0}; | |
3919 /* time of previous mouse click */ | |
3920 struct timeval mouse_time; /* time of current mouse click */ | |
3921 long timediff; /* elapsed time in msec */ | |
3922 # endif | |
3923 #endif | |
3924 int cpo_koffset; | |
3925 #ifdef FEAT_MOUSE_GPM | |
3926 extern int gpm_flag; /* gpm library variable */ | |
3927 #endif | |
3928 | |
3929 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL); | |
3930 | |
3931 /* | |
3932 * Speed up the checks for terminal codes by gathering all first bytes | |
3933 * used in termleader[]. Often this is just a single <Esc>. | |
3934 */ | |
3935 if (need_gather) | |
3936 gather_termleader(); | |
3937 | |
3938 /* | |
3939 * Check at several positions in typebuf.tb_buf[], to catch something like | |
3940 * "x<Up>" that can be mapped. Stop at max_offset, because characters | |
3941 * after that cannot be used for mapping, and with @r commands | |
4223 | 3942 * typebuf.tb_buf[] can become very long. |
7 | 3943 * This is used often, KEEP IT FAST! |
3944 */ | |
3945 for (offset = 0; offset < max_offset; ++offset) | |
3946 { | |
3947 if (buf == NULL) | |
3948 { | |
3949 if (offset >= typebuf.tb_len) | |
3950 break; | |
3951 tp = typebuf.tb_buf + typebuf.tb_off + offset; | |
3952 len = typebuf.tb_len - offset; /* length of the input */ | |
3953 } | |
3954 else | |
3955 { | |
3328 | 3956 if (offset >= *buflen) |
7 | 3957 break; |
3958 tp = buf + offset; | |
3328 | 3959 len = *buflen - offset; |
7 | 3960 } |
3961 | |
3962 /* | |
3963 * Don't check characters after K_SPECIAL, those are already | |
3964 * translated terminal chars (avoid translating ~@^Hx). | |
3965 */ | |
3966 if (*tp == K_SPECIAL) | |
3967 { | |
3968 offset += 2; /* there are always 2 extra characters */ | |
3969 continue; | |
3970 } | |
3971 | |
3972 /* | |
3973 * Skip this position if the character does not appear as the first | |
3974 * character in term_strings. This speeds up a lot, since most | |
3975 * termcodes start with the same character (ESC or CSI). | |
3976 */ | |
3977 i = *tp; | |
3978 for (p = termleader; *p && *p != i; ++p) | |
3979 ; | |
3980 if (*p == NUL) | |
3981 continue; | |
3982 | |
3983 /* | |
3984 * Skip this position if p_ek is not set and tp[0] is an ESC and we | |
3985 * are in Insert mode. | |
3986 */ | |
3987 if (*tp == ESC && !p_ek && (State & INSERT)) | |
3988 continue; | |
3989 | |
3990 key_name[0] = NUL; /* no key name found yet */ | |
699 | 3991 key_name[1] = NUL; /* no key name found yet */ |
180 | 3992 modifiers = 0; /* no modifiers yet */ |
7 | 3993 |
3994 #ifdef FEAT_GUI | |
3995 if (gui.in_use) | |
3996 { | |
3997 /* | |
3998 * GUI special key codes are all of the form [CSI xx]. | |
3999 */ | |
4000 if (*tp == CSI) /* Special key from GUI */ | |
4001 { | |
4002 if (len < 3) | |
4003 return -1; /* Shouldn't happen */ | |
4004 slen = 3; | |
4005 key_name[0] = tp[1]; | |
4006 key_name[1] = tp[2]; | |
4007 } | |
4008 } | |
4009 else | |
4010 #endif /* FEAT_GUI */ | |
4011 { | |
4012 for (idx = 0; idx < tc_len; ++idx) | |
4013 { | |
4014 /* | |
4015 * Ignore the entry if we are not at the start of | |
4016 * typebuf.tb_buf[] | |
4017 * and there are not enough characters to make a match. | |
4018 * But only when the 'K' flag is in 'cpoptions'. | |
4019 */ | |
4020 slen = termcodes[idx].len; | |
4021 if (cpo_koffset && offset && len < slen) | |
4022 continue; | |
4023 if (STRNCMP(termcodes[idx].code, tp, | |
4024 (size_t)(slen > len ? len : slen)) == 0) | |
4025 { | |
4026 if (len < slen) /* got a partial sequence */ | |
4027 return -1; /* need to get more chars */ | |
4028 | |
4029 /* | |
4030 * When found a keypad key, check if there is another key | |
4031 * that matches and use that one. This makes <Home> to be | |
4032 * found instead of <kHome> when they produce the same | |
4033 * key code. | |
4034 */ | |
4035 if (termcodes[idx].name[0] == 'K' | |
4036 && VIM_ISDIGIT(termcodes[idx].name[1])) | |
4037 { | |
4038 for (j = idx + 1; j < tc_len; ++j) | |
4039 if (termcodes[j].len == slen && | |
4040 STRNCMP(termcodes[idx].code, | |
4041 termcodes[j].code, slen) == 0) | |
4042 { | |
4043 idx = j; | |
4044 break; | |
4045 } | |
4046 } | |
4047 | |
4048 key_name[0] = termcodes[idx].name[0]; | |
4049 key_name[1] = termcodes[idx].name[1]; | |
4050 break; | |
4051 } | |
179 | 4052 |
4053 /* | |
4054 * Check for code with modifier, like xterm uses: | |
180 | 4055 * <Esc>[123;*X (modslen == slen - 3) |
4056 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2). | |
4057 * When there is a modifier the * matches a number. | |
4058 * When there is no modifier the ;* or * is omitted. | |
179 | 4059 */ |
4060 if (termcodes[idx].modlen > 0) | |
4061 { | |
180 | 4062 modslen = termcodes[idx].modlen; |
4063 if (cpo_koffset && offset && len < modslen) | |
179 | 4064 continue; |
4065 if (STRNCMP(termcodes[idx].code, tp, | |
180 | 4066 (size_t)(modslen > len ? len : modslen)) == 0) |
179 | 4067 { |
4068 int n; | |
180 | 4069 |
4070 if (len <= modslen) /* got a partial sequence */ | |
179 | 4071 return -1; /* need to get more chars */ |
4072 | |
180 | 4073 if (tp[modslen] == termcodes[idx].code[slen - 1]) |
4074 slen = modslen + 1; /* no modifiers */ | |
4075 else if (tp[modslen] != ';' && modslen == slen - 3) | |
179 | 4076 continue; /* no match */ |
4077 else | |
4078 { | |
4079 /* Skip over the digits, the final char must | |
4080 * follow. */ | |
180 | 4081 for (j = slen - 2; j < len && isdigit(tp[j]); ++j) |
179 | 4082 ; |
4083 ++j; | |
4084 if (len < j) /* got a partial sequence */ | |
4085 return -1; /* need to get more chars */ | |
180 | 4086 if (tp[j - 1] != termcodes[idx].code[slen - 1]) |
4087 continue; /* no match */ | |
179 | 4088 |
4089 /* Match! Convert modifier bits. */ | |
180 | 4090 n = atoi((char *)tp + slen - 2) - 1; |
179 | 4091 if (n & 1) |
180 | 4092 modifiers |= MOD_MASK_SHIFT; |
179 | 4093 if (n & 2) |
180 | 4094 modifiers |= MOD_MASK_ALT; |
179 | 4095 if (n & 4) |
180 | 4096 modifiers |= MOD_MASK_CTRL; |
179 | 4097 if (n & 8) |
180 | 4098 modifiers |= MOD_MASK_META; |
179 | 4099 |
4100 slen = j; | |
4101 } | |
4102 key_name[0] = termcodes[idx].name[0]; | |
4103 key_name[1] = termcodes[idx].name[1]; | |
4104 break; | |
4105 } | |
4106 } | |
7 | 4107 } |
4108 } | |
4109 | |
4110 #ifdef FEAT_TERMRESPONSE | |
3166 | 4111 if (key_name[0] == NUL |
6102 | 4112 /* Mouse codes of DEC, pterm, and URXVT start with <ESC>[. When |
4113 * detecting the start of these mouse codes they might as well be | |
4114 * another key code or terminal response. */ | |
4115 # ifdef FEAT_MOUSE_DEC | |
4116 || key_name[0] == KS_DEC_MOUSE | |
4117 # endif | |
4118 # ifdef FEAT_MOUSE_PTERM | |
4119 || key_name[0] == KS_PTERM_MOUSE | |
4223 | 4120 # endif |
6102 | 4121 # ifdef FEAT_MOUSE_URXVT |
4122 || key_name[0] == KS_URXVT_MOUSE | |
4123 # endif | |
4124 ) | |
7 | 4125 { |
6102 | 4126 /* Check for some responses from the terminal starting with |
4127 * "<Esc>[" or CSI: | |
4215 | 4128 * |
6102 | 4129 * - Xterm version string: <Esc>[>{x};{vers};{y}c |
4215 | 4130 * Also eat other possible responses to t_RV, rxvt returns |
4131 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[. | |
4132 * mrxvt has been reported to have "+" in the version. Assume | |
4133 * the escape sequence ends with a letter or one of "{|}~". | |
4134 * | |
6102 | 4135 * - Cursor position report: <Esc>[{row};{col}R |
4136 * The final byte must be 'R'. It is used for checking the | |
4215 | 4137 * ambiguous-width character state. |
4138 */ | |
6901 | 4139 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1; |
4140 | |
4141 if ((*T_CRV != NUL || *T_U7 != NUL) | |
4142 && ((tp[0] == ESC && len >= 3 && tp[1] == '[') | |
4395 | 4143 || (tp[0] == CSI && len >= 2)) |
6874 | 4144 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?')) |
7 | 4145 { |
5724 | 4146 #ifdef FEAT_MBYTE |
4147 int col; | |
5743 | 4148 int row_char = NUL; |
5724 | 4149 #endif |
7 | 4150 j = 0; |
4151 extra = 0; | |
1552 | 4152 for (i = 2 + (tp[0] != CSI); i < len |
4153 && !(tp[i] >= '{' && tp[i] <= '~') | |
4154 && !ASCII_ISALPHA(tp[i]); ++i) | |
7 | 4155 if (tp[i] == ';' && ++j == 1) |
5724 | 4156 { |
4395 | 4157 extra = i + 1; |
5724 | 4158 #ifdef FEAT_MBYTE |
4159 row_char = tp[i - 1]; | |
4160 #endif | |
4161 } | |
7 | 4162 if (i == len) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4163 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4164 LOG_TR("Not enough characters for CRV"); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4165 return -1; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4166 } |
4215 | 4167 #ifdef FEAT_MBYTE |
5724 | 4168 if (extra > 0) |
4169 col = atoi((char *)tp + extra); | |
4170 else | |
4171 col = 0; | |
4172 | |
4173 /* Eat it when it has 2 arguments and ends in 'R'. Also when | |
4174 * u7_status is not "sent", it may be from a previous Vim that | |
4175 * just exited. But not for <S-F3>, it sends something | |
4176 * similar, check for row and column to make sense. */ | |
6102 | 4177 if (j == 1 && tp[i] == 'R') |
4215 | 4178 { |
6102 | 4179 if (row_char == '2' && col >= 2) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4180 { |
6102 | 4181 char *aw = NULL; |
4182 | |
4183 LOG_TR("Received U7 status"); | |
4184 u7_status = U7_GOT; | |
4185 # ifdef FEAT_AUTOCMD | |
4186 did_cursorhold = TRUE; | |
4187 # endif | |
4188 if (col == 2) | |
4189 aw = "single"; | |
4190 else if (col == 3) | |
4191 aw = "double"; | |
4192 if (aw != NULL && STRCMP(aw, p_ambw) != 0) | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4193 { |
6102 | 4194 /* Setting the option causes a screen redraw. Do |
4195 * that right away if possible, keeping any | |
4196 * messages. */ | |
4197 set_option_value((char_u *)"ambw", 0L, | |
4198 (char_u *)aw, 0); | |
4199 # ifdef DEBUG_TERMRESPONSE | |
4200 { | |
4201 char buf[100]; | |
4202 int r = redraw_asap(CLEAR); | |
4203 | |
4204 sprintf(buf, | |
4205 "set 'ambiwidth', redraw_asap(): %d", | |
4206 r); | |
4207 log_tr(buf); | |
4208 } | |
4209 # else | |
4210 redraw_asap(CLEAR); | |
4211 # endif | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4212 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4213 } |
4215 | 4214 key_name[0] = (int)KS_EXTRA; |
4215 key_name[1] = (int)KE_IGNORE; | |
4216 slen = i + 1; | |
4217 } | |
4218 else | |
4219 #endif | |
7 | 4220 /* eat it when at least one digit and ending in 'c' */ |
4215 | 4221 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c') |
7 | 4222 { |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4223 LOG_TR("Received CRV"); |
7 | 4224 crv_status = CRV_GOT; |
4262 | 4225 # ifdef FEAT_AUTOCMD |
4226 did_cursorhold = TRUE; | |
4227 # endif | |
7 | 4228 |
4229 /* If this code starts with CSI, you can bet that the | |
4230 * terminal uses 8-bit codes. */ | |
4231 if (tp[0] == CSI) | |
4232 switch_to_8bit(); | |
4233 | |
4234 /* rxvt sends its version number: "20703" is 2.7.3. | |
4235 * Ignore it for when the user has set 'term' to xterm, | |
4236 * even though it's an rxvt. */ | |
4395 | 4237 if (extra > 0) |
4238 extra = atoi((char *)tp + extra); | |
7 | 4239 if (extra > 20000) |
4240 extra = 0; | |
4241 | |
4242 if (tp[1 + (tp[0] != CSI)] == '>' && j == 2) | |
4243 { | |
3885 | 4244 /* Only set 'ttymouse' automatically if it was not set |
4245 * by the user already. */ | |
4246 if (!option_was_set((char_u *)"ttym")) | |
4247 { | |
3746 | 4248 # ifdef TTYM_SGR |
3885 | 4249 if (extra >= 277) |
4250 set_option_value((char_u *)"ttym", 0L, | |
3746 | 4251 (char_u *)"sgr", 0); |
3885 | 4252 else |
3746 | 4253 # endif |
3885 | 4254 /* if xterm version >= 95 use mouse dragging */ |
4255 if (extra >= 95) | |
4256 set_option_value((char_u *)"ttym", 0L, | |
7 | 4257 (char_u *)"xterm2", 0); |
3885 | 4258 } |
4259 | |
7 | 4260 /* if xterm version >= 141 try to get termcap codes */ |
4261 if (extra >= 141) | |
4262 { | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4263 LOG_TR("Enable checking for XT codes"); |
7 | 4264 check_for_codes = TRUE; |
4265 need_gather = TRUE; | |
4266 req_codes_from_term(); | |
4267 } | |
4268 } | |
4269 # ifdef FEAT_EVAL | |
4270 set_vim_var_string(VV_TERMRESPONSE, tp, i + 1); | |
4271 # endif | |
4272 # ifdef FEAT_AUTOCMD | |
4273 apply_autocmds(EVENT_TERMRESPONSE, | |
4274 NULL, NULL, FALSE, curbuf); | |
4275 # endif | |
4276 key_name[0] = (int)KS_EXTRA; | |
4277 key_name[1] = (int)KE_IGNORE; | |
4278 slen = i + 1; | |
4279 } | |
6901 | 4280 } |
4281 | |
4282 /* Check for background color response from the terminal: | |
4283 * | |
4284 * {lead}11;rgb:{rrrr}/{gggg}/{bbbb}{tail} | |
4285 * | |
4286 * {lead} can be <Esc>] or OSC | |
4287 * {tail} can be '\007', <Esc>\ or STERM. | |
4288 * | |
4289 * Consume any code that starts with "{lead}11;", it's also | |
4290 * possible that "rgba" is following. | |
4291 */ | |
4292 else if (*T_RBG != NUL | |
4293 && ((tp[0] == ESC && len >= 2 && tp[1] == ']') | |
4294 || tp[0] == OSC)) | |
4295 { | |
4296 j = 1 + (tp[0] == ESC); | |
4297 if (len >= j + 3 && (argp[0] != '1' | |
4298 || argp[1] != '1' || argp[2] != ';')) | |
4299 i = 0; /* no match */ | |
4300 else | |
4301 for (i = j; i < len; ++i) | |
4302 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM | |
4303 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\'))) | |
4304 { | |
4305 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0 | |
4306 && tp[j + 11] == '/' && tp[j + 16] == '/' | |
4307 && !option_was_set((char_u *)"bg")) | |
4308 {/* TODO: don't set option when already the right value */ | |
4309 LOG_TR("Received RBG"); | |
4310 rbg_status = RBG_GOT; | |
4311 set_option_value((char_u *)"bg", 0L, (char_u *)( | |
4312 (3 * '6' < tp[j+7] + tp[j+12] + tp[j+17]) | |
4313 ? "light" : "dark"), 0); | |
4314 reset_option_was_set((char_u *)"bg"); | |
4315 redraw_asap(CLEAR); | |
4316 } | |
4317 | |
4318 /* got finished code: consume it */ | |
4319 key_name[0] = (int)KS_EXTRA; | |
4320 key_name[1] = (int)KE_IGNORE; | |
4321 slen = i + 1 + (tp[i] == ESC); | |
4322 break; | |
4323 } | |
4324 if (i == len) | |
6874 | 4325 { |
6901 | 4326 LOG_TR("not enough characters for RB"); |
4327 return -1; | |
6874 | 4328 } |
7 | 4329 } |
4330 | |
6901 | 4331 /* Check for key code response from xterm: |
4332 * | |
4333 * {lead}{flag}+r<hex bytes><{tail} | |
4334 * | |
4335 * {lead} can be <Esc>P or DCS | |
4336 * {flag} can be '0' or '1' | |
4337 * {tail} can be Esc>\ or STERM | |
4338 * | |
4339 * Consume any code that starts with "{lead}.+r". | |
4340 */ | |
7 | 4341 else if (check_for_codes |
6901 | 4342 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P') |
7 | 4343 || tp[0] == DCS)) |
4344 { | |
6901 | 4345 j = 1 + (tp[0] == ESC); |
4346 if (len >= j + 3 && (argp[1] != '+' || argp[2] != 'r')) | |
4347 i = 0; /* no match */ | |
4348 else | |
4349 for (i = j; i < len; ++i) | |
4350 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\') | |
7 | 4351 || tp[i] == STERM) |
4352 { | |
6901 | 4353 if (i - j >= 3) |
7 | 4354 got_code_from_term(tp + j, i); |
4355 key_name[0] = (int)KS_EXTRA; | |
4356 key_name[1] = (int)KE_IGNORE; | |
4357 slen = i + 1 + (tp[i] == ESC); | |
4358 break; | |
4359 } | |
4360 | |
4361 if (i == len) | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4362 { |
6901 | 4363 /* These codes arrive many together, each code can be |
4364 * truncated at any point. */ | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4365 LOG_TR("not enough characters for XT"); |
6901 | 4366 return -1; |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4367 } |
7 | 4368 } |
4369 } | |
4370 #endif | |
4371 | |
4372 if (key_name[0] == NUL) | |
4373 continue; /* No match at this position, try next one */ | |
4374 | |
4375 /* We only get here when we have a complete termcode match */ | |
4376 | |
4377 #ifdef FEAT_MOUSE | |
4378 # ifdef FEAT_GUI | |
4379 /* | |
4380 * Only in the GUI: Fetch the pointer coordinates of the scroll event | |
4381 * so that we know which window to scroll later. | |
4382 */ | |
4383 if (gui.in_use | |
4384 && key_name[0] == (int)KS_EXTRA | |
4385 && (key_name[1] == (int)KE_X1MOUSE | |
4386 || key_name[1] == (int)KE_X2MOUSE | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
4387 || key_name[1] == (int)KE_MOUSELEFT |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
4388 || key_name[1] == (int)KE_MOUSERIGHT |
7 | 4389 || key_name[1] == (int)KE_MOUSEDOWN |
4390 || key_name[1] == (int)KE_MOUSEUP)) | |
4391 { | |
4392 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4); | |
4393 if (num_bytes == -1) /* not enough coordinates */ | |
4394 return -1; | |
4395 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1; | |
4396 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1; | |
4397 slen += num_bytes; | |
4398 } | |
4399 else | |
4400 # endif | |
4401 /* | |
4402 * If it is a mouse click, get the coordinates. | |
4403 */ | |
3746 | 4404 if (key_name[0] == KS_MOUSE |
7 | 4405 # ifdef FEAT_MOUSE_JSB |
3746 | 4406 || key_name[0] == KS_JSBTERM_MOUSE |
7 | 4407 # endif |
4408 # ifdef FEAT_MOUSE_NET | |
3746 | 4409 || key_name[0] == KS_NETTERM_MOUSE |
7 | 4410 # endif |
4411 # ifdef FEAT_MOUSE_DEC | |
3746 | 4412 || key_name[0] == KS_DEC_MOUSE |
7 | 4413 # endif |
4414 # ifdef FEAT_MOUSE_PTERM | |
3746 | 4415 || key_name[0] == KS_PTERM_MOUSE |
7 | 4416 # endif |
3166 | 4417 # ifdef FEAT_MOUSE_URXVT |
3746 | 4418 || key_name[0] == KS_URXVT_MOUSE |
4419 # endif | |
4420 # ifdef FEAT_MOUSE_SGR | |
4421 || key_name[0] == KS_SGR_MOUSE | |
3166 | 4422 # endif |
7 | 4423 ) |
4424 { | |
4425 is_click = is_drag = FALSE; | |
4426 | |
1623 | 4427 # if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \ |
4428 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) | |
7 | 4429 if (key_name[0] == (int)KS_MOUSE) |
4430 { | |
4431 /* | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
4432 * For xterm we get "<t_mouse>scr", where |
7 | 4433 * s == encoded button state: |
4434 * 0x20 = left button down | |
4435 * 0x21 = middle button down | |
4436 * 0x22 = right button down | |
4437 * 0x23 = any button release | |
4438 * 0x60 = button 4 down (scroll wheel down) | |
4439 * 0x61 = button 5 down (scroll wheel up) | |
4440 * add 0x04 for SHIFT | |
4441 * add 0x08 for ALT | |
4442 * add 0x10 for CTRL | |
4443 * add 0x20 for mouse drag (0x40 is drag with left button) | |
4444 * c == column + ' ' + 1 == column + 33 | |
4445 * r == row + ' ' + 1 == row + 33 | |
4446 * | |
4447 * The coordinates are passed on through global variables. | |
4448 * Ugly, but this avoids trouble with mouse clicks at an | |
4449 * unexpected moment and allows for mapping them. | |
4450 */ | |
4451 for (;;) | |
4452 { | |
4453 #ifdef FEAT_GUI | |
4454 if (gui.in_use) | |
4455 { | |
4456 /* GUI uses more bits for columns > 223 */ | |
4457 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5); | |
4458 if (num_bytes == -1) /* not enough coordinates */ | |
4459 return -1; | |
4460 mouse_code = bytes[0]; | |
4461 mouse_col = 128 * (bytes[1] - ' ' - 1) | |
4462 + bytes[2] - ' ' - 1; | |
4463 mouse_row = 128 * (bytes[3] - ' ' - 1) | |
4464 + bytes[4] - ' ' - 1; | |
4465 } | |
4466 else | |
4467 #endif | |
4468 { | |
4469 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3); | |
4470 if (num_bytes == -1) /* not enough coordinates */ | |
4471 return -1; | |
4472 mouse_code = bytes[0]; | |
4473 mouse_col = bytes[1] - ' ' - 1; | |
4474 mouse_row = bytes[2] - ' ' - 1; | |
4475 } | |
4476 slen += num_bytes; | |
4477 | |
4478 /* If the following bytes is also a mouse code and it has | |
4479 * the same code, dump this one and get the next. This | |
4480 * makes dragging a whole lot faster. */ | |
4481 #ifdef FEAT_GUI | |
4482 if (gui.in_use) | |
4483 j = 3; | |
4484 else | |
4485 #endif | |
4486 j = termcodes[idx].len; | |
4487 if (STRNCMP(tp, tp + slen, (size_t)j) == 0 | |
4488 && tp[slen + j] == mouse_code | |
4489 && tp[slen + j + 1] != NUL | |
4490 && tp[slen + j + 2] != NUL | |
4491 #ifdef FEAT_GUI | |
4492 && (!gui.in_use | |
4493 || (tp[slen + j + 3] != NUL | |
4494 && tp[slen + j + 4] != NUL)) | |
4495 #endif | |
4496 ) | |
4497 slen += j; | |
4498 else | |
4499 break; | |
4500 } | |
3166 | 4501 } |
4502 | |
3746 | 4503 # if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR) |
4504 if (key_name[0] == KS_URXVT_MOUSE | |
4505 || key_name[0] == KS_SGR_MOUSE) | |
3166 | 4506 { |
4507 for (;;) | |
4508 { | |
4509 /* URXVT 1015 mouse reporting mode: | |
4510 * Almost identical to xterm mouse mode, except the values | |
4511 * are decimal instead of bytes. | |
4512 * | |
4513 * \033[%d;%d;%dM | |
4514 * ^-- row | |
4515 * ^----- column | |
4516 * ^-------- code | |
3746 | 4517 * |
4518 * SGR 1006 mouse reporting mode: | |
4519 * Almost identical to xterm mouse mode, except the values | |
4520 * are decimal instead of bytes. | |
4521 * | |
4522 * \033[<%d;%d;%dM | |
4523 * ^-- row | |
4524 * ^----- column | |
4525 * ^-------- code | |
4526 * | |
4527 * \033[<%d;%d;%dm : mouse release event | |
4528 * ^-- row | |
4529 * ^----- column | |
4530 * ^-------- code | |
3166 | 4531 */ |
4532 p = tp + slen; | |
4533 | |
4534 mouse_code = getdigits(&p); | |
4535 if (*p++ != ';') | |
4536 return -1; | |
4537 | |
3746 | 4538 /* when mouse reporting is SGR, add 32 to mouse code */ |
6102 | 4539 if (key_name[0] == KS_SGR_MOUSE) |
4540 mouse_code += 32; | |
3746 | 4541 |
3166 | 4542 mouse_col = getdigits(&p) - 1; |
4543 if (*p++ != ';') | |
4544 return -1; | |
4545 | |
4546 mouse_row = getdigits(&p) - 1; | |
6102 | 4547 if (key_name[0] == KS_SGR_MOUSE && *p == 'm') |
3746 | 4548 mouse_code |= MOUSE_RELEASE; |
6102 | 4549 else if (*p != 'M') |
3166 | 4550 return -1; |
6102 | 4551 p++; |
3166 | 4552 |
4553 slen += (int)(p - (tp + slen)); | |
4554 | |
4555 /* skip this one if next one has same code (like xterm | |
4556 * case) */ | |
4557 j = termcodes[idx].len; | |
3746 | 4558 if (STRNCMP(tp, tp + slen, (size_t)j) == 0) |
4559 { | |
3166 | 4560 int slen2; |
4561 int cmd_complete = 0; | |
3746 | 4562 |
4563 /* check if the command is complete by looking for the | |
4564 * 'M' */ | |
4565 for (slen2 = slen; slen2 < len; slen2++) | |
4566 { | |
4567 if (tp[slen2] == 'M' | |
6102 | 4568 || (key_name[0] == KS_SGR_MOUSE |
3746 | 4569 && tp[slen2] == 'm')) |
4570 { | |
3166 | 4571 cmd_complete = 1; |
4572 break; | |
4573 } | |
4574 } | |
4575 p += j; | |
3746 | 4576 if (cmd_complete && getdigits(&p) == mouse_code) |
4577 { | |
3166 | 4578 slen += j; /* skip the \033[ */ |
4579 continue; | |
4580 } | |
4581 } | |
4582 break; | |
4583 } | |
4584 } | |
4585 # endif | |
4586 | |
4587 if (key_name[0] == (int)KS_MOUSE | |
4588 #ifdef FEAT_MOUSE_URXVT | |
4589 || key_name[0] == (int)KS_URXVT_MOUSE | |
4590 #endif | |
3746 | 4591 #ifdef FEAT_MOUSE_SGR |
4592 || key_name[0] == KS_SGR_MOUSE | |
4593 #endif | |
3166 | 4594 ) |
4595 { | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
4596 # if !defined(MSWIN) |
7 | 4597 /* |
4598 * Handle mouse events. | |
4599 * Recognize the xterm mouse wheel, but not in the GUI, the | |
4600 * Linux console with GPM and the MS-DOS or Win32 console | |
4601 * (multi-clicks use >= 0x60). | |
4602 */ | |
4603 if (mouse_code >= MOUSEWHEEL_LOW | |
4604 # ifdef FEAT_GUI | |
4605 && !gui.in_use | |
4606 # endif | |
4607 # ifdef FEAT_MOUSE_GPM | |
4608 && gpm_flag == 0 | |
4609 # endif | |
4610 ) | |
4611 { | |
4612 /* Keep the mouse_code before it's changed, so that we | |
4613 * remember that it was a mouse wheel click. */ | |
4614 wheel_code = mouse_code; | |
4615 } | |
4616 # ifdef FEAT_MOUSE_XTERM | |
4617 else if (held_button == MOUSE_RELEASE | |
4618 # ifdef FEAT_GUI | |
4619 && !gui.in_use | |
4620 # endif | |
4621 && (mouse_code == 0x23 || mouse_code == 0x24)) | |
4622 { | |
4623 /* Apparently used by rxvt scroll wheel. */ | |
4624 wheel_code = mouse_code - 0x23 + MOUSEWHEEL_LOW; | |
4625 } | |
4626 # endif | |
4627 | |
4628 # if defined(UNIX) && defined(FEAT_MOUSE_TTY) | |
4629 else if (use_xterm_mouse() > 1) | |
4630 { | |
4631 if (mouse_code & MOUSE_DRAG_XTERM) | |
4632 mouse_code |= MOUSE_DRAG; | |
4633 } | |
4634 # endif | |
4635 # ifdef FEAT_XCLIPBOARD | |
4636 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK)) | |
4637 { | |
4638 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE) | |
4639 stop_xterm_trace(); | |
4640 else | |
4641 start_xterm_trace(mouse_code); | |
4642 } | |
4643 # endif | |
4644 # endif | |
4645 } | |
4646 # endif /* !UNIX || FEAT_MOUSE_XTERM */ | |
4647 # ifdef FEAT_MOUSE_NET | |
4648 if (key_name[0] == (int)KS_NETTERM_MOUSE) | |
4649 { | |
4650 int mc, mr; | |
4651 | |
4652 /* expect a rather limited sequence like: balancing { | |
4653 * \033}6,45\r | |
4654 * '6' is the row, 45 is the column | |
4655 */ | |
4656 p = tp + slen; | |
4657 mr = getdigits(&p); | |
4658 if (*p++ != ',') | |
4659 return -1; | |
4660 mc = getdigits(&p); | |
4661 if (*p++ != '\r') | |
4662 return -1; | |
4663 | |
4664 mouse_col = mc - 1; | |
4665 mouse_row = mr - 1; | |
4666 mouse_code = MOUSE_LEFT; | |
4667 slen += (int)(p - (tp + slen)); | |
4668 } | |
4669 # endif /* FEAT_MOUSE_NET */ | |
4670 # ifdef FEAT_MOUSE_JSB | |
4671 if (key_name[0] == (int)KS_JSBTERM_MOUSE) | |
4672 { | |
4673 int mult, val, iter, button, status; | |
4674 | |
4675 /* JSBTERM Input Model | |
4676 * \033[0~zw uniq escape sequence | |
4677 * (L-x) Left button pressed - not pressed x not reporting | |
4678 * (M-x) Middle button pressed - not pressed x not reporting | |
4679 * (R-x) Right button pressed - not pressed x not reporting | |
4680 * (SDmdu) Single , Double click, m mouse move d button down | |
4681 * u button up | |
4682 * ### X cursor position padded to 3 digits | |
4683 * ### Y cursor position padded to 3 digits | |
4684 * (s-x) SHIFT key pressed - not pressed x not reporting | |
4685 * (c-x) CTRL key pressed - not pressed x not reporting | |
2237
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
4686 * \033\\ terminating sequence |
7 | 4687 */ |
4688 | |
4689 p = tp + slen; | |
4690 button = mouse_code = 0; | |
4691 switch (*p++) | |
4692 { | |
4693 case 'L': button = 1; break; | |
4694 case '-': break; | |
4695 case 'x': break; /* ignore sequence */ | |
4696 default: return -1; /* Unknown Result */ | |
4697 } | |
4698 switch (*p++) | |
4699 { | |
4700 case 'M': button |= 2; break; | |
4701 case '-': break; | |
4702 case 'x': break; /* ignore sequence */ | |
4703 default: return -1; /* Unknown Result */ | |
4704 } | |
4705 switch (*p++) | |
4706 { | |
4707 case 'R': button |= 4; break; | |
4708 case '-': break; | |
4709 case 'x': break; /* ignore sequence */ | |
4710 default: return -1; /* Unknown Result */ | |
4711 } | |
4712 status = *p++; | |
4713 for (val = 0, mult = 100, iter = 0; iter < 3; iter++, | |
4714 mult /= 10, p++) | |
4715 if (*p >= '0' && *p <= '9') | |
4716 val += (*p - '0') * mult; | |
4717 else | |
4718 return -1; | |
4719 mouse_col = val; | |
4720 for (val = 0, mult = 100, iter = 0; iter < 3; iter++, | |
4721 mult /= 10, p++) | |
4722 if (*p >= '0' && *p <= '9') | |
4723 val += (*p - '0') * mult; | |
4724 else | |
4725 return -1; | |
4726 mouse_row = val; | |
4727 switch (*p++) | |
4728 { | |
4729 case 's': button |= 8; break; /* SHIFT key Pressed */ | |
4730 case '-': break; /* Not Pressed */ | |
4731 case 'x': break; /* Not Reporting */ | |
4732 default: return -1; /* Unknown Result */ | |
4733 } | |
4734 switch (*p++) | |
4735 { | |
4736 case 'c': button |= 16; break; /* CTRL key Pressed */ | |
4737 case '-': break; /* Not Pressed */ | |
4738 case 'x': break; /* Not Reporting */ | |
4739 default: return -1; /* Unknown Result */ | |
4740 } | |
4741 if (*p++ != '\033') | |
4742 return -1; | |
4743 if (*p++ != '\\') | |
4744 return -1; | |
4745 switch (status) | |
4746 { | |
4747 case 'D': /* Double Click */ | |
4748 case 'S': /* Single Click */ | |
4749 if (button & 1) mouse_code |= MOUSE_LEFT; | |
4750 if (button & 2) mouse_code |= MOUSE_MIDDLE; | |
4751 if (button & 4) mouse_code |= MOUSE_RIGHT; | |
4752 if (button & 8) mouse_code |= MOUSE_SHIFT; | |
4753 if (button & 16) mouse_code |= MOUSE_CTRL; | |
4754 break; | |
4755 case 'm': /* Mouse move */ | |
4756 if (button & 1) mouse_code |= MOUSE_LEFT; | |
4757 if (button & 2) mouse_code |= MOUSE_MIDDLE; | |
4758 if (button & 4) mouse_code |= MOUSE_RIGHT; | |
4759 if (button & 8) mouse_code |= MOUSE_SHIFT; | |
4760 if (button & 16) mouse_code |= MOUSE_CTRL; | |
4761 if ((button & 7) != 0) | |
4762 { | |
4763 held_button = mouse_code; | |
4764 mouse_code |= MOUSE_DRAG; | |
4765 } | |
4766 is_drag = TRUE; | |
4767 showmode(); | |
4768 break; | |
4769 case 'd': /* Button Down */ | |
4770 if (button & 1) mouse_code |= MOUSE_LEFT; | |
4771 if (button & 2) mouse_code |= MOUSE_MIDDLE; | |
4772 if (button & 4) mouse_code |= MOUSE_RIGHT; | |
4773 if (button & 8) mouse_code |= MOUSE_SHIFT; | |
4774 if (button & 16) mouse_code |= MOUSE_CTRL; | |
4775 break; | |
4776 case 'u': /* Button Up */ | |
4777 if (button & 1) | |
4778 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE; | |
4779 if (button & 2) | |
4780 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE; | |
4781 if (button & 4) | |
4782 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE; | |
4783 if (button & 8) | |
4784 mouse_code |= MOUSE_SHIFT; | |
4785 if (button & 16) | |
4786 mouse_code |= MOUSE_CTRL; | |
4787 break; | |
4788 default: return -1; /* Unknown Result */ | |
4789 } | |
4790 | |
4791 slen += (p - (tp + slen)); | |
4792 } | |
4793 # endif /* FEAT_MOUSE_JSB */ | |
4794 # ifdef FEAT_MOUSE_DEC | |
4795 if (key_name[0] == (int)KS_DEC_MOUSE) | |
4796 { | |
4797 /* The DEC Locator Input Model | |
4798 * Netterm delivers the code sequence: | |
4799 * \033[2;4;24;80&w (left button down) | |
4800 * \033[3;0;24;80&w (left button up) | |
4801 * \033[6;1;24;80&w (right button down) | |
4802 * \033[7;0;24;80&w (right button up) | |
4803 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w | |
4804 * Pe is the event code | |
4805 * Pb is the button code | |
4806 * Pr is the row coordinate | |
4807 * Pc is the column coordinate | |
4808 * Pp is the third coordinate (page number) | |
4809 * Pe, the event code indicates what event caused this report | |
4810 * The following event codes are defined: | |
4811 * 0 - request, the terminal received an explicit request | |
4812 * for a locator report, but the locator is unavailable | |
4813 * 1 - request, the terminal received an explicit request | |
4814 * for a locator report | |
4815 * 2 - left button down | |
4816 * 3 - left button up | |
4817 * 4 - middle button down | |
4818 * 5 - middle button up | |
4819 * 6 - right button down | |
4820 * 7 - right button up | |
4821 * 8 - fourth button down | |
4822 * 9 - fourth button up | |
4823 * 10 - locator outside filter rectangle | |
4824 * Pb, the button code, ASCII decimal 0-15 indicating which | |
4825 * buttons are down if any. The state of the four buttons | |
4826 * on the locator correspond to the low four bits of the | |
4827 * decimal value, | |
4828 * "1" means button depressed | |
4829 * 0 - no buttons down, | |
4830 * 1 - right, | |
4831 * 2 - middle, | |
4832 * 4 - left, | |
4833 * 8 - fourth | |
4834 * Pr is the row coordinate of the locator position in the page, | |
4835 * encoded as an ASCII decimal value. | |
4836 * If Pr is omitted, the locator position is undefined | |
4837 * (outside the terminal window for example). | |
4838 * Pc is the column coordinate of the locator position in the | |
4839 * page, encoded as an ASCII decimal value. | |
4840 * If Pc is omitted, the locator position is undefined | |
4841 * (outside the terminal window for example). | |
4842 * Pp is the page coordinate of the locator position | |
4843 * encoded as an ASCII decimal value. | |
4844 * The page coordinate may be omitted if the locator is on | |
4845 * page one (the default). We ignore it anyway. | |
4846 */ | |
4847 int Pe, Pb, Pr, Pc; | |
4848 | |
4849 p = tp + slen; | |
4850 | |
4851 /* get event status */ | |
4852 Pe = getdigits(&p); | |
4853 if (*p++ != ';') | |
4854 return -1; | |
4855 | |
4856 /* get button status */ | |
4857 Pb = getdigits(&p); | |
4858 if (*p++ != ';') | |
4859 return -1; | |
4860 | |
4861 /* get row status */ | |
4862 Pr = getdigits(&p); | |
4863 if (*p++ != ';') | |
4864 return -1; | |
4865 | |
4866 /* get column status */ | |
4867 Pc = getdigits(&p); | |
4868 | |
4869 /* the page parameter is optional */ | |
4870 if (*p == ';') | |
4871 { | |
4872 p++; | |
4873 (void)getdigits(&p); | |
4874 } | |
4875 if (*p++ != '&') | |
4876 return -1; | |
4877 if (*p++ != 'w') | |
4878 return -1; | |
4879 | |
4880 mouse_code = 0; | |
4881 switch (Pe) | |
4882 { | |
4883 case 0: return -1; /* position request while unavailable */ | |
4884 case 1: /* a response to a locator position request includes | |
4885 the status of all buttons */ | |
4886 Pb &= 7; /* mask off and ignore fourth button */ | |
4887 if (Pb & 4) | |
4888 mouse_code = MOUSE_LEFT; | |
4889 if (Pb & 2) | |
4890 mouse_code = MOUSE_MIDDLE; | |
4891 if (Pb & 1) | |
4892 mouse_code = MOUSE_RIGHT; | |
4893 if (Pb) | |
4894 { | |
4895 held_button = mouse_code; | |
4896 mouse_code |= MOUSE_DRAG; | |
227 | 4897 WantQueryMouse = TRUE; |
7 | 4898 } |
4899 is_drag = TRUE; | |
4900 showmode(); | |
4901 break; | |
4902 case 2: mouse_code = MOUSE_LEFT; | |
227 | 4903 WantQueryMouse = TRUE; |
7 | 4904 break; |
4905 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT; | |
4906 break; | |
4907 case 4: mouse_code = MOUSE_MIDDLE; | |
227 | 4908 WantQueryMouse = TRUE; |
7 | 4909 break; |
4910 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE; | |
4911 break; | |
4912 case 6: mouse_code = MOUSE_RIGHT; | |
227 | 4913 WantQueryMouse = TRUE; |
7 | 4914 break; |
4915 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT; | |
4916 break; | |
4917 case 8: return -1; /* fourth button down */ | |
4918 case 9: return -1; /* fourth button up */ | |
4919 case 10: return -1; /* mouse outside of filter rectangle */ | |
4920 default: return -1; /* should never occur */ | |
4921 } | |
4922 | |
4923 mouse_col = Pc - 1; | |
4924 mouse_row = Pr - 1; | |
4925 | |
4926 slen += (int)(p - (tp + slen)); | |
4927 } | |
4928 # endif /* FEAT_MOUSE_DEC */ | |
4929 # ifdef FEAT_MOUSE_PTERM | |
4930 if (key_name[0] == (int)KS_PTERM_MOUSE) | |
4931 { | |
2237
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
4932 int button, num_clicks, action; |
7 | 4933 |
4934 p = tp + slen; | |
4935 | |
4936 action = getdigits(&p); | |
4937 if (*p++ != ';') | |
4938 return -1; | |
4939 | |
4940 mouse_row = getdigits(&p); | |
4941 if (*p++ != ';') | |
4942 return -1; | |
4943 mouse_col = getdigits(&p); | |
4944 if (*p++ != ';') | |
4945 return -1; | |
4946 | |
4947 button = getdigits(&p); | |
4948 mouse_code = 0; | |
4949 | |
9929
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
4950 switch (button) |
7 | 4951 { |
4952 case 4: mouse_code = MOUSE_LEFT; break; | |
4953 case 1: mouse_code = MOUSE_RIGHT; break; | |
4954 case 2: mouse_code = MOUSE_MIDDLE; break; | |
4955 default: return -1; | |
4956 } | |
4957 | |
9929
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
4958 switch (action) |
7 | 4959 { |
4960 case 31: /* Initial press */ | |
4961 if (*p++ != ';') | |
4962 return -1; | |
4963 | |
4964 num_clicks = getdigits(&p); /* Not used */ | |
4965 break; | |
4966 | |
4967 case 32: /* Release */ | |
4968 mouse_code |= MOUSE_RELEASE; | |
4969 break; | |
4970 | |
4971 case 33: /* Drag */ | |
4972 held_button = mouse_code; | |
4973 mouse_code |= MOUSE_DRAG; | |
4974 break; | |
4975 | |
4976 default: | |
4977 return -1; | |
4978 } | |
4979 | |
4980 if (*p++ != 't') | |
4981 return -1; | |
4982 | |
4983 slen += (p - (tp + slen)); | |
4984 } | |
4985 # endif /* FEAT_MOUSE_PTERM */ | |
4986 | |
4987 /* Interpret the mouse code */ | |
4988 current_button = (mouse_code & MOUSE_CLICK_MASK); | |
4989 if (current_button == MOUSE_RELEASE | |
4990 # ifdef FEAT_MOUSE_XTERM | |
4991 && wheel_code == 0 | |
4992 # endif | |
4993 ) | |
4994 { | |
4995 /* | |
4996 * If we get a mouse drag or release event when | |
4997 * there is no mouse button held down (held_button == | |
4998 * MOUSE_RELEASE), produce a K_IGNORE below. | |
4999 * (can happen when you hold down two buttons | |
5000 * and then let them go, or click in the menu bar, but not | |
5001 * on a menu, and drag into the text). | |
5002 */ | |
5003 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG) | |
5004 is_drag = TRUE; | |
5005 current_button = held_button; | |
5006 } | |
5007 else if (wheel_code == 0) | |
5008 { | |
5009 # ifdef CHECK_DOUBLE_CLICK | |
5010 # ifdef FEAT_MOUSE_GPM | |
5011 # ifdef FEAT_GUI | |
5012 /* | |
5013 * Only for Unix, when GUI or gpm is not active, we handle | |
5014 * multi-clicks here. | |
5015 */ | |
5016 if (gpm_flag == 0 && !gui.in_use) | |
5017 # else | |
5018 if (gpm_flag == 0) | |
5019 # endif | |
5020 # else | |
5021 # ifdef FEAT_GUI | |
5022 if (!gui.in_use) | |
5023 # endif | |
5024 # endif | |
5025 { | |
5026 /* | |
5027 * Compute the time elapsed since the previous mouse click. | |
5028 */ | |
5029 gettimeofday(&mouse_time, NULL); | |
9125
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5030 if (orig_mouse_time.tv_sec == 0) |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5031 { |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5032 /* |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5033 * Avoid computing the difference between mouse_time |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5034 * and orig_mouse_time for the first click, as the |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5035 * difference would be huge and would cause multiplication |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5036 * overflow. |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5037 */ |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5038 timediff = p_mouset; |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5039 } |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5040 else |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5041 { |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5042 timediff = (mouse_time.tv_usec |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5043 - orig_mouse_time.tv_usec) / 1000; |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5044 if (timediff < 0) |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5045 --orig_mouse_time.tv_sec; |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5046 timediff += (mouse_time.tv_sec |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5047 - orig_mouse_time.tv_sec) * 1000; |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5048 } |
7 | 5049 orig_mouse_time = mouse_time; |
5050 if (mouse_code == orig_mouse_code | |
5051 && timediff < p_mouset | |
5052 && orig_num_clicks != 4 | |
5053 && orig_mouse_col == mouse_col | |
5054 && orig_mouse_row == mouse_row | |
683 | 5055 && ((orig_topline == curwin->w_topline |
7 | 5056 #ifdef FEAT_DIFF |
683 | 5057 && orig_topfill == curwin->w_topfill |
7 | 5058 #endif |
683 | 5059 ) |
5060 #ifdef FEAT_WINDOWS | |
5061 /* Double click in tab pages line also works | |
5062 * when window contents changes. */ | |
5063 || (mouse_row == 0 && firstwin->w_winrow > 0) | |
5064 #endif | |
5065 ) | |
5066 ) | |
7 | 5067 ++orig_num_clicks; |
5068 else | |
5069 orig_num_clicks = 1; | |
5070 orig_mouse_col = mouse_col; | |
5071 orig_mouse_row = mouse_row; | |
5072 orig_topline = curwin->w_topline; | |
5073 #ifdef FEAT_DIFF | |
5074 orig_topfill = curwin->w_topfill; | |
5075 #endif | |
5076 } | |
5077 # if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM) | |
5078 else | |
5079 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code); | |
5080 # endif | |
5081 # else | |
5082 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code); | |
5083 # endif | |
5084 is_click = TRUE; | |
5085 orig_mouse_code = mouse_code; | |
5086 } | |
5087 if (!is_drag) | |
5088 held_button = mouse_code & MOUSE_CLICK_MASK; | |
5089 | |
5090 /* | |
5091 * Translate the actual mouse event into a pseudo mouse event. | |
5092 * First work out what modifiers are to be used. | |
5093 */ | |
5094 if (orig_mouse_code & MOUSE_SHIFT) | |
5095 modifiers |= MOD_MASK_SHIFT; | |
5096 if (orig_mouse_code & MOUSE_CTRL) | |
5097 modifiers |= MOD_MASK_CTRL; | |
5098 if (orig_mouse_code & MOUSE_ALT) | |
5099 modifiers |= MOD_MASK_ALT; | |
5100 if (orig_num_clicks == 2) | |
5101 modifiers |= MOD_MASK_2CLICK; | |
5102 else if (orig_num_clicks == 3) | |
5103 modifiers |= MOD_MASK_3CLICK; | |
5104 else if (orig_num_clicks == 4) | |
5105 modifiers |= MOD_MASK_4CLICK; | |
5106 | |
9929
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
5107 /* Work out our pseudo mouse event. Note that MOUSE_RELEASE gets |
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
5108 * added, then it's not mouse up/down. */ |
7 | 5109 key_name[0] = (int)KS_EXTRA; |
9929
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
5110 if (wheel_code != 0 |
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
5111 && (wheel_code & MOUSE_RELEASE) != MOUSE_RELEASE) |
2336
1a4a66f0c871
Make CTRL modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2279
diff
changeset
|
5112 { |
1a4a66f0c871
Make CTRL modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2279
diff
changeset
|
5113 if (wheel_code & MOUSE_CTRL) |
1a4a66f0c871
Make CTRL modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2279
diff
changeset
|
5114 modifiers |= MOD_MASK_CTRL; |
2347
9228765d3e13
Also make ALT modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2336
diff
changeset
|
5115 if (wheel_code & MOUSE_ALT) |
9228765d3e13
Also make ALT modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2336
diff
changeset
|
5116 modifiers |= MOD_MASK_ALT; |
7 | 5117 key_name[1] = (wheel_code & 1) |
5118 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN; | |
2336
1a4a66f0c871
Make CTRL modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2279
diff
changeset
|
5119 } |
7 | 5120 else |
5121 key_name[1] = get_pseudo_mouse_code(current_button, | |
5122 is_click, is_drag); | |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5123 |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5124 /* Make sure the mouse position is valid. Some terminals may |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5125 * return weird values. */ |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5126 if (mouse_col >= Columns) |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5127 mouse_col = Columns - 1; |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5128 if (mouse_row >= Rows) |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5129 mouse_row = Rows - 1; |
7 | 5130 } |
5131 #endif /* FEAT_MOUSE */ | |
5132 | |
5133 #ifdef FEAT_GUI | |
5134 /* | |
5135 * If using the GUI, then we get menu and scrollbar events. | |
5136 * | |
5137 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by | |
5138 * four bytes which are to be taken as a pointer to the vimmenu_T | |
5139 * structure. | |
5140 * | |
1221 | 5141 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr" |
685 | 5142 * is one byte with the tab index. |
5143 * | |
7 | 5144 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed |
5145 * by one byte representing the scrollbar number, and then four bytes | |
5146 * representing a long_u which is the new value of the scrollbar. | |
5147 * | |
5148 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR, | |
5149 * KE_FILLER followed by four bytes representing a long_u which is the | |
5150 * new value of the scrollbar. | |
5151 */ | |
5152 # ifdef FEAT_MENU | |
5153 else if (key_name[0] == (int)KS_MENU) | |
5154 { | |
5155 long_u val; | |
5156 | |
5157 num_bytes = get_long_from_buf(tp + slen, &val); | |
5158 if (num_bytes == -1) | |
5159 return -1; | |
5160 current_menu = (vimmenu_T *)val; | |
5161 slen += num_bytes; | |
936 | 5162 |
5163 /* The menu may have been deleted right after it was used, check | |
5164 * for that. */ | |
5165 if (check_menu_pointer(root_menu, current_menu) == FAIL) | |
5166 { | |
5167 key_name[0] = KS_EXTRA; | |
5168 key_name[1] = (int)KE_IGNORE; | |
5169 } | |
7 | 5170 } |
5171 # endif | |
685 | 5172 # ifdef FEAT_GUI_TABLINE |
5173 else if (key_name[0] == (int)KS_TABLINE) | |
5174 { | |
688 | 5175 /* Selecting tabline tab or using its menu. */ |
685 | 5176 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1); |
5177 if (num_bytes == -1) | |
5178 return -1; | |
5179 current_tab = (int)bytes[0]; | |
1394 | 5180 if (current_tab == 255) /* -1 in a byte gives 255 */ |
5181 current_tab = -1; | |
685 | 5182 slen += num_bytes; |
5183 } | |
688 | 5184 else if (key_name[0] == (int)KS_TABMENU) |
5185 { | |
5186 /* Selecting tabline tab or using its menu. */ | |
5187 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2); | |
5188 if (num_bytes == -1) | |
5189 return -1; | |
5190 current_tab = (int)bytes[0]; | |
5191 current_tabmenu = (int)bytes[1]; | |
5192 slen += num_bytes; | |
5193 } | |
685 | 5194 # endif |
7 | 5195 # ifndef USE_ON_FLY_SCROLL |
5196 else if (key_name[0] == (int)KS_VER_SCROLLBAR) | |
5197 { | |
5198 long_u val; | |
5199 | |
5200 /* Get the last scrollbar event in the queue of the same type */ | |
5201 j = 0; | |
5202 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR | |
5203 && tp[j + 2] != NUL; ++i) | |
5204 { | |
5205 j += 3; | |
5206 num_bytes = get_bytes_from_buf(tp + j, bytes, 1); | |
5207 if (num_bytes == -1) | |
5208 break; | |
5209 if (i == 0) | |
5210 current_scrollbar = (int)bytes[0]; | |
5211 else if (current_scrollbar != (int)bytes[0]) | |
5212 break; | |
5213 j += num_bytes; | |
5214 num_bytes = get_long_from_buf(tp + j, &val); | |
5215 if (num_bytes == -1) | |
5216 break; | |
5217 scrollbar_value = val; | |
5218 j += num_bytes; | |
5219 slen = j; | |
5220 } | |
5221 if (i == 0) /* not enough characters to make one */ | |
5222 return -1; | |
5223 } | |
5224 else if (key_name[0] == (int)KS_HOR_SCROLLBAR) | |
5225 { | |
5226 long_u val; | |
5227 | |
5228 /* Get the last horiz. scrollbar event in the queue */ | |
5229 j = 0; | |
5230 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR | |
5231 && tp[j + 2] != NUL; ++i) | |
5232 { | |
5233 j += 3; | |
5234 num_bytes = get_long_from_buf(tp + j, &val); | |
5235 if (num_bytes == -1) | |
5236 break; | |
5237 scrollbar_value = val; | |
5238 j += num_bytes; | |
5239 slen = j; | |
5240 } | |
5241 if (i == 0) /* not enough characters to make one */ | |
5242 return -1; | |
5243 } | |
5244 # endif /* !USE_ON_FLY_SCROLL */ | |
5245 #endif /* FEAT_GUI */ | |
5246 | |
180 | 5247 /* |
5248 * Change <xHome> to <Home>, <xUp> to <Up>, etc. | |
5249 */ | |
5250 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1])); | |
5251 | |
5252 /* | |
5253 * Add any modifier codes to our string. | |
5254 */ | |
5255 new_slen = 0; /* Length of what will replace the termcode */ | |
5256 if (modifiers != 0) | |
5257 { | |
5258 /* Some keys have the modifier included. Need to handle that here | |
5259 * to make mappings work. */ | |
5260 key = simplify_key(key, &modifiers); | |
5261 if (modifiers != 0) | |
5262 { | |
5263 string[new_slen++] = K_SPECIAL; | |
5264 string[new_slen++] = (int)KS_MODIFIER; | |
5265 string[new_slen++] = modifiers; | |
5266 } | |
5267 } | |
5268 | |
7 | 5269 /* Finally, add the special key code to our string */ |
180 | 5270 key_name[0] = KEY2TERMCAP0(key); |
5271 key_name[1] = KEY2TERMCAP1(key); | |
7 | 5272 if (key_name[0] == KS_KEY) |
1787 | 5273 { |
5274 /* from ":set <M-b>=xx" */ | |
5275 #ifdef FEAT_MBYTE | |
5276 if (has_mbyte) | |
5277 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen); | |
5278 else | |
5279 #endif | |
5280 string[new_slen++] = key_name[1]; | |
5281 } | |
2672 | 5282 else if (new_slen == 0 && key_name[0] == KS_EXTRA |
5283 && key_name[1] == KE_IGNORE) | |
5284 { | |
5285 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED | |
5286 * to indicate what happened. */ | |
5287 retval = KEYLEN_REMOVED; | |
5288 } | |
7 | 5289 else |
5290 { | |
5291 string[new_slen++] = K_SPECIAL; | |
5292 string[new_slen++] = key_name[0]; | |
5293 string[new_slen++] = key_name[1]; | |
5294 } | |
5295 string[new_slen] = NUL; | |
5296 extra = new_slen - slen; | |
5297 if (buf == NULL) | |
5298 { | |
5299 if (extra < 0) | |
5300 /* remove matched chars, taking care of noremap */ | |
5301 del_typebuf(-extra, offset); | |
5302 else if (extra > 0) | |
5303 /* insert the extra space we need */ | |
5304 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE); | |
5305 | |
5306 /* | |
5307 * Careful: del_typebuf() and ins_typebuf() may have reallocated | |
5308 * typebuf.tb_buf[]! | |
5309 */ | |
5310 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string, | |
5311 (size_t)new_slen); | |
5312 } | |
5313 else | |
5314 { | |
5315 if (extra < 0) | |
5316 /* remove matched characters */ | |
5317 mch_memmove(buf + offset, buf + offset - extra, | |
3328 | 5318 (size_t)(*buflen + offset + extra)); |
7 | 5319 else if (extra > 0) |
3328 | 5320 { |
5321 /* Insert the extra space we need. If there is insufficient | |
5322 * space return -1. */ | |
5323 if (*buflen + extra + new_slen >= bufsize) | |
5324 return -1; | |
7 | 5325 mch_memmove(buf + offset + extra, buf + offset, |
3328 | 5326 (size_t)(*buflen - offset)); |
5327 } | |
7 | 5328 mch_memmove(buf + offset, string, (size_t)new_slen); |
3328 | 5329 *buflen = *buflen + extra + new_slen; |
7 | 5330 } |
2672 | 5331 return retval == 0 ? (len + extra + offset) : retval; |
7 | 5332 } |
5333 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5334 #ifdef FEAT_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5335 LOG_TR("normal character"); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5336 #endif |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5337 |
7 | 5338 return 0; /* no match found */ |
5339 } | |
5340 | |
5341 /* | |
5342 * Replace any terminal code strings in from[] with the equivalent internal | |
5343 * vim representation. This is used for the "from" and "to" part of a | |
5344 * mapping, and the "to" part of a menu command. | |
5345 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains | |
5346 * '<'. | |
5347 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER. | |
5348 * | |
5349 * The replacement is done in result[] and finally copied into allocated | |
5350 * memory. If this all works well *bufp is set to the allocated memory and a | |
5351 * pointer to it is returned. If something fails *bufp is set to NULL and from | |
5352 * is returned. | |
5353 * | |
5354 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V | |
5355 * is included, otherwise it is removed (for ":map xx ^V", maps xx to | |
5356 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used | |
5357 * instead of a CTRL-V. | |
5358 */ | |
859 | 5359 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5360 replace_termcodes( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5361 char_u *from, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5362 char_u **bufp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5363 int from_part, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5364 int do_lt, /* also translate <lt> */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5365 int special) /* always accept <key> notation */ |
7 | 5366 { |
5367 int i; | |
5368 int slen; | |
5369 int key; | |
5370 int dlen = 0; | |
5371 char_u *src; | |
5372 int do_backslash; /* backslash is a special character */ | |
5373 int do_special; /* recognize <> key codes */ | |
5374 int do_key_code; /* recognize raw key codes */ | |
5375 char_u *result; /* buffer for resulting string */ | |
5376 | |
5377 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL); | |
859 | 5378 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special; |
7 | 5379 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL); |
5380 | |
5381 /* | |
5382 * Allocate space for the translation. Worst case a single character is | |
5383 * replaced by 6 bytes (shifted special key), plus a NUL at the end. | |
5384 */ | |
5385 result = alloc((unsigned)STRLEN(from) * 6 + 1); | |
5386 if (result == NULL) /* out of memory */ | |
5387 { | |
5388 *bufp = NULL; | |
5389 return from; | |
5390 } | |
5391 | |
5392 src = from; | |
5393 | |
5394 /* | |
5395 * Check for #n at start only: function key n | |
5396 */ | |
5397 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */ | |
5398 { | |
5399 result[dlen++] = K_SPECIAL; | |
5400 result[dlen++] = 'k'; | |
5401 if (src[1] == '0') | |
5402 result[dlen++] = ';'; /* #0 is F10 is "k;" */ | |
5403 else | |
5404 result[dlen++] = src[1]; /* #3 is F3 is "k3" */ | |
5405 src += 2; | |
5406 } | |
5407 | |
5408 /* | |
5409 * Copy each byte from *from to result[dlen] | |
5410 */ | |
5411 while (*src != NUL) | |
5412 { | |
5413 /* | |
5414 * If 'cpoptions' does not contain '<', check for special key codes, | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
5415 * like "<C-S-LeftMouse>" |
7 | 5416 */ |
5417 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0)) | |
5418 { | |
5419 #ifdef FEAT_EVAL | |
5420 /* | |
5421 * Replace <SID> by K_SNR <script-nr> _. | |
5422 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14) | |
5423 */ | |
5424 if (STRNICMP(src, "<SID>", 5) == 0) | |
5425 { | |
5426 if (current_SID <= 0) | |
5427 EMSG(_(e_usingsid)); | |
5428 else | |
5429 { | |
5430 src += 5; | |
5431 result[dlen++] = K_SPECIAL; | |
5432 result[dlen++] = (int)KS_EXTRA; | |
5433 result[dlen++] = (int)KE_SNR; | |
5434 sprintf((char *)result + dlen, "%ld", (long)current_SID); | |
5435 dlen += (int)STRLEN(result + dlen); | |
5436 result[dlen++] = '_'; | |
5437 continue; | |
5438 } | |
5439 } | |
5440 #endif | |
5441 | |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9814
diff
changeset
|
5442 slen = trans_special(&src, result + dlen, TRUE, FALSE); |
7 | 5443 if (slen) |
5444 { | |
5445 dlen += slen; | |
5446 continue; | |
5447 } | |
5448 } | |
5449 | |
5450 /* | |
5451 * If 'cpoptions' does not contain 'k', see if it's an actual key-code. | |
5452 * Note that this is also checked after replacing the <> form. | |
5453 * Single character codes are NOT replaced (e.g. ^H or DEL), because | |
5454 * it could be a character in the file. | |
5455 */ | |
5456 if (do_key_code) | |
5457 { | |
5458 i = find_term_bykeys(src); | |
5459 if (i >= 0) | |
5460 { | |
5461 result[dlen++] = K_SPECIAL; | |
5462 result[dlen++] = termcodes[i].name[0]; | |
5463 result[dlen++] = termcodes[i].name[1]; | |
5464 src += termcodes[i].len; | |
5465 /* If terminal code matched, continue after it. */ | |
5466 continue; | |
5467 } | |
5468 } | |
5469 | |
5470 #ifdef FEAT_EVAL | |
5471 if (do_special) | |
5472 { | |
5473 char_u *p, *s, len; | |
5474 | |
5475 /* | |
5476 * Replace <Leader> by the value of "mapleader". | |
5477 * Replace <LocalLeader> by the value of "maplocalleader". | |
5478 * If "mapleader" or "maplocalleader" isn't set use a backslash. | |
5479 */ | |
5480 if (STRNICMP(src, "<Leader>", 8) == 0) | |
5481 { | |
5482 len = 8; | |
5483 p = get_var_value((char_u *)"g:mapleader"); | |
5484 } | |
5485 else if (STRNICMP(src, "<LocalLeader>", 13) == 0) | |
5486 { | |
5487 len = 13; | |
5488 p = get_var_value((char_u *)"g:maplocalleader"); | |
5489 } | |
5490 else | |
5491 { | |
5492 len = 0; | |
5493 p = NULL; | |
5494 } | |
5495 if (len != 0) | |
5496 { | |
5497 /* Allow up to 8 * 6 characters for "mapleader". */ | |
5498 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6) | |
5499 s = (char_u *)"\\"; | |
5500 else | |
5501 s = p; | |
5502 while (*s != NUL) | |
5503 result[dlen++] = *s++; | |
5504 src += len; | |
5505 continue; | |
5506 } | |
5507 } | |
5508 #endif | |
5509 | |
5510 /* | |
5511 * Remove CTRL-V and ignore the next character. | |
5512 * For "from" side the CTRL-V at the end is included, for the "to" | |
5513 * part it is removed. | |
5514 * If 'cpoptions' does not contain 'B', also accept a backslash. | |
5515 */ | |
5516 key = *src; | |
5517 if (key == Ctrl_V || (do_backslash && key == '\\')) | |
5518 { | |
5519 ++src; /* skip CTRL-V or backslash */ | |
5520 if (*src == NUL) | |
5521 { | |
5522 if (from_part) | |
5523 result[dlen++] = key; | |
5524 break; | |
5525 } | |
5526 } | |
5527 | |
5528 #ifdef FEAT_MBYTE | |
5529 /* skip multibyte char correctly */ | |
474 | 5530 for (i = (*mb_ptr2len)(src); i > 0; --i) |
7 | 5531 #endif |
5532 { | |
5533 /* | |
5534 * If the character is K_SPECIAL, replace it with K_SPECIAL | |
5535 * KS_SPECIAL KE_FILLER. | |
5536 * If compiled with the GUI replace CSI with K_CSI. | |
5537 */ | |
5538 if (*src == K_SPECIAL) | |
5539 { | |
5540 result[dlen++] = K_SPECIAL; | |
5541 result[dlen++] = KS_SPECIAL; | |
5542 result[dlen++] = KE_FILLER; | |
5543 } | |
5544 # ifdef FEAT_GUI | |
5545 else if (*src == CSI) | |
5546 { | |
5547 result[dlen++] = K_SPECIAL; | |
5548 result[dlen++] = KS_EXTRA; | |
5549 result[dlen++] = (int)KE_CSI; | |
5550 } | |
5551 # endif | |
5552 else | |
5553 result[dlen++] = *src; | |
5554 ++src; | |
5555 } | |
5556 } | |
5557 result[dlen] = NUL; | |
5558 | |
5559 /* | |
5560 * Copy the new string to allocated memory. | |
5561 * If this fails, just return from. | |
5562 */ | |
5563 if ((*bufp = vim_strsave(result)) != NULL) | |
5564 from = *bufp; | |
5565 vim_free(result); | |
5566 return from; | |
5567 } | |
5568 | |
5569 /* | |
5570 * Find a termcode with keys 'src' (must be NUL terminated). | |
5571 * Return the index in termcodes[], or -1 if not found. | |
5572 */ | |
5573 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5574 find_term_bykeys(char_u *src) |
7 | 5575 { |
5576 int i; | |
3290 | 5577 int slen = (int)STRLEN(src); |
7 | 5578 |
5579 for (i = 0; i < tc_len; ++i) | |
5580 { | |
3273 | 5581 if (slen == termcodes[i].len |
5582 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0) | |
7 | 5583 return i; |
5584 } | |
5585 return -1; | |
5586 } | |
5587 | |
5588 /* | |
5589 * Gather the first characters in the terminal key codes into a string. | |
5590 * Used to speed up check_termcode(). | |
5591 */ | |
5592 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5593 gather_termleader(void) |
7 | 5594 { |
5595 int i; | |
5596 int len = 0; | |
5597 | |
5598 #ifdef FEAT_GUI | |
5599 if (gui.in_use) | |
5600 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */ | |
5601 #endif | |
5602 #ifdef FEAT_TERMRESPONSE | |
5603 if (check_for_codes) | |
5604 termleader[len++] = DCS; /* the termcode response starts with DCS | |
5605 in 8-bit mode */ | |
5606 #endif | |
5607 termleader[len] = NUL; | |
5608 | |
5609 for (i = 0; i < tc_len; ++i) | |
5610 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL) | |
5611 { | |
5612 termleader[len++] = termcodes[i].code[0]; | |
5613 termleader[len] = NUL; | |
5614 } | |
5615 | |
5616 need_gather = FALSE; | |
5617 } | |
5618 | |
5619 /* | |
5620 * Show all termcodes (for ":set termcap") | |
5621 * This code looks a lot like showoptions(), but is different. | |
5622 */ | |
5623 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5624 show_termcodes(void) |
7 | 5625 { |
5626 int col; | |
5627 int *items; | |
5628 int item_count; | |
5629 int run; | |
5630 int row, rows; | |
5631 int cols; | |
5632 int i; | |
5633 int len; | |
5634 | |
180 | 5635 #define INC3 27 /* try to make three columns */ |
5636 #define INC2 40 /* try to make two columns */ | |
7 | 5637 #define GAP 2 /* spaces between columns */ |
5638 | |
5639 if (tc_len == 0) /* no terminal codes (must be GUI) */ | |
5640 return; | |
5641 items = (int *)alloc((unsigned)(sizeof(int) * tc_len)); | |
5642 if (items == NULL) | |
5643 return; | |
5644 | |
5645 /* Highlight title */ | |
5646 MSG_PUTS_TITLE(_("\n--- Terminal keys ---")); | |
5647 | |
5648 /* | |
5649 * do the loop two times: | |
5650 * 1. display the short items (non-strings and short strings) | |
180 | 5651 * 2. display the medium items (medium length strings) |
5652 * 3. display the long items (remaining strings) | |
7 | 5653 */ |
180 | 5654 for (run = 1; run <= 3 && !got_int; ++run) |
7 | 5655 { |
5656 /* | |
5657 * collect the items in items[] | |
5658 */ | |
5659 item_count = 0; | |
5660 for (i = 0; i < tc_len; i++) | |
5661 { | |
5662 len = show_one_termcode(termcodes[i].name, | |
5663 termcodes[i].code, FALSE); | |
180 | 5664 if (len <= INC3 - GAP ? run == 1 |
5665 : len <= INC2 - GAP ? run == 2 | |
5666 : run == 3) | |
7 | 5667 items[item_count++] = i; |
5668 } | |
5669 | |
5670 /* | |
5671 * display the items | |
5672 */ | |
180 | 5673 if (run <= 2) |
7 | 5674 { |
180 | 5675 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2); |
7 | 5676 if (cols == 0) |
5677 cols = 1; | |
5678 rows = (item_count + cols - 1) / cols; | |
5679 } | |
180 | 5680 else /* run == 3 */ |
7 | 5681 rows = item_count; |
5682 for (row = 0; row < rows && !got_int; ++row) | |
5683 { | |
5684 msg_putchar('\n'); /* go to next line */ | |
5685 if (got_int) /* 'q' typed in more */ | |
5686 break; | |
5687 col = 0; | |
5688 for (i = row; i < item_count; i += rows) | |
5689 { | |
5690 msg_col = col; /* make columns */ | |
5691 show_one_termcode(termcodes[items[i]].name, | |
5692 termcodes[items[i]].code, TRUE); | |
180 | 5693 if (run == 2) |
5694 col += INC2; | |
5695 else | |
5696 col += INC3; | |
7 | 5697 } |
5698 out_flush(); | |
5699 ui_breakcheck(); | |
5700 } | |
5701 } | |
5702 vim_free(items); | |
5703 } | |
5704 | |
5705 /* | |
5706 * Show one termcode entry. | |
5707 * Output goes into IObuff[] | |
5708 */ | |
5709 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5710 show_one_termcode(char_u *name, char_u *code, int printit) |
7 | 5711 { |
5712 char_u *p; | |
5713 int len; | |
5714 | |
5715 if (name[0] > '~') | |
5716 { | |
5717 IObuff[0] = ' '; | |
5718 IObuff[1] = ' '; | |
5719 IObuff[2] = ' '; | |
5720 IObuff[3] = ' '; | |
5721 } | |
5722 else | |
5723 { | |
5724 IObuff[0] = 't'; | |
5725 IObuff[1] = '_'; | |
5726 IObuff[2] = name[0]; | |
5727 IObuff[3] = name[1]; | |
5728 } | |
5729 IObuff[4] = ' '; | |
5730 | |
5731 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0); | |
5732 if (p[1] != 't') | |
5733 STRCPY(IObuff + 5, p); | |
5734 else | |
5735 IObuff[5] = NUL; | |
5736 len = (int)STRLEN(IObuff); | |
5737 do | |
5738 IObuff[len++] = ' '; | |
5739 while (len < 17); | |
5740 IObuff[len] = NUL; | |
5741 if (code == NULL) | |
5742 len += 4; | |
5743 else | |
5744 len += vim_strsize(code); | |
5745 | |
5746 if (printit) | |
5747 { | |
5748 msg_puts(IObuff); | |
5749 if (code == NULL) | |
5750 msg_puts((char_u *)"NULL"); | |
5751 else | |
5752 msg_outtrans(code); | |
5753 } | |
5754 return len; | |
5755 } | |
5756 | |
5757 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) | |
5758 /* | |
5759 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used | |
5760 * termcap codes from the terminal itself. | |
5761 * We get them one by one to avoid a very long response string. | |
5762 */ | |
6102 | 5763 static int xt_index_in = 0; |
5764 static int xt_index_out = 0; | |
5765 | |
7 | 5766 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5767 req_codes_from_term(void) |
7 | 5768 { |
5769 xt_index_out = 0; | |
5770 xt_index_in = 0; | |
5771 req_more_codes_from_term(); | |
5772 } | |
5773 | |
5774 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5775 req_more_codes_from_term(void) |
7 | 5776 { |
5777 char buf[11]; | |
5778 int old_idx = xt_index_out; | |
5779 | |
5780 /* Don't do anything when going to exit. */ | |
5781 if (exiting) | |
5782 return; | |
5783 | |
5784 /* Send up to 10 more requests out than we received. Avoid sending too | |
5785 * many, there can be a buffer overflow somewhere. */ | |
5786 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL) | |
5787 { | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5788 # ifdef DEBUG_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5789 char dbuf[100]; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5790 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5791 sprintf(dbuf, "Requesting XT %d: %s", |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5792 xt_index_out, key_names[xt_index_out]); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5793 log_tr(dbuf); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5794 # endif |
7 | 5795 sprintf(buf, "\033P+q%02x%02x\033\\", |
5796 key_names[xt_index_out][0], key_names[xt_index_out][1]); | |
5797 out_str_nf((char_u *)buf); | |
5798 ++xt_index_out; | |
5799 } | |
5800 | |
5801 /* Send the codes out right away. */ | |
5802 if (xt_index_out != old_idx) | |
5803 out_flush(); | |
5804 } | |
5805 | |
5806 /* | |
5807 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'. | |
5808 * A "0" instead of the "1" indicates a code that isn't supported. | |
5809 * Both <name> and <string> are encoded in hex. | |
5810 * "code" points to the "0" or "1". | |
5811 */ | |
5812 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5813 got_code_from_term(char_u *code, int len) |
7 | 5814 { |
5815 #define XT_LEN 100 | |
5816 char_u name[3]; | |
5817 char_u str[XT_LEN]; | |
5818 int i; | |
5819 int j = 0; | |
5820 int c; | |
5821 | |
5822 /* A '1' means the code is supported, a '0' means it isn't. | |
5823 * When half the length is > XT_LEN we can't use it. | |
5824 * Our names are currently all 2 characters. */ | |
5825 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN) | |
5826 { | |
5827 /* Get the name from the response and find it in the table. */ | |
5828 name[0] = hexhex2nr(code + 3); | |
5829 name[1] = hexhex2nr(code + 5); | |
5830 name[2] = NUL; | |
5831 for (i = 0; key_names[i] != NULL; ++i) | |
5832 { | |
5833 if (STRCMP(key_names[i], name) == 0) | |
5834 { | |
5835 xt_index_in = i; | |
5836 break; | |
5837 } | |
5838 } | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5839 # ifdef DEBUG_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5840 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5841 char buf[100]; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5842 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5843 sprintf(buf, "Received XT %d: %s", xt_index_in, (char *)name); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5844 log_tr(buf); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5845 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5846 # endif |
7 | 5847 if (key_names[i] != NULL) |
5848 { | |
5849 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2) | |
5850 str[j++] = c; | |
5851 str[j] = NUL; | |
5852 if (name[0] == 'C' && name[1] == 'o') | |
5853 { | |
5854 /* Color count is not a key code. */ | |
5855 i = atoi((char *)str); | |
5856 if (i != t_colors) | |
5857 { | |
5858 /* Nr of colors changed, initialize highlighting and | |
680 | 5859 * redraw everything. This causes a redraw, which usually |
5860 * clears the message. Try keeping the message if it | |
5861 * might work. */ | |
5862 set_keep_msg_from_hist(); | |
7 | 5863 set_color_count(i); |
5864 init_highlight(TRUE, FALSE); | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5865 #ifdef DEBUG_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5866 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5867 char buf[100]; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5868 int r = redraw_asap(CLEAR); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5869 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5870 sprintf(buf, "Received t_Co, redraw_asap(): %d", r); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5871 log_tr(buf); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5872 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5873 #else |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5874 redraw_asap(CLEAR); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5875 #endif |
7 | 5876 } |
5877 } | |
5878 else | |
5879 { | |
5880 /* First delete any existing entry with the same code. */ | |
5881 i = find_term_bykeys(str); | |
5882 if (i >= 0) | |
5883 del_termcode_idx(i); | |
180 | 5884 add_termcode(name, str, ATC_FROM_TERM); |
7 | 5885 } |
5886 } | |
5887 } | |
5888 | |
5889 /* May request more codes now that we received one. */ | |
5890 ++xt_index_in; | |
5891 req_more_codes_from_term(); | |
5892 } | |
5893 | |
5894 /* | |
5895 * Check if there are any unanswered requests and deal with them. | |
5896 * This is called before starting an external program or getting direct | |
5897 * keyboard input. We don't want responses to be send to that program or | |
5898 * handled as typed text. | |
5899 */ | |
5900 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5901 check_for_codes_from_term(void) |
7 | 5902 { |
5903 int c; | |
5904 | |
5905 /* If no codes requested or all are answered, no need to wait. */ | |
5906 if (xt_index_out == 0 || xt_index_out == xt_index_in) | |
5907 return; | |
5908 | |
5909 /* Vgetc() will check for and handle any response. | |
5910 * Keep calling vpeekc() until we don't get any responses. */ | |
5911 ++no_mapping; | |
5912 ++allow_keys; | |
5913 for (;;) | |
5914 { | |
5915 c = vpeekc(); | |
5916 if (c == NUL) /* nothing available */ | |
5917 break; | |
5918 | |
5919 /* If a response is recognized it's replaced with K_IGNORE, must read | |
5920 * it from the input stream. If there is no K_IGNORE we can't do | |
5921 * anything, break here (there might be some responses further on, but | |
5922 * we don't want to throw away any typed chars). */ | |
5923 if (c != K_SPECIAL && c != K_IGNORE) | |
5924 break; | |
5925 c = vgetc(); | |
5926 if (c != K_IGNORE) | |
5927 { | |
5928 vungetc(c); | |
5929 break; | |
5930 } | |
5931 } | |
5932 --no_mapping; | |
5933 --allow_keys; | |
5934 } | |
5935 #endif | |
5936 | |
5937 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
5938 /* | |
5939 * Translate an internal mapping/abbreviation representation into the | |
5940 * corresponding external one recognized by :map/:abbrev commands; | |
5941 * respects the current B/k/< settings of 'cpoption'. | |
5942 * | |
5943 * This function is called when expanding mappings/abbreviations on the | |
1902 | 5944 * command-line, and for building the "Ambiguous mapping..." error message. |
7 | 5945 * |
5946 * It uses a growarray to build the translation string since the | |
5947 * latter can be wider than the original description. The caller has to | |
5948 * free the string afterwards. | |
5949 * | |
5950 * Returns NULL when there is a problem. | |
5951 */ | |
5952 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5953 translate_mapping( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5954 char_u *str, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5955 int expmap) /* TRUE when expanding mappings on command-line */ |
7 | 5956 { |
5957 garray_T ga; | |
5958 int c; | |
5959 int modifiers; | |
5960 int cpo_bslash; | |
5961 int cpo_special; | |
5962 int cpo_keycode; | |
5963 | |
5964 ga_init(&ga); | |
5965 ga.ga_itemsize = 1; | |
5966 ga.ga_growsize = 40; | |
5967 | |
5968 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL); | |
5969 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL); | |
5970 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL); | |
5971 | |
5972 for (; *str; ++str) | |
5973 { | |
5974 c = *str; | |
5975 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) | |
5976 { | |
5977 modifiers = 0; | |
5978 if (str[1] == KS_MODIFIER) | |
5979 { | |
5980 str++; | |
5981 modifiers = *++str; | |
5982 c = *++str; | |
5983 } | |
5984 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers) | |
5985 { | |
5986 int i; | |
5987 | |
5988 /* try to find special key in termcodes */ | |
5989 for (i = 0; i < tc_len; ++i) | |
5990 if (termcodes[i].name[0] == str[1] | |
5991 && termcodes[i].name[1] == str[2]) | |
5992 break; | |
5993 if (i < tc_len) | |
5994 { | |
5995 ga_concat(&ga, termcodes[i].code); | |
5996 str += 2; | |
5997 continue; /* for (str) */ | |
5998 } | |
5999 } | |
6000 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) | |
6001 { | |
6002 if (expmap && cpo_special) | |
6003 { | |
6004 ga_clear(&ga); | |
6005 return NULL; | |
6006 } | |
6007 c = TO_SPECIAL(str[1], str[2]); | |
6008 if (c == K_ZERO) /* display <Nul> as ^@ */ | |
6009 c = NUL; | |
6010 str += 2; | |
6011 } | |
6012 if (IS_SPECIAL(c) || modifiers) /* special key */ | |
6013 { | |
6014 if (expmap && cpo_special) | |
6015 { | |
6016 ga_clear(&ga); | |
6017 return NULL; | |
6018 } | |
6019 ga_concat(&ga, get_special_key_name(c, modifiers)); | |
6020 continue; /* for (str) */ | |
6021 } | |
6022 } | |
6023 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V | |
6024 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash)) | |
6025 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\'); | |
6026 if (c) | |
6027 ga_append(&ga, c); | |
6028 } | |
6029 ga_append(&ga, NUL); | |
6030 return (char_u *)(ga.ga_data); | |
6031 } | |
6032 #endif | |
6033 | |
6034 #if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO) | |
6035 static char ksme_str[20]; | |
6036 static char ksmr_str[20]; | |
6037 static char ksmd_str[20]; | |
6038 | |
6039 /* | |
6040 * For Win32 console: update termcap codes for existing console attributes. | |
6041 */ | |
6042 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6043 update_tcap(int attr) |
7 | 6044 { |
6045 struct builtin_term *p; | |
6046 | |
6047 p = find_builtin_term(DEFAULT_TERM); | |
6048 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr); | |
6049 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"), | |
6050 attr | 0x08); /* FOREGROUND_INTENSITY */ | |
6051 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"), | |
6052 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4)); | |
6053 | |
6054 while (p->bt_string != NULL) | |
6055 { | |
6056 if (p->bt_entry == (int)KS_ME) | |
6057 p->bt_string = &ksme_str[0]; | |
6058 else if (p->bt_entry == (int)KS_MR) | |
6059 p->bt_string = &ksmr_str[0]; | |
6060 else if (p->bt_entry == (int)KS_MD) | |
6061 p->bt_string = &ksmd_str[0]; | |
6062 ++p; | |
6063 } | |
6064 } | |
6065 #endif | |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6066 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
6067 #if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO) |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6068 static int |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6069 hex_digit(int c) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6070 { |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6071 if (isdigit(c)) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6072 return c - '0'; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6073 c = TOLOWER_ASC(c); |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6074 if (c >= 'a' && c <= 'f') |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6075 return c - 'a' + 10; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6076 return 0x1ffffff; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6077 } |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6078 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6079 guicolor_T |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6080 gui_get_color_cmn(char_u *name) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6081 { |
10512
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6082 /* On MS-Windows an RGB macro is available and it produces 0x00bbggrr color |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6083 * values as used by the MS-Windows GDI api. It should be used only for |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6084 * MS-Windows GDI builds. */ |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6085 # if defined(RGB) && defined(WIN32) && !defined(FEAT_GUI) |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6086 # undef RGB |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6087 # endif |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6088 # ifndef RGB |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6089 # define RGB(r, g, b) ((r<<16) | (g<<8) | (b)) |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6090 # endif |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6091 # define LINE_LEN 100 |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6092 FILE *fd; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6093 char line[LINE_LEN]; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6094 char_u *fname; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6095 int r, g, b, i; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6096 guicolor_T color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6097 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6098 struct rgbcolor_table_S { |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6099 char_u *color_name; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6100 guicolor_T color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6101 }; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6102 |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6103 /* Only non X11 colors (not present in rgb.txt) and colors in |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6104 * color_names[], useful when $VIMRUNTIME is not found,. */ |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6105 static struct rgbcolor_table_S rgb_table[] = { |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6106 {(char_u *)"black", RGB(0x00, 0x00, 0x00)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6107 {(char_u *)"blue", RGB(0x00, 0x00, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6108 {(char_u *)"brown", RGB(0xA5, 0x2A, 0x2A)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6109 {(char_u *)"cyan", RGB(0x00, 0xFF, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6110 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x8B)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6111 {(char_u *)"darkcyan", RGB(0x00, 0x8B, 0x8B)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6112 {(char_u *)"darkgray", RGB(0xA9, 0xA9, 0xA9)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6113 {(char_u *)"darkgreen", RGB(0x00, 0x64, 0x00)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6114 {(char_u *)"darkgrey", RGB(0xA9, 0xA9, 0xA9)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6115 {(char_u *)"darkmagenta", RGB(0x8B, 0x00, 0x8B)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6116 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6117 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, /* No X11 */ |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6118 {(char_u *)"gray", RGB(0xBE, 0xBE, 0xBE)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6119 {(char_u *)"green", RGB(0x00, 0xFF, 0x00)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6120 {(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)}, |
9814
045937335095
commit https://github.com/vim/vim/commit/2147746cf816fad00e301c6638df28a4287c9aae
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
6121 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)}, |
9601
9cc49b86f613
commit https://github.com/vim/vim/commit/ca8942c6e331a69ddd533dd78931f399f7dcaa79
Christian Brabandt <cb@256bit.org>
parents:
9591
diff
changeset
|
6122 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)}, |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6123 {(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6124 {(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6125 {(char_u *)"lightgray", RGB(0xD3, 0xD3, 0xD3)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6126 {(char_u *)"lightgreen", RGB(0x90, 0xEE, 0x90)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6127 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6128 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, /* No X11 */ |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6129 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, /* No X11 */ |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6130 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xE0)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6131 {(char_u *)"magenta", RGB(0xFF, 0x00, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6132 {(char_u *)"red", RGB(0xFF, 0x00, 0x00)}, |
9601
9cc49b86f613
commit https://github.com/vim/vim/commit/ca8942c6e331a69ddd533dd78931f399f7dcaa79
Christian Brabandt <cb@256bit.org>
parents:
9591
diff
changeset
|
6133 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)}, |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6134 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6135 {(char_u *)"yellow", RGB(0xFF, 0xFF, 0x00)}, |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6136 }; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6137 |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6138 static struct rgbcolor_table_S *colornames_table; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6139 static int size = 0; |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6140 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6141 if (name[0] == '#' && STRLEN(name) == 7) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6142 { |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6143 /* Name is in "#rrggbb" format */ |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6144 color = RGB(((hex_digit(name[1]) << 4) + hex_digit(name[2])), |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6145 ((hex_digit(name[3]) << 4) + hex_digit(name[4])), |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6146 ((hex_digit(name[5]) << 4) + hex_digit(name[6]))); |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6147 if (color > 0xffffff) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6148 return INVALCOLOR; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6149 return color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6150 } |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6151 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6152 /* Check if the name is one of the colors we know */ |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6153 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6154 if (STRICMP(name, rgb_table[i].color_name) == 0) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6155 return rgb_table[i].color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6156 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6157 /* |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6158 * Last attempt. Look in the file "$VIM/rgb.txt". |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6159 */ |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6160 if (size == 0) |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6161 { |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6162 int counting; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6163 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6164 /* colornames_table not yet initialized */ |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6165 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt"); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6166 if (fname == NULL) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6167 return INVALCOLOR; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6168 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6169 fd = fopen((char *)fname, "rt"); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6170 vim_free(fname); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6171 if (fd == NULL) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6172 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6173 if (p_verbose > 1) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6174 verb_msg((char_u *)_("Cannot open $VIMRUNTIME/rgb.txt")); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6175 return INVALCOLOR; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6176 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6177 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6178 for (counting = 1; counting >= 0; --counting) |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6179 { |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6180 if (!counting) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6181 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6182 colornames_table = (struct rgbcolor_table_S *)alloc( |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6183 (unsigned)(sizeof(struct rgbcolor_table_S) * size)); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6184 if (colornames_table == NULL) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6185 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6186 fclose(fd); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6187 return INVALCOLOR; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6188 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6189 rewind(fd); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6190 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6191 size = 0; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6192 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6193 while (!feof(fd)) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6194 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6195 size_t len; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6196 int pos; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6197 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6198 ignoredp = fgets(line, LINE_LEN, fd); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6199 len = strlen(line); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6200 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6201 if (len <= 1 || line[len - 1] != '\n') |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6202 continue; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6203 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6204 line[len - 1] = '\0'; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6205 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6206 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6207 if (i != 3) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6208 continue; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6209 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6210 if (!counting) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6211 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6212 char_u *s = vim_strsave((char_u *)line + pos); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6213 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6214 if (s == NULL) |
9628
fefd0551aa9d
commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents:
9601
diff
changeset
|
6215 { |
fefd0551aa9d
commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents:
9601
diff
changeset
|
6216 fclose(fd); |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6217 return INVALCOLOR; |
9628
fefd0551aa9d
commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents:
9601
diff
changeset
|
6218 } |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6219 colornames_table[size].color_name = s; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6220 colornames_table[size].color = (guicolor_T)RGB(r, g, b); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6221 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6222 size++; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6223 } |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6224 } |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6225 fclose(fd); |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6226 } |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6227 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6228 for (i = 0; i < size; i++) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6229 if (STRICMP(name, colornames_table[i].color_name) == 0) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6230 return colornames_table[i].color; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6231 |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6232 return INVALCOLOR; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6233 } |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6234 #endif |