blob: b2871216924a2e24883286678a032dce5dedca61 [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 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000024#define tgetstr tgetstr_defined_wrong
Bram Moolenaarad3ec762019-04-21 00:00:13 +020025
Bram Moolenaar071d4272004-06-13 20:20:40 +000026#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
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010085static void del_termcode_idx(int idx);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020086static int find_term_bykeys(char_u *src);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010087static int term_is_builtin(char_u *name);
88static int term_7to8bit(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000089
90#ifdef HAVE_TGETENT
Bram Moolenaarf9e3e092019-01-13 23:38:42 +010091static char *tgetent_error(char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +000092
93/*
94 * Here is our own prototype for tgetstr(), any prototypes from the include
95 * files have been disabled by the define at the start of this file.
96 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010097char *tgetstr(char *, char **);
Bram Moolenaar071d4272004-06-13 20:20:40 +000098
99# ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +0200100 /* Change this to "if 1" to debug what happens with termresponse. */
101# if 0
102# define DEBUG_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +0200103static void log_tr(const char *fmt, ...);
104# define LOG_TR(msg) log_tr msg
Bram Moolenaar2951b772013-07-03 12:45:31 +0200105# else
Bram Moolenaarb255b902018-04-24 21:40:10 +0200106# define LOG_TR(msg) do { /**/ } while (0)
Bram Moolenaar2951b772013-07-03 12:45:31 +0200107# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200108
Bram Moolenaarafd78262019-05-10 23:10:31 +0200109typedef enum {
110 STATUS_GET, // send request when switching to RAW mode
111 STATUS_SENT, // did send request, checking for response
112 STATUS_GOT, // received response
113 STATUS_FAIL // timed out
114} request_progress_T;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200115
Bram Moolenaarafd78262019-05-10 23:10:31 +0200116typedef struct {
117 request_progress_T tr_progress;
118 time_t tr_start; // when request was sent, -1 for never
119} termrequest_T;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200120
Bram Moolenaarafd78262019-05-10 23:10:31 +0200121# define TERMREQUEST_INIT {STATUS_GET, -1}
122
123// Request Terminal Version status:
124static termrequest_T crv_status = TERMREQUEST_INIT;
125
126// Request Cursor position report:
127static termrequest_T u7_status = TERMREQUEST_INIT;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200128
Bram Moolenaar9377df32017-10-15 13:22:01 +0200129# ifdef FEAT_TERMINAL
Bram Moolenaarafd78262019-05-10 23:10:31 +0200130// Request foreground color report:
131static termrequest_T rfg_status = TERMREQUEST_INIT;
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200132static int fg_r = 0;
133static int fg_g = 0;
134static int fg_b = 0;
135static int bg_r = 255;
136static int bg_g = 255;
137static int bg_b = 255;
Bram Moolenaar9377df32017-10-15 13:22:01 +0200138# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200139
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200140/* Request background color report: */
Bram Moolenaarafd78262019-05-10 23:10:31 +0200141static termrequest_T rbg_status = TERMREQUEST_INIT;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200142
Bram Moolenaar4db25542017-08-28 22:43:05 +0200143/* Request cursor blinking mode report: */
Bram Moolenaarafd78262019-05-10 23:10:31 +0200144static termrequest_T rbm_status = TERMREQUEST_INIT;
Bram Moolenaar4db25542017-08-28 22:43:05 +0200145
146/* Request cursor style report: */
Bram Moolenaarafd78262019-05-10 23:10:31 +0200147static termrequest_T rcs_status = TERMREQUEST_INIT;
Bram Moolenaar89894aa2018-03-05 22:43:10 +0100148
149/* Request windos position report: */
Bram Moolenaarafd78262019-05-10 23:10:31 +0200150static termrequest_T winpos_status = TERMREQUEST_INIT;
151
152static termrequest_T *all_termrequests[] = {
153 &crv_status,
154 &u7_status,
155# ifdef FEAT_TERMINAL
156 &rfg_status,
157# endif
158 &rbg_status,
159 &rbm_status,
160 &rcs_status,
161 &winpos_status,
162 NULL
163};
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164# endif
165
166/*
167 * Don't declare these variables if termcap.h contains them.
168 * Autoconf checks if these variables should be declared extern (not all
169 * systems have them).
170 * Some versions define ospeed to be speed_t, but that is incompatible with
171 * BSD, where ospeed is short and speed_t is long.
172 */
173# ifndef HAVE_OSPEED
174# ifdef OSPEED_EXTERN
175extern short ospeed;
176# else
177short ospeed;
178# endif
179# endif
180# ifndef HAVE_UP_BC_PC
181# ifdef UP_BC_PC_EXTERN
182extern char *UP, *BC, PC;
183# else
184char *UP, *BC, PC;
185# endif
186# endif
187
188# define TGETSTR(s, p) vim_tgetstr((s), (p))
189# define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100190static char_u *vim_tgetstr(char *s, char_u **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191#endif /* HAVE_TGETENT */
192
193static int detected_8bit = FALSE; /* detected 8-bit terminal */
194
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200195#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200196/* When the cursor shape was detected these values are used:
Bram Moolenaar4db25542017-08-28 22:43:05 +0200197 * 1: block, 2: underline, 3: vertical bar */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200198static int initial_cursor_shape = 0;
Bram Moolenaar4db25542017-08-28 22:43:05 +0200199
200/* The blink flag from the style response may be inverted from the actual
201 * blinking state, xterm XORs the flags. */
202static int initial_cursor_shape_blink = FALSE;
203
204/* The blink flag from the blinking-cursor mode response */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200205static int initial_cursor_blink = FALSE;
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200206#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200207
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000208static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209{
210
211#if defined(FEAT_GUI)
212/*
213 * GUI pseudo term-cap.
214 */
215 {(int)KS_NAME, "gui"},
216 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")},
217 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")},
218# ifdef TERMINFO
219 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")},
220# else
221 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")},
222# endif
223 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")},
224# ifdef TERMINFO
225 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
226 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228# else
229 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
230 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232# endif
233 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")},
234 /* attributes switched on with 'h', off with * 'H' */
235 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */
236 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */
237 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */
238 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */
239 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */
240 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */
241 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000242 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */
243 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200244 {(int)KS_STE, IF_EB("\033|4C", ESC_STR "|4C")}, /* HL_STRIKETHROUGH */
245 {(int)KS_STS, IF_EB("\033|4c", ESC_STR "|4c")}, /* HL_STRIKETHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */
247 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */
248 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
249 {(int)KS_MS, "y"},
250 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100251 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 {(int)KS_LE, "\b"}, /* cursor-left = BS */
253 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */
254# ifdef TERMINFO
255 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")},
256# else
257 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")},
258# endif
259 /* there are no key sequences here, the GUI sequences are recognized
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000260 * in check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261#endif
262
263#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264
265# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
266/*
267 * Amiga console window, default for Amiga
268 */
269 {(int)KS_NAME, "amiga"},
270 {(int)KS_CE, "\033[K"},
271 {(int)KS_CD, "\033[J"},
272 {(int)KS_AL, "\033[L"},
273# ifdef TERMINFO
274 {(int)KS_CAL, "\033[%p1%dL"},
275# else
276 {(int)KS_CAL, "\033[%dL"},
277# endif
278 {(int)KS_DL, "\033[M"},
279# ifdef TERMINFO
280 {(int)KS_CDL, "\033[%p1%dM"},
281# else
282 {(int)KS_CDL, "\033[%dM"},
283# endif
284 {(int)KS_CL, "\014"},
285 {(int)KS_VI, "\033[0 p"},
286 {(int)KS_VE, "\033[1 p"},
287 {(int)KS_ME, "\033[0m"},
288 {(int)KS_MR, "\033[7m"},
289 {(int)KS_MD, "\033[1m"},
290 {(int)KS_SE, "\033[0m"},
291 {(int)KS_SO, "\033[33m"},
292 {(int)KS_US, "\033[4m"},
293 {(int)KS_UE, "\033[0m"},
294 {(int)KS_CZH, "\033[3m"},
295 {(int)KS_CZR, "\033[0m"},
296#if defined(__MORPHOS__) || defined(__AROS__)
297 {(int)KS_CCO, "8"}, /* allow 8 colors */
298# ifdef TERMINFO
299 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
300 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
301# else
302 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
303 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
304# endif
305 {(int)KS_OP, "\033[m"}, /* reset colors */
306#endif
307 {(int)KS_MS, "y"},
308 {(int)KS_UT, "y"}, /* guessed */
309 {(int)KS_LE, "\b"},
310# ifdef TERMINFO
311 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
312# else
313 {(int)KS_CM, "\033[%i%d;%dH"},
314# endif
315#if defined(__MORPHOS__)
316 {(int)KS_SR, "\033M"},
317#endif
318# ifdef TERMINFO
319 {(int)KS_CRI, "\033[%p1%dC"},
320# else
321 {(int)KS_CRI, "\033[%dC"},
322# endif
323 {K_UP, "\233A"},
324 {K_DOWN, "\233B"},
325 {K_LEFT, "\233D"},
326 {K_RIGHT, "\233C"},
327 {K_S_UP, "\233T"},
328 {K_S_DOWN, "\233S"},
329 {K_S_LEFT, "\233 A"},
330 {K_S_RIGHT, "\233 @"},
331 {K_S_TAB, "\233Z"},
332 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */
333 {K_F2, "\233\061~"},
334 {K_F3, "\233\062~"},
335 {K_F4, "\233\063~"},
336 {K_F5, "\233\064~"},
337 {K_F6, "\233\065~"},
338 {K_F7, "\233\066~"},
339 {K_F8, "\233\067~"},
340 {K_F9, "\233\070~"},
341 {K_F10, "\233\071~"},
342 {K_S_F1, "\233\061\060~"},
343 {K_S_F2, "\233\061\061~"},
344 {K_S_F3, "\233\061\062~"},
345 {K_S_F4, "\233\061\063~"},
346 {K_S_F5, "\233\061\064~"},
347 {K_S_F6, "\233\061\065~"},
348 {K_S_F7, "\233\061\066~"},
349 {K_S_F8, "\233\061\067~"},
350 {K_S_F9, "\233\061\070~"},
351 {K_S_F10, "\233\061\071~"},
352 {K_HELP, "\233?~"},
353 {K_INS, "\233\064\060~"}, /* 101 key keyboard */
354 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */
355 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */
356 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */
357 {K_END, "\233\064\065~"}, /* 101 key keyboard */
358
359 {BT_EXTRA_KEYS, ""},
360 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */
361 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */
362 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */
363# endif
364
365# if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
366/*
367 * almost standard ANSI terminal, default for bebox
368 */
369 {(int)KS_NAME, "beos-ansi"},
370 {(int)KS_CE, "\033[K"},
371 {(int)KS_CD, "\033[J"},
372 {(int)KS_AL, "\033[L"},
373# ifdef TERMINFO
374 {(int)KS_CAL, "\033[%p1%dL"},
375# else
376 {(int)KS_CAL, "\033[%dL"},
377# endif
378 {(int)KS_DL, "\033[M"},
379# ifdef TERMINFO
380 {(int)KS_CDL, "\033[%p1%dM"},
381# else
382 {(int)KS_CDL, "\033[%dM"},
383# endif
384#ifdef BEOS_PR_OR_BETTER
385# ifdef TERMINFO
386 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
387# else
388 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */
389# endif
390#endif
391 {(int)KS_CL, "\033[H\033[2J"},
392#ifdef notyet
393 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */
394 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */
395#endif
396 {(int)KS_ME, "\033[m"}, /* normal mode */
397 {(int)KS_MR, "\033[7m"}, /* reverse */
398 {(int)KS_MD, "\033[1m"}, /* bold */
399 {(int)KS_SO, "\033[31m"}, /* standout mode: red */
400 {(int)KS_SE, "\033[m"}, /* standout end */
401 {(int)KS_CZH, "\033[35m"}, /* italic: purple */
402 {(int)KS_CZR, "\033[m"}, /* italic end */
403 {(int)KS_US, "\033[4m"}, /* underscore mode */
404 {(int)KS_UE, "\033[m"}, /* underscore end */
405 {(int)KS_CCO, "8"}, /* allow 8 colors */
406# ifdef TERMINFO
407 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
408 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
409# else
410 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
411 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
412# endif
413 {(int)KS_OP, "\033[m"}, /* reset colors */
414 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */
415 {(int)KS_UT, "y"}, /* guessed */
416 {(int)KS_LE, "\b"},
417# ifdef TERMINFO
418 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
419# else
420 {(int)KS_CM, "\033[%i%d;%dH"},
421# endif
422 {(int)KS_SR, "\033M"},
423# ifdef TERMINFO
424 {(int)KS_CRI, "\033[%p1%dC"},
425# else
426 {(int)KS_CRI, "\033[%dC"},
427# endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200428# if defined(BEOS_DR8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 {(int)KS_DB, ""}, /* hack! see screen.c */
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200430# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431
432 {K_UP, "\033[A"},
433 {K_DOWN, "\033[B"},
434 {K_LEFT, "\033[D"},
435 {K_RIGHT, "\033[C"},
436# endif
437
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200438# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439/*
440 * standard ANSI terminal, default for unix
441 */
442 {(int)KS_NAME, "ansi"},
443 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
444 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
445# ifdef TERMINFO
446 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
447# else
448 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
449# endif
450 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
451# ifdef TERMINFO
452 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
453# else
454 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
455# endif
456 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
457 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
458 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
459 {(int)KS_MS, "y"},
460 {(int)KS_UT, "y"}, /* guessed */
461 {(int)KS_LE, "\b"},
462# ifdef TERMINFO
463 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")},
464# else
465 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
466# endif
467# ifdef TERMINFO
468 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
469# else
470 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
471# endif
472# endif
473
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200474# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475/*
476 * These codes are valid when nansi.sys or equivalent has been installed.
477 * Function keys on a PC are preceded with a NUL. These are converted into
478 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
479 * CTRL-arrow is used instead of SHIFT-arrow.
480 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 {(int)KS_NAME, "pcansi"},
482 {(int)KS_DL, "\033[M"},
483 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 {(int)KS_CE, "\033[K"},
485 {(int)KS_CL, "\033[2J"},
486 {(int)KS_ME, "\033[0m"},
487 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */
488 {(int)KS_MD, "\033[1m"}, /* bold: white text */
489 {(int)KS_SE, "\033[0m"}, /* standout end */
490 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */
491 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */
492 {(int)KS_CZR, "\033[0m"}, /* italic mode end */
493 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */
494 {(int)KS_UE, "\033[0m"}, /* underscore mode end */
495 {(int)KS_CCO, "8"}, /* allow 8 colors */
496# ifdef TERMINFO
497 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
498 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
499# else
500 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
501 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
502# endif
503 {(int)KS_OP, "\033[0m"}, /* reset colors */
504 {(int)KS_MS, "y"},
505 {(int)KS_UT, "y"}, /* guessed */
506 {(int)KS_LE, "\b"},
507# ifdef TERMINFO
508 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
509# else
510 {(int)KS_CM, "\033[%i%d;%dH"},
511# endif
512# ifdef TERMINFO
513 {(int)KS_CRI, "\033[%p1%dC"},
514# else
515 {(int)KS_CRI, "\033[%dC"},
516# endif
517 {K_UP, "\316H"},
518 {K_DOWN, "\316P"},
519 {K_LEFT, "\316K"},
520 {K_RIGHT, "\316M"},
521 {K_S_LEFT, "\316s"},
522 {K_S_RIGHT, "\316t"},
523 {K_F1, "\316;"},
524 {K_F2, "\316<"},
525 {K_F3, "\316="},
526 {K_F4, "\316>"},
527 {K_F5, "\316?"},
528 {K_F6, "\316@"},
529 {K_F7, "\316A"},
530 {K_F8, "\316B"},
531 {K_F9, "\316C"},
532 {K_F10, "\316D"},
533 {K_F11, "\316\205"}, /* guessed */
534 {K_F12, "\316\206"}, /* guessed */
535 {K_S_F1, "\316T"},
536 {K_S_F2, "\316U"},
537 {K_S_F3, "\316V"},
538 {K_S_F4, "\316W"},
539 {K_S_F5, "\316X"},
540 {K_S_F6, "\316Y"},
541 {K_S_F7, "\316Z"},
542 {K_S_F8, "\316["},
543 {K_S_F9, "\316\\"},
544 {K_S_F10, "\316]"},
545 {K_S_F11, "\316\207"}, /* guessed */
546 {K_S_F12, "\316\210"}, /* guessed */
547 {K_INS, "\316R"},
548 {K_DEL, "\316S"},
549 {K_HOME, "\316G"},
550 {K_END, "\316O"},
551 {K_PAGEDOWN, "\316Q"},
552 {K_PAGEUP, "\316I"},
553# endif
554
Bram Moolenaar4f974752019-02-17 17:44:42 +0100555# if defined(MSWIN) || defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556/*
557 * These codes are valid for the Win32 Console . The entries that start with
558 * ESC | are translated into console calls in os_win32.c. The function keys
559 * are also translated in os_win32.c.
560 */
561 {(int)KS_NAME, "win32"},
Bram Moolenaar6982f422019-02-16 16:48:01 +0100562 {(int)KS_CE, "\033|K"}, // clear to end of line
563 {(int)KS_AL, "\033|L"}, // add new blank line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100565 {(int)KS_CAL, "\033|%p1%dL"}, // add number of new blank lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100567 {(int)KS_CAL, "\033|%dL"}, // add number of new blank lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568# endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100569 {(int)KS_DL, "\033|M"}, // delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100571 {(int)KS_CDL, "\033|%p1%dM"}, // delete number of lines
572 {(int)KS_CSV, "\033|%p1%d;%p2%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100574 {(int)KS_CDL, "\033|%dM"}, // delete number of lines
575 {(int)KS_CSV, "\033|%d;%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576# endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100577 {(int)KS_CL, "\033|J"}, // clear screen
578 {(int)KS_CD, "\033|j"}, // clear to end of display
579 {(int)KS_VI, "\033|v"}, // cursor invisible
580 {(int)KS_VE, "\033|V"}, // cursor visible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581
Bram Moolenaar6982f422019-02-16 16:48:01 +0100582 {(int)KS_ME, "\033|0m"}, // normal
583 {(int)KS_MR, "\033|112m"}, // reverse: black on lightgray
584 {(int)KS_MD, "\033|15m"}, // bold: white on black
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585#if 1
Bram Moolenaar6982f422019-02-16 16:48:01 +0100586 {(int)KS_SO, "\033|31m"}, // standout: white on blue
587 {(int)KS_SE, "\033|0m"}, // standout end
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588#else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100589 {(int)KS_SO, "\033|F"}, // standout: high intensity
590 {(int)KS_SE, "\033|f"}, // standout end
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591#endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100592 {(int)KS_CZH, "\033|225m"}, // italic: blue text on yellow
593 {(int)KS_CZR, "\033|0m"}, // italic end
594 {(int)KS_US, "\033|67m"}, // underscore: cyan text on red
595 {(int)KS_UE, "\033|0m"}, // underscore end
596 {(int)KS_CCO, "16"}, // allow 16 colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100598 {(int)KS_CAB, "\033|%p1%db"}, // set background color
599 {(int)KS_CAF, "\033|%p1%df"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100601 {(int)KS_CAB, "\033|%db"}, // set background color
602 {(int)KS_CAF, "\033|%df"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603# endif
604
Bram Moolenaar6982f422019-02-16 16:48:01 +0100605 {(int)KS_MS, "y"}, // save to move cur in reverse mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100607 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 {(int)KS_LE, "\b"},
609# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100610 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"}, // cursor motion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100612 {(int)KS_CM, "\033|%i%d;%dH"}, // cursor motion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613# endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100614 {(int)KS_VB, "\033|B"}, // visual bell
615 {(int)KS_TI, "\033|S"}, // put terminal in termcap mode
616 {(int)KS_TE, "\033|E"}, // out of termcap mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100618 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"}, // scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100620 {(int)KS_CS, "\033|%i%d;%dr"}, // scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100622# ifdef FEAT_TERMGUICOLORS
623 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"},
624 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"},
625# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626
627 {K_UP, "\316H"},
628 {K_DOWN, "\316P"},
629 {K_LEFT, "\316K"},
630 {K_RIGHT, "\316M"},
631 {K_S_UP, "\316\304"},
632 {K_S_DOWN, "\316\317"},
633 {K_S_LEFT, "\316\311"},
634 {K_C_LEFT, "\316s"},
635 {K_S_RIGHT, "\316\313"},
636 {K_C_RIGHT, "\316t"},
637 {K_S_TAB, "\316\017"},
638 {K_F1, "\316;"},
639 {K_F2, "\316<"},
640 {K_F3, "\316="},
641 {K_F4, "\316>"},
642 {K_F5, "\316?"},
643 {K_F6, "\316@"},
644 {K_F7, "\316A"},
645 {K_F8, "\316B"},
646 {K_F9, "\316C"},
647 {K_F10, "\316D"},
648 {K_F11, "\316\205"},
649 {K_F12, "\316\206"},
650 {K_S_F1, "\316T"},
651 {K_S_F2, "\316U"},
652 {K_S_F3, "\316V"},
653 {K_S_F4, "\316W"},
654 {K_S_F5, "\316X"},
655 {K_S_F6, "\316Y"},
656 {K_S_F7, "\316Z"},
657 {K_S_F8, "\316["},
658 {K_S_F9, "\316\\"},
659 {K_S_F10, "\316]"},
660 {K_S_F11, "\316\207"},
661 {K_S_F12, "\316\210"},
662 {K_INS, "\316R"},
663 {K_DEL, "\316S"},
664 {K_HOME, "\316G"},
665 {K_S_HOME, "\316\302"},
666 {K_C_HOME, "\316w"},
667 {K_END, "\316O"},
668 {K_S_END, "\316\315"},
669 {K_C_END, "\316u"},
670 {K_PAGEDOWN, "\316Q"},
671 {K_PAGEUP, "\316I"},
672 {K_KPLUS, "\316N"},
673 {K_KMINUS, "\316J"},
674 {K_KMULTIPLY, "\316\067"},
675 {K_K0, "\316\332"},
676 {K_K1, "\316\336"},
677 {K_K2, "\316\342"},
678 {K_K3, "\316\346"},
679 {K_K4, "\316\352"},
680 {K_K5, "\316\356"},
681 {K_K6, "\316\362"},
682 {K_K7, "\316\366"},
683 {K_K8, "\316\372"},
684 {K_K9, "\316\376"},
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100685 {K_BS, "\316x"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686# endif
687
688# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
689/*
690 * VT320 is working as an ANSI terminal compatible DEC terminal.
691 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 * TODO:- rewrite ESC[ codes to CSI
693 * - keyboard languages (CSI ? 26 n)
694 */
695 {(int)KS_NAME, "vt320"},
696 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
697 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
698# ifdef TERMINFO
699 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
700# else
701 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
702# endif
703 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
704# ifdef TERMINFO
705 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
706# else
707 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
708# endif
709 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000710 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
711 {(int)KS_CCO, "8"}, /* allow 8 colors */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
713 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000714 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */
715 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */
716 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */
717 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */
718 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */
719 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */
720 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */
721 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */
722 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */
723 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 {(int)KS_MS, "y"},
725 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100726 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 {(int)KS_LE, "\b"},
728# ifdef TERMINFO
729 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
730 ESC_STR "[%i%p1%d;%p2%dH")},
731# else
732 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
733# endif
734# ifdef TERMINFO
735 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
736# else
737 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
738# endif
739 {K_UP, IF_EB("\033[A", ESC_STR "[A")},
740 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")},
741 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")},
742 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")},
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200743 // Note: cursor key sequences for application cursor mode are omitted,
744 // because they interfere with typed commands: <Esc>OA.
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000745 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")},
746 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")},
747 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")},
748 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")},
749 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")},
751 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")},
752 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")},
753 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")},
754 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000755 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")},
757 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")},
758 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")},
759 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */
760 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */
761 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")},
762 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")},
763 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")},
764 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")},
765 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")},
766 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")},
767 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")},
768 {K_END, IF_EB("\033[4~", ESC_STR "[4~")},
769 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")},
770 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")},
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200771 // These sequences starting with <Esc> O may interfere with what the user
772 // is typing. Remove these if that bothers you.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */
774 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */
775 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */
776 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */
777 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200778 {K_K0, IF_EB("\033Op", ESC_STR "Op")}, /* keypad 0 */
779 {K_K1, IF_EB("\033Oq", ESC_STR "Oq")}, /* keypad 1 */
780 {K_K2, IF_EB("\033Or", ESC_STR "Or")}, /* keypad 2 */
781 {K_K3, IF_EB("\033Os", ESC_STR "Os")}, /* keypad 3 */
782 {K_K4, IF_EB("\033Ot", ESC_STR "Ot")}, /* keypad 4 */
783 {K_K5, IF_EB("\033Ou", ESC_STR "Ou")}, /* keypad 5 */
784 {K_K6, IF_EB("\033Ov", ESC_STR "Ov")}, /* keypad 6 */
785 {K_K7, IF_EB("\033Ow", ESC_STR "Ow")}, /* keypad 7 */
786 {K_K8, IF_EB("\033Ox", ESC_STR "Ox")}, /* keypad 8 */
787 {K_K9, IF_EB("\033Oy", ESC_STR "Oy")}, /* keypad 9 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */
789# endif
790
791# if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
792/*
793 * Ordinary vt52
794 */
795 {(int)KS_NAME, "vt52"},
796 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")},
797 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100798# ifdef TERMINFO
799 {(int)KS_CM, IF_EB("\033Y%p1%' '%+%c%p2%' '%+%c",
800 ESC_STR "Y%p1%' '%+%c%p2%' '%+%c")},
801# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100803# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 {(int)KS_LE, "\b"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100805 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")},
807 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 {K_UP, IF_EB("\033A", ESC_STR "A")},
809 {K_DOWN, IF_EB("\033B", ESC_STR "B")},
810 {K_LEFT, IF_EB("\033D", ESC_STR "D")},
811 {K_RIGHT, IF_EB("\033C", ESC_STR "C")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100812 {K_F1, IF_EB("\033P", ESC_STR "P")},
813 {K_F2, IF_EB("\033Q", ESC_STR "Q")},
814 {K_F3, IF_EB("\033R", ESC_STR "R")},
815# ifdef __MINT__
816 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")},
817 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")},
818 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")},
819 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")},
820 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 {K_S_UP, IF_EB("\033a", ESC_STR "a")},
822 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")},
823 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")},
824 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 {K_F4, IF_EB("\033S", ESC_STR "S")},
826 {K_F5, IF_EB("\033T", ESC_STR "T")},
827 {K_F6, IF_EB("\033U", ESC_STR "U")},
828 {K_F7, IF_EB("\033V", ESC_STR "V")},
829 {K_F8, IF_EB("\033W", ESC_STR "W")},
830 {K_F9, IF_EB("\033X", ESC_STR "X")},
831 {K_F10, IF_EB("\033Y", ESC_STR "Y")},
832 {K_S_F1, IF_EB("\033p", ESC_STR "p")},
833 {K_S_F2, IF_EB("\033q", ESC_STR "q")},
834 {K_S_F3, IF_EB("\033r", ESC_STR "r")},
835 {K_S_F4, IF_EB("\033s", ESC_STR "s")},
836 {K_S_F5, IF_EB("\033t", ESC_STR "t")},
837 {K_S_F6, IF_EB("\033u", ESC_STR "u")},
838 {K_S_F7, IF_EB("\033v", ESC_STR "v")},
839 {K_S_F8, IF_EB("\033w", ESC_STR "w")},
840 {K_S_F9, IF_EB("\033x", ESC_STR "x")},
841 {K_S_F10, IF_EB("\033y", ESC_STR "y")},
842 {K_INS, IF_EB("\033I", ESC_STR "I")},
843 {K_HOME, IF_EB("\033E", ESC_STR "E")},
844 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")},
845 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")},
846# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 {(int)KS_MS, "y"},
849# endif
850# endif
851
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200852# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200853 {(int)KS_NAME, "xterm"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
855 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
856# ifdef TERMINFO
857 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
858# else
859 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
860# endif
861 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
862# ifdef TERMINFO
863 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
864# else
865 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
866# endif
867# ifdef TERMINFO
868 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr",
869 ESC_STR "[%i%p1%d;%p2%dr")},
870# else
871 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")},
872# endif
873 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
874 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
875 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")},
876 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
877 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")},
878 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")},
879 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200880 {(int)KS_STE, IF_EB("\033[29m", ESC_STR "[29m")},
881 {(int)KS_STS, IF_EB("\033[9m", ESC_STR "[9m")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 {(int)KS_MS, "y"},
883 {(int)KS_UT, "y"},
884 {(int)KS_LE, "\b"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200885 {(int)KS_VI, IF_EB("\033[?25l", ESC_STR "[?25l")},
886 {(int)KS_VE, IF_EB("\033[?25h", ESC_STR "[?25h")},
Bram Moolenaar93c92ef2017-08-19 21:11:57 +0200887 {(int)KS_VS, IF_EB("\033[?12h", ESC_STR "[?12h")},
Bram Moolenaarce1c3272017-08-20 15:05:15 +0200888 {(int)KS_CVS, IF_EB("\033[?12l", ESC_STR "[?12l")},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200889# ifdef TERMINFO
890 {(int)KS_CSH, IF_EB("\033[%p1%d q", ESC_STR "[%p1%d q")},
891# else
892 {(int)KS_CSH, IF_EB("\033[%d q", ESC_STR "[%d q")},
893# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +0200894 {(int)KS_CRC, IF_EB("\033[?12$p", ESC_STR "[?12$p")},
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200895 {(int)KS_CRS, IF_EB("\033P$q q\033\\", ESC_STR "P$q q" ESC_STR "\\")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896# ifdef TERMINFO
897 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
898 ESC_STR "[%i%p1%d;%p2%dH")},
899# else
900 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
901# endif
902 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")},
903# ifdef TERMINFO
904 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
905# else
906 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
907# endif
908 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")},
909 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")},
910# ifdef FEAT_XTERM_SAVE
911 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")},
912 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338",
913 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")},
914# endif
915 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")},
916 {(int)KS_CIE, "\007"},
917 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")},
918 {(int)KS_FS, "\007"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200919 {(int)KS_CSC, IF_EB("\033]12;", ESC_STR "]12;")},
920 {(int)KS_CEC, "\007"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921# ifdef TERMINFO
922 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt",
923 ESC_STR "[8;%p1%d;%p2%dt")},
924 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt",
925 ESC_STR "[3;%p1%d;%p2%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200926 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927# else
928 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")},
929 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200930 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931# endif
932 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200933 {(int)KS_RFG, IF_EB("\033]10;?\007", ESC_STR "]10;?\007")},
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200934 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")},
Bram Moolenaar9584b312013-03-13 19:29:28 +0100935 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")},
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200936# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200937 /* These are printf strings, not terminal codes. */
938 {(int)KS_8F, IF_EB("\033[38;2;%lu;%lu;%lum", ESC_STR "[38;2;%lu;%lu;%lum")},
939 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")},
940# endif
Bram Moolenaarec2da362017-01-21 20:04:22 +0100941 {(int)KS_CBE, IF_EB("\033[?2004h", ESC_STR "[?2004h")},
942 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")},
Bram Moolenaar40385db2018-08-07 22:31:44 +0200943 {(int)KS_CST, IF_EB("\033[22;2t", ESC_STR "[22;2t")},
944 {(int)KS_CRT, IF_EB("\033[23;2t", ESC_STR "[23;2t")},
945 {(int)KS_SSI, IF_EB("\033[22;1t", ESC_STR "[22;1t")},
946 {(int)KS_SRI, IF_EB("\033[23;1t", ESC_STR "[23;1t")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000947
948 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")},
949 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")},
950 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")},
951 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")},
952 /* An extra set of cursor keys for vt100 mode */
953 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")},
954 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")},
955 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")},
956 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 /* An extra set of function keys for vt100 mode */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000958 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")},
959 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")},
960 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")},
961 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000962 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")},
963 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")},
964 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")},
965 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")},
966 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")},
967 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")},
968 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")},
969 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")},
970 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")},
971 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")},
972 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")},
973 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000975 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")},
976 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")},
977 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")},
978 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000979 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */
980 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000981 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000982 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000983 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000984 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000985 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */
986 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000987 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000988 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000989 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000990 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")},
991 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100992 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */
993 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */
994 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */
995 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */
996 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */
997 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200998 {K_K0, IF_EB("\033O*p", ESC_STR "O*p")}, /* keypad 0 */
999 {K_K1, IF_EB("\033O*q", ESC_STR "O*q")}, /* keypad 1 */
1000 {K_K2, IF_EB("\033O*r", ESC_STR "O*r")}, /* keypad 2 */
1001 {K_K3, IF_EB("\033O*s", ESC_STR "O*s")}, /* keypad 3 */
1002 {K_K4, IF_EB("\033O*t", ESC_STR "O*t")}, /* keypad 4 */
1003 {K_K5, IF_EB("\033O*u", ESC_STR "O*u")}, /* keypad 5 */
1004 {K_K6, IF_EB("\033O*v", ESC_STR "O*v")}, /* keypad 6 */
1005 {K_K7, IF_EB("\033O*w", ESC_STR "O*w")}, /* keypad 7 */
1006 {K_K8, IF_EB("\033O*x", ESC_STR "O*x")}, /* keypad 8 */
1007 {K_K9, IF_EB("\033O*y", ESC_STR "O*y")}, /* keypad 9 */
Bram Moolenaarec2da362017-01-21 20:04:22 +01001008 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */
1009 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, /* paste start */
1010 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, /* paste end */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011
1012 {BT_EXTRA_KEYS, ""},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001013 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, /* F0 */
1014 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, /* F13 */
1015 /* F14 and F15 are missing, because they send the same codes as the undo
1016 * and help key, although they don't work on all keyboards. */
1017 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, /* F16 */
1018 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, /* F17 */
1019 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, /* F18 */
1020 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, /* F19 */
1021 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, /* F20 */
1022
1023 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, /* F21 */
1024 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, /* F22 */
1025 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, /* F23 */
1026 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, /* F24 */
1027 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, /* F25 */
1028 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, /* F26 */
1029 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, /* F27 */
1030 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, /* F28 */
1031 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, /* F29 */
1032 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, /* F30 */
1033
1034 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, /* F31 */
1035 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, /* F32 */
1036 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, /* F33 */
1037 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, /* F34 */
1038 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, /* F35 */
1039 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, /* F36 */
1040 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, /* F37 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041# endif
1042
1043# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
1044/*
1045 * iris-ansi for Silicon Graphics machines.
1046 */
1047 {(int)KS_NAME, "iris-ansi"},
1048 {(int)KS_CE, "\033[K"},
1049 {(int)KS_CD, "\033[J"},
1050 {(int)KS_AL, "\033[L"},
1051# ifdef TERMINFO
1052 {(int)KS_CAL, "\033[%p1%dL"},
1053# else
1054 {(int)KS_CAL, "\033[%dL"},
1055# endif
1056 {(int)KS_DL, "\033[M"},
1057# ifdef TERMINFO
1058 {(int)KS_CDL, "\033[%p1%dM"},
1059# else
1060 {(int)KS_CDL, "\033[%dM"},
1061# endif
1062#if 0 /* The scroll region is not working as Vim expects. */
1063# ifdef TERMINFO
1064 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
1065# else
1066 {(int)KS_CS, "\033[%i%d;%dr"},
1067# endif
1068#endif
1069 {(int)KS_CL, "\033[H\033[2J"},
1070 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */
1071 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */
1072 {(int)KS_TI, "\033[=6h"},
1073 {(int)KS_TE, "\033[=6l"},
1074 {(int)KS_SE, "\033[21;27m"},
1075 {(int)KS_SO, "\033[1;7m"},
1076 {(int)KS_ME, "\033[m"},
1077 {(int)KS_MR, "\033[7m"},
1078 {(int)KS_MD, "\033[1m"},
1079 {(int)KS_CCO, "8"}, /* allow 8 colors */
1080 {(int)KS_CZH, "\033[3m"}, /* italic mode on */
1081 {(int)KS_CZR, "\033[23m"}, /* italic mode off */
1082 {(int)KS_US, "\033[4m"}, /* underline on */
1083 {(int)KS_UE, "\033[24m"}, /* underline off */
1084# ifdef TERMINFO
1085 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */
1086 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */
1087 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */
1088 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */
1089# else
1090 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */
1091 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */
1092 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */
1093 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */
1094# endif
1095 {(int)KS_MS, "y"}, /* guessed */
1096 {(int)KS_UT, "y"}, /* guessed */
1097 {(int)KS_LE, "\b"},
1098# ifdef TERMINFO
1099 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1100# else
1101 {(int)KS_CM, "\033[%i%d;%dH"},
1102# endif
1103 {(int)KS_SR, "\033M"},
1104# ifdef TERMINFO
1105 {(int)KS_CRI, "\033[%p1%dC"},
1106# else
1107 {(int)KS_CRI, "\033[%dC"},
1108# endif
1109 {(int)KS_CIS, "\033P3.y"},
1110 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */
1111 {(int)KS_TS, "\033P1.y"},
1112 {(int)KS_FS, "\234"}, /* ST "String Terminator" */
1113# ifdef TERMINFO
1114 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1115 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1116# else
1117 {(int)KS_CWS, "\033[203;%d;%d/y"},
1118 {(int)KS_CWP, "\033[205;%d;%d/y"},
1119# endif
1120 {K_UP, "\033[A"},
1121 {K_DOWN, "\033[B"},
1122 {K_LEFT, "\033[D"},
1123 {K_RIGHT, "\033[C"},
1124 {K_S_UP, "\033[161q"},
1125 {K_S_DOWN, "\033[164q"},
1126 {K_S_LEFT, "\033[158q"},
1127 {K_S_RIGHT, "\033[167q"},
1128 {K_F1, "\033[001q"},
1129 {K_F2, "\033[002q"},
1130 {K_F3, "\033[003q"},
1131 {K_F4, "\033[004q"},
1132 {K_F5, "\033[005q"},
1133 {K_F6, "\033[006q"},
1134 {K_F7, "\033[007q"},
1135 {K_F8, "\033[008q"},
1136 {K_F9, "\033[009q"},
1137 {K_F10, "\033[010q"},
1138 {K_F11, "\033[011q"},
1139 {K_F12, "\033[012q"},
1140 {K_S_F1, "\033[013q"},
1141 {K_S_F2, "\033[014q"},
1142 {K_S_F3, "\033[015q"},
1143 {K_S_F4, "\033[016q"},
1144 {K_S_F5, "\033[017q"},
1145 {K_S_F6, "\033[018q"},
1146 {K_S_F7, "\033[019q"},
1147 {K_S_F8, "\033[020q"},
1148 {K_S_F9, "\033[021q"},
1149 {K_S_F10, "\033[022q"},
1150 {K_S_F11, "\033[023q"},
1151 {K_S_F12, "\033[024q"},
1152 {K_INS, "\033[139q"},
1153 {K_HOME, "\033[H"},
1154 {K_END, "\033[146q"},
1155 {K_PAGEUP, "\033[150q"},
1156 {K_PAGEDOWN, "\033[154q"},
1157# endif
1158
1159# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1160/*
1161 * for debugging
1162 */
1163 {(int)KS_NAME, "debug"},
1164 {(int)KS_CE, "[CE]"},
1165 {(int)KS_CD, "[CD]"},
1166 {(int)KS_AL, "[AL]"},
1167# ifdef TERMINFO
1168 {(int)KS_CAL, "[CAL%p1%d]"},
1169# else
1170 {(int)KS_CAL, "[CAL%d]"},
1171# endif
1172 {(int)KS_DL, "[DL]"},
1173# ifdef TERMINFO
1174 {(int)KS_CDL, "[CDL%p1%d]"},
1175# else
1176 {(int)KS_CDL, "[CDL%d]"},
1177# endif
1178# ifdef TERMINFO
1179 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1180# else
1181 {(int)KS_CS, "[%dCS%d]"},
1182# endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001183# ifdef TERMINFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
Bram Moolenaar4033c552017-09-16 20:54:51 +02001185# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 {(int)KS_CSV, "[%dCSV%d]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187# endif
1188# ifdef TERMINFO
1189 {(int)KS_CAB, "[CAB%p1%d]"},
1190 {(int)KS_CAF, "[CAF%p1%d]"},
1191 {(int)KS_CSB, "[CSB%p1%d]"},
1192 {(int)KS_CSF, "[CSF%p1%d]"},
1193# else
1194 {(int)KS_CAB, "[CAB%d]"},
1195 {(int)KS_CAF, "[CAF%d]"},
1196 {(int)KS_CSB, "[CSB%d]"},
1197 {(int)KS_CSF, "[CSF%d]"},
1198# endif
1199 {(int)KS_OP, "[OP]"},
1200 {(int)KS_LE, "[LE]"},
1201 {(int)KS_CL, "[CL]"},
1202 {(int)KS_VI, "[VI]"},
1203 {(int)KS_VE, "[VE]"},
1204 {(int)KS_VS, "[VS]"},
1205 {(int)KS_ME, "[ME]"},
1206 {(int)KS_MR, "[MR]"},
1207 {(int)KS_MB, "[MB]"},
1208 {(int)KS_MD, "[MD]"},
1209 {(int)KS_SE, "[SE]"},
1210 {(int)KS_SO, "[SO]"},
1211 {(int)KS_UE, "[UE]"},
1212 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001213 {(int)KS_UCE, "[UCE]"},
1214 {(int)KS_UCS, "[UCS]"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001215 {(int)KS_STE, "[STE]"},
1216 {(int)KS_STS, "[STS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 {(int)KS_MS, "[MS]"},
1218 {(int)KS_UT, "[UT]"},
Bram Moolenaar494838a2015-02-10 19:20:37 +01001219 {(int)KS_XN, "[XN]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220# ifdef TERMINFO
1221 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1222# else
1223 {(int)KS_CM, "[%dCM%d]"},
1224# endif
1225 {(int)KS_SR, "[SR]"},
1226# ifdef TERMINFO
1227 {(int)KS_CRI, "[CRI%p1%d]"},
1228# else
1229 {(int)KS_CRI, "[CRI%d]"},
1230# endif
1231 {(int)KS_VB, "[VB]"},
1232 {(int)KS_KS, "[KS]"},
1233 {(int)KS_KE, "[KE]"},
1234 {(int)KS_TI, "[TI]"},
1235 {(int)KS_TE, "[TE]"},
1236 {(int)KS_CIS, "[CIS]"},
1237 {(int)KS_CIE, "[CIE]"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001238 {(int)KS_CSC, "[CSC]"},
1239 {(int)KS_CEC, "[CEC]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 {(int)KS_TS, "[TS]"},
1241 {(int)KS_FS, "[FS]"},
1242# ifdef TERMINFO
1243 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1244 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1245# else
1246 {(int)KS_CWS, "[%dCWS%d]"},
1247 {(int)KS_CWP, "[%dCWP%d]"},
1248# endif
1249 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001250 {(int)KS_U7, "[U7]"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001251 {(int)KS_RFG, "[RFG]"},
Bram Moolenaarb5c32652015-06-25 17:03:36 +02001252 {(int)KS_RBG, "[RBG]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 {K_UP, "[KU]"},
1254 {K_DOWN, "[KD]"},
1255 {K_LEFT, "[KL]"},
1256 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001257 {K_XUP, "[xKU]"},
1258 {K_XDOWN, "[xKD]"},
1259 {K_XLEFT, "[xKL]"},
1260 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 {K_S_UP, "[S-KU]"},
1262 {K_S_DOWN, "[S-KD]"},
1263 {K_S_LEFT, "[S-KL]"},
1264 {K_C_LEFT, "[C-KL]"},
1265 {K_S_RIGHT, "[S-KR]"},
1266 {K_C_RIGHT, "[C-KR]"},
1267 {K_F1, "[F1]"},
1268 {K_XF1, "[xF1]"},
1269 {K_F2, "[F2]"},
1270 {K_XF2, "[xF2]"},
1271 {K_F3, "[F3]"},
1272 {K_XF3, "[xF3]"},
1273 {K_F4, "[F4]"},
1274 {K_XF4, "[xF4]"},
1275 {K_F5, "[F5]"},
1276 {K_F6, "[F6]"},
1277 {K_F7, "[F7]"},
1278 {K_F8, "[F8]"},
1279 {K_F9, "[F9]"},
1280 {K_F10, "[F10]"},
1281 {K_F11, "[F11]"},
1282 {K_F12, "[F12]"},
1283 {K_S_F1, "[S-F1]"},
1284 {K_S_XF1, "[S-xF1]"},
1285 {K_S_F2, "[S-F2]"},
1286 {K_S_XF2, "[S-xF2]"},
1287 {K_S_F3, "[S-F3]"},
1288 {K_S_XF3, "[S-xF3]"},
1289 {K_S_F4, "[S-F4]"},
1290 {K_S_XF4, "[S-xF4]"},
1291 {K_S_F5, "[S-F5]"},
1292 {K_S_F6, "[S-F6]"},
1293 {K_S_F7, "[S-F7]"},
1294 {K_S_F8, "[S-F8]"},
1295 {K_S_F9, "[S-F9]"},
1296 {K_S_F10, "[S-F10]"},
1297 {K_S_F11, "[S-F11]"},
1298 {K_S_F12, "[S-F12]"},
1299 {K_HELP, "[HELP]"},
1300 {K_UNDO, "[UNDO]"},
1301 {K_BS, "[BS]"},
1302 {K_INS, "[INS]"},
1303 {K_KINS, "[KINS]"},
1304 {K_DEL, "[DEL]"},
1305 {K_KDEL, "[KDEL]"},
1306 {K_HOME, "[HOME]"},
1307 {K_S_HOME, "[C-HOME]"},
1308 {K_C_HOME, "[C-HOME]"},
1309 {K_KHOME, "[KHOME]"},
1310 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001311 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 {K_END, "[END]"},
1313 {K_S_END, "[C-END]"},
1314 {K_C_END, "[C-END]"},
1315 {K_KEND, "[KEND]"},
1316 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001317 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 {K_PAGEUP, "[PAGEUP]"},
1319 {K_PAGEDOWN, "[PAGEDOWN]"},
1320 {K_KPAGEUP, "[KPAGEUP]"},
1321 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1322 {K_MOUSE, "[MOUSE]"},
1323 {K_KPLUS, "[KPLUS]"},
1324 {K_KMINUS, "[KMINUS]"},
1325 {K_KDIVIDE, "[KDIVIDE]"},
1326 {K_KMULTIPLY, "[KMULTIPLY]"},
1327 {K_KENTER, "[KENTER]"},
1328 {K_KPOINT, "[KPOINT]"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001329 {K_PS, "[PASTE-START]"},
1330 {K_PE, "[PASTE-END]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 {K_K0, "[K0]"},
1332 {K_K1, "[K1]"},
1333 {K_K2, "[K2]"},
1334 {K_K3, "[K3]"},
1335 {K_K4, "[K4]"},
1336 {K_K5, "[K5]"},
1337 {K_K6, "[K6]"},
1338 {K_K7, "[K7]"},
1339 {K_K8, "[K8]"},
1340 {K_K9, "[K9]"},
1341# endif
1342
1343#endif /* NO_BUILTIN_TCAPS */
1344
1345/*
1346 * The most minimal terminal: only clear screen and cursor positioning
1347 * Always included.
1348 */
1349 {(int)KS_NAME, "dumb"},
1350 {(int)KS_CL, "\014"},
1351#ifdef TERMINFO
1352 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
1353 ESC_STR "[%i%p1%d;%p2%dH")},
1354#else
1355 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
1356#endif
1357
1358/*
1359 * end marker
1360 */
1361 {(int)KS_NAME, NULL}
1362
1363}; /* end of builtin_termcaps */
1364
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001365#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001366 static guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001367termgui_mch_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001368{
Bram Moolenaarab302212016-04-26 20:59:29 +02001369 return gui_get_color_cmn(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001370}
1371
1372 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001373termgui_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001374{
1375 guicolor_T t;
1376
1377 if (*name == NUL)
1378 return INVALCOLOR;
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001379 t = termgui_mch_get_color(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001380
1381 if (t == INVALCOLOR)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001382 semsg(_("E254: Cannot allocate color %s"), name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001383 return t;
1384}
1385
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001386 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001387termgui_mch_get_rgb(guicolor_T color)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001388{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001389 return color;
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001390}
1391#endif
1392
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393/*
1394 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1395 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396#ifdef AMIGA
1397# define DEFAULT_TERM (char_u *)"amiga"
1398#endif
1399
1400#ifdef MSWIN
1401# define DEFAULT_TERM (char_u *)"win32"
1402#endif
1403
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404#if defined(UNIX) && !defined(__MINT__)
1405# define DEFAULT_TERM (char_u *)"ansi"
1406#endif
1407
1408#ifdef __MINT__
1409# define DEFAULT_TERM (char_u *)"vt52"
1410#endif
1411
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412#ifdef VMS
1413# define DEFAULT_TERM (char_u *)"vt320"
1414#endif
1415
1416#ifdef __BEOS__
1417# undef DEFAULT_TERM
1418# define DEFAULT_TERM (char_u *)"beos-ansi"
1419#endif
1420
1421#ifndef DEFAULT_TERM
1422# define DEFAULT_TERM (char_u *)"dumb"
1423#endif
1424
1425/*
1426 * Term_strings contains currently used terminal output strings.
1427 * It is initialized with the default values by parse_builtin_tcap().
1428 * The values can be changed by setting the option with the same name.
1429 */
1430char_u *(term_strings[(int)KS_LAST + 1]);
1431
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001432static int need_gather = FALSE; /* need to fill termleader[] */
1433static char_u termleader[256 + 1]; /* for check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434#ifdef FEAT_TERMRESPONSE
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001435static int check_for_codes = FALSE; /* check for key code response */
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02001436static int is_not_xterm = FALSE; /* recognized not-really-xterm */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437#endif
1438
1439 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001440find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441{
1442 struct builtin_term *p;
1443
1444 p = builtin_termcaps;
1445 while (p->bt_string != NULL)
1446 {
1447 if (p->bt_entry == (int)KS_NAME)
1448 {
1449#ifdef UNIX
1450 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1451 return p;
1452 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1453 return p;
1454 else
1455#endif
1456#ifdef VMS
1457 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1458 return p;
1459 else
1460#endif
1461 if (STRCMP(term, p->bt_string) == 0)
1462 return p;
1463 }
1464 ++p;
1465 }
1466 return p;
1467}
1468
1469/*
1470 * Parsing of the builtin termcap entries.
1471 * Caller should check if 'name' is a valid builtin term.
1472 * The terminal's name is not set, as this is already done in termcapinit().
1473 */
1474 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001475parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476{
1477 struct builtin_term *p;
1478 char_u name[2];
1479 int term_8bit;
1480
1481 p = find_builtin_term(term);
1482 term_8bit = term_is_8bit(term);
1483
1484 /* Do not parse if builtin term not found */
1485 if (p->bt_string == NULL)
1486 return;
1487
1488 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1489 {
1490 if ((int)p->bt_entry >= 0) /* KS_xx entry */
1491 {
1492 /* Only set the value if it wasn't set yet. */
1493 if (term_strings[p->bt_entry] == NULL
1494 || term_strings[p->bt_entry] == empty_option)
1495 {
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001496#ifdef FEAT_EVAL
1497 int opt_idx = -1;
1498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 /* 8bit terminal: use CSI instead of <Esc>[ */
1500 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1501 {
1502 char_u *s, *t;
1503
1504 s = vim_strsave((char_u *)p->bt_string);
1505 if (s != NULL)
1506 {
1507 for (t = s; *t; ++t)
1508 if (term_7to8bit(t))
1509 {
1510 *t = term_7to8bit(t);
Bram Moolenaar18085fa2018-07-10 17:33:45 +02001511 STRMOVE(t + 1, t + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 }
1513 term_strings[p->bt_entry] = s;
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001514#ifdef FEAT_EVAL
1515 opt_idx =
1516#endif
1517 set_term_option_alloced(
1518 &term_strings[p->bt_entry]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 }
1520 }
1521 else
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001522 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 term_strings[p->bt_entry] = (char_u *)p->bt_string;
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001524#ifdef FEAT_EVAL
1525 opt_idx = get_term_opt_idx(&term_strings[p->bt_entry]);
1526#endif
1527 }
1528#ifdef FEAT_EVAL
1529 set_term_option_sctx_idx(NULL, opt_idx);
1530#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 }
1532 }
1533 else
1534 {
1535 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1536 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1537 if (find_termcode(name) == NULL)
1538 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1539 }
1540 }
1541}
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001542
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543/*
1544 * Set number of colors.
1545 * Store it as a number in t_colors.
1546 * Store it as a string in T_CCO (using nr_colors[]).
1547 */
1548 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001549set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550{
1551 char_u nr_colors[20]; /* string for number of colors */
1552
1553 t_colors = nr;
1554 if (t_colors > 1)
1555 sprintf((char *)nr_colors, "%d", t_colors);
1556 else
1557 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001558 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559}
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001560
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001561#if defined(FEAT_TERMRESPONSE)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001562/*
1563 * Set the color count to "val" and redraw if it changed.
1564 */
1565 static void
1566may_adjust_color_count(int val)
1567{
1568 if (val != t_colors)
1569 {
1570 /* Nr of colors changed, initialize highlighting and
1571 * redraw everything. This causes a redraw, which usually
1572 * clears the message. Try keeping the message if it
1573 * might work. */
1574 set_keep_msg_from_hist();
1575 set_color_count(val);
1576 init_highlight(TRUE, FALSE);
1577# ifdef DEBUG_TERMRESPONSE
1578 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02001579 int r = redraw_asap(CLEAR);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001580
Bram Moolenaarb255b902018-04-24 21:40:10 +02001581 log_tr("Received t_Co, redraw_asap(): %d", r);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001582 }
Bram Moolenaarb255b902018-04-24 21:40:10 +02001583#else
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001584 redraw_asap(CLEAR);
Bram Moolenaarb255b902018-04-24 21:40:10 +02001585#endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001586 }
1587}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588#endif
1589
1590#ifdef HAVE_TGETENT
1591static char *(key_names[]) =
1592{
1593#ifdef FEAT_TERMRESPONSE
1594 /* Do this one first, it may cause a screen redraw. */
1595 "Co",
1596#endif
1597 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 "#2", "#4", "%i", "*7",
1599 "k1", "k2", "k3", "k4", "k5", "k6",
1600 "k7", "k8", "k9", "k;", "F1", "F2",
1601 "%1", "&8", "kb", "kI", "kD", "kh",
1602 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1603 NULL
1604};
1605#endif
1606
Bram Moolenaar9289df52018-05-10 14:40:57 +02001607#ifdef HAVE_TGETENT
Bram Moolenaar69e05692018-05-10 14:11:52 +02001608 static void
1609get_term_entries(int *height, int *width)
1610{
1611 static struct {
1612 enum SpecialKey dest; /* index in term_strings[] */
1613 char *name; /* termcap name for string */
1614 } string_names[] =
1615 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1616 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1617 {KS_CL, "cl"}, {KS_CD, "cd"},
1618 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
1619 {KS_ME, "me"}, {KS_MR, "mr"},
1620 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1621 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
1622 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
1623 {KS_STE,"Te"}, {KS_STS,"Ts"},
1624 {KS_CM, "cm"}, {KS_SR, "sr"},
1625 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1626 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
Bram Moolenaar171a9212019-10-12 21:08:59 +02001627 {KS_CTI, "TI"}, {KS_CTE, "TE"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001628 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
1629 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
1630 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
1631 {KS_VS, "vs"}, {KS_CVS, "VS"},
1632 {KS_CIS, "IS"}, {KS_CIE, "IE"},
1633 {KS_CSC, "SC"}, {KS_CEC, "EC"},
1634 {KS_TS, "ts"}, {KS_FS, "fs"},
1635 {KS_CWP, "WP"}, {KS_CWS, "WS"},
1636 {KS_CSI, "SI"}, {KS_CEI, "EI"},
1637 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"},
1638 {KS_8F, "8f"}, {KS_8B, "8b"},
1639 {KS_CBE, "BE"}, {KS_CBD, "BD"},
1640 {KS_CPS, "PS"}, {KS_CPE, "PE"},
Bram Moolenaar40385db2018-08-07 22:31:44 +02001641 {KS_CST, "ST"}, {KS_CRT, "RT"},
1642 {KS_SSI, "Si"}, {KS_SRI, "Ri"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001643 {(enum SpecialKey)0, NULL}
1644 };
1645 int i;
1646 char_u *p;
1647 static char_u tstrbuf[TBUFSZ];
1648 char_u *tp = tstrbuf;
1649
1650 /*
1651 * get output strings
1652 */
1653 for (i = 0; string_names[i].name != NULL; ++i)
1654 {
1655 if (TERM_STR(string_names[i].dest) == NULL
1656 || TERM_STR(string_names[i].dest) == empty_option)
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001657 {
Bram Moolenaar69e05692018-05-10 14:11:52 +02001658 TERM_STR(string_names[i].dest) = TGETSTR(string_names[i].name, &tp);
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001659#ifdef FEAT_EVAL
1660 set_term_option_sctx_idx(string_names[i].name, -1);
1661#endif
1662 }
Bram Moolenaar69e05692018-05-10 14:11:52 +02001663 }
1664
1665 /* tgetflag() returns 1 if the flag is present, 0 if not and
1666 * possibly -1 if the flag doesn't exist. */
1667 if ((T_MS == NULL || T_MS == empty_option) && tgetflag("ms") > 0)
1668 T_MS = (char_u *)"y";
1669 if ((T_XS == NULL || T_XS == empty_option) && tgetflag("xs") > 0)
1670 T_XS = (char_u *)"y";
1671 if ((T_XN == NULL || T_XN == empty_option) && tgetflag("xn") > 0)
1672 T_XN = (char_u *)"y";
1673 if ((T_DB == NULL || T_DB == empty_option) && tgetflag("db") > 0)
1674 T_DB = (char_u *)"y";
1675 if ((T_DA == NULL || T_DA == empty_option) && tgetflag("da") > 0)
1676 T_DA = (char_u *)"y";
1677 if ((T_UT == NULL || T_UT == empty_option) && tgetflag("ut") > 0)
1678 T_UT = (char_u *)"y";
1679
1680 /*
1681 * get key codes
1682 */
1683 for (i = 0; key_names[i] != NULL; ++i)
1684 if (find_termcode((char_u *)key_names[i]) == NULL)
1685 {
1686 p = TGETSTR(key_names[i], &tp);
1687 /* if cursor-left == backspace, ignore it (televideo 925) */
1688 if (p != NULL
1689 && (*p != Ctrl_H
1690 || key_names[i][0] != 'k'
1691 || key_names[i][1] != 'l'))
1692 add_termcode((char_u *)key_names[i], p, FALSE);
1693 }
1694
1695 if (*height == 0)
1696 *height = tgetnum("li");
1697 if (*width == 0)
1698 *width = tgetnum("co");
1699
1700 /*
1701 * Get number of colors (if not done already).
1702 */
1703 if (TERM_STR(KS_CCO) == NULL || TERM_STR(KS_CCO) == empty_option)
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001704 {
Bram Moolenaar69e05692018-05-10 14:11:52 +02001705 set_color_count(tgetnum("Co"));
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001706#ifdef FEAT_EVAL
1707 set_term_option_sctx_idx("Co", -1);
1708#endif
1709 }
Bram Moolenaar69e05692018-05-10 14:11:52 +02001710
1711# ifndef hpux
1712 BC = (char *)TGETSTR("bc", &tp);
1713 UP = (char *)TGETSTR("up", &tp);
1714 p = TGETSTR("pc", &tp);
1715 if (p)
1716 PC = *p;
1717# endif
1718}
Bram Moolenaar9289df52018-05-10 14:40:57 +02001719#endif
Bram Moolenaar69e05692018-05-10 14:11:52 +02001720
1721 static void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001722report_term_error(char *error_msg, char_u *term)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001723{
1724 struct builtin_term *termp;
1725
1726 mch_errmsg("\r\n");
1727 if (error_msg != NULL)
1728 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001729 mch_errmsg(error_msg);
Bram Moolenaar69e05692018-05-10 14:11:52 +02001730 mch_errmsg("\r\n");
1731 }
1732 mch_errmsg("'");
1733 mch_errmsg((char *)term);
1734 mch_errmsg(_("' not known. Available builtin terminals are:"));
1735 mch_errmsg("\r\n");
1736 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL; ++termp)
1737 {
1738 if (termp->bt_entry == (int)KS_NAME)
1739 {
1740#ifdef HAVE_TGETENT
1741 mch_errmsg(" builtin_");
1742#else
1743 mch_errmsg(" ");
1744#endif
1745 mch_errmsg(termp->bt_string);
1746 mch_errmsg("\r\n");
1747 }
1748 }
1749}
1750
1751 static void
1752report_default_term(char_u *term)
1753{
1754 mch_errmsg(_("defaulting to '"));
1755 mch_errmsg((char *)term);
1756 mch_errmsg("'\r\n");
1757 if (emsg_silent == 0)
1758 {
1759 screen_start(); /* don't know where cursor is now */
1760 out_flush();
1761 if (!is_not_a_term())
1762 ui_delay(2000L, TRUE);
1763 }
1764}
1765
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766/*
1767 * Set terminal options for terminal "term".
1768 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1769 *
1770 * While doing this, until ttest(), some options may be NULL, be careful.
1771 */
1772 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001773set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774{
1775 struct builtin_term *termp;
1776#ifdef HAVE_TGETENT
1777 int builtin_first = p_tbi;
1778 int try;
1779 int termcap_cleared = FALSE;
1780#endif
1781 int width = 0, height = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001782 char *error_msg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 char_u *bs_p, *del_p;
1784
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001785 /* In silect mode (ex -s) we don't use the 'term' option. */
1786 if (silent_mode)
1787 return OK;
1788
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 detected_8bit = FALSE; /* reset 8-bit detection */
1790
1791 if (term_is_builtin(term))
1792 {
1793 term += 8;
1794#ifdef HAVE_TGETENT
1795 builtin_first = 1;
1796#endif
1797 }
1798
1799/*
1800 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1801 * If builtin_first is TRUE:
1802 * 0. try builtin termcap
1803 * 1. try external termcap
1804 * 2. if both fail default to a builtin terminal
1805 * If builtin_first is FALSE:
1806 * 1. try external termcap
1807 * 2. try builtin termcap, if both fail default to a builtin terminal
1808 */
1809#ifdef HAVE_TGETENT
1810 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1811 {
1812 /*
1813 * Use external termcap
1814 */
1815 if (try == 1)
1816 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 char_u tbuf[TBUFSZ];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818
1819 /*
1820 * If the external termcap does not have a matching entry, try the
1821 * builtin ones.
1822 */
1823 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1824 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 if (!termcap_cleared)
1826 {
1827 clear_termoptions(); /* clear old options */
1828 termcap_cleared = TRUE;
1829 }
1830
Bram Moolenaar69e05692018-05-10 14:11:52 +02001831 get_term_entries(&height, &width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 }
1833 }
1834 else /* try == 0 || try == 2 */
1835#endif /* HAVE_TGETENT */
1836 /*
1837 * Use builtin termcap
1838 */
1839 {
1840#ifdef HAVE_TGETENT
1841 /*
1842 * If builtin termcap was already used, there is no need to search
1843 * for the builtin termcap again, quit now.
1844 */
1845 if (try == 2 && builtin_first && termcap_cleared)
1846 break;
1847#endif
1848 /*
1849 * search for 'term' in builtin_termcaps[]
1850 */
1851 termp = find_builtin_term(term);
1852 if (termp->bt_string == NULL) /* did not find it */
1853 {
1854#ifdef HAVE_TGETENT
1855 /*
1856 * If try == 0, first try the external termcap. If that is not
1857 * found we'll get back here with try == 2.
1858 * If termcap_cleared is set we used the external termcap,
1859 * don't complain about not finding the term in the builtin
1860 * termcap.
1861 */
1862 if (try == 0) /* try external one */
1863 continue;
1864 if (termcap_cleared) /* found in external termcap */
1865 break;
1866#endif
Bram Moolenaar69e05692018-05-10 14:11:52 +02001867 report_term_error(error_msg, term);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 /* when user typed :set term=xxx, quit here */
1870 if (starting != NO_SCREEN)
1871 {
1872 screen_start(); /* don't know where cursor is now */
1873 wait_return(TRUE);
1874 return FAIL;
1875 }
1876 term = DEFAULT_TERM;
Bram Moolenaar69e05692018-05-10 14:11:52 +02001877 report_default_term(term);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001878 set_string_option_direct((char_u *)"term", -1, term,
1879 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 display_errors();
1881 }
1882 out_flush();
1883#ifdef HAVE_TGETENT
1884 if (!termcap_cleared)
1885 {
1886#endif
1887 clear_termoptions(); /* clear old options */
1888#ifdef HAVE_TGETENT
1889 termcap_cleared = TRUE;
1890 }
1891#endif
1892 parse_builtin_tcap(term);
1893#ifdef FEAT_GUI
1894 if (term_is_gui(term))
1895 {
1896 out_flush();
1897 gui_init();
1898 /* If starting the GUI failed, don't do any of the other
1899 * things for this terminal */
1900 if (!gui.in_use)
1901 return FAIL;
1902#ifdef HAVE_TGETENT
1903 break; /* don't try using external termcap */
1904#endif
1905 }
1906#endif /* FEAT_GUI */
1907 }
1908#ifdef HAVE_TGETENT
1909 }
1910#endif
1911
1912/*
1913 * special: There is no info in the termcap about whether the cursor
1914 * positioning is relative to the start of the screen or to the start of the
1915 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1916 * relative.
1917 */
1918 if (STRCMP(term, "pcterm") == 0)
1919 T_CCS = (char_u *)"yes";
1920 else
1921 T_CCS = empty_option;
1922
1923#ifdef UNIX
1924/*
1925 * Any "stty" settings override the default for t_kb from the termcap.
1926 * This is in os_unix.c, because it depends a lot on the version of unix that
1927 * is being used.
1928 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1929 */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001930# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 if (!gui.in_use)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001932# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 get_stty();
1934#endif
1935
1936/*
1937 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1938 * didn't work, use the default CTRL-H
1939 * The default for t_kD is DEL, unless t_kb is DEL.
1940 * The vim_strsave'd strings are probably lost forever, well it's only two
1941 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1942 * directly.
1943 */
1944#ifdef FEAT_GUI
1945 if (!gui.in_use)
1946#endif
1947 {
1948 bs_p = find_termcode((char_u *)"kb");
1949 del_p = find_termcode((char_u *)"kD");
1950 if (bs_p == NULL || *bs_p == NUL)
1951 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1952 if ((del_p == NULL || *del_p == NUL) &&
1953 (bs_p == NULL || *bs_p != DEL))
1954 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
1955 }
1956
1957#if defined(UNIX) || defined(VMS)
1958 term_is_xterm = vim_is_xterm(term);
1959#endif
Bram Moolenaar3cea8a92019-10-17 21:55:24 +02001960 is_not_xterm = FALSE;
1961 is_mac_terminal = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962
1963#ifdef FEAT_MOUSE
1964# if defined(UNIX) || defined(VMS)
1965# ifdef FEAT_MOUSE_TTY
1966 /*
1967 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1968 * The termcode for the mouse is added as a side effect in option.c.
1969 */
1970 {
Bram Moolenaar6d006f92017-06-23 22:35:34 +02001971 char_u *p = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00001974 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 {
1976 if (use_xterm_mouse())
1977 p = NULL; /* keep existing value, might be "xterm2" */
1978 else
1979 p = (char_u *)"xterm";
1980 }
1981# endif
1982 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001983 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001985 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
1986 * "xterm2" in check_termcode(). */
1987 reset_option_was_set((char_u *)"ttym");
1988 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 if (p == NULL
1990# ifdef FEAT_GUI
1991 || gui.in_use
1992# endif
1993 )
1994 check_mouse_termcode(); /* set mouse termcode anyway */
1995 }
1996# endif
1997# else
1998 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
1999# endif
2000#endif /* FEAT_MOUSE */
2001
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002#ifdef USE_TERM_CONSOLE
2003 /* DEFAULT_TERM indicates that it is the machine console. */
2004 if (STRCMP(term, DEFAULT_TERM) != 0)
2005 term_console = FALSE;
2006 else
2007 {
2008 term_console = TRUE;
2009# ifdef AMIGA
2010 win_resize_on(); /* enable window resizing reports */
2011# endif
2012 }
2013#endif
2014
2015#if defined(UNIX) || defined(VMS)
2016 /*
2017 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
2018 */
2019 if (vim_is_fastterm(term))
2020 p_tf = TRUE;
2021#endif
2022#ifdef USE_TERM_CONSOLE
2023 /*
2024 * 'ttyfast' is default on consoles
2025 */
2026 if (term_console)
2027 p_tf = TRUE;
2028#endif
2029
2030 ttest(TRUE); /* make sure we have a valid set of terminal codes */
2031
2032 full_screen = TRUE; /* we can use termcap codes from now on */
2033 set_term_defaults(); /* use current values as defaults */
2034#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02002035 LOG_TR(("setting crv_status to STATUS_GET"));
Bram Moolenaarafd78262019-05-10 23:10:31 +02002036 crv_status.tr_progress = STATUS_GET; // Get terminal version later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037#endif
2038
2039 /*
2040 * Initialize the terminal with the appropriate termcap codes.
2041 * Set the mouse and window title if possible.
2042 * Don't do this when starting, need to parse the .vimrc first, because it
2043 * may redefine t_TI etc.
2044 */
2045 if (starting != NO_SCREEN)
2046 {
2047 starttermcap(); /* may change terminal mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 setmouse(); /* may start using the mouse */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049#ifdef FEAT_TITLE
2050 maketitle(); /* may display window title */
2051#endif
2052 }
2053
2054 /* display initial screen after ttest() checking. jw. */
2055 if (width <= 0 || height <= 0)
2056 {
2057 /* termcap failed to report size */
2058 /* set defaults, in case ui_get_shellsize() also fails */
2059 width = 80;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002060#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 height = 25; /* console is often 25 lines */
2062#else
2063 height = 24; /* most terminals are 24 lines */
2064#endif
2065 }
2066 set_shellsize(width, height, FALSE); /* may change Rows */
2067 if (starting != NO_SCREEN)
2068 {
2069 if (scroll_region)
2070 scroll_region_reset(); /* In case Rows changed */
2071 check_map_keycodes(); /* check mappings for terminal codes used */
2072
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002074 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075
2076 /*
2077 * Execute the TermChanged autocommands for each buffer that is
2078 * loaded.
2079 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002080 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar29323592016-07-24 22:04:11 +02002081 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 {
2083 if (curbuf->b_ml.ml_mfp != NULL)
2084 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
2085 curbuf);
2086 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002087 if (bufref_valid(&old_curbuf))
2088 curbuf = old_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 }
2091
2092#ifdef FEAT_TERMRESPONSE
2093 may_req_termresponse();
2094#endif
2095
2096 return OK;
2097}
2098
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099#ifdef HAVE_TGETENT
2100/*
2101 * Call tgetent()
2102 * Return error message if it fails, NULL if it's OK.
2103 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002104 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002105tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106{
2107 int i;
2108
2109 i = TGETENT(tbuf, term);
2110 if (i < 0 /* -1 is always an error */
2111# ifdef TGETENT_ZERO_ERR
2112 || i == 0 /* sometimes zero is also an error */
2113# endif
2114 )
2115 {
2116 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2117 * tgetent() with the always existing "dumb" entry to avoid a crash or
2118 * hang. */
2119 (void)TGETENT(tbuf, "dumb");
2120
2121 if (i < 0)
2122# ifdef TGETENT_ZERO_ERR
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002123 return _("E557: Cannot open termcap file");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 if (i == 0)
2125# endif
2126#ifdef TERMINFO
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002127 return _("E558: Terminal entry not found in terminfo");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128#else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002129 return _("E559: Terminal entry not found in termcap");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130#endif
2131 }
2132 return NULL;
2133}
2134
2135/*
2136 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2137 * Fix that here.
2138 */
2139 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002140vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141{
2142 char *p;
2143
2144 p = tgetstr(s, (char **)pp);
2145 if (p == (char *)-1)
2146 p = NULL;
2147 return (char_u *)p;
2148}
2149#endif /* HAVE_TGETENT */
2150
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002151#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152/*
2153 * Get Columns and Rows from the termcap. Used after a window signal if the
2154 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2155 * and "li" entries never change. But on some systems this works.
2156 * Errors while getting the entries are ignored.
2157 */
2158 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002159getlinecol(
2160 long *cp, /* pointer to columns */
2161 long *rp) /* pointer to rows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162{
2163 char_u tbuf[TBUFSZ];
2164
2165 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2166 {
2167 if (*cp == 0)
2168 *cp = tgetnum("co");
2169 if (*rp == 0)
2170 *rp = tgetnum("li");
2171 }
2172}
2173#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2174
2175/*
2176 * Get a string entry from the termcap and add it to the list of termcodes.
2177 * Used for <t_xx> special keys.
2178 * Give an error message for failure when not sourcing.
2179 * If force given, replace an existing entry.
2180 * Return FAIL if the entry was not found, OK if the entry was added.
2181 */
2182 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002183add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184{
2185 char_u *term;
2186 int key;
2187 struct builtin_term *termp;
2188#ifdef HAVE_TGETENT
2189 char_u *string;
2190 int i;
2191 int builtin_first;
2192 char_u tbuf[TBUFSZ];
2193 char_u tstrbuf[TBUFSZ];
2194 char_u *tp = tstrbuf;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002195 char *error_msg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196#endif
2197
2198/*
2199 * If the GUI is running or will start in a moment, we only support the keys
2200 * that the GUI can produce.
2201 */
2202#ifdef FEAT_GUI
2203 if (gui.in_use || gui.starting)
2204 return gui_mch_haskey(name);
2205#endif
2206
2207 if (!force && find_termcode(name) != NULL) /* it's already there */
2208 return OK;
2209
2210 term = T_NAME;
2211 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2212 return FAIL;
2213
2214 if (term_is_builtin(term)) /* name starts with "builtin_" */
2215 {
2216 term += 8;
2217#ifdef HAVE_TGETENT
2218 builtin_first = TRUE;
2219#endif
2220 }
2221#ifdef HAVE_TGETENT
2222 else
2223 builtin_first = p_tbi;
2224#endif
2225
2226#ifdef HAVE_TGETENT
2227/*
2228 * We can get the entry from the builtin termcap and from the external one.
2229 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2230 * builtin termcap first.
2231 * If 'ttybuiltin' is off, try external termcap first.
2232 */
2233 for (i = 0; i < 2; ++i)
2234 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002235 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236#endif
2237 /*
2238 * Search in builtin termcap
2239 */
2240 {
2241 termp = find_builtin_term(term);
2242 if (termp->bt_string != NULL) /* found it */
2243 {
2244 key = TERMCAP2KEY(name[0], name[1]);
Bram Moolenaare7808482018-03-06 13:17:23 +01002245 ++termp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 while (termp->bt_entry != (int)KS_NAME)
2247 {
2248 if ((int)termp->bt_entry == key)
2249 {
2250 add_termcode(name, (char_u *)termp->bt_string,
2251 term_is_8bit(term));
2252 return OK;
2253 }
2254 ++termp;
2255 }
2256 }
2257 }
2258#ifdef HAVE_TGETENT
2259 else
2260 /*
2261 * Search in external termcap
2262 */
2263 {
2264 error_msg = tgetent_error(tbuf, term);
2265 if (error_msg == NULL)
2266 {
2267 string = TGETSTR((char *)name, &tp);
2268 if (string != NULL && *string != NUL)
2269 {
2270 add_termcode(name, string, FALSE);
2271 return OK;
2272 }
2273 }
2274 }
2275 }
2276#endif
2277
2278 if (sourcing_name == NULL)
2279 {
2280#ifdef HAVE_TGETENT
2281 if (error_msg != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002282 emsg(error_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 else
2284#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002285 semsg(_("E436: No \"%s\" entry in termcap"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 }
2287 return FAIL;
2288}
2289
2290 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002291term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292{
2293 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2294}
2295
2296/*
2297 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2298 * Assume that the terminal is using 8-bit controls when the name contains
2299 * "8bit", like in "xterm-8bit".
2300 */
2301 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002302term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303{
2304 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2305}
2306
2307/*
2308 * Translate terminal control chars from 7-bit to 8-bit:
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002309 * <Esc>[ -> CSI <M_C_[>
2310 * <Esc>] -> OSC <M-C-]>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 * <Esc>O -> <M-C-O>
2312 */
2313 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002314term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315{
2316 if (*p == ESC)
2317 {
2318 if (p[1] == '[')
2319 return CSI;
2320 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002321 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 if (p[1] == 'O')
2323 return 0x8f;
2324 }
2325 return 0;
2326}
2327
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002328#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002330term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331{
2332 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2333}
2334#endif
2335
2336#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2337
2338 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002339tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340{
2341 static char_u buf[16];
2342 char_u *p;
2343
2344 p = buf + 15;
2345 *p = '\0';
2346 do
2347 {
2348 --p;
2349 *p = (char_u) (i % 10 + '0');
2350 i /= 10;
2351 }
2352 while (i > 0 && p > buf);
2353 return p;
2354}
2355#endif
2356
2357#ifndef HAVE_TGETENT
2358
2359/*
2360 * minimal tgoto() implementation.
2361 * no padding and we only parse for %i %d and %+char
2362 */
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002363 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002364tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365{
2366 static char buf[30];
2367 char *p, *s, *e;
2368
2369 if (!cm)
2370 return "OOPS";
2371 e = buf + 29;
2372 for (s = buf; s < e && *cm; cm++)
2373 {
2374 if (*cm != '%')
2375 {
2376 *s++ = *cm;
2377 continue;
2378 }
2379 switch (*++cm)
2380 {
2381 case 'd':
2382 p = (char *)tltoa((unsigned long)y);
2383 y = x;
2384 while (*p)
2385 *s++ = *p++;
2386 break;
2387 case 'i':
2388 x++;
2389 y++;
2390 break;
2391 case '+':
2392 *s++ = (char)(*++cm + y);
2393 y = x;
2394 break;
2395 case '%':
2396 *s++ = *cm;
2397 break;
2398 default:
2399 return "OOPS";
2400 }
2401 }
2402 *s = '\0';
2403 return buf;
2404}
2405
2406#endif /* HAVE_TGETENT */
2407
2408/*
2409 * Set the terminal name and initialize the terminal options.
2410 * If "name" is NULL or empty, get the terminal name from the environment.
2411 * If that fails, use the default terminal name.
2412 */
2413 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002414termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415{
2416 char_u *term;
2417
2418 if (name != NULL && *name == NUL)
2419 name = NULL; /* empty name is equal to no name */
2420 term = name;
2421
2422#ifdef __BEOS__
2423 /*
2424 * TERM environment variable is normally set to 'ansi' on the Bebox;
2425 * Since the BeBox doesn't quite support full ANSI yet, we use our
2426 * own custom 'ansi-beos' termcap instead, unless the -T option has
2427 * been given on the command line.
2428 */
2429 if (term == NULL
2430 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2431 term = DEFAULT_TERM;
2432#endif
2433#ifndef MSWIN
2434 if (term == NULL)
2435 term = mch_getenv((char_u *)"TERM");
2436#endif
2437 if (term == NULL || *term == NUL)
2438 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002439 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440
2441 /* Set the default terminal name. */
2442 set_string_default("term", term);
2443 set_string_default("ttytype", term);
2444
2445 /*
2446 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2447 */
2448 set_termname(T_NAME != NULL ? T_NAME : term);
2449}
2450
2451/*
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002452 * The number of calls to ui_write is reduced by using "out_buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002454#define OUT_SIZE 2047
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002455
2456// add one to allow mch_write() in os_win32.c to append a NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457static char_u out_buf[OUT_SIZE + 1];
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002458
2459static int out_pos = 0; // number of chars in out_buf
2460
2461// Since the maximum number of SGR parameters shown as a normal value range is
2462// 16, the escape sequence length can be 4 * 16 + lead + tail.
2463#define MAX_ESC_SEQ_LEN 80
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464
2465/*
2466 * out_flush(): flush the output buffer
2467 */
2468 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002469out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470{
2471 int len;
2472
2473 if (out_pos != 0)
2474 {
2475 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2476 len = out_pos;
2477 out_pos = 0;
2478 ui_write(out_buf, len);
2479 }
2480}
2481
Bram Moolenaara338adc2018-01-31 20:51:47 +01002482/*
Bram Moolenaard23a8232018-02-10 18:45:26 +01002483 * out_flush_cursor(): flush the output buffer and redraw the cursor.
2484 * Does not flush recursively in the GUI to avoid slow drawing.
Bram Moolenaara338adc2018-01-31 20:51:47 +01002485 */
2486 void
2487out_flush_cursor(
2488 int force UNUSED, /* when TRUE, update cursor even when not moved */
2489 int clear_selection UNUSED) /* clear selection under cursor */
2490{
2491 mch_disable_flush();
2492 out_flush();
2493 mch_enable_flush();
2494#ifdef FEAT_GUI
2495 if (gui.in_use)
2496 {
2497 gui_update_cursor(force, clear_selection);
2498 gui_may_flush();
2499 }
2500#endif
2501}
2502
2503
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504/*
2505 * Sometimes a byte out of a multi-byte character is written with out_char().
2506 * To avoid flushing half of the character, call this function first.
2507 */
2508 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002509out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510{
2511 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2512 out_flush();
2513}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514
2515#ifdef FEAT_GUI
2516/*
2517 * out_trash(): Throw away the contents of the output buffer
2518 */
2519 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002520out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521{
2522 out_pos = 0;
2523}
2524#endif
2525
2526/*
2527 * out_char(c): put a byte into the output buffer.
2528 * Flush it if it becomes full.
2529 * This should not be used for outputting text on the screen (use functions
2530 * like msg_puts() and screen_putchar() for that).
2531 */
2532 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002533out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534{
Bram Moolenaard0573012017-10-28 21:11:06 +02002535#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2537 out_char('\r');
2538#endif
2539
2540 out_buf[out_pos++] = c;
2541
2542 /* For testing we flush each time. */
2543 if (out_pos >= OUT_SIZE || p_wd)
2544 out_flush();
2545}
2546
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002547static void out_char_nf(unsigned);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548
2549/*
2550 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2551 */
2552 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002553out_char_nf(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554{
Bram Moolenaard0573012017-10-28 21:11:06 +02002555#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2557 out_char_nf('\r');
2558#endif
2559
2560 out_buf[out_pos++] = c;
2561
2562 if (out_pos >= OUT_SIZE)
2563 out_flush();
2564}
2565
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002566#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2567 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568/*
2569 * A never-padding out_str.
2570 * use this whenever you don't want to run the string through tputs.
2571 * tputs above is harmless, but tputs from the termcap library
2572 * is likely to strip off leading digits, that it mistakes for padding
2573 * information, and "%i", "%d", etc.
2574 * This should only be used for writing terminal codes, not for outputting
2575 * normal text (use functions like msg_puts() and screen_putchar() for that).
2576 */
2577 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002578out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579{
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002580 // avoid terminal strings being split up
2581 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 out_flush();
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002583
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 while (*s)
2585 out_char_nf(*s++);
2586
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002587 // For testing we write one string at a time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 if (p_wd)
2589 out_flush();
2590}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002591#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592
2593/*
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002594 * A conditional-flushing out_str, mainly for visualbell.
2595 * Handles a delay internally, because termlib may not respect the delay or do
2596 * it at the wrong time.
2597 * Note: Only for terminal strings.
2598 */
2599 void
2600out_str_cf(char_u *s)
2601{
2602 if (s != NULL && *s)
2603 {
Bram Moolenaarc2226842017-06-29 22:27:24 +02002604#ifdef HAVE_TGETENT
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002605 char_u *p;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002606#endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002607
2608#ifdef FEAT_GUI
2609 /* Don't use tputs() when GUI is used, ncurses crashes. */
2610 if (gui.in_use)
2611 {
2612 out_str_nf(s);
2613 return;
2614 }
2615#endif
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002616 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002617 out_flush();
2618#ifdef HAVE_TGETENT
2619 for (p = s; *s; ++s)
2620 {
2621 /* flush just before delay command */
2622 if (*s == '$' && *(s + 1) == '<')
2623 {
2624 char_u save_c = *s;
2625 int duration = atoi((char *)s + 2);
2626
2627 *s = NUL;
2628 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2629 *s = save_c;
2630 out_flush();
Bram Moolenaarc2226842017-06-29 22:27:24 +02002631# ifdef ELAPSED_FUNC
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002632 /* Only sleep here if we can limit this happening in
2633 * vim_beep(). */
2634 p = vim_strchr(s, '>');
2635 if (p == NULL || duration <= 0)
2636 {
2637 /* can't parse the time, don't sleep here */
2638 p = s;
2639 }
2640 else
2641 {
2642 ++p;
2643 do_sleep(duration);
2644 }
Bram Moolenaarc2226842017-06-29 22:27:24 +02002645# else
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002646 /* Rely on the terminal library to sleep. */
2647 p = s;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002648# endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002649 break;
2650 }
2651 }
2652 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2653#else
2654 while (*s)
2655 out_char_nf(*s++);
2656#endif
2657
2658 /* For testing we write one string at a time. */
2659 if (p_wd)
2660 out_flush();
2661 }
2662}
2663
2664/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 * out_str(s): Put a character string a byte at a time into the output buffer.
2666 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2667 * This should only be used for writing terminal codes, not for outputting
2668 * normal text (use functions like msg_puts() and screen_putchar() for that).
2669 */
2670 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002671out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672{
2673 if (s != NULL && *s)
2674 {
2675#ifdef FEAT_GUI
2676 /* Don't use tputs() when GUI is used, ncurses crashes. */
2677 if (gui.in_use)
2678 {
2679 out_str_nf(s);
2680 return;
2681 }
2682#endif
2683 /* avoid terminal strings being split up */
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002684 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 out_flush();
2686#ifdef HAVE_TGETENT
2687 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2688#else
2689 while (*s)
2690 out_char_nf(*s++);
2691#endif
2692
2693 /* For testing we write one string at a time. */
2694 if (p_wd)
2695 out_flush();
2696 }
2697}
2698
2699/*
2700 * cursor positioning using termcap parser. (jw)
2701 */
2702 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002703term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704{
2705 OUT_STR(tgoto((char *)T_CM, col, row));
2706}
2707
2708 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002709term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710{
2711 OUT_STR(tgoto((char *)T_CRI, 0, i));
2712}
2713
2714 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002715term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716{
2717 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2718}
2719
2720 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002721term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722{
2723 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2724}
2725
2726#if defined(HAVE_TGETENT) || defined(PROTO)
2727 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002728term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729{
2730 /* Can't handle a negative value here */
2731 if (x < 0)
2732 x = 0;
2733 if (y < 0)
2734 y = 0;
2735 OUT_STR(tgoto((char *)T_CWP, y, x));
2736}
2737
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002738# if defined(FEAT_TERMRESPONSE) || defined(PROTO)
2739/*
2740 * Return TRUE if we can request the terminal for a response.
2741 */
2742 static int
2743can_get_termresponse()
2744{
2745 return cur_tmode == TMODE_RAW
2746 && termcap_active
Bram Moolenaarafd78262019-05-10 23:10:31 +02002747# ifdef UNIX
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002748 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd)))
Bram Moolenaarafd78262019-05-10 23:10:31 +02002749# endif
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002750 && p_ek;
2751}
2752
Bram Moolenaarafd78262019-05-10 23:10:31 +02002753/*
2754 * Set "status" to STATUS_SENT.
2755 */
2756 static void
2757termrequest_sent(termrequest_T *status)
2758{
2759 status->tr_progress = STATUS_SENT;
2760 status->tr_start = time(NULL);
2761}
2762
2763/*
2764 * Return TRUE if any of the requests are in STATUS_SENT.
2765 */
2766 static int
2767termrequest_any_pending()
2768{
2769 int i;
2770 time_t now = time(NULL);
2771
2772 for (i = 0; all_termrequests[i] != NULL; ++i)
2773 {
2774 if (all_termrequests[i]->tr_progress == STATUS_SENT)
2775 {
2776 if (all_termrequests[i]->tr_start > 0 && now > 0
2777 && all_termrequests[i]->tr_start + 2 < now)
2778 // Sent the request more than 2 seconds ago and didn't get a
2779 // response, assume it failed.
2780 all_termrequests[i]->tr_progress = STATUS_FAIL;
2781 else
2782 return TRUE;
2783 }
2784 }
2785 return FALSE;
2786}
2787
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002788static int winpos_x = -1;
2789static int winpos_y = -1;
2790static int did_request_winpos = 0;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002791
Bram Moolenaar6bc93052019-04-06 20:00:19 +02002792# if defined(FEAT_EVAL) || defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002793/*
2794 * Try getting the Vim window position from the terminal.
2795 * Returns OK or FAIL.
2796 */
2797 int
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002798term_get_winpos(int *x, int *y, varnumber_T timeout)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002799{
2800 int count = 0;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002801 int prev_winpos_x = winpos_x;
2802 int prev_winpos_y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002803
2804 if (*T_CGP == NUL || !can_get_termresponse())
2805 return FAIL;
2806 winpos_x = -1;
2807 winpos_y = -1;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002808 ++did_request_winpos;
Bram Moolenaarafd78262019-05-10 23:10:31 +02002809 termrequest_sent(&winpos_status);
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002810 OUT_STR(T_CGP);
2811 out_flush();
2812
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002813 /* Try reading the result for "timeout" msec. */
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002814 while (count++ <= timeout / 10 && !got_int)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002815 {
2816 (void)vpeekc_nomap();
2817 if (winpos_x >= 0 && winpos_y >= 0)
2818 {
2819 *x = winpos_x;
2820 *y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002821 return OK;
2822 }
2823 ui_delay(10, FALSE);
2824 }
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002825 /* Do not reset "did_request_winpos", if we timed out the response might
2826 * still come later and we must consume it. */
2827
2828 winpos_x = prev_winpos_x;
2829 winpos_y = prev_winpos_y;
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002830 if (timeout < 10 && prev_winpos_y >= 0 && prev_winpos_x >= 0)
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002831 {
2832 /* Polling: return previous values if we have them. */
2833 *x = winpos_x;
2834 *y = winpos_y;
2835 return OK;
2836 }
2837
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002838 return FALSE;
2839}
Bram Moolenaar113e1072019-01-20 15:30:40 +01002840# endif
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002841# endif
2842
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 void
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002844term_set_winsize(int height, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002846 OUT_STR(tgoto((char *)T_CWS, width, height));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847}
2848#endif
2849
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002851term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852{
2853 char buf[20];
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002854 int i = *s == CSI ? 1 : 2;
2855 /* index in s[] just after <Esc>[ or CSI */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856
2857 /* Special handling of 16 colors, because termcap can't handle it */
2858 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2859 /* Also accept CSI instead of <Esc>[ */
2860 if (n >= 8 && t_colors >= 16
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002861 && ((s[0] == ESC && s[1] == '[')
2862#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
2863 || (s[0] == ESC && s[1] == '|')
2864#endif
2865 || (s[0] == CSI && (i = 1) == 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 && s[i] != NUL
2867 && (STRCMP(s + i + 1, "%p1%dm") == 0
2868 || STRCMP(s + i + 1, "%dm") == 0)
2869 && (s[i] == '3' || s[i] == '4'))
2870 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871#ifdef TERMINFO
Bram Moolenaar827b1652016-05-05 18:14:03 +02002872 char *format = "%s%s%%p1%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873#else
Bram Moolenaar827b1652016-05-05 18:14:03 +02002874 char *format = "%s%s%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875#endif
Bram Moolenaard315cf52018-05-23 20:30:56 +02002876 char *lead = i == 2 ? (
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002877#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
Bram Moolenaard315cf52018-05-23 20:30:56 +02002878 s[1] == '|' ? IF_EB("\033|", ESC_STR "|") :
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002879#endif
Bram Moolenaard315cf52018-05-23 20:30:56 +02002880 IF_EB("\033[", ESC_STR "[")) : "\233";
2881 char *tail = s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2882 : (n >= 16 ? "48;5;" : "10");
2883
2884 sprintf(buf, format, lead, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2886 }
2887 else
2888 OUT_STR(tgoto((char *)s, 0, n));
2889}
2890
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002891 void
2892term_fg_color(int n)
2893{
2894 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2895 if (*T_CAF)
2896 term_color(T_CAF, n);
2897 else if (*T_CSF)
2898 term_color(T_CSF, n);
2899}
2900
2901 void
2902term_bg_color(int n)
2903{
2904 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2905 if (*T_CAB)
2906 term_color(T_CAB, n);
2907 else if (*T_CSB)
2908 term_color(T_CSB, n);
2909}
2910
Bram Moolenaar61be73b2016-04-29 22:59:22 +02002911#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002912
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002913#define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF)
2914#define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF)
2915#define BLUE(rgb) (((long_u)(rgb) ) & 0xFF)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002916
2917 static void
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002918term_rgb_color(char_u *s, guicolor_T rgb)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002919{
Bram Moolenaar380130f2016-04-22 11:24:43 +02002920#define MAX_COLOR_STR_LEN 100
2921 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002922
Bram Moolenaara1c487e2016-04-22 20:20:19 +02002923 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02002924 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002925 OUT_STR(buf);
2926}
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002927
2928 void
2929term_fg_rgb_color(guicolor_T rgb)
2930{
2931 term_rgb_color(T_8F, rgb);
2932}
2933
2934 void
2935term_bg_rgb_color(guicolor_T rgb)
2936{
2937 term_rgb_color(T_8B, rgb);
2938}
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002939#endif
2940
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002941#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \
2942 || defined(MACOS_X))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943/*
2944 * Generic function to set window title, using t_ts and t_fs.
2945 */
2946 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002947term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948{
2949 /* t_ts takes one argument: column in status line */
2950 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
2951 out_str_nf(title);
2952 out_str(T_FS); /* set title end */
2953 out_flush();
2954}
Bram Moolenaar40385db2018-08-07 22:31:44 +02002955
2956/*
2957 * Tell the terminal to push (save) the title and/or icon, so that it can be
2958 * popped (restored) later.
2959 */
2960 void
2961term_push_title(int which)
2962{
Bram Moolenaar27821262019-05-08 16:41:09 +02002963 if ((which & SAVE_RESTORE_TITLE) && T_CST != NULL && *T_CST != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02002964 {
2965 OUT_STR(T_CST);
2966 out_flush();
2967 }
2968
Bram Moolenaar27821262019-05-08 16:41:09 +02002969 if ((which & SAVE_RESTORE_ICON) && T_SSI != NULL && *T_SSI != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02002970 {
2971 OUT_STR(T_SSI);
2972 out_flush();
2973 }
2974}
2975
2976/*
2977 * Tell the terminal to pop the title and/or icon.
2978 */
2979 void
2980term_pop_title(int which)
2981{
Bram Moolenaar27821262019-05-08 16:41:09 +02002982 if ((which & SAVE_RESTORE_TITLE) && T_CRT != NULL && *T_CRT != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02002983 {
2984 OUT_STR(T_CRT);
2985 out_flush();
2986 }
2987
Bram Moolenaar27821262019-05-08 16:41:09 +02002988 if ((which & SAVE_RESTORE_ICON) && T_SRI != NULL && *T_SRI != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02002989 {
2990 OUT_STR(T_SRI);
2991 out_flush();
2992 }
2993}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994#endif
2995
2996/*
2997 * Make sure we have a valid set or terminal options.
2998 * Replace all entries that are NULL by empty_option
2999 */
3000 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003001ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003003 char_u *env_colors;
3004
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 check_options(); /* make sure no options are NULL */
3006
3007 /*
3008 * MUST have "cm": cursor motion.
3009 */
3010 if (*T_CM == NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003011 emsg(_("E437: terminal capability \"cm\" required"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012
3013 /*
3014 * if "cs" defined, use a scroll region, it's faster.
3015 */
3016 if (*T_CS != NUL)
3017 scroll_region = TRUE;
3018 else
3019 scroll_region = FALSE;
3020
3021 if (pairs)
3022 {
3023 /*
3024 * optional pairs
3025 */
3026 /* TP goes to normal mode for TI (invert) and TB (bold) */
3027 if (*T_ME == NUL)
3028 T_ME = T_MR = T_MD = T_MB = empty_option;
3029 if (*T_SO == NUL || *T_SE == NUL)
3030 T_SO = T_SE = empty_option;
3031 if (*T_US == NUL || *T_UE == NUL)
3032 T_US = T_UE = empty_option;
3033 if (*T_CZH == NUL || *T_CZR == NUL)
3034 T_CZH = T_CZR = empty_option;
3035
3036 /* T_VE is needed even though T_VI is not defined */
3037 if (*T_VE == NUL)
3038 T_VI = empty_option;
3039
3040 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
3041 if (*T_ME == NUL)
3042 {
3043 T_ME = T_SE;
3044 T_MR = T_SO;
3045 T_MD = T_SO;
3046 }
3047
3048 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
3049 if (*T_SO == NUL)
3050 {
3051 T_SE = T_ME;
3052 if (*T_MR == NUL)
3053 T_SO = T_MD;
3054 else
3055 T_SO = T_MR;
3056 }
3057
3058 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
3059 if (*T_CZH == NUL)
3060 {
3061 T_CZR = T_ME;
3062 if (*T_MR == NUL)
3063 T_CZH = T_MD;
3064 else
3065 T_CZH = T_MR;
3066 }
3067
3068 /* "Sb" and "Sf" come in pairs */
3069 if (*T_CSB == NUL || *T_CSF == NUL)
3070 {
3071 T_CSB = empty_option;
3072 T_CSF = empty_option;
3073 }
3074
3075 /* "AB" and "AF" come in pairs */
3076 if (*T_CAB == NUL || *T_CAF == NUL)
3077 {
3078 T_CAB = empty_option;
3079 T_CAF = empty_option;
3080 }
3081
3082 /* if 'Sb' and 'AB' are not defined, reset "Co" */
3083 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00003084 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085
3086 /* Set 'weirdinvert' according to value of 't_xs' */
3087 p_wiv = (*T_XS != NUL);
3088 }
3089 need_gather = TRUE;
3090
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003091 /* Set t_colors to the value of $COLORS or t_Co. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092 t_colors = atoi((char *)T_CCO);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003093 env_colors = mch_getenv((char_u *)"COLORS");
3094 if (env_colors != NULL && isdigit(*env_colors))
3095 {
3096 int colors = atoi((char *)env_colors);
3097
3098 if (colors != t_colors)
3099 set_color_count(colors);
3100 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101}
3102
3103#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3104 || defined(PROTO)
3105/*
3106 * Represent the given long_u as individual bytes, with the most significant
3107 * byte first, and store them in dst.
3108 */
3109 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003110add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111{
3112 int i;
3113 int shift;
3114
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003115 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 {
3117 shift = 8 * (sizeof(long_u) - i);
3118 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3119 }
3120}
3121
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122/*
3123 * Interpret the next string of bytes in buf as a long integer, with the most
3124 * significant byte first. Note that it is assumed that buf has been through
3125 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3126 * Puts result in val, and returns the number of bytes read from buf
3127 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
3128 * were present.
3129 */
3130 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003131get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132{
3133 int len;
3134 char_u bytes[sizeof(long_u)];
3135 int i;
3136 int shift;
3137
3138 *val = 0;
3139 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3140 if (len != -1)
3141 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003142 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 {
3144 shift = 8 * (sizeof(long_u) - 1 - i);
3145 *val += (long_u)bytes[i] << shift;
3146 }
3147 }
3148 return len;
3149}
3150#endif
3151
3152#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00003153 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
3154 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155/*
3156 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3157 * that buf has been through inchar(). Returns the actual number of bytes used
3158 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
3159 * available.
3160 */
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02003161 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003162get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163{
3164 int len = 0;
3165 int i;
3166 char_u c;
3167
3168 for (i = 0; i < num_bytes; i++)
3169 {
3170 if ((c = buf[len++]) == NUL)
3171 return -1;
3172 if (c == K_SPECIAL)
3173 {
3174 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
3175 return -1;
3176 if (buf[len++] == (int)KS_ZERO)
3177 c = NUL;
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003178 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is
3179 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */
3180 if (buf[len++] == (int)KE_CSI)
3181 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003183 else if (c == CSI && buf[len] == KS_EXTRA
3184 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003185 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3186 * the start of a special key, see add_to_input_buf_csi(). */
3187 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 bytes[i] = c;
3189 }
3190 return len;
3191}
3192#endif
3193
3194/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003195 * Check if the new shell size is valid, correct it if it's too small or way
3196 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 */
3198 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003199check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 if (Rows < min_rows()) /* need room for one window and command line */
3202 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003203 limit_screen_size();
3204}
3205
3206/*
3207 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3208 */
3209 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003210limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003211{
3212 if (Columns < MIN_COLUMNS)
3213 Columns = MIN_COLUMNS;
3214 else if (Columns > 10000)
3215 Columns = 10000;
3216 if (Rows > 1000)
3217 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218}
3219
Bram Moolenaar86b68352004-12-27 21:59:20 +00003220/*
3221 * Invoked just before the screen structures are going to be (re)allocated.
3222 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003224win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225{
3226 static int old_Rows = 0;
3227 static int old_Columns = 0;
3228
3229 if (old_Rows != Rows || old_Columns != Columns)
3230 ui_new_shellsize();
3231 if (old_Rows != Rows)
3232 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003233 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003234 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003235 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236 old_Rows = Rows;
3237 shell_new_rows(); /* update window sizes */
3238 }
3239 if (old_Columns != Columns)
3240 {
3241 old_Columns = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 shell_new_columns(); /* update window sizes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 }
3244}
3245
3246/*
3247 * Call this function when the Vim shell has been resized in any way.
3248 * Will obtain the current size and redraw (also when size didn't change).
3249 */
3250 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003251shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252{
3253 set_shellsize(0, 0, FALSE);
3254}
3255
3256/*
3257 * Check if the shell size changed. Handle a resize.
3258 * When the size didn't change, nothing happens.
3259 */
3260 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003261shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262{
3263 int old_Rows = Rows;
3264 int old_Columns = Columns;
3265
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003266 if (!exiting
3267#ifdef FEAT_GUI
3268 /* Do not get the size when executing a shell command during
3269 * startup. */
3270 && !gui.starting
3271#endif
3272 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003273 {
3274 (void)ui_get_shellsize();
3275 check_shellsize();
3276 if (old_Rows != Rows || old_Columns != Columns)
3277 shell_resized();
3278 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003279}
3280
3281/*
3282 * Set size of the Vim shell.
3283 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3284 * window size (this is used for the :win command).
3285 * If 'mustset' is FALSE, we may try to get the real window size and if
3286 * it fails use 'width' and 'height'.
3287 */
3288 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003289set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290{
3291 static int busy = FALSE;
3292
3293 /*
3294 * Avoid recursiveness, can happen when setting the window size causes
3295 * another window-changed signal.
3296 */
3297 if (busy)
3298 return;
3299
3300 if (width < 0 || height < 0) /* just checking... */
3301 return;
3302
Bram Moolenaara971b822011-09-14 14:43:25 +02003303 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 {
Bram Moolenaar847a5d62019-07-12 15:37:13 +02003305 // postpone the resizing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 State = SETWSIZE;
3307 return;
3308 }
3309
Bram Moolenaar847a5d62019-07-12 15:37:13 +02003310 if (updating_screen)
3311 // resizing while in update_screen() may cause a crash
3312 return;
3313
Bram Moolenaara971b822011-09-14 14:43:25 +02003314 /* curwin->w_buffer can be NULL when we are closing a window and the
3315 * buffer has already been closed and removing a scrollbar causes a resize
3316 * event. Don't resize then, it will happen after entering another buffer.
3317 */
3318 if (curwin->w_buffer == NULL)
3319 return;
3320
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 ++busy;
3322
3323#ifdef AMIGA
3324 out_flush(); /* must do this before mch_get_shellsize() for
3325 some obscure reason */
3326#endif
3327
3328 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3329 {
3330 Rows = height;
3331 Columns = width;
3332 check_shellsize();
3333 ui_set_shellsize(mustset);
3334 }
3335 else
3336 check_shellsize();
3337
3338 /* The window layout used to be adjusted here, but it now happens in
3339 * screenalloc() (also invoked from screenclear()). That is because the
3340 * "busy" check above may skip this, but not screenalloc(). */
3341
3342 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3343 screenclear();
3344 else
3345 screen_start(); /* don't know where cursor is now */
3346
3347 if (starting != NO_SCREEN)
3348 {
3349#ifdef FEAT_TITLE
3350 maketitle();
3351#endif
3352 changed_line_abv_curs();
3353 invalidate_botline();
3354
3355 /*
3356 * We only redraw when it's needed:
3357 * - While at the more prompt or executing an external command, don't
3358 * redraw, but position the cursor.
3359 * - While editing the command line, only redraw that.
3360 * - in Ex mode, don't redraw anything.
3361 * - Otherwise, redraw right now, and position the cursor.
3362 * Always need to call update_screen() or screenalloc(), to make
3363 * sure Rows/Columns and the size of ScreenLines[] is correct!
3364 */
3365 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3366 || exmode_active)
3367 {
3368 screenalloc(FALSE);
3369 repeat_message();
3370 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 else
3372 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003373 if (curwin->w_p_scb)
3374 do_check_scrollbind(TRUE);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003375 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003376 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003377 update_screen(NOT_VALID);
3378 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003379 }
3380 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003381 {
3382 update_topline();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003383 if (pum_visible())
3384 {
3385 redraw_later(NOT_VALID);
Bram Moolenaara5e66212017-09-29 22:42:33 +02003386 ins_compl_show_pum();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003387 }
Bram Moolenaara5e66212017-09-29 22:42:33 +02003388 update_screen(NOT_VALID);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003389 if (redrawing())
3390 setcursor();
3391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 }
3393 cursor_on(); /* redrawing may have switched it off */
3394 }
3395 out_flush();
3396 --busy;
3397}
3398
3399/*
3400 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3401 * commands and Ex mode).
3402 */
3403 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003404settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405{
3406#ifdef FEAT_GUI
3407 /* don't set the term where gvim was started to any mode */
3408 if (gui.in_use)
3409 return;
3410#endif
3411
3412 if (full_screen)
3413 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 /*
3415 * When returning after calling a shell we want to really set the
3416 * terminal to raw mode, even though we think it already is, because
3417 * the shell program may have reset the terminal mode.
3418 * When we think the terminal is normal, don't try to set it to
3419 * normal again, because that causes problems (logout!) on some
3420 * machines.
3421 */
3422 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3423 {
3424#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003425# ifdef FEAT_GUI
3426 if (!gui.in_use && !gui.starting)
3427# endif
3428 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003429 // May need to check for T_CRV response and termcodes, it
3430 // doesn't work in Cooked mode, an external program may get
3431 // them.
3432 if (tmode != TMODE_RAW && termrequest_any_pending())
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003433 (void)vpeekc_nomap();
3434 check_for_codes_from_term();
3435 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436#endif
3437#ifdef FEAT_MOUSE_TTY
3438 if (tmode != TMODE_RAW)
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003439 mch_setmouse(FALSE); // switch mouse off
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440#endif
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003441 if (termcap_active)
3442 {
3443 if (tmode != TMODE_RAW)
3444 out_str(T_BD); // disable bracketed paste mode
3445 else
3446 out_str(T_BE); // enable bracketed paste mode (should
3447 // be before mch_settmode().
3448 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 out_flush();
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003450 mch_settmode(tmode); // machine specific function
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 cur_tmode = tmode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 if (tmode == TMODE_RAW)
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003453 setmouse(); // may switch mouse on
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 out_flush();
3455 }
3456#ifdef FEAT_TERMRESPONSE
3457 may_req_termresponse();
3458#endif
3459 }
3460}
3461
3462 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003463starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464{
3465 if (full_screen && !termcap_active)
3466 {
3467 out_str(T_TI); /* start termcap mode */
Bram Moolenaar171a9212019-10-12 21:08:59 +02003468 out_str(T_CTI); /* start "raw" mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 out_str(T_KS); /* start "keypad transmit" mode */
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003470 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 out_flush();
3472 termcap_active = TRUE;
3473 screen_start(); /* don't know where cursor is now */
3474#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003475# ifdef FEAT_GUI
3476 if (!gui.in_use && !gui.starting)
3477# endif
3478 {
3479 may_req_termresponse();
3480 /* Immediately check for a response. If t_Co changes, we don't
3481 * want to redraw with wrong colors first. */
Bram Moolenaarafd78262019-05-10 23:10:31 +02003482 if (crv_status.tr_progress == STATUS_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003483 check_for_codes_from_term();
3484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485#endif
3486 }
3487}
3488
3489 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003490stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491{
3492 screen_stop_highlight();
3493 reset_cterm_colors();
3494 if (termcap_active)
3495 {
3496#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003497# ifdef FEAT_GUI
3498 if (!gui.in_use && !gui.starting)
3499# endif
3500 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003501 // May need to discard T_CRV, T_U7 or T_RBG response.
3502 if (termrequest_any_pending())
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003503 {
3504# ifdef UNIX
Bram Moolenaarafd78262019-05-10 23:10:31 +02003505 // Give the terminal a chance to respond.
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003506 mch_delay(100L, FALSE);
3507# endif
3508# ifdef TCIFLUSH
Bram Moolenaarafd78262019-05-10 23:10:31 +02003509 // Discard data received but not read.
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003510 if (exiting)
3511 tcflush(fileno(stdin), TCIFLUSH);
3512# endif
3513 }
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003514 /* Check for termcodes first, otherwise an external program may
3515 * get them. */
3516 check_for_codes_from_term();
3517 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518#endif
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003519 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 out_str(T_KE); /* stop "keypad transmit" mode */
3521 out_flush();
3522 termcap_active = FALSE;
3523 cursor_on(); /* just in case it is still off */
Bram Moolenaar171a9212019-10-12 21:08:59 +02003524 out_str(T_CTE); /* stop "raw" mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 out_str(T_TE); /* stop termcap mode */
3526 screen_start(); /* don't know where cursor is now */
3527 out_flush();
3528 }
3529}
3530
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003531#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532/*
3533 * Request version string (for xterm) when needed.
3534 * Only do this after switching to raw mode, otherwise the result will be
3535 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003536 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003537 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 * Only do this after termcap mode has been started, otherwise the codes for
3539 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003540 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3541 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003542 * On Unix only do it when both output and input are a tty (avoid writing
3543 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544 * The result is caught in check_termcode().
3545 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003546 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003547may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548{
Bram Moolenaarafd78262019-05-10 23:10:31 +02003549 if (crv_status.tr_progress == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003550 && can_get_termresponse()
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003551 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 && *T_CRV != NUL)
3553 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003554 LOG_TR(("Sending CRV request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 out_str(T_CRV);
Bram Moolenaarafd78262019-05-10 23:10:31 +02003556 termrequest_sent(&crv_status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 /* check for the characters now, otherwise they might be eaten by
3558 * get_keystroke() */
3559 out_flush();
3560 (void)vpeekc_nomap();
3561 }
3562}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003563
Bram Moolenaar9584b312013-03-13 19:29:28 +01003564/*
3565 * Check how the terminal treats ambiguous character width (UAX #11).
Bram Moolenaar2951b772013-07-03 12:45:31 +02003566 * First, we move the cursor to (1, 0) and print a test ambiguous character
Bram Moolenaar9584b312013-03-13 19:29:28 +01003567 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
Bram Moolenaar2951b772013-07-03 12:45:31 +02003568 * If the terminal treats \u25bd as single width, the position is (1, 1),
3569 * or if it is treated as double width, that will be (1, 2).
Bram Moolenaar9584b312013-03-13 19:29:28 +01003570 * This function has the side effect that changes cursor position, so
3571 * it must be called immediately after entering termcap mode.
3572 */
3573 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003574may_req_ambiguous_char_width(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003575{
Bram Moolenaarafd78262019-05-10 23:10:31 +02003576 if (u7_status.tr_progress == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003577 && can_get_termresponse()
3578 && starting == 0
Bram Moolenaar9584b312013-03-13 19:29:28 +01003579 && *T_U7 != NUL
3580 && !option_was_set((char_u *)"ambiwidth"))
3581 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003582 char_u buf[16];
Bram Moolenaar9584b312013-03-13 19:29:28 +01003583
Bram Moolenaarafd78262019-05-10 23:10:31 +02003584 LOG_TR(("Sending U7 request"));
3585 /* Do this in the second row. In the first row the returned sequence
3586 * may be CSI 1;2R, which is the same as <S-F3>. */
3587 term_windgoto(1, 0);
3588 buf[mb_char2bytes(0x25bd, buf)] = 0;
3589 out_str(buf);
3590 out_str(T_U7);
3591 termrequest_sent(&u7_status);
3592 out_flush();
Bram Moolenaar976787d2017-06-04 15:45:50 +02003593
Bram Moolenaarafd78262019-05-10 23:10:31 +02003594 /* This overwrites a few characters on the screen, a redraw is needed
3595 * after this. Clear them out for now. */
Bram Moolenaar06029a82019-07-24 14:25:26 +02003596 screen_stop_highlight();
Bram Moolenaarafd78262019-05-10 23:10:31 +02003597 term_windgoto(1, 0);
3598 out_str((char_u *)" ");
3599 term_windgoto(0, 0);
Bram Moolenaar976787d2017-06-04 15:45:50 +02003600
Bram Moolenaarafd78262019-05-10 23:10:31 +02003601 /* Need to reset the known cursor position. */
3602 screen_start();
Bram Moolenaar05684312017-12-09 15:11:24 +01003603
Bram Moolenaarafd78262019-05-10 23:10:31 +02003604 /* check for the characters now, otherwise they might be eaten by
3605 * get_keystroke() */
3606 out_flush();
3607 (void)vpeekc_nomap();
Bram Moolenaar9584b312013-03-13 19:29:28 +01003608 }
3609}
Bram Moolenaar2951b772013-07-03 12:45:31 +02003610
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003611/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003612 * Similar to requesting the version string: Request the terminal background
3613 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003614 */
3615 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003616may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003617{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003618 if (can_get_termresponse() && starting == 0)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003619 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003620 int didit = FALSE;
3621
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003622# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003623 /* Only request foreground if t_RF is set. */
Bram Moolenaarafd78262019-05-10 23:10:31 +02003624 if (rfg_status.tr_progress == STATUS_GET && *T_RFG != NUL)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003625 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003626 LOG_TR(("Sending FG request"));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003627 out_str(T_RFG);
Bram Moolenaarafd78262019-05-10 23:10:31 +02003628 termrequest_sent(&rfg_status);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003629 didit = TRUE;
3630 }
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003631# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003632
3633 /* Only request background if t_RB is set. */
Bram Moolenaarafd78262019-05-10 23:10:31 +02003634 if (rbg_status.tr_progress == STATUS_GET && *T_RBG != NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003635 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003636 LOG_TR(("Sending BG request"));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003637 out_str(T_RBG);
Bram Moolenaarafd78262019-05-10 23:10:31 +02003638 termrequest_sent(&rbg_status);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003639 didit = TRUE;
3640 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003641
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003642 if (didit)
3643 {
Bram Moolenaar833e0e32017-08-26 15:16:03 +02003644 /* check for the characters now, otherwise they might be eaten by
3645 * get_keystroke() */
3646 out_flush();
3647 (void)vpeekc_nomap();
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003648 }
3649 }
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003650}
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003651
Bram Moolenaar2951b772013-07-03 12:45:31 +02003652# ifdef DEBUG_TERMRESPONSE
3653 static void
Bram Moolenaarb255b902018-04-24 21:40:10 +02003654log_tr(const char *fmt, ...)
Bram Moolenaar2951b772013-07-03 12:45:31 +02003655{
3656 static FILE *fd_tr = NULL;
3657 static proftime_T start;
3658 proftime_T now;
Bram Moolenaarb255b902018-04-24 21:40:10 +02003659 va_list ap;
Bram Moolenaar2951b772013-07-03 12:45:31 +02003660
3661 if (fd_tr == NULL)
3662 {
3663 fd_tr = fopen("termresponse.log", "w");
3664 profile_start(&start);
3665 }
3666 now = start;
3667 profile_end(&now);
Bram Moolenaarb255b902018-04-24 21:40:10 +02003668 fprintf(fd_tr, "%s: %s ", profile_msg(&now),
3669 must_redraw == NOT_VALID ? "NV"
3670 : must_redraw == CLEAR ? "CL" : " ");
3671 va_start(ap, fmt);
3672 vfprintf(fd_tr, fmt, ap);
3673 va_end(ap);
3674 fputc('\n', fd_tr);
3675 fflush(fd_tr);
Bram Moolenaar2951b772013-07-03 12:45:31 +02003676}
3677# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678#endif
3679
3680/*
3681 * Return TRUE when saving and restoring the screen.
3682 */
3683 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003684swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685{
3686 return (full_screen && *T_TI != NUL);
3687}
3688
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689/*
3690 * By outputting the 'cursor very visible' termcap code, for some windowed
3691 * terminals this makes the screen scrolled to the correct position.
3692 * Used when starting Vim or returning from a shell.
3693 */
3694 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003695scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003697 if (*T_VS != NUL && *T_CVS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 {
3699 out_str(T_VS);
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003700 out_str(T_CVS);
3701 screen_start(); /* don't know where cursor is now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 }
3703}
3704
3705static int cursor_is_off = FALSE;
3706
3707/*
Bram Moolenaar2e310482018-08-21 13:09:10 +02003708 * Enable the cursor without checking if it's already enabled.
3709 */
3710 void
3711cursor_on_force(void)
3712{
3713 out_str(T_VE);
3714 cursor_is_off = FALSE;
3715}
3716
3717/*
3718 * Enable the cursor if it's currently off.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 */
3720 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003721cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722{
3723 if (cursor_is_off)
Bram Moolenaar2e310482018-08-21 13:09:10 +02003724 cursor_on_force();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725}
3726
3727/*
3728 * Disable the cursor.
3729 */
3730 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003731cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003733 if (full_screen && !cursor_is_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 {
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003735 out_str(T_VI); /* disable cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736 cursor_is_off = TRUE;
3737 }
3738}
3739
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003740#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003742 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003743 */
3744 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003745term_cursor_mode(int forced)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003746{
Bram Moolenaarc9770922017-08-12 20:11:53 +02003747 static int showing_mode = -1;
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003748 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003749
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003750 /* Only do something when redrawing the screen and we can restore the
3751 * mode. */
3752 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003753 {
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003754# ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003755 if (forced && initial_cursor_shape > 0)
3756 /* Restore to initial values. */
3757 term_cursor_shape(initial_cursor_shape, initial_cursor_blink);
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003758# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003759 return;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003760 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003761
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003762 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003763 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003764 if (forced || showing_mode != REPLACE)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003765 {
3766 if (*T_CSR != NUL)
3767 p = T_CSR; /* Replace mode cursor */
3768 else
3769 p = T_CSI; /* fall back to Insert mode cursor */
3770 if (*p != NUL)
3771 {
3772 out_str(p);
3773 showing_mode = REPLACE;
3774 }
3775 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003776 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003777 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003778 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003779 if ((forced || showing_mode != INSERT) && *T_CSI != NUL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003780 {
3781 out_str(T_CSI); /* Insert mode cursor */
3782 showing_mode = INSERT;
3783 }
3784 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003785 else if (forced || showing_mode != NORMAL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003786 {
3787 out_str(T_CEI); /* non-Insert mode cursor */
3788 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003789 }
3790}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003791
3792# if defined(FEAT_TERMINAL) || defined(PROTO)
3793 void
3794term_cursor_color(char_u *color)
3795{
3796 if (*T_CSC != NUL)
3797 {
3798 out_str(T_CSC); /* set cursor color start */
3799 out_str_nf(color);
3800 out_str(T_CEC); /* set cursor color end */
3801 out_flush();
3802 }
3803}
Bram Moolenaarfc8bec02017-08-19 19:57:34 +02003804# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003805
Bram Moolenaar4db25542017-08-28 22:43:05 +02003806 int
3807blink_state_is_inverted()
3808{
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003809#ifdef FEAT_TERMRESPONSE
Bram Moolenaar66761db2019-06-05 22:07:51 +02003810 return rbm_status.tr_progress == STATUS_GOT
3811 && rcs_status.tr_progress == STATUS_GOT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003812 && initial_cursor_blink != initial_cursor_shape_blink;
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003813#else
3814 return FALSE;
3815#endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02003816}
3817
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003818/*
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003819 * "shape": 1 = block, 2 = underline, 3 = vertical bar
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003820 */
3821 void
3822term_cursor_shape(int shape, int blink)
3823{
3824 if (*T_CSH != NUL)
3825 {
3826 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink));
3827 out_flush();
3828 }
Bram Moolenaar4db25542017-08-28 22:43:05 +02003829 else
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003830 {
Bram Moolenaar4db25542017-08-28 22:43:05 +02003831 int do_blink = blink;
3832
3833 /* t_SH is empty: try setting just the blink state.
3834 * The blink flags are XORed together, if the initial blinking from
3835 * style and shape differs, we need to invert the flag here. */
3836 if (blink_state_is_inverted())
3837 do_blink = !blink;
3838
3839 if (do_blink && *T_VS != NUL)
3840 {
3841 out_str(T_VS);
3842 out_flush();
3843 }
3844 else if (!do_blink && *T_CVS != NUL)
3845 {
3846 out_str(T_CVS);
3847 out_flush();
3848 }
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003849 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003850}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003851#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003852
3853/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 * Set scrolling region for window 'wp'.
3855 * The region starts 'off' lines from the start of the window.
3856 * Also set the vertical scroll region for a vertically split window. Always
3857 * the full width of the window, excluding the vertical separator.
3858 */
3859 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003860scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861{
3862 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3863 W_WINROW(wp) + off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 if (*T_CSV != NUL && wp->w_width != Columns)
Bram Moolenaar53f81742017-09-22 14:35:51 +02003865 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1,
3866 wp->w_wincol));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 screen_start(); /* don't know where cursor is now */
3868}
3869
3870/*
3871 * Reset scrolling region to the whole screen.
3872 */
3873 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003874scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875{
3876 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 if (*T_CSV != NUL)
3878 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 screen_start(); /* don't know where cursor is now */
3880}
3881
3882
3883/*
3884 * List of terminal codes that are currently recognized.
3885 */
3886
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003887static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888{
3889 char_u name[2]; /* termcap name of entry */
3890 char_u *code; /* terminal code (in allocated memory) */
3891 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003892 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893} *termcodes = NULL;
3894
3895static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
3896static int tc_len = 0; /* current number of entries in termcodes[] */
3897
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003898static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003899
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003901clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902{
3903 while (tc_len > 0)
3904 vim_free(termcodes[--tc_len].code);
Bram Moolenaard23a8232018-02-10 18:45:26 +01003905 VIM_CLEAR(termcodes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 tc_max_len = 0;
3907
3908#ifdef HAVE_TGETENT
3909 BC = (char *)empty_option;
3910 UP = (char *)empty_option;
3911 PC = NUL; /* set pad character to NUL */
3912 ospeed = 0;
3913#endif
3914
3915 need_gather = TRUE; /* need to fill termleader[] */
3916}
3917
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003918#define ATC_FROM_TERM 55
3919
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920/*
3921 * Add a new entry to the list of terminal codes.
3922 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003923 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3924 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 */
3926 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003927add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928{
3929 struct termcode *new_tc;
3930 int i, j;
3931 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003932 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933
3934 if (string == NULL || *string == NUL)
3935 {
3936 del_termcode(name);
3937 return;
3938 }
3939
Bram Moolenaar4f974752019-02-17 17:44:42 +01003940#if defined(MSWIN) && !defined(FEAT_GUI)
Bram Moolenaar45500912014-07-09 20:51:07 +02003941 s = vim_strnsave(string, (int)STRLEN(string) + 1);
3942#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003943# ifdef VIMDLL
3944 if (!gui.in_use)
3945 s = vim_strnsave(string, (int)STRLEN(string) + 1);
3946 else
3947# endif
3948 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02003949#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 if (s == NULL)
3951 return;
3952
3953 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003954 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003956 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 s[0] = term_7to8bit(string);
3958 }
Bram Moolenaar45500912014-07-09 20:51:07 +02003959
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003960#if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
3961# ifdef VIMDLL
3962 if (!gui.in_use)
3963# endif
Bram Moolenaar45500912014-07-09 20:51:07 +02003964 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003965 if (s[0] == K_NUL)
3966 {
3967 STRMOVE(s + 1, s);
3968 s[1] = 3;
3969 }
Bram Moolenaar45500912014-07-09 20:51:07 +02003970 }
3971#endif
3972
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003973 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974
3975 need_gather = TRUE; /* need to fill termleader[] */
3976
3977 /*
3978 * need to make space for more entries
3979 */
3980 if (tc_len == tc_max_len)
3981 {
3982 tc_max_len += 20;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003983 new_tc = ALLOC_MULT(struct termcode, tc_max_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 if (new_tc == NULL)
3985 {
3986 tc_max_len -= 20;
3987 return;
3988 }
3989 for (i = 0; i < tc_len; ++i)
3990 new_tc[i] = termcodes[i];
3991 vim_free(termcodes);
3992 termcodes = new_tc;
3993 }
3994
3995 /*
3996 * Look for existing entry with the same name, it is replaced.
3997 * Look for an existing entry that is alphabetical higher, the new entry
3998 * is inserted in front of it.
3999 */
4000 for (i = 0; i < tc_len; ++i)
4001 {
4002 if (termcodes[i].name[0] < name[0])
4003 continue;
4004 if (termcodes[i].name[0] == name[0])
4005 {
4006 if (termcodes[i].name[1] < name[1])
4007 continue;
4008 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004009 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010 */
4011 if (termcodes[i].name[1] == name[1])
4012 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004013 if (flags == ATC_FROM_TERM && (j = termcode_star(
4014 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004015 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004016 /* Don't replace ESC[123;*X or ESC O*X with another when
4017 * invoked from got_code_from_term(). */
4018 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004019 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004020 && s[len - 1]
4021 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004022 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004023 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004024 vim_free(s);
4025 return;
4026 }
4027 }
4028 else
4029 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004030 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004031 vim_free(termcodes[i].code);
4032 --tc_len;
4033 break;
4034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 }
4036 }
4037 /*
4038 * Found alphabetical larger entry, move rest to insert new entry
4039 */
4040 for (j = tc_len; j > i; --j)
4041 termcodes[j] = termcodes[j - 1];
4042 break;
4043 }
4044
4045 termcodes[i].name[0] = name[0];
4046 termcodes[i].name[1] = name[1];
4047 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004048 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004049
4050 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
4051 * accept modifiers. */
4052 termcodes[i].modlen = 0;
4053 j = termcode_star(s, len);
4054 if (j > 0)
4055 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 ++tc_len;
4057}
4058
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004059/*
Bram Moolenaara529ce02017-06-22 22:37:57 +02004060 * Check termcode "code[len]" for ending in ;*X or *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004061 * The "X" can be any character.
Bram Moolenaara529ce02017-06-22 22:37:57 +02004062 * Return 0 if not found, 2 for ;*X and 1 for *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004063 */
4064 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004065termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004066{
4067 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
4068 if (len >= 3 && code[len - 2] == '*')
4069 {
4070 if (len >= 5 && code[len - 3] == ';')
4071 return 2;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004072 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004073 return 1;
4074 }
4075 return 0;
4076}
4077
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004079find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080{
4081 int i;
4082
4083 for (i = 0; i < tc_len; ++i)
4084 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4085 return termcodes[i].code;
4086 return NULL;
4087}
4088
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004090get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091{
4092 if (i >= tc_len)
4093 return NULL;
4094 return &termcodes[i].name[0];
4095}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02004097/*
4098 * Returns the length of the terminal code at index 'idx'.
4099 */
4100 int
4101get_termcode_len(int idx)
4102{
4103 return termcodes[idx].len;
4104}
4105
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02004106 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004107del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108{
4109 int i;
4110
4111 if (termcodes == NULL) /* nothing there yet */
4112 return;
4113
4114 need_gather = TRUE; /* need to fill termleader[] */
4115
4116 for (i = 0; i < tc_len; ++i)
4117 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4118 {
4119 del_termcode_idx(i);
4120 return;
4121 }
4122 /* not found. Give error message? */
4123}
4124
4125 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004126del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127{
4128 int i;
4129
4130 vim_free(termcodes[idx].code);
4131 --tc_len;
4132 for (i = idx; i < tc_len; ++i)
4133 termcodes[i] = termcodes[i + 1];
4134}
4135
4136#ifdef FEAT_TERMRESPONSE
4137/*
4138 * Called when detected that the terminal sends 8-bit codes.
4139 * Convert all 7-bit codes to their 8-bit equivalent.
4140 */
4141 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004142switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143{
4144 int i;
4145 int c;
4146
4147 /* Only need to do something when not already using 8-bit codes. */
4148 if (!term_is_8bit(T_NAME))
4149 {
4150 for (i = 0; i < tc_len; ++i)
4151 {
4152 c = term_7to8bit(termcodes[i].code);
4153 if (c != 0)
4154 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004155 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 termcodes[i].code[0] = c;
4157 }
4158 }
4159 need_gather = TRUE; /* need to fill termleader[] */
4160 }
4161 detected_8bit = TRUE;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004162 LOG_TR(("Switching to 8 bit"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163}
4164#endif
4165
4166#ifdef CHECK_DOUBLE_CLICK
4167static linenr_T orig_topline = 0;
4168# ifdef FEAT_DIFF
4169static int orig_topfill = 0;
4170# endif
4171#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02004172#if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173/*
4174 * Checking for double clicks ourselves.
4175 * "orig_topline" is used to avoid detecting a double-click when the window
4176 * contents scrolled (e.g., when 'scrolloff' is non-zero).
4177 */
4178/*
4179 * Set orig_topline. Used when jumping to another window, so that a double
4180 * click still works.
4181 */
4182 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004183set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184{
4185 orig_topline = wp->w_topline;
4186# ifdef FEAT_DIFF
4187 orig_topfill = wp->w_topfill;
4188# endif
4189}
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02004190
4191/*
4192 * Returns TRUE if the top line and top fill of window 'wp' matches the saved
4193 * topline and topfill.
4194 */
4195 int
4196is_mouse_topline(win_T *wp)
4197{
4198 return orig_topline == wp->w_topline
4199#ifdef FEAT_DIFF
4200 && orig_topfill == wp->w_topfill
4201#endif
4202 ;
4203}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204#endif
4205
4206/*
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004207 * Put "string[new_slen]" in typebuf, or in "buf[bufsize]" if "buf" is not NULL.
4208 * Remove "slen" bytes.
4209 * Returns FAIL for error.
4210 */
4211 static int
4212put_string_in_typebuf(
4213 int offset,
4214 int slen,
4215 char_u *string,
4216 int new_slen,
4217 char_u *buf,
4218 int bufsize,
4219 int *buflen)
4220{
4221 int extra = new_slen - slen;
4222
4223 string[new_slen] = NUL;
4224 if (buf == NULL)
4225 {
4226 if (extra < 0)
4227 // remove matched chars, taking care of noremap
4228 del_typebuf(-extra, offset);
4229 else if (extra > 0)
4230 // insert the extra space we need
4231 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
4232
4233 // Careful: del_typebuf() and ins_typebuf() may have reallocated
4234 // typebuf.tb_buf[]!
4235 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
4236 (size_t)new_slen);
4237 }
4238 else
4239 {
4240 if (extra < 0)
4241 // remove matched characters
4242 mch_memmove(buf + offset, buf + offset - extra,
4243 (size_t)(*buflen + offset + extra));
4244 else if (extra > 0)
4245 {
4246 // Insert the extra space we need. If there is insufficient
4247 // space return -1.
4248 if (*buflen + extra + new_slen >= bufsize)
4249 return FAIL;
4250 mch_memmove(buf + offset + extra, buf + offset,
4251 (size_t)(*buflen - offset));
4252 }
4253 mch_memmove(buf + offset, string, (size_t)new_slen);
4254 *buflen = *buflen + extra + new_slen;
4255 }
4256 return OK;
4257}
4258
4259/*
4260 * Decode a modifier number as xterm provides it into MOD_MASK bits.
4261 */
4262 static int
4263decode_modifiers(int n)
4264{
4265 int code = n - 1;
4266 int modifiers = 0;
4267
4268 if (code & 1)
4269 modifiers |= MOD_MASK_SHIFT;
4270 if (code & 2)
4271 modifiers |= MOD_MASK_ALT;
4272 if (code & 4)
4273 modifiers |= MOD_MASK_CTRL;
4274 if (code & 8)
4275 modifiers |= MOD_MASK_META;
4276 return modifiers;
4277}
4278
4279 static int
4280modifiers2keycode(int modifiers, int *key, char_u *string)
4281{
4282 int new_slen = 0;
4283
4284 if (modifiers != 0)
4285 {
4286 // Some keys have the modifier included. Need to handle that here to
4287 // make mappings work.
4288 *key = simplify_key(*key, &modifiers);
4289 if (modifiers != 0)
4290 {
4291 string[new_slen++] = K_SPECIAL;
4292 string[new_slen++] = (int)KS_MODIFIER;
4293 string[new_slen++] = modifiers;
4294 }
4295 }
4296 return new_slen;
4297}
4298
4299/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 * Check if typebuf.tb_buf[] contains a terminal key code.
4301 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
4302 * + max_offset].
4303 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004304 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 * With a match, the match is removed, the replacement code is inserted in
4306 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
4307 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004308 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
4309 * "buflen" is then the length of the string in buf[] and is updated for
4310 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 */
4312 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004313check_termcode(
4314 int max_offset,
4315 char_u *buf,
4316 int bufsize,
4317 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318{
4319 char_u *tp;
4320 char_u *p;
4321 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004322 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004324 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 int offset;
4326 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004327 int modifiers;
Bram Moolenaar090209b2017-06-23 22:45:33 +02004328 char_u *modifiers_start = NULL;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004329 int key;
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004330 int new_slen; // Length of what will replace the termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 char_u string[MAX_KEY_CODE_LEN + 1];
4332 int i, j;
4333 int idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 int cpo_koffset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335
4336 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
4337
4338 /*
4339 * Speed up the checks for terminal codes by gathering all first bytes
4340 * used in termleader[]. Often this is just a single <Esc>.
4341 */
4342 if (need_gather)
4343 gather_termleader();
4344
4345 /*
4346 * Check at several positions in typebuf.tb_buf[], to catch something like
4347 * "x<Up>" that can be mapped. Stop at max_offset, because characters
4348 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004349 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 * This is used often, KEEP IT FAST!
4351 */
4352 for (offset = 0; offset < max_offset; ++offset)
4353 {
4354 if (buf == NULL)
4355 {
4356 if (offset >= typebuf.tb_len)
4357 break;
4358 tp = typebuf.tb_buf + typebuf.tb_off + offset;
4359 len = typebuf.tb_len - offset; /* length of the input */
4360 }
4361 else
4362 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004363 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 break;
4365 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004366 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 }
4368
4369 /*
4370 * Don't check characters after K_SPECIAL, those are already
4371 * translated terminal chars (avoid translating ~@^Hx).
4372 */
4373 if (*tp == K_SPECIAL)
4374 {
4375 offset += 2; /* there are always 2 extra characters */
4376 continue;
4377 }
4378
4379 /*
4380 * Skip this position if the character does not appear as the first
4381 * character in term_strings. This speeds up a lot, since most
4382 * termcodes start with the same character (ESC or CSI).
4383 */
4384 i = *tp;
4385 for (p = termleader; *p && *p != i; ++p)
4386 ;
4387 if (*p == NUL)
4388 continue;
4389
4390 /*
4391 * Skip this position if p_ek is not set and tp[0] is an ESC and we
4392 * are in Insert mode.
4393 */
4394 if (*tp == ESC && !p_ek && (State & INSERT))
4395 continue;
4396
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004398 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004399 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400
4401#ifdef FEAT_GUI
4402 if (gui.in_use)
4403 {
4404 /*
4405 * GUI special key codes are all of the form [CSI xx].
4406 */
4407 if (*tp == CSI) /* Special key from GUI */
4408 {
4409 if (len < 3)
4410 return -1; /* Shouldn't happen */
4411 slen = 3;
4412 key_name[0] = tp[1];
4413 key_name[1] = tp[2];
4414 }
4415 }
4416 else
4417#endif /* FEAT_GUI */
4418 {
4419 for (idx = 0; idx < tc_len; ++idx)
4420 {
4421 /*
4422 * Ignore the entry if we are not at the start of
4423 * typebuf.tb_buf[]
4424 * and there are not enough characters to make a match.
4425 * But only when the 'K' flag is in 'cpoptions'.
4426 */
4427 slen = termcodes[idx].len;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004428 modifiers_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 if (cpo_koffset && offset && len < slen)
4430 continue;
4431 if (STRNCMP(termcodes[idx].code, tp,
4432 (size_t)(slen > len ? len : slen)) == 0)
4433 {
4434 if (len < slen) /* got a partial sequence */
4435 return -1; /* need to get more chars */
4436
4437 /*
4438 * When found a keypad key, check if there is another key
4439 * that matches and use that one. This makes <Home> to be
4440 * found instead of <kHome> when they produce the same
4441 * key code.
4442 */
4443 if (termcodes[idx].name[0] == 'K'
4444 && VIM_ISDIGIT(termcodes[idx].name[1]))
4445 {
4446 for (j = idx + 1; j < tc_len; ++j)
4447 if (termcodes[j].len == slen &&
4448 STRNCMP(termcodes[idx].code,
4449 termcodes[j].code, slen) == 0)
4450 {
4451 idx = j;
4452 break;
4453 }
4454 }
4455
4456 key_name[0] = termcodes[idx].name[0];
4457 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 break;
4459 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004460
4461 /*
4462 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004463 * <Esc>[123;*X (modslen == slen - 3)
4464 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4465 * When there is a modifier the * matches a number.
4466 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004467 */
4468 if (termcodes[idx].modlen > 0)
4469 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004470 modslen = termcodes[idx].modlen;
4471 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004472 continue;
4473 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004474 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004475 {
4476 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004477
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004478 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004479 return -1; /* need to get more chars */
4480
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004481 if (tp[modslen] == termcodes[idx].code[slen - 1])
4482 slen = modslen + 1; /* no modifiers */
4483 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004484 continue; /* no match */
4485 else
4486 {
Bram Moolenaarbb7e1b42019-05-02 20:24:12 +02004487 // Skip over the digits, the final char must
4488 // follow. URXVT can use a negative value, thus
4489 // also accept '-'.
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004490 for (j = slen - 2; j < len && (isdigit(tp[j])
Bram Moolenaarbb7e1b42019-05-02 20:24:12 +02004491 || tp[j] == '-' || tp[j] == ';'); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004492 ;
4493 ++j;
4494 if (len < j) /* got a partial sequence */
4495 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004496 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4497 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004498
Bram Moolenaara529ce02017-06-22 22:37:57 +02004499 modifiers_start = tp + slen - 2;
4500
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004501 // Match! Convert modifier bits.
4502 n = atoi((char *)modifiers_start);
4503 modifiers |= decode_modifiers(n);
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004504
4505 slen = j;
4506 }
4507 key_name[0] = termcodes[idx].name[0];
4508 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004509 break;
4510 }
4511 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 }
4513 }
4514
4515#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004516 if (key_name[0] == NUL
Bram Moolenaara529ce02017-06-22 22:37:57 +02004517 /* Mouse codes of DEC and pterm start with <ESC>[. When
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004518 * detecting the start of these mouse codes they might as well be
4519 * another key code or terminal response. */
4520# ifdef FEAT_MOUSE_DEC
4521 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004522# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004523# ifdef FEAT_MOUSE_PTERM
4524 || key_name[0] == KS_PTERM_MOUSE
4525# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004526 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004528 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
4529
4530 /*
4531 * Check for responses from the terminal starting with {lead}:
4532 * "<Esc>[" or CSI followed by [0-9>?]
Bram Moolenaar9584b312013-03-13 19:29:28 +01004533 *
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004534 * - Xterm version string: {lead}>{x};{vers};{y}c
Bram Moolenaar9584b312013-03-13 19:29:28 +01004535 * Also eat other possible responses to t_RV, rxvt returns
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004536 * "{lead}?1;2c".
Bram Moolenaar9584b312013-03-13 19:29:28 +01004537 *
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004538 * - Cursor position report: {lead}{row};{col}R
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004539 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01004540 * ambiguous-width character state.
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004541 *
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004542 * - window position reply: {lead}3;{x};{y}t
4543 *
4544 * - key with modifiers when modifyOtherKeys is enabled:
4545 * {lead}27;{modifier};{key}~
4546 * {lead}{key};{modifier}u
Bram Moolenaar9584b312013-03-13 19:29:28 +01004547 */
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004548 if (((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02004549 || (tp[0] == CSI && len >= 2))
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004550 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004552 int first = -1; // optional char right after {lead}
4553 int trail; // char that ends CSI sequence
4554 int arg[3] = {-1, -1, -1}; // argument numbers
4555 int argc; // number of arguments
4556 char_u *ap = argp;
4557 int csi_len;
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004558
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004559 // Check for non-digit after CSI.
4560 if (!VIM_ISDIGIT(*ap))
4561 first = *ap++;
4562
4563 // Find up to three argument numbers.
4564 for (argc = 0; argc < 3; )
4565 {
4566 if (ap >= tp + len)
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004567 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004568not_enough:
4569 LOG_TR(("Not enough characters for CSI sequence"));
4570 return -1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004571 }
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004572 if (*ap == ';')
4573 arg[argc++] = -1; // omitted number
4574 else if (VIM_ISDIGIT(*ap))
4575 {
4576 arg[argc] = 0;
4577 for (;;)
4578 {
4579 if (ap >= tp + len)
4580 goto not_enough;
4581 if (!VIM_ISDIGIT(*ap))
4582 break;
4583 arg[argc] = arg[argc] * 10 + (*ap - '0');
4584 ++ap;
4585 }
4586 ++argc;
4587 }
4588 if (*ap == ';')
4589 ++ap;
4590 else
4591 break;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004592 }
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004593 // mrxvt has been reported to have "+" in the version. Assume
4594 // the escape sequence ends with a letter or one of "{|}~".
4595 while (ap < tp + len
4596 && !(*ap >= '{' && *ap <= '~')
4597 && !ASCII_ISALPHA(*ap))
4598 ++ap;
4599 if (ap >= tp + len)
4600 goto not_enough;
4601 trail = *ap;
4602 csi_len = (int)(ap - tp) + 1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004603
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004604 // Cursor position report: Eat it when there are 2 arguments
4605 // and it ends in 'R'. Also when u7_status is not "sent", it
4606 // may be from a previous Vim that just exited. But not for
4607 // <S-F3>, it sends something similar, check for row and column
4608 // to make sense.
4609 if (first == -1 && argc == 2 && trail == 'R')
Bram Moolenaar9584b312013-03-13 19:29:28 +01004610 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004611 if (arg[0] == 2 && arg[1] >= 2)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004612 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004613 char *aw = NULL;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004614
Bram Moolenaarb255b902018-04-24 21:40:10 +02004615 LOG_TR(("Received U7 status: %s", tp));
Bram Moolenaarafd78262019-05-10 23:10:31 +02004616 u7_status.tr_progress = STATUS_GOT;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004617 did_cursorhold = TRUE;
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004618 if (arg[1] == 2)
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004619 aw = "single";
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004620 else if (arg[1] == 3)
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004621 aw = "double";
4622 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4623 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004624 // Setting the option causes a screen redraw. Do
4625 // that right away if possible, keeping any
4626 // messages.
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004627 set_option_value((char_u *)"ambw", 0L,
4628 (char_u *)aw, 0);
4629# ifdef DEBUG_TERMRESPONSE
4630 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004631 int r = redraw_asap(CLEAR);
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004632
Bram Moolenaarb255b902018-04-24 21:40:10 +02004633 log_tr("set 'ambiwidth', redraw_asap(): %d", r);
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004634 }
4635# else
4636 redraw_asap(CLEAR);
4637# endif
4638 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02004639 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004640 key_name[0] = (int)KS_EXTRA;
4641 key_name[1] = (int)KE_IGNORE;
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004642 slen = csi_len;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004643# ifdef FEAT_EVAL
4644 set_vim_var_string(VV_TERMU7RESP, tp, slen);
4645# endif
Bram Moolenaar9584b312013-03-13 19:29:28 +01004646 }
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004647
4648 // Version string: Eat it when there is at least one digit and
4649 // it ends in 'c'
4650 else if (*T_CRV != NUL && ap > argp + 1 && trail == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004652 int version = arg[1];
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004653
Bram Moolenaarb255b902018-04-24 21:40:10 +02004654 LOG_TR(("Received CRV response: %s", tp));
Bram Moolenaarafd78262019-05-10 23:10:31 +02004655 crv_status.tr_progress = STATUS_GOT;
Bram Moolenaar68879252013-04-05 19:50:17 +02004656 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004658 // If this code starts with CSI, you can bet that the
4659 // terminal uses 8-bit codes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 if (tp[0] == CSI)
4661 switch_to_8bit();
4662
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004663 // rxvt sends its version number: "20703" is 2.7.3.
4664 // Screen sends 40500.
4665 // Ignore it for when the user has set 'term' to xterm,
4666 // even though it's an rxvt.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004667 if (version > 20000)
4668 version = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004670 if (first == '>' && argc == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 {
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004672 int need_flush = FALSE;
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004673 int is_iterm2 = FALSE;
Bram Moolenaar20091c12018-12-07 13:18:19 +01004674 int is_mintty = FALSE;
4675
4676 // mintty 2.9.5 sends 77;20905;0c.
4677 // (77 is ASCII 'M' for mintty.)
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004678 if (arg[0] == 77)
Bram Moolenaar20091c12018-12-07 13:18:19 +01004679 is_mintty = TRUE;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004680
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004681 // if xterm version >= 141 try to get termcap codes
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004682 if (version >= 141)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004684 LOG_TR(("Enable checking for XT codes"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685 check_for_codes = TRUE;
4686 need_gather = TRUE;
4687 req_codes_from_term();
4688 }
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004689
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004690 // libvterm sends 0;100;0
4691 if (version == 100 && arg[0] == 0 && arg[2] == 0)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004692 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004693 // If run from Vim $COLORS is set to the number of
4694 // colors the terminal supports. Otherwise assume
4695 // 256, libvterm supports even more.
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004696 if (mch_getenv((char_u *)"COLORS") == NULL)
4697 may_adjust_color_count(256);
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004698 /* Libvterm can handle SGR mouse reporting. */
4699 if (!option_was_set((char_u *)"ttym"))
4700 set_option_value((char_u *)"ttym", 0L,
4701 (char_u *)"sgr", 0);
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004702 }
4703
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004704 if (version == 95)
4705 {
Bram Moolenaare330ef42018-07-06 23:11:40 +02004706 // Mac Terminal.app sends 1;95;0
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004707 if (arg[0] == 1 && arg[2] == 0)
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004708 {
4709 is_not_xterm = TRUE;
4710 is_mac_terminal = TRUE;
4711 }
Bram Moolenaare330ef42018-07-06 23:11:40 +02004712 // iTerm2 sends 0;95;0
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004713 else if (arg[0] == 0 && arg[2] == 0)
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004714 is_iterm2 = TRUE;
Bram Moolenaare330ef42018-07-06 23:11:40 +02004715 // old iTerm2 sends 0;95;
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004716 else if (arg[0] == 0 && arg[2] == -1)
Bram Moolenaare330ef42018-07-06 23:11:40 +02004717 is_not_xterm = TRUE;
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004718 }
4719
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004720 // Only set 'ttymouse' automatically if it was not set
4721 // by the user already.
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004722 if (!option_was_set((char_u *)"ttym"))
4723 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004724 // Xterm version 277 supports SGR. Also support
4725 // Terminal.app, iTerm2 and mintty.
Bram Moolenaar20091c12018-12-07 13:18:19 +01004726 if (version >= 277 || is_iterm2 || is_mac_terminal
4727 || is_mintty)
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004728 set_option_value((char_u *)"ttym", 0L,
4729 (char_u *)"sgr", 0);
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004730 // if xterm version >= 95 use mouse dragging
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01004731 else if (version >= 95)
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004732 set_option_value((char_u *)"ttym", 0L,
4733 (char_u *)"xterm2", 0);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004734 }
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004735
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004736 // Detect terminals that set $TERM to something like
4737 // "xterm-256colors" but are not fully xterm
4738 // compatible.
Bram Moolenaarc2127982017-09-11 20:34:13 +02004739
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004740 // Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
4741 // xfce4-terminal sends 1;2802;0.
4742 // screen sends 83;40500;0
4743 // Assuming any version number over 2500 is not an
4744 // xterm (without the limit for rxvt and screen).
4745 if (arg[1] >= 2500)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004746 is_not_xterm = TRUE;
4747
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004748 // PuTTY sends 0;136;0
4749 // vandyke SecureCRT sends 1;136;0
4750 else if (version == 136 && arg[2] == 0)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004751 is_not_xterm = TRUE;
4752
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004753 // Konsole sends 0;115;0
4754 else if (version == 115 && arg[0] == 0 && arg[2] == 0)
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004755 is_not_xterm = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004756
Bram Moolenaar668324e2018-06-30 17:09:26 +02004757 // Xterm first responded to this request at patch level
4758 // 95, so assume anything below 95 is not xterm.
4759 if (version < 95)
4760 is_not_xterm = TRUE;
4761
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004762 // Only request the cursor style if t_SH and t_RS are
4763 // set. Only supported properly by xterm since version
4764 // 279 (otherwise it returns 0x18).
4765 // Not for Terminal.app, it can't handle t_RS, it
4766 // echoes the characters to the screen.
Bram Moolenaarafd78262019-05-10 23:10:31 +02004767 if (rcs_status.tr_progress == STATUS_GET
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004768 && version >= 279
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004769 && !is_not_xterm
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004770 && *T_CSH != NUL
4771 && *T_CRS != NUL)
4772 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004773 LOG_TR(("Sending cursor style request"));
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004774 out_str(T_CRS);
Bram Moolenaarafd78262019-05-10 23:10:31 +02004775 termrequest_sent(&rcs_status);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004776 need_flush = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004777 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004778
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004779 // Only request the cursor blink mode if t_RC set. Not
4780 // for Gnome terminal, it can't handle t_RC, it
4781 // echoes the characters to the screen.
Bram Moolenaarafd78262019-05-10 23:10:31 +02004782 if (rbm_status.tr_progress == STATUS_GET
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004783 && !is_not_xterm
4784 && *T_CRC != NUL)
4785 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004786 LOG_TR(("Sending cursor blink mode request"));
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004787 out_str(T_CRC);
Bram Moolenaarafd78262019-05-10 23:10:31 +02004788 termrequest_sent(&rbm_status);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004789 need_flush = TRUE;
4790 }
4791
4792 if (need_flush)
4793 out_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 }
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004795 slen = csi_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796# ifdef FEAT_EVAL
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004797 set_vim_var_string(VV_TERMRESPONSE, tp, slen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 apply_autocmds(EVENT_TERMRESPONSE,
4800 NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 key_name[0] = (int)KS_EXTRA;
4802 key_name[1] = (int)KE_IGNORE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 }
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004804
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004805 // Check blinking cursor from xterm:
4806 // {lead}?12;1$y set
4807 // {lead}?12;2$y not set
4808 //
4809 // {lead} can be <Esc>[ or CSI
Bram Moolenaarafd78262019-05-10 23:10:31 +02004810 else if (rbm_status.tr_progress == STATUS_SENT
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004811 && first == '?'
4812 && ap == argp + 6
4813 && arg[0] == 12
4814 && ap[-1] == '$'
4815 && trail == 'y')
Bram Moolenaar4db25542017-08-28 22:43:05 +02004816 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004817 initial_cursor_blink = (arg[1] == '1');
Bram Moolenaarafd78262019-05-10 23:10:31 +02004818 rbm_status.tr_progress = STATUS_GOT;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004819 LOG_TR(("Received cursor blinking mode response: %s", tp));
Bram Moolenaar4db25542017-08-28 22:43:05 +02004820 key_name[0] = (int)KS_EXTRA;
4821 key_name[1] = (int)KE_IGNORE;
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004822 slen = csi_len;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004823# ifdef FEAT_EVAL
4824 set_vim_var_string(VV_TERMBLINKRESP, tp, slen);
4825# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02004826 }
4827
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004828 // Check for a window position response from the terminal:
4829 // {lead}3;{x};{y}t
4830 else if (did_request_winpos && argc == 3 && arg[0] == 3
4831 && trail == 't')
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004832 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004833 winpos_x = arg[1];
4834 winpos_y = arg[2];
4835 // got finished code: consume it
4836 key_name[0] = (int)KS_EXTRA;
4837 key_name[1] = (int)KE_IGNORE;
4838 slen = csi_len;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004839
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004840 if (--did_request_winpos <= 0)
4841 winpos_status.tr_progress = STATUS_GOT;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004842 }
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004843
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004844 // Key with modifier:
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004845 // {lead}27;{modifier};{key}~
4846 // {lead}{key};{modifier}u
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004847 else if ((arg[0] == 27 && argc == 3 && trail == '~')
4848 || (argc == 2 && trail == 'u'))
4849 {
Bram Moolenaar459fd782019-10-13 16:43:39 +02004850 seenModifyOtherKeys = TRUE;
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004851 if (trail == 'u')
4852 key = arg[0];
4853 else
4854 key = arg[2];
4855
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004856 modifiers = decode_modifiers(arg[1]);
Bram Moolenaard1e2f392019-10-12 18:22:50 +02004857
4858 // Some keys already have Shift included, pass them as
Bram Moolenaar459fd782019-10-13 16:43:39 +02004859 // normal keys. Not when Ctrl is also used, because <C-H>
4860 // and <C-S-H> are different.
Bram Moolenaard1e2f392019-10-12 18:22:50 +02004861 if (modifiers == MOD_MASK_SHIFT
4862 && ((key >= '@' && key <= 'Z')
4863 || key == '^' || key == '_'
4864 || (key >= '{' && key <= '~')))
4865 modifiers = 0;
4866
Bram Moolenaar459fd782019-10-13 16:43:39 +02004867 // When used with Ctrl we always make a letter upper case,
4868 // so that mapping <C-H> and <C-h> are the same. Typing
4869 // <C-S-H> also uses "H" but modifier is different.
4870 if ((modifiers & MOD_MASK_CTRL) && ASCII_ISALPHA(key))
4871 key = TOUPPER_ASC(key);
4872
Bram Moolenaard1e2f392019-10-12 18:22:50 +02004873 // insert modifiers with KS_MODIFIER
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004874 new_slen = modifiers2keycode(modifiers, &key, string);
4875 slen = csi_len;
4876
4877 if (has_mbyte)
4878 new_slen += (*mb_char2bytes)(key, string + new_slen);
4879 else
4880 string[new_slen++] = key;
4881
4882 if (put_string_in_typebuf(offset, slen, string, new_slen,
4883 buf, bufsize, buflen) == FAIL)
4884 return -1;
4885 return len + new_slen - slen + offset;
4886 }
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02004887
4888 // else: Unknown CSI sequence. We could drop it, but then the
4889 // user can't create a map for it.
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004890 }
4891
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004892 /* Check for fore/background color response from the terminal:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004893 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004894 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
Bram Moolenaarcea254f2019-06-04 21:41:28 +02004895 * or {lead}{code};rgb:{rr}/{gg}/{bb}{tail}
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004896 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004897 * {code} is 10 for foreground, 11 for background
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004898 * {lead} can be <Esc>] or OSC
4899 * {tail} can be '\007', <Esc>\ or STERM.
4900 *
4901 * Consume any code that starts with "{lead}11;", it's also
4902 * possible that "rgba" is following.
4903 */
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004904 else if ((*T_RBG != NUL || *T_RFG != NUL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004905 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
4906 || tp[0] == OSC))
4907 {
4908 j = 1 + (tp[0] == ESC);
4909 if (len >= j + 3 && (argp[0] != '1'
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004910 || (argp[1] != '1' && argp[1] != '0')
4911 || argp[2] != ';'))
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004912 i = 0; /* no match */
4913 else
4914 for (i = j; i < len; ++i)
4915 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
4916 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004917 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004918 int is_bg = argp[1] == '1';
Bram Moolenaarcea254f2019-06-04 21:41:28 +02004919 int is_4digit = i - j >= 21 && tp[j + 11] == '/'
4920 && tp[j + 16] == '/';
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004921
Bram Moolenaar12e71eb2019-06-06 15:19:31 +02004922 if (i - j >= 15 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
Bram Moolenaarcea254f2019-06-04 21:41:28 +02004923 && (is_4digit
4924 || (tp[j + 9] == '/' && tp[i + 12 == '/'])))
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004925 {
Bram Moolenaar32e19772019-06-05 22:57:04 +02004926 char_u *tp_r = tp + j + 7;
4927 char_u *tp_g = tp + j + (is_4digit ? 12 : 10);
4928 char_u *tp_b = tp + j + (is_4digit ? 17 : 13);
Bram Moolenaar6bc93052019-04-06 20:00:19 +02004929# ifdef FEAT_TERMINAL
Bram Moolenaarcea254f2019-06-04 21:41:28 +02004930 int rval, gval, bval;
4931
Bram Moolenaar32e19772019-06-05 22:57:04 +02004932 rval = hexhex2nr(tp_r);
4933 gval = hexhex2nr(tp_b);
4934 bval = hexhex2nr(tp_g);
Bram Moolenaar6bc93052019-04-06 20:00:19 +02004935# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004936 if (is_bg)
4937 {
Bram Moolenaar32e19772019-06-05 22:57:04 +02004938 char *new_bg_val = (3 * '6' < *tp_r + *tp_g +
4939 *tp_b) ? "light" : "dark";
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004940
Bram Moolenaarb255b902018-04-24 21:40:10 +02004941 LOG_TR(("Received RBG response: %s", tp));
Bram Moolenaarafd78262019-05-10 23:10:31 +02004942 rbg_status.tr_progress = STATUS_GOT;
Bram Moolenaar6bc93052019-04-06 20:00:19 +02004943# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004944 bg_r = rval;
4945 bg_g = gval;
4946 bg_b = bval;
Bram Moolenaar6bc93052019-04-06 20:00:19 +02004947# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004948 if (!option_was_set((char_u *)"bg")
Bram Moolenaar32e19772019-06-05 22:57:04 +02004949 && STRCMP(p_bg, new_bg_val) != 0)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004950 {
4951 /* value differs, apply it */
4952 set_option_value((char_u *)"bg", 0L,
Bram Moolenaar32e19772019-06-05 22:57:04 +02004953 (char_u *)new_bg_val, 0);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004954 reset_option_was_set((char_u *)"bg");
4955 redraw_asap(CLEAR);
4956 }
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004957 }
Bram Moolenaar6bc93052019-04-06 20:00:19 +02004958# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004959 else
4960 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004961 LOG_TR(("Received RFG response: %s", tp));
Bram Moolenaarafd78262019-05-10 23:10:31 +02004962 rfg_status.tr_progress = STATUS_GOT;
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004963 fg_r = rval;
4964 fg_g = gval;
4965 fg_b = bval;
4966 }
Bram Moolenaar6bc93052019-04-06 20:00:19 +02004967# endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004968 }
4969
4970 /* got finished code: consume it */
4971 key_name[0] = (int)KS_EXTRA;
4972 key_name[1] = (int)KE_IGNORE;
4973 slen = i + 1 + (tp[i] == ESC);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004974# ifdef FEAT_EVAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004975 set_vim_var_string(is_bg ? VV_TERMRBGRESP
4976 : VV_TERMRFGRESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004977# endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004978 break;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004979 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004980 if (i == len)
4981 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004982 LOG_TR(("not enough characters for RB"));
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004983 return -1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 }
4986
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004987 /* Check for key code response from xterm:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004988 * {lead}{flag}+r<hex bytes><{tail}
4989 *
4990 * {lead} can be <Esc>P or DCS
4991 * {flag} can be '0' or '1'
4992 * {tail} can be Esc>\ or STERM
4993 *
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004994 * Check for cursor shape response from xterm:
Bram Moolenaar590ec872018-03-02 20:58:42 +01004995 * {lead}1$r<digit> q{tail}
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004996 *
4997 * {lead} can be <Esc>P or DCS
Bram Moolenaar66761db2019-06-05 22:07:51 +02004998 * {tail} can be <Esc>\ or STERM
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004999 *
5000 * Consume any code that starts with "{lead}.+r" or "{lead}.$r".
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005001 */
Bram Moolenaarafd78262019-05-10 23:10:31 +02005002 else if ((check_for_codes || rcs_status.tr_progress == STATUS_SENT)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005003 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 || tp[0] == DCS))
5005 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005006 j = 1 + (tp[0] == ESC);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005007 if (len < j + 3)
Bram Moolenaar66761db2019-06-05 22:07:51 +02005008 i = len; // need more chars
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005009 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r')
Bram Moolenaar66761db2019-06-05 22:07:51 +02005010 i = 0; // no match
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005011 else if (argp[1] == '+')
Bram Moolenaar66761db2019-06-05 22:07:51 +02005012 // key code response
5013 for (i = j; i < len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 {
Bram Moolenaar66761db2019-06-05 22:07:51 +02005015 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
5016 || tp[i] == STERM)
5017 {
5018 if (i - j >= 3)
5019 got_code_from_term(tp + j, i);
5020 key_name[0] = (int)KS_EXTRA;
5021 key_name[1] = (int)KE_IGNORE;
5022 slen = i + 1 + (tp[i] == ESC);
5023 break;
5024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 }
Bram Moolenaar590ec872018-03-02 20:58:42 +01005026 else
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005027 {
Bram Moolenaar66761db2019-06-05 22:07:51 +02005028 // Probably the cursor shape response. Make sure that "i"
5029 // is equal to "len" when there are not sufficient
5030 // characters.
Bram Moolenaar590ec872018-03-02 20:58:42 +01005031 for (i = j + 3; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005032 {
Bram Moolenaar590ec872018-03-02 20:58:42 +01005033 if (i - j == 3 && !isdigit(tp[i]))
5034 break;
5035 if (i - j == 4 && tp[i] != ' ')
5036 break;
5037 if (i - j == 5 && tp[i] != 'q')
5038 break;
5039 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM)
5040 break;
5041 if ((i - j == 6 && tp[i] == STERM)
5042 || (i - j == 7 && tp[i] == '\\'))
5043 {
5044 int number = argp[3] - '0';
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005045
Bram Moolenaar66761db2019-06-05 22:07:51 +02005046 // 0, 1 = block blink, 2 = block
5047 // 3 = underline blink, 4 = underline
5048 // 5 = vertical bar blink, 6 = vertical bar
Bram Moolenaar590ec872018-03-02 20:58:42 +01005049 number = number == 0 ? 1 : number;
5050 initial_cursor_shape = (number + 1) / 2;
Bram Moolenaar66761db2019-06-05 22:07:51 +02005051 // The blink flag is actually inverted, compared to
5052 // the value set with T_SH.
Bram Moolenaar590ec872018-03-02 20:58:42 +01005053 initial_cursor_shape_blink =
Bram Moolenaar4db25542017-08-28 22:43:05 +02005054 (number & 1) ? FALSE : TRUE;
Bram Moolenaarafd78262019-05-10 23:10:31 +02005055 rcs_status.tr_progress = STATUS_GOT;
Bram Moolenaarb255b902018-04-24 21:40:10 +02005056 LOG_TR(("Received cursor shape response: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005057
Bram Moolenaar590ec872018-03-02 20:58:42 +01005058 key_name[0] = (int)KS_EXTRA;
5059 key_name[1] = (int)KE_IGNORE;
5060 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02005061# ifdef FEAT_EVAL
Bram Moolenaar590ec872018-03-02 20:58:42 +01005062 set_vim_var_string(VV_TERMSTYLERESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02005063# endif
Bram Moolenaar590ec872018-03-02 20:58:42 +01005064 break;
5065 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005066 }
5067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068
5069 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02005070 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005071 /* These codes arrive many together, each code can be
5072 * truncated at any point. */
Bram Moolenaarb255b902018-04-24 21:40:10 +02005073 LOG_TR(("not enough characters for XT"));
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005074 return -1;
Bram Moolenaar2951b772013-07-03 12:45:31 +02005075 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 }
5077 }
5078#endif
5079
5080 if (key_name[0] == NUL)
5081 continue; /* No match at this position, try next one */
5082
5083 /* We only get here when we have a complete termcode match */
5084
5085#ifdef FEAT_MOUSE
5086# ifdef FEAT_GUI
5087 /*
5088 * Only in the GUI: Fetch the pointer coordinates of the scroll event
5089 * so that we know which window to scroll later.
5090 */
5091 if (gui.in_use
5092 && key_name[0] == (int)KS_EXTRA
5093 && (key_name[1] == (int)KE_X1MOUSE
5094 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005095 || key_name[1] == (int)KE_MOUSELEFT
5096 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 || key_name[1] == (int)KE_MOUSEDOWN
5098 || key_name[1] == (int)KE_MOUSEUP))
5099 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005100 char_u bytes[6];
5101 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
5102
5103 if (num_bytes == -1) // not enough coordinates
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 return -1;
5105 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
5106 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
5107 slen += num_bytes;
5108 }
5109 else
5110# endif
5111 /*
5112 * If it is a mouse click, get the coordinates.
5113 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005114 if (key_name[0] == KS_MOUSE
Bram Moolenaarbedf0912019-05-04 16:58:45 +02005115# ifdef FEAT_MOUSE_GPM
5116 || key_name[0] == KS_GPM_MOUSE
5117# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005119 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120# endif
5121# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005122 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123# endif
5124# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005125 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126# endif
5127# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005128 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005130# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005131 || key_name[0] == KS_URXVT_MOUSE
5132# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005133 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01005134 || key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005136 if (check_termcode_mouse(tp, &slen, key_name, modifiers_start, idx,
5137 &modifiers) == -1)
5138 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 }
5140#endif /* FEAT_MOUSE */
5141
5142#ifdef FEAT_GUI
5143 /*
5144 * If using the GUI, then we get menu and scrollbar events.
5145 *
5146 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5147 * four bytes which are to be taken as a pointer to the vimmenu_T
5148 * structure.
5149 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005150 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005151 * is one byte with the tab index.
5152 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5154 * by one byte representing the scrollbar number, and then four bytes
5155 * representing a long_u which is the new value of the scrollbar.
5156 *
5157 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5158 * KE_FILLER followed by four bytes representing a long_u which is the
5159 * new value of the scrollbar.
5160 */
5161# ifdef FEAT_MENU
5162 else if (key_name[0] == (int)KS_MENU)
5163 {
5164 long_u val;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005165 int num_bytes = get_long_from_buf(tp + slen, &val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 if (num_bytes == -1)
5168 return -1;
5169 current_menu = (vimmenu_T *)val;
5170 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005171
5172 /* The menu may have been deleted right after it was used, check
5173 * for that. */
5174 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5175 {
5176 key_name[0] = KS_EXTRA;
5177 key_name[1] = (int)KE_IGNORE;
5178 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 }
5180# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005181# ifdef FEAT_GUI_TABLINE
5182 else if (key_name[0] == (int)KS_TABLINE)
5183 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005184 // Selecting tabline tab or using its menu.
5185 char_u bytes[6];
5186 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5187
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005188 if (num_bytes == -1)
5189 return -1;
5190 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005191 if (current_tab == 255) /* -1 in a byte gives 255 */
5192 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005193 slen += num_bytes;
5194 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005195 else if (key_name[0] == (int)KS_TABMENU)
5196 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005197 // Selecting tabline tab or using its menu.
5198 char_u bytes[6];
5199 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5200
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005201 if (num_bytes == -1)
5202 return -1;
5203 current_tab = (int)bytes[0];
5204 current_tabmenu = (int)bytes[1];
5205 slen += num_bytes;
5206 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005207# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208# ifndef USE_ON_FLY_SCROLL
5209 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5210 {
5211 long_u val;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005212 char_u bytes[6];
5213 int num_bytes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214
5215 /* Get the last scrollbar event in the queue of the same type */
5216 j = 0;
5217 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5218 && tp[j + 2] != NUL; ++i)
5219 {
5220 j += 3;
5221 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5222 if (num_bytes == -1)
5223 break;
5224 if (i == 0)
5225 current_scrollbar = (int)bytes[0];
5226 else if (current_scrollbar != (int)bytes[0])
5227 break;
5228 j += num_bytes;
5229 num_bytes = get_long_from_buf(tp + j, &val);
5230 if (num_bytes == -1)
5231 break;
5232 scrollbar_value = val;
5233 j += num_bytes;
5234 slen = j;
5235 }
5236 if (i == 0) /* not enough characters to make one */
5237 return -1;
5238 }
5239 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5240 {
5241 long_u val;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005242 int num_bytes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243
5244 /* Get the last horiz. scrollbar event in the queue */
5245 j = 0;
5246 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5247 && tp[j + 2] != NUL; ++i)
5248 {
5249 j += 3;
5250 num_bytes = get_long_from_buf(tp + j, &val);
5251 if (num_bytes == -1)
5252 break;
5253 scrollbar_value = val;
5254 j += num_bytes;
5255 slen = j;
5256 }
5257 if (i == 0) /* not enough characters to make one */
5258 return -1;
5259 }
5260# endif /* !USE_ON_FLY_SCROLL */
5261#endif /* FEAT_GUI */
5262
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005263 /*
5264 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5265 */
5266 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5267
5268 /*
5269 * Add any modifier codes to our string.
5270 */
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005271 new_slen = modifiers2keycode(modifiers, &key, string);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005272
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005274 key_name[0] = KEY2TERMCAP0(key);
5275 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005277 {
5278 /* from ":set <M-b>=xx" */
Bram Moolenaar6768a332009-01-22 17:33:49 +00005279 if (has_mbyte)
5280 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5281 else
Bram Moolenaar6768a332009-01-22 17:33:49 +00005282 string[new_slen++] = key_name[1];
5283 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005284 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5285 && key_name[1] == KE_IGNORE)
5286 {
5287 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5288 * to indicate what happened. */
5289 retval = KEYLEN_REMOVED;
5290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 else
5292 {
5293 string[new_slen++] = K_SPECIAL;
5294 string[new_slen++] = key_name[0];
5295 string[new_slen++] = key_name[1];
5296 }
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005297 if (put_string_in_typebuf(offset, slen, string, new_slen,
5298 buf, bufsize, buflen) == FAIL)
5299 return -1;
5300 return retval == 0 ? (len + new_slen - slen + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 }
5302
Bram Moolenaar2951b772013-07-03 12:45:31 +02005303#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02005304 LOG_TR(("normal character"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02005305#endif
5306
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 return 0; /* no match found */
5308}
5309
Bram Moolenaar9377df32017-10-15 13:22:01 +02005310#if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005311/*
5312 * Get the text foreground color, if known.
5313 */
5314 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005315term_get_fg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005316{
Bram Moolenaarafd78262019-05-10 23:10:31 +02005317 if (rfg_status.tr_progress == STATUS_GOT)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005318 {
5319 *r = fg_r;
5320 *g = fg_g;
5321 *b = fg_b;
5322 }
5323}
5324
5325/*
5326 * Get the text background color, if known.
5327 */
5328 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005329term_get_bg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005330{
Bram Moolenaarafd78262019-05-10 23:10:31 +02005331 if (rbg_status.tr_progress == STATUS_GOT)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005332 {
5333 *r = bg_r;
5334 *g = bg_g;
5335 *b = bg_b;
5336 }
5337}
5338#endif
5339
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340/*
5341 * Replace any terminal code strings in from[] with the equivalent internal
5342 * vim representation. This is used for the "from" and "to" part of a
5343 * mapping, and the "to" part of a menu command.
5344 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5345 * '<'.
5346 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5347 *
5348 * The replacement is done in result[] and finally copied into allocated
5349 * memory. If this all works well *bufp is set to the allocated memory and a
5350 * pointer to it is returned. If something fails *bufp is set to NULL and from
5351 * is returned.
5352 *
Bram Moolenaar459fd782019-10-13 16:43:39 +02005353 * CTRL-V characters are removed. When "flags" has REPTERM_FROM_PART, a
5354 * trailing CTRL-V is included, otherwise it is removed (for ":map xx ^V", maps
5355 * xx to nothing). When 'cpoptions' does not contain 'B', a backslash can be
5356 * used instead of a CTRL-V.
5357 *
5358 * Flags:
5359 * REPTERM_FROM_PART see above
5360 * REPTERM_DO_LT also translate <lt>
5361 * REPTERM_SPECIAL always accept <key> notation
5362 * REPTERM_NO_SIMPLIFY do not simplify <C-H> to 0x08 and set 8th bit for <A-x>
5363 *
5364 * "did_simplify" is set when some <C-H> or <A-x> code was simplified, unless
5365 * it is NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005367 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005368replace_termcodes(
5369 char_u *from,
5370 char_u **bufp,
Bram Moolenaar459fd782019-10-13 16:43:39 +02005371 int flags,
5372 int *did_simplify)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373{
5374 int i;
5375 int slen;
5376 int key;
5377 int dlen = 0;
5378 char_u *src;
5379 int do_backslash; /* backslash is a special character */
5380 int do_special; /* recognize <> key codes */
5381 int do_key_code; /* recognize raw key codes */
5382 char_u *result; /* buffer for resulting string */
5383
5384 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar459fd782019-10-13 16:43:39 +02005385 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL)
5386 || (flags & REPTERM_SPECIAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5388
5389 /*
5390 * Allocate space for the translation. Worst case a single character is
5391 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5392 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02005393 result = alloc(STRLEN(from) * 6 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 if (result == NULL) /* out of memory */
5395 {
5396 *bufp = NULL;
5397 return from;
5398 }
5399
5400 src = from;
5401
5402 /*
5403 * Check for #n at start only: function key n
5404 */
Bram Moolenaar459fd782019-10-13 16:43:39 +02005405 if ((flags & REPTERM_FROM_PART) && src[0] == '#' && VIM_ISDIGIT(src[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 {
5407 result[dlen++] = K_SPECIAL;
5408 result[dlen++] = 'k';
5409 if (src[1] == '0')
5410 result[dlen++] = ';'; /* #0 is F10 is "k;" */
5411 else
5412 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
5413 src += 2;
5414 }
5415
5416 /*
5417 * Copy each byte from *from to result[dlen]
5418 */
5419 while (*src != NUL)
5420 {
5421 /*
5422 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005423 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 */
Bram Moolenaar459fd782019-10-13 16:43:39 +02005425 if (do_special && ((flags & REPTERM_DO_LT)
5426 || STRNCMP(src, "<lt>", 4) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 {
5428#ifdef FEAT_EVAL
5429 /*
5430 * Replace <SID> by K_SNR <script-nr> _.
5431 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
5432 */
5433 if (STRNICMP(src, "<SID>", 5) == 0)
5434 {
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005435 if (current_sctx.sc_sid <= 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005436 emsg(_(e_usingsid));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 else
5438 {
5439 src += 5;
5440 result[dlen++] = K_SPECIAL;
5441 result[dlen++] = (int)KS_EXTRA;
5442 result[dlen++] = (int)KE_SNR;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02005443 sprintf((char *)result + dlen, "%ld",
5444 (long)current_sctx.sc_sid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 dlen += (int)STRLEN(result + dlen);
5446 result[dlen++] = '_';
5447 continue;
5448 }
5449 }
5450#endif
5451
Bram Moolenaar459fd782019-10-13 16:43:39 +02005452 slen = trans_special(&src, result + dlen, TRUE, FALSE,
5453 (flags & REPTERM_NO_SIMPLIFY) == 0, did_simplify);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 if (slen)
5455 {
5456 dlen += slen;
5457 continue;
5458 }
5459 }
5460
5461 /*
5462 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
5463 * Note that this is also checked after replacing the <> form.
5464 * Single character codes are NOT replaced (e.g. ^H or DEL), because
5465 * it could be a character in the file.
5466 */
5467 if (do_key_code)
5468 {
5469 i = find_term_bykeys(src);
5470 if (i >= 0)
5471 {
5472 result[dlen++] = K_SPECIAL;
5473 result[dlen++] = termcodes[i].name[0];
5474 result[dlen++] = termcodes[i].name[1];
5475 src += termcodes[i].len;
5476 /* If terminal code matched, continue after it. */
5477 continue;
5478 }
5479 }
5480
5481#ifdef FEAT_EVAL
5482 if (do_special)
5483 {
5484 char_u *p, *s, len;
5485
5486 /*
5487 * Replace <Leader> by the value of "mapleader".
5488 * Replace <LocalLeader> by the value of "maplocalleader".
5489 * If "mapleader" or "maplocalleader" isn't set use a backslash.
5490 */
5491 if (STRNICMP(src, "<Leader>", 8) == 0)
5492 {
5493 len = 8;
5494 p = get_var_value((char_u *)"g:mapleader");
5495 }
5496 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
5497 {
5498 len = 13;
5499 p = get_var_value((char_u *)"g:maplocalleader");
5500 }
5501 else
5502 {
5503 len = 0;
5504 p = NULL;
5505 }
5506 if (len != 0)
5507 {
5508 /* Allow up to 8 * 6 characters for "mapleader". */
5509 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
5510 s = (char_u *)"\\";
5511 else
5512 s = p;
5513 while (*s != NUL)
5514 result[dlen++] = *s++;
5515 src += len;
5516 continue;
5517 }
5518 }
5519#endif
5520
5521 /*
5522 * Remove CTRL-V and ignore the next character.
5523 * For "from" side the CTRL-V at the end is included, for the "to"
5524 * part it is removed.
5525 * If 'cpoptions' does not contain 'B', also accept a backslash.
5526 */
5527 key = *src;
5528 if (key == Ctrl_V || (do_backslash && key == '\\'))
5529 {
5530 ++src; /* skip CTRL-V or backslash */
5531 if (*src == NUL)
5532 {
Bram Moolenaar459fd782019-10-13 16:43:39 +02005533 if (flags & REPTERM_FROM_PART)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 result[dlen++] = key;
5535 break;
5536 }
5537 }
5538
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005540 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 {
5542 /*
5543 * If the character is K_SPECIAL, replace it with K_SPECIAL
5544 * KS_SPECIAL KE_FILLER.
5545 * If compiled with the GUI replace CSI with K_CSI.
5546 */
5547 if (*src == K_SPECIAL)
5548 {
5549 result[dlen++] = K_SPECIAL;
5550 result[dlen++] = KS_SPECIAL;
5551 result[dlen++] = KE_FILLER;
5552 }
5553# ifdef FEAT_GUI
5554 else if (*src == CSI)
5555 {
5556 result[dlen++] = K_SPECIAL;
5557 result[dlen++] = KS_EXTRA;
5558 result[dlen++] = (int)KE_CSI;
5559 }
5560# endif
5561 else
5562 result[dlen++] = *src;
5563 ++src;
5564 }
5565 }
5566 result[dlen] = NUL;
5567
5568 /*
5569 * Copy the new string to allocated memory.
5570 * If this fails, just return from.
5571 */
5572 if ((*bufp = vim_strsave(result)) != NULL)
5573 from = *bufp;
5574 vim_free(result);
5575 return from;
5576}
5577
5578/*
5579 * Find a termcode with keys 'src' (must be NUL terminated).
5580 * Return the index in termcodes[], or -1 if not found.
5581 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02005582 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005583find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584{
5585 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01005586 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587
5588 for (i = 0; i < tc_len; ++i)
5589 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01005590 if (slen == termcodes[i].len
5591 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 return i;
5593 }
5594 return -1;
5595}
5596
5597/*
5598 * Gather the first characters in the terminal key codes into a string.
5599 * Used to speed up check_termcode().
5600 */
5601 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005602gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603{
5604 int i;
5605 int len = 0;
5606
5607#ifdef FEAT_GUI
5608 if (gui.in_use)
5609 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
5610#endif
5611#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005612 if (check_for_codes || *T_CRS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 termleader[len++] = DCS; /* the termcode response starts with DCS
5614 in 8-bit mode */
5615#endif
5616 termleader[len] = NUL;
5617
5618 for (i = 0; i < tc_len; ++i)
5619 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
5620 {
5621 termleader[len++] = termcodes[i].code[0];
5622 termleader[len] = NUL;
5623 }
5624
5625 need_gather = FALSE;
5626}
5627
5628/*
5629 * Show all termcodes (for ":set termcap")
5630 * This code looks a lot like showoptions(), but is different.
5631 */
5632 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005633show_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634{
5635 int col;
5636 int *items;
5637 int item_count;
5638 int run;
5639 int row, rows;
5640 int cols;
5641 int i;
5642 int len;
5643
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005644#define INC3 27 /* try to make three columns */
5645#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646#define GAP 2 /* spaces between columns */
5647
5648 if (tc_len == 0) /* no terminal codes (must be GUI) */
5649 return;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005650 items = ALLOC_MULT(int, tc_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 if (items == NULL)
5652 return;
5653
5654 /* Highlight title */
Bram Moolenaar32526b32019-01-19 17:43:09 +01005655 msg_puts_title(_("\n--- Terminal keys ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656
5657 /*
5658 * do the loop two times:
5659 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005660 * 2. display the medium items (medium length strings)
5661 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005663 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664 {
5665 /*
5666 * collect the items in items[]
5667 */
5668 item_count = 0;
5669 for (i = 0; i < tc_len; i++)
5670 {
5671 len = show_one_termcode(termcodes[i].name,
5672 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005673 if (len <= INC3 - GAP ? run == 1
5674 : len <= INC2 - GAP ? run == 2
5675 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676 items[item_count++] = i;
5677 }
5678
5679 /*
5680 * display the items
5681 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005682 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005684 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 if (cols == 0)
5686 cols = 1;
5687 rows = (item_count + cols - 1) / cols;
5688 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005689 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690 rows = item_count;
5691 for (row = 0; row < rows && !got_int; ++row)
5692 {
5693 msg_putchar('\n'); /* go to next line */
5694 if (got_int) /* 'q' typed in more */
5695 break;
5696 col = 0;
5697 for (i = row; i < item_count; i += rows)
5698 {
5699 msg_col = col; /* make columns */
5700 show_one_termcode(termcodes[items[i]].name,
5701 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005702 if (run == 2)
5703 col += INC2;
5704 else
5705 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 }
5707 out_flush();
5708 ui_breakcheck();
5709 }
5710 }
5711 vim_free(items);
5712}
5713
5714/*
5715 * Show one termcode entry.
5716 * Output goes into IObuff[]
5717 */
5718 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005719show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720{
5721 char_u *p;
5722 int len;
5723
5724 if (name[0] > '~')
5725 {
5726 IObuff[0] = ' ';
5727 IObuff[1] = ' ';
5728 IObuff[2] = ' ';
5729 IObuff[3] = ' ';
5730 }
5731 else
5732 {
5733 IObuff[0] = 't';
5734 IObuff[1] = '_';
5735 IObuff[2] = name[0];
5736 IObuff[3] = name[1];
5737 }
5738 IObuff[4] = ' ';
5739
5740 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
5741 if (p[1] != 't')
5742 STRCPY(IObuff + 5, p);
5743 else
5744 IObuff[5] = NUL;
5745 len = (int)STRLEN(IObuff);
5746 do
5747 IObuff[len++] = ' ';
5748 while (len < 17);
5749 IObuff[len] = NUL;
5750 if (code == NULL)
5751 len += 4;
5752 else
5753 len += vim_strsize(code);
5754
5755 if (printit)
5756 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005757 msg_puts((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 if (code == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005759 msg_puts("NULL");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 else
5761 msg_outtrans(code);
5762 }
5763 return len;
5764}
5765
5766#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
5767/*
5768 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
5769 * termcap codes from the terminal itself.
5770 * We get them one by one to avoid a very long response string.
5771 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005772static int xt_index_in = 0;
5773static int xt_index_out = 0;
5774
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005776req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777{
5778 xt_index_out = 0;
5779 xt_index_in = 0;
5780 req_more_codes_from_term();
5781}
5782
5783 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005784req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785{
5786 char buf[11];
5787 int old_idx = xt_index_out;
5788
5789 /* Don't do anything when going to exit. */
5790 if (exiting)
5791 return;
5792
5793 /* Send up to 10 more requests out than we received. Avoid sending too
5794 * many, there can be a buffer overflow somewhere. */
5795 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
5796 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02005797 char *key_name = key_names[xt_index_out];
Bram Moolenaar2951b772013-07-03 12:45:31 +02005798
Bram Moolenaarb255b902018-04-24 21:40:10 +02005799 LOG_TR(("Requesting XT %d: %s", xt_index_out, key_name));
5800 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 out_str_nf((char_u *)buf);
5802 ++xt_index_out;
5803 }
5804
5805 /* Send the codes out right away. */
5806 if (xt_index_out != old_idx)
5807 out_flush();
5808}
5809
5810/*
5811 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
5812 * A "0" instead of the "1" indicates a code that isn't supported.
5813 * Both <name> and <string> are encoded in hex.
5814 * "code" points to the "0" or "1".
5815 */
5816 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005817got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818{
5819#define XT_LEN 100
5820 char_u name[3];
5821 char_u str[XT_LEN];
5822 int i;
5823 int j = 0;
5824 int c;
5825
5826 /* A '1' means the code is supported, a '0' means it isn't.
5827 * When half the length is > XT_LEN we can't use it.
5828 * Our names are currently all 2 characters. */
5829 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
5830 {
5831 /* Get the name from the response and find it in the table. */
5832 name[0] = hexhex2nr(code + 3);
5833 name[1] = hexhex2nr(code + 5);
5834 name[2] = NUL;
5835 for (i = 0; key_names[i] != NULL; ++i)
5836 {
5837 if (STRCMP(key_names[i], name) == 0)
5838 {
5839 xt_index_in = i;
5840 break;
5841 }
5842 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02005843
Bram Moolenaarb255b902018-04-24 21:40:10 +02005844 LOG_TR(("Received XT %d: %s", xt_index_in, (char *)name));
5845
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 if (key_names[i] != NULL)
5847 {
5848 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
5849 str[j++] = c;
5850 str[j] = NUL;
5851 if (name[0] == 'C' && name[1] == 'o')
5852 {
5853 /* Color count is not a key code. */
5854 i = atoi((char *)str);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02005855 may_adjust_color_count(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 }
5857 else
5858 {
5859 /* First delete any existing entry with the same code. */
5860 i = find_term_bykeys(str);
5861 if (i >= 0)
5862 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005863 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864 }
5865 }
5866 }
5867
5868 /* May request more codes now that we received one. */
5869 ++xt_index_in;
5870 req_more_codes_from_term();
5871}
5872
5873/*
5874 * Check if there are any unanswered requests and deal with them.
5875 * This is called before starting an external program or getting direct
5876 * keyboard input. We don't want responses to be send to that program or
5877 * handled as typed text.
5878 */
5879 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005880check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881{
5882 int c;
5883
5884 /* If no codes requested or all are answered, no need to wait. */
5885 if (xt_index_out == 0 || xt_index_out == xt_index_in)
5886 return;
5887
5888 /* Vgetc() will check for and handle any response.
5889 * Keep calling vpeekc() until we don't get any responses. */
5890 ++no_mapping;
5891 ++allow_keys;
5892 for (;;)
5893 {
5894 c = vpeekc();
5895 if (c == NUL) /* nothing available */
5896 break;
5897
5898 /* If a response is recognized it's replaced with K_IGNORE, must read
5899 * it from the input stream. If there is no K_IGNORE we can't do
5900 * anything, break here (there might be some responses further on, but
5901 * we don't want to throw away any typed chars). */
5902 if (c != K_SPECIAL && c != K_IGNORE)
5903 break;
5904 c = vgetc();
5905 if (c != K_IGNORE)
5906 {
5907 vungetc(c);
5908 break;
5909 }
5910 }
5911 --no_mapping;
5912 --allow_keys;
5913}
5914#endif
5915
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916/*
5917 * Translate an internal mapping/abbreviation representation into the
Bram Moolenaar2cb9f022019-05-03 15:13:57 +02005918 * corresponding external one recognized by :map/:abbrev commands.
5919 * Respects the current B/k/< settings of 'cpoption'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 *
5921 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaar2cb9f022019-05-03 15:13:57 +02005922 * command-line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 *
Bram Moolenaar2cb9f022019-05-03 15:13:57 +02005924 * It uses a growarray to build the translation string since the latter can be
5925 * wider than the original description. The caller has to free the string
5926 * afterwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 *
5928 * Returns NULL when there is a problem.
5929 */
5930 char_u *
Bram Moolenaar2cb9f022019-05-03 15:13:57 +02005931translate_mapping(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932{
5933 garray_T ga;
5934 int c;
5935 int modifiers;
5936 int cpo_bslash;
5937 int cpo_special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938
5939 ga_init(&ga);
5940 ga.ga_itemsize = 1;
5941 ga.ga_growsize = 40;
5942
5943 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
5944 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945
5946 for (; *str; ++str)
5947 {
5948 c = *str;
5949 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
5950 {
5951 modifiers = 0;
5952 if (str[1] == KS_MODIFIER)
5953 {
5954 str++;
5955 modifiers = *++str;
5956 c = *++str;
5957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
5959 {
Bram Moolenaar2cb9f022019-05-03 15:13:57 +02005960 if (cpo_special)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 {
5962 ga_clear(&ga);
5963 return NULL;
5964 }
5965 c = TO_SPECIAL(str[1], str[2]);
5966 if (c == K_ZERO) /* display <Nul> as ^@ */
5967 c = NUL;
5968 str += 2;
5969 }
5970 if (IS_SPECIAL(c) || modifiers) /* special key */
5971 {
Bram Moolenaar2cb9f022019-05-03 15:13:57 +02005972 if (cpo_special)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 {
5974 ga_clear(&ga);
5975 return NULL;
5976 }
5977 ga_concat(&ga, get_special_key_name(c, modifiers));
5978 continue; /* for (str) */
5979 }
5980 }
5981 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
5982 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
5983 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
5984 if (c)
5985 ga_append(&ga, c);
5986 }
5987 ga_append(&ga, NUL);
5988 return (char_u *)(ga.ga_data);
5989}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005991#if (defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005992static char ksme_str[20];
5993static char ksmr_str[20];
5994static char ksmd_str[20];
5995
5996/*
5997 * For Win32 console: update termcap codes for existing console attributes.
5998 */
5999 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006000update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001{
6002 struct builtin_term *p;
6003
6004 p = find_builtin_term(DEFAULT_TERM);
6005 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
6006 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6007 attr | 0x08); /* FOREGROUND_INTENSITY */
6008 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6009 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
6010
6011 while (p->bt_string != NULL)
6012 {
6013 if (p->bt_entry == (int)KS_ME)
6014 p->bt_string = &ksme_str[0];
6015 else if (p->bt_entry == (int)KS_MR)
6016 p->bt_string = &ksmr_str[0];
6017 else if (p->bt_entry == (int)KS_MD)
6018 p->bt_string = &ksmd_str[0];
6019 ++p;
6020 }
6021}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006022
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006023# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006024# define KSSIZE 20
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006025struct ks_tbl_s
6026{
Bram Moolenaard4f73432018-09-21 12:24:12 +02006027 int code; // value of KS_
6028 char *vtp; // code in vtp mode
6029 char *vtp2; // code in vtp2 mode
6030 char buf[KSSIZE]; // save buffer in non-vtp mode
6031 char vbuf[KSSIZE]; // save buffer in vtp mode
6032 char v2buf[KSSIZE]; // save buffer in vtp2 mode
6033 char arr[KSSIZE]; // real buffer
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006034};
6035
6036static struct ks_tbl_s ks_tbl[] =
6037{
Bram Moolenaard4f73432018-09-21 12:24:12 +02006038 {(int)KS_ME, "\033|0m", "\033|0m"}, // normal
6039 {(int)KS_MR, "\033|7m", "\033|7m"}, // reverse
6040 {(int)KS_MD, "\033|1m", "\033|1m"}, // bold
6041 {(int)KS_SO, "\033|91m", "\033|91m"}, // standout: bright red text
6042 {(int)KS_SE, "\033|39m", "\033|39m"}, // standout end: default color
6043 {(int)KS_CZH, "\033|95m", "\033|95m"}, // italic: bright magenta text
6044 {(int)KS_CZR, "\033|0m", "\033|0m"}, // italic end
6045 {(int)KS_US, "\033|4m", "\033|4m"}, // underscore
6046 {(int)KS_UE, "\033|24m", "\033|24m"}, // underscore end
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006047# ifdef TERMINFO
Bram Moolenaard4f73432018-09-21 12:24:12 +02006048 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm"}, // set background color
6049 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm"}, // set foreground color
Bram Moolenaar6982f422019-02-16 16:48:01 +01006050 {(int)KS_CS, "\033|%p1%d;%p2%dR", "\033|%p1%d;%p2%dR"},
6051 {(int)KS_CSV, "\033|%p1%d;%p2%dV", "\033|%p1%d;%p2%dV"},
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006052# else
Bram Moolenaard4f73432018-09-21 12:24:12 +02006053 {(int)KS_CAB, "\033|%db", "\033|4%dm"}, // set background color
6054 {(int)KS_CAF, "\033|%df", "\033|3%dm"}, // set foreground color
Bram Moolenaar6982f422019-02-16 16:48:01 +01006055 {(int)KS_CS, "\033|%d;%dR", "\033|%d;%dR"},
6056 {(int)KS_CSV, "\033|%d;%dV", "\033|%d;%dV"},
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006057# endif
Bram Moolenaard4f73432018-09-21 12:24:12 +02006058 {(int)KS_CCO, "256", "256"}, // colors
6059 {(int)KS_NAME} // terminator
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006060};
6061
6062 static struct builtin_term *
6063find_first_tcap(
6064 char_u *name,
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006065 int code)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006066{
6067 struct builtin_term *p;
6068
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006069 for (p = find_builtin_term(name); p->bt_string != NULL; ++p)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006070 if (p->bt_entry == code)
6071 return p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006072 return NULL;
6073}
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006074# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006075
6076/*
6077 * For Win32 console: replace the sequence immediately after termguicolors.
6078 */
6079 void
6080swap_tcap(void)
6081{
6082# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006083 static int init_done = FALSE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006084 static int curr_mode;
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006085 struct ks_tbl_s *ks;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006086 struct builtin_term *bt;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006087 int mode;
6088 enum
6089 {
6090 CMODEINDEX,
6091 CMODE24,
6092 CMODE256
6093 };
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006094
6095 /* buffer initialization */
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006096 if (!init_done)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006097 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006098 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006099 {
6100 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006101 if (bt != NULL)
6102 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006103 STRNCPY(ks->buf, bt->bt_string, KSSIZE);
6104 STRNCPY(ks->vbuf, ks->vtp, KSSIZE);
6105 STRNCPY(ks->v2buf, ks->vtp2, KSSIZE);
6106
6107 STRNCPY(ks->arr, bt->bt_string, KSSIZE);
6108 bt->bt_string = &ks->arr[0];
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006109 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006110 }
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006111 init_done = TRUE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006112 curr_mode = CMODEINDEX;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006113 }
6114
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006115 if (p_tgc)
6116 mode = CMODE24;
6117 else if (t_colors >= 256)
6118 mode = CMODE256;
6119 else
6120 mode = CMODEINDEX;
6121
6122 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006123 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006124 bt = find_first_tcap(DEFAULT_TERM, ks->code);
6125 if (bt != NULL)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006126 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006127 switch (curr_mode)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006128 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006129 case CMODEINDEX:
6130 STRNCPY(&ks->buf[0], bt->bt_string, KSSIZE);
6131 break;
6132 case CMODE24:
6133 STRNCPY(&ks->vbuf[0], bt->bt_string, KSSIZE);
6134 break;
6135 default:
6136 STRNCPY(&ks->v2buf[0], bt->bt_string, KSSIZE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006137 }
6138 }
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006139 }
6140
6141 if (mode != curr_mode)
6142 {
6143 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006144 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006145 bt = find_first_tcap(DEFAULT_TERM, ks->code);
6146 if (bt != NULL)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006147 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006148 switch (mode)
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006149 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006150 case CMODEINDEX:
6151 STRNCPY(bt->bt_string, &ks->buf[0], KSSIZE);
6152 break;
6153 case CMODE24:
6154 STRNCPY(bt->bt_string, &ks->vbuf[0], KSSIZE);
6155 break;
6156 default:
6157 STRNCPY(bt->bt_string, &ks->v2buf[0], KSSIZE);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006158 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006159 }
6160 }
6161
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006162 curr_mode = mode;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006163 }
6164# endif
6165}
6166
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167#endif
Bram Moolenaarab302212016-04-26 20:59:29 +02006168
Bram Moolenaar61be73b2016-04-29 22:59:22 +02006169#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaarab302212016-04-26 20:59:29 +02006170 static int
6171hex_digit(int c)
6172{
6173 if (isdigit(c))
6174 return c - '0';
6175 c = TOLOWER_ASC(c);
6176 if (c >= 'a' && c <= 'f')
6177 return c - 'a' + 10;
6178 return 0x1ffffff;
6179}
6180
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006181# ifdef VIMDLL
6182 static guicolor_T
6183gui_adjust_rgb(guicolor_T c)
6184{
6185 if (gui.in_use)
6186 return c;
6187 else
6188 return ((c & 0xff) << 16) | (c & 0x00ff00) | ((c >> 16) & 0xff);
6189}
6190# else
6191# define gui_adjust_rgb(c) (c)
6192# endif
6193
Bram Moolenaarab302212016-04-26 20:59:29 +02006194 guicolor_T
6195gui_get_color_cmn(char_u *name)
6196{
Bram Moolenaar28726652017-01-06 18:16:19 +01006197 /* On MS-Windows an RGB macro is available and it produces 0x00bbggrr color
6198 * values as used by the MS-Windows GDI api. It should be used only for
6199 * MS-Windows GDI builds. */
Bram Moolenaar4f974752019-02-17 17:44:42 +01006200# if defined(RGB) && defined(MSWIN) && !defined(FEAT_GUI)
Bram Moolenaar28726652017-01-06 18:16:19 +01006201# undef RGB
6202# endif
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006203# ifndef RGB
6204# define RGB(r, g, b) ((r<<16) | (g<<8) | (b))
6205# endif
6206# define LINE_LEN 100
Bram Moolenaarab302212016-04-26 20:59:29 +02006207 FILE *fd;
6208 char line[LINE_LEN];
6209 char_u *fname;
6210 int r, g, b, i;
6211 guicolor_T color;
6212
6213 struct rgbcolor_table_S {
6214 char_u *color_name;
6215 guicolor_T color;
6216 };
6217
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006218 /* Only non X11 colors (not present in rgb.txt) and colors in
6219 * color_names[], useful when $VIMRUNTIME is not found,. */
Bram Moolenaarab302212016-04-26 20:59:29 +02006220 static struct rgbcolor_table_S rgb_table[] = {
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006221 {(char_u *)"black", RGB(0x00, 0x00, 0x00)},
6222 {(char_u *)"blue", RGB(0x00, 0x00, 0xFF)},
6223 {(char_u *)"brown", RGB(0xA5, 0x2A, 0x2A)},
6224 {(char_u *)"cyan", RGB(0x00, 0xFF, 0xFF)},
6225 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x8B)},
6226 {(char_u *)"darkcyan", RGB(0x00, 0x8B, 0x8B)},
6227 {(char_u *)"darkgray", RGB(0xA9, 0xA9, 0xA9)},
6228 {(char_u *)"darkgreen", RGB(0x00, 0x64, 0x00)},
6229 {(char_u *)"darkgrey", RGB(0xA9, 0xA9, 0xA9)},
6230 {(char_u *)"darkmagenta", RGB(0x8B, 0x00, 0x8B)},
6231 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)},
6232 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, /* No X11 */
6233 {(char_u *)"gray", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006234 {(char_u *)"green", RGB(0x00, 0xFF, 0x00)},
6235 {(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar21477462016-08-08 20:43:27 +02006236 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
Bram Moolenaarecadf432018-03-20 11:17:04 +01006237 {(char_u *)"grey50", RGB(0x7F, 0x7F, 0x7F)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006238 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006239 {(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)},
6240 {(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)},
6241 {(char_u *)"lightgray", RGB(0xD3, 0xD3, 0xD3)},
6242 {(char_u *)"lightgreen", RGB(0x90, 0xEE, 0x90)},
6243 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)},
6244 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, /* No X11 */
6245 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, /* No X11 */
6246 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xE0)},
6247 {(char_u *)"magenta", RGB(0xFF, 0x00, 0xFF)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006248 {(char_u *)"red", RGB(0xFF, 0x00, 0x00)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006249 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006250 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)},
6251 {(char_u *)"yellow", RGB(0xFF, 0xFF, 0x00)},
Bram Moolenaarab302212016-04-26 20:59:29 +02006252 };
6253
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006254 static struct rgbcolor_table_S *colornames_table;
6255 static int size = 0;
Bram Moolenaarab302212016-04-26 20:59:29 +02006256
6257 if (name[0] == '#' && STRLEN(name) == 7)
6258 {
6259 /* Name is in "#rrggbb" format */
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006260 color = RGB(((hex_digit(name[1]) << 4) + hex_digit(name[2])),
Bram Moolenaarab302212016-04-26 20:59:29 +02006261 ((hex_digit(name[3]) << 4) + hex_digit(name[4])),
6262 ((hex_digit(name[5]) << 4) + hex_digit(name[6])));
6263 if (color > 0xffffff)
6264 return INVALCOLOR;
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006265 return gui_adjust_rgb(color);
Bram Moolenaarab302212016-04-26 20:59:29 +02006266 }
6267
6268 /* Check if the name is one of the colors we know */
6269 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++)
6270 if (STRICMP(name, rgb_table[i].color_name) == 0)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006271 return gui_adjust_rgb(rgb_table[i].color);
Bram Moolenaarab302212016-04-26 20:59:29 +02006272
6273 /*
Bram Moolenaar0ea21e42019-02-12 20:46:48 +01006274 * Last attempt. Look in the file "$VIMRUNTIME/rgb.txt".
Bram Moolenaarab302212016-04-26 20:59:29 +02006275 */
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006276 if (size == 0)
Bram Moolenaarab302212016-04-26 20:59:29 +02006277 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006278 int counting;
Bram Moolenaarab302212016-04-26 20:59:29 +02006279
Bram Moolenaar0ea21e42019-02-12 20:46:48 +01006280 // colornames_table not yet initialized
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006281 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
6282 if (fname == NULL)
6283 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006284
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006285 fd = fopen((char *)fname, "rt");
6286 vim_free(fname);
6287 if (fd == NULL)
Bram Moolenaarab302212016-04-26 20:59:29 +02006288 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006289 if (p_verbose > 1)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006290 verb_msg(_("Cannot open $VIMRUNTIME/rgb.txt"));
Bram Moolenaar0ea21e42019-02-12 20:46:48 +01006291 size = -1; // don't try again
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006292 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006293 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006294
6295 for (counting = 1; counting >= 0; --counting)
6296 {
6297 if (!counting)
6298 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006299 colornames_table = ALLOC_MULT(struct rgbcolor_table_S, size);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006300 if (colornames_table == NULL)
6301 {
6302 fclose(fd);
6303 return INVALCOLOR;
6304 }
6305 rewind(fd);
6306 }
6307 size = 0;
6308
6309 while (!feof(fd))
6310 {
6311 size_t len;
6312 int pos;
6313
Bram Moolenaar42335f52018-09-13 15:33:43 +02006314 vim_ignoredp = fgets(line, LINE_LEN, fd);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006315 len = strlen(line);
6316
6317 if (len <= 1 || line[len - 1] != '\n')
6318 continue;
6319
6320 line[len - 1] = '\0';
6321
6322 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
6323 if (i != 3)
6324 continue;
6325
6326 if (!counting)
6327 {
6328 char_u *s = vim_strsave((char_u *)line + pos);
6329
6330 if (s == NULL)
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006331 {
6332 fclose(fd);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006333 return INVALCOLOR;
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006334 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006335 colornames_table[size].color_name = s;
6336 colornames_table[size].color = (guicolor_T)RGB(r, g, b);
6337 }
6338 size++;
Bram Moolenaar0ea21e42019-02-12 20:46:48 +01006339
6340 // The distributed rgb.txt has less than 1000 entries. Limit to
6341 // 10000, just in case the file was messed up.
6342 if (size == 10000)
6343 break;
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006344 }
6345 }
6346 fclose(fd);
Bram Moolenaarab302212016-04-26 20:59:29 +02006347 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006348
6349 for (i = 0; i < size; i++)
6350 if (STRICMP(name, colornames_table[i].color_name) == 0)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006351 return gui_adjust_rgb(colornames_table[i].color);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006352
Bram Moolenaarab302212016-04-26 20:59:29 +02006353 return INVALCOLOR;
6354}
Bram Moolenaar26af85d2017-07-23 16:45:10 +02006355
6356 guicolor_T
6357gui_get_rgb_color_cmn(int r, int g, int b)
6358{
6359 guicolor_T color = RGB(r, g, b);
6360
6361 if (color > 0xffffff)
6362 return INVALCOLOR;
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006363 return gui_adjust_rgb(color);
Bram Moolenaar26af85d2017-07-23 16:45:10 +02006364}
Bram Moolenaarab302212016-04-26 20:59:29 +02006365#endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006366
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006367#if (defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))) || defined(FEAT_TERMINAL) \
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006368 || defined(PROTO)
6369static int cube_value[] = {
6370 0x00, 0x5F, 0x87, 0xAF, 0xD7, 0xFF
6371};
6372
6373static int grey_ramp[] = {
6374 0x08, 0x12, 0x1C, 0x26, 0x30, 0x3A, 0x44, 0x4E, 0x58, 0x62, 0x6C, 0x76,
6375 0x80, 0x8A, 0x94, 0x9E, 0xA8, 0xB2, 0xBC, 0xC6, 0xD0, 0xDA, 0xE4, 0xEE
6376};
6377
6378# ifdef FEAT_TERMINAL
6379# include "libvterm/include/vterm.h" // for VTERM_ANSI_INDEX_NONE
Bram Moolenaar8a938af2018-05-01 17:30:41 +02006380# else
6381# define VTERM_ANSI_INDEX_NONE 0
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006382# endif
6383
Bram Moolenaar9894e392018-05-05 14:29:06 +02006384static char_u ansi_table[16][4] = {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006385// R G B idx
6386 { 0, 0, 0, 1}, // black
6387 {224, 0, 0, 2}, // dark red
6388 { 0, 224, 0, 3}, // dark green
6389 {224, 224, 0, 4}, // dark yellow / brown
6390 { 0, 0, 224, 5}, // dark blue
6391 {224, 0, 224, 6}, // dark magenta
6392 { 0, 224, 224, 7}, // dark cyan
6393 {224, 224, 224, 8}, // light grey
6394
6395 {128, 128, 128, 9}, // dark grey
6396 {255, 64, 64, 10}, // light red
6397 { 64, 255, 64, 11}, // light green
6398 {255, 255, 64, 12}, // yellow
6399 { 64, 64, 255, 13}, // light blue
6400 {255, 64, 255, 14}, // light magenta
6401 { 64, 255, 255, 15}, // light cyan
6402 {255, 255, 255, 16}, // white
6403};
6404
6405 void
Bram Moolenaar9894e392018-05-05 14:29:06 +02006406cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx)
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006407{
6408 int idx;
6409
6410 if (nr < 16)
6411 {
6412 *r = ansi_table[nr][0];
6413 *g = ansi_table[nr][1];
6414 *b = ansi_table[nr][2];
6415 *ansi_idx = ansi_table[nr][3];
6416 }
6417 else if (nr < 232)
6418 {
6419 /* 216 color cube */
6420 idx = nr - 16;
6421 *r = cube_value[idx / 36 % 6];
6422 *g = cube_value[idx / 6 % 6];
6423 *b = cube_value[idx % 6];
6424 *ansi_idx = VTERM_ANSI_INDEX_NONE;
6425 }
6426 else if (nr < 256)
6427 {
6428 /* 24 grey scale ramp */
6429 idx = nr - 232;
6430 *r = grey_ramp[idx];
6431 *g = grey_ramp[idx];
6432 *b = grey_ramp[idx];
6433 *ansi_idx = VTERM_ANSI_INDEX_NONE;
6434 }
6435 else
6436 {
6437 *r = 0;
6438 *g = 0;
6439 *b = 0;
6440 *ansi_idx = 0;
6441 }
6442}
6443#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01006444