blob: 518086853fa4f50ff3dc04a0bd7a7ae05837ac41 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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 *
Bram Moolenaar48e330a2016-02-23 14:53:34 +010013 * primitive termcap support for Amiga and Win32 included
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
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
Bram Moolenaare60acc12011-05-10 16:41:25 +020055 * structures with all entries, as such a structure is too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +000056 *
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 */
68struct 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
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010077static void parse_builtin_tcap(char_u *s);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010078static void gather_termleader(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000079#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010080static void req_codes_from_term(void);
81static void req_more_codes_from_term(void);
82static void got_code_from_term(char_u *code, int len);
83static void check_for_codes_from_term(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000084#endif
85#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +000086 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
87 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010088static int get_bytes_from_buf(char_u *, char_u *, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010090static void del_termcode_idx(int idx);
91static int term_is_builtin(char_u *name);
92static int term_7to8bit(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000093
94#ifdef HAVE_TGETENT
Bram Moolenaarf9e3e092019-01-13 23:38:42 +010095static char *tgetent_error(char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +000096
97/*
98 * Here is our own prototype for tgetstr(), any prototypes from the include
99 * files have been disabled by the define at the start of this file.
100 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100101char *tgetstr(char *, char **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102
103# ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +0200104 /* Change this to "if 1" to debug what happens with termresponse. */
105# if 0
106# define DEBUG_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +0200107static void log_tr(const char *fmt, ...);
108# define LOG_TR(msg) log_tr msg
Bram Moolenaar2951b772013-07-03 12:45:31 +0200109# else
Bram Moolenaarb255b902018-04-24 21:40:10 +0200110# define LOG_TR(msg) do { /**/ } while (0)
Bram Moolenaar2951b772013-07-03 12:45:31 +0200111# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200112
113# define STATUS_GET 1 /* send request when switching to RAW mode */
114# define STATUS_SENT 2 /* did send request, waiting for response */
115# define STATUS_GOT 3 /* received response */
116
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117/* Request Terminal Version status: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200118static int crv_status = STATUS_GET;
119
Bram Moolenaar9584b312013-03-13 19:29:28 +0100120/* Request Cursor position report: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200121static int u7_status = STATUS_GET;
122
Bram Moolenaar9377df32017-10-15 13:22:01 +0200123# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200124/* Request foreground color report: */
125static int rfg_status = STATUS_GET;
126static int fg_r = 0;
127static int fg_g = 0;
128static int fg_b = 0;
129static int bg_r = 255;
130static int bg_g = 255;
131static int bg_b = 255;
Bram Moolenaar9377df32017-10-15 13:22:01 +0200132# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200133
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200134/* Request background color report: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200135static int rbg_status = STATUS_GET;
136
Bram Moolenaar4db25542017-08-28 22:43:05 +0200137/* Request cursor blinking mode report: */
138static int rbm_status = STATUS_GET;
139
140/* Request cursor style report: */
141static int rcs_status = STATUS_GET;
Bram Moolenaar89894aa2018-03-05 22:43:10 +0100142
143/* Request windos position report: */
144static int winpos_status = STATUS_GET;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145# endif
146
147/*
148 * Don't declare these variables if termcap.h contains them.
149 * Autoconf checks if these variables should be declared extern (not all
150 * systems have them).
151 * Some versions define ospeed to be speed_t, but that is incompatible with
152 * BSD, where ospeed is short and speed_t is long.
153 */
154# ifndef HAVE_OSPEED
155# ifdef OSPEED_EXTERN
156extern short ospeed;
157# else
158short ospeed;
159# endif
160# endif
161# ifndef HAVE_UP_BC_PC
162# ifdef UP_BC_PC_EXTERN
163extern char *UP, *BC, PC;
164# else
165char *UP, *BC, PC;
166# endif
167# endif
168
169# define TGETSTR(s, p) vim_tgetstr((s), (p))
170# define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100171static char_u *vim_tgetstr(char *s, char_u **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172#endif /* HAVE_TGETENT */
173
174static int detected_8bit = FALSE; /* detected 8-bit terminal */
175
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200176#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200177/* When the cursor shape was detected these values are used:
Bram Moolenaar4db25542017-08-28 22:43:05 +0200178 * 1: block, 2: underline, 3: vertical bar */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200179static int initial_cursor_shape = 0;
Bram Moolenaar4db25542017-08-28 22:43:05 +0200180
181/* The blink flag from the style response may be inverted from the actual
182 * blinking state, xterm XORs the flags. */
183static int initial_cursor_shape_blink = FALSE;
184
185/* The blink flag from the blinking-cursor mode response */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200186static int initial_cursor_blink = FALSE;
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200187#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200188
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000189static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190{
191
192#if defined(FEAT_GUI)
193/*
194 * GUI pseudo term-cap.
195 */
196 {(int)KS_NAME, "gui"},
197 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")},
198 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")},
199# ifdef TERMINFO
200 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")},
201# else
202 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")},
203# endif
204 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")},
205# ifdef TERMINFO
206 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
207 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209# else
210 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
211 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213# endif
214 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")},
215 /* attributes switched on with 'h', off with * 'H' */
216 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */
217 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */
218 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */
219 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */
220 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */
221 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */
222 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000223 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */
224 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200225 {(int)KS_STE, IF_EB("\033|4C", ESC_STR "|4C")}, /* HL_STRIKETHROUGH */
226 {(int)KS_STS, IF_EB("\033|4c", ESC_STR "|4c")}, /* HL_STRIKETHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */
228 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */
229 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
230 {(int)KS_MS, "y"},
231 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100232 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 {(int)KS_LE, "\b"}, /* cursor-left = BS */
234 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */
235# ifdef TERMINFO
236 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")},
237# else
238 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")},
239# endif
240 /* there are no key sequences here, the GUI sequences are recognized
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000241 * in check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242#endif
243
244#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245
246# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
247/*
248 * Amiga console window, default for Amiga
249 */
250 {(int)KS_NAME, "amiga"},
251 {(int)KS_CE, "\033[K"},
252 {(int)KS_CD, "\033[J"},
253 {(int)KS_AL, "\033[L"},
254# ifdef TERMINFO
255 {(int)KS_CAL, "\033[%p1%dL"},
256# else
257 {(int)KS_CAL, "\033[%dL"},
258# endif
259 {(int)KS_DL, "\033[M"},
260# ifdef TERMINFO
261 {(int)KS_CDL, "\033[%p1%dM"},
262# else
263 {(int)KS_CDL, "\033[%dM"},
264# endif
265 {(int)KS_CL, "\014"},
266 {(int)KS_VI, "\033[0 p"},
267 {(int)KS_VE, "\033[1 p"},
268 {(int)KS_ME, "\033[0m"},
269 {(int)KS_MR, "\033[7m"},
270 {(int)KS_MD, "\033[1m"},
271 {(int)KS_SE, "\033[0m"},
272 {(int)KS_SO, "\033[33m"},
273 {(int)KS_US, "\033[4m"},
274 {(int)KS_UE, "\033[0m"},
275 {(int)KS_CZH, "\033[3m"},
276 {(int)KS_CZR, "\033[0m"},
277#if defined(__MORPHOS__) || defined(__AROS__)
278 {(int)KS_CCO, "8"}, /* allow 8 colors */
279# ifdef TERMINFO
280 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
281 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
282# else
283 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
284 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
285# endif
286 {(int)KS_OP, "\033[m"}, /* reset colors */
287#endif
288 {(int)KS_MS, "y"},
289 {(int)KS_UT, "y"}, /* guessed */
290 {(int)KS_LE, "\b"},
291# ifdef TERMINFO
292 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
293# else
294 {(int)KS_CM, "\033[%i%d;%dH"},
295# endif
296#if defined(__MORPHOS__)
297 {(int)KS_SR, "\033M"},
298#endif
299# ifdef TERMINFO
300 {(int)KS_CRI, "\033[%p1%dC"},
301# else
302 {(int)KS_CRI, "\033[%dC"},
303# endif
304 {K_UP, "\233A"},
305 {K_DOWN, "\233B"},
306 {K_LEFT, "\233D"},
307 {K_RIGHT, "\233C"},
308 {K_S_UP, "\233T"},
309 {K_S_DOWN, "\233S"},
310 {K_S_LEFT, "\233 A"},
311 {K_S_RIGHT, "\233 @"},
312 {K_S_TAB, "\233Z"},
313 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */
314 {K_F2, "\233\061~"},
315 {K_F3, "\233\062~"},
316 {K_F4, "\233\063~"},
317 {K_F5, "\233\064~"},
318 {K_F6, "\233\065~"},
319 {K_F7, "\233\066~"},
320 {K_F8, "\233\067~"},
321 {K_F9, "\233\070~"},
322 {K_F10, "\233\071~"},
323 {K_S_F1, "\233\061\060~"},
324 {K_S_F2, "\233\061\061~"},
325 {K_S_F3, "\233\061\062~"},
326 {K_S_F4, "\233\061\063~"},
327 {K_S_F5, "\233\061\064~"},
328 {K_S_F6, "\233\061\065~"},
329 {K_S_F7, "\233\061\066~"},
330 {K_S_F8, "\233\061\067~"},
331 {K_S_F9, "\233\061\070~"},
332 {K_S_F10, "\233\061\071~"},
333 {K_HELP, "\233?~"},
334 {K_INS, "\233\064\060~"}, /* 101 key keyboard */
335 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */
336 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */
337 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */
338 {K_END, "\233\064\065~"}, /* 101 key keyboard */
339
340 {BT_EXTRA_KEYS, ""},
341 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */
342 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */
343 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */
344# endif
345
346# if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
347/*
348 * almost standard ANSI terminal, default for bebox
349 */
350 {(int)KS_NAME, "beos-ansi"},
351 {(int)KS_CE, "\033[K"},
352 {(int)KS_CD, "\033[J"},
353 {(int)KS_AL, "\033[L"},
354# ifdef TERMINFO
355 {(int)KS_CAL, "\033[%p1%dL"},
356# else
357 {(int)KS_CAL, "\033[%dL"},
358# endif
359 {(int)KS_DL, "\033[M"},
360# ifdef TERMINFO
361 {(int)KS_CDL, "\033[%p1%dM"},
362# else
363 {(int)KS_CDL, "\033[%dM"},
364# endif
365#ifdef BEOS_PR_OR_BETTER
366# ifdef TERMINFO
367 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
368# else
369 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */
370# endif
371#endif
372 {(int)KS_CL, "\033[H\033[2J"},
373#ifdef notyet
374 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */
375 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */
376#endif
377 {(int)KS_ME, "\033[m"}, /* normal mode */
378 {(int)KS_MR, "\033[7m"}, /* reverse */
379 {(int)KS_MD, "\033[1m"}, /* bold */
380 {(int)KS_SO, "\033[31m"}, /* standout mode: red */
381 {(int)KS_SE, "\033[m"}, /* standout end */
382 {(int)KS_CZH, "\033[35m"}, /* italic: purple */
383 {(int)KS_CZR, "\033[m"}, /* italic end */
384 {(int)KS_US, "\033[4m"}, /* underscore mode */
385 {(int)KS_UE, "\033[m"}, /* underscore end */
386 {(int)KS_CCO, "8"}, /* allow 8 colors */
387# ifdef TERMINFO
388 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
389 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
390# else
391 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
392 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
393# endif
394 {(int)KS_OP, "\033[m"}, /* reset colors */
395 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */
396 {(int)KS_UT, "y"}, /* guessed */
397 {(int)KS_LE, "\b"},
398# ifdef TERMINFO
399 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
400# else
401 {(int)KS_CM, "\033[%i%d;%dH"},
402# endif
403 {(int)KS_SR, "\033M"},
404# ifdef TERMINFO
405 {(int)KS_CRI, "\033[%p1%dC"},
406# else
407 {(int)KS_CRI, "\033[%dC"},
408# endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200409# if defined(BEOS_DR8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 {(int)KS_DB, ""}, /* hack! see screen.c */
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200411# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412
413 {K_UP, "\033[A"},
414 {K_DOWN, "\033[B"},
415 {K_LEFT, "\033[D"},
416 {K_RIGHT, "\033[C"},
417# endif
418
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200419# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420/*
421 * standard ANSI terminal, default for unix
422 */
423 {(int)KS_NAME, "ansi"},
424 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
425 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
426# ifdef TERMINFO
427 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
428# else
429 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
430# endif
431 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
432# ifdef TERMINFO
433 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
434# else
435 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
436# endif
437 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
438 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
439 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
440 {(int)KS_MS, "y"},
441 {(int)KS_UT, "y"}, /* guessed */
442 {(int)KS_LE, "\b"},
443# ifdef TERMINFO
444 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")},
445# else
446 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
447# endif
448# ifdef TERMINFO
449 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
450# else
451 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
452# endif
453# endif
454
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200455# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456/*
457 * These codes are valid when nansi.sys or equivalent has been installed.
458 * Function keys on a PC are preceded with a NUL. These are converted into
459 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
460 * CTRL-arrow is used instead of SHIFT-arrow.
461 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 {(int)KS_NAME, "pcansi"},
463 {(int)KS_DL, "\033[M"},
464 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 {(int)KS_CE, "\033[K"},
466 {(int)KS_CL, "\033[2J"},
467 {(int)KS_ME, "\033[0m"},
468 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */
469 {(int)KS_MD, "\033[1m"}, /* bold: white text */
470 {(int)KS_SE, "\033[0m"}, /* standout end */
471 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */
472 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */
473 {(int)KS_CZR, "\033[0m"}, /* italic mode end */
474 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */
475 {(int)KS_UE, "\033[0m"}, /* underscore mode end */
476 {(int)KS_CCO, "8"}, /* allow 8 colors */
477# ifdef TERMINFO
478 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
479 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
480# else
481 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
482 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
483# endif
484 {(int)KS_OP, "\033[0m"}, /* reset colors */
485 {(int)KS_MS, "y"},
486 {(int)KS_UT, "y"}, /* guessed */
487 {(int)KS_LE, "\b"},
488# ifdef TERMINFO
489 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
490# else
491 {(int)KS_CM, "\033[%i%d;%dH"},
492# endif
493# ifdef TERMINFO
494 {(int)KS_CRI, "\033[%p1%dC"},
495# else
496 {(int)KS_CRI, "\033[%dC"},
497# endif
498 {K_UP, "\316H"},
499 {K_DOWN, "\316P"},
500 {K_LEFT, "\316K"},
501 {K_RIGHT, "\316M"},
502 {K_S_LEFT, "\316s"},
503 {K_S_RIGHT, "\316t"},
504 {K_F1, "\316;"},
505 {K_F2, "\316<"},
506 {K_F3, "\316="},
507 {K_F4, "\316>"},
508 {K_F5, "\316?"},
509 {K_F6, "\316@"},
510 {K_F7, "\316A"},
511 {K_F8, "\316B"},
512 {K_F9, "\316C"},
513 {K_F10, "\316D"},
514 {K_F11, "\316\205"}, /* guessed */
515 {K_F12, "\316\206"}, /* guessed */
516 {K_S_F1, "\316T"},
517 {K_S_F2, "\316U"},
518 {K_S_F3, "\316V"},
519 {K_S_F4, "\316W"},
520 {K_S_F5, "\316X"},
521 {K_S_F6, "\316Y"},
522 {K_S_F7, "\316Z"},
523 {K_S_F8, "\316["},
524 {K_S_F9, "\316\\"},
525 {K_S_F10, "\316]"},
526 {K_S_F11, "\316\207"}, /* guessed */
527 {K_S_F12, "\316\210"}, /* guessed */
528 {K_INS, "\316R"},
529 {K_DEL, "\316S"},
530 {K_HOME, "\316G"},
531 {K_END, "\316O"},
532 {K_PAGEDOWN, "\316Q"},
533 {K_PAGEUP, "\316I"},
534# endif
535
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200536# if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537/*
538 * These codes are valid for the Win32 Console . The entries that start with
539 * ESC | are translated into console calls in os_win32.c. The function keys
540 * are also translated in os_win32.c.
541 */
542 {(int)KS_NAME, "win32"},
543 {(int)KS_CE, "\033|K"}, /* clear to end of line */
544 {(int)KS_AL, "\033|L"}, /* add new blank line */
545# ifdef TERMINFO
546 {(int)KS_CAL, "\033|%p1%dL"}, /* add number of new blank lines */
547# else
548 {(int)KS_CAL, "\033|%dL"}, /* add number of new blank lines */
549# endif
550 {(int)KS_DL, "\033|M"}, /* delete line */
551# ifdef TERMINFO
552 {(int)KS_CDL, "\033|%p1%dM"}, /* delete number of lines */
553# else
554 {(int)KS_CDL, "\033|%dM"}, /* delete number of lines */
555# endif
556 {(int)KS_CL, "\033|J"}, /* clear screen */
557 {(int)KS_CD, "\033|j"}, /* clear to end of display */
558 {(int)KS_VI, "\033|v"}, /* cursor invisible */
559 {(int)KS_VE, "\033|V"}, /* cursor visible */
560
561 {(int)KS_ME, "\033|0m"}, /* normal */
562 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgray */
563 {(int)KS_MD, "\033|15m"}, /* bold: white on black */
564#if 1
565 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */
566 {(int)KS_SE, "\033|0m"}, /* standout end */
567#else
568 {(int)KS_SO, "\033|F"}, /* standout: high intensity */
569 {(int)KS_SE, "\033|f"}, /* standout end */
570#endif
571 {(int)KS_CZH, "\033|225m"}, /* italic: blue text on yellow */
572 {(int)KS_CZR, "\033|0m"}, /* italic end */
573 {(int)KS_US, "\033|67m"}, /* underscore: cyan text on red */
574 {(int)KS_UE, "\033|0m"}, /* underscore end */
575 {(int)KS_CCO, "16"}, /* allow 16 colors */
576# ifdef TERMINFO
577 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */
578 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */
579# else
580 {(int)KS_CAB, "\033|%db"}, /* set background color */
581 {(int)KS_CAF, "\033|%df"}, /* set foreground color */
582# endif
583
584 {(int)KS_MS, "y"}, /* save to move cur in reverse mode */
585 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100586 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 {(int)KS_LE, "\b"},
588# ifdef TERMINFO
589 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */
590# else
591 {(int)KS_CM, "\033|%i%d;%dH"},/* cursor motion */
592# endif
593 {(int)KS_VB, "\033|B"}, /* visual bell */
594 {(int)KS_TI, "\033|S"}, /* put terminal in termcap mode */
595 {(int)KS_TE, "\033|E"}, /* out of termcap mode */
596# ifdef TERMINFO
597 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},/* scroll region */
598# else
599 {(int)KS_CS, "\033|%i%d;%dr"},/* scroll region */
600# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100601# ifdef FEAT_TERMGUICOLORS
602 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"},
603 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"},
604# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
606 {K_UP, "\316H"},
607 {K_DOWN, "\316P"},
608 {K_LEFT, "\316K"},
609 {K_RIGHT, "\316M"},
610 {K_S_UP, "\316\304"},
611 {K_S_DOWN, "\316\317"},
612 {K_S_LEFT, "\316\311"},
613 {K_C_LEFT, "\316s"},
614 {K_S_RIGHT, "\316\313"},
615 {K_C_RIGHT, "\316t"},
616 {K_S_TAB, "\316\017"},
617 {K_F1, "\316;"},
618 {K_F2, "\316<"},
619 {K_F3, "\316="},
620 {K_F4, "\316>"},
621 {K_F5, "\316?"},
622 {K_F6, "\316@"},
623 {K_F7, "\316A"},
624 {K_F8, "\316B"},
625 {K_F9, "\316C"},
626 {K_F10, "\316D"},
627 {K_F11, "\316\205"},
628 {K_F12, "\316\206"},
629 {K_S_F1, "\316T"},
630 {K_S_F2, "\316U"},
631 {K_S_F3, "\316V"},
632 {K_S_F4, "\316W"},
633 {K_S_F5, "\316X"},
634 {K_S_F6, "\316Y"},
635 {K_S_F7, "\316Z"},
636 {K_S_F8, "\316["},
637 {K_S_F9, "\316\\"},
638 {K_S_F10, "\316]"},
639 {K_S_F11, "\316\207"},
640 {K_S_F12, "\316\210"},
641 {K_INS, "\316R"},
642 {K_DEL, "\316S"},
643 {K_HOME, "\316G"},
644 {K_S_HOME, "\316\302"},
645 {K_C_HOME, "\316w"},
646 {K_END, "\316O"},
647 {K_S_END, "\316\315"},
648 {K_C_END, "\316u"},
649 {K_PAGEDOWN, "\316Q"},
650 {K_PAGEUP, "\316I"},
651 {K_KPLUS, "\316N"},
652 {K_KMINUS, "\316J"},
653 {K_KMULTIPLY, "\316\067"},
654 {K_K0, "\316\332"},
655 {K_K1, "\316\336"},
656 {K_K2, "\316\342"},
657 {K_K3, "\316\346"},
658 {K_K4, "\316\352"},
659 {K_K5, "\316\356"},
660 {K_K6, "\316\362"},
661 {K_K7, "\316\366"},
662 {K_K8, "\316\372"},
663 {K_K9, "\316\376"},
664# endif
665
666# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
667/*
668 * VT320 is working as an ANSI terminal compatible DEC terminal.
669 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 * TODO:- rewrite ESC[ codes to CSI
671 * - keyboard languages (CSI ? 26 n)
672 */
673 {(int)KS_NAME, "vt320"},
674 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
675 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
676# ifdef TERMINFO
677 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
678# else
679 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
680# endif
681 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
682# ifdef TERMINFO
683 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
684# else
685 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
686# endif
687 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000688 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
689 {(int)KS_CCO, "8"}, /* allow 8 colors */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
691 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000692 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */
693 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */
694 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */
695 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */
696 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */
697 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */
698 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */
699 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */
700 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */
701 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 {(int)KS_MS, "y"},
703 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100704 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 {(int)KS_LE, "\b"},
706# ifdef TERMINFO
707 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
708 ESC_STR "[%i%p1%d;%p2%dH")},
709# else
710 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
711# endif
712# ifdef TERMINFO
713 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
714# else
715 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
716# endif
717 {K_UP, IF_EB("\033[A", ESC_STR "[A")},
718 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")},
719 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")},
720 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")},
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200721 // Note: cursor key sequences for application cursor mode are omitted,
722 // because they interfere with typed commands: <Esc>OA.
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000723 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")},
724 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")},
725 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")},
726 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")},
727 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")},
729 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")},
730 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")},
731 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")},
732 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000733 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")},
735 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")},
736 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")},
737 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */
738 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */
739 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")},
740 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")},
741 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")},
742 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")},
743 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")},
744 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")},
745 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")},
746 {K_END, IF_EB("\033[4~", ESC_STR "[4~")},
747 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")},
748 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")},
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200749 // These sequences starting with <Esc> O may interfere with what the user
750 // is typing. Remove these if that bothers you.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */
752 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */
753 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */
754 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */
755 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200756 {K_K0, IF_EB("\033Op", ESC_STR "Op")}, /* keypad 0 */
757 {K_K1, IF_EB("\033Oq", ESC_STR "Oq")}, /* keypad 1 */
758 {K_K2, IF_EB("\033Or", ESC_STR "Or")}, /* keypad 2 */
759 {K_K3, IF_EB("\033Os", ESC_STR "Os")}, /* keypad 3 */
760 {K_K4, IF_EB("\033Ot", ESC_STR "Ot")}, /* keypad 4 */
761 {K_K5, IF_EB("\033Ou", ESC_STR "Ou")}, /* keypad 5 */
762 {K_K6, IF_EB("\033Ov", ESC_STR "Ov")}, /* keypad 6 */
763 {K_K7, IF_EB("\033Ow", ESC_STR "Ow")}, /* keypad 7 */
764 {K_K8, IF_EB("\033Ox", ESC_STR "Ox")}, /* keypad 8 */
765 {K_K9, IF_EB("\033Oy", ESC_STR "Oy")}, /* keypad 9 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */
767# endif
768
769# if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
770/*
771 * Ordinary vt52
772 */
773 {(int)KS_NAME, "vt52"},
774 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")},
775 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100776# ifdef TERMINFO
777 {(int)KS_CM, IF_EB("\033Y%p1%' '%+%c%p2%' '%+%c",
778 ESC_STR "Y%p1%' '%+%c%p2%' '%+%c")},
779# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100781# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 {(int)KS_LE, "\b"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100783 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")},
785 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 {K_UP, IF_EB("\033A", ESC_STR "A")},
787 {K_DOWN, IF_EB("\033B", ESC_STR "B")},
788 {K_LEFT, IF_EB("\033D", ESC_STR "D")},
789 {K_RIGHT, IF_EB("\033C", ESC_STR "C")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100790 {K_F1, IF_EB("\033P", ESC_STR "P")},
791 {K_F2, IF_EB("\033Q", ESC_STR "Q")},
792 {K_F3, IF_EB("\033R", ESC_STR "R")},
793# ifdef __MINT__
794 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")},
795 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")},
796 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")},
797 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")},
798 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 {K_S_UP, IF_EB("\033a", ESC_STR "a")},
800 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")},
801 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")},
802 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 {K_F4, IF_EB("\033S", ESC_STR "S")},
804 {K_F5, IF_EB("\033T", ESC_STR "T")},
805 {K_F6, IF_EB("\033U", ESC_STR "U")},
806 {K_F7, IF_EB("\033V", ESC_STR "V")},
807 {K_F8, IF_EB("\033W", ESC_STR "W")},
808 {K_F9, IF_EB("\033X", ESC_STR "X")},
809 {K_F10, IF_EB("\033Y", ESC_STR "Y")},
810 {K_S_F1, IF_EB("\033p", ESC_STR "p")},
811 {K_S_F2, IF_EB("\033q", ESC_STR "q")},
812 {K_S_F3, IF_EB("\033r", ESC_STR "r")},
813 {K_S_F4, IF_EB("\033s", ESC_STR "s")},
814 {K_S_F5, IF_EB("\033t", ESC_STR "t")},
815 {K_S_F6, IF_EB("\033u", ESC_STR "u")},
816 {K_S_F7, IF_EB("\033v", ESC_STR "v")},
817 {K_S_F8, IF_EB("\033w", ESC_STR "w")},
818 {K_S_F9, IF_EB("\033x", ESC_STR "x")},
819 {K_S_F10, IF_EB("\033y", ESC_STR "y")},
820 {K_INS, IF_EB("\033I", ESC_STR "I")},
821 {K_HOME, IF_EB("\033E", ESC_STR "E")},
822 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")},
823 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")},
824# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 {(int)KS_MS, "y"},
827# endif
828# endif
829
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200830# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200831 {(int)KS_NAME, "xterm"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
833 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
834# ifdef TERMINFO
835 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
836# else
837 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
838# endif
839 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
840# ifdef TERMINFO
841 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
842# else
843 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
844# endif
845# ifdef TERMINFO
846 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr",
847 ESC_STR "[%i%p1%d;%p2%dr")},
848# else
849 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")},
850# endif
851 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
852 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
853 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")},
854 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
855 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")},
856 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")},
857 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200858 {(int)KS_STE, IF_EB("\033[29m", ESC_STR "[29m")},
859 {(int)KS_STS, IF_EB("\033[9m", ESC_STR "[9m")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 {(int)KS_MS, "y"},
861 {(int)KS_UT, "y"},
862 {(int)KS_LE, "\b"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200863 {(int)KS_VI, IF_EB("\033[?25l", ESC_STR "[?25l")},
864 {(int)KS_VE, IF_EB("\033[?25h", ESC_STR "[?25h")},
Bram Moolenaar93c92ef2017-08-19 21:11:57 +0200865 {(int)KS_VS, IF_EB("\033[?12h", ESC_STR "[?12h")},
Bram Moolenaarce1c3272017-08-20 15:05:15 +0200866 {(int)KS_CVS, IF_EB("\033[?12l", ESC_STR "[?12l")},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200867# ifdef TERMINFO
868 {(int)KS_CSH, IF_EB("\033[%p1%d q", ESC_STR "[%p1%d q")},
869# else
870 {(int)KS_CSH, IF_EB("\033[%d q", ESC_STR "[%d q")},
871# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +0200872 {(int)KS_CRC, IF_EB("\033[?12$p", ESC_STR "[?12$p")},
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200873 {(int)KS_CRS, IF_EB("\033P$q q\033\\", ESC_STR "P$q q" ESC_STR "\\")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874# ifdef TERMINFO
875 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
876 ESC_STR "[%i%p1%d;%p2%dH")},
877# else
878 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
879# endif
880 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")},
881# ifdef TERMINFO
882 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
883# else
884 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
885# endif
886 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")},
887 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")},
888# ifdef FEAT_XTERM_SAVE
889 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")},
890 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338",
891 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")},
892# endif
893 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")},
894 {(int)KS_CIE, "\007"},
895 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")},
896 {(int)KS_FS, "\007"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200897 {(int)KS_CSC, IF_EB("\033]12;", ESC_STR "]12;")},
898 {(int)KS_CEC, "\007"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899# ifdef TERMINFO
900 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt",
901 ESC_STR "[8;%p1%d;%p2%dt")},
902 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt",
903 ESC_STR "[3;%p1%d;%p2%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200904 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905# else
906 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")},
907 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200908 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909# endif
910 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200911 {(int)KS_RFG, IF_EB("\033]10;?\007", ESC_STR "]10;?\007")},
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200912 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")},
Bram Moolenaar9584b312013-03-13 19:29:28 +0100913 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")},
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200914# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200915 /* These are printf strings, not terminal codes. */
916 {(int)KS_8F, IF_EB("\033[38;2;%lu;%lu;%lum", ESC_STR "[38;2;%lu;%lu;%lum")},
917 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")},
918# endif
Bram Moolenaarec2da362017-01-21 20:04:22 +0100919 {(int)KS_CBE, IF_EB("\033[?2004h", ESC_STR "[?2004h")},
920 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")},
Bram Moolenaar40385db2018-08-07 22:31:44 +0200921 {(int)KS_CST, IF_EB("\033[22;2t", ESC_STR "[22;2t")},
922 {(int)KS_CRT, IF_EB("\033[23;2t", ESC_STR "[23;2t")},
923 {(int)KS_SSI, IF_EB("\033[22;1t", ESC_STR "[22;1t")},
924 {(int)KS_SRI, IF_EB("\033[23;1t", ESC_STR "[23;1t")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000925
926 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")},
927 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")},
928 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")},
929 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")},
930 /* An extra set of cursor keys for vt100 mode */
931 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")},
932 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")},
933 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")},
934 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 /* An extra set of function keys for vt100 mode */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000936 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")},
937 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")},
938 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")},
939 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000940 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")},
941 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")},
942 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")},
943 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")},
944 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")},
945 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")},
946 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")},
947 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")},
948 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")},
949 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")},
950 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")},
951 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000953 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")},
954 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")},
955 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")},
956 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000957 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */
958 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000959 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000960 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000961 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000962 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000963 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */
964 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000965 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000966 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000967 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000968 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")},
969 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100970 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */
971 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */
972 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */
973 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */
974 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */
975 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200976 {K_K0, IF_EB("\033O*p", ESC_STR "O*p")}, /* keypad 0 */
977 {K_K1, IF_EB("\033O*q", ESC_STR "O*q")}, /* keypad 1 */
978 {K_K2, IF_EB("\033O*r", ESC_STR "O*r")}, /* keypad 2 */
979 {K_K3, IF_EB("\033O*s", ESC_STR "O*s")}, /* keypad 3 */
980 {K_K4, IF_EB("\033O*t", ESC_STR "O*t")}, /* keypad 4 */
981 {K_K5, IF_EB("\033O*u", ESC_STR "O*u")}, /* keypad 5 */
982 {K_K6, IF_EB("\033O*v", ESC_STR "O*v")}, /* keypad 6 */
983 {K_K7, IF_EB("\033O*w", ESC_STR "O*w")}, /* keypad 7 */
984 {K_K8, IF_EB("\033O*x", ESC_STR "O*x")}, /* keypad 8 */
985 {K_K9, IF_EB("\033O*y", ESC_STR "O*y")}, /* keypad 9 */
Bram Moolenaarec2da362017-01-21 20:04:22 +0100986 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */
987 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, /* paste start */
988 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, /* paste end */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989
990 {BT_EXTRA_KEYS, ""},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000991 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, /* F0 */
992 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, /* F13 */
993 /* F14 and F15 are missing, because they send the same codes as the undo
994 * and help key, although they don't work on all keyboards. */
995 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, /* F16 */
996 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, /* F17 */
997 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, /* F18 */
998 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, /* F19 */
999 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, /* F20 */
1000
1001 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, /* F21 */
1002 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, /* F22 */
1003 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, /* F23 */
1004 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, /* F24 */
1005 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, /* F25 */
1006 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, /* F26 */
1007 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, /* F27 */
1008 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, /* F28 */
1009 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, /* F29 */
1010 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, /* F30 */
1011
1012 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, /* F31 */
1013 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, /* F32 */
1014 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, /* F33 */
1015 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, /* F34 */
1016 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, /* F35 */
1017 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, /* F36 */
1018 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, /* F37 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019# endif
1020
1021# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
1022/*
1023 * iris-ansi for Silicon Graphics machines.
1024 */
1025 {(int)KS_NAME, "iris-ansi"},
1026 {(int)KS_CE, "\033[K"},
1027 {(int)KS_CD, "\033[J"},
1028 {(int)KS_AL, "\033[L"},
1029# ifdef TERMINFO
1030 {(int)KS_CAL, "\033[%p1%dL"},
1031# else
1032 {(int)KS_CAL, "\033[%dL"},
1033# endif
1034 {(int)KS_DL, "\033[M"},
1035# ifdef TERMINFO
1036 {(int)KS_CDL, "\033[%p1%dM"},
1037# else
1038 {(int)KS_CDL, "\033[%dM"},
1039# endif
1040#if 0 /* The scroll region is not working as Vim expects. */
1041# ifdef TERMINFO
1042 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
1043# else
1044 {(int)KS_CS, "\033[%i%d;%dr"},
1045# endif
1046#endif
1047 {(int)KS_CL, "\033[H\033[2J"},
1048 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */
1049 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */
1050 {(int)KS_TI, "\033[=6h"},
1051 {(int)KS_TE, "\033[=6l"},
1052 {(int)KS_SE, "\033[21;27m"},
1053 {(int)KS_SO, "\033[1;7m"},
1054 {(int)KS_ME, "\033[m"},
1055 {(int)KS_MR, "\033[7m"},
1056 {(int)KS_MD, "\033[1m"},
1057 {(int)KS_CCO, "8"}, /* allow 8 colors */
1058 {(int)KS_CZH, "\033[3m"}, /* italic mode on */
1059 {(int)KS_CZR, "\033[23m"}, /* italic mode off */
1060 {(int)KS_US, "\033[4m"}, /* underline on */
1061 {(int)KS_UE, "\033[24m"}, /* underline off */
1062# ifdef TERMINFO
1063 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */
1064 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */
1065 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */
1066 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */
1067# else
1068 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */
1069 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */
1070 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */
1071 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */
1072# endif
1073 {(int)KS_MS, "y"}, /* guessed */
1074 {(int)KS_UT, "y"}, /* guessed */
1075 {(int)KS_LE, "\b"},
1076# ifdef TERMINFO
1077 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1078# else
1079 {(int)KS_CM, "\033[%i%d;%dH"},
1080# endif
1081 {(int)KS_SR, "\033M"},
1082# ifdef TERMINFO
1083 {(int)KS_CRI, "\033[%p1%dC"},
1084# else
1085 {(int)KS_CRI, "\033[%dC"},
1086# endif
1087 {(int)KS_CIS, "\033P3.y"},
1088 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */
1089 {(int)KS_TS, "\033P1.y"},
1090 {(int)KS_FS, "\234"}, /* ST "String Terminator" */
1091# ifdef TERMINFO
1092 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1093 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1094# else
1095 {(int)KS_CWS, "\033[203;%d;%d/y"},
1096 {(int)KS_CWP, "\033[205;%d;%d/y"},
1097# endif
1098 {K_UP, "\033[A"},
1099 {K_DOWN, "\033[B"},
1100 {K_LEFT, "\033[D"},
1101 {K_RIGHT, "\033[C"},
1102 {K_S_UP, "\033[161q"},
1103 {K_S_DOWN, "\033[164q"},
1104 {K_S_LEFT, "\033[158q"},
1105 {K_S_RIGHT, "\033[167q"},
1106 {K_F1, "\033[001q"},
1107 {K_F2, "\033[002q"},
1108 {K_F3, "\033[003q"},
1109 {K_F4, "\033[004q"},
1110 {K_F5, "\033[005q"},
1111 {K_F6, "\033[006q"},
1112 {K_F7, "\033[007q"},
1113 {K_F8, "\033[008q"},
1114 {K_F9, "\033[009q"},
1115 {K_F10, "\033[010q"},
1116 {K_F11, "\033[011q"},
1117 {K_F12, "\033[012q"},
1118 {K_S_F1, "\033[013q"},
1119 {K_S_F2, "\033[014q"},
1120 {K_S_F3, "\033[015q"},
1121 {K_S_F4, "\033[016q"},
1122 {K_S_F5, "\033[017q"},
1123 {K_S_F6, "\033[018q"},
1124 {K_S_F7, "\033[019q"},
1125 {K_S_F8, "\033[020q"},
1126 {K_S_F9, "\033[021q"},
1127 {K_S_F10, "\033[022q"},
1128 {K_S_F11, "\033[023q"},
1129 {K_S_F12, "\033[024q"},
1130 {K_INS, "\033[139q"},
1131 {K_HOME, "\033[H"},
1132 {K_END, "\033[146q"},
1133 {K_PAGEUP, "\033[150q"},
1134 {K_PAGEDOWN, "\033[154q"},
1135# endif
1136
1137# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1138/*
1139 * for debugging
1140 */
1141 {(int)KS_NAME, "debug"},
1142 {(int)KS_CE, "[CE]"},
1143 {(int)KS_CD, "[CD]"},
1144 {(int)KS_AL, "[AL]"},
1145# ifdef TERMINFO
1146 {(int)KS_CAL, "[CAL%p1%d]"},
1147# else
1148 {(int)KS_CAL, "[CAL%d]"},
1149# endif
1150 {(int)KS_DL, "[DL]"},
1151# ifdef TERMINFO
1152 {(int)KS_CDL, "[CDL%p1%d]"},
1153# else
1154 {(int)KS_CDL, "[CDL%d]"},
1155# endif
1156# ifdef TERMINFO
1157 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1158# else
1159 {(int)KS_CS, "[%dCS%d]"},
1160# endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001161# ifdef TERMINFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
Bram Moolenaar4033c552017-09-16 20:54:51 +02001163# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 {(int)KS_CSV, "[%dCSV%d]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165# endif
1166# ifdef TERMINFO
1167 {(int)KS_CAB, "[CAB%p1%d]"},
1168 {(int)KS_CAF, "[CAF%p1%d]"},
1169 {(int)KS_CSB, "[CSB%p1%d]"},
1170 {(int)KS_CSF, "[CSF%p1%d]"},
1171# else
1172 {(int)KS_CAB, "[CAB%d]"},
1173 {(int)KS_CAF, "[CAF%d]"},
1174 {(int)KS_CSB, "[CSB%d]"},
1175 {(int)KS_CSF, "[CSF%d]"},
1176# endif
1177 {(int)KS_OP, "[OP]"},
1178 {(int)KS_LE, "[LE]"},
1179 {(int)KS_CL, "[CL]"},
1180 {(int)KS_VI, "[VI]"},
1181 {(int)KS_VE, "[VE]"},
1182 {(int)KS_VS, "[VS]"},
1183 {(int)KS_ME, "[ME]"},
1184 {(int)KS_MR, "[MR]"},
1185 {(int)KS_MB, "[MB]"},
1186 {(int)KS_MD, "[MD]"},
1187 {(int)KS_SE, "[SE]"},
1188 {(int)KS_SO, "[SO]"},
1189 {(int)KS_UE, "[UE]"},
1190 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001191 {(int)KS_UCE, "[UCE]"},
1192 {(int)KS_UCS, "[UCS]"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001193 {(int)KS_STE, "[STE]"},
1194 {(int)KS_STS, "[STS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 {(int)KS_MS, "[MS]"},
1196 {(int)KS_UT, "[UT]"},
Bram Moolenaar494838a2015-02-10 19:20:37 +01001197 {(int)KS_XN, "[XN]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198# ifdef TERMINFO
1199 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1200# else
1201 {(int)KS_CM, "[%dCM%d]"},
1202# endif
1203 {(int)KS_SR, "[SR]"},
1204# ifdef TERMINFO
1205 {(int)KS_CRI, "[CRI%p1%d]"},
1206# else
1207 {(int)KS_CRI, "[CRI%d]"},
1208# endif
1209 {(int)KS_VB, "[VB]"},
1210 {(int)KS_KS, "[KS]"},
1211 {(int)KS_KE, "[KE]"},
1212 {(int)KS_TI, "[TI]"},
1213 {(int)KS_TE, "[TE]"},
1214 {(int)KS_CIS, "[CIS]"},
1215 {(int)KS_CIE, "[CIE]"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001216 {(int)KS_CSC, "[CSC]"},
1217 {(int)KS_CEC, "[CEC]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 {(int)KS_TS, "[TS]"},
1219 {(int)KS_FS, "[FS]"},
1220# ifdef TERMINFO
1221 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1222 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1223# else
1224 {(int)KS_CWS, "[%dCWS%d]"},
1225 {(int)KS_CWP, "[%dCWP%d]"},
1226# endif
1227 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001228 {(int)KS_U7, "[U7]"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001229 {(int)KS_RFG, "[RFG]"},
Bram Moolenaarb5c32652015-06-25 17:03:36 +02001230 {(int)KS_RBG, "[RBG]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 {K_UP, "[KU]"},
1232 {K_DOWN, "[KD]"},
1233 {K_LEFT, "[KL]"},
1234 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001235 {K_XUP, "[xKU]"},
1236 {K_XDOWN, "[xKD]"},
1237 {K_XLEFT, "[xKL]"},
1238 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 {K_S_UP, "[S-KU]"},
1240 {K_S_DOWN, "[S-KD]"},
1241 {K_S_LEFT, "[S-KL]"},
1242 {K_C_LEFT, "[C-KL]"},
1243 {K_S_RIGHT, "[S-KR]"},
1244 {K_C_RIGHT, "[C-KR]"},
1245 {K_F1, "[F1]"},
1246 {K_XF1, "[xF1]"},
1247 {K_F2, "[F2]"},
1248 {K_XF2, "[xF2]"},
1249 {K_F3, "[F3]"},
1250 {K_XF3, "[xF3]"},
1251 {K_F4, "[F4]"},
1252 {K_XF4, "[xF4]"},
1253 {K_F5, "[F5]"},
1254 {K_F6, "[F6]"},
1255 {K_F7, "[F7]"},
1256 {K_F8, "[F8]"},
1257 {K_F9, "[F9]"},
1258 {K_F10, "[F10]"},
1259 {K_F11, "[F11]"},
1260 {K_F12, "[F12]"},
1261 {K_S_F1, "[S-F1]"},
1262 {K_S_XF1, "[S-xF1]"},
1263 {K_S_F2, "[S-F2]"},
1264 {K_S_XF2, "[S-xF2]"},
1265 {K_S_F3, "[S-F3]"},
1266 {K_S_XF3, "[S-xF3]"},
1267 {K_S_F4, "[S-F4]"},
1268 {K_S_XF4, "[S-xF4]"},
1269 {K_S_F5, "[S-F5]"},
1270 {K_S_F6, "[S-F6]"},
1271 {K_S_F7, "[S-F7]"},
1272 {K_S_F8, "[S-F8]"},
1273 {K_S_F9, "[S-F9]"},
1274 {K_S_F10, "[S-F10]"},
1275 {K_S_F11, "[S-F11]"},
1276 {K_S_F12, "[S-F12]"},
1277 {K_HELP, "[HELP]"},
1278 {K_UNDO, "[UNDO]"},
1279 {K_BS, "[BS]"},
1280 {K_INS, "[INS]"},
1281 {K_KINS, "[KINS]"},
1282 {K_DEL, "[DEL]"},
1283 {K_KDEL, "[KDEL]"},
1284 {K_HOME, "[HOME]"},
1285 {K_S_HOME, "[C-HOME]"},
1286 {K_C_HOME, "[C-HOME]"},
1287 {K_KHOME, "[KHOME]"},
1288 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001289 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 {K_END, "[END]"},
1291 {K_S_END, "[C-END]"},
1292 {K_C_END, "[C-END]"},
1293 {K_KEND, "[KEND]"},
1294 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001295 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 {K_PAGEUP, "[PAGEUP]"},
1297 {K_PAGEDOWN, "[PAGEDOWN]"},
1298 {K_KPAGEUP, "[KPAGEUP]"},
1299 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1300 {K_MOUSE, "[MOUSE]"},
1301 {K_KPLUS, "[KPLUS]"},
1302 {K_KMINUS, "[KMINUS]"},
1303 {K_KDIVIDE, "[KDIVIDE]"},
1304 {K_KMULTIPLY, "[KMULTIPLY]"},
1305 {K_KENTER, "[KENTER]"},
1306 {K_KPOINT, "[KPOINT]"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001307 {K_PS, "[PASTE-START]"},
1308 {K_PE, "[PASTE-END]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 {K_K0, "[K0]"},
1310 {K_K1, "[K1]"},
1311 {K_K2, "[K2]"},
1312 {K_K3, "[K3]"},
1313 {K_K4, "[K4]"},
1314 {K_K5, "[K5]"},
1315 {K_K6, "[K6]"},
1316 {K_K7, "[K7]"},
1317 {K_K8, "[K8]"},
1318 {K_K9, "[K9]"},
1319# endif
1320
1321#endif /* NO_BUILTIN_TCAPS */
1322
1323/*
1324 * The most minimal terminal: only clear screen and cursor positioning
1325 * Always included.
1326 */
1327 {(int)KS_NAME, "dumb"},
1328 {(int)KS_CL, "\014"},
1329#ifdef TERMINFO
1330 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
1331 ESC_STR "[%i%p1%d;%p2%dH")},
1332#else
1333 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
1334#endif
1335
1336/*
1337 * end marker
1338 */
1339 {(int)KS_NAME, NULL}
1340
1341}; /* end of builtin_termcaps */
1342
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001343#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001344 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001345termgui_mch_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001346{
Bram Moolenaarab302212016-04-26 20:59:29 +02001347 return gui_get_color_cmn(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001348}
1349
1350 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001351termgui_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001352{
1353 guicolor_T t;
1354
1355 if (*name == NUL)
1356 return INVALCOLOR;
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001357 t = termgui_mch_get_color(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001358
1359 if (t == INVALCOLOR)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001360 semsg(_("E254: Cannot allocate color %s"), name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001361 return t;
1362}
1363
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001364 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001365termgui_mch_get_rgb(guicolor_T color)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001366{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001367 return color;
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001368}
1369#endif
1370
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371/*
1372 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1373 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374#ifdef AMIGA
1375# define DEFAULT_TERM (char_u *)"amiga"
1376#endif
1377
1378#ifdef MSWIN
1379# define DEFAULT_TERM (char_u *)"win32"
1380#endif
1381
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382#if defined(UNIX) && !defined(__MINT__)
1383# define DEFAULT_TERM (char_u *)"ansi"
1384#endif
1385
1386#ifdef __MINT__
1387# define DEFAULT_TERM (char_u *)"vt52"
1388#endif
1389
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390#ifdef VMS
1391# define DEFAULT_TERM (char_u *)"vt320"
1392#endif
1393
1394#ifdef __BEOS__
1395# undef DEFAULT_TERM
1396# define DEFAULT_TERM (char_u *)"beos-ansi"
1397#endif
1398
1399#ifndef DEFAULT_TERM
1400# define DEFAULT_TERM (char_u *)"dumb"
1401#endif
1402
1403/*
1404 * Term_strings contains currently used terminal output strings.
1405 * It is initialized with the default values by parse_builtin_tcap().
1406 * The values can be changed by setting the option with the same name.
1407 */
1408char_u *(term_strings[(int)KS_LAST + 1]);
1409
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001410static int need_gather = FALSE; /* need to fill termleader[] */
1411static char_u termleader[256 + 1]; /* for check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412#ifdef FEAT_TERMRESPONSE
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001413static int check_for_codes = FALSE; /* check for key code response */
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02001414static int is_not_xterm = FALSE; /* recognized not-really-xterm */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415#endif
1416
1417 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001418find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419{
1420 struct builtin_term *p;
1421
1422 p = builtin_termcaps;
1423 while (p->bt_string != NULL)
1424 {
1425 if (p->bt_entry == (int)KS_NAME)
1426 {
1427#ifdef UNIX
1428 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1429 return p;
1430 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1431 return p;
1432 else
1433#endif
1434#ifdef VMS
1435 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1436 return p;
1437 else
1438#endif
1439 if (STRCMP(term, p->bt_string) == 0)
1440 return p;
1441 }
1442 ++p;
1443 }
1444 return p;
1445}
1446
1447/*
1448 * Parsing of the builtin termcap entries.
1449 * Caller should check if 'name' is a valid builtin term.
1450 * The terminal's name is not set, as this is already done in termcapinit().
1451 */
1452 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001453parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454{
1455 struct builtin_term *p;
1456 char_u name[2];
1457 int term_8bit;
1458
1459 p = find_builtin_term(term);
1460 term_8bit = term_is_8bit(term);
1461
1462 /* Do not parse if builtin term not found */
1463 if (p->bt_string == NULL)
1464 return;
1465
1466 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1467 {
1468 if ((int)p->bt_entry >= 0) /* KS_xx entry */
1469 {
1470 /* Only set the value if it wasn't set yet. */
1471 if (term_strings[p->bt_entry] == NULL
1472 || term_strings[p->bt_entry] == empty_option)
1473 {
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001474#ifdef FEAT_EVAL
1475 int opt_idx = -1;
1476#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 /* 8bit terminal: use CSI instead of <Esc>[ */
1478 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1479 {
1480 char_u *s, *t;
1481
1482 s = vim_strsave((char_u *)p->bt_string);
1483 if (s != NULL)
1484 {
1485 for (t = s; *t; ++t)
1486 if (term_7to8bit(t))
1487 {
1488 *t = term_7to8bit(t);
Bram Moolenaar18085fa2018-07-10 17:33:45 +02001489 STRMOVE(t + 1, t + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 }
1491 term_strings[p->bt_entry] = s;
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001492#ifdef FEAT_EVAL
1493 opt_idx =
1494#endif
1495 set_term_option_alloced(
1496 &term_strings[p->bt_entry]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 }
1498 }
1499 else
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001500 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 term_strings[p->bt_entry] = (char_u *)p->bt_string;
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001502#ifdef FEAT_EVAL
1503 opt_idx = get_term_opt_idx(&term_strings[p->bt_entry]);
1504#endif
1505 }
1506#ifdef FEAT_EVAL
1507 set_term_option_sctx_idx(NULL, opt_idx);
1508#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 }
1510 }
1511 else
1512 {
1513 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1514 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1515 if (find_termcode(name) == NULL)
1516 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1517 }
1518 }
1519}
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001520
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521/*
1522 * Set number of colors.
1523 * Store it as a number in t_colors.
1524 * Store it as a string in T_CCO (using nr_colors[]).
1525 */
1526 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001527set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528{
1529 char_u nr_colors[20]; /* string for number of colors */
1530
1531 t_colors = nr;
1532 if (t_colors > 1)
1533 sprintf((char *)nr_colors, "%d", t_colors);
1534 else
1535 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001536 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537}
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001538
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001539#if defined(FEAT_TERMRESPONSE)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001540/*
1541 * Set the color count to "val" and redraw if it changed.
1542 */
1543 static void
1544may_adjust_color_count(int val)
1545{
1546 if (val != t_colors)
1547 {
1548 /* Nr of colors changed, initialize highlighting and
1549 * redraw everything. This causes a redraw, which usually
1550 * clears the message. Try keeping the message if it
1551 * might work. */
1552 set_keep_msg_from_hist();
1553 set_color_count(val);
1554 init_highlight(TRUE, FALSE);
1555# ifdef DEBUG_TERMRESPONSE
1556 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02001557 int r = redraw_asap(CLEAR);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001558
Bram Moolenaarb255b902018-04-24 21:40:10 +02001559 log_tr("Received t_Co, redraw_asap(): %d", r);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001560 }
Bram Moolenaarb255b902018-04-24 21:40:10 +02001561#else
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001562 redraw_asap(CLEAR);
Bram Moolenaarb255b902018-04-24 21:40:10 +02001563#endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001564 }
1565}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566#endif
1567
1568#ifdef HAVE_TGETENT
1569static char *(key_names[]) =
1570{
1571#ifdef FEAT_TERMRESPONSE
1572 /* Do this one first, it may cause a screen redraw. */
1573 "Co",
1574#endif
1575 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 "#2", "#4", "%i", "*7",
1577 "k1", "k2", "k3", "k4", "k5", "k6",
1578 "k7", "k8", "k9", "k;", "F1", "F2",
1579 "%1", "&8", "kb", "kI", "kD", "kh",
1580 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1581 NULL
1582};
1583#endif
1584
Bram Moolenaar9289df52018-05-10 14:40:57 +02001585#ifdef HAVE_TGETENT
Bram Moolenaar69e05692018-05-10 14:11:52 +02001586 static void
1587get_term_entries(int *height, int *width)
1588{
1589 static struct {
1590 enum SpecialKey dest; /* index in term_strings[] */
1591 char *name; /* termcap name for string */
1592 } string_names[] =
1593 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1594 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1595 {KS_CL, "cl"}, {KS_CD, "cd"},
1596 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
1597 {KS_ME, "me"}, {KS_MR, "mr"},
1598 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1599 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
1600 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
1601 {KS_STE,"Te"}, {KS_STS,"Ts"},
1602 {KS_CM, "cm"}, {KS_SR, "sr"},
1603 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1604 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
1605 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
1606 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
1607 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
1608 {KS_VS, "vs"}, {KS_CVS, "VS"},
1609 {KS_CIS, "IS"}, {KS_CIE, "IE"},
1610 {KS_CSC, "SC"}, {KS_CEC, "EC"},
1611 {KS_TS, "ts"}, {KS_FS, "fs"},
1612 {KS_CWP, "WP"}, {KS_CWS, "WS"},
1613 {KS_CSI, "SI"}, {KS_CEI, "EI"},
1614 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"},
1615 {KS_8F, "8f"}, {KS_8B, "8b"},
1616 {KS_CBE, "BE"}, {KS_CBD, "BD"},
1617 {KS_CPS, "PS"}, {KS_CPE, "PE"},
Bram Moolenaar40385db2018-08-07 22:31:44 +02001618 {KS_CST, "ST"}, {KS_CRT, "RT"},
1619 {KS_SSI, "Si"}, {KS_SRI, "Ri"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001620 {(enum SpecialKey)0, NULL}
1621 };
1622 int i;
1623 char_u *p;
1624 static char_u tstrbuf[TBUFSZ];
1625 char_u *tp = tstrbuf;
1626
1627 /*
1628 * get output strings
1629 */
1630 for (i = 0; string_names[i].name != NULL; ++i)
1631 {
1632 if (TERM_STR(string_names[i].dest) == NULL
1633 || TERM_STR(string_names[i].dest) == empty_option)
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001634 {
Bram Moolenaar69e05692018-05-10 14:11:52 +02001635 TERM_STR(string_names[i].dest) = TGETSTR(string_names[i].name, &tp);
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001636#ifdef FEAT_EVAL
1637 set_term_option_sctx_idx(string_names[i].name, -1);
1638#endif
1639 }
Bram Moolenaar69e05692018-05-10 14:11:52 +02001640 }
1641
1642 /* tgetflag() returns 1 if the flag is present, 0 if not and
1643 * possibly -1 if the flag doesn't exist. */
1644 if ((T_MS == NULL || T_MS == empty_option) && tgetflag("ms") > 0)
1645 T_MS = (char_u *)"y";
1646 if ((T_XS == NULL || T_XS == empty_option) && tgetflag("xs") > 0)
1647 T_XS = (char_u *)"y";
1648 if ((T_XN == NULL || T_XN == empty_option) && tgetflag("xn") > 0)
1649 T_XN = (char_u *)"y";
1650 if ((T_DB == NULL || T_DB == empty_option) && tgetflag("db") > 0)
1651 T_DB = (char_u *)"y";
1652 if ((T_DA == NULL || T_DA == empty_option) && tgetflag("da") > 0)
1653 T_DA = (char_u *)"y";
1654 if ((T_UT == NULL || T_UT == empty_option) && tgetflag("ut") > 0)
1655 T_UT = (char_u *)"y";
1656
1657 /*
1658 * get key codes
1659 */
1660 for (i = 0; key_names[i] != NULL; ++i)
1661 if (find_termcode((char_u *)key_names[i]) == NULL)
1662 {
1663 p = TGETSTR(key_names[i], &tp);
1664 /* if cursor-left == backspace, ignore it (televideo 925) */
1665 if (p != NULL
1666 && (*p != Ctrl_H
1667 || key_names[i][0] != 'k'
1668 || key_names[i][1] != 'l'))
1669 add_termcode((char_u *)key_names[i], p, FALSE);
1670 }
1671
1672 if (*height == 0)
1673 *height = tgetnum("li");
1674 if (*width == 0)
1675 *width = tgetnum("co");
1676
1677 /*
1678 * Get number of colors (if not done already).
1679 */
1680 if (TERM_STR(KS_CCO) == NULL || TERM_STR(KS_CCO) == empty_option)
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001681 {
Bram Moolenaar69e05692018-05-10 14:11:52 +02001682 set_color_count(tgetnum("Co"));
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001683#ifdef FEAT_EVAL
1684 set_term_option_sctx_idx("Co", -1);
1685#endif
1686 }
Bram Moolenaar69e05692018-05-10 14:11:52 +02001687
1688# ifndef hpux
1689 BC = (char *)TGETSTR("bc", &tp);
1690 UP = (char *)TGETSTR("up", &tp);
1691 p = TGETSTR("pc", &tp);
1692 if (p)
1693 PC = *p;
1694# endif
1695}
Bram Moolenaar9289df52018-05-10 14:40:57 +02001696#endif
Bram Moolenaar69e05692018-05-10 14:11:52 +02001697
1698 static void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001699report_term_error(char *error_msg, char_u *term)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001700{
1701 struct builtin_term *termp;
1702
1703 mch_errmsg("\r\n");
1704 if (error_msg != NULL)
1705 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001706 mch_errmsg(error_msg);
Bram Moolenaar69e05692018-05-10 14:11:52 +02001707 mch_errmsg("\r\n");
1708 }
1709 mch_errmsg("'");
1710 mch_errmsg((char *)term);
1711 mch_errmsg(_("' not known. Available builtin terminals are:"));
1712 mch_errmsg("\r\n");
1713 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL; ++termp)
1714 {
1715 if (termp->bt_entry == (int)KS_NAME)
1716 {
1717#ifdef HAVE_TGETENT
1718 mch_errmsg(" builtin_");
1719#else
1720 mch_errmsg(" ");
1721#endif
1722 mch_errmsg(termp->bt_string);
1723 mch_errmsg("\r\n");
1724 }
1725 }
1726}
1727
1728 static void
1729report_default_term(char_u *term)
1730{
1731 mch_errmsg(_("defaulting to '"));
1732 mch_errmsg((char *)term);
1733 mch_errmsg("'\r\n");
1734 if (emsg_silent == 0)
1735 {
1736 screen_start(); /* don't know where cursor is now */
1737 out_flush();
1738 if (!is_not_a_term())
1739 ui_delay(2000L, TRUE);
1740 }
1741}
1742
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743/*
1744 * Set terminal options for terminal "term".
1745 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1746 *
1747 * While doing this, until ttest(), some options may be NULL, be careful.
1748 */
1749 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001750set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751{
1752 struct builtin_term *termp;
1753#ifdef HAVE_TGETENT
1754 int builtin_first = p_tbi;
1755 int try;
1756 int termcap_cleared = FALSE;
1757#endif
1758 int width = 0, height = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001759 char *error_msg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 char_u *bs_p, *del_p;
1761
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001762 /* In silect mode (ex -s) we don't use the 'term' option. */
1763 if (silent_mode)
1764 return OK;
1765
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 detected_8bit = FALSE; /* reset 8-bit detection */
1767
1768 if (term_is_builtin(term))
1769 {
1770 term += 8;
1771#ifdef HAVE_TGETENT
1772 builtin_first = 1;
1773#endif
1774 }
1775
1776/*
1777 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1778 * If builtin_first is TRUE:
1779 * 0. try builtin termcap
1780 * 1. try external termcap
1781 * 2. if both fail default to a builtin terminal
1782 * If builtin_first is FALSE:
1783 * 1. try external termcap
1784 * 2. try builtin termcap, if both fail default to a builtin terminal
1785 */
1786#ifdef HAVE_TGETENT
1787 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1788 {
1789 /*
1790 * Use external termcap
1791 */
1792 if (try == 1)
1793 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 char_u tbuf[TBUFSZ];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795
1796 /*
1797 * If the external termcap does not have a matching entry, try the
1798 * builtin ones.
1799 */
1800 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1801 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 if (!termcap_cleared)
1803 {
1804 clear_termoptions(); /* clear old options */
1805 termcap_cleared = TRUE;
1806 }
1807
Bram Moolenaar69e05692018-05-10 14:11:52 +02001808 get_term_entries(&height, &width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 }
1810 }
1811 else /* try == 0 || try == 2 */
1812#endif /* HAVE_TGETENT */
1813 /*
1814 * Use builtin termcap
1815 */
1816 {
1817#ifdef HAVE_TGETENT
1818 /*
1819 * If builtin termcap was already used, there is no need to search
1820 * for the builtin termcap again, quit now.
1821 */
1822 if (try == 2 && builtin_first && termcap_cleared)
1823 break;
1824#endif
1825 /*
1826 * search for 'term' in builtin_termcaps[]
1827 */
1828 termp = find_builtin_term(term);
1829 if (termp->bt_string == NULL) /* did not find it */
1830 {
1831#ifdef HAVE_TGETENT
1832 /*
1833 * If try == 0, first try the external termcap. If that is not
1834 * found we'll get back here with try == 2.
1835 * If termcap_cleared is set we used the external termcap,
1836 * don't complain about not finding the term in the builtin
1837 * termcap.
1838 */
1839 if (try == 0) /* try external one */
1840 continue;
1841 if (termcap_cleared) /* found in external termcap */
1842 break;
1843#endif
Bram Moolenaar69e05692018-05-10 14:11:52 +02001844 report_term_error(error_msg, term);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 /* when user typed :set term=xxx, quit here */
1847 if (starting != NO_SCREEN)
1848 {
1849 screen_start(); /* don't know where cursor is now */
1850 wait_return(TRUE);
1851 return FAIL;
1852 }
1853 term = DEFAULT_TERM;
Bram Moolenaar69e05692018-05-10 14:11:52 +02001854 report_default_term(term);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001855 set_string_option_direct((char_u *)"term", -1, term,
1856 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 display_errors();
1858 }
1859 out_flush();
1860#ifdef HAVE_TGETENT
1861 if (!termcap_cleared)
1862 {
1863#endif
1864 clear_termoptions(); /* clear old options */
1865#ifdef HAVE_TGETENT
1866 termcap_cleared = TRUE;
1867 }
1868#endif
1869 parse_builtin_tcap(term);
1870#ifdef FEAT_GUI
1871 if (term_is_gui(term))
1872 {
1873 out_flush();
1874 gui_init();
1875 /* If starting the GUI failed, don't do any of the other
1876 * things for this terminal */
1877 if (!gui.in_use)
1878 return FAIL;
1879#ifdef HAVE_TGETENT
1880 break; /* don't try using external termcap */
1881#endif
1882 }
1883#endif /* FEAT_GUI */
1884 }
1885#ifdef HAVE_TGETENT
1886 }
1887#endif
1888
1889/*
1890 * special: There is no info in the termcap about whether the cursor
1891 * positioning is relative to the start of the screen or to the start of the
1892 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1893 * relative.
1894 */
1895 if (STRCMP(term, "pcterm") == 0)
1896 T_CCS = (char_u *)"yes";
1897 else
1898 T_CCS = empty_option;
1899
1900#ifdef UNIX
1901/*
1902 * Any "stty" settings override the default for t_kb from the termcap.
1903 * This is in os_unix.c, because it depends a lot on the version of unix that
1904 * is being used.
1905 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1906 */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001907# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 if (!gui.in_use)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001909# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 get_stty();
1911#endif
1912
1913/*
1914 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1915 * didn't work, use the default CTRL-H
1916 * The default for t_kD is DEL, unless t_kb is DEL.
1917 * The vim_strsave'd strings are probably lost forever, well it's only two
1918 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1919 * directly.
1920 */
1921#ifdef FEAT_GUI
1922 if (!gui.in_use)
1923#endif
1924 {
1925 bs_p = find_termcode((char_u *)"kb");
1926 del_p = find_termcode((char_u *)"kD");
1927 if (bs_p == NULL || *bs_p == NUL)
1928 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1929 if ((del_p == NULL || *del_p == NUL) &&
1930 (bs_p == NULL || *bs_p != DEL))
1931 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
1932 }
1933
1934#if defined(UNIX) || defined(VMS)
1935 term_is_xterm = vim_is_xterm(term);
1936#endif
1937
1938#ifdef FEAT_MOUSE
1939# if defined(UNIX) || defined(VMS)
1940# ifdef FEAT_MOUSE_TTY
1941 /*
1942 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1943 * The termcode for the mouse is added as a side effect in option.c.
1944 */
1945 {
Bram Moolenaar6d006f92017-06-23 22:35:34 +02001946 char_u *p = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00001949 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 {
1951 if (use_xterm_mouse())
1952 p = NULL; /* keep existing value, might be "xterm2" */
1953 else
1954 p = (char_u *)"xterm";
1955 }
1956# endif
1957 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001958 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001960 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
1961 * "xterm2" in check_termcode(). */
1962 reset_option_was_set((char_u *)"ttym");
1963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 if (p == NULL
1965# ifdef FEAT_GUI
1966 || gui.in_use
1967# endif
1968 )
1969 check_mouse_termcode(); /* set mouse termcode anyway */
1970 }
1971# endif
1972# else
1973 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
1974# endif
1975#endif /* FEAT_MOUSE */
1976
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977#ifdef USE_TERM_CONSOLE
1978 /* DEFAULT_TERM indicates that it is the machine console. */
1979 if (STRCMP(term, DEFAULT_TERM) != 0)
1980 term_console = FALSE;
1981 else
1982 {
1983 term_console = TRUE;
1984# ifdef AMIGA
1985 win_resize_on(); /* enable window resizing reports */
1986# endif
1987 }
1988#endif
1989
1990#if defined(UNIX) || defined(VMS)
1991 /*
1992 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
1993 */
1994 if (vim_is_fastterm(term))
1995 p_tf = TRUE;
1996#endif
1997#ifdef USE_TERM_CONSOLE
1998 /*
1999 * 'ttyfast' is default on consoles
2000 */
2001 if (term_console)
2002 p_tf = TRUE;
2003#endif
2004
2005 ttest(TRUE); /* make sure we have a valid set of terminal codes */
2006
2007 full_screen = TRUE; /* we can use termcap codes from now on */
2008 set_term_defaults(); /* use current values as defaults */
2009#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02002010 LOG_TR(("setting crv_status to STATUS_GET"));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02002011 crv_status = STATUS_GET; /* Get terminal version later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012#endif
2013
2014 /*
2015 * Initialize the terminal with the appropriate termcap codes.
2016 * Set the mouse and window title if possible.
2017 * Don't do this when starting, need to parse the .vimrc first, because it
2018 * may redefine t_TI etc.
2019 */
2020 if (starting != NO_SCREEN)
2021 {
2022 starttermcap(); /* may change terminal mode */
2023#ifdef FEAT_MOUSE
2024 setmouse(); /* may start using the mouse */
2025#endif
2026#ifdef FEAT_TITLE
2027 maketitle(); /* may display window title */
2028#endif
2029 }
2030
2031 /* display initial screen after ttest() checking. jw. */
2032 if (width <= 0 || height <= 0)
2033 {
2034 /* termcap failed to report size */
2035 /* set defaults, in case ui_get_shellsize() also fails */
2036 width = 80;
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002037#if defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 height = 25; /* console is often 25 lines */
2039#else
2040 height = 24; /* most terminals are 24 lines */
2041#endif
2042 }
2043 set_shellsize(width, height, FALSE); /* may change Rows */
2044 if (starting != NO_SCREEN)
2045 {
2046 if (scroll_region)
2047 scroll_region_reset(); /* In case Rows changed */
2048 check_map_keycodes(); /* check mappings for terminal codes used */
2049
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002051 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052
2053 /*
2054 * Execute the TermChanged autocommands for each buffer that is
2055 * loaded.
2056 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002057 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar29323592016-07-24 22:04:11 +02002058 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 {
2060 if (curbuf->b_ml.ml_mfp != NULL)
2061 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
2062 curbuf);
2063 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002064 if (bufref_valid(&old_curbuf))
2065 curbuf = old_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 }
2068
2069#ifdef FEAT_TERMRESPONSE
2070 may_req_termresponse();
2071#endif
2072
2073 return OK;
2074}
2075
2076#if defined(FEAT_MOUSE) || defined(PROTO)
2077
2078# ifdef FEAT_MOUSE_TTY
2079# define HMT_NORMAL 1
2080# define HMT_NETTERM 2
2081# define HMT_DEC 4
2082# define HMT_JSBTERM 8
2083# define HMT_PTERM 16
Bram Moolenaarb491c032011-11-30 14:47:15 +01002084# define HMT_URXVT 32
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002085# define HMT_SGR 64
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002086# define HMT_SGR_REL 128
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087static int has_mouse_termcode = 0;
2088# endif
2089
Bram Moolenaar864207d2008-06-24 22:14:38 +00002090# if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002092set_mouse_termcode(
2093 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2094 char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095{
2096 char_u name[2];
2097
2098 name[0] = n;
2099 name[1] = KE_FILLER;
2100 add_termcode(name, s, FALSE);
2101# ifdef FEAT_MOUSE_TTY
2102# ifdef FEAT_MOUSE_JSB
2103 if (n == KS_JSBTERM_MOUSE)
2104 has_mouse_termcode |= HMT_JSBTERM;
2105 else
2106# endif
2107# ifdef FEAT_MOUSE_NET
2108 if (n == KS_NETTERM_MOUSE)
2109 has_mouse_termcode |= HMT_NETTERM;
2110 else
2111# endif
2112# ifdef FEAT_MOUSE_DEC
2113 if (n == KS_DEC_MOUSE)
2114 has_mouse_termcode |= HMT_DEC;
2115 else
2116# endif
2117# ifdef FEAT_MOUSE_PTERM
2118 if (n == KS_PTERM_MOUSE)
2119 has_mouse_termcode |= HMT_PTERM;
2120 else
2121# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002122# ifdef FEAT_MOUSE_URXVT
2123 if (n == KS_URXVT_MOUSE)
2124 has_mouse_termcode |= HMT_URXVT;
2125 else
2126# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002127# ifdef FEAT_MOUSE_SGR
2128 if (n == KS_SGR_MOUSE)
2129 has_mouse_termcode |= HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002130 else if (n == KS_SGR_MOUSE_RELEASE)
2131 has_mouse_termcode |= HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002132 else
2133# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 has_mouse_termcode |= HMT_NORMAL;
2135# endif
2136}
2137# endif
2138
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002139# if ((defined(UNIX) || defined(VMS)) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002140 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002142del_mouse_termcode(
2143 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144{
2145 char_u name[2];
2146
2147 name[0] = n;
2148 name[1] = KE_FILLER;
2149 del_termcode(name);
2150# ifdef FEAT_MOUSE_TTY
2151# ifdef FEAT_MOUSE_JSB
2152 if (n == KS_JSBTERM_MOUSE)
2153 has_mouse_termcode &= ~HMT_JSBTERM;
2154 else
2155# endif
2156# ifdef FEAT_MOUSE_NET
2157 if (n == KS_NETTERM_MOUSE)
2158 has_mouse_termcode &= ~HMT_NETTERM;
2159 else
2160# endif
2161# ifdef FEAT_MOUSE_DEC
2162 if (n == KS_DEC_MOUSE)
2163 has_mouse_termcode &= ~HMT_DEC;
2164 else
2165# endif
2166# ifdef FEAT_MOUSE_PTERM
2167 if (n == KS_PTERM_MOUSE)
2168 has_mouse_termcode &= ~HMT_PTERM;
2169 else
2170# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002171# ifdef FEAT_MOUSE_URXVT
2172 if (n == KS_URXVT_MOUSE)
2173 has_mouse_termcode &= ~HMT_URXVT;
2174 else
2175# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002176# ifdef FEAT_MOUSE_SGR
2177 if (n == KS_SGR_MOUSE)
2178 has_mouse_termcode &= ~HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002179 else if (n == KS_SGR_MOUSE_RELEASE)
2180 has_mouse_termcode &= ~HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002181 else
2182# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 has_mouse_termcode &= ~HMT_NORMAL;
2184# endif
2185}
2186# endif
2187#endif
2188
2189#ifdef HAVE_TGETENT
2190/*
2191 * Call tgetent()
2192 * Return error message if it fails, NULL if it's OK.
2193 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002194 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002195tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196{
2197 int i;
2198
2199 i = TGETENT(tbuf, term);
2200 if (i < 0 /* -1 is always an error */
2201# ifdef TGETENT_ZERO_ERR
2202 || i == 0 /* sometimes zero is also an error */
2203# endif
2204 )
2205 {
2206 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2207 * tgetent() with the always existing "dumb" entry to avoid a crash or
2208 * hang. */
2209 (void)TGETENT(tbuf, "dumb");
2210
2211 if (i < 0)
2212# ifdef TGETENT_ZERO_ERR
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002213 return _("E557: Cannot open termcap file");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 if (i == 0)
2215# endif
2216#ifdef TERMINFO
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002217 return _("E558: Terminal entry not found in terminfo");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218#else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002219 return _("E559: Terminal entry not found in termcap");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220#endif
2221 }
2222 return NULL;
2223}
2224
2225/*
2226 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2227 * Fix that here.
2228 */
2229 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002230vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231{
2232 char *p;
2233
2234 p = tgetstr(s, (char **)pp);
2235 if (p == (char *)-1)
2236 p = NULL;
2237 return (char_u *)p;
2238}
2239#endif /* HAVE_TGETENT */
2240
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002241#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242/*
2243 * Get Columns and Rows from the termcap. Used after a window signal if the
2244 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2245 * and "li" entries never change. But on some systems this works.
2246 * Errors while getting the entries are ignored.
2247 */
2248 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002249getlinecol(
2250 long *cp, /* pointer to columns */
2251 long *rp) /* pointer to rows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252{
2253 char_u tbuf[TBUFSZ];
2254
2255 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2256 {
2257 if (*cp == 0)
2258 *cp = tgetnum("co");
2259 if (*rp == 0)
2260 *rp = tgetnum("li");
2261 }
2262}
2263#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2264
2265/*
2266 * Get a string entry from the termcap and add it to the list of termcodes.
2267 * Used for <t_xx> special keys.
2268 * Give an error message for failure when not sourcing.
2269 * If force given, replace an existing entry.
2270 * Return FAIL if the entry was not found, OK if the entry was added.
2271 */
2272 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002273add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274{
2275 char_u *term;
2276 int key;
2277 struct builtin_term *termp;
2278#ifdef HAVE_TGETENT
2279 char_u *string;
2280 int i;
2281 int builtin_first;
2282 char_u tbuf[TBUFSZ];
2283 char_u tstrbuf[TBUFSZ];
2284 char_u *tp = tstrbuf;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002285 char *error_msg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286#endif
2287
2288/*
2289 * If the GUI is running or will start in a moment, we only support the keys
2290 * that the GUI can produce.
2291 */
2292#ifdef FEAT_GUI
2293 if (gui.in_use || gui.starting)
2294 return gui_mch_haskey(name);
2295#endif
2296
2297 if (!force && find_termcode(name) != NULL) /* it's already there */
2298 return OK;
2299
2300 term = T_NAME;
2301 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2302 return FAIL;
2303
2304 if (term_is_builtin(term)) /* name starts with "builtin_" */
2305 {
2306 term += 8;
2307#ifdef HAVE_TGETENT
2308 builtin_first = TRUE;
2309#endif
2310 }
2311#ifdef HAVE_TGETENT
2312 else
2313 builtin_first = p_tbi;
2314#endif
2315
2316#ifdef HAVE_TGETENT
2317/*
2318 * We can get the entry from the builtin termcap and from the external one.
2319 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2320 * builtin termcap first.
2321 * If 'ttybuiltin' is off, try external termcap first.
2322 */
2323 for (i = 0; i < 2; ++i)
2324 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002325 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326#endif
2327 /*
2328 * Search in builtin termcap
2329 */
2330 {
2331 termp = find_builtin_term(term);
2332 if (termp->bt_string != NULL) /* found it */
2333 {
2334 key = TERMCAP2KEY(name[0], name[1]);
Bram Moolenaare7808482018-03-06 13:17:23 +01002335 ++termp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 while (termp->bt_entry != (int)KS_NAME)
2337 {
2338 if ((int)termp->bt_entry == key)
2339 {
2340 add_termcode(name, (char_u *)termp->bt_string,
2341 term_is_8bit(term));
2342 return OK;
2343 }
2344 ++termp;
2345 }
2346 }
2347 }
2348#ifdef HAVE_TGETENT
2349 else
2350 /*
2351 * Search in external termcap
2352 */
2353 {
2354 error_msg = tgetent_error(tbuf, term);
2355 if (error_msg == NULL)
2356 {
2357 string = TGETSTR((char *)name, &tp);
2358 if (string != NULL && *string != NUL)
2359 {
2360 add_termcode(name, string, FALSE);
2361 return OK;
2362 }
2363 }
2364 }
2365 }
2366#endif
2367
2368 if (sourcing_name == NULL)
2369 {
2370#ifdef HAVE_TGETENT
2371 if (error_msg != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002372 emsg(error_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 else
2374#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002375 semsg(_("E436: No \"%s\" entry in termcap"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 }
2377 return FAIL;
2378}
2379
2380 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002381term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382{
2383 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2384}
2385
2386/*
2387 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2388 * Assume that the terminal is using 8-bit controls when the name contains
2389 * "8bit", like in "xterm-8bit".
2390 */
2391 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002392term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393{
2394 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2395}
2396
2397/*
2398 * Translate terminal control chars from 7-bit to 8-bit:
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002399 * <Esc>[ -> CSI <M_C_[>
2400 * <Esc>] -> OSC <M-C-]>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 * <Esc>O -> <M-C-O>
2402 */
2403 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002404term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405{
2406 if (*p == ESC)
2407 {
2408 if (p[1] == '[')
2409 return CSI;
2410 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002411 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 if (p[1] == 'O')
2413 return 0x8f;
2414 }
2415 return 0;
2416}
2417
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002418#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002420term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
2422 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2423}
2424#endif
2425
2426#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2427
2428 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002429tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430{
2431 static char_u buf[16];
2432 char_u *p;
2433
2434 p = buf + 15;
2435 *p = '\0';
2436 do
2437 {
2438 --p;
2439 *p = (char_u) (i % 10 + '0');
2440 i /= 10;
2441 }
2442 while (i > 0 && p > buf);
2443 return p;
2444}
2445#endif
2446
2447#ifndef HAVE_TGETENT
2448
2449/*
2450 * minimal tgoto() implementation.
2451 * no padding and we only parse for %i %d and %+char
2452 */
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002453 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002454tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455{
2456 static char buf[30];
2457 char *p, *s, *e;
2458
2459 if (!cm)
2460 return "OOPS";
2461 e = buf + 29;
2462 for (s = buf; s < e && *cm; cm++)
2463 {
2464 if (*cm != '%')
2465 {
2466 *s++ = *cm;
2467 continue;
2468 }
2469 switch (*++cm)
2470 {
2471 case 'd':
2472 p = (char *)tltoa((unsigned long)y);
2473 y = x;
2474 while (*p)
2475 *s++ = *p++;
2476 break;
2477 case 'i':
2478 x++;
2479 y++;
2480 break;
2481 case '+':
2482 *s++ = (char)(*++cm + y);
2483 y = x;
2484 break;
2485 case '%':
2486 *s++ = *cm;
2487 break;
2488 default:
2489 return "OOPS";
2490 }
2491 }
2492 *s = '\0';
2493 return buf;
2494}
2495
2496#endif /* HAVE_TGETENT */
2497
2498/*
2499 * Set the terminal name and initialize the terminal options.
2500 * If "name" is NULL or empty, get the terminal name from the environment.
2501 * If that fails, use the default terminal name.
2502 */
2503 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002504termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505{
2506 char_u *term;
2507
2508 if (name != NULL && *name == NUL)
2509 name = NULL; /* empty name is equal to no name */
2510 term = name;
2511
2512#ifdef __BEOS__
2513 /*
2514 * TERM environment variable is normally set to 'ansi' on the Bebox;
2515 * Since the BeBox doesn't quite support full ANSI yet, we use our
2516 * own custom 'ansi-beos' termcap instead, unless the -T option has
2517 * been given on the command line.
2518 */
2519 if (term == NULL
2520 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2521 term = DEFAULT_TERM;
2522#endif
2523#ifndef MSWIN
2524 if (term == NULL)
2525 term = mch_getenv((char_u *)"TERM");
2526#endif
2527 if (term == NULL || *term == NUL)
2528 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002529 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530
2531 /* Set the default terminal name. */
2532 set_string_default("term", term);
2533 set_string_default("ttytype", term);
2534
2535 /*
2536 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2537 */
2538 set_termname(T_NAME != NULL ? T_NAME : term);
2539}
2540
2541/*
2542 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2543 */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002544#define OUT_SIZE 2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2546static char_u out_buf[OUT_SIZE + 1];
2547static int out_pos = 0; /* number of chars in out_buf */
2548
2549/*
2550 * out_flush(): flush the output buffer
2551 */
2552 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002553out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554{
2555 int len;
2556
2557 if (out_pos != 0)
2558 {
2559 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2560 len = out_pos;
2561 out_pos = 0;
2562 ui_write(out_buf, len);
2563 }
2564}
2565
Bram Moolenaara338adc2018-01-31 20:51:47 +01002566/*
Bram Moolenaard23a8232018-02-10 18:45:26 +01002567 * out_flush_cursor(): flush the output buffer and redraw the cursor.
2568 * Does not flush recursively in the GUI to avoid slow drawing.
Bram Moolenaara338adc2018-01-31 20:51:47 +01002569 */
2570 void
2571out_flush_cursor(
2572 int force UNUSED, /* when TRUE, update cursor even when not moved */
2573 int clear_selection UNUSED) /* clear selection under cursor */
2574{
2575 mch_disable_flush();
2576 out_flush();
2577 mch_enable_flush();
2578#ifdef FEAT_GUI
2579 if (gui.in_use)
2580 {
2581 gui_update_cursor(force, clear_selection);
2582 gui_may_flush();
2583 }
2584#endif
2585}
2586
2587
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588#if defined(FEAT_MBYTE) || defined(PROTO)
2589/*
2590 * Sometimes a byte out of a multi-byte character is written with out_char().
2591 * To avoid flushing half of the character, call this function first.
2592 */
2593 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002594out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595{
2596 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2597 out_flush();
2598}
2599#endif
2600
2601#ifdef FEAT_GUI
2602/*
2603 * out_trash(): Throw away the contents of the output buffer
2604 */
2605 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002606out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607{
2608 out_pos = 0;
2609}
2610#endif
2611
2612/*
2613 * out_char(c): put a byte into the output buffer.
2614 * Flush it if it becomes full.
2615 * This should not be used for outputting text on the screen (use functions
2616 * like msg_puts() and screen_putchar() for that).
2617 */
2618 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002619out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620{
Bram Moolenaard0573012017-10-28 21:11:06 +02002621#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2623 out_char('\r');
2624#endif
2625
2626 out_buf[out_pos++] = c;
2627
2628 /* For testing we flush each time. */
2629 if (out_pos >= OUT_SIZE || p_wd)
2630 out_flush();
2631}
2632
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002633static void out_char_nf(unsigned);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634
2635/*
2636 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2637 */
2638 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002639out_char_nf(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640{
Bram Moolenaard0573012017-10-28 21:11:06 +02002641#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2643 out_char_nf('\r');
2644#endif
2645
2646 out_buf[out_pos++] = c;
2647
2648 if (out_pos >= OUT_SIZE)
2649 out_flush();
2650}
2651
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002652#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2653 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654/*
2655 * A never-padding out_str.
2656 * use this whenever you don't want to run the string through tputs.
2657 * tputs above is harmless, but tputs from the termcap library
2658 * is likely to strip off leading digits, that it mistakes for padding
2659 * information, and "%i", "%d", etc.
2660 * This should only be used for writing terminal codes, not for outputting
2661 * normal text (use functions like msg_puts() and screen_putchar() for that).
2662 */
2663 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002664out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665{
2666 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */
2667 out_flush();
2668 while (*s)
2669 out_char_nf(*s++);
2670
2671 /* For testing we write one string at a time. */
2672 if (p_wd)
2673 out_flush();
2674}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002675#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676
2677/*
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002678 * A conditional-flushing out_str, mainly for visualbell.
2679 * Handles a delay internally, because termlib may not respect the delay or do
2680 * it at the wrong time.
2681 * Note: Only for terminal strings.
2682 */
2683 void
2684out_str_cf(char_u *s)
2685{
2686 if (s != NULL && *s)
2687 {
Bram Moolenaarc2226842017-06-29 22:27:24 +02002688#ifdef HAVE_TGETENT
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002689 char_u *p;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002690#endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002691
2692#ifdef FEAT_GUI
2693 /* Don't use tputs() when GUI is used, ncurses crashes. */
2694 if (gui.in_use)
2695 {
2696 out_str_nf(s);
2697 return;
2698 }
2699#endif
2700 if (out_pos > OUT_SIZE - 20)
2701 out_flush();
2702#ifdef HAVE_TGETENT
2703 for (p = s; *s; ++s)
2704 {
2705 /* flush just before delay command */
2706 if (*s == '$' && *(s + 1) == '<')
2707 {
2708 char_u save_c = *s;
2709 int duration = atoi((char *)s + 2);
2710
2711 *s = NUL;
2712 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2713 *s = save_c;
2714 out_flush();
Bram Moolenaarc2226842017-06-29 22:27:24 +02002715# ifdef ELAPSED_FUNC
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002716 /* Only sleep here if we can limit this happening in
2717 * vim_beep(). */
2718 p = vim_strchr(s, '>');
2719 if (p == NULL || duration <= 0)
2720 {
2721 /* can't parse the time, don't sleep here */
2722 p = s;
2723 }
2724 else
2725 {
2726 ++p;
2727 do_sleep(duration);
2728 }
Bram Moolenaarc2226842017-06-29 22:27:24 +02002729# else
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002730 /* Rely on the terminal library to sleep. */
2731 p = s;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002732# endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002733 break;
2734 }
2735 }
2736 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2737#else
2738 while (*s)
2739 out_char_nf(*s++);
2740#endif
2741
2742 /* For testing we write one string at a time. */
2743 if (p_wd)
2744 out_flush();
2745 }
2746}
2747
2748/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 * out_str(s): Put a character string a byte at a time into the output buffer.
2750 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2751 * This should only be used for writing terminal codes, not for outputting
2752 * normal text (use functions like msg_puts() and screen_putchar() for that).
2753 */
2754 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002755out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756{
2757 if (s != NULL && *s)
2758 {
2759#ifdef FEAT_GUI
2760 /* Don't use tputs() when GUI is used, ncurses crashes. */
2761 if (gui.in_use)
2762 {
2763 out_str_nf(s);
2764 return;
2765 }
2766#endif
2767 /* avoid terminal strings being split up */
2768 if (out_pos > OUT_SIZE - 20)
2769 out_flush();
2770#ifdef HAVE_TGETENT
2771 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2772#else
2773 while (*s)
2774 out_char_nf(*s++);
2775#endif
2776
2777 /* For testing we write one string at a time. */
2778 if (p_wd)
2779 out_flush();
2780 }
2781}
2782
2783/*
2784 * cursor positioning using termcap parser. (jw)
2785 */
2786 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002787term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788{
2789 OUT_STR(tgoto((char *)T_CM, col, row));
2790}
2791
2792 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002793term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794{
2795 OUT_STR(tgoto((char *)T_CRI, 0, i));
2796}
2797
2798 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002799term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800{
2801 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2802}
2803
2804 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002805term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806{
2807 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2808}
2809
2810#if defined(HAVE_TGETENT) || defined(PROTO)
2811 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002812term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813{
2814 /* Can't handle a negative value here */
2815 if (x < 0)
2816 x = 0;
2817 if (y < 0)
2818 y = 0;
2819 OUT_STR(tgoto((char *)T_CWP, y, x));
2820}
2821
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002822# if defined(FEAT_TERMRESPONSE) || defined(PROTO)
2823/*
2824 * Return TRUE if we can request the terminal for a response.
2825 */
2826 static int
2827can_get_termresponse()
2828{
2829 return cur_tmode == TMODE_RAW
2830 && termcap_active
2831# ifdef UNIX
2832 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd)))
2833# endif
2834 && p_ek;
2835}
2836
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002837static int winpos_x = -1;
2838static int winpos_y = -1;
2839static int did_request_winpos = 0;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002840
Bram Moolenaar113e1072019-01-20 15:30:40 +01002841# if (defined(FEAT_EVAL) && defined(HAVE_TGETENT)) || defined(PROTO)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002842/*
2843 * Try getting the Vim window position from the terminal.
2844 * Returns OK or FAIL.
2845 */
2846 int
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002847term_get_winpos(int *x, int *y, varnumber_T timeout)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002848{
2849 int count = 0;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002850 int prev_winpos_x = winpos_x;
2851 int prev_winpos_y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002852
2853 if (*T_CGP == NUL || !can_get_termresponse())
2854 return FAIL;
2855 winpos_x = -1;
2856 winpos_y = -1;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002857 ++did_request_winpos;
2858 winpos_status = STATUS_SENT;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002859 OUT_STR(T_CGP);
2860 out_flush();
2861
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002862 /* Try reading the result for "timeout" msec. */
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002863 while (count++ <= timeout / 10 && !got_int)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002864 {
2865 (void)vpeekc_nomap();
2866 if (winpos_x >= 0 && winpos_y >= 0)
2867 {
2868 *x = winpos_x;
2869 *y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002870 return OK;
2871 }
2872 ui_delay(10, FALSE);
2873 }
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002874 /* Do not reset "did_request_winpos", if we timed out the response might
2875 * still come later and we must consume it. */
2876
2877 winpos_x = prev_winpos_x;
2878 winpos_y = prev_winpos_y;
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002879 if (timeout < 10 && prev_winpos_y >= 0 && prev_winpos_x >= 0)
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002880 {
2881 /* Polling: return previous values if we have them. */
2882 *x = winpos_x;
2883 *y = winpos_y;
2884 return OK;
2885 }
2886
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002887 return FALSE;
2888}
Bram Moolenaar113e1072019-01-20 15:30:40 +01002889# endif
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002890# endif
2891
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 void
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002893term_set_winsize(int height, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002895 OUT_STR(tgoto((char *)T_CWS, width, height));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896}
2897#endif
2898
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002900term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901{
2902 char buf[20];
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002903 int i = *s == CSI ? 1 : 2;
2904 /* index in s[] just after <Esc>[ or CSI */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905
2906 /* Special handling of 16 colors, because termcap can't handle it */
2907 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2908 /* Also accept CSI instead of <Esc>[ */
2909 if (n >= 8 && t_colors >= 16
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002910 && ((s[0] == ESC && s[1] == '[')
2911#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
2912 || (s[0] == ESC && s[1] == '|')
2913#endif
2914 || (s[0] == CSI && (i = 1) == 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 && s[i] != NUL
2916 && (STRCMP(s + i + 1, "%p1%dm") == 0
2917 || STRCMP(s + i + 1, "%dm") == 0)
2918 && (s[i] == '3' || s[i] == '4'))
2919 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920#ifdef TERMINFO
Bram Moolenaar827b1652016-05-05 18:14:03 +02002921 char *format = "%s%s%%p1%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922#else
Bram Moolenaar827b1652016-05-05 18:14:03 +02002923 char *format = "%s%s%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924#endif
Bram Moolenaard315cf52018-05-23 20:30:56 +02002925 char *lead = i == 2 ? (
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002926#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
Bram Moolenaard315cf52018-05-23 20:30:56 +02002927 s[1] == '|' ? IF_EB("\033|", ESC_STR "|") :
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002928#endif
Bram Moolenaard315cf52018-05-23 20:30:56 +02002929 IF_EB("\033[", ESC_STR "[")) : "\233";
2930 char *tail = s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2931 : (n >= 16 ? "48;5;" : "10");
2932
2933 sprintf(buf, format, lead, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2935 }
2936 else
2937 OUT_STR(tgoto((char *)s, 0, n));
2938}
2939
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002940 void
2941term_fg_color(int n)
2942{
2943 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2944 if (*T_CAF)
2945 term_color(T_CAF, n);
2946 else if (*T_CSF)
2947 term_color(T_CSF, n);
2948}
2949
2950 void
2951term_bg_color(int n)
2952{
2953 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2954 if (*T_CAB)
2955 term_color(T_CAB, n);
2956 else if (*T_CSB)
2957 term_color(T_CSB, n);
2958}
2959
Bram Moolenaar61be73b2016-04-29 22:59:22 +02002960#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002961
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002962#define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF)
2963#define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF)
2964#define BLUE(rgb) (((long_u)(rgb) ) & 0xFF)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002965
2966 static void
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002967term_rgb_color(char_u *s, guicolor_T rgb)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002968{
Bram Moolenaar380130f2016-04-22 11:24:43 +02002969#define MAX_COLOR_STR_LEN 100
2970 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002971
Bram Moolenaara1c487e2016-04-22 20:20:19 +02002972 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02002973 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002974 OUT_STR(buf);
2975}
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002976
2977 void
2978term_fg_rgb_color(guicolor_T rgb)
2979{
2980 term_rgb_color(T_8F, rgb);
2981}
2982
2983 void
2984term_bg_rgb_color(guicolor_T rgb)
2985{
2986 term_rgb_color(T_8B, rgb);
2987}
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002988#endif
2989
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002990#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \
2991 || defined(MACOS_X))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992/*
2993 * Generic function to set window title, using t_ts and t_fs.
2994 */
2995 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002996term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997{
2998 /* t_ts takes one argument: column in status line */
2999 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
3000 out_str_nf(title);
3001 out_str(T_FS); /* set title end */
3002 out_flush();
3003}
Bram Moolenaar40385db2018-08-07 22:31:44 +02003004
3005/*
3006 * Tell the terminal to push (save) the title and/or icon, so that it can be
3007 * popped (restored) later.
3008 */
3009 void
3010term_push_title(int which)
3011{
3012 if ((which & SAVE_RESTORE_TITLE) && *T_CST != NUL)
3013 {
3014 OUT_STR(T_CST);
3015 out_flush();
3016 }
3017
3018 if ((which & SAVE_RESTORE_ICON) && *T_SSI != NUL)
3019 {
3020 OUT_STR(T_SSI);
3021 out_flush();
3022 }
3023}
3024
3025/*
3026 * Tell the terminal to pop the title and/or icon.
3027 */
3028 void
3029term_pop_title(int which)
3030{
3031 if ((which & SAVE_RESTORE_TITLE) && *T_CRT != NUL)
3032 {
3033 OUT_STR(T_CRT);
3034 out_flush();
3035 }
3036
3037 if ((which & SAVE_RESTORE_ICON) && *T_SRI != NUL)
3038 {
3039 OUT_STR(T_SRI);
3040 out_flush();
3041 }
3042}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043#endif
3044
3045/*
3046 * Make sure we have a valid set or terminal options.
3047 * Replace all entries that are NULL by empty_option
3048 */
3049 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003050ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003052 char_u *env_colors;
3053
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 check_options(); /* make sure no options are NULL */
3055
3056 /*
3057 * MUST have "cm": cursor motion.
3058 */
3059 if (*T_CM == NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003060 emsg(_("E437: terminal capability \"cm\" required"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061
3062 /*
3063 * if "cs" defined, use a scroll region, it's faster.
3064 */
3065 if (*T_CS != NUL)
3066 scroll_region = TRUE;
3067 else
3068 scroll_region = FALSE;
3069
3070 if (pairs)
3071 {
3072 /*
3073 * optional pairs
3074 */
3075 /* TP goes to normal mode for TI (invert) and TB (bold) */
3076 if (*T_ME == NUL)
3077 T_ME = T_MR = T_MD = T_MB = empty_option;
3078 if (*T_SO == NUL || *T_SE == NUL)
3079 T_SO = T_SE = empty_option;
3080 if (*T_US == NUL || *T_UE == NUL)
3081 T_US = T_UE = empty_option;
3082 if (*T_CZH == NUL || *T_CZR == NUL)
3083 T_CZH = T_CZR = empty_option;
3084
3085 /* T_VE is needed even though T_VI is not defined */
3086 if (*T_VE == NUL)
3087 T_VI = empty_option;
3088
3089 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
3090 if (*T_ME == NUL)
3091 {
3092 T_ME = T_SE;
3093 T_MR = T_SO;
3094 T_MD = T_SO;
3095 }
3096
3097 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
3098 if (*T_SO == NUL)
3099 {
3100 T_SE = T_ME;
3101 if (*T_MR == NUL)
3102 T_SO = T_MD;
3103 else
3104 T_SO = T_MR;
3105 }
3106
3107 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
3108 if (*T_CZH == NUL)
3109 {
3110 T_CZR = T_ME;
3111 if (*T_MR == NUL)
3112 T_CZH = T_MD;
3113 else
3114 T_CZH = T_MR;
3115 }
3116
3117 /* "Sb" and "Sf" come in pairs */
3118 if (*T_CSB == NUL || *T_CSF == NUL)
3119 {
3120 T_CSB = empty_option;
3121 T_CSF = empty_option;
3122 }
3123
3124 /* "AB" and "AF" come in pairs */
3125 if (*T_CAB == NUL || *T_CAF == NUL)
3126 {
3127 T_CAB = empty_option;
3128 T_CAF = empty_option;
3129 }
3130
3131 /* if 'Sb' and 'AB' are not defined, reset "Co" */
3132 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00003133 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134
3135 /* Set 'weirdinvert' according to value of 't_xs' */
3136 p_wiv = (*T_XS != NUL);
3137 }
3138 need_gather = TRUE;
3139
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003140 /* Set t_colors to the value of $COLORS or t_Co. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 t_colors = atoi((char *)T_CCO);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003142 env_colors = mch_getenv((char_u *)"COLORS");
3143 if (env_colors != NULL && isdigit(*env_colors))
3144 {
3145 int colors = atoi((char *)env_colors);
3146
3147 if (colors != t_colors)
3148 set_color_count(colors);
3149 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150}
3151
3152#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3153 || defined(PROTO)
3154/*
3155 * Represent the given long_u as individual bytes, with the most significant
3156 * byte first, and store them in dst.
3157 */
3158 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003159add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160{
3161 int i;
3162 int shift;
3163
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003164 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 {
3166 shift = 8 * (sizeof(long_u) - i);
3167 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3168 }
3169}
3170
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171/*
3172 * Interpret the next string of bytes in buf as a long integer, with the most
3173 * significant byte first. Note that it is assumed that buf has been through
3174 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3175 * Puts result in val, and returns the number of bytes read from buf
3176 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
3177 * were present.
3178 */
3179 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003180get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181{
3182 int len;
3183 char_u bytes[sizeof(long_u)];
3184 int i;
3185 int shift;
3186
3187 *val = 0;
3188 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3189 if (len != -1)
3190 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003191 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 {
3193 shift = 8 * (sizeof(long_u) - 1 - i);
3194 *val += (long_u)bytes[i] << shift;
3195 }
3196 }
3197 return len;
3198}
3199#endif
3200
3201#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00003202 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
3203 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204/*
3205 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3206 * that buf has been through inchar(). Returns the actual number of bytes used
3207 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
3208 * available.
3209 */
3210 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003211get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212{
3213 int len = 0;
3214 int i;
3215 char_u c;
3216
3217 for (i = 0; i < num_bytes; i++)
3218 {
3219 if ((c = buf[len++]) == NUL)
3220 return -1;
3221 if (c == K_SPECIAL)
3222 {
3223 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
3224 return -1;
3225 if (buf[len++] == (int)KS_ZERO)
3226 c = NUL;
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003227 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is
3228 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */
3229 if (buf[len++] == (int)KE_CSI)
3230 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003232 else if (c == CSI && buf[len] == KS_EXTRA
3233 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003234 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3235 * the start of a special key, see add_to_input_buf_csi(). */
3236 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 bytes[i] = c;
3238 }
3239 return len;
3240}
3241#endif
3242
3243/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003244 * Check if the new shell size is valid, correct it if it's too small or way
3245 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246 */
3247 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003248check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 if (Rows < min_rows()) /* need room for one window and command line */
3251 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003252 limit_screen_size();
3253}
3254
3255/*
3256 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3257 */
3258 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003259limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003260{
3261 if (Columns < MIN_COLUMNS)
3262 Columns = MIN_COLUMNS;
3263 else if (Columns > 10000)
3264 Columns = 10000;
3265 if (Rows > 1000)
3266 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267}
3268
Bram Moolenaar86b68352004-12-27 21:59:20 +00003269/*
3270 * Invoked just before the screen structures are going to be (re)allocated.
3271 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003273win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274{
3275 static int old_Rows = 0;
3276 static int old_Columns = 0;
3277
3278 if (old_Rows != Rows || old_Columns != Columns)
3279 ui_new_shellsize();
3280 if (old_Rows != Rows)
3281 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003282 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003283 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003284 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 old_Rows = Rows;
3286 shell_new_rows(); /* update window sizes */
3287 }
3288 if (old_Columns != Columns)
3289 {
3290 old_Columns = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 shell_new_columns(); /* update window sizes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 }
3293}
3294
3295/*
3296 * Call this function when the Vim shell has been resized in any way.
3297 * Will obtain the current size and redraw (also when size didn't change).
3298 */
3299 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003300shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301{
3302 set_shellsize(0, 0, FALSE);
3303}
3304
3305/*
3306 * Check if the shell size changed. Handle a resize.
3307 * When the size didn't change, nothing happens.
3308 */
3309 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003310shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311{
3312 int old_Rows = Rows;
3313 int old_Columns = Columns;
3314
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003315 if (!exiting
3316#ifdef FEAT_GUI
3317 /* Do not get the size when executing a shell command during
3318 * startup. */
3319 && !gui.starting
3320#endif
3321 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003322 {
3323 (void)ui_get_shellsize();
3324 check_shellsize();
3325 if (old_Rows != Rows || old_Columns != Columns)
3326 shell_resized();
3327 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328}
3329
3330/*
3331 * Set size of the Vim shell.
3332 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3333 * window size (this is used for the :win command).
3334 * If 'mustset' is FALSE, we may try to get the real window size and if
3335 * it fails use 'width' and 'height'.
3336 */
3337 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003338set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339{
3340 static int busy = FALSE;
3341
3342 /*
3343 * Avoid recursiveness, can happen when setting the window size causes
3344 * another window-changed signal.
3345 */
3346 if (busy)
3347 return;
3348
3349 if (width < 0 || height < 0) /* just checking... */
3350 return;
3351
Bram Moolenaara971b822011-09-14 14:43:25 +02003352 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353 {
Bram Moolenaara971b822011-09-14 14:43:25 +02003354 /* postpone the resizing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 State = SETWSIZE;
3356 return;
3357 }
3358
Bram Moolenaara971b822011-09-14 14:43:25 +02003359 /* curwin->w_buffer can be NULL when we are closing a window and the
3360 * buffer has already been closed and removing a scrollbar causes a resize
3361 * event. Don't resize then, it will happen after entering another buffer.
3362 */
3363 if (curwin->w_buffer == NULL)
3364 return;
3365
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 ++busy;
3367
3368#ifdef AMIGA
3369 out_flush(); /* must do this before mch_get_shellsize() for
3370 some obscure reason */
3371#endif
3372
3373 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3374 {
3375 Rows = height;
3376 Columns = width;
3377 check_shellsize();
3378 ui_set_shellsize(mustset);
3379 }
3380 else
3381 check_shellsize();
3382
3383 /* The window layout used to be adjusted here, but it now happens in
3384 * screenalloc() (also invoked from screenclear()). That is because the
3385 * "busy" check above may skip this, but not screenalloc(). */
3386
3387 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3388 screenclear();
3389 else
3390 screen_start(); /* don't know where cursor is now */
3391
3392 if (starting != NO_SCREEN)
3393 {
3394#ifdef FEAT_TITLE
3395 maketitle();
3396#endif
3397 changed_line_abv_curs();
3398 invalidate_botline();
3399
3400 /*
3401 * We only redraw when it's needed:
3402 * - While at the more prompt or executing an external command, don't
3403 * redraw, but position the cursor.
3404 * - While editing the command line, only redraw that.
3405 * - in Ex mode, don't redraw anything.
3406 * - Otherwise, redraw right now, and position the cursor.
3407 * Always need to call update_screen() or screenalloc(), to make
3408 * sure Rows/Columns and the size of ScreenLines[] is correct!
3409 */
3410 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3411 || exmode_active)
3412 {
3413 screenalloc(FALSE);
3414 repeat_message();
3415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 else
3417 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003418 if (curwin->w_p_scb)
3419 do_check_scrollbind(TRUE);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003420 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003421 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003422 update_screen(NOT_VALID);
3423 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003424 }
3425 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003426 {
3427 update_topline();
3428#if defined(FEAT_INS_EXPAND)
3429 if (pum_visible())
3430 {
3431 redraw_later(NOT_VALID);
Bram Moolenaara5e66212017-09-29 22:42:33 +02003432 ins_compl_show_pum();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003433 }
Bram Moolenaar280f1262006-01-30 00:14:18 +00003434#endif
Bram Moolenaara5e66212017-09-29 22:42:33 +02003435 update_screen(NOT_VALID);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003436 if (redrawing())
3437 setcursor();
3438 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 }
3440 cursor_on(); /* redrawing may have switched it off */
3441 }
3442 out_flush();
3443 --busy;
3444}
3445
3446/*
3447 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3448 * commands and Ex mode).
3449 */
3450 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003451settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452{
3453#ifdef FEAT_GUI
3454 /* don't set the term where gvim was started to any mode */
3455 if (gui.in_use)
3456 return;
3457#endif
3458
3459 if (full_screen)
3460 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 /*
3462 * When returning after calling a shell we want to really set the
3463 * terminal to raw mode, even though we think it already is, because
3464 * the shell program may have reset the terminal mode.
3465 * When we think the terminal is normal, don't try to set it to
3466 * normal again, because that causes problems (logout!) on some
3467 * machines.
3468 */
3469 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3470 {
3471#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003472# ifdef FEAT_GUI
3473 if (!gui.in_use && !gui.starting)
3474# endif
3475 {
3476 /* May need to check for T_CRV response and termcodes, it
3477 * doesn't work in Cooked mode, an external program may get
3478 * them. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003479 if (tmode != TMODE_RAW && (crv_status == STATUS_SENT
3480 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003481#ifdef FEAT_TERMINAL
3482 || rfg_status == STATUS_SENT
3483#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003484 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003485 || rbm_status == STATUS_SENT
Bram Moolenaar89894aa2018-03-05 22:43:10 +01003486 || rcs_status == STATUS_SENT
3487 || winpos_status == STATUS_SENT))
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003488 (void)vpeekc_nomap();
3489 check_for_codes_from_term();
3490 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491#endif
3492#ifdef FEAT_MOUSE_TTY
3493 if (tmode != TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003494 mch_setmouse(FALSE); /* switch mouse off */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003496 if (tmode != TMODE_RAW)
3497 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 out_flush();
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003499 mch_settmode(tmode); /* machine specific function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 cur_tmode = tmode;
3501#ifdef FEAT_MOUSE
3502 if (tmode == TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003503 setmouse(); /* may switch mouse on */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003505 if (tmode == TMODE_RAW)
3506 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 out_flush();
3508 }
3509#ifdef FEAT_TERMRESPONSE
3510 may_req_termresponse();
3511#endif
3512 }
3513}
3514
3515 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003516starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517{
3518 if (full_screen && !termcap_active)
3519 {
3520 out_str(T_TI); /* start termcap mode */
3521 out_str(T_KS); /* start "keypad transmit" mode */
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003522 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 out_flush();
3524 termcap_active = TRUE;
3525 screen_start(); /* don't know where cursor is now */
3526#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003527# ifdef FEAT_GUI
3528 if (!gui.in_use && !gui.starting)
3529# endif
3530 {
3531 may_req_termresponse();
3532 /* Immediately check for a response. If t_Co changes, we don't
3533 * want to redraw with wrong colors first. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003534 if (crv_status == STATUS_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003535 check_for_codes_from_term();
3536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537#endif
3538 }
3539}
3540
3541 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003542stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543{
3544 screen_stop_highlight();
3545 reset_cterm_colors();
3546 if (termcap_active)
3547 {
3548#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003549# ifdef FEAT_GUI
3550 if (!gui.in_use && !gui.starting)
3551# endif
3552 {
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003553 /* May need to discard T_CRV, T_U7 or T_RBG response. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003554 if (crv_status == STATUS_SENT
3555 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003556# ifdef FEAT_TERMINAL
3557 || rfg_status == STATUS_SENT
3558# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003559 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003560 || rbm_status == STATUS_SENT
Bram Moolenaar89894aa2018-03-05 22:43:10 +01003561 || rcs_status == STATUS_SENT
3562 || winpos_status == STATUS_SENT)
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003563 {
3564# ifdef UNIX
3565 /* Give the terminal a chance to respond. */
3566 mch_delay(100L, FALSE);
3567# endif
3568# ifdef TCIFLUSH
3569 /* Discard data received but not read. */
3570 if (exiting)
3571 tcflush(fileno(stdin), TCIFLUSH);
3572# endif
3573 }
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003574 /* Check for termcodes first, otherwise an external program may
3575 * get them. */
3576 check_for_codes_from_term();
3577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578#endif
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003579 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 out_str(T_KE); /* stop "keypad transmit" mode */
3581 out_flush();
3582 termcap_active = FALSE;
3583 cursor_on(); /* just in case it is still off */
3584 out_str(T_TE); /* stop termcap mode */
3585 screen_start(); /* don't know where cursor is now */
3586 out_flush();
3587 }
3588}
3589
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003590#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591/*
3592 * Request version string (for xterm) when needed.
3593 * Only do this after switching to raw mode, otherwise the result will be
3594 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003595 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003596 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 * Only do this after termcap mode has been started, otherwise the codes for
3598 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003599 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3600 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003601 * On Unix only do it when both output and input are a tty (avoid writing
3602 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 * The result is caught in check_termcode().
3604 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003605 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003606may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003608 if (crv_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003609 && can_get_termresponse()
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003610 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 && *T_CRV != NUL)
3612 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003613 LOG_TR(("Sending CRV request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 out_str(T_CRV);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003615 crv_status = STATUS_SENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 /* check for the characters now, otherwise they might be eaten by
3617 * get_keystroke() */
3618 out_flush();
3619 (void)vpeekc_nomap();
3620 }
3621}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003622
3623# if defined(FEAT_MBYTE) || defined(PROTO)
3624/*
3625 * Check how the terminal treats ambiguous character width (UAX #11).
Bram Moolenaar2951b772013-07-03 12:45:31 +02003626 * First, we move the cursor to (1, 0) and print a test ambiguous character
Bram Moolenaar9584b312013-03-13 19:29:28 +01003627 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
Bram Moolenaar2951b772013-07-03 12:45:31 +02003628 * If the terminal treats \u25bd as single width, the position is (1, 1),
3629 * or if it is treated as double width, that will be (1, 2).
Bram Moolenaar9584b312013-03-13 19:29:28 +01003630 * This function has the side effect that changes cursor position, so
3631 * it must be called immediately after entering termcap mode.
3632 */
3633 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003634may_req_ambiguous_char_width(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003635{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003636 if (u7_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003637 && can_get_termresponse()
3638 && starting == 0
Bram Moolenaar9584b312013-03-13 19:29:28 +01003639 && *T_U7 != NUL
3640 && !option_was_set((char_u *)"ambiwidth"))
3641 {
3642 char_u buf[16];
3643
Bram Moolenaarb255b902018-04-24 21:40:10 +02003644 LOG_TR(("Sending U7 request"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02003645 /* Do this in the second row. In the first row the returned sequence
3646 * may be CSI 1;2R, which is the same as <S-F3>. */
3647 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003648 buf[mb_char2bytes(0x25bd, buf)] = 0;
3649 out_str(buf);
3650 out_str(T_U7);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003651 u7_status = STATUS_SENT;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003652 out_flush();
Bram Moolenaar976787d2017-06-04 15:45:50 +02003653
3654 /* This overwrites a few characters on the screen, a redraw is needed
3655 * after this. Clear them out for now. */
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003656 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003657 out_str((char_u *)" ");
3658 term_windgoto(0, 0);
Bram Moolenaar976787d2017-06-04 15:45:50 +02003659
Bram Moolenaar05684312017-12-09 15:11:24 +01003660 /* Need to reset the known cursor position. */
3661 screen_start();
3662
Bram Moolenaar9584b312013-03-13 19:29:28 +01003663 /* check for the characters now, otherwise they might be eaten by
3664 * get_keystroke() */
3665 out_flush();
3666 (void)vpeekc_nomap();
3667 }
3668}
3669# endif
Bram Moolenaar2951b772013-07-03 12:45:31 +02003670
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003671/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003672 * Similar to requesting the version string: Request the terminal background
3673 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003674 */
3675 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003676may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003677{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003678 if (can_get_termresponse() && starting == 0)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003679 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003680 int didit = FALSE;
3681
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003682# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003683 /* Only request foreground if t_RF is set. */
3684 if (rfg_status == STATUS_GET && *T_RFG != NUL)
3685 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003686 LOG_TR(("Sending FG request"));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003687 out_str(T_RFG);
3688 rfg_status = STATUS_SENT;
3689 didit = TRUE;
3690 }
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003691# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003692
3693 /* Only request background if t_RB is set. */
3694 if (rbg_status == STATUS_GET && *T_RBG != NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003695 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003696 LOG_TR(("Sending BG request"));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003697 out_str(T_RBG);
3698 rbg_status = STATUS_SENT;
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003699 didit = TRUE;
3700 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003701
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003702 if (didit)
3703 {
Bram Moolenaar833e0e32017-08-26 15:16:03 +02003704 /* check for the characters now, otherwise they might be eaten by
3705 * get_keystroke() */
3706 out_flush();
3707 (void)vpeekc_nomap();
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003708 }
3709 }
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003710}
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003711
Bram Moolenaar2951b772013-07-03 12:45:31 +02003712# ifdef DEBUG_TERMRESPONSE
3713 static void
Bram Moolenaarb255b902018-04-24 21:40:10 +02003714log_tr(const char *fmt, ...)
Bram Moolenaar2951b772013-07-03 12:45:31 +02003715{
3716 static FILE *fd_tr = NULL;
3717 static proftime_T start;
3718 proftime_T now;
Bram Moolenaarb255b902018-04-24 21:40:10 +02003719 va_list ap;
Bram Moolenaar2951b772013-07-03 12:45:31 +02003720
3721 if (fd_tr == NULL)
3722 {
3723 fd_tr = fopen("termresponse.log", "w");
3724 profile_start(&start);
3725 }
3726 now = start;
3727 profile_end(&now);
Bram Moolenaarb255b902018-04-24 21:40:10 +02003728 fprintf(fd_tr, "%s: %s ", profile_msg(&now),
3729 must_redraw == NOT_VALID ? "NV"
3730 : must_redraw == CLEAR ? "CL" : " ");
3731 va_start(ap, fmt);
3732 vfprintf(fd_tr, fmt, ap);
3733 va_end(ap);
3734 fputc('\n', fd_tr);
3735 fflush(fd_tr);
Bram Moolenaar2951b772013-07-03 12:45:31 +02003736}
3737# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738#endif
3739
3740/*
3741 * Return TRUE when saving and restoring the screen.
3742 */
3743 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003744swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745{
3746 return (full_screen && *T_TI != NUL);
3747}
3748
Bram Moolenaarecadf432018-03-20 11:17:04 +01003749#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750/*
3751 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3752 */
3753 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003754setmouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755{
3756# ifdef FEAT_MOUSE_TTY
3757 int checkfor;
3758# endif
3759
3760# ifdef FEAT_MOUSESHAPE
3761 update_mouseshape(-1);
3762# endif
3763
3764# ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3765# ifdef FEAT_GUI
3766 /* In the GUI the mouse is always enabled. */
3767 if (gui.in_use)
3768 return;
3769# endif
3770 /* be quick when mouse is off */
3771 if (*p_mouse == NUL || has_mouse_termcode == 0)
3772 return;
3773
3774 /* don't switch mouse on when not in raw mode (Ex mode) */
3775 if (cur_tmode != TMODE_RAW)
3776 {
3777 mch_setmouse(FALSE);
3778 return;
3779 }
3780
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 if (VIsual_active)
3782 checkfor = MOUSE_VISUAL;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003783 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 checkfor = MOUSE_RETURN;
3785 else if (State & INSERT)
3786 checkfor = MOUSE_INSERT;
3787 else if (State & CMDLINE)
3788 checkfor = MOUSE_COMMAND;
3789 else if (State == CONFIRM || State == EXTERNCMD)
3790 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3791 else
3792 checkfor = MOUSE_NORMAL; /* assume normal mode */
3793
3794 if (mouse_has(checkfor))
3795 mch_setmouse(TRUE);
3796 else
3797 mch_setmouse(FALSE);
3798# endif
3799}
3800
3801/*
3802 * Return TRUE if
3803 * - "c" is in 'mouse', or
3804 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3805 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3806 * normal editing mode (not at hit-return message).
3807 */
3808 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003809mouse_has(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810{
3811 char_u *p;
3812
3813 for (p = p_mouse; *p; ++p)
3814 switch (*p)
3815 {
3816 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
3817 return TRUE;
3818 break;
3819 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
3820 return TRUE;
3821 break;
3822 default: if (c == *p) return TRUE; break;
3823 }
3824 return FALSE;
3825}
3826
3827/*
3828 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3829 */
3830 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003831mouse_model_popup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832{
3833 return (p_mousem[0] == 'p');
3834}
3835#endif
3836
3837/*
3838 * By outputting the 'cursor very visible' termcap code, for some windowed
3839 * terminals this makes the screen scrolled to the correct position.
3840 * Used when starting Vim or returning from a shell.
3841 */
3842 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003843scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003845 if (*T_VS != NUL && *T_CVS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846 {
3847 out_str(T_VS);
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003848 out_str(T_CVS);
3849 screen_start(); /* don't know where cursor is now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 }
3851}
3852
3853static int cursor_is_off = FALSE;
3854
3855/*
Bram Moolenaar2e310482018-08-21 13:09:10 +02003856 * Enable the cursor without checking if it's already enabled.
3857 */
3858 void
3859cursor_on_force(void)
3860{
3861 out_str(T_VE);
3862 cursor_is_off = FALSE;
3863}
3864
3865/*
3866 * Enable the cursor if it's currently off.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 */
3868 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003869cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870{
3871 if (cursor_is_off)
Bram Moolenaar2e310482018-08-21 13:09:10 +02003872 cursor_on_force();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873}
3874
3875/*
3876 * Disable the cursor.
3877 */
3878 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003879cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003881 if (full_screen && !cursor_is_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 {
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003883 out_str(T_VI); /* disable cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 cursor_is_off = TRUE;
3885 }
3886}
3887
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003888#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003890 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003891 */
3892 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003893term_cursor_mode(int forced)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003894{
Bram Moolenaarc9770922017-08-12 20:11:53 +02003895 static int showing_mode = -1;
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003896 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003897
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003898 /* Only do something when redrawing the screen and we can restore the
3899 * mode. */
3900 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003901 {
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003902# ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003903 if (forced && initial_cursor_shape > 0)
3904 /* Restore to initial values. */
3905 term_cursor_shape(initial_cursor_shape, initial_cursor_blink);
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003906# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003907 return;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003908 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003909
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003910 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003911 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003912 if (forced || showing_mode != REPLACE)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003913 {
3914 if (*T_CSR != NUL)
3915 p = T_CSR; /* Replace mode cursor */
3916 else
3917 p = T_CSI; /* fall back to Insert mode cursor */
3918 if (*p != NUL)
3919 {
3920 out_str(p);
3921 showing_mode = REPLACE;
3922 }
3923 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003924 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003925 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003926 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003927 if ((forced || showing_mode != INSERT) && *T_CSI != NUL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003928 {
3929 out_str(T_CSI); /* Insert mode cursor */
3930 showing_mode = INSERT;
3931 }
3932 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003933 else if (forced || showing_mode != NORMAL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003934 {
3935 out_str(T_CEI); /* non-Insert mode cursor */
3936 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003937 }
3938}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003939
3940# if defined(FEAT_TERMINAL) || defined(PROTO)
3941 void
3942term_cursor_color(char_u *color)
3943{
3944 if (*T_CSC != NUL)
3945 {
3946 out_str(T_CSC); /* set cursor color start */
3947 out_str_nf(color);
3948 out_str(T_CEC); /* set cursor color end */
3949 out_flush();
3950 }
3951}
Bram Moolenaarfc8bec02017-08-19 19:57:34 +02003952# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003953
Bram Moolenaar4db25542017-08-28 22:43:05 +02003954 int
3955blink_state_is_inverted()
3956{
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003957#ifdef FEAT_TERMRESPONSE
Bram Moolenaar4db25542017-08-28 22:43:05 +02003958 return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT
3959 && initial_cursor_blink != initial_cursor_shape_blink;
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003960#else
3961 return FALSE;
3962#endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02003963}
3964
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003965/*
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003966 * "shape": 1 = block, 2 = underline, 3 = vertical bar
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003967 */
3968 void
3969term_cursor_shape(int shape, int blink)
3970{
3971 if (*T_CSH != NUL)
3972 {
3973 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink));
3974 out_flush();
3975 }
Bram Moolenaar4db25542017-08-28 22:43:05 +02003976 else
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003977 {
Bram Moolenaar4db25542017-08-28 22:43:05 +02003978 int do_blink = blink;
3979
3980 /* t_SH is empty: try setting just the blink state.
3981 * The blink flags are XORed together, if the initial blinking from
3982 * style and shape differs, we need to invert the flag here. */
3983 if (blink_state_is_inverted())
3984 do_blink = !blink;
3985
3986 if (do_blink && *T_VS != NUL)
3987 {
3988 out_str(T_VS);
3989 out_flush();
3990 }
3991 else if (!do_blink && *T_CVS != NUL)
3992 {
3993 out_str(T_CVS);
3994 out_flush();
3995 }
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003996 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003997}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003998#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003999
4000/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 * Set scrolling region for window 'wp'.
4002 * The region starts 'off' lines from the start of the window.
4003 * Also set the vertical scroll region for a vertically split window. Always
4004 * the full width of the window, excluding the vertical separator.
4005 */
4006 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004007scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008{
4009 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
4010 W_WINROW(wp) + off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 if (*T_CSV != NUL && wp->w_width != Columns)
Bram Moolenaar53f81742017-09-22 14:35:51 +02004012 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1,
4013 wp->w_wincol));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 screen_start(); /* don't know where cursor is now */
4015}
4016
4017/*
4018 * Reset scrolling region to the whole screen.
4019 */
4020 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004021scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022{
4023 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 if (*T_CSV != NUL)
4025 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 screen_start(); /* don't know where cursor is now */
4027}
4028
4029
4030/*
4031 * List of terminal codes that are currently recognized.
4032 */
4033
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00004034static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035{
4036 char_u name[2]; /* termcap name of entry */
4037 char_u *code; /* terminal code (in allocated memory) */
4038 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004039 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040} *termcodes = NULL;
4041
4042static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
4043static int tc_len = 0; /* current number of entries in termcodes[] */
4044
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004045static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004046
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004048clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049{
4050 while (tc_len > 0)
4051 vim_free(termcodes[--tc_len].code);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004052 VIM_CLEAR(termcodes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 tc_max_len = 0;
4054
4055#ifdef HAVE_TGETENT
4056 BC = (char *)empty_option;
4057 UP = (char *)empty_option;
4058 PC = NUL; /* set pad character to NUL */
4059 ospeed = 0;
4060#endif
4061
4062 need_gather = TRUE; /* need to fill termleader[] */
4063}
4064
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004065#define ATC_FROM_TERM 55
4066
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067/*
4068 * Add a new entry to the list of terminal codes.
4069 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004070 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
4071 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 */
4073 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004074add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075{
4076 struct termcode *new_tc;
4077 int i, j;
4078 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004079 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080
4081 if (string == NULL || *string == NUL)
4082 {
4083 del_termcode(name);
4084 return;
4085 }
4086
Bram Moolenaar45500912014-07-09 20:51:07 +02004087#if defined(WIN3264) && !defined(FEAT_GUI)
4088 s = vim_strnsave(string, (int)STRLEN(string) + 1);
4089#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02004091#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 if (s == NULL)
4093 return;
4094
4095 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004096 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004098 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 s[0] = term_7to8bit(string);
4100 }
Bram Moolenaar45500912014-07-09 20:51:07 +02004101
4102#if defined(WIN3264) && !defined(FEAT_GUI)
4103 if (s[0] == K_NUL)
4104 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004105 STRMOVE(s + 1, s);
4106 s[1] = 3;
Bram Moolenaar45500912014-07-09 20:51:07 +02004107 }
4108#endif
4109
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004110 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111
4112 need_gather = TRUE; /* need to fill termleader[] */
4113
4114 /*
4115 * need to make space for more entries
4116 */
4117 if (tc_len == tc_max_len)
4118 {
4119 tc_max_len += 20;
4120 new_tc = (struct termcode *)alloc(
4121 (unsigned)(tc_max_len * sizeof(struct termcode)));
4122 if (new_tc == NULL)
4123 {
4124 tc_max_len -= 20;
4125 return;
4126 }
4127 for (i = 0; i < tc_len; ++i)
4128 new_tc[i] = termcodes[i];
4129 vim_free(termcodes);
4130 termcodes = new_tc;
4131 }
4132
4133 /*
4134 * Look for existing entry with the same name, it is replaced.
4135 * Look for an existing entry that is alphabetical higher, the new entry
4136 * is inserted in front of it.
4137 */
4138 for (i = 0; i < tc_len; ++i)
4139 {
4140 if (termcodes[i].name[0] < name[0])
4141 continue;
4142 if (termcodes[i].name[0] == name[0])
4143 {
4144 if (termcodes[i].name[1] < name[1])
4145 continue;
4146 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004147 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 */
4149 if (termcodes[i].name[1] == name[1])
4150 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004151 if (flags == ATC_FROM_TERM && (j = termcode_star(
4152 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004153 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004154 /* Don't replace ESC[123;*X or ESC O*X with another when
4155 * invoked from got_code_from_term(). */
4156 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004157 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004158 && s[len - 1]
4159 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004160 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004161 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004162 vim_free(s);
4163 return;
4164 }
4165 }
4166 else
4167 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004168 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004169 vim_free(termcodes[i].code);
4170 --tc_len;
4171 break;
4172 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 }
4174 }
4175 /*
4176 * Found alphabetical larger entry, move rest to insert new entry
4177 */
4178 for (j = tc_len; j > i; --j)
4179 termcodes[j] = termcodes[j - 1];
4180 break;
4181 }
4182
4183 termcodes[i].name[0] = name[0];
4184 termcodes[i].name[1] = name[1];
4185 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004186 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004187
4188 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
4189 * accept modifiers. */
4190 termcodes[i].modlen = 0;
4191 j = termcode_star(s, len);
4192 if (j > 0)
4193 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 ++tc_len;
4195}
4196
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004197/*
Bram Moolenaara529ce02017-06-22 22:37:57 +02004198 * Check termcode "code[len]" for ending in ;*X or *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004199 * The "X" can be any character.
Bram Moolenaara529ce02017-06-22 22:37:57 +02004200 * Return 0 if not found, 2 for ;*X and 1 for *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004201 */
4202 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004203termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004204{
4205 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
4206 if (len >= 3 && code[len - 2] == '*')
4207 {
4208 if (len >= 5 && code[len - 3] == ';')
4209 return 2;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004210 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004211 return 1;
4212 }
4213 return 0;
4214}
4215
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004217find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218{
4219 int i;
4220
4221 for (i = 0; i < tc_len; ++i)
4222 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4223 return termcodes[i].code;
4224 return NULL;
4225}
4226
4227#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4228 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004229get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230{
4231 if (i >= tc_len)
4232 return NULL;
4233 return &termcodes[i].name[0];
4234}
4235#endif
4236
4237 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004238del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239{
4240 int i;
4241
4242 if (termcodes == NULL) /* nothing there yet */
4243 return;
4244
4245 need_gather = TRUE; /* need to fill termleader[] */
4246
4247 for (i = 0; i < tc_len; ++i)
4248 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4249 {
4250 del_termcode_idx(i);
4251 return;
4252 }
4253 /* not found. Give error message? */
4254}
4255
4256 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004257del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258{
4259 int i;
4260
4261 vim_free(termcodes[idx].code);
4262 --tc_len;
4263 for (i = idx; i < tc_len; ++i)
4264 termcodes[i] = termcodes[i + 1];
4265}
4266
4267#ifdef FEAT_TERMRESPONSE
4268/*
4269 * Called when detected that the terminal sends 8-bit codes.
4270 * Convert all 7-bit codes to their 8-bit equivalent.
4271 */
4272 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004273switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274{
4275 int i;
4276 int c;
4277
4278 /* Only need to do something when not already using 8-bit codes. */
4279 if (!term_is_8bit(T_NAME))
4280 {
4281 for (i = 0; i < tc_len; ++i)
4282 {
4283 c = term_7to8bit(termcodes[i].code);
4284 if (c != 0)
4285 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004286 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 termcodes[i].code[0] = c;
4288 }
4289 }
4290 need_gather = TRUE; /* need to fill termleader[] */
4291 }
4292 detected_8bit = TRUE;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004293 LOG_TR(("Switching to 8 bit"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294}
4295#endif
4296
4297#ifdef CHECK_DOUBLE_CLICK
4298static linenr_T orig_topline = 0;
4299# ifdef FEAT_DIFF
4300static int orig_topfill = 0;
4301# endif
4302#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02004303#if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304/*
4305 * Checking for double clicks ourselves.
4306 * "orig_topline" is used to avoid detecting a double-click when the window
4307 * contents scrolled (e.g., when 'scrolloff' is non-zero).
4308 */
4309/*
4310 * Set orig_topline. Used when jumping to another window, so that a double
4311 * click still works.
4312 */
4313 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004314set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315{
4316 orig_topline = wp->w_topline;
4317# ifdef FEAT_DIFF
4318 orig_topfill = wp->w_topfill;
4319# endif
4320}
4321#endif
4322
4323/*
4324 * Check if typebuf.tb_buf[] contains a terminal key code.
4325 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
4326 * + max_offset].
4327 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004328 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 * With a match, the match is removed, the replacement code is inserted in
4330 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
4331 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004332 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
4333 * "buflen" is then the length of the string in buf[] and is updated for
4334 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 */
4336 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004337check_termcode(
4338 int max_offset,
4339 char_u *buf,
4340 int bufsize,
4341 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342{
4343 char_u *tp;
4344 char_u *p;
4345 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004346 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004348 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 int offset;
4350 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004351 int modifiers;
Bram Moolenaar090209b2017-06-23 22:45:33 +02004352 char_u *modifiers_start = NULL;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004353 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 int new_slen;
4355 int extra;
4356 char_u string[MAX_KEY_CODE_LEN + 1];
4357 int i, j;
4358 int idx = 0;
4359#ifdef FEAT_MOUSE
Bram Moolenaar864207d2008-06-24 22:14:38 +00004360# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4361 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 char_u bytes[6];
4363 int num_bytes;
4364# endif
4365 int mouse_code = 0; /* init for GCC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 int is_click, is_drag;
4367 int wheel_code = 0;
4368 int current_button;
4369 static int held_button = MOUSE_RELEASE;
4370 static int orig_num_clicks = 1;
4371 static int orig_mouse_code = 0x0;
4372# ifdef CHECK_DOUBLE_CLICK
4373 static int orig_mouse_col = 0;
4374 static int orig_mouse_row = 0;
4375 static struct timeval orig_mouse_time = {0, 0};
4376 /* time of previous mouse click */
4377 struct timeval mouse_time; /* time of current mouse click */
4378 long timediff; /* elapsed time in msec */
4379# endif
4380#endif
4381 int cpo_koffset;
4382#ifdef FEAT_MOUSE_GPM
4383 extern int gpm_flag; /* gpm library variable */
4384#endif
4385
4386 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
4387
4388 /*
4389 * Speed up the checks for terminal codes by gathering all first bytes
4390 * used in termleader[]. Often this is just a single <Esc>.
4391 */
4392 if (need_gather)
4393 gather_termleader();
4394
4395 /*
4396 * Check at several positions in typebuf.tb_buf[], to catch something like
4397 * "x<Up>" that can be mapped. Stop at max_offset, because characters
4398 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004399 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 * This is used often, KEEP IT FAST!
4401 */
4402 for (offset = 0; offset < max_offset; ++offset)
4403 {
4404 if (buf == NULL)
4405 {
4406 if (offset >= typebuf.tb_len)
4407 break;
4408 tp = typebuf.tb_buf + typebuf.tb_off + offset;
4409 len = typebuf.tb_len - offset; /* length of the input */
4410 }
4411 else
4412 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004413 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 break;
4415 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004416 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 }
4418
4419 /*
4420 * Don't check characters after K_SPECIAL, those are already
4421 * translated terminal chars (avoid translating ~@^Hx).
4422 */
4423 if (*tp == K_SPECIAL)
4424 {
4425 offset += 2; /* there are always 2 extra characters */
4426 continue;
4427 }
4428
4429 /*
4430 * Skip this position if the character does not appear as the first
4431 * character in term_strings. This speeds up a lot, since most
4432 * termcodes start with the same character (ESC or CSI).
4433 */
4434 i = *tp;
4435 for (p = termleader; *p && *p != i; ++p)
4436 ;
4437 if (*p == NUL)
4438 continue;
4439
4440 /*
4441 * Skip this position if p_ek is not set and tp[0] is an ESC and we
4442 * are in Insert mode.
4443 */
4444 if (*tp == ESC && !p_ek && (State & INSERT))
4445 continue;
4446
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004448 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004449 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450
4451#ifdef FEAT_GUI
4452 if (gui.in_use)
4453 {
4454 /*
4455 * GUI special key codes are all of the form [CSI xx].
4456 */
4457 if (*tp == CSI) /* Special key from GUI */
4458 {
4459 if (len < 3)
4460 return -1; /* Shouldn't happen */
4461 slen = 3;
4462 key_name[0] = tp[1];
4463 key_name[1] = tp[2];
4464 }
4465 }
4466 else
4467#endif /* FEAT_GUI */
4468 {
4469 for (idx = 0; idx < tc_len; ++idx)
4470 {
4471 /*
4472 * Ignore the entry if we are not at the start of
4473 * typebuf.tb_buf[]
4474 * and there are not enough characters to make a match.
4475 * But only when the 'K' flag is in 'cpoptions'.
4476 */
4477 slen = termcodes[idx].len;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004478 modifiers_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 if (cpo_koffset && offset && len < slen)
4480 continue;
4481 if (STRNCMP(termcodes[idx].code, tp,
4482 (size_t)(slen > len ? len : slen)) == 0)
4483 {
4484 if (len < slen) /* got a partial sequence */
4485 return -1; /* need to get more chars */
4486
4487 /*
4488 * When found a keypad key, check if there is another key
4489 * that matches and use that one. This makes <Home> to be
4490 * found instead of <kHome> when they produce the same
4491 * key code.
4492 */
4493 if (termcodes[idx].name[0] == 'K'
4494 && VIM_ISDIGIT(termcodes[idx].name[1]))
4495 {
4496 for (j = idx + 1; j < tc_len; ++j)
4497 if (termcodes[j].len == slen &&
4498 STRNCMP(termcodes[idx].code,
4499 termcodes[j].code, slen) == 0)
4500 {
4501 idx = j;
4502 break;
4503 }
4504 }
4505
4506 key_name[0] = termcodes[idx].name[0];
4507 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 break;
4509 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004510
4511 /*
4512 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004513 * <Esc>[123;*X (modslen == slen - 3)
4514 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4515 * When there is a modifier the * matches a number.
4516 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004517 */
4518 if (termcodes[idx].modlen > 0)
4519 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004520 modslen = termcodes[idx].modlen;
4521 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004522 continue;
4523 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004524 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004525 {
4526 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004527
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004528 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004529 return -1; /* need to get more chars */
4530
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004531 if (tp[modslen] == termcodes[idx].code[slen - 1])
4532 slen = modslen + 1; /* no modifiers */
4533 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004534 continue; /* no match */
4535 else
4536 {
4537 /* Skip over the digits, the final char must
4538 * follow. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004539 for (j = slen - 2; j < len && (isdigit(tp[j])
4540 || tp[j] == ';'); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004541 ;
4542 ++j;
4543 if (len < j) /* got a partial sequence */
4544 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004545 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4546 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004547
Bram Moolenaara529ce02017-06-22 22:37:57 +02004548 modifiers_start = tp + slen - 2;
4549
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004550 /* Match! Convert modifier bits. */
Bram Moolenaara529ce02017-06-22 22:37:57 +02004551 n = atoi((char *)modifiers_start) - 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004552 if (n & 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004553 modifiers |= MOD_MASK_SHIFT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004554 if (n & 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004555 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004556 if (n & 4)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004557 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004558 if (n & 8)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004559 modifiers |= MOD_MASK_META;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004560
4561 slen = j;
4562 }
4563 key_name[0] = termcodes[idx].name[0];
4564 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004565 break;
4566 }
4567 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 }
4569 }
4570
4571#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004572 if (key_name[0] == NUL
Bram Moolenaara529ce02017-06-22 22:37:57 +02004573 /* Mouse codes of DEC and pterm start with <ESC>[. When
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004574 * detecting the start of these mouse codes they might as well be
4575 * another key code or terminal response. */
4576# ifdef FEAT_MOUSE_DEC
4577 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004578# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004579# ifdef FEAT_MOUSE_PTERM
4580 || key_name[0] == KS_PTERM_MOUSE
4581# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004582 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004584 /* Check for some responses from the terminal starting with
4585 * "<Esc>[" or CSI:
Bram Moolenaar9584b312013-03-13 19:29:28 +01004586 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004587 * - Xterm version string: <Esc>[>{x};{vers};{y}c
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004588 * Libvterm returns {x} == 0, {vers} == 100, {y} == 0.
Bram Moolenaar9584b312013-03-13 19:29:28 +01004589 * Also eat other possible responses to t_RV, rxvt returns
4590 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4591 * mrxvt has been reported to have "+" in the version. Assume
4592 * the escape sequence ends with a letter or one of "{|}~".
4593 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004594 * - Cursor position report: <Esc>[{row};{col}R
4595 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01004596 * ambiguous-width character state.
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004597 *
4598 * - window position reply: <Esc>[3;{x};{y}t
Bram Moolenaar9584b312013-03-13 19:29:28 +01004599 */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004600 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004601
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004602 if ((*T_CRV != NUL || *T_U7 != NUL || did_request_winpos)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004603 && ((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02004604 || (tp[0] == CSI && len >= 2))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004605 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 {
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004607 int col = 0;
4608 int semicols = 0;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004609#ifdef FEAT_MBYTE
Bram Moolenaarc41053062014-03-25 13:46:26 +01004610 int row_char = NUL;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004611#endif
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004612
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 extra = 0;
Bram Moolenaarc9dd5bc2008-02-27 15:14:04 +00004614 for (i = 2 + (tp[0] != CSI); i < len
4615 && !(tp[i] >= '{' && tp[i] <= '~')
4616 && !ASCII_ISALPHA(tp[i]); ++i)
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004617 if (tp[i] == ';' && ++semicols == 1)
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004618 {
Bram Moolenaar46a75612013-05-15 14:22:41 +02004619 extra = i + 1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004620#ifdef FEAT_MBYTE
4621 row_char = tp[i - 1];
4622#endif
4623 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004625 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004626 LOG_TR(("Not enough characters for CRV"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02004627 return -1;
4628 }
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004629 if (extra > 0)
4630 col = atoi((char *)tp + extra);
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004631
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004632#ifdef FEAT_MBYTE
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004633 /* Eat it when it has 2 arguments and ends in 'R'. Also when
4634 * u7_status is not "sent", it may be from a previous Vim that
4635 * just exited. But not for <S-F3>, it sends something
4636 * similar, check for row and column to make sense. */
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004637 if (semicols == 1 && tp[i] == 'R')
Bram Moolenaar9584b312013-03-13 19:29:28 +01004638 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004639 if (row_char == '2' && col >= 2)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004640 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004641 char *aw = NULL;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004642
Bram Moolenaarb255b902018-04-24 21:40:10 +02004643 LOG_TR(("Received U7 status: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004644 u7_status = STATUS_GOT;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004645 did_cursorhold = TRUE;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004646 if (col == 2)
4647 aw = "single";
4648 else if (col == 3)
4649 aw = "double";
4650 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4651 {
4652 /* Setting the option causes a screen redraw. Do
4653 * that right away if possible, keeping any
4654 * messages. */
4655 set_option_value((char_u *)"ambw", 0L,
4656 (char_u *)aw, 0);
4657# ifdef DEBUG_TERMRESPONSE
4658 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004659 int r = redraw_asap(CLEAR);
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004660
Bram Moolenaarb255b902018-04-24 21:40:10 +02004661 log_tr("set 'ambiwidth', redraw_asap(): %d", r);
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004662 }
4663# else
4664 redraw_asap(CLEAR);
4665# endif
4666 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02004667 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004668 key_name[0] = (int)KS_EXTRA;
4669 key_name[1] = (int)KE_IGNORE;
4670 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004671# ifdef FEAT_EVAL
4672 set_vim_var_string(VV_TERMU7RESP, tp, slen);
4673# endif
Bram Moolenaar9584b312013-03-13 19:29:28 +01004674 }
4675 else
4676#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 /* eat it when at least one digit and ending in 'c' */
Bram Moolenaar9584b312013-03-13 19:29:28 +01004678 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 {
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004680 int version = col;
4681
Bram Moolenaarb255b902018-04-24 21:40:10 +02004682 LOG_TR(("Received CRV response: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004683 crv_status = STATUS_GOT;
Bram Moolenaar68879252013-04-05 19:50:17 +02004684 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685
4686 /* If this code starts with CSI, you can bet that the
4687 * terminal uses 8-bit codes. */
4688 if (tp[0] == CSI)
4689 switch_to_8bit();
4690
4691 /* rxvt sends its version number: "20703" is 2.7.3.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004692 * Screen sends 40500.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 * Ignore it for when the user has set 'term' to xterm,
4694 * even though it's an rxvt. */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004695 if (version > 20000)
4696 version = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004698 if (tp[1 + (tp[0] != CSI)] == '>' && semicols == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 {
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004700 int need_flush = FALSE;
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004701# ifdef FEAT_MOUSE_SGR
4702 int is_iterm2 = FALSE;
Bram Moolenaar20091c12018-12-07 13:18:19 +01004703 int is_mintty = FALSE;
4704
4705 // mintty 2.9.5 sends 77;20905;0c.
4706 // (77 is ASCII 'M' for mintty.)
4707 if (STRNCMP(tp + extra - 3, "77;", 3) == 0)
4708 is_mintty = TRUE;
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004709# endif
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004710
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 /* if xterm version >= 141 try to get termcap codes */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004712 if (version >= 141)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004714 LOG_TR(("Enable checking for XT codes"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 check_for_codes = TRUE;
4716 need_gather = TRUE;
4717 req_codes_from_term();
4718 }
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004719
4720 /* libvterm sends 0;100;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004721 if (version == 100
Bram Moolenaare9224602017-08-26 15:29:47 +02004722 && STRNCMP(tp + extra - 2, "0;100;0c", 8) == 0)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004723 {
4724 /* If run from Vim $COLORS is set to the number of
4725 * colors the terminal supports. Otherwise assume
4726 * 256, libvterm supports even more. */
4727 if (mch_getenv((char_u *)"COLORS") == NULL)
4728 may_adjust_color_count(256);
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004729# ifdef FEAT_MOUSE_SGR
4730 /* Libvterm can handle SGR mouse reporting. */
4731 if (!option_was_set((char_u *)"ttym"))
4732 set_option_value((char_u *)"ttym", 0L,
4733 (char_u *)"sgr", 0);
4734# endif
4735 }
4736
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004737 if (version == 95)
4738 {
Bram Moolenaare330ef42018-07-06 23:11:40 +02004739 // Mac Terminal.app sends 1;95;0
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004740 if (STRNCMP(tp + extra - 2, "1;95;0c", 7) == 0)
4741 {
4742 is_not_xterm = TRUE;
4743 is_mac_terminal = TRUE;
4744 }
4745# ifdef FEAT_MOUSE_SGR
Bram Moolenaare330ef42018-07-06 23:11:40 +02004746 // iTerm2 sends 0;95;0
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004747 if (STRNCMP(tp + extra - 2, "0;95;0c", 7) == 0)
4748 is_iterm2 = TRUE;
Bram Moolenaare330ef42018-07-06 23:11:40 +02004749 else
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004750# endif
Bram Moolenaare330ef42018-07-06 23:11:40 +02004751 // old iTerm2 sends 0;95;
4752 if (STRNCMP(tp + extra - 2, "0;95;c", 6) == 0)
4753 is_not_xterm = TRUE;
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004754 }
4755
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004756 /* Only set 'ttymouse' automatically if it was not set
4757 * by the user already. */
4758 if (!option_was_set((char_u *)"ttym"))
4759 {
4760# ifdef FEAT_MOUSE_SGR
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004761 /* Xterm version 277 supports SGR. Also support
Bram Moolenaar20091c12018-12-07 13:18:19 +01004762 * Terminal.app, iTerm2 and mintty. */
4763 if (version >= 277 || is_iterm2 || is_mac_terminal
4764 || is_mintty)
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004765 set_option_value((char_u *)"ttym", 0L,
4766 (char_u *)"sgr", 0);
4767 else
4768# endif
4769 /* if xterm version >= 95 use mouse dragging */
4770 if (version >= 95)
4771 set_option_value((char_u *)"ttym", 0L,
4772 (char_u *)"xterm2", 0);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004773 }
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004774
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004775 /* Detect terminals that set $TERM to something like
4776 * "xterm-256colors" but are not fully xterm
4777 * compatible. */
Bram Moolenaarc2127982017-09-11 20:34:13 +02004778
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004779 /* Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004780 * xfce4-terminal sends 1;2802;0.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004781 * screen sends 83;40500;0
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004782 * Assuming any version number over 2500 is not an
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004783 * xterm (without the limit for rxvt and screen). */
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004784 if (col >= 2500)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004785 is_not_xterm = TRUE;
4786
Bram Moolenaar2e49b6b2017-09-06 22:08:16 +02004787 /* PuTTY sends 0;136;0
4788 * vandyke SecureCRT sends 1;136;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004789 if (version == 136
Bram Moolenaar618d6d22017-09-07 12:59:25 +02004790 && STRNCMP(tp + extra - 1, ";136;0c", 7) == 0)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004791 is_not_xterm = TRUE;
4792
4793 /* Konsole sends 0;115;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004794 if (version == 115
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004795 && STRNCMP(tp + extra - 2, "0;115;0c", 8) == 0)
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004796 is_not_xterm = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004797
Bram Moolenaar668324e2018-06-30 17:09:26 +02004798 // Xterm first responded to this request at patch level
4799 // 95, so assume anything below 95 is not xterm.
4800 if (version < 95)
4801 is_not_xterm = TRUE;
4802
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004803 /* Only request the cursor style if t_SH and t_RS are
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004804 * set. Only supported properly by xterm since version
4805 * 279 (otherwise it returns 0x18).
4806 * Not for Terminal.app, it can't handle t_RS, it
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004807 * echoes the characters to the screen. */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004808 if (rcs_status == STATUS_GET
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004809 && version >= 279
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004810 && !is_not_xterm
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004811 && *T_CSH != NUL
4812 && *T_CRS != NUL)
4813 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004814 LOG_TR(("Sending cursor style request"));
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004815 out_str(T_CRS);
Bram Moolenaar4db25542017-08-28 22:43:05 +02004816 rcs_status = STATUS_SENT;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004817 need_flush = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004818 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004819
4820 /* Only request the cursor blink mode if t_RC set. Not
4821 * for Gnome terminal, it can't handle t_RC, it
4822 * echoes the characters to the screen. */
4823 if (rbm_status == STATUS_GET
4824 && !is_not_xterm
4825 && *T_CRC != NUL)
4826 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004827 LOG_TR(("Sending cursor blink mode request"));
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004828 out_str(T_CRC);
4829 rbm_status = STATUS_SENT;
4830 need_flush = TRUE;
4831 }
4832
4833 if (need_flush)
4834 out_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004836 slen = i + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837# ifdef FEAT_EVAL
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004838 set_vim_var_string(VV_TERMRESPONSE, tp, slen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 apply_autocmds(EVENT_TERMRESPONSE,
4841 NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 key_name[0] = (int)KS_EXTRA;
4843 key_name[1] = (int)KE_IGNORE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 }
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004845
Bram Moolenaar4db25542017-08-28 22:43:05 +02004846 /* Check blinking cursor from xterm:
4847 * {lead}?12;1$y set
4848 * {lead}?12;2$y not set
4849 *
4850 * {lead} can be <Esc>[ or CSI
4851 */
4852 else if (rbm_status == STATUS_SENT
4853 && tp[(j = 1 + (tp[0] == ESC))] == '?'
4854 && i == j + 6
4855 && tp[j + 1] == '1'
4856 && tp[j + 2] == '2'
4857 && tp[j + 3] == ';'
4858 && tp[i - 1] == '$'
4859 && tp[i] == 'y')
4860 {
4861 initial_cursor_blink = (tp[j + 4] == '1');
4862 rbm_status = STATUS_GOT;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004863 LOG_TR(("Received cursor blinking mode response: %s", tp));
Bram Moolenaar4db25542017-08-28 22:43:05 +02004864 key_name[0] = (int)KS_EXTRA;
4865 key_name[1] = (int)KE_IGNORE;
4866 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004867# ifdef FEAT_EVAL
4868 set_vim_var_string(VV_TERMBLINKRESP, tp, slen);
4869# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02004870 }
4871
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004872 /*
4873 * Check for a window position response from the terminal:
4874 * {lead}3;{x}:{y}t
4875 */
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004876 else if (did_request_winpos
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004877 && ((len >= 4 && tp[0] == ESC && tp[1] == '[')
4878 || (len >= 3 && tp[0] == CSI))
4879 && tp[(j = 1 + (tp[0] == ESC))] == '3'
4880 && tp[j + 1] == ';')
4881 {
4882 j += 2;
4883 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4884 ;
4885 if (i < len && tp[i] == ';')
4886 {
4887 winpos_x = atoi((char *)tp + j);
4888 j = i + 1;
4889 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4890 ;
4891 if (i < len && tp[i] == 't')
4892 {
4893 winpos_y = atoi((char *)tp + j);
4894 /* got finished code: consume it */
4895 key_name[0] = (int)KS_EXTRA;
4896 key_name[1] = (int)KE_IGNORE;
4897 slen = i + 1;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004898
4899 if (--did_request_winpos <= 0)
4900 winpos_status = STATUS_GOT;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004901 }
4902 }
4903 if (i == len)
4904 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004905 LOG_TR(("not enough characters for winpos"));
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004906 return -1;
4907 }
4908 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004909 }
4910
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004911 /* Check for fore/background color response from the terminal:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004912 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004913 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004914 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004915 * {code} is 10 for foreground, 11 for background
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004916 * {lead} can be <Esc>] or OSC
4917 * {tail} can be '\007', <Esc>\ or STERM.
4918 *
4919 * Consume any code that starts with "{lead}11;", it's also
4920 * possible that "rgba" is following.
4921 */
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004922 else if ((*T_RBG != NUL || *T_RFG != NUL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004923 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
4924 || tp[0] == OSC))
4925 {
4926 j = 1 + (tp[0] == ESC);
4927 if (len >= j + 3 && (argp[0] != '1'
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004928 || (argp[1] != '1' && argp[1] != '0')
4929 || argp[2] != ';'))
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004930 i = 0; /* no match */
4931 else
4932 for (i = j; i < len; ++i)
4933 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
4934 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004935 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004936 int is_bg = argp[1] == '1';
4937
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004938 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004939 && tp[j + 11] == '/' && tp[j + 16] == '/')
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004940 {
Bram Moolenaar53ec7952017-11-05 21:24:23 +01004941#ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004942 int rval = hexhex2nr(tp + j + 7);
4943 int gval = hexhex2nr(tp + j + 12);
4944 int bval = hexhex2nr(tp + j + 17);
Bram Moolenaar53ec7952017-11-05 21:24:23 +01004945#endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004946 if (is_bg)
4947 {
4948 char *newval = (3 * '6' < tp[j+7] + tp[j+12]
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004949 + tp[j+17]) ? "light" : "dark";
4950
Bram Moolenaarb255b902018-04-24 21:40:10 +02004951 LOG_TR(("Received RBG response: %s", tp));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004952 rbg_status = STATUS_GOT;
4953#ifdef FEAT_TERMINAL
4954 bg_r = rval;
4955 bg_g = gval;
4956 bg_b = bval;
4957#endif
4958 if (!option_was_set((char_u *)"bg")
4959 && STRCMP(p_bg, newval) != 0)
4960 {
4961 /* value differs, apply it */
4962 set_option_value((char_u *)"bg", 0L,
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004963 (char_u *)newval, 0);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004964 reset_option_was_set((char_u *)"bg");
4965 redraw_asap(CLEAR);
4966 }
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004967 }
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004968#ifdef FEAT_TERMINAL
4969 else
4970 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004971 LOG_TR(("Received RFG response: %s", tp));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004972 rfg_status = STATUS_GOT;
4973 fg_r = rval;
4974 fg_g = gval;
4975 fg_b = bval;
4976 }
4977#endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004978 }
4979
4980 /* got finished code: consume it */
4981 key_name[0] = (int)KS_EXTRA;
4982 key_name[1] = (int)KE_IGNORE;
4983 slen = i + 1 + (tp[i] == ESC);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004984# ifdef FEAT_EVAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004985 set_vim_var_string(is_bg ? VV_TERMRBGRESP
4986 : VV_TERMRFGRESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004987# endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004988 break;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004989 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004990 if (i == len)
4991 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004992 LOG_TR(("not enough characters for RB"));
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004993 return -1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 }
4996
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004997 /* Check for key code response from xterm:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004998 * {lead}{flag}+r<hex bytes><{tail}
4999 *
5000 * {lead} can be <Esc>P or DCS
5001 * {flag} can be '0' or '1'
5002 * {tail} can be Esc>\ or STERM
5003 *
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005004 * Check for cursor shape response from xterm:
Bram Moolenaar590ec872018-03-02 20:58:42 +01005005 * {lead}1$r<digit> q{tail}
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005006 *
5007 * {lead} can be <Esc>P or DCS
5008 * {tail} can be Esc>\ or STERM
5009 *
5010 * Consume any code that starts with "{lead}.+r" or "{lead}.$r".
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005011 */
Bram Moolenaar4db25542017-08-28 22:43:05 +02005012 else if ((check_for_codes || rcs_status == STATUS_SENT)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005013 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 || tp[0] == DCS))
5015 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005016 j = 1 + (tp[0] == ESC);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005017 if (len < j + 3)
5018 i = len; /* need more chars */
5019 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005020 i = 0; /* no match */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005021 else if (argp[1] == '+')
5022 /* key code response */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005023 for (i = j; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005024 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005025 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 || tp[i] == STERM)
5027 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005028 if (i - j >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 got_code_from_term(tp + j, i);
5030 key_name[0] = (int)KS_EXTRA;
5031 key_name[1] = (int)KE_IGNORE;
5032 slen = i + 1 + (tp[i] == ESC);
5033 break;
5034 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005035 }
Bram Moolenaar590ec872018-03-02 20:58:42 +01005036 else
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005037 {
Bram Moolenaar590ec872018-03-02 20:58:42 +01005038 /* Probably the cursor shape response. Make sure that "i"
5039 * is equal to "len" when there are not sufficient
5040 * characters. */
5041 for (i = j + 3; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005042 {
Bram Moolenaar590ec872018-03-02 20:58:42 +01005043 if (i - j == 3 && !isdigit(tp[i]))
5044 break;
5045 if (i - j == 4 && tp[i] != ' ')
5046 break;
5047 if (i - j == 5 && tp[i] != 'q')
5048 break;
5049 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM)
5050 break;
5051 if ((i - j == 6 && tp[i] == STERM)
5052 || (i - j == 7 && tp[i] == '\\'))
5053 {
5054 int number = argp[3] - '0';
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005055
Bram Moolenaar590ec872018-03-02 20:58:42 +01005056 /* 0, 1 = block blink, 2 = block
5057 * 3 = underline blink, 4 = underline
5058 * 5 = vertical bar blink, 6 = vertical bar */
5059 number = number == 0 ? 1 : number;
5060 initial_cursor_shape = (number + 1) / 2;
5061 /* The blink flag is actually inverted, compared to
5062 * the value set with T_SH. */
5063 initial_cursor_shape_blink =
Bram Moolenaar4db25542017-08-28 22:43:05 +02005064 (number & 1) ? FALSE : TRUE;
Bram Moolenaar590ec872018-03-02 20:58:42 +01005065 rcs_status = STATUS_GOT;
Bram Moolenaarb255b902018-04-24 21:40:10 +02005066 LOG_TR(("Received cursor shape response: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005067
Bram Moolenaar590ec872018-03-02 20:58:42 +01005068 key_name[0] = (int)KS_EXTRA;
5069 key_name[1] = (int)KE_IGNORE;
5070 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02005071# ifdef FEAT_EVAL
Bram Moolenaar590ec872018-03-02 20:58:42 +01005072 set_vim_var_string(VV_TERMSTYLERESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02005073# endif
Bram Moolenaar590ec872018-03-02 20:58:42 +01005074 break;
5075 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005076 }
5077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078
5079 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02005080 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005081 /* These codes arrive many together, each code can be
5082 * truncated at any point. */
Bram Moolenaarb255b902018-04-24 21:40:10 +02005083 LOG_TR(("not enough characters for XT"));
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005084 return -1;
Bram Moolenaar2951b772013-07-03 12:45:31 +02005085 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 }
5087 }
5088#endif
5089
5090 if (key_name[0] == NUL)
5091 continue; /* No match at this position, try next one */
5092
5093 /* We only get here when we have a complete termcode match */
5094
5095#ifdef FEAT_MOUSE
5096# ifdef FEAT_GUI
5097 /*
5098 * Only in the GUI: Fetch the pointer coordinates of the scroll event
5099 * so that we know which window to scroll later.
5100 */
5101 if (gui.in_use
5102 && key_name[0] == (int)KS_EXTRA
5103 && (key_name[1] == (int)KE_X1MOUSE
5104 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005105 || key_name[1] == (int)KE_MOUSELEFT
5106 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 || key_name[1] == (int)KE_MOUSEDOWN
5108 || key_name[1] == (int)KE_MOUSEUP))
5109 {
5110 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
5111 if (num_bytes == -1) /* not enough coordinates */
5112 return -1;
5113 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
5114 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
5115 slen += num_bytes;
5116 }
5117 else
5118# endif
5119 /*
5120 * If it is a mouse click, get the coordinates.
5121 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005122 if (key_name[0] == KS_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005124 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125# endif
5126# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005127 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128# endif
5129# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005130 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131# endif
5132# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005133 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005135# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005136 || key_name[0] == KS_URXVT_MOUSE
5137# endif
5138# ifdef FEAT_MOUSE_SGR
5139 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005140 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005141# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 )
5143 {
5144 is_click = is_drag = FALSE;
5145
Bram Moolenaar864207d2008-06-24 22:14:38 +00005146# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
5147 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 if (key_name[0] == (int)KS_MOUSE)
5149 {
5150 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005151 * For xterm we get "<t_mouse>scr", where
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 * s == encoded button state:
5153 * 0x20 = left button down
5154 * 0x21 = middle button down
5155 * 0x22 = right button down
5156 * 0x23 = any button release
5157 * 0x60 = button 4 down (scroll wheel down)
5158 * 0x61 = button 5 down (scroll wheel up)
5159 * add 0x04 for SHIFT
5160 * add 0x08 for ALT
5161 * add 0x10 for CTRL
5162 * add 0x20 for mouse drag (0x40 is drag with left button)
Bram Moolenaarbb160a12017-11-20 21:52:24 +01005163 * add 0x40 for mouse move (0x80 is move, 0x81 too)
5164 * 0x43 (drag + release) is also move
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 * c == column + ' ' + 1 == column + 33
5166 * r == row + ' ' + 1 == row + 33
5167 *
5168 * The coordinates are passed on through global variables.
5169 * Ugly, but this avoids trouble with mouse clicks at an
5170 * unexpected moment and allows for mapping them.
5171 */
5172 for (;;)
5173 {
5174#ifdef FEAT_GUI
5175 if (gui.in_use)
5176 {
5177 /* GUI uses more bits for columns > 223 */
5178 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5);
5179 if (num_bytes == -1) /* not enough coordinates */
5180 return -1;
5181 mouse_code = bytes[0];
5182 mouse_col = 128 * (bytes[1] - ' ' - 1)
5183 + bytes[2] - ' ' - 1;
5184 mouse_row = 128 * (bytes[3] - ' ' - 1)
5185 + bytes[4] - ' ' - 1;
5186 }
5187 else
5188#endif
5189 {
5190 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3);
5191 if (num_bytes == -1) /* not enough coordinates */
5192 return -1;
5193 mouse_code = bytes[0];
5194 mouse_col = bytes[1] - ' ' - 1;
5195 mouse_row = bytes[2] - ' ' - 1;
5196 }
5197 slen += num_bytes;
5198
5199 /* If the following bytes is also a mouse code and it has
5200 * the same code, dump this one and get the next. This
5201 * makes dragging a whole lot faster. */
5202#ifdef FEAT_GUI
5203 if (gui.in_use)
5204 j = 3;
5205 else
5206#endif
5207 j = termcodes[idx].len;
5208 if (STRNCMP(tp, tp + slen, (size_t)j) == 0
5209 && tp[slen + j] == mouse_code
5210 && tp[slen + j + 1] != NUL
5211 && tp[slen + j + 2] != NUL
5212#ifdef FEAT_GUI
5213 && (!gui.in_use
5214 || (tp[slen + j + 3] != NUL
5215 && tp[slen + j + 4] != NUL))
5216#endif
5217 )
5218 slen += j;
5219 else
5220 break;
5221 }
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005222 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005224# if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR)
5225 if (key_name[0] == KS_URXVT_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005226 || key_name[0] == KS_SGR_MOUSE
5227 || key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005228 {
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005229 /* URXVT 1015 mouse reporting mode:
5230 * Almost identical to xterm mouse mode, except the values
5231 * are decimal instead of bytes.
5232 *
5233 * \033[%d;%d;%dM
5234 * ^-- row
5235 * ^----- column
5236 * ^-------- code
5237 *
5238 * SGR 1006 mouse reporting mode:
5239 * Almost identical to xterm mouse mode, except the values
5240 * are decimal instead of bytes.
5241 *
5242 * \033[<%d;%d;%dM
5243 * ^-- row
5244 * ^----- column
5245 * ^-------- code
5246 *
5247 * \033[<%d;%d;%dm : mouse release event
5248 * ^-- row
5249 * ^----- column
5250 * ^-------- code
5251 */
5252 p = modifiers_start;
5253 if (p == NULL)
5254 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005255
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005256 mouse_code = getdigits(&p);
5257 if (*p++ != ';')
5258 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005259
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005260 /* when mouse reporting is SGR, add 32 to mouse code */
5261 if (key_name[0] == KS_SGR_MOUSE
5262 || key_name[0] == KS_SGR_MOUSE_RELEASE)
5263 mouse_code += 32;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005264
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005265 if (key_name[0] == KS_SGR_MOUSE_RELEASE)
5266 mouse_code |= MOUSE_RELEASE;
Bram Moolenaara529ce02017-06-22 22:37:57 +02005267
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005268 mouse_col = getdigits(&p) - 1;
5269 if (*p++ != ';')
5270 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005271
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005272 mouse_row = getdigits(&p) - 1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005273
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005274 /* The modifiers were the mouse coordinates, not the
5275 * modifier keys (alt/shift/ctrl/meta) state. */
5276 modifiers = 0;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005277 }
5278# endif
5279
5280 if (key_name[0] == (int)KS_MOUSE
5281#ifdef FEAT_MOUSE_URXVT
5282 || key_name[0] == (int)KS_URXVT_MOUSE
5283#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005284#ifdef FEAT_MOUSE_SGR
5285 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005286 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005287#endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005288 )
5289 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005290# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 /*
5292 * Handle mouse events.
5293 * Recognize the xterm mouse wheel, but not in the GUI, the
5294 * Linux console with GPM and the MS-DOS or Win32 console
5295 * (multi-clicks use >= 0x60).
5296 */
5297 if (mouse_code >= MOUSEWHEEL_LOW
5298# ifdef FEAT_GUI
5299 && !gui.in_use
5300# endif
5301# ifdef FEAT_MOUSE_GPM
5302 && gpm_flag == 0
5303# endif
5304 )
5305 {
Bram Moolenaarbb160a12017-11-20 21:52:24 +01005306# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
5307 if (use_xterm_mouse() > 1 && mouse_code >= 0x80)
5308 /* mouse-move event, using MOUSE_DRAG works */
5309 mouse_code = MOUSE_DRAG;
5310 else
5311# endif
5312 /* Keep the mouse_code before it's changed, so that we
5313 * remember that it was a mouse wheel click. */
5314 wheel_code = mouse_code;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 }
5316# ifdef FEAT_MOUSE_XTERM
5317 else if (held_button == MOUSE_RELEASE
5318# ifdef FEAT_GUI
5319 && !gui.in_use
5320# endif
Bram Moolenaar1f8495c2018-04-04 21:53:11 +02005321 && (mouse_code == 0x23 || mouse_code == 0x24
5322 || mouse_code == 0x40 || mouse_code == 0x41))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 {
Bram Moolenaar1f8495c2018-04-04 21:53:11 +02005324 /* Apparently 0x23 and 0x24 are used by rxvt scroll wheel.
5325 * And 0x40 and 0x41 are used by some xterm emulator. */
5326 wheel_code = mouse_code - (mouse_code >= 0x40 ? 0x40 : 0x23)
5327 + MOUSEWHEEL_LOW;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 }
5329# endif
5330
5331# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
5332 else if (use_xterm_mouse() > 1)
5333 {
5334 if (mouse_code & MOUSE_DRAG_XTERM)
5335 mouse_code |= MOUSE_DRAG;
5336 }
5337# endif
5338# ifdef FEAT_XCLIPBOARD
5339 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
5340 {
5341 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
5342 stop_xterm_trace();
5343 else
5344 start_xterm_trace(mouse_code);
5345 }
5346# endif
5347# endif
5348 }
5349# endif /* !UNIX || FEAT_MOUSE_XTERM */
5350# ifdef FEAT_MOUSE_NET
5351 if (key_name[0] == (int)KS_NETTERM_MOUSE)
5352 {
5353 int mc, mr;
5354
5355 /* expect a rather limited sequence like: balancing {
5356 * \033}6,45\r
5357 * '6' is the row, 45 is the column
5358 */
5359 p = tp + slen;
5360 mr = getdigits(&p);
5361 if (*p++ != ',')
5362 return -1;
5363 mc = getdigits(&p);
5364 if (*p++ != '\r')
5365 return -1;
5366
5367 mouse_col = mc - 1;
5368 mouse_row = mr - 1;
5369 mouse_code = MOUSE_LEFT;
5370 slen += (int)(p - (tp + slen));
5371 }
5372# endif /* FEAT_MOUSE_NET */
5373# ifdef FEAT_MOUSE_JSB
5374 if (key_name[0] == (int)KS_JSBTERM_MOUSE)
5375 {
5376 int mult, val, iter, button, status;
5377
5378 /* JSBTERM Input Model
5379 * \033[0~zw uniq escape sequence
5380 * (L-x) Left button pressed - not pressed x not reporting
5381 * (M-x) Middle button pressed - not pressed x not reporting
5382 * (R-x) Right button pressed - not pressed x not reporting
5383 * (SDmdu) Single , Double click, m mouse move d button down
5384 * u button up
5385 * ### X cursor position padded to 3 digits
5386 * ### Y cursor position padded to 3 digits
5387 * (s-x) SHIFT key pressed - not pressed x not reporting
5388 * (c-x) CTRL key pressed - not pressed x not reporting
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005389 * \033\\ terminating sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390 */
5391
5392 p = tp + slen;
5393 button = mouse_code = 0;
5394 switch (*p++)
5395 {
5396 case 'L': button = 1; break;
5397 case '-': break;
5398 case 'x': break; /* ignore sequence */
5399 default: return -1; /* Unknown Result */
5400 }
5401 switch (*p++)
5402 {
5403 case 'M': button |= 2; break;
5404 case '-': break;
5405 case 'x': break; /* ignore sequence */
5406 default: return -1; /* Unknown Result */
5407 }
5408 switch (*p++)
5409 {
5410 case 'R': button |= 4; break;
5411 case '-': break;
5412 case 'x': break; /* ignore sequence */
5413 default: return -1; /* Unknown Result */
5414 }
5415 status = *p++;
5416 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5417 mult /= 10, p++)
5418 if (*p >= '0' && *p <= '9')
5419 val += (*p - '0') * mult;
5420 else
5421 return -1;
5422 mouse_col = val;
5423 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5424 mult /= 10, p++)
5425 if (*p >= '0' && *p <= '9')
5426 val += (*p - '0') * mult;
5427 else
5428 return -1;
5429 mouse_row = val;
5430 switch (*p++)
5431 {
5432 case 's': button |= 8; break; /* SHIFT key Pressed */
5433 case '-': break; /* Not Pressed */
5434 case 'x': break; /* Not Reporting */
5435 default: return -1; /* Unknown Result */
5436 }
5437 switch (*p++)
5438 {
5439 case 'c': button |= 16; break; /* CTRL key Pressed */
5440 case '-': break; /* Not Pressed */
5441 case 'x': break; /* Not Reporting */
5442 default: return -1; /* Unknown Result */
5443 }
5444 if (*p++ != '\033')
5445 return -1;
5446 if (*p++ != '\\')
5447 return -1;
5448 switch (status)
5449 {
5450 case 'D': /* Double Click */
5451 case 'S': /* Single Click */
5452 if (button & 1) mouse_code |= MOUSE_LEFT;
5453 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5454 if (button & 4) mouse_code |= MOUSE_RIGHT;
5455 if (button & 8) mouse_code |= MOUSE_SHIFT;
5456 if (button & 16) mouse_code |= MOUSE_CTRL;
5457 break;
5458 case 'm': /* Mouse move */
5459 if (button & 1) mouse_code |= MOUSE_LEFT;
5460 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5461 if (button & 4) mouse_code |= MOUSE_RIGHT;
5462 if (button & 8) mouse_code |= MOUSE_SHIFT;
5463 if (button & 16) mouse_code |= MOUSE_CTRL;
5464 if ((button & 7) != 0)
5465 {
5466 held_button = mouse_code;
5467 mouse_code |= MOUSE_DRAG;
5468 }
5469 is_drag = TRUE;
5470 showmode();
5471 break;
5472 case 'd': /* Button Down */
5473 if (button & 1) mouse_code |= MOUSE_LEFT;
5474 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5475 if (button & 4) mouse_code |= MOUSE_RIGHT;
5476 if (button & 8) mouse_code |= MOUSE_SHIFT;
5477 if (button & 16) mouse_code |= MOUSE_CTRL;
5478 break;
5479 case 'u': /* Button Up */
5480 if (button & 1)
5481 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE;
5482 if (button & 2)
5483 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE;
5484 if (button & 4)
5485 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE;
5486 if (button & 8)
5487 mouse_code |= MOUSE_SHIFT;
5488 if (button & 16)
5489 mouse_code |= MOUSE_CTRL;
5490 break;
5491 default: return -1; /* Unknown Result */
5492 }
5493
5494 slen += (p - (tp + slen));
5495 }
5496# endif /* FEAT_MOUSE_JSB */
5497# ifdef FEAT_MOUSE_DEC
5498 if (key_name[0] == (int)KS_DEC_MOUSE)
5499 {
5500 /* The DEC Locator Input Model
5501 * Netterm delivers the code sequence:
5502 * \033[2;4;24;80&w (left button down)
5503 * \033[3;0;24;80&w (left button up)
5504 * \033[6;1;24;80&w (right button down)
5505 * \033[7;0;24;80&w (right button up)
5506 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
5507 * Pe is the event code
5508 * Pb is the button code
5509 * Pr is the row coordinate
5510 * Pc is the column coordinate
5511 * Pp is the third coordinate (page number)
5512 * Pe, the event code indicates what event caused this report
5513 * The following event codes are defined:
5514 * 0 - request, the terminal received an explicit request
5515 * for a locator report, but the locator is unavailable
5516 * 1 - request, the terminal received an explicit request
5517 * for a locator report
5518 * 2 - left button down
5519 * 3 - left button up
5520 * 4 - middle button down
5521 * 5 - middle button up
5522 * 6 - right button down
5523 * 7 - right button up
5524 * 8 - fourth button down
5525 * 9 - fourth button up
5526 * 10 - locator outside filter rectangle
5527 * Pb, the button code, ASCII decimal 0-15 indicating which
5528 * buttons are down if any. The state of the four buttons
5529 * on the locator correspond to the low four bits of the
5530 * decimal value,
5531 * "1" means button depressed
5532 * 0 - no buttons down,
5533 * 1 - right,
5534 * 2 - middle,
5535 * 4 - left,
5536 * 8 - fourth
5537 * Pr is the row coordinate of the locator position in the page,
5538 * encoded as an ASCII decimal value.
5539 * If Pr is omitted, the locator position is undefined
5540 * (outside the terminal window for example).
5541 * Pc is the column coordinate of the locator position in the
5542 * page, encoded as an ASCII decimal value.
5543 * If Pc is omitted, the locator position is undefined
5544 * (outside the terminal window for example).
5545 * Pp is the page coordinate of the locator position
5546 * encoded as an ASCII decimal value.
5547 * The page coordinate may be omitted if the locator is on
5548 * page one (the default). We ignore it anyway.
5549 */
5550 int Pe, Pb, Pr, Pc;
5551
5552 p = tp + slen;
5553
5554 /* get event status */
5555 Pe = getdigits(&p);
5556 if (*p++ != ';')
5557 return -1;
5558
5559 /* get button status */
5560 Pb = getdigits(&p);
5561 if (*p++ != ';')
5562 return -1;
5563
5564 /* get row status */
5565 Pr = getdigits(&p);
5566 if (*p++ != ';')
5567 return -1;
5568
5569 /* get column status */
5570 Pc = getdigits(&p);
5571
5572 /* the page parameter is optional */
5573 if (*p == ';')
5574 {
5575 p++;
5576 (void)getdigits(&p);
5577 }
5578 if (*p++ != '&')
5579 return -1;
5580 if (*p++ != 'w')
5581 return -1;
5582
5583 mouse_code = 0;
5584 switch (Pe)
5585 {
5586 case 0: return -1; /* position request while unavailable */
5587 case 1: /* a response to a locator position request includes
5588 the status of all buttons */
5589 Pb &= 7; /* mask off and ignore fourth button */
5590 if (Pb & 4)
5591 mouse_code = MOUSE_LEFT;
5592 if (Pb & 2)
5593 mouse_code = MOUSE_MIDDLE;
5594 if (Pb & 1)
5595 mouse_code = MOUSE_RIGHT;
5596 if (Pb)
5597 {
5598 held_button = mouse_code;
5599 mouse_code |= MOUSE_DRAG;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005600 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 }
5602 is_drag = TRUE;
5603 showmode();
5604 break;
5605 case 2: mouse_code = MOUSE_LEFT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005606 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 break;
5608 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT;
5609 break;
5610 case 4: mouse_code = MOUSE_MIDDLE;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005611 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 break;
5613 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE;
5614 break;
5615 case 6: mouse_code = MOUSE_RIGHT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005616 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 break;
5618 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT;
5619 break;
5620 case 8: return -1; /* fourth button down */
5621 case 9: return -1; /* fourth button up */
5622 case 10: return -1; /* mouse outside of filter rectangle */
5623 default: return -1; /* should never occur */
5624 }
5625
5626 mouse_col = Pc - 1;
5627 mouse_row = Pr - 1;
5628
5629 slen += (int)(p - (tp + slen));
5630 }
5631# endif /* FEAT_MOUSE_DEC */
5632# ifdef FEAT_MOUSE_PTERM
5633 if (key_name[0] == (int)KS_PTERM_MOUSE)
5634 {
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005635 int button, num_clicks, action;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636
5637 p = tp + slen;
5638
5639 action = getdigits(&p);
5640 if (*p++ != ';')
5641 return -1;
5642
5643 mouse_row = getdigits(&p);
5644 if (*p++ != ';')
5645 return -1;
5646 mouse_col = getdigits(&p);
5647 if (*p++ != ';')
5648 return -1;
5649
5650 button = getdigits(&p);
5651 mouse_code = 0;
5652
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005653 switch (button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 {
5655 case 4: mouse_code = MOUSE_LEFT; break;
5656 case 1: mouse_code = MOUSE_RIGHT; break;
5657 case 2: mouse_code = MOUSE_MIDDLE; break;
5658 default: return -1;
5659 }
5660
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005661 switch (action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662 {
5663 case 31: /* Initial press */
5664 if (*p++ != ';')
5665 return -1;
5666
5667 num_clicks = getdigits(&p); /* Not used */
5668 break;
5669
5670 case 32: /* Release */
5671 mouse_code |= MOUSE_RELEASE;
5672 break;
5673
5674 case 33: /* Drag */
5675 held_button = mouse_code;
5676 mouse_code |= MOUSE_DRAG;
5677 break;
5678
5679 default:
5680 return -1;
5681 }
5682
5683 if (*p++ != 't')
5684 return -1;
5685
5686 slen += (p - (tp + slen));
5687 }
5688# endif /* FEAT_MOUSE_PTERM */
5689
5690 /* Interpret the mouse code */
5691 current_button = (mouse_code & MOUSE_CLICK_MASK);
5692 if (current_button == MOUSE_RELEASE
5693# ifdef FEAT_MOUSE_XTERM
5694 && wheel_code == 0
5695# endif
5696 )
5697 {
5698 /*
5699 * If we get a mouse drag or release event when
5700 * there is no mouse button held down (held_button ==
5701 * MOUSE_RELEASE), produce a K_IGNORE below.
5702 * (can happen when you hold down two buttons
5703 * and then let them go, or click in the menu bar, but not
5704 * on a menu, and drag into the text).
5705 */
5706 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
5707 is_drag = TRUE;
5708 current_button = held_button;
5709 }
5710 else if (wheel_code == 0)
5711 {
5712# ifdef CHECK_DOUBLE_CLICK
5713# ifdef FEAT_MOUSE_GPM
5714# ifdef FEAT_GUI
5715 /*
5716 * Only for Unix, when GUI or gpm is not active, we handle
5717 * multi-clicks here.
5718 */
5719 if (gpm_flag == 0 && !gui.in_use)
5720# else
5721 if (gpm_flag == 0)
5722# endif
5723# else
5724# ifdef FEAT_GUI
5725 if (!gui.in_use)
5726# endif
5727# endif
5728 {
5729 /*
5730 * Compute the time elapsed since the previous mouse click.
5731 */
5732 gettimeofday(&mouse_time, NULL);
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005733 if (orig_mouse_time.tv_sec == 0)
5734 {
5735 /*
5736 * Avoid computing the difference between mouse_time
5737 * and orig_mouse_time for the first click, as the
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005738 * difference would be huge and would cause
5739 * multiplication overflow.
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005740 */
5741 timediff = p_mouset;
5742 }
5743 else
5744 {
5745 timediff = (mouse_time.tv_usec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005746 - orig_mouse_time.tv_usec) / 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005747 if (timediff < 0)
5748 --orig_mouse_time.tv_sec;
5749 timediff += (mouse_time.tv_sec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005750 - orig_mouse_time.tv_sec) * 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005751 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752 orig_mouse_time = mouse_time;
5753 if (mouse_code == orig_mouse_code
5754 && timediff < p_mouset
5755 && orig_num_clicks != 4
5756 && orig_mouse_col == mouse_col
5757 && orig_mouse_row == mouse_row
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005758 && ((orig_topline == curwin->w_topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759#ifdef FEAT_DIFF
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005760 && orig_topfill == curwin->w_topfill
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761#endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005762 )
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005763 /* Double click in tab pages line also works
5764 * when window contents changes. */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005765 || (mouse_row == 0 && firstwin->w_winrow > 0))
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005766 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 ++orig_num_clicks;
5768 else
5769 orig_num_clicks = 1;
5770 orig_mouse_col = mouse_col;
5771 orig_mouse_row = mouse_row;
5772 orig_topline = curwin->w_topline;
5773#ifdef FEAT_DIFF
5774 orig_topfill = curwin->w_topfill;
5775#endif
5776 }
5777# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
5778 else
5779 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5780# endif
5781# else
5782 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5783# endif
5784 is_click = TRUE;
5785 orig_mouse_code = mouse_code;
5786 }
5787 if (!is_drag)
5788 held_button = mouse_code & MOUSE_CLICK_MASK;
5789
5790 /*
5791 * Translate the actual mouse event into a pseudo mouse event.
5792 * First work out what modifiers are to be used.
5793 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794 if (orig_mouse_code & MOUSE_SHIFT)
5795 modifiers |= MOD_MASK_SHIFT;
5796 if (orig_mouse_code & MOUSE_CTRL)
5797 modifiers |= MOD_MASK_CTRL;
5798 if (orig_mouse_code & MOUSE_ALT)
5799 modifiers |= MOD_MASK_ALT;
5800 if (orig_num_clicks == 2)
5801 modifiers |= MOD_MASK_2CLICK;
5802 else if (orig_num_clicks == 3)
5803 modifiers |= MOD_MASK_3CLICK;
5804 else if (orig_num_clicks == 4)
5805 modifiers |= MOD_MASK_4CLICK;
5806
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005807 /* Work out our pseudo mouse event. Note that MOUSE_RELEASE gets
5808 * added, then it's not mouse up/down. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 key_name[0] = (int)KS_EXTRA;
Bram Moolenaard23a8232018-02-10 18:45:26 +01005810 if (wheel_code != 0
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005811 && (wheel_code & MOUSE_RELEASE) != MOUSE_RELEASE)
Bram Moolenaar5074e302010-07-18 14:26:11 +02005812 {
5813 if (wheel_code & MOUSE_CTRL)
5814 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar01a8f382010-07-18 23:32:13 +02005815 if (wheel_code & MOUSE_ALT)
5816 modifiers |= MOD_MASK_ALT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 key_name[1] = (wheel_code & 1)
5818 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01005819 held_button = MOUSE_RELEASE;
Bram Moolenaar5074e302010-07-18 14:26:11 +02005820 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821 else
5822 key_name[1] = get_pseudo_mouse_code(current_button,
5823 is_click, is_drag);
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005824
5825 /* Make sure the mouse position is valid. Some terminals may
5826 * return weird values. */
5827 if (mouse_col >= Columns)
5828 mouse_col = Columns - 1;
5829 if (mouse_row >= Rows)
5830 mouse_row = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 }
5832#endif /* FEAT_MOUSE */
5833
5834#ifdef FEAT_GUI
5835 /*
5836 * If using the GUI, then we get menu and scrollbar events.
5837 *
5838 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5839 * four bytes which are to be taken as a pointer to the vimmenu_T
5840 * structure.
5841 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005842 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005843 * is one byte with the tab index.
5844 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5846 * by one byte representing the scrollbar number, and then four bytes
5847 * representing a long_u which is the new value of the scrollbar.
5848 *
5849 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5850 * KE_FILLER followed by four bytes representing a long_u which is the
5851 * new value of the scrollbar.
5852 */
5853# ifdef FEAT_MENU
5854 else if (key_name[0] == (int)KS_MENU)
5855 {
5856 long_u val;
5857
5858 num_bytes = get_long_from_buf(tp + slen, &val);
5859 if (num_bytes == -1)
5860 return -1;
5861 current_menu = (vimmenu_T *)val;
5862 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005863
5864 /* The menu may have been deleted right after it was used, check
5865 * for that. */
5866 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5867 {
5868 key_name[0] = KS_EXTRA;
5869 key_name[1] = (int)KE_IGNORE;
5870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871 }
5872# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005873# ifdef FEAT_GUI_TABLINE
5874 else if (key_name[0] == (int)KS_TABLINE)
5875 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005876 /* Selecting tabline tab or using its menu. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005877 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5878 if (num_bytes == -1)
5879 return -1;
5880 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005881 if (current_tab == 255) /* -1 in a byte gives 255 */
5882 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005883 slen += num_bytes;
5884 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005885 else if (key_name[0] == (int)KS_TABMENU)
5886 {
5887 /* Selecting tabline tab or using its menu. */
5888 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5889 if (num_bytes == -1)
5890 return -1;
5891 current_tab = (int)bytes[0];
5892 current_tabmenu = (int)bytes[1];
5893 slen += num_bytes;
5894 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005895# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896# ifndef USE_ON_FLY_SCROLL
5897 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5898 {
5899 long_u val;
5900
5901 /* Get the last scrollbar event in the queue of the same type */
5902 j = 0;
5903 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5904 && tp[j + 2] != NUL; ++i)
5905 {
5906 j += 3;
5907 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5908 if (num_bytes == -1)
5909 break;
5910 if (i == 0)
5911 current_scrollbar = (int)bytes[0];
5912 else if (current_scrollbar != (int)bytes[0])
5913 break;
5914 j += num_bytes;
5915 num_bytes = get_long_from_buf(tp + j, &val);
5916 if (num_bytes == -1)
5917 break;
5918 scrollbar_value = val;
5919 j += num_bytes;
5920 slen = j;
5921 }
5922 if (i == 0) /* not enough characters to make one */
5923 return -1;
5924 }
5925 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5926 {
5927 long_u val;
5928
5929 /* Get the last horiz. scrollbar event in the queue */
5930 j = 0;
5931 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5932 && tp[j + 2] != NUL; ++i)
5933 {
5934 j += 3;
5935 num_bytes = get_long_from_buf(tp + j, &val);
5936 if (num_bytes == -1)
5937 break;
5938 scrollbar_value = val;
5939 j += num_bytes;
5940 slen = j;
5941 }
5942 if (i == 0) /* not enough characters to make one */
5943 return -1;
5944 }
5945# endif /* !USE_ON_FLY_SCROLL */
5946#endif /* FEAT_GUI */
5947
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005948 /*
5949 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5950 */
5951 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5952
5953 /*
5954 * Add any modifier codes to our string.
5955 */
5956 new_slen = 0; /* Length of what will replace the termcode */
5957 if (modifiers != 0)
5958 {
5959 /* Some keys have the modifier included. Need to handle that here
5960 * to make mappings work. */
5961 key = simplify_key(key, &modifiers);
5962 if (modifiers != 0)
5963 {
5964 string[new_slen++] = K_SPECIAL;
5965 string[new_slen++] = (int)KS_MODIFIER;
5966 string[new_slen++] = modifiers;
5967 }
5968 }
5969
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005971 key_name[0] = KEY2TERMCAP0(key);
5972 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005974 {
5975 /* from ":set <M-b>=xx" */
5976#ifdef FEAT_MBYTE
5977 if (has_mbyte)
5978 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5979 else
5980#endif
5981 string[new_slen++] = key_name[1];
5982 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005983 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5984 && key_name[1] == KE_IGNORE)
5985 {
5986 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5987 * to indicate what happened. */
5988 retval = KEYLEN_REMOVED;
5989 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 else
5991 {
5992 string[new_slen++] = K_SPECIAL;
5993 string[new_slen++] = key_name[0];
5994 string[new_slen++] = key_name[1];
5995 }
5996 string[new_slen] = NUL;
5997 extra = new_slen - slen;
5998 if (buf == NULL)
5999 {
6000 if (extra < 0)
6001 /* remove matched chars, taking care of noremap */
6002 del_typebuf(-extra, offset);
6003 else if (extra > 0)
6004 /* insert the extra space we need */
6005 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
6006
6007 /*
6008 * Careful: del_typebuf() and ins_typebuf() may have reallocated
6009 * typebuf.tb_buf[]!
6010 */
6011 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
6012 (size_t)new_slen);
6013 }
6014 else
6015 {
6016 if (extra < 0)
6017 /* remove matched characters */
6018 mch_memmove(buf + offset, buf + offset - extra,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01006019 (size_t)(*buflen + offset + extra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020 else if (extra > 0)
Bram Moolenaara8c8a682012-02-05 22:05:48 +01006021 {
6022 /* Insert the extra space we need. If there is insufficient
6023 * space return -1. */
6024 if (*buflen + extra + new_slen >= bufsize)
6025 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 mch_memmove(buf + offset + extra, buf + offset,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01006027 (size_t)(*buflen - offset));
6028 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006029 mch_memmove(buf + offset, string, (size_t)new_slen);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01006030 *buflen = *buflen + extra + new_slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01006032 return retval == 0 ? (len + extra + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006033 }
6034
Bram Moolenaar2951b772013-07-03 12:45:31 +02006035#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02006036 LOG_TR(("normal character"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02006037#endif
6038
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039 return 0; /* no match found */
6040}
6041
Bram Moolenaar9377df32017-10-15 13:22:01 +02006042#if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02006043/*
6044 * Get the text foreground color, if known.
6045 */
6046 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02006047term_get_fg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02006048{
6049 if (rfg_status == STATUS_GOT)
6050 {
6051 *r = fg_r;
6052 *g = fg_g;
6053 *b = fg_b;
6054 }
6055}
6056
6057/*
6058 * Get the text background color, if known.
6059 */
6060 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02006061term_get_bg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02006062{
6063 if (rbg_status == STATUS_GOT)
6064 {
6065 *r = bg_r;
6066 *g = bg_g;
6067 *b = bg_b;
6068 }
6069}
6070#endif
6071
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072/*
6073 * Replace any terminal code strings in from[] with the equivalent internal
6074 * vim representation. This is used for the "from" and "to" part of a
6075 * mapping, and the "to" part of a menu command.
6076 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
6077 * '<'.
6078 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
6079 *
6080 * The replacement is done in result[] and finally copied into allocated
6081 * memory. If this all works well *bufp is set to the allocated memory and a
6082 * pointer to it is returned. If something fails *bufp is set to NULL and from
6083 * is returned.
6084 *
6085 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
6086 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
6087 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
6088 * instead of a CTRL-V.
6089 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00006090 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006091replace_termcodes(
6092 char_u *from,
6093 char_u **bufp,
6094 int from_part,
6095 int do_lt, /* also translate <lt> */
6096 int special) /* always accept <key> notation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097{
6098 int i;
6099 int slen;
6100 int key;
6101 int dlen = 0;
6102 char_u *src;
6103 int do_backslash; /* backslash is a special character */
6104 int do_special; /* recognize <> key codes */
6105 int do_key_code; /* recognize raw key codes */
6106 char_u *result; /* buffer for resulting string */
6107
6108 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00006109 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006110 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
6111
6112 /*
6113 * Allocate space for the translation. Worst case a single character is
6114 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
6115 */
6116 result = alloc((unsigned)STRLEN(from) * 6 + 1);
6117 if (result == NULL) /* out of memory */
6118 {
6119 *bufp = NULL;
6120 return from;
6121 }
6122
6123 src = from;
6124
6125 /*
6126 * Check for #n at start only: function key n
6127 */
6128 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */
6129 {
6130 result[dlen++] = K_SPECIAL;
6131 result[dlen++] = 'k';
6132 if (src[1] == '0')
6133 result[dlen++] = ';'; /* #0 is F10 is "k;" */
6134 else
6135 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
6136 src += 2;
6137 }
6138
6139 /*
6140 * Copy each byte from *from to result[dlen]
6141 */
6142 while (*src != NUL)
6143 {
6144 /*
6145 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02006146 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147 */
6148 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0))
6149 {
6150#ifdef FEAT_EVAL
6151 /*
6152 * Replace <SID> by K_SNR <script-nr> _.
6153 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
6154 */
6155 if (STRNICMP(src, "<SID>", 5) == 0)
6156 {
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02006157 if (current_sctx.sc_sid <= 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006158 emsg(_(e_usingsid));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 else
6160 {
6161 src += 5;
6162 result[dlen++] = K_SPECIAL;
6163 result[dlen++] = (int)KS_EXTRA;
6164 result[dlen++] = (int)KE_SNR;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02006165 sprintf((char *)result + dlen, "%ld",
6166 (long)current_sctx.sc_sid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167 dlen += (int)STRLEN(result + dlen);
6168 result[dlen++] = '_';
6169 continue;
6170 }
6171 }
6172#endif
6173
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02006174 slen = trans_special(&src, result + dlen, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 if (slen)
6176 {
6177 dlen += slen;
6178 continue;
6179 }
6180 }
6181
6182 /*
6183 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
6184 * Note that this is also checked after replacing the <> form.
6185 * Single character codes are NOT replaced (e.g. ^H or DEL), because
6186 * it could be a character in the file.
6187 */
6188 if (do_key_code)
6189 {
6190 i = find_term_bykeys(src);
6191 if (i >= 0)
6192 {
6193 result[dlen++] = K_SPECIAL;
6194 result[dlen++] = termcodes[i].name[0];
6195 result[dlen++] = termcodes[i].name[1];
6196 src += termcodes[i].len;
6197 /* If terminal code matched, continue after it. */
6198 continue;
6199 }
6200 }
6201
6202#ifdef FEAT_EVAL
6203 if (do_special)
6204 {
6205 char_u *p, *s, len;
6206
6207 /*
6208 * Replace <Leader> by the value of "mapleader".
6209 * Replace <LocalLeader> by the value of "maplocalleader".
6210 * If "mapleader" or "maplocalleader" isn't set use a backslash.
6211 */
6212 if (STRNICMP(src, "<Leader>", 8) == 0)
6213 {
6214 len = 8;
6215 p = get_var_value((char_u *)"g:mapleader");
6216 }
6217 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
6218 {
6219 len = 13;
6220 p = get_var_value((char_u *)"g:maplocalleader");
6221 }
6222 else
6223 {
6224 len = 0;
6225 p = NULL;
6226 }
6227 if (len != 0)
6228 {
6229 /* Allow up to 8 * 6 characters for "mapleader". */
6230 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
6231 s = (char_u *)"\\";
6232 else
6233 s = p;
6234 while (*s != NUL)
6235 result[dlen++] = *s++;
6236 src += len;
6237 continue;
6238 }
6239 }
6240#endif
6241
6242 /*
6243 * Remove CTRL-V and ignore the next character.
6244 * For "from" side the CTRL-V at the end is included, for the "to"
6245 * part it is removed.
6246 * If 'cpoptions' does not contain 'B', also accept a backslash.
6247 */
6248 key = *src;
6249 if (key == Ctrl_V || (do_backslash && key == '\\'))
6250 {
6251 ++src; /* skip CTRL-V or backslash */
6252 if (*src == NUL)
6253 {
6254 if (from_part)
6255 result[dlen++] = key;
6256 break;
6257 }
6258 }
6259
6260#ifdef FEAT_MBYTE
6261 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006262 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263#endif
6264 {
6265 /*
6266 * If the character is K_SPECIAL, replace it with K_SPECIAL
6267 * KS_SPECIAL KE_FILLER.
6268 * If compiled with the GUI replace CSI with K_CSI.
6269 */
6270 if (*src == K_SPECIAL)
6271 {
6272 result[dlen++] = K_SPECIAL;
6273 result[dlen++] = KS_SPECIAL;
6274 result[dlen++] = KE_FILLER;
6275 }
6276# ifdef FEAT_GUI
6277 else if (*src == CSI)
6278 {
6279 result[dlen++] = K_SPECIAL;
6280 result[dlen++] = KS_EXTRA;
6281 result[dlen++] = (int)KE_CSI;
6282 }
6283# endif
6284 else
6285 result[dlen++] = *src;
6286 ++src;
6287 }
6288 }
6289 result[dlen] = NUL;
6290
6291 /*
6292 * Copy the new string to allocated memory.
6293 * If this fails, just return from.
6294 */
6295 if ((*bufp = vim_strsave(result)) != NULL)
6296 from = *bufp;
6297 vim_free(result);
6298 return from;
6299}
6300
6301/*
6302 * Find a termcode with keys 'src' (must be NUL terminated).
6303 * Return the index in termcodes[], or -1 if not found.
6304 */
6305 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006306find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307{
6308 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006309 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310
6311 for (i = 0; i < tc_len; ++i)
6312 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01006313 if (slen == termcodes[i].len
6314 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 return i;
6316 }
6317 return -1;
6318}
6319
6320/*
6321 * Gather the first characters in the terminal key codes into a string.
6322 * Used to speed up check_termcode().
6323 */
6324 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006325gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326{
6327 int i;
6328 int len = 0;
6329
6330#ifdef FEAT_GUI
6331 if (gui.in_use)
6332 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
6333#endif
6334#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02006335 if (check_for_codes || *T_CRS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336 termleader[len++] = DCS; /* the termcode response starts with DCS
6337 in 8-bit mode */
6338#endif
6339 termleader[len] = NUL;
6340
6341 for (i = 0; i < tc_len; ++i)
6342 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
6343 {
6344 termleader[len++] = termcodes[i].code[0];
6345 termleader[len] = NUL;
6346 }
6347
6348 need_gather = FALSE;
6349}
6350
6351/*
6352 * Show all termcodes (for ":set termcap")
6353 * This code looks a lot like showoptions(), but is different.
6354 */
6355 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006356show_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357{
6358 int col;
6359 int *items;
6360 int item_count;
6361 int run;
6362 int row, rows;
6363 int cols;
6364 int i;
6365 int len;
6366
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006367#define INC3 27 /* try to make three columns */
6368#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369#define GAP 2 /* spaces between columns */
6370
6371 if (tc_len == 0) /* no terminal codes (must be GUI) */
6372 return;
6373 items = (int *)alloc((unsigned)(sizeof(int) * tc_len));
6374 if (items == NULL)
6375 return;
6376
6377 /* Highlight title */
Bram Moolenaar32526b32019-01-19 17:43:09 +01006378 msg_puts_title(_("\n--- Terminal keys ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379
6380 /*
6381 * do the loop two times:
6382 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006383 * 2. display the medium items (medium length strings)
6384 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006386 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387 {
6388 /*
6389 * collect the items in items[]
6390 */
6391 item_count = 0;
6392 for (i = 0; i < tc_len; i++)
6393 {
6394 len = show_one_termcode(termcodes[i].name,
6395 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006396 if (len <= INC3 - GAP ? run == 1
6397 : len <= INC2 - GAP ? run == 2
6398 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006399 items[item_count++] = i;
6400 }
6401
6402 /*
6403 * display the items
6404 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006405 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006407 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 if (cols == 0)
6409 cols = 1;
6410 rows = (item_count + cols - 1) / cols;
6411 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006412 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 rows = item_count;
6414 for (row = 0; row < rows && !got_int; ++row)
6415 {
6416 msg_putchar('\n'); /* go to next line */
6417 if (got_int) /* 'q' typed in more */
6418 break;
6419 col = 0;
6420 for (i = row; i < item_count; i += rows)
6421 {
6422 msg_col = col; /* make columns */
6423 show_one_termcode(termcodes[items[i]].name,
6424 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006425 if (run == 2)
6426 col += INC2;
6427 else
6428 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 }
6430 out_flush();
6431 ui_breakcheck();
6432 }
6433 }
6434 vim_free(items);
6435}
6436
6437/*
6438 * Show one termcode entry.
6439 * Output goes into IObuff[]
6440 */
6441 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006442show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443{
6444 char_u *p;
6445 int len;
6446
6447 if (name[0] > '~')
6448 {
6449 IObuff[0] = ' ';
6450 IObuff[1] = ' ';
6451 IObuff[2] = ' ';
6452 IObuff[3] = ' ';
6453 }
6454 else
6455 {
6456 IObuff[0] = 't';
6457 IObuff[1] = '_';
6458 IObuff[2] = name[0];
6459 IObuff[3] = name[1];
6460 }
6461 IObuff[4] = ' ';
6462
6463 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
6464 if (p[1] != 't')
6465 STRCPY(IObuff + 5, p);
6466 else
6467 IObuff[5] = NUL;
6468 len = (int)STRLEN(IObuff);
6469 do
6470 IObuff[len++] = ' ';
6471 while (len < 17);
6472 IObuff[len] = NUL;
6473 if (code == NULL)
6474 len += 4;
6475 else
6476 len += vim_strsize(code);
6477
6478 if (printit)
6479 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006480 msg_puts((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 if (code == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006482 msg_puts("NULL");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483 else
6484 msg_outtrans(code);
6485 }
6486 return len;
6487}
6488
6489#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
6490/*
6491 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
6492 * termcap codes from the terminal itself.
6493 * We get them one by one to avoid a very long response string.
6494 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02006495static int xt_index_in = 0;
6496static int xt_index_out = 0;
6497
Bram Moolenaar071d4272004-06-13 20:20:40 +00006498 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006499req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500{
6501 xt_index_out = 0;
6502 xt_index_in = 0;
6503 req_more_codes_from_term();
6504}
6505
6506 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006507req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006508{
6509 char buf[11];
6510 int old_idx = xt_index_out;
6511
6512 /* Don't do anything when going to exit. */
6513 if (exiting)
6514 return;
6515
6516 /* Send up to 10 more requests out than we received. Avoid sending too
6517 * many, there can be a buffer overflow somewhere. */
6518 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
6519 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02006520 char *key_name = key_names[xt_index_out];
Bram Moolenaar2951b772013-07-03 12:45:31 +02006521
Bram Moolenaarb255b902018-04-24 21:40:10 +02006522 LOG_TR(("Requesting XT %d: %s", xt_index_out, key_name));
6523 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524 out_str_nf((char_u *)buf);
6525 ++xt_index_out;
6526 }
6527
6528 /* Send the codes out right away. */
6529 if (xt_index_out != old_idx)
6530 out_flush();
6531}
6532
6533/*
6534 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
6535 * A "0" instead of the "1" indicates a code that isn't supported.
6536 * Both <name> and <string> are encoded in hex.
6537 * "code" points to the "0" or "1".
6538 */
6539 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006540got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541{
6542#define XT_LEN 100
6543 char_u name[3];
6544 char_u str[XT_LEN];
6545 int i;
6546 int j = 0;
6547 int c;
6548
6549 /* A '1' means the code is supported, a '0' means it isn't.
6550 * When half the length is > XT_LEN we can't use it.
6551 * Our names are currently all 2 characters. */
6552 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
6553 {
6554 /* Get the name from the response and find it in the table. */
6555 name[0] = hexhex2nr(code + 3);
6556 name[1] = hexhex2nr(code + 5);
6557 name[2] = NUL;
6558 for (i = 0; key_names[i] != NULL; ++i)
6559 {
6560 if (STRCMP(key_names[i], name) == 0)
6561 {
6562 xt_index_in = i;
6563 break;
6564 }
6565 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02006566
Bram Moolenaarb255b902018-04-24 21:40:10 +02006567 LOG_TR(("Received XT %d: %s", xt_index_in, (char *)name));
6568
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569 if (key_names[i] != NULL)
6570 {
6571 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
6572 str[j++] = c;
6573 str[j] = NUL;
6574 if (name[0] == 'C' && name[1] == 'o')
6575 {
6576 /* Color count is not a key code. */
6577 i = atoi((char *)str);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02006578 may_adjust_color_count(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579 }
6580 else
6581 {
6582 /* First delete any existing entry with the same code. */
6583 i = find_term_bykeys(str);
6584 if (i >= 0)
6585 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006586 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587 }
6588 }
6589 }
6590
6591 /* May request more codes now that we received one. */
6592 ++xt_index_in;
6593 req_more_codes_from_term();
6594}
6595
6596/*
6597 * Check if there are any unanswered requests and deal with them.
6598 * This is called before starting an external program or getting direct
6599 * keyboard input. We don't want responses to be send to that program or
6600 * handled as typed text.
6601 */
6602 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006603check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604{
6605 int c;
6606
6607 /* If no codes requested or all are answered, no need to wait. */
6608 if (xt_index_out == 0 || xt_index_out == xt_index_in)
6609 return;
6610
6611 /* Vgetc() will check for and handle any response.
6612 * Keep calling vpeekc() until we don't get any responses. */
6613 ++no_mapping;
6614 ++allow_keys;
6615 for (;;)
6616 {
6617 c = vpeekc();
6618 if (c == NUL) /* nothing available */
6619 break;
6620
6621 /* If a response is recognized it's replaced with K_IGNORE, must read
6622 * it from the input stream. If there is no K_IGNORE we can't do
6623 * anything, break here (there might be some responses further on, but
6624 * we don't want to throw away any typed chars). */
6625 if (c != K_SPECIAL && c != K_IGNORE)
6626 break;
6627 c = vgetc();
6628 if (c != K_IGNORE)
6629 {
6630 vungetc(c);
6631 break;
6632 }
6633 }
6634 --no_mapping;
6635 --allow_keys;
6636}
6637#endif
6638
6639#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6640/*
6641 * Translate an internal mapping/abbreviation representation into the
6642 * corresponding external one recognized by :map/:abbrev commands;
6643 * respects the current B/k/< settings of 'cpoption'.
6644 *
6645 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaarbfa28242009-06-16 12:31:33 +00006646 * command-line, and for building the "Ambiguous mapping..." error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647 *
6648 * It uses a growarray to build the translation string since the
6649 * latter can be wider than the original description. The caller has to
6650 * free the string afterwards.
6651 *
6652 * Returns NULL when there is a problem.
6653 */
6654 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006655translate_mapping(
6656 char_u *str,
6657 int expmap) /* TRUE when expanding mappings on command-line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658{
6659 garray_T ga;
6660 int c;
6661 int modifiers;
6662 int cpo_bslash;
6663 int cpo_special;
6664 int cpo_keycode;
6665
6666 ga_init(&ga);
6667 ga.ga_itemsize = 1;
6668 ga.ga_growsize = 40;
6669
6670 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
6671 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
6672 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
6673
6674 for (; *str; ++str)
6675 {
6676 c = *str;
6677 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6678 {
6679 modifiers = 0;
6680 if (str[1] == KS_MODIFIER)
6681 {
6682 str++;
6683 modifiers = *++str;
6684 c = *++str;
6685 }
6686 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers)
6687 {
6688 int i;
6689
6690 /* try to find special key in termcodes */
6691 for (i = 0; i < tc_len; ++i)
6692 if (termcodes[i].name[0] == str[1]
6693 && termcodes[i].name[1] == str[2])
6694 break;
6695 if (i < tc_len)
6696 {
6697 ga_concat(&ga, termcodes[i].code);
6698 str += 2;
6699 continue; /* for (str) */
6700 }
6701 }
6702 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6703 {
6704 if (expmap && cpo_special)
6705 {
6706 ga_clear(&ga);
6707 return NULL;
6708 }
6709 c = TO_SPECIAL(str[1], str[2]);
6710 if (c == K_ZERO) /* display <Nul> as ^@ */
6711 c = NUL;
6712 str += 2;
6713 }
6714 if (IS_SPECIAL(c) || modifiers) /* special key */
6715 {
6716 if (expmap && cpo_special)
6717 {
6718 ga_clear(&ga);
6719 return NULL;
6720 }
6721 ga_concat(&ga, get_special_key_name(c, modifiers));
6722 continue; /* for (str) */
6723 }
6724 }
6725 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
6726 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
6727 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
6728 if (c)
6729 ga_append(&ga, c);
6730 }
6731 ga_append(&ga, NUL);
6732 return (char_u *)(ga.ga_data);
6733}
6734#endif
6735
6736#if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
6737static char ksme_str[20];
6738static char ksmr_str[20];
6739static char ksmd_str[20];
6740
6741/*
6742 * For Win32 console: update termcap codes for existing console attributes.
6743 */
6744 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006745update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746{
6747 struct builtin_term *p;
6748
6749 p = find_builtin_term(DEFAULT_TERM);
6750 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
6751 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6752 attr | 0x08); /* FOREGROUND_INTENSITY */
6753 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6754 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
6755
6756 while (p->bt_string != NULL)
6757 {
6758 if (p->bt_entry == (int)KS_ME)
6759 p->bt_string = &ksme_str[0];
6760 else if (p->bt_entry == (int)KS_MR)
6761 p->bt_string = &ksmr_str[0];
6762 else if (p->bt_entry == (int)KS_MD)
6763 p->bt_string = &ksmd_str[0];
6764 ++p;
6765 }
6766}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006767
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006768# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006769# define KSSIZE 20
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006770struct ks_tbl_s
6771{
Bram Moolenaard4f73432018-09-21 12:24:12 +02006772 int code; // value of KS_
6773 char *vtp; // code in vtp mode
6774 char *vtp2; // code in vtp2 mode
6775 char buf[KSSIZE]; // save buffer in non-vtp mode
6776 char vbuf[KSSIZE]; // save buffer in vtp mode
6777 char v2buf[KSSIZE]; // save buffer in vtp2 mode
6778 char arr[KSSIZE]; // real buffer
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006779};
6780
6781static struct ks_tbl_s ks_tbl[] =
6782{
Bram Moolenaard4f73432018-09-21 12:24:12 +02006783 {(int)KS_ME, "\033|0m", "\033|0m"}, // normal
6784 {(int)KS_MR, "\033|7m", "\033|7m"}, // reverse
6785 {(int)KS_MD, "\033|1m", "\033|1m"}, // bold
6786 {(int)KS_SO, "\033|91m", "\033|91m"}, // standout: bright red text
6787 {(int)KS_SE, "\033|39m", "\033|39m"}, // standout end: default color
6788 {(int)KS_CZH, "\033|95m", "\033|95m"}, // italic: bright magenta text
6789 {(int)KS_CZR, "\033|0m", "\033|0m"}, // italic end
6790 {(int)KS_US, "\033|4m", "\033|4m"}, // underscore
6791 {(int)KS_UE, "\033|24m", "\033|24m"}, // underscore end
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006792# ifdef TERMINFO
Bram Moolenaard4f73432018-09-21 12:24:12 +02006793 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm"}, // set background color
6794 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm"}, // set foreground color
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006795# else
Bram Moolenaard4f73432018-09-21 12:24:12 +02006796 {(int)KS_CAB, "\033|%db", "\033|4%dm"}, // set background color
6797 {(int)KS_CAF, "\033|%df", "\033|3%dm"}, // set foreground color
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006798# endif
Bram Moolenaard4f73432018-09-21 12:24:12 +02006799 {(int)KS_CCO, "256", "256"}, // colors
6800 {(int)KS_NAME} // terminator
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006801};
6802
6803 static struct builtin_term *
6804find_first_tcap(
6805 char_u *name,
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006806 int code)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006807{
6808 struct builtin_term *p;
6809
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006810 for (p = find_builtin_term(name); p->bt_string != NULL; ++p)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006811 if (p->bt_entry == code)
6812 return p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006813 return NULL;
6814}
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006815# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006816
6817/*
6818 * For Win32 console: replace the sequence immediately after termguicolors.
6819 */
6820 void
6821swap_tcap(void)
6822{
6823# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006824 static int init_done = FALSE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006825 static int curr_mode;
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006826 struct ks_tbl_s *ks;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006827 struct builtin_term *bt;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006828 int mode;
6829 enum
6830 {
6831 CMODEINDEX,
6832 CMODE24,
6833 CMODE256
6834 };
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006835
6836 /* buffer initialization */
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006837 if (!init_done)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006838 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006839 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006840 {
6841 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006842 if (bt != NULL)
6843 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006844 STRNCPY(ks->buf, bt->bt_string, KSSIZE);
6845 STRNCPY(ks->vbuf, ks->vtp, KSSIZE);
6846 STRNCPY(ks->v2buf, ks->vtp2, KSSIZE);
6847
6848 STRNCPY(ks->arr, bt->bt_string, KSSIZE);
6849 bt->bt_string = &ks->arr[0];
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006850 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006851 }
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006852 init_done = TRUE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006853 curr_mode = CMODEINDEX;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006854 }
6855
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006856 if (p_tgc)
6857 mode = CMODE24;
6858 else if (t_colors >= 256)
6859 mode = CMODE256;
6860 else
6861 mode = CMODEINDEX;
6862
6863 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006864 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006865 bt = find_first_tcap(DEFAULT_TERM, ks->code);
6866 if (bt != NULL)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006867 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006868 switch (curr_mode)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006869 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006870 case CMODEINDEX:
6871 STRNCPY(&ks->buf[0], bt->bt_string, KSSIZE);
6872 break;
6873 case CMODE24:
6874 STRNCPY(&ks->vbuf[0], bt->bt_string, KSSIZE);
6875 break;
6876 default:
6877 STRNCPY(&ks->v2buf[0], bt->bt_string, KSSIZE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006878 }
6879 }
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006880 }
6881
6882 if (mode != curr_mode)
6883 {
6884 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006885 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006886 bt = find_first_tcap(DEFAULT_TERM, ks->code);
6887 if (bt != NULL)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006888 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006889 switch (mode)
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006890 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006891 case CMODEINDEX:
6892 STRNCPY(bt->bt_string, &ks->buf[0], KSSIZE);
6893 break;
6894 case CMODE24:
6895 STRNCPY(bt->bt_string, &ks->vbuf[0], KSSIZE);
6896 break;
6897 default:
6898 STRNCPY(bt->bt_string, &ks->v2buf[0], KSSIZE);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006899 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006900 }
6901 }
6902
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006903 curr_mode = mode;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006904 }
6905# endif
6906}
6907
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908#endif
Bram Moolenaarab302212016-04-26 20:59:29 +02006909
Bram Moolenaar61be73b2016-04-29 22:59:22 +02006910#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaarab302212016-04-26 20:59:29 +02006911 static int
6912hex_digit(int c)
6913{
6914 if (isdigit(c))
6915 return c - '0';
6916 c = TOLOWER_ASC(c);
6917 if (c >= 'a' && c <= 'f')
6918 return c - 'a' + 10;
6919 return 0x1ffffff;
6920}
6921
6922 guicolor_T
6923gui_get_color_cmn(char_u *name)
6924{
Bram Moolenaar28726652017-01-06 18:16:19 +01006925 /* On MS-Windows an RGB macro is available and it produces 0x00bbggrr color
6926 * values as used by the MS-Windows GDI api. It should be used only for
6927 * MS-Windows GDI builds. */
6928# if defined(RGB) && defined(WIN32) && !defined(FEAT_GUI)
6929# undef RGB
6930# endif
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006931# ifndef RGB
6932# define RGB(r, g, b) ((r<<16) | (g<<8) | (b))
6933# endif
6934# define LINE_LEN 100
Bram Moolenaarab302212016-04-26 20:59:29 +02006935 FILE *fd;
6936 char line[LINE_LEN];
6937 char_u *fname;
6938 int r, g, b, i;
6939 guicolor_T color;
6940
6941 struct rgbcolor_table_S {
6942 char_u *color_name;
6943 guicolor_T color;
6944 };
6945
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006946 /* Only non X11 colors (not present in rgb.txt) and colors in
6947 * color_names[], useful when $VIMRUNTIME is not found,. */
Bram Moolenaarab302212016-04-26 20:59:29 +02006948 static struct rgbcolor_table_S rgb_table[] = {
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006949 {(char_u *)"black", RGB(0x00, 0x00, 0x00)},
6950 {(char_u *)"blue", RGB(0x00, 0x00, 0xFF)},
6951 {(char_u *)"brown", RGB(0xA5, 0x2A, 0x2A)},
6952 {(char_u *)"cyan", RGB(0x00, 0xFF, 0xFF)},
6953 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x8B)},
6954 {(char_u *)"darkcyan", RGB(0x00, 0x8B, 0x8B)},
6955 {(char_u *)"darkgray", RGB(0xA9, 0xA9, 0xA9)},
6956 {(char_u *)"darkgreen", RGB(0x00, 0x64, 0x00)},
6957 {(char_u *)"darkgrey", RGB(0xA9, 0xA9, 0xA9)},
6958 {(char_u *)"darkmagenta", RGB(0x8B, 0x00, 0x8B)},
6959 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)},
6960 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, /* No X11 */
6961 {(char_u *)"gray", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006962 {(char_u *)"green", RGB(0x00, 0xFF, 0x00)},
6963 {(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar21477462016-08-08 20:43:27 +02006964 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
Bram Moolenaarecadf432018-03-20 11:17:04 +01006965 {(char_u *)"grey50", RGB(0x7F, 0x7F, 0x7F)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006966 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006967 {(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)},
6968 {(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)},
6969 {(char_u *)"lightgray", RGB(0xD3, 0xD3, 0xD3)},
6970 {(char_u *)"lightgreen", RGB(0x90, 0xEE, 0x90)},
6971 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)},
6972 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, /* No X11 */
6973 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, /* No X11 */
6974 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xE0)},
6975 {(char_u *)"magenta", RGB(0xFF, 0x00, 0xFF)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006976 {(char_u *)"red", RGB(0xFF, 0x00, 0x00)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006977 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006978 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)},
6979 {(char_u *)"yellow", RGB(0xFF, 0xFF, 0x00)},
Bram Moolenaarab302212016-04-26 20:59:29 +02006980 };
6981
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006982 static struct rgbcolor_table_S *colornames_table;
6983 static int size = 0;
Bram Moolenaarab302212016-04-26 20:59:29 +02006984
6985 if (name[0] == '#' && STRLEN(name) == 7)
6986 {
6987 /* Name is in "#rrggbb" format */
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006988 color = RGB(((hex_digit(name[1]) << 4) + hex_digit(name[2])),
Bram Moolenaarab302212016-04-26 20:59:29 +02006989 ((hex_digit(name[3]) << 4) + hex_digit(name[4])),
6990 ((hex_digit(name[5]) << 4) + hex_digit(name[6])));
6991 if (color > 0xffffff)
6992 return INVALCOLOR;
6993 return color;
6994 }
6995
6996 /* Check if the name is one of the colors we know */
6997 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++)
6998 if (STRICMP(name, rgb_table[i].color_name) == 0)
6999 return rgb_table[i].color;
7000
7001 /*
7002 * Last attempt. Look in the file "$VIM/rgb.txt".
7003 */
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007004 if (size == 0)
Bram Moolenaarab302212016-04-26 20:59:29 +02007005 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007006 int counting;
Bram Moolenaarab302212016-04-26 20:59:29 +02007007
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007008 /* colornames_table not yet initialized */
7009 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
7010 if (fname == NULL)
7011 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02007012
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007013 fd = fopen((char *)fname, "rt");
7014 vim_free(fname);
7015 if (fd == NULL)
Bram Moolenaarab302212016-04-26 20:59:29 +02007016 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007017 if (p_verbose > 1)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007018 verb_msg(_("Cannot open $VIMRUNTIME/rgb.txt"));
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007019 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02007020 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007021
7022 for (counting = 1; counting >= 0; --counting)
7023 {
7024 if (!counting)
7025 {
7026 colornames_table = (struct rgbcolor_table_S *)alloc(
7027 (unsigned)(sizeof(struct rgbcolor_table_S) * size));
7028 if (colornames_table == NULL)
7029 {
7030 fclose(fd);
7031 return INVALCOLOR;
7032 }
7033 rewind(fd);
7034 }
7035 size = 0;
7036
7037 while (!feof(fd))
7038 {
7039 size_t len;
7040 int pos;
7041
Bram Moolenaar42335f52018-09-13 15:33:43 +02007042 vim_ignoredp = fgets(line, LINE_LEN, fd);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007043 len = strlen(line);
7044
7045 if (len <= 1 || line[len - 1] != '\n')
7046 continue;
7047
7048 line[len - 1] = '\0';
7049
7050 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
7051 if (i != 3)
7052 continue;
7053
7054 if (!counting)
7055 {
7056 char_u *s = vim_strsave((char_u *)line + pos);
7057
7058 if (s == NULL)
Bram Moolenaar2e45d212016-07-22 22:12:38 +02007059 {
7060 fclose(fd);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007061 return INVALCOLOR;
Bram Moolenaar2e45d212016-07-22 22:12:38 +02007062 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007063 colornames_table[size].color_name = s;
7064 colornames_table[size].color = (guicolor_T)RGB(r, g, b);
7065 }
7066 size++;
7067 }
7068 }
7069 fclose(fd);
Bram Moolenaarab302212016-04-26 20:59:29 +02007070 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02007071
7072 for (i = 0; i < size; i++)
7073 if (STRICMP(name, colornames_table[i].color_name) == 0)
7074 return colornames_table[i].color;
7075
Bram Moolenaarab302212016-04-26 20:59:29 +02007076 return INVALCOLOR;
7077}
Bram Moolenaar26af85d2017-07-23 16:45:10 +02007078
7079 guicolor_T
7080gui_get_rgb_color_cmn(int r, int g, int b)
7081{
7082 guicolor_T color = RGB(r, g, b);
7083
7084 if (color > 0xffffff)
7085 return INVALCOLOR;
7086 return color;
7087}
Bram Moolenaarab302212016-04-26 20:59:29 +02007088#endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007089
7090#if (defined(WIN3264) && !defined(FEAT_GUI_W32)) || defined(FEAT_TERMINAL) \
7091 || defined(PROTO)
7092static int cube_value[] = {
7093 0x00, 0x5F, 0x87, 0xAF, 0xD7, 0xFF
7094};
7095
7096static int grey_ramp[] = {
7097 0x08, 0x12, 0x1C, 0x26, 0x30, 0x3A, 0x44, 0x4E, 0x58, 0x62, 0x6C, 0x76,
7098 0x80, 0x8A, 0x94, 0x9E, 0xA8, 0xB2, 0xBC, 0xC6, 0xD0, 0xDA, 0xE4, 0xEE
7099};
7100
7101# ifdef FEAT_TERMINAL
7102# include "libvterm/include/vterm.h" // for VTERM_ANSI_INDEX_NONE
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007103# else
7104# define VTERM_ANSI_INDEX_NONE 0
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007105# endif
7106
Bram Moolenaar9894e392018-05-05 14:29:06 +02007107static char_u ansi_table[16][4] = {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007108// R G B idx
7109 { 0, 0, 0, 1}, // black
7110 {224, 0, 0, 2}, // dark red
7111 { 0, 224, 0, 3}, // dark green
7112 {224, 224, 0, 4}, // dark yellow / brown
7113 { 0, 0, 224, 5}, // dark blue
7114 {224, 0, 224, 6}, // dark magenta
7115 { 0, 224, 224, 7}, // dark cyan
7116 {224, 224, 224, 8}, // light grey
7117
7118 {128, 128, 128, 9}, // dark grey
7119 {255, 64, 64, 10}, // light red
7120 { 64, 255, 64, 11}, // light green
7121 {255, 255, 64, 12}, // yellow
7122 { 64, 64, 255, 13}, // light blue
7123 {255, 64, 255, 14}, // light magenta
7124 { 64, 255, 255, 15}, // light cyan
7125 {255, 255, 255, 16}, // white
7126};
7127
7128 void
Bram Moolenaar9894e392018-05-05 14:29:06 +02007129cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx)
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007130{
7131 int idx;
7132
7133 if (nr < 16)
7134 {
7135 *r = ansi_table[nr][0];
7136 *g = ansi_table[nr][1];
7137 *b = ansi_table[nr][2];
7138 *ansi_idx = ansi_table[nr][3];
7139 }
7140 else if (nr < 232)
7141 {
7142 /* 216 color cube */
7143 idx = nr - 16;
7144 *r = cube_value[idx / 36 % 6];
7145 *g = cube_value[idx / 6 % 6];
7146 *b = cube_value[idx % 6];
7147 *ansi_idx = VTERM_ANSI_INDEX_NONE;
7148 }
7149 else if (nr < 256)
7150 {
7151 /* 24 grey scale ramp */
7152 idx = nr - 232;
7153 *r = grey_ramp[idx];
7154 *g = grey_ramp[idx];
7155 *b = grey_ramp[idx];
7156 *ansi_idx = VTERM_ANSI_INDEX_NONE;
7157 }
7158 else
7159 {
7160 *r = 0;
7161 *g = 0;
7162 *b = 0;
7163 *ansi_idx = 0;
7164 }
7165}
7166#endif