blob: 45dde3c284c33d07495805fec23c743bd0482b7e [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
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +010030# include <termios.h> // seems to be required for some Linux
Bram Moolenaar071d4272004-06-13 20:20:40 +000031# 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
Bram Moolenaar467676d2020-12-30 13:14:45 +010041# define TPUTSFUNCAST (void (*)(unsigned int))
Bram Moolenaar071d4272004-06-13 20:20:40 +000042# else
43# ifdef HAVE_OUTFUNTYPE
44# define TPUTSFUNCAST (outfuntype)
45# else
Bram Moolenaar86394aa2020-09-05 14:27:24 +020046# define TPUTSFUNCAST (int (*)(int))
Bram Moolenaar071d4272004-06-13 20:20:40 +000047# 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
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +010074// start of keys that are not directly used by Vim but can be mapped
Bram Moolenaar071d4272004-06-13 20:20:40 +000075#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 Moolenaar0d6f5d92019-12-05 21:33:15 +0100100 // Change this to "if 1" to debug what happens with termresponse.
Bram Moolenaar2951b772013-07-03 12:45:31 +0200101# if 0
102# define DEBUG_TERMRESPONSE
Bram Moolenaar952d9d82021-08-02 18:07:18 +0200103static void log_tr(const char *fmt, ...) ATTRIBUTE_FORMAT_PRINTF(1, 2);
Bram Moolenaarb255b902018-04-24 21:40:10 +0200104# 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 Moolenaara45551a2020-06-09 15:57:37 +0200129// Request xterm compatibility check:
130static termrequest_T xcc_status = TERMREQUEST_INIT;
131
Bram Moolenaar9377df32017-10-15 13:22:01 +0200132# ifdef FEAT_TERMINAL
Bram Moolenaarafd78262019-05-10 23:10:31 +0200133// Request foreground color report:
134static termrequest_T rfg_status = TERMREQUEST_INIT;
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200135static int fg_r = 0;
136static int fg_g = 0;
137static int fg_b = 0;
138static int bg_r = 255;
139static int bg_g = 255;
140static int bg_b = 255;
Bram Moolenaar9377df32017-10-15 13:22:01 +0200141# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200142
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100143// Request background color report:
Bram Moolenaarafd78262019-05-10 23:10:31 +0200144static termrequest_T rbg_status = TERMREQUEST_INIT;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200145
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100146// Request cursor blinking mode report:
Bram Moolenaarafd78262019-05-10 23:10:31 +0200147static termrequest_T rbm_status = TERMREQUEST_INIT;
Bram Moolenaar4db25542017-08-28 22:43:05 +0200148
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100149// Request cursor style report:
Bram Moolenaarafd78262019-05-10 23:10:31 +0200150static termrequest_T rcs_status = TERMREQUEST_INIT;
Bram Moolenaar89894aa2018-03-05 22:43:10 +0100151
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100152// Request window's position report:
Bram Moolenaarafd78262019-05-10 23:10:31 +0200153static termrequest_T winpos_status = TERMREQUEST_INIT;
154
155static termrequest_T *all_termrequests[] = {
156 &crv_status,
157 &u7_status,
Bram Moolenaara45551a2020-06-09 15:57:37 +0200158 &xcc_status,
Bram Moolenaarafd78262019-05-10 23:10:31 +0200159# ifdef FEAT_TERMINAL
160 &rfg_status,
161# endif
162 &rbg_status,
163 &rbm_status,
164 &rcs_status,
165 &winpos_status,
166 NULL
167};
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168# endif
169
170/*
171 * Don't declare these variables if termcap.h contains them.
172 * Autoconf checks if these variables should be declared extern (not all
173 * systems have them).
174 * Some versions define ospeed to be speed_t, but that is incompatible with
175 * BSD, where ospeed is short and speed_t is long.
176 */
177# ifndef HAVE_OSPEED
178# ifdef OSPEED_EXTERN
179extern short ospeed;
180# else
181short ospeed;
182# endif
183# endif
184# ifndef HAVE_UP_BC_PC
185# ifdef UP_BC_PC_EXTERN
186extern char *UP, *BC, PC;
187# else
188char *UP, *BC, PC;
189# endif
190# endif
191
192# define TGETSTR(s, p) vim_tgetstr((s), (p))
193# define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100194static char_u *vim_tgetstr(char *s, char_u **pp);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100195#endif // HAVE_TGETENT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100197static int detected_8bit = FALSE; // detected 8-bit terminal
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198
Bram Moolenaar681fc3f2021-01-14 17:35:21 +0100199#if (defined(UNIX) || defined(VMS))
200static int focus_mode = FALSE; // xterm's "focus reporting" availability
201static int focus_state = FALSE; // TRUE if the terminal window gains focus
202#endif
203
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200204#ifdef FEAT_TERMRESPONSE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100205// When the cursor shape was detected these values are used:
206// 1: block, 2: underline, 3: vertical bar
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200207static int initial_cursor_shape = 0;
Bram Moolenaar4db25542017-08-28 22:43:05 +0200208
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100209// The blink flag from the style response may be inverted from the actual
210// blinking state, xterm XORs the flags.
Bram Moolenaar4db25542017-08-28 22:43:05 +0200211static int initial_cursor_shape_blink = FALSE;
212
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100213// The blink flag from the blinking-cursor mode response
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200214static int initial_cursor_blink = FALSE;
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200215#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200216
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000217static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218{
219
220#if defined(FEAT_GUI)
221/*
222 * GUI pseudo term-cap.
223 */
224 {(int)KS_NAME, "gui"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000225 {(int)KS_CE, "\033|$"},
226 {(int)KS_AL, "\033|i"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000228 {(int)KS_CAL, "\033|%p1%dI"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000230 {(int)KS_CAL, "\033|%dI"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000232 {(int)KS_DL, "\033|d"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000234 {(int)KS_CDL, "\033|%p1%dD"},
235 {(int)KS_CS, "\033|%p1%d;%p2%dR"},
236 {(int)KS_CSV, "\033|%p1%d;%p2%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000238 {(int)KS_CDL, "\033|%dD"},
239 {(int)KS_CS, "\033|%d;%dR"},
240 {(int)KS_CSV, "\033|%d;%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000242 {(int)KS_CL, "\033|C"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100243 // attributes switched on with 'h', off with * 'H'
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000244 {(int)KS_ME, "\033|31H"}, // HL_ALL
245 {(int)KS_MR, "\033|1h"}, // HL_INVERSE
246 {(int)KS_MD, "\033|2h"}, // HL_BOLD
247 {(int)KS_SE, "\033|16H"}, // HL_STANDOUT
248 {(int)KS_SO, "\033|16h"}, // HL_STANDOUT
249 {(int)KS_UE, "\033|8H"}, // HL_UNDERLINE
250 {(int)KS_US, "\033|8h"}, // HL_UNDERLINE
251 {(int)KS_UCE, "\033|8C"}, // HL_UNDERCURL
252 {(int)KS_UCS, "\033|8c"}, // HL_UNDERCURL
253 {(int)KS_STE, "\033|4C"}, // HL_STRIKETHROUGH
254 {(int)KS_STS, "\033|4c"}, // HL_STRIKETHROUGH
255 {(int)KS_CZR, "\033|4H"}, // HL_ITALIC
256 {(int)KS_CZH, "\033|4h"}, // HL_ITALIC
257 {(int)KS_VB, "\033|f"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258 {(int)KS_MS, "y"},
259 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100260 {(int)KS_XN, "y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100261 {(int)KS_LE, "\b"}, // cursor-left = BS
262 {(int)KS_ND, "\014"}, // cursor-right = CTRL-L
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000264 {(int)KS_CM, "\033|%p1%d;%p2%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000266 {(int)KS_CM, "\033|%d;%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100268 // there are no key sequences here, the GUI sequences are recognized
269 // in check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270#endif
271
272#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273
274# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
275/*
276 * Amiga console window, default for Amiga
277 */
278 {(int)KS_NAME, "amiga"},
279 {(int)KS_CE, "\033[K"},
280 {(int)KS_CD, "\033[J"},
281 {(int)KS_AL, "\033[L"},
282# ifdef TERMINFO
283 {(int)KS_CAL, "\033[%p1%dL"},
284# else
285 {(int)KS_CAL, "\033[%dL"},
286# endif
287 {(int)KS_DL, "\033[M"},
288# ifdef TERMINFO
289 {(int)KS_CDL, "\033[%p1%dM"},
290# else
291 {(int)KS_CDL, "\033[%dM"},
292# endif
293 {(int)KS_CL, "\014"},
294 {(int)KS_VI, "\033[0 p"},
295 {(int)KS_VE, "\033[1 p"},
296 {(int)KS_ME, "\033[0m"},
297 {(int)KS_MR, "\033[7m"},
298 {(int)KS_MD, "\033[1m"},
299 {(int)KS_SE, "\033[0m"},
300 {(int)KS_SO, "\033[33m"},
301 {(int)KS_US, "\033[4m"},
302 {(int)KS_UE, "\033[0m"},
303 {(int)KS_CZH, "\033[3m"},
304 {(int)KS_CZR, "\033[0m"},
Bram Moolenaar2d718262020-11-21 12:44:56 +0100305#if defined(__amigaos4__) || defined(__MORPHOS__) || defined(__AROS__)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100306 {(int)KS_CCO, "8"}, // allow 8 colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307# ifdef TERMINFO
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100308 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
309 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100311 {(int)KS_CAB, "\033[4%dm"}, // set background color
312 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100314 {(int)KS_OP, "\033[m"}, // reset colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315#endif
316 {(int)KS_MS, "y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100317 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 {(int)KS_LE, "\b"},
319# ifdef TERMINFO
320 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
321# else
322 {(int)KS_CM, "\033[%i%d;%dH"},
323# endif
324#if defined(__MORPHOS__)
325 {(int)KS_SR, "\033M"},
326#endif
327# ifdef TERMINFO
328 {(int)KS_CRI, "\033[%p1%dC"},
329# else
330 {(int)KS_CRI, "\033[%dC"},
331# endif
332 {K_UP, "\233A"},
333 {K_DOWN, "\233B"},
334 {K_LEFT, "\233D"},
335 {K_RIGHT, "\233C"},
336 {K_S_UP, "\233T"},
337 {K_S_DOWN, "\233S"},
338 {K_S_LEFT, "\233 A"},
339 {K_S_RIGHT, "\233 @"},
340 {K_S_TAB, "\233Z"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100341 {K_F1, "\233\060~"},// some compilers don't dig "\2330"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 {K_F2, "\233\061~"},
343 {K_F3, "\233\062~"},
344 {K_F4, "\233\063~"},
345 {K_F5, "\233\064~"},
346 {K_F6, "\233\065~"},
347 {K_F7, "\233\066~"},
348 {K_F8, "\233\067~"},
349 {K_F9, "\233\070~"},
350 {K_F10, "\233\071~"},
351 {K_S_F1, "\233\061\060~"},
352 {K_S_F2, "\233\061\061~"},
353 {K_S_F3, "\233\061\062~"},
354 {K_S_F4, "\233\061\063~"},
355 {K_S_F5, "\233\061\064~"},
356 {K_S_F6, "\233\061\065~"},
357 {K_S_F7, "\233\061\066~"},
358 {K_S_F8, "\233\061\067~"},
359 {K_S_F9, "\233\061\070~"},
360 {K_S_F10, "\233\061\071~"},
361 {K_HELP, "\233?~"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100362 {K_INS, "\233\064\060~"}, // 101 key keyboard
363 {K_PAGEUP, "\233\064\061~"}, // 101 key keyboard
364 {K_PAGEDOWN, "\233\064\062~"}, // 101 key keyboard
365 {K_HOME, "\233\064\064~"}, // 101 key keyboard
366 {K_END, "\233\064\065~"}, // 101 key keyboard
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367
368 {BT_EXTRA_KEYS, ""},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100369 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, // shifted home key
370 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, // shifted insert key
371 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, // shifted end key
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372# endif
373
Bram Moolenaar041c7102020-05-30 18:14:57 +0200374# ifdef ALL_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375/*
Bram Moolenaar041c7102020-05-30 18:14:57 +0200376 * almost standard ANSI terminal
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 {(int)KS_CE, "\033[K"},
379 {(int)KS_CD, "\033[J"},
380 {(int)KS_AL, "\033[L"},
381# ifdef TERMINFO
382 {(int)KS_CAL, "\033[%p1%dL"},
383# else
384 {(int)KS_CAL, "\033[%dL"},
385# endif
386 {(int)KS_DL, "\033[M"},
387# ifdef TERMINFO
388 {(int)KS_CDL, "\033[%p1%dM"},
389# else
390 {(int)KS_CDL, "\033[%dM"},
391# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 {(int)KS_CL, "\033[H\033[2J"},
393#ifdef notyet
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100394 {(int)KS_VI, "[VI]"}, // cursor invisible, VT320: CSI ? 25 l
395 {(int)KS_VE, "[VE]"}, // cursor visible, VT320: CSI ? 25 h
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100397 {(int)KS_ME, "\033[m"}, // normal mode
398 {(int)KS_MR, "\033[7m"}, // reverse
399 {(int)KS_MD, "\033[1m"}, // bold
400 {(int)KS_SO, "\033[31m"}, // standout mode: red
401 {(int)KS_SE, "\033[m"}, // standout end
402 {(int)KS_CZH, "\033[35m"}, // italic: purple
403 {(int)KS_CZR, "\033[m"}, // italic end
404 {(int)KS_US, "\033[4m"}, // underscore mode
405 {(int)KS_UE, "\033[m"}, // underscore end
406 {(int)KS_CCO, "8"}, // allow 8 colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407# ifdef TERMINFO
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100408 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
409 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100411 {(int)KS_CAB, "\033[4%dm"}, // set background color
412 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100414 {(int)KS_OP, "\033[m"}, // reset colors
415 {(int)KS_MS, "y"}, // safe to move cur in reverse mode
416 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 {(int)KS_LE, "\b"},
418# ifdef TERMINFO
419 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
420# else
421 {(int)KS_CM, "\033[%i%d;%dH"},
422# endif
423 {(int)KS_SR, "\033M"},
424# ifdef TERMINFO
425 {(int)KS_CRI, "\033[%p1%dC"},
426# else
427 {(int)KS_CRI, "\033[%dC"},
428# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429
430 {K_UP, "\033[A"},
431 {K_DOWN, "\033[B"},
432 {K_LEFT, "\033[D"},
433 {K_RIGHT, "\033[C"},
434# endif
435
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200436# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437/*
438 * standard ANSI terminal, default for unix
439 */
440 {(int)KS_NAME, "ansi"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000441 {(int)KS_CE, "\033[K"},
442 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000444 {(int)KS_CAL, "\033[%p1%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000446 {(int)KS_CAL, "\033[%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000448 {(int)KS_DL, "\033[M"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000450 {(int)KS_CDL, "\033[%p1%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000452 {(int)KS_CDL, "\033[%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000454 {(int)KS_CL, "\033[H\033[2J"},
455 {(int)KS_ME, "\033[0m"},
456 {(int)KS_MR, "\033[7m"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457 {(int)KS_MS, "y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100458 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 {(int)KS_LE, "\b"},
460# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000461 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000463 {(int)KS_CM, "\033[%i%d;%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464# endif
465# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000466 {(int)KS_CRI, "\033[%p1%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000468 {(int)KS_CRI, "\033[%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469# endif
470# endif
471
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200472# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473/*
474 * These codes are valid when nansi.sys or equivalent has been installed.
475 * Function keys on a PC are preceded with a NUL. These are converted into
476 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
477 * CTRL-arrow is used instead of SHIFT-arrow.
478 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 {(int)KS_NAME, "pcansi"},
480 {(int)KS_DL, "\033[M"},
481 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 {(int)KS_CE, "\033[K"},
483 {(int)KS_CL, "\033[2J"},
484 {(int)KS_ME, "\033[0m"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100485 {(int)KS_MR, "\033[5m"}, // reverse: black on lightgrey
486 {(int)KS_MD, "\033[1m"}, // bold: white text
487 {(int)KS_SE, "\033[0m"}, // standout end
488 {(int)KS_SO, "\033[31m"}, // standout: white on blue
489 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow
490 {(int)KS_CZR, "\033[0m"}, // italic mode end
491 {(int)KS_US, "\033[36;41m"}, // underscore mode: cyan text on red
492 {(int)KS_UE, "\033[0m"}, // underscore mode end
493 {(int)KS_CCO, "8"}, // allow 8 colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494# ifdef TERMINFO
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100495 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
496 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100498 {(int)KS_CAB, "\033[4%dm"}, // set background color
499 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100501 {(int)KS_OP, "\033[0m"}, // reset colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 {(int)KS_MS, "y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100503 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 {(int)KS_LE, "\b"},
505# ifdef TERMINFO
506 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
507# else
508 {(int)KS_CM, "\033[%i%d;%dH"},
509# endif
510# ifdef TERMINFO
511 {(int)KS_CRI, "\033[%p1%dC"},
512# else
513 {(int)KS_CRI, "\033[%dC"},
514# endif
515 {K_UP, "\316H"},
516 {K_DOWN, "\316P"},
517 {K_LEFT, "\316K"},
518 {K_RIGHT, "\316M"},
519 {K_S_LEFT, "\316s"},
520 {K_S_RIGHT, "\316t"},
521 {K_F1, "\316;"},
522 {K_F2, "\316<"},
523 {K_F3, "\316="},
524 {K_F4, "\316>"},
525 {K_F5, "\316?"},
526 {K_F6, "\316@"},
527 {K_F7, "\316A"},
528 {K_F8, "\316B"},
529 {K_F9, "\316C"},
530 {K_F10, "\316D"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100531 {K_F11, "\316\205"}, // guessed
532 {K_F12, "\316\206"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 {K_S_F1, "\316T"},
534 {K_S_F2, "\316U"},
535 {K_S_F3, "\316V"},
536 {K_S_F4, "\316W"},
537 {K_S_F5, "\316X"},
538 {K_S_F6, "\316Y"},
539 {K_S_F7, "\316Z"},
540 {K_S_F8, "\316["},
541 {K_S_F9, "\316\\"},
542 {K_S_F10, "\316]"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100543 {K_S_F11, "\316\207"}, // guessed
544 {K_S_F12, "\316\210"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 {K_INS, "\316R"},
546 {K_DEL, "\316S"},
547 {K_HOME, "\316G"},
548 {K_END, "\316O"},
549 {K_PAGEDOWN, "\316Q"},
550 {K_PAGEUP, "\316I"},
551# endif
552
Bram Moolenaar4f974752019-02-17 17:44:42 +0100553# if defined(MSWIN) || defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554/*
555 * These codes are valid for the Win32 Console . The entries that start with
556 * ESC | are translated into console calls in os_win32.c. The function keys
557 * are also translated in os_win32.c.
558 */
559 {(int)KS_NAME, "win32"},
Bram Moolenaar6982f422019-02-16 16:48:01 +0100560 {(int)KS_CE, "\033|K"}, // clear to end of line
561 {(int)KS_AL, "\033|L"}, // add new blank line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100563 {(int)KS_CAL, "\033|%p1%dL"}, // add number of new blank lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100565 {(int)KS_CAL, "\033|%dL"}, // add number of new blank lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566# endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100567 {(int)KS_DL, "\033|M"}, // delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100569 {(int)KS_CDL, "\033|%p1%dM"}, // delete number of lines
570 {(int)KS_CSV, "\033|%p1%d;%p2%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100572 {(int)KS_CDL, "\033|%dM"}, // delete number of lines
573 {(int)KS_CSV, "\033|%d;%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574# endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100575 {(int)KS_CL, "\033|J"}, // clear screen
576 {(int)KS_CD, "\033|j"}, // clear to end of display
577 {(int)KS_VI, "\033|v"}, // cursor invisible
578 {(int)KS_VE, "\033|V"}, // cursor visible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579
Bram Moolenaar6982f422019-02-16 16:48:01 +0100580 {(int)KS_ME, "\033|0m"}, // normal
581 {(int)KS_MR, "\033|112m"}, // reverse: black on lightgray
582 {(int)KS_MD, "\033|15m"}, // bold: white on black
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583#if 1
Bram Moolenaar6982f422019-02-16 16:48:01 +0100584 {(int)KS_SO, "\033|31m"}, // standout: white on blue
585 {(int)KS_SE, "\033|0m"}, // standout end
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586#else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100587 {(int)KS_SO, "\033|F"}, // standout: high intensity
588 {(int)KS_SE, "\033|f"}, // standout end
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589#endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100590 {(int)KS_CZH, "\033|225m"}, // italic: blue text on yellow
591 {(int)KS_CZR, "\033|0m"}, // italic end
592 {(int)KS_US, "\033|67m"}, // underscore: cyan text on red
593 {(int)KS_UE, "\033|0m"}, // underscore end
594 {(int)KS_CCO, "16"}, // allow 16 colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100596 {(int)KS_CAB, "\033|%p1%db"}, // set background color
597 {(int)KS_CAF, "\033|%p1%df"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100599 {(int)KS_CAB, "\033|%db"}, // set background color
600 {(int)KS_CAF, "\033|%df"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601# endif
602
Bram Moolenaar6982f422019-02-16 16:48:01 +0100603 {(int)KS_MS, "y"}, // save to move cur in reverse mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100605 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 {(int)KS_LE, "\b"},
607# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100608 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"}, // cursor motion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100610 {(int)KS_CM, "\033|%i%d;%dH"}, // cursor motion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611# endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100612 {(int)KS_VB, "\033|B"}, // visual bell
613 {(int)KS_TI, "\033|S"}, // put terminal in termcap mode
614 {(int)KS_TE, "\033|E"}, // out of termcap mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100616 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"}, // scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100618 {(int)KS_CS, "\033|%i%d;%dr"}, // scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100620# ifdef FEAT_TERMGUICOLORS
621 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"},
622 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"},
623# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624
625 {K_UP, "\316H"},
626 {K_DOWN, "\316P"},
627 {K_LEFT, "\316K"},
628 {K_RIGHT, "\316M"},
629 {K_S_UP, "\316\304"},
630 {K_S_DOWN, "\316\317"},
631 {K_S_LEFT, "\316\311"},
632 {K_C_LEFT, "\316s"},
633 {K_S_RIGHT, "\316\313"},
634 {K_C_RIGHT, "\316t"},
635 {K_S_TAB, "\316\017"},
636 {K_F1, "\316;"},
637 {K_F2, "\316<"},
638 {K_F3, "\316="},
639 {K_F4, "\316>"},
640 {K_F5, "\316?"},
641 {K_F6, "\316@"},
642 {K_F7, "\316A"},
643 {K_F8, "\316B"},
644 {K_F9, "\316C"},
645 {K_F10, "\316D"},
646 {K_F11, "\316\205"},
647 {K_F12, "\316\206"},
648 {K_S_F1, "\316T"},
649 {K_S_F2, "\316U"},
650 {K_S_F3, "\316V"},
651 {K_S_F4, "\316W"},
652 {K_S_F5, "\316X"},
653 {K_S_F6, "\316Y"},
654 {K_S_F7, "\316Z"},
655 {K_S_F8, "\316["},
656 {K_S_F9, "\316\\"},
657 {K_S_F10, "\316]"},
658 {K_S_F11, "\316\207"},
659 {K_S_F12, "\316\210"},
660 {K_INS, "\316R"},
661 {K_DEL, "\316S"},
662 {K_HOME, "\316G"},
663 {K_S_HOME, "\316\302"},
664 {K_C_HOME, "\316w"},
665 {K_END, "\316O"},
666 {K_S_END, "\316\315"},
667 {K_C_END, "\316u"},
668 {K_PAGEDOWN, "\316Q"},
669 {K_PAGEUP, "\316I"},
670 {K_KPLUS, "\316N"},
671 {K_KMINUS, "\316J"},
672 {K_KMULTIPLY, "\316\067"},
673 {K_K0, "\316\332"},
674 {K_K1, "\316\336"},
675 {K_K2, "\316\342"},
676 {K_K3, "\316\346"},
677 {K_K4, "\316\352"},
678 {K_K5, "\316\356"},
679 {K_K6, "\316\362"},
680 {K_K7, "\316\366"},
681 {K_K8, "\316\372"},
682 {K_K9, "\316\376"},
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100683 {K_BS, "\316x"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684# endif
685
686# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
687/*
688 * VT320 is working as an ANSI terminal compatible DEC terminal.
689 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 * TODO:- rewrite ESC[ codes to CSI
691 * - keyboard languages (CSI ? 26 n)
692 */
693 {(int)KS_NAME, "vt320"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000694 {(int)KS_CE, "\033[K"},
695 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000697 {(int)KS_CAL, "\033[%p1%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000699 {(int)KS_CAL, "\033[%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000701 {(int)KS_DL, "\033[M"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000703 {(int)KS_CDL, "\033[%p1%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000705 {(int)KS_CDL, "\033[%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000707 {(int)KS_CL, "\033[H\033[2J"},
708 {(int)KS_CD, "\033[J"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100709 {(int)KS_CCO, "8"}, // allow 8 colors
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000710 {(int)KS_ME, "\033[0m"},
711 {(int)KS_MR, "\033[7m"},
712 {(int)KS_MD, "\033[1m"}, // bold mode
713 {(int)KS_SE, "\033[22m"},// normal mode
714 {(int)KS_UE, "\033[24m"},// exit underscore mode
715 {(int)KS_US, "\033[4m"}, // underscore mode
716 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow
717 {(int)KS_CZR, "\033[0m"}, // italic mode end
718 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI)
719 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI)
720 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color
721 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 {(int)KS_MS, "y"},
723 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100724 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 {(int)KS_LE, "\b"},
726# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000727 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000729 {(int)KS_CM, "\033[%i%d;%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730# endif
731# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000732 {(int)KS_CRI, "\033[%p1%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000734 {(int)KS_CRI, "\033[%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000736 {K_UP, "\033[A"},
737 {K_DOWN, "\033[B"},
738 {K_RIGHT, "\033[C"},
739 {K_LEFT, "\033[D"},
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200740 // Note: cursor key sequences for application cursor mode are omitted,
741 // because they interfere with typed commands: <Esc>OA.
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000742 {K_F1, "\033[11~"},
743 {K_F2, "\033[12~"},
744 {K_F3, "\033[13~"},
745 {K_F4, "\033[14~"},
746 {K_F5, "\033[15~"},
747 {K_F6, "\033[17~"},
748 {K_F7, "\033[18~"},
749 {K_F8, "\033[19~"},
750 {K_F9, "\033[20~"},
751 {K_F10, "\033[21~"},
752 {K_F11, "\033[23~"},
753 {K_F12, "\033[24~"},
754 {K_F13, "\033[25~"},
755 {K_F14, "\033[26~"},
756 {K_F15, "\033[28~"}, // Help
757 {K_F16, "\033[29~"}, // Select
758 {K_F17, "\033[31~"},
759 {K_F18, "\033[32~"},
760 {K_F19, "\033[33~"},
761 {K_F20, "\033[34~"},
762 {K_INS, "\033[2~"},
763 {K_DEL, "\033[3~"},
764 {K_HOME, "\033[1~"},
765 {K_END, "\033[4~"},
766 {K_PAGEUP, "\033[5~"},
767 {K_PAGEDOWN, "\033[6~"},
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200768 // These sequences starting with <Esc> O may interfere with what the user
769 // is typing. Remove these if that bothers you.
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000770 {K_KPLUS, "\033Ok"}, // keypad plus
771 {K_KMINUS, "\033Om"}, // keypad minus
772 {K_KDIVIDE, "\033Oo"}, // keypad /
773 {K_KMULTIPLY, "\033Oj"}, // keypad *
774 {K_KENTER, "\033OM"}, // keypad Enter
775 {K_K0, "\033Op"}, // keypad 0
776 {K_K1, "\033Oq"}, // keypad 1
777 {K_K2, "\033Or"}, // keypad 2
778 {K_K3, "\033Os"}, // keypad 3
779 {K_K4, "\033Ot"}, // keypad 4
780 {K_K5, "\033Ou"}, // keypad 5
781 {K_K6, "\033Ov"}, // keypad 6
782 {K_K7, "\033Ow"}, // keypad 7
783 {K_K8, "\033Ox"}, // keypad 8
784 {K_K9, "\033Oy"}, // keypad 9
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100785 {K_BS, "\x7f"}, // for some reason 0177 doesn't work
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786# endif
787
Bram Moolenaare3f915d2020-07-14 23:02:44 +0200788# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789/*
790 * Ordinary vt52
791 */
792 {(int)KS_NAME, "vt52"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000793 {(int)KS_CE, "\033K"},
794 {(int)KS_CD, "\033J"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100795# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000796 {(int)KS_CM, "\033Y%p1%' '%+%c%p2%' '%+%c"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100797# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000798 {(int)KS_CM, "\033Y%+ %+ "},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100799# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 {(int)KS_LE, "\b"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000801 {(int)KS_SR, "\033I"},
802 {(int)KS_AL, "\033L"},
803 {(int)KS_DL, "\033M"},
804 {K_UP, "\033A"},
805 {K_DOWN, "\033B"},
806 {K_LEFT, "\033D"},
807 {K_RIGHT, "\033C"},
808 {K_F1, "\033P"},
809 {K_F2, "\033Q"},
810 {K_F3, "\033R"},
811 {(int)KS_CL, "\033H\033J"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 {(int)KS_MS, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813# endif
814
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200815# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200816 {(int)KS_NAME, "xterm"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000817 {(int)KS_CE, "\033[K"},
818 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000820 {(int)KS_CAL, "\033[%p1%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000822 {(int)KS_CAL, "\033[%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000824 {(int)KS_DL, "\033[M"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000826 {(int)KS_CDL, "\033[%p1%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000828 {(int)KS_CDL, "\033[%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829# endif
830# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000831 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000833 {(int)KS_CS, "\033[%i%d;%dr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000835 {(int)KS_CL, "\033[H\033[2J"},
836 {(int)KS_CD, "\033[J"},
837 {(int)KS_ME, "\033[m"},
838 {(int)KS_MR, "\033[7m"},
839 {(int)KS_MD, "\033[1m"},
840 {(int)KS_UE, "\033[m"},
841 {(int)KS_US, "\033[4m"},
842 {(int)KS_STE, "\033[29m"},
843 {(int)KS_STS, "\033[9m"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 {(int)KS_MS, "y"},
845 {(int)KS_UT, "y"},
846 {(int)KS_LE, "\b"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000847 {(int)KS_VI, "\033[?25l"},
848 {(int)KS_VE, "\033[?25h"},
849 {(int)KS_VS, "\033[?12h"},
850 {(int)KS_CVS, "\033[?12l"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200851# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000852 {(int)KS_CSH, "\033[%p1%d q"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200853# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000854 {(int)KS_CSH, "\033[%d q"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200855# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000856 {(int)KS_CRC, "\033[?12$p"},
857 {(int)KS_CRS, "\033P$q q\033\\"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000859 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000861 {(int)KS_CM, "\033[%i%d;%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000863 {(int)KS_SR, "\033M"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000865 {(int)KS_CRI, "\033[%p1%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000867 {(int)KS_CRI, "\033[%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000869 {(int)KS_KS, "\033[?1h\033="},
870 {(int)KS_KE, "\033[?1l\033>"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871# ifdef FEAT_XTERM_SAVE
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000872 {(int)KS_TI, "\0337\033[?47h"},
873 {(int)KS_TE, "\033[?47l\0338"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000875 {(int)KS_CTI, "\033[>4;2m"},
876 {(int)KS_CTE, "\033[>4;m"},
877 {(int)KS_CIS, "\033]1;"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 {(int)KS_CIE, "\007"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000879 {(int)KS_TS, "\033]2;"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 {(int)KS_FS, "\007"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000881 {(int)KS_CSC, "\033]12;"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200882 {(int)KS_CEC, "\007"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000884 {(int)KS_CWS, "\033[8;%p1%d;%p2%dt"},
885 {(int)KS_CWP, "\033[3;%p1%d;%p2%dt"},
886 {(int)KS_CGP, "\033[13t"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000888 {(int)KS_CWS, "\033[8;%d;%dt"},
889 {(int)KS_CWP, "\033[3;%d;%dt"},
890 {(int)KS_CGP, "\033[13t"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000892 {(int)KS_CRV, "\033[>c"},
893 {(int)KS_RFG, "\033]10;?\007"},
894 {(int)KS_RBG, "\033]11;?\007"},
895 {(int)KS_U7, "\033[6n"},
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200896# ifdef FEAT_TERMGUICOLORS
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100897 // These are printf strings, not terminal codes.
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000898 {(int)KS_8F, "\033[38;2;%lu;%lu;%lum"},
899 {(int)KS_8B, "\033[48;2;%lu;%lu;%lum"},
900 {(int)KS_8U, "\033[58;2;%lu;%lu;%lum"},
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200901# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000902 {(int)KS_CAU, "\033[58;5;%dm"},
903 {(int)KS_CBE, "\033[?2004h"},
904 {(int)KS_CBD, "\033[?2004l"},
905 {(int)KS_CST, "\033[22;2t"},
906 {(int)KS_CRT, "\033[23;2t"},
907 {(int)KS_SSI, "\033[22;1t"},
908 {(int)KS_SRI, "\033[23;1t"},
Bram Moolenaar681fc3f2021-01-14 17:35:21 +0100909# if (defined(UNIX) || defined(VMS))
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000910 {(int)KS_FD, "\033[?1004l"},
911 {(int)KS_FE, "\033[?1004h"},
Bram Moolenaar681fc3f2021-01-14 17:35:21 +0100912# endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000913
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000914 {K_UP, "\033O*A"},
915 {K_DOWN, "\033O*B"},
916 {K_RIGHT, "\033O*C"},
917 {K_LEFT, "\033O*D"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100918 // An extra set of cursor keys for vt100 mode
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000919 {K_XUP, "\033[@;*A"},
920 {K_XDOWN, "\033[@;*B"},
921 {K_XRIGHT, "\033[@;*C"},
922 {K_XLEFT, "\033[@;*D"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100923 // An extra set of function keys for vt100 mode
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000924 {K_XF1, "\033O*P"},
925 {K_XF2, "\033O*Q"},
926 {K_XF3, "\033O*R"},
927 {K_XF4, "\033O*S"},
928 {K_F1, "\033[11;*~"},
929 {K_F2, "\033[12;*~"},
930 {K_F3, "\033[13;*~"},
931 {K_F4, "\033[14;*~"},
932 {K_F5, "\033[15;*~"},
933 {K_F6, "\033[17;*~"},
934 {K_F7, "\033[18;*~"},
935 {K_F8, "\033[19;*~"},
936 {K_F9, "\033[20;*~"},
937 {K_F10, "\033[21;*~"},
938 {K_F11, "\033[23;*~"},
939 {K_F12, "\033[24;*~"},
940 {K_S_TAB, "\033[Z"},
941 {K_HELP, "\033[28;*~"},
942 {K_UNDO, "\033[26;*~"},
943 {K_INS, "\033[2;*~"},
944 {K_HOME, "\033[1;*H"},
945 // {K_S_HOME, "\033O2H"},
946 // {K_C_HOME, "\033O5H"},
947 {K_KHOME, "\033[1;*~"},
948 {K_XHOME, "\033O*H"}, // other Home
949 {K_ZHOME, "\033[7;*~"}, // other Home
950 {K_END, "\033[1;*F"},
951 // {K_S_END, "\033O2F"},
952 // {K_C_END, "\033O5F"},
953 {K_KEND, "\033[4;*~"},
954 {K_XEND, "\033O*F"}, // other End
955 {K_ZEND, "\033[8;*~"},
956 {K_PAGEUP, "\033[5;*~"},
957 {K_PAGEDOWN, "\033[6;*~"},
958 {K_KPLUS, "\033O*k"}, // keypad plus
959 {K_KMINUS, "\033O*m"}, // keypad minus
960 {K_KDIVIDE, "\033O*o"}, // keypad /
961 {K_KMULTIPLY, "\033O*j"}, // keypad *
962 {K_KENTER, "\033O*M"}, // keypad Enter
963 {K_KPOINT, "\033O*n"}, // keypad .
964 {K_K0, "\033O*p"}, // keypad 0
965 {K_K1, "\033O*q"}, // keypad 1
966 {K_K2, "\033O*r"}, // keypad 2
967 {K_K3, "\033O*s"}, // keypad 3
968 {K_K4, "\033O*t"}, // keypad 4
969 {K_K5, "\033O*u"}, // keypad 5
970 {K_K6, "\033O*v"}, // keypad 6
971 {K_K7, "\033O*w"}, // keypad 7
972 {K_K8, "\033O*x"}, // keypad 8
973 {K_K9, "\033O*y"}, // keypad 9
974 {K_KDEL, "\033[3;*~"}, // keypad Del
975 {K_PS, "\033[200~"}, // paste start
976 {K_PE, "\033[201~"}, // paste end
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977
978 {BT_EXTRA_KEYS, ""},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000979 {TERMCAP2KEY('k', '0'), "\033[10;*~"}, // F0
980 {TERMCAP2KEY('F', '3'), "\033[25;*~"}, // F13
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100981 // F14 and F15 are missing, because they send the same codes as the undo
982 // and help key, although they don't work on all keyboards.
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000983 {TERMCAP2KEY('F', '6'), "\033[29;*~"}, // F16
984 {TERMCAP2KEY('F', '7'), "\033[31;*~"}, // F17
985 {TERMCAP2KEY('F', '8'), "\033[32;*~"}, // F18
986 {TERMCAP2KEY('F', '9'), "\033[33;*~"}, // F19
987 {TERMCAP2KEY('F', 'A'), "\033[34;*~"}, // F20
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000988
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000989 {TERMCAP2KEY('F', 'B'), "\033[42;*~"}, // F21
990 {TERMCAP2KEY('F', 'C'), "\033[43;*~"}, // F22
991 {TERMCAP2KEY('F', 'D'), "\033[44;*~"}, // F23
992 {TERMCAP2KEY('F', 'E'), "\033[45;*~"}, // F24
993 {TERMCAP2KEY('F', 'F'), "\033[46;*~"}, // F25
994 {TERMCAP2KEY('F', 'G'), "\033[47;*~"}, // F26
995 {TERMCAP2KEY('F', 'H'), "\033[48;*~"}, // F27
996 {TERMCAP2KEY('F', 'I'), "\033[49;*~"}, // F28
997 {TERMCAP2KEY('F', 'J'), "\033[50;*~"}, // F29
998 {TERMCAP2KEY('F', 'K'), "\033[51;*~"}, // F30
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000999
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001000 {TERMCAP2KEY('F', 'L'), "\033[52;*~"}, // F31
1001 {TERMCAP2KEY('F', 'M'), "\033[53;*~"}, // F32
1002 {TERMCAP2KEY('F', 'N'), "\033[54;*~"}, // F33
1003 {TERMCAP2KEY('F', 'O'), "\033[55;*~"}, // F34
1004 {TERMCAP2KEY('F', 'P'), "\033[56;*~"}, // F35
1005 {TERMCAP2KEY('F', 'Q'), "\033[57;*~"}, // F36
1006 {TERMCAP2KEY('F', 'R'), "\033[58;*~"}, // F37
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007# endif
1008
1009# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
1010/*
1011 * iris-ansi for Silicon Graphics machines.
1012 */
1013 {(int)KS_NAME, "iris-ansi"},
1014 {(int)KS_CE, "\033[K"},
1015 {(int)KS_CD, "\033[J"},
1016 {(int)KS_AL, "\033[L"},
1017# ifdef TERMINFO
1018 {(int)KS_CAL, "\033[%p1%dL"},
1019# else
1020 {(int)KS_CAL, "\033[%dL"},
1021# endif
1022 {(int)KS_DL, "\033[M"},
1023# ifdef TERMINFO
1024 {(int)KS_CDL, "\033[%p1%dM"},
1025# else
1026 {(int)KS_CDL, "\033[%dM"},
1027# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001028#if 0 // The scroll region is not working as Vim expects.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029# ifdef TERMINFO
1030 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
1031# else
1032 {(int)KS_CS, "\033[%i%d;%dr"},
1033# endif
1034#endif
1035 {(int)KS_CL, "\033[H\033[2J"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001036 {(int)KS_VE, "\033[9/y\033[12/y"}, // These aren't documented
1037 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, // These aren't documented
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 {(int)KS_TI, "\033[=6h"},
1039 {(int)KS_TE, "\033[=6l"},
1040 {(int)KS_SE, "\033[21;27m"},
1041 {(int)KS_SO, "\033[1;7m"},
1042 {(int)KS_ME, "\033[m"},
1043 {(int)KS_MR, "\033[7m"},
1044 {(int)KS_MD, "\033[1m"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001045 {(int)KS_CCO, "8"}, // allow 8 colors
1046 {(int)KS_CZH, "\033[3m"}, // italic mode on
1047 {(int)KS_CZR, "\033[23m"}, // italic mode off
1048 {(int)KS_US, "\033[4m"}, // underline on
1049 {(int)KS_UE, "\033[24m"}, // underline off
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050# ifdef TERMINFO
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001051 {(int)KS_CAB, "\033[4%p1%dm"}, // set background color (ANSI)
1052 {(int)KS_CAF, "\033[3%p1%dm"}, // set foreground color (ANSI)
1053 {(int)KS_CSB, "\033[102;%p1%dm"}, // set screen background color
1054 {(int)KS_CSF, "\033[101;%p1%dm"}, // set screen foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001056 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI)
1057 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI)
1058 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color
1059 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001061 {(int)KS_MS, "y"}, // guessed
1062 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 {(int)KS_LE, "\b"},
1064# ifdef TERMINFO
1065 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1066# else
1067 {(int)KS_CM, "\033[%i%d;%dH"},
1068# endif
1069 {(int)KS_SR, "\033M"},
1070# ifdef TERMINFO
1071 {(int)KS_CRI, "\033[%p1%dC"},
1072# else
1073 {(int)KS_CRI, "\033[%dC"},
1074# endif
1075 {(int)KS_CIS, "\033P3.y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001076 {(int)KS_CIE, "\234"}, // ST "String Terminator"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 {(int)KS_TS, "\033P1.y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001078 {(int)KS_FS, "\234"}, // ST "String Terminator"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079# ifdef TERMINFO
1080 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1081 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1082# else
1083 {(int)KS_CWS, "\033[203;%d;%d/y"},
1084 {(int)KS_CWP, "\033[205;%d;%d/y"},
1085# endif
1086 {K_UP, "\033[A"},
1087 {K_DOWN, "\033[B"},
1088 {K_LEFT, "\033[D"},
1089 {K_RIGHT, "\033[C"},
1090 {K_S_UP, "\033[161q"},
1091 {K_S_DOWN, "\033[164q"},
1092 {K_S_LEFT, "\033[158q"},
1093 {K_S_RIGHT, "\033[167q"},
1094 {K_F1, "\033[001q"},
1095 {K_F2, "\033[002q"},
1096 {K_F3, "\033[003q"},
1097 {K_F4, "\033[004q"},
1098 {K_F5, "\033[005q"},
1099 {K_F6, "\033[006q"},
1100 {K_F7, "\033[007q"},
1101 {K_F8, "\033[008q"},
1102 {K_F9, "\033[009q"},
1103 {K_F10, "\033[010q"},
1104 {K_F11, "\033[011q"},
1105 {K_F12, "\033[012q"},
1106 {K_S_F1, "\033[013q"},
1107 {K_S_F2, "\033[014q"},
1108 {K_S_F3, "\033[015q"},
1109 {K_S_F4, "\033[016q"},
1110 {K_S_F5, "\033[017q"},
1111 {K_S_F6, "\033[018q"},
1112 {K_S_F7, "\033[019q"},
1113 {K_S_F8, "\033[020q"},
1114 {K_S_F9, "\033[021q"},
1115 {K_S_F10, "\033[022q"},
1116 {K_S_F11, "\033[023q"},
1117 {K_S_F12, "\033[024q"},
1118 {K_INS, "\033[139q"},
1119 {K_HOME, "\033[H"},
1120 {K_END, "\033[146q"},
1121 {K_PAGEUP, "\033[150q"},
1122 {K_PAGEDOWN, "\033[154q"},
1123# endif
1124
1125# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1126/*
1127 * for debugging
1128 */
1129 {(int)KS_NAME, "debug"},
1130 {(int)KS_CE, "[CE]"},
1131 {(int)KS_CD, "[CD]"},
1132 {(int)KS_AL, "[AL]"},
1133# ifdef TERMINFO
1134 {(int)KS_CAL, "[CAL%p1%d]"},
1135# else
1136 {(int)KS_CAL, "[CAL%d]"},
1137# endif
1138 {(int)KS_DL, "[DL]"},
1139# ifdef TERMINFO
1140 {(int)KS_CDL, "[CDL%p1%d]"},
1141# else
1142 {(int)KS_CDL, "[CDL%d]"},
1143# endif
1144# ifdef TERMINFO
1145 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1146# else
1147 {(int)KS_CS, "[%dCS%d]"},
1148# endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001149# ifdef TERMINFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
Bram Moolenaar4033c552017-09-16 20:54:51 +02001151# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 {(int)KS_CSV, "[%dCSV%d]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153# endif
1154# ifdef TERMINFO
1155 {(int)KS_CAB, "[CAB%p1%d]"},
1156 {(int)KS_CAF, "[CAF%p1%d]"},
1157 {(int)KS_CSB, "[CSB%p1%d]"},
1158 {(int)KS_CSF, "[CSF%p1%d]"},
1159# else
1160 {(int)KS_CAB, "[CAB%d]"},
1161 {(int)KS_CAF, "[CAF%d]"},
1162 {(int)KS_CSB, "[CSB%d]"},
1163 {(int)KS_CSF, "[CSF%d]"},
1164# endif
Bram Moolenaare023e882020-05-31 16:42:30 +02001165 {(int)KS_CAU, "[CAU%d]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 {(int)KS_OP, "[OP]"},
1167 {(int)KS_LE, "[LE]"},
1168 {(int)KS_CL, "[CL]"},
1169 {(int)KS_VI, "[VI]"},
1170 {(int)KS_VE, "[VE]"},
1171 {(int)KS_VS, "[VS]"},
1172 {(int)KS_ME, "[ME]"},
1173 {(int)KS_MR, "[MR]"},
1174 {(int)KS_MB, "[MB]"},
1175 {(int)KS_MD, "[MD]"},
1176 {(int)KS_SE, "[SE]"},
1177 {(int)KS_SO, "[SO]"},
1178 {(int)KS_UE, "[UE]"},
1179 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001180 {(int)KS_UCE, "[UCE]"},
1181 {(int)KS_UCS, "[UCS]"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001182 {(int)KS_STE, "[STE]"},
1183 {(int)KS_STS, "[STS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 {(int)KS_MS, "[MS]"},
1185 {(int)KS_UT, "[UT]"},
Bram Moolenaar494838a2015-02-10 19:20:37 +01001186 {(int)KS_XN, "[XN]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187# ifdef TERMINFO
1188 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1189# else
1190 {(int)KS_CM, "[%dCM%d]"},
1191# endif
1192 {(int)KS_SR, "[SR]"},
1193# ifdef TERMINFO
1194 {(int)KS_CRI, "[CRI%p1%d]"},
1195# else
1196 {(int)KS_CRI, "[CRI%d]"},
1197# endif
1198 {(int)KS_VB, "[VB]"},
1199 {(int)KS_KS, "[KS]"},
1200 {(int)KS_KE, "[KE]"},
1201 {(int)KS_TI, "[TI]"},
1202 {(int)KS_TE, "[TE]"},
1203 {(int)KS_CIS, "[CIS]"},
1204 {(int)KS_CIE, "[CIE]"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001205 {(int)KS_CSC, "[CSC]"},
1206 {(int)KS_CEC, "[CEC]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 {(int)KS_TS, "[TS]"},
1208 {(int)KS_FS, "[FS]"},
1209# ifdef TERMINFO
1210 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1211 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1212# else
1213 {(int)KS_CWS, "[%dCWS%d]"},
1214 {(int)KS_CWP, "[%dCWP%d]"},
1215# endif
1216 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001217 {(int)KS_U7, "[U7]"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001218 {(int)KS_RFG, "[RFG]"},
Bram Moolenaarb5c32652015-06-25 17:03:36 +02001219 {(int)KS_RBG, "[RBG]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 {K_UP, "[KU]"},
1221 {K_DOWN, "[KD]"},
1222 {K_LEFT, "[KL]"},
1223 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001224 {K_XUP, "[xKU]"},
1225 {K_XDOWN, "[xKD]"},
1226 {K_XLEFT, "[xKL]"},
1227 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 {K_S_UP, "[S-KU]"},
1229 {K_S_DOWN, "[S-KD]"},
1230 {K_S_LEFT, "[S-KL]"},
1231 {K_C_LEFT, "[C-KL]"},
1232 {K_S_RIGHT, "[S-KR]"},
1233 {K_C_RIGHT, "[C-KR]"},
1234 {K_F1, "[F1]"},
1235 {K_XF1, "[xF1]"},
1236 {K_F2, "[F2]"},
1237 {K_XF2, "[xF2]"},
1238 {K_F3, "[F3]"},
1239 {K_XF3, "[xF3]"},
1240 {K_F4, "[F4]"},
1241 {K_XF4, "[xF4]"},
1242 {K_F5, "[F5]"},
1243 {K_F6, "[F6]"},
1244 {K_F7, "[F7]"},
1245 {K_F8, "[F8]"},
1246 {K_F9, "[F9]"},
1247 {K_F10, "[F10]"},
1248 {K_F11, "[F11]"},
1249 {K_F12, "[F12]"},
1250 {K_S_F1, "[S-F1]"},
1251 {K_S_XF1, "[S-xF1]"},
1252 {K_S_F2, "[S-F2]"},
1253 {K_S_XF2, "[S-xF2]"},
1254 {K_S_F3, "[S-F3]"},
1255 {K_S_XF3, "[S-xF3]"},
1256 {K_S_F4, "[S-F4]"},
1257 {K_S_XF4, "[S-xF4]"},
1258 {K_S_F5, "[S-F5]"},
1259 {K_S_F6, "[S-F6]"},
1260 {K_S_F7, "[S-F7]"},
1261 {K_S_F8, "[S-F8]"},
1262 {K_S_F9, "[S-F9]"},
1263 {K_S_F10, "[S-F10]"},
1264 {K_S_F11, "[S-F11]"},
1265 {K_S_F12, "[S-F12]"},
1266 {K_HELP, "[HELP]"},
1267 {K_UNDO, "[UNDO]"},
1268 {K_BS, "[BS]"},
1269 {K_INS, "[INS]"},
1270 {K_KINS, "[KINS]"},
1271 {K_DEL, "[DEL]"},
1272 {K_KDEL, "[KDEL]"},
1273 {K_HOME, "[HOME]"},
1274 {K_S_HOME, "[C-HOME]"},
1275 {K_C_HOME, "[C-HOME]"},
1276 {K_KHOME, "[KHOME]"},
1277 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001278 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 {K_END, "[END]"},
1280 {K_S_END, "[C-END]"},
1281 {K_C_END, "[C-END]"},
1282 {K_KEND, "[KEND]"},
1283 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001284 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 {K_PAGEUP, "[PAGEUP]"},
1286 {K_PAGEDOWN, "[PAGEDOWN]"},
1287 {K_KPAGEUP, "[KPAGEUP]"},
1288 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1289 {K_MOUSE, "[MOUSE]"},
1290 {K_KPLUS, "[KPLUS]"},
1291 {K_KMINUS, "[KMINUS]"},
1292 {K_KDIVIDE, "[KDIVIDE]"},
1293 {K_KMULTIPLY, "[KMULTIPLY]"},
1294 {K_KENTER, "[KENTER]"},
1295 {K_KPOINT, "[KPOINT]"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001296 {K_PS, "[PASTE-START]"},
1297 {K_PE, "[PASTE-END]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 {K_K0, "[K0]"},
1299 {K_K1, "[K1]"},
1300 {K_K2, "[K2]"},
1301 {K_K3, "[K3]"},
1302 {K_K4, "[K4]"},
1303 {K_K5, "[K5]"},
1304 {K_K6, "[K6]"},
1305 {K_K7, "[K7]"},
1306 {K_K8, "[K8]"},
1307 {K_K9, "[K9]"},
1308# endif
1309
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001310#endif // NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311
1312/*
1313 * The most minimal terminal: only clear screen and cursor positioning
1314 * Always included.
1315 */
1316 {(int)KS_NAME, "dumb"},
1317 {(int)KS_CL, "\014"},
1318#ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001319 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320#else
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001321 {(int)KS_CM, "\033[%i%d;%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322#endif
1323
1324/*
1325 * end marker
1326 */
1327 {(int)KS_NAME, NULL}
1328
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001329}; // end of builtin_termcaps
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001331#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001332 static guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001333termgui_mch_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001334{
Bram Moolenaarab302212016-04-26 20:59:29 +02001335 return gui_get_color_cmn(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001336}
1337
1338 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001339termgui_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001340{
1341 guicolor_T t;
1342
1343 if (*name == NUL)
1344 return INVALCOLOR;
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001345 t = termgui_mch_get_color(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001346
1347 if (t == INVALCOLOR)
Drew Vogele30d1022021-10-24 20:35:07 +01001348 semsg(_(e_cannot_allocate_color_str), name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001349 return t;
1350}
1351
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001352 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001353termgui_mch_get_rgb(guicolor_T color)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001354{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001355 return color;
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001356}
1357#endif
1358
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359/*
1360 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1361 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362#ifdef AMIGA
1363# define DEFAULT_TERM (char_u *)"amiga"
1364#endif
1365
1366#ifdef MSWIN
1367# define DEFAULT_TERM (char_u *)"win32"
1368#endif
1369
Bram Moolenaare3f915d2020-07-14 23:02:44 +02001370#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371# define DEFAULT_TERM (char_u *)"ansi"
1372#endif
1373
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374#ifdef VMS
1375# define DEFAULT_TERM (char_u *)"vt320"
1376#endif
1377
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001378#ifdef __HAIKU__
1379# undef DEFAULT_TERM
1380# define DEFAULT_TERM (char_u *)"xterm"
1381#endif
1382
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383#ifndef DEFAULT_TERM
1384# define DEFAULT_TERM (char_u *)"dumb"
1385#endif
1386
1387/*
1388 * Term_strings contains currently used terminal output strings.
1389 * It is initialized with the default values by parse_builtin_tcap().
1390 * The values can be changed by setting the option with the same name.
1391 */
1392char_u *(term_strings[(int)KS_LAST + 1]);
1393
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001394static int need_gather = FALSE; // need to fill termleader[]
1395static char_u termleader[256 + 1]; // for check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396#ifdef FEAT_TERMRESPONSE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001397static int check_for_codes = FALSE; // check for key code response
Bram Moolenaar517f00f2020-06-10 12:15:51 +02001398
1399/*
1400 * Structure and table to store terminal features that can be detected by
1401 * querying the terminal. Either by inspecting the termresponse or a more
1402 * specific request. Besides this there are:
1403 * t_colors - number of colors supported
1404 */
1405typedef struct {
1406 char *tpr_name;
1407 int tpr_set_by_termresponse;
1408 int tpr_status;
1409} termprop_T;
1410
1411// Values for tpr_status.
1412#define TPR_UNKNOWN 'u'
1413#define TPR_YES 'y'
1414#define TPR_NO 'n'
1415#define TPR_MOUSE_XTERM 'x' // use "xterm" for 'ttymouse'
1416#define TPR_MOUSE_XTERM2 '2' // use "xterm2" for 'ttymouse'
1417#define TPR_MOUSE_SGR 's' // use "sgr" for 'ttymouse'
1418
1419// can request the cursor style without messing up the display
1420#define TPR_CURSOR_STYLE 0
1421// can request the cursor blink mode without messing up the display
1422#define TPR_CURSOR_BLINK 1
1423// can set the underline color with t_8u without resetting other colors
1424#define TPR_UNDERLINE_RGB 2
1425// mouse support - TPR_MOUSE_XTERM, TPR_MOUSE_XTERM2 or TPR_MOUSE_SGR
1426#define TPR_MOUSE 3
1427// table size
1428#define TPR_COUNT 4
1429
1430static termprop_T term_props[TPR_COUNT];
1431
1432/*
1433 * Initialize the term_props table.
1434 * When "all" is FALSE only set those that are detected from the version
1435 * response.
1436 */
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02001437 void
Bram Moolenaar517f00f2020-06-10 12:15:51 +02001438init_term_props(int all)
1439{
1440 int i;
1441
1442 term_props[TPR_CURSOR_STYLE].tpr_name = "cursor_style";
1443 term_props[TPR_CURSOR_STYLE].tpr_set_by_termresponse = FALSE;
1444 term_props[TPR_CURSOR_BLINK].tpr_name = "cursor_blink_mode";
1445 term_props[TPR_CURSOR_BLINK].tpr_set_by_termresponse = FALSE;
1446 term_props[TPR_UNDERLINE_RGB].tpr_name = "underline_rgb";
1447 term_props[TPR_UNDERLINE_RGB].tpr_set_by_termresponse = TRUE;
1448 term_props[TPR_MOUSE].tpr_name = "mouse";
1449 term_props[TPR_MOUSE].tpr_set_by_termresponse = TRUE;
1450
1451 for (i = 0; i < TPR_COUNT; ++i)
1452 if (all || term_props[i].tpr_set_by_termresponse)
1453 term_props[i].tpr_status = TPR_UNKNOWN;
1454}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455#endif
1456
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02001457#if defined(FEAT_EVAL) || defined(PROTO)
1458 void
1459f_terminalprops(typval_T *argvars UNUSED, typval_T *rettv)
1460{
1461# ifdef FEAT_TERMRESPONSE
1462 int i;
1463# endif
1464
1465 if (rettv_dict_alloc(rettv) != OK)
1466 return;
1467# ifdef FEAT_TERMRESPONSE
1468 for (i = 0; i < TPR_COUNT; ++i)
1469 {
1470 char_u value[2];
1471
1472 value[0] = term_props[i].tpr_status;
1473 value[1] = NUL;
1474 dict_add_string(rettv->vval.v_dict, term_props[i].tpr_name, value);
1475 }
1476# endif
1477}
1478#endif
1479
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001481find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482{
1483 struct builtin_term *p;
1484
1485 p = builtin_termcaps;
1486 while (p->bt_string != NULL)
1487 {
1488 if (p->bt_entry == (int)KS_NAME)
1489 {
1490#ifdef UNIX
1491 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1492 return p;
1493 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1494 return p;
1495 else
1496#endif
1497#ifdef VMS
1498 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1499 return p;
1500 else
1501#endif
1502 if (STRCMP(term, p->bt_string) == 0)
1503 return p;
1504 }
1505 ++p;
1506 }
1507 return p;
1508}
1509
1510/*
1511 * Parsing of the builtin termcap entries.
1512 * Caller should check if 'name' is a valid builtin term.
1513 * The terminal's name is not set, as this is already done in termcapinit().
1514 */
1515 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001516parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517{
1518 struct builtin_term *p;
1519 char_u name[2];
1520 int term_8bit;
1521
1522 p = find_builtin_term(term);
1523 term_8bit = term_is_8bit(term);
1524
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001525 // Do not parse if builtin term not found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 if (p->bt_string == NULL)
1527 return;
1528
1529 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1530 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001531 if ((int)p->bt_entry >= 0) // KS_xx entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001533 // Only set the value if it wasn't set yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 if (term_strings[p->bt_entry] == NULL
1535 || term_strings[p->bt_entry] == empty_option)
1536 {
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001537#ifdef FEAT_EVAL
1538 int opt_idx = -1;
1539#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001540 // 8bit terminal: use CSI instead of <Esc>[
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1542 {
1543 char_u *s, *t;
1544
1545 s = vim_strsave((char_u *)p->bt_string);
1546 if (s != NULL)
1547 {
1548 for (t = s; *t; ++t)
1549 if (term_7to8bit(t))
1550 {
1551 *t = term_7to8bit(t);
Bram Moolenaar18085fa2018-07-10 17:33:45 +02001552 STRMOVE(t + 1, t + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 }
1554 term_strings[p->bt_entry] = s;
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001555#ifdef FEAT_EVAL
1556 opt_idx =
1557#endif
1558 set_term_option_alloced(
1559 &term_strings[p->bt_entry]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 }
1561 }
1562 else
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001563 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 term_strings[p->bt_entry] = (char_u *)p->bt_string;
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001565#ifdef FEAT_EVAL
1566 opt_idx = get_term_opt_idx(&term_strings[p->bt_entry]);
1567#endif
1568 }
1569#ifdef FEAT_EVAL
1570 set_term_option_sctx_idx(NULL, opt_idx);
1571#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 }
1573 }
1574 else
1575 {
1576 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1577 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1578 if (find_termcode(name) == NULL)
1579 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1580 }
1581 }
1582}
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001583
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584/*
1585 * Set number of colors.
1586 * Store it as a number in t_colors.
1587 * Store it as a string in T_CCO (using nr_colors[]).
1588 */
Bram Moolenaaracc770a2020-04-12 15:11:06 +02001589 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001590set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001592 char_u nr_colors[20]; // string for number of colors
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593
1594 t_colors = nr;
1595 if (t_colors > 1)
1596 sprintf((char *)nr_colors, "%d", t_colors);
1597 else
1598 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001599 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600}
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001601
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001602#if defined(FEAT_TERMRESPONSE)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001603/*
1604 * Set the color count to "val" and redraw if it changed.
1605 */
1606 static void
1607may_adjust_color_count(int val)
1608{
1609 if (val != t_colors)
1610 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001611 // Nr of colors changed, initialize highlighting and
1612 // redraw everything. This causes a redraw, which usually
1613 // clears the message. Try keeping the message if it
1614 // might work.
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001615 set_keep_msg_from_hist();
1616 set_color_count(val);
1617 init_highlight(TRUE, FALSE);
1618# ifdef DEBUG_TERMRESPONSE
1619 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02001620 int r = redraw_asap(CLEAR);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001621
Bram Moolenaarb255b902018-04-24 21:40:10 +02001622 log_tr("Received t_Co, redraw_asap(): %d", r);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001623 }
Bram Moolenaar87202262020-05-24 17:23:45 +02001624# else
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001625 redraw_asap(CLEAR);
Bram Moolenaar87202262020-05-24 17:23:45 +02001626# endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001627 }
1628}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629#endif
1630
1631#ifdef HAVE_TGETENT
1632static char *(key_names[]) =
1633{
Bram Moolenaar87202262020-05-24 17:23:45 +02001634# ifdef FEAT_TERMRESPONSE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001635 // Do this one first, it may cause a screen redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 "Co",
Bram Moolenaar87202262020-05-24 17:23:45 +02001637# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 "#2", "#4", "%i", "*7",
1640 "k1", "k2", "k3", "k4", "k5", "k6",
1641 "k7", "k8", "k9", "k;", "F1", "F2",
1642 "%1", "&8", "kb", "kI", "kD", "kh",
1643 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1644 NULL
1645};
1646#endif
1647
Bram Moolenaar9289df52018-05-10 14:40:57 +02001648#ifdef HAVE_TGETENT
Bram Moolenaar69e05692018-05-10 14:11:52 +02001649 static void
1650get_term_entries(int *height, int *width)
1651{
1652 static struct {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001653 enum SpecialKey dest; // index in term_strings[]
1654 char *name; // termcap name for string
Bram Moolenaar69e05692018-05-10 14:11:52 +02001655 } string_names[] =
1656 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1657 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1658 {KS_CL, "cl"}, {KS_CD, "cd"},
1659 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
1660 {KS_ME, "me"}, {KS_MR, "mr"},
1661 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1662 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
1663 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
1664 {KS_STE,"Te"}, {KS_STS,"Ts"},
1665 {KS_CM, "cm"}, {KS_SR, "sr"},
1666 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1667 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
Bram Moolenaar171a9212019-10-12 21:08:59 +02001668 {KS_CTI, "TI"}, {KS_CTE, "TE"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001669 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
Bram Moolenaare023e882020-05-31 16:42:30 +02001670 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_CAU,"AU"},
1671 {KS_LE, "le"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001672 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
1673 {KS_VS, "vs"}, {KS_CVS, "VS"},
1674 {KS_CIS, "IS"}, {KS_CIE, "IE"},
1675 {KS_CSC, "SC"}, {KS_CEC, "EC"},
1676 {KS_TS, "ts"}, {KS_FS, "fs"},
1677 {KS_CWP, "WP"}, {KS_CWS, "WS"},
1678 {KS_CSI, "SI"}, {KS_CEI, "EI"},
1679 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"},
Bram Moolenaare023e882020-05-31 16:42:30 +02001680 {KS_8F, "8f"}, {KS_8B, "8b"}, {KS_8U, "8u"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001681 {KS_CBE, "BE"}, {KS_CBD, "BD"},
1682 {KS_CPS, "PS"}, {KS_CPE, "PE"},
Bram Moolenaar40385db2018-08-07 22:31:44 +02001683 {KS_CST, "ST"}, {KS_CRT, "RT"},
1684 {KS_SSI, "Si"}, {KS_SRI, "Ri"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001685 {(enum SpecialKey)0, NULL}
1686 };
1687 int i;
1688 char_u *p;
1689 static char_u tstrbuf[TBUFSZ];
1690 char_u *tp = tstrbuf;
1691
1692 /*
1693 * get output strings
1694 */
1695 for (i = 0; string_names[i].name != NULL; ++i)
1696 {
1697 if (TERM_STR(string_names[i].dest) == NULL
1698 || TERM_STR(string_names[i].dest) == empty_option)
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001699 {
Bram Moolenaar69e05692018-05-10 14:11:52 +02001700 TERM_STR(string_names[i].dest) = TGETSTR(string_names[i].name, &tp);
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001701#ifdef FEAT_EVAL
1702 set_term_option_sctx_idx(string_names[i].name, -1);
1703#endif
1704 }
Bram Moolenaar69e05692018-05-10 14:11:52 +02001705 }
1706
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001707 // tgetflag() returns 1 if the flag is present, 0 if not and
1708 // possibly -1 if the flag doesn't exist.
Bram Moolenaar69e05692018-05-10 14:11:52 +02001709 if ((T_MS == NULL || T_MS == empty_option) && tgetflag("ms") > 0)
1710 T_MS = (char_u *)"y";
1711 if ((T_XS == NULL || T_XS == empty_option) && tgetflag("xs") > 0)
1712 T_XS = (char_u *)"y";
1713 if ((T_XN == NULL || T_XN == empty_option) && tgetflag("xn") > 0)
1714 T_XN = (char_u *)"y";
1715 if ((T_DB == NULL || T_DB == empty_option) && tgetflag("db") > 0)
1716 T_DB = (char_u *)"y";
1717 if ((T_DA == NULL || T_DA == empty_option) && tgetflag("da") > 0)
1718 T_DA = (char_u *)"y";
1719 if ((T_UT == NULL || T_UT == empty_option) && tgetflag("ut") > 0)
1720 T_UT = (char_u *)"y";
1721
1722 /*
1723 * get key codes
1724 */
1725 for (i = 0; key_names[i] != NULL; ++i)
1726 if (find_termcode((char_u *)key_names[i]) == NULL)
1727 {
1728 p = TGETSTR(key_names[i], &tp);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001729 // if cursor-left == backspace, ignore it (televideo 925)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001730 if (p != NULL
1731 && (*p != Ctrl_H
1732 || key_names[i][0] != 'k'
1733 || key_names[i][1] != 'l'))
1734 add_termcode((char_u *)key_names[i], p, FALSE);
1735 }
1736
1737 if (*height == 0)
1738 *height = tgetnum("li");
1739 if (*width == 0)
1740 *width = tgetnum("co");
1741
1742 /*
1743 * Get number of colors (if not done already).
1744 */
1745 if (TERM_STR(KS_CCO) == NULL || TERM_STR(KS_CCO) == empty_option)
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001746 {
Bram Moolenaar69e05692018-05-10 14:11:52 +02001747 set_color_count(tgetnum("Co"));
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001748#ifdef FEAT_EVAL
1749 set_term_option_sctx_idx("Co", -1);
1750#endif
1751 }
Bram Moolenaar69e05692018-05-10 14:11:52 +02001752
1753# ifndef hpux
1754 BC = (char *)TGETSTR("bc", &tp);
1755 UP = (char *)TGETSTR("up", &tp);
1756 p = TGETSTR("pc", &tp);
1757 if (p)
1758 PC = *p;
1759# endif
1760}
Bram Moolenaar9289df52018-05-10 14:40:57 +02001761#endif
Bram Moolenaar69e05692018-05-10 14:11:52 +02001762
1763 static void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001764report_term_error(char *error_msg, char_u *term)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001765{
1766 struct builtin_term *termp;
Bram Moolenaarecd34bf2020-08-04 20:17:31 +02001767 int i;
Bram Moolenaar69e05692018-05-10 14:11:52 +02001768
1769 mch_errmsg("\r\n");
1770 if (error_msg != NULL)
1771 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001772 mch_errmsg(error_msg);
Bram Moolenaar69e05692018-05-10 14:11:52 +02001773 mch_errmsg("\r\n");
1774 }
1775 mch_errmsg("'");
1776 mch_errmsg((char *)term);
1777 mch_errmsg(_("' not known. Available builtin terminals are:"));
1778 mch_errmsg("\r\n");
1779 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL; ++termp)
1780 {
Bram Moolenaar0f5575d2021-07-30 21:18:03 +02001781 if (termp->bt_entry == (int)KS_NAME
1782 && STRCMP(termp->bt_string, "gui") != 0)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001783 {
1784#ifdef HAVE_TGETENT
1785 mch_errmsg(" builtin_");
1786#else
1787 mch_errmsg(" ");
1788#endif
1789 mch_errmsg(termp->bt_string);
1790 mch_errmsg("\r\n");
1791 }
1792 }
Bram Moolenaarecd34bf2020-08-04 20:17:31 +02001793 // Output extra 'cmdheight' line breaks to avoid that the following error
1794 // message overwrites the last terminal name.
1795 for (i = 1; i < p_ch; ++i)
1796 mch_errmsg("\r\n");
Bram Moolenaar69e05692018-05-10 14:11:52 +02001797}
1798
1799 static void
1800report_default_term(char_u *term)
1801{
1802 mch_errmsg(_("defaulting to '"));
1803 mch_errmsg((char *)term);
1804 mch_errmsg("'\r\n");
Bram Moolenaar28ee8922020-10-28 20:20:00 +01001805 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001806 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001807 screen_start(); // don't know where cursor is now
Bram Moolenaar69e05692018-05-10 14:11:52 +02001808 out_flush();
1809 if (!is_not_a_term())
Bram Moolenaareda1da02019-11-17 17:06:33 +01001810 ui_delay(2007L, TRUE);
Bram Moolenaar69e05692018-05-10 14:11:52 +02001811 }
1812}
1813
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814/*
1815 * Set terminal options for terminal "term".
1816 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1817 *
1818 * While doing this, until ttest(), some options may be NULL, be careful.
1819 */
1820 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001821set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822{
1823 struct builtin_term *termp;
1824#ifdef HAVE_TGETENT
1825 int builtin_first = p_tbi;
1826 int try;
1827 int termcap_cleared = FALSE;
1828#endif
1829 int width = 0, height = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001830 char *error_msg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 char_u *bs_p, *del_p;
1832
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001833 // In silect mode (ex -s) we don't use the 'term' option.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001834 if (silent_mode)
1835 return OK;
1836
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001837 detected_8bit = FALSE; // reset 8-bit detection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838
1839 if (term_is_builtin(term))
1840 {
1841 term += 8;
1842#ifdef HAVE_TGETENT
1843 builtin_first = 1;
1844#endif
1845 }
1846
1847/*
1848 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1849 * If builtin_first is TRUE:
1850 * 0. try builtin termcap
1851 * 1. try external termcap
1852 * 2. if both fail default to a builtin terminal
1853 * If builtin_first is FALSE:
1854 * 1. try external termcap
1855 * 2. try builtin termcap, if both fail default to a builtin terminal
1856 */
1857#ifdef HAVE_TGETENT
1858 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1859 {
1860 /*
1861 * Use external termcap
1862 */
1863 if (try == 1)
1864 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 char_u tbuf[TBUFSZ];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866
1867 /*
1868 * If the external termcap does not have a matching entry, try the
1869 * builtin ones.
1870 */
1871 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1872 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 if (!termcap_cleared)
1874 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001875 clear_termoptions(); // clear old options
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 termcap_cleared = TRUE;
1877 }
1878
Bram Moolenaar69e05692018-05-10 14:11:52 +02001879 get_term_entries(&height, &width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 }
1881 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001882 else // try == 0 || try == 2
1883#endif // HAVE_TGETENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 /*
1885 * Use builtin termcap
1886 */
1887 {
1888#ifdef HAVE_TGETENT
1889 /*
1890 * If builtin termcap was already used, there is no need to search
1891 * for the builtin termcap again, quit now.
1892 */
1893 if (try == 2 && builtin_first && termcap_cleared)
1894 break;
1895#endif
1896 /*
1897 * search for 'term' in builtin_termcaps[]
1898 */
1899 termp = find_builtin_term(term);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001900 if (termp->bt_string == NULL) // did not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 {
1902#ifdef HAVE_TGETENT
1903 /*
1904 * If try == 0, first try the external termcap. If that is not
1905 * found we'll get back here with try == 2.
1906 * If termcap_cleared is set we used the external termcap,
1907 * don't complain about not finding the term in the builtin
1908 * termcap.
1909 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001910 if (try == 0) // try external one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 continue;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001912 if (termcap_cleared) // found in external termcap
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 break;
1914#endif
Bram Moolenaar69e05692018-05-10 14:11:52 +02001915 report_term_error(error_msg, term);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001917 // when user typed :set term=xxx, quit here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 if (starting != NO_SCREEN)
1919 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001920 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 wait_return(TRUE);
1922 return FAIL;
1923 }
1924 term = DEFAULT_TERM;
Bram Moolenaar69e05692018-05-10 14:11:52 +02001925 report_default_term(term);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001926 set_string_option_direct((char_u *)"term", -1, term,
1927 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 display_errors();
1929 }
1930 out_flush();
1931#ifdef HAVE_TGETENT
1932 if (!termcap_cleared)
1933 {
1934#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001935 clear_termoptions(); // clear old options
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936#ifdef HAVE_TGETENT
1937 termcap_cleared = TRUE;
1938 }
1939#endif
1940 parse_builtin_tcap(term);
1941#ifdef FEAT_GUI
1942 if (term_is_gui(term))
1943 {
1944 out_flush();
1945 gui_init();
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001946 // If starting the GUI failed, don't do any of the other
1947 // things for this terminal
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 if (!gui.in_use)
1949 return FAIL;
1950#ifdef HAVE_TGETENT
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001951 break; // don't try using external termcap
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952#endif
1953 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001954#endif // FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 }
1956#ifdef HAVE_TGETENT
1957 }
1958#endif
1959
1960/*
1961 * special: There is no info in the termcap about whether the cursor
1962 * positioning is relative to the start of the screen or to the start of the
1963 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1964 * relative.
1965 */
1966 if (STRCMP(term, "pcterm") == 0)
1967 T_CCS = (char_u *)"yes";
1968 else
1969 T_CCS = empty_option;
1970
1971#ifdef UNIX
1972/*
1973 * Any "stty" settings override the default for t_kb from the termcap.
1974 * This is in os_unix.c, because it depends a lot on the version of unix that
1975 * is being used.
1976 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1977 */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001978# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 if (!gui.in_use)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001980# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 get_stty();
1982#endif
1983
1984/*
1985 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1986 * didn't work, use the default CTRL-H
1987 * The default for t_kD is DEL, unless t_kb is DEL.
1988 * The vim_strsave'd strings are probably lost forever, well it's only two
1989 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1990 * directly.
1991 */
1992#ifdef FEAT_GUI
1993 if (!gui.in_use)
1994#endif
1995 {
1996 bs_p = find_termcode((char_u *)"kb");
1997 del_p = find_termcode((char_u *)"kD");
1998 if (bs_p == NULL || *bs_p == NUL)
1999 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
2000 if ((del_p == NULL || *del_p == NUL) &&
2001 (bs_p == NULL || *bs_p != DEL))
2002 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
2003 }
2004
2005#if defined(UNIX) || defined(VMS)
2006 term_is_xterm = vim_is_xterm(term);
2007#endif
Bram Moolenaar0d2c4bf2019-10-17 22:17:02 +02002008#ifdef FEAT_TERMRESPONSE
Bram Moolenaar517f00f2020-06-10 12:15:51 +02002009 // Reset terminal properties that are set based on the termresponse, which
2010 // will be sent out soon.
2011 init_term_props(FALSE);
Bram Moolenaar0d2c4bf2019-10-17 22:17:02 +02002012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002014#if defined(UNIX) || defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 /*
2016 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
2017 * The termcode for the mouse is added as a side effect in option.c.
2018 */
2019 {
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002020 char_u *p = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002022# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00002023 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 {
2025 if (use_xterm_mouse())
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002026 p = NULL; // keep existing value, might be "xterm2"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 else
2028 p = (char_u *)"xterm";
2029 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002030# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01002032 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002034 // Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
2035 // "xterm2" in check_termcode().
Bram Moolenaar15d55de2012-12-05 14:43:02 +01002036 reset_option_was_set((char_u *)"ttym");
2037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 if (p == NULL
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002039# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 || gui.in_use
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002041# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 )
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002043 check_mouse_termcode(); // set mouse termcode anyway
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002045#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002047#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048
Bram Moolenaarbf789742021-01-16 11:21:40 +01002049#ifdef FEAT_MOUSE_XTERM
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002050 // focus reporting is supported by xterm compatible terminals and tmux.
2051 if (use_xterm_like_mouse(term))
2052 {
2053 char_u name[3];
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002054
2055 // handle focus in event
Bram Moolenaarbf789742021-01-16 11:21:40 +01002056 name[0] = KS_EXTRA;
2057 name[1] = KE_FOCUSGAINED;
2058 name[2] = NUL;
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002059 add_termcode(name, (char_u *)"\033[I", FALSE);
2060
2061 // handle focus out event
Bram Moolenaarbf789742021-01-16 11:21:40 +01002062 name[1] = KE_FOCUSLOST;
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002063 add_termcode(name, (char_u *)"\033[O", FALSE);
2064
2065 focus_mode = TRUE;
2066 focus_state = TRUE;
Bram Moolenaar51b477f2021-03-03 15:24:28 +01002067 need_gather = TRUE;
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002068 }
2069#endif
2070
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071#ifdef USE_TERM_CONSOLE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002072 // DEFAULT_TERM indicates that it is the machine console.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 if (STRCMP(term, DEFAULT_TERM) != 0)
2074 term_console = FALSE;
2075 else
2076 {
2077 term_console = TRUE;
2078# ifdef AMIGA
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002079 win_resize_on(); // enable window resizing reports
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080# endif
2081 }
2082#endif
2083
2084#if defined(UNIX) || defined(VMS)
2085 /*
2086 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
2087 */
2088 if (vim_is_fastterm(term))
2089 p_tf = TRUE;
2090#endif
2091#ifdef USE_TERM_CONSOLE
2092 /*
2093 * 'ttyfast' is default on consoles
2094 */
2095 if (term_console)
2096 p_tf = TRUE;
2097#endif
2098
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002099 ttest(TRUE); // make sure we have a valid set of terminal codes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002101 full_screen = TRUE; // we can use termcap codes from now on
2102 set_term_defaults(); // use current values as defaults
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02002104 LOG_TR(("setting crv_status to STATUS_GET"));
Bram Moolenaarafd78262019-05-10 23:10:31 +02002105 crv_status.tr_progress = STATUS_GET; // Get terminal version later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106#endif
2107
2108 /*
2109 * Initialize the terminal with the appropriate termcap codes.
2110 * Set the mouse and window title if possible.
2111 * Don't do this when starting, need to parse the .vimrc first, because it
2112 * may redefine t_TI etc.
2113 */
2114 if (starting != NO_SCREEN)
2115 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002116 starttermcap(); // may change terminal mode
2117 setmouse(); // may start using the mouse
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002118 maketitle(); // may display window title
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 }
2120
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002121 // display initial screen after ttest() checking. jw.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 if (width <= 0 || height <= 0)
2123 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002124 // termcap failed to report size
2125 // set defaults, in case ui_get_shellsize() also fails
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 width = 80;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002127#if defined(MSWIN)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002128 height = 25; // console is often 25 lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129#else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002130 height = 24; // most terminals are 24 lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131#endif
2132 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002133 set_shellsize(width, height, FALSE); // may change Rows
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 if (starting != NO_SCREEN)
2135 {
2136 if (scroll_region)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002137 scroll_region_reset(); // In case Rows changed
2138 check_map_keycodes(); // check mappings for terminal codes used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 {
Bram Moolenaar0c81d1b2020-02-22 22:45:55 +01002141 buf_T *buf;
2142 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143
2144 /*
2145 * Execute the TermChanged autocommands for each buffer that is
2146 * loaded.
2147 */
Bram Moolenaar0c81d1b2020-02-22 22:45:55 +01002148 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 {
2150 if (curbuf->b_ml.ml_mfp != NULL)
Bram Moolenaar0c81d1b2020-02-22 22:45:55 +01002151 {
2152 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
2154 curbuf);
Bram Moolenaar0c81d1b2020-02-22 22:45:55 +01002155 // restore curwin/curbuf and a few other things
2156 aucmd_restbuf(&aco);
2157 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 }
2161
2162#ifdef FEAT_TERMRESPONSE
2163 may_req_termresponse();
2164#endif
2165
2166 return OK;
2167}
2168
Bram Moolenaarb3a29552021-11-19 11:28:04 +00002169#if defined(EXITFREE) || defined(PROTO)
2170
2171# ifdef HAVE_DEL_CURTERM
2172# undef TERMINAL // name clash in term.h
2173# include <term.h> // declares cur_term
2174# endif
2175
2176/*
2177 * If supported, delete "cur_term", which caches terminal related entries.
2178 * Avoids that valgrind reports possibly lost memory.
2179 */
2180 void
2181free_cur_term()
2182{
2183# ifdef HAVE_DEL_CURTERM
2184 if (cur_term)
2185 del_curterm(cur_term);
2186# endif
2187}
2188
2189#endif
2190
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191#ifdef HAVE_TGETENT
2192/*
2193 * Call tgetent()
2194 * Return error message if it fails, NULL if it's OK.
2195 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002196 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002197tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198{
2199 int i;
2200
Bram Moolenaar6b649ac2019-12-07 17:47:22 +01002201 // Note: Valgrind may report a leak here, because the library keeps one
2202 // buffer around that we can't ever free.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 i = TGETENT(tbuf, term);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002204 if (i < 0 // -1 is always an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205# ifdef TGETENT_ZERO_ERR
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002206 || i == 0 // sometimes zero is also an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207# endif
2208 )
2209 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002210 // On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2211 // tgetent() with the always existing "dumb" entry to avoid a crash or
2212 // hang.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 (void)TGETENT(tbuf, "dumb");
2214
2215 if (i < 0)
2216# ifdef TGETENT_ZERO_ERR
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00002217 return _(e_cannot_open_termcap_file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 if (i == 0)
2219# endif
2220#ifdef TERMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00002221 return _(e_terminal_entry_not_found_in_terminfo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222#else
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00002223 return _(e_terminal_entry_not_found_in_termcap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224#endif
2225 }
2226 return NULL;
2227}
2228
2229/*
2230 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2231 * Fix that here.
2232 */
2233 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002234vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235{
2236 char *p;
2237
2238 p = tgetstr(s, (char **)pp);
2239 if (p == (char *)-1)
2240 p = NULL;
2241 return (char_u *)p;
2242}
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002243#endif // HAVE_TGETENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002245#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246/*
2247 * Get Columns and Rows from the termcap. Used after a window signal if the
2248 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2249 * and "li" entries never change. But on some systems this works.
2250 * Errors while getting the entries are ignored.
2251 */
2252 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002253getlinecol(
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002254 long *cp, // pointer to columns
2255 long *rp) // pointer to rows
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256{
2257 char_u tbuf[TBUFSZ];
2258
2259 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2260 {
2261 if (*cp == 0)
2262 *cp = tgetnum("co");
2263 if (*rp == 0)
2264 *rp = tgetnum("li");
2265 }
2266}
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002267#endif // defined(HAVE_TGETENT) && defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268
2269/*
2270 * Get a string entry from the termcap and add it to the list of termcodes.
2271 * Used for <t_xx> special keys.
2272 * Give an error message for failure when not sourcing.
2273 * If force given, replace an existing entry.
2274 * Return FAIL if the entry was not found, OK if the entry was added.
2275 */
2276 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002277add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278{
2279 char_u *term;
2280 int key;
2281 struct builtin_term *termp;
2282#ifdef HAVE_TGETENT
2283 char_u *string;
2284 int i;
2285 int builtin_first;
2286 char_u tbuf[TBUFSZ];
2287 char_u tstrbuf[TBUFSZ];
2288 char_u *tp = tstrbuf;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002289 char *error_msg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290#endif
2291
2292/*
2293 * If the GUI is running or will start in a moment, we only support the keys
2294 * that the GUI can produce.
2295 */
2296#ifdef FEAT_GUI
2297 if (gui.in_use || gui.starting)
2298 return gui_mch_haskey(name);
2299#endif
2300
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002301 if (!force && find_termcode(name) != NULL) // it's already there
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 return OK;
2303
2304 term = T_NAME;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002305 if (term == NULL || *term == NUL) // 'term' not defined yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 return FAIL;
2307
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002308 if (term_is_builtin(term)) // name starts with "builtin_"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 {
2310 term += 8;
2311#ifdef HAVE_TGETENT
2312 builtin_first = TRUE;
2313#endif
2314 }
2315#ifdef HAVE_TGETENT
2316 else
2317 builtin_first = p_tbi;
2318#endif
2319
2320#ifdef HAVE_TGETENT
2321/*
2322 * We can get the entry from the builtin termcap and from the external one.
2323 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2324 * builtin termcap first.
2325 * If 'ttybuiltin' is off, try external termcap first.
2326 */
2327 for (i = 0; i < 2; ++i)
2328 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002329 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330#endif
2331 /*
2332 * Search in builtin termcap
2333 */
2334 {
2335 termp = find_builtin_term(term);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002336 if (termp->bt_string != NULL) // found it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 {
2338 key = TERMCAP2KEY(name[0], name[1]);
Bram Moolenaare7808482018-03-06 13:17:23 +01002339 ++termp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 while (termp->bt_entry != (int)KS_NAME)
2341 {
2342 if ((int)termp->bt_entry == key)
2343 {
2344 add_termcode(name, (char_u *)termp->bt_string,
2345 term_is_8bit(term));
2346 return OK;
2347 }
2348 ++termp;
2349 }
2350 }
2351 }
2352#ifdef HAVE_TGETENT
2353 else
2354 /*
2355 * Search in external termcap
2356 */
2357 {
2358 error_msg = tgetent_error(tbuf, term);
2359 if (error_msg == NULL)
2360 {
2361 string = TGETSTR((char *)name, &tp);
2362 if (string != NULL && *string != NUL)
2363 {
2364 add_termcode(name, string, FALSE);
2365 return OK;
2366 }
2367 }
2368 }
2369 }
2370#endif
2371
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01002372 if (SOURCING_NAME == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 {
2374#ifdef HAVE_TGETENT
2375 if (error_msg != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002376 emsg(error_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 else
2378#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00002379 semsg(_(e_no_str_entry_in_termcap), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 }
2381 return FAIL;
2382}
2383
2384 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002385term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386{
2387 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2388}
2389
2390/*
2391 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2392 * Assume that the terminal is using 8-bit controls when the name contains
2393 * "8bit", like in "xterm-8bit".
2394 */
2395 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002396term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397{
2398 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2399}
2400
2401/*
2402 * Translate terminal control chars from 7-bit to 8-bit:
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002403 * <Esc>[ -> CSI <M_C_[>
2404 * <Esc>] -> OSC <M-C-]>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 * <Esc>O -> <M-C-O>
2406 */
2407 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002408term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409{
2410 if (*p == ESC)
2411 {
2412 if (p[1] == '[')
2413 return CSI;
2414 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002415 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 if (p[1] == 'O')
2417 return 0x8f;
2418 }
2419 return 0;
2420}
2421
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002422#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002424term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425{
2426 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2427}
2428#endif
2429
2430#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2431
2432 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002433tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434{
2435 static char_u buf[16];
2436 char_u *p;
2437
2438 p = buf + 15;
2439 *p = '\0';
2440 do
2441 {
2442 --p;
2443 *p = (char_u) (i % 10 + '0');
2444 i /= 10;
2445 }
2446 while (i > 0 && p > buf);
2447 return p;
2448}
2449#endif
2450
2451#ifndef HAVE_TGETENT
2452
2453/*
2454 * minimal tgoto() implementation.
2455 * no padding and we only parse for %i %d and %+char
2456 */
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002457 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002458tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459{
2460 static char buf[30];
2461 char *p, *s, *e;
2462
2463 if (!cm)
2464 return "OOPS";
2465 e = buf + 29;
2466 for (s = buf; s < e && *cm; cm++)
2467 {
2468 if (*cm != '%')
2469 {
2470 *s++ = *cm;
2471 continue;
2472 }
2473 switch (*++cm)
2474 {
2475 case 'd':
2476 p = (char *)tltoa((unsigned long)y);
2477 y = x;
2478 while (*p)
2479 *s++ = *p++;
2480 break;
2481 case 'i':
2482 x++;
2483 y++;
2484 break;
2485 case '+':
2486 *s++ = (char)(*++cm + y);
2487 y = x;
2488 break;
2489 case '%':
2490 *s++ = *cm;
2491 break;
2492 default:
2493 return "OOPS";
2494 }
2495 }
2496 *s = '\0';
2497 return buf;
2498}
2499
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002500#endif // HAVE_TGETENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501
2502/*
2503 * Set the terminal name and initialize the terminal options.
2504 * If "name" is NULL or empty, get the terminal name from the environment.
2505 * If that fails, use the default terminal name.
2506 */
2507 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002508termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509{
2510 char_u *term;
2511
2512 if (name != NULL && *name == NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002513 name = NULL; // empty name is equal to no name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 term = name;
2515
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516#ifndef MSWIN
2517 if (term == NULL)
2518 term = mch_getenv((char_u *)"TERM");
2519#endif
2520 if (term == NULL || *term == NUL)
2521 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002522 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002524 // Set the default terminal name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 set_string_default("term", term);
2526 set_string_default("ttytype", term);
2527
2528 /*
2529 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2530 */
2531 set_termname(T_NAME != NULL ? T_NAME : term);
2532}
2533
2534/*
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002535 * The number of calls to ui_write is reduced by using "out_buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002537#define OUT_SIZE 2047
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002538
2539// add one to allow mch_write() in os_win32.c to append a NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540static char_u out_buf[OUT_SIZE + 1];
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002541
2542static int out_pos = 0; // number of chars in out_buf
2543
2544// Since the maximum number of SGR parameters shown as a normal value range is
2545// 16, the escape sequence length can be 4 * 16 + lead + tail.
2546#define MAX_ESC_SEQ_LEN 80
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547
2548/*
2549 * out_flush(): flush the output buffer
2550 */
2551 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002552out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553{
2554 int len;
2555
2556 if (out_pos != 0)
2557 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002558 // set out_pos to 0 before ui_write, to avoid recursiveness
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 len = out_pos;
2560 out_pos = 0;
Bram Moolenaar4c868302021-03-22 16:19:45 +01002561 ui_write(out_buf, len, FALSE);
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002562#ifdef FEAT_JOB_CHANNEL
2563 if (ch_log_output)
2564 {
2565 out_buf[len] = NUL;
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002566 ch_log(NULL, "raw %s output: \"%s\"",
Bram Moolenaare1ee58a2021-01-14 19:04:44 +01002567# ifdef FEAT_GUI
2568 (gui.in_use && !gui.dying && !gui.starting) ? "GUI" :
2569# endif
2570 "terminal",
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002571 out_buf);
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002572 ch_log_output = FALSE;
2573 }
2574#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 }
2576}
2577
Bram Moolenaara338adc2018-01-31 20:51:47 +01002578/*
Bram Moolenaard23a8232018-02-10 18:45:26 +01002579 * out_flush_cursor(): flush the output buffer and redraw the cursor.
2580 * Does not flush recursively in the GUI to avoid slow drawing.
Bram Moolenaara338adc2018-01-31 20:51:47 +01002581 */
2582 void
2583out_flush_cursor(
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002584 int force UNUSED, // when TRUE, update cursor even when not moved
2585 int clear_selection UNUSED) // clear selection under cursor
Bram Moolenaara338adc2018-01-31 20:51:47 +01002586{
2587 mch_disable_flush();
2588 out_flush();
2589 mch_enable_flush();
2590#ifdef FEAT_GUI
2591 if (gui.in_use)
2592 {
2593 gui_update_cursor(force, clear_selection);
2594 gui_may_flush();
2595 }
2596#endif
2597}
2598
2599
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600/*
2601 * Sometimes a byte out of a multi-byte character is written with out_char().
2602 * To avoid flushing half of the character, call this function first.
2603 */
2604 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002605out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606{
2607 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2608 out_flush();
2609}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610
2611#ifdef FEAT_GUI
2612/*
2613 * out_trash(): Throw away the contents of the output buffer
2614 */
2615 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002616out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617{
2618 out_pos = 0;
2619}
2620#endif
2621
2622/*
2623 * out_char(c): put a byte into the output buffer.
2624 * Flush it if it becomes full.
2625 * This should not be used for outputting text on the screen (use functions
2626 * like msg_puts() and screen_putchar() for that).
2627 */
2628 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002629out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630{
Bram Moolenaard0573012017-10-28 21:11:06 +02002631#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002632 if (c == '\n') // turn LF into CR-LF (CRMOD doesn't seem to do this)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 out_char('\r');
2634#endif
2635
2636 out_buf[out_pos++] = c;
2637
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002638 // For testing we flush each time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 if (out_pos >= OUT_SIZE || p_wd)
2640 out_flush();
2641}
2642
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643/*
Bram Moolenaarec6f7352019-10-24 17:49:27 +02002644 * Output "c" like out_char(), but don't flush when p_wd is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 */
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002646 static int
2647out_char_nf(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648{
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002649 out_buf[out_pos++] = (unsigned)c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650
2651 if (out_pos >= OUT_SIZE)
2652 out_flush();
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002653 return (unsigned)c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654}
2655
2656/*
Bram Moolenaarec6f7352019-10-24 17:49:27 +02002657 * A never-padding out_str().
2658 * Use this whenever you don't want to run the string through tputs().
2659 * tputs() above is harmless, but tputs() from the termcap library
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 * is likely to strip off leading digits, that it mistakes for padding
2661 * information, and "%i", "%d", etc.
2662 * This should only be used for writing terminal codes, not for outputting
2663 * normal text (use functions like msg_puts() and screen_putchar() for that).
2664 */
2665 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002666out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667{
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002668 // avoid terminal strings being split up
2669 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 out_flush();
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002671
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 while (*s)
2673 out_char_nf(*s++);
2674
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002675 // For testing we write one string at a time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 if (p_wd)
2677 out_flush();
2678}
2679
2680/*
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002681 * A conditional-flushing out_str, mainly for visualbell.
2682 * Handles a delay internally, because termlib may not respect the delay or do
2683 * it at the wrong time.
2684 * Note: Only for terminal strings.
2685 */
2686 void
2687out_str_cf(char_u *s)
2688{
2689 if (s != NULL && *s)
2690 {
Bram Moolenaarc2226842017-06-29 22:27:24 +02002691#ifdef HAVE_TGETENT
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002692 char_u *p;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002693#endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002694
2695#ifdef FEAT_GUI
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002696 // Don't use tputs() when GUI is used, ncurses crashes.
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002697 if (gui.in_use)
2698 {
2699 out_str_nf(s);
2700 return;
2701 }
2702#endif
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002703 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002704 out_flush();
2705#ifdef HAVE_TGETENT
2706 for (p = s; *s; ++s)
2707 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002708 // flush just before delay command
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002709 if (*s == '$' && *(s + 1) == '<')
2710 {
2711 char_u save_c = *s;
2712 int duration = atoi((char *)s + 2);
2713
2714 *s = NUL;
2715 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2716 *s = save_c;
2717 out_flush();
Bram Moolenaarc2226842017-06-29 22:27:24 +02002718# ifdef ELAPSED_FUNC
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002719 // Only sleep here if we can limit this happening in
2720 // vim_beep().
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002721 p = vim_strchr(s, '>');
2722 if (p == NULL || duration <= 0)
2723 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002724 // can't parse the time, don't sleep here
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002725 p = s;
2726 }
2727 else
2728 {
2729 ++p;
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01002730 do_sleep(duration, FALSE);
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002731 }
Bram Moolenaarc2226842017-06-29 22:27:24 +02002732# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002733 // Rely on the terminal library to sleep.
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002734 p = s;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002735# endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002736 break;
2737 }
2738 }
2739 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2740#else
2741 while (*s)
2742 out_char_nf(*s++);
2743#endif
2744
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002745 // For testing we write one string at a time.
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002746 if (p_wd)
2747 out_flush();
2748 }
2749}
2750
2751/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 * out_str(s): Put a character string a byte at a time into the output buffer.
Bram Moolenaarec6f7352019-10-24 17:49:27 +02002753 * If HAVE_TGETENT is defined use tputs(), the termcap parser. (jw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 * This should only be used for writing terminal codes, not for outputting
2755 * normal text (use functions like msg_puts() and screen_putchar() for that).
2756 */
2757 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002758out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759{
2760 if (s != NULL && *s)
2761 {
2762#ifdef FEAT_GUI
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002763 // Don't use tputs() when GUI is used, ncurses crashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 if (gui.in_use)
2765 {
2766 out_str_nf(s);
2767 return;
2768 }
2769#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002770 // avoid terminal strings being split up
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002771 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 out_flush();
2773#ifdef HAVE_TGETENT
2774 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2775#else
2776 while (*s)
2777 out_char_nf(*s++);
2778#endif
2779
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002780 // For testing we write one string at a time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 if (p_wd)
2782 out_flush();
2783 }
2784}
2785
2786/*
2787 * cursor positioning using termcap parser. (jw)
2788 */
2789 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002790term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791{
2792 OUT_STR(tgoto((char *)T_CM, col, row));
2793}
2794
2795 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002796term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797{
2798 OUT_STR(tgoto((char *)T_CRI, 0, i));
2799}
2800
2801 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002802term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803{
2804 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2805}
2806
2807 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002808term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809{
2810 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2811}
2812
2813#if defined(HAVE_TGETENT) || defined(PROTO)
2814 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002815term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002817 // Can't handle a negative value here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 if (x < 0)
2819 x = 0;
2820 if (y < 0)
2821 y = 0;
2822 OUT_STR(tgoto((char *)T_CWP, y, x));
2823}
2824
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002825# if defined(FEAT_TERMRESPONSE) || defined(PROTO)
2826/*
2827 * Return TRUE if we can request the terminal for a response.
2828 */
2829 static int
2830can_get_termresponse()
2831{
2832 return cur_tmode == TMODE_RAW
2833 && termcap_active
Bram Moolenaarafd78262019-05-10 23:10:31 +02002834# ifdef UNIX
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002835 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd)))
Bram Moolenaarafd78262019-05-10 23:10:31 +02002836# endif
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002837 && p_ek;
2838}
2839
Bram Moolenaarafd78262019-05-10 23:10:31 +02002840/*
2841 * Set "status" to STATUS_SENT.
2842 */
2843 static void
2844termrequest_sent(termrequest_T *status)
2845{
2846 status->tr_progress = STATUS_SENT;
2847 status->tr_start = time(NULL);
2848}
2849
2850/*
2851 * Return TRUE if any of the requests are in STATUS_SENT.
2852 */
2853 static int
2854termrequest_any_pending()
2855{
2856 int i;
2857 time_t now = time(NULL);
2858
2859 for (i = 0; all_termrequests[i] != NULL; ++i)
2860 {
2861 if (all_termrequests[i]->tr_progress == STATUS_SENT)
2862 {
2863 if (all_termrequests[i]->tr_start > 0 && now > 0
2864 && all_termrequests[i]->tr_start + 2 < now)
2865 // Sent the request more than 2 seconds ago and didn't get a
2866 // response, assume it failed.
2867 all_termrequests[i]->tr_progress = STATUS_FAIL;
2868 else
2869 return TRUE;
2870 }
2871 }
2872 return FALSE;
2873}
2874
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002875static int winpos_x = -1;
2876static int winpos_y = -1;
2877static int did_request_winpos = 0;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002878
Bram Moolenaar6bc93052019-04-06 20:00:19 +02002879# if defined(FEAT_EVAL) || defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002880/*
2881 * Try getting the Vim window position from the terminal.
2882 * Returns OK or FAIL.
2883 */
2884 int
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002885term_get_winpos(int *x, int *y, varnumber_T timeout)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002886{
2887 int count = 0;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002888 int prev_winpos_x = winpos_x;
2889 int prev_winpos_y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002890
2891 if (*T_CGP == NUL || !can_get_termresponse())
2892 return FAIL;
2893 winpos_x = -1;
2894 winpos_y = -1;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002895 ++did_request_winpos;
Bram Moolenaarafd78262019-05-10 23:10:31 +02002896 termrequest_sent(&winpos_status);
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002897 OUT_STR(T_CGP);
2898 out_flush();
2899
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002900 // Try reading the result for "timeout" msec.
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002901 while (count++ <= timeout / 10 && !got_int)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002902 {
2903 (void)vpeekc_nomap();
2904 if (winpos_x >= 0 && winpos_y >= 0)
2905 {
2906 *x = winpos_x;
2907 *y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002908 return OK;
2909 }
Bram Moolenaareda1da02019-11-17 17:06:33 +01002910 ui_delay(10L, FALSE);
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002911 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002912 // Do not reset "did_request_winpos", if we timed out the response might
2913 // still come later and we must consume it.
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002914
2915 winpos_x = prev_winpos_x;
2916 winpos_y = prev_winpos_y;
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002917 if (timeout < 10 && prev_winpos_y >= 0 && prev_winpos_x >= 0)
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002918 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002919 // Polling: return previous values if we have them.
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002920 *x = winpos_x;
2921 *y = winpos_y;
2922 return OK;
2923 }
2924
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002925 return FALSE;
2926}
Bram Moolenaar113e1072019-01-20 15:30:40 +01002927# endif
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002928# endif
2929
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 void
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002931term_set_winsize(int height, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002933 OUT_STR(tgoto((char *)T_CWS, width, height));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934}
2935#endif
2936
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002938term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939{
2940 char buf[20];
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002941 int i = *s == CSI ? 1 : 2;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002942 // index in s[] just after <Esc>[ or CSI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002944 // Special handling of 16 colors, because termcap can't handle it
2945 // Also accept "\e[3%dm" for TERMINFO, it is sometimes used
2946 // Also accept CSI instead of <Esc>[
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 if (n >= 8 && t_colors >= 16
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002948 && ((s[0] == ESC && s[1] == '[')
2949#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
2950 || (s[0] == ESC && s[1] == '|')
2951#endif
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02002952 || (s[0] == CSI && (i = 1) == 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 && s[i] != NUL
2954 && (STRCMP(s + i + 1, "%p1%dm") == 0
2955 || STRCMP(s + i + 1, "%dm") == 0)
2956 && (s[i] == '3' || s[i] == '4'))
2957 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958#ifdef TERMINFO
Bram Moolenaar827b1652016-05-05 18:14:03 +02002959 char *format = "%s%s%%p1%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960#else
Bram Moolenaar827b1652016-05-05 18:14:03 +02002961 char *format = "%s%s%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962#endif
Bram Moolenaard315cf52018-05-23 20:30:56 +02002963 char *lead = i == 2 ? (
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002964#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
Bram Moolenaar424bcae2022-01-31 14:59:41 +00002965 s[1] == '|' ? "\033|" :
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002966#endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +00002967 "\033[") : "\233";
Bram Moolenaard315cf52018-05-23 20:30:56 +02002968 char *tail = s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2969 : (n >= 16 ? "48;5;" : "10");
2970
2971 sprintf(buf, format, lead, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2973 }
2974 else
2975 OUT_STR(tgoto((char *)s, 0, n));
2976}
2977
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002978 void
2979term_fg_color(int n)
2980{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002981 // Use "AF" termcap entry if present, "Sf" entry otherwise
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002982 if (*T_CAF)
2983 term_color(T_CAF, n);
2984 else if (*T_CSF)
2985 term_color(T_CSF, n);
2986}
2987
2988 void
2989term_bg_color(int n)
2990{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002991 // Use "AB" termcap entry if present, "Sb" entry otherwise
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002992 if (*T_CAB)
2993 term_color(T_CAB, n);
2994 else if (*T_CSB)
2995 term_color(T_CSB, n);
2996}
2997
Bram Moolenaare023e882020-05-31 16:42:30 +02002998 void
2999term_ul_color(int n)
3000{
3001 if (*T_CAU)
3002 term_color(T_CAU, n);
3003}
3004
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01003005/*
3006 * Return "dark" or "light" depending on the kind of terminal.
3007 * This is just guessing! Recognized are:
3008 * "linux" Linux console
3009 * "screen.linux" Linux console with screen
3010 * "cygwin.*" Cygwin shell
3011 * "putty.*" Putty program
3012 * We also check the COLORFGBG environment variable, which is set by
3013 * rxvt and derivatives. This variable contains either two or three
3014 * values separated by semicolons; we want the last value in either
3015 * case. If this value is 0-6 or 8, our background is dark.
3016 */
3017 char_u *
3018term_bg_default(void)
3019{
3020#if defined(MSWIN)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003021 // DOS console is nearly always black
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01003022 return (char_u *)"dark";
3023#else
3024 char_u *p;
3025
3026 if (STRCMP(T_NAME, "linux") == 0
3027 || STRCMP(T_NAME, "screen.linux") == 0
3028 || STRNCMP(T_NAME, "cygwin", 6) == 0
3029 || STRNCMP(T_NAME, "putty", 5) == 0
3030 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3031 && (p = vim_strrchr(p, ';')) != NULL
3032 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3033 && p[2] == NUL))
3034 return (char_u *)"dark";
3035 return (char_u *)"light";
3036#endif
3037}
3038
Bram Moolenaar61be73b2016-04-29 22:59:22 +02003039#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003040
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003041#define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF)
3042#define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF)
3043#define BLUE(rgb) (((long_u)(rgb) ) & 0xFF)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003044
3045 static void
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003046term_rgb_color(char_u *s, guicolor_T rgb)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003047{
Bram Moolenaar380130f2016-04-22 11:24:43 +02003048#define MAX_COLOR_STR_LEN 100
3049 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003050
Bram Moolenaara1c487e2016-04-22 20:20:19 +02003051 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02003052 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar06b7b582020-05-30 17:49:25 +02003053#ifdef FEAT_VTP
3054 if (use_wt())
3055 {
3056 out_flush();
3057 buf[1] = '[';
3058 vtp_printf(buf);
3059 }
3060 else
3061#endif
3062 OUT_STR(buf);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003063}
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003064
3065 void
3066term_fg_rgb_color(guicolor_T rgb)
3067{
3068 term_rgb_color(T_8F, rgb);
3069}
3070
3071 void
3072term_bg_rgb_color(guicolor_T rgb)
3073{
3074 term_rgb_color(T_8B, rgb);
3075}
Bram Moolenaare023e882020-05-31 16:42:30 +02003076
3077 void
3078term_ul_rgb_color(guicolor_T rgb)
3079{
3080 term_rgb_color(T_8U, rgb);
3081}
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003082#endif
3083
Bram Moolenaar651fca82021-11-29 20:39:38 +00003084#if (defined(UNIX) || defined(VMS) || defined(MACOS_X)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085/*
3086 * Generic function to set window title, using t_ts and t_fs.
3087 */
3088 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003089term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090{
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003091#ifdef FEAT_JOB_CHANNEL
3092 ch_log_output = TRUE;
3093#endif
Bram Moolenaarec6f7352019-10-24 17:49:27 +02003094 // t_ts takes one argument: column in status line
3095 OUT_STR(tgoto((char *)T_TS, 0, 0)); // set title start
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 out_str_nf(title);
Bram Moolenaarec6f7352019-10-24 17:49:27 +02003097 out_str(T_FS); // set title end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 out_flush();
3099}
Bram Moolenaar40385db2018-08-07 22:31:44 +02003100
3101/*
3102 * Tell the terminal to push (save) the title and/or icon, so that it can be
3103 * popped (restored) later.
3104 */
3105 void
3106term_push_title(int which)
3107{
Bram Moolenaar27821262019-05-08 16:41:09 +02003108 if ((which & SAVE_RESTORE_TITLE) && T_CST != NULL && *T_CST != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02003109 {
3110 OUT_STR(T_CST);
3111 out_flush();
3112 }
3113
Bram Moolenaar27821262019-05-08 16:41:09 +02003114 if ((which & SAVE_RESTORE_ICON) && T_SSI != NULL && *T_SSI != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02003115 {
3116 OUT_STR(T_SSI);
3117 out_flush();
3118 }
3119}
3120
3121/*
3122 * Tell the terminal to pop the title and/or icon.
3123 */
3124 void
3125term_pop_title(int which)
3126{
Bram Moolenaar27821262019-05-08 16:41:09 +02003127 if ((which & SAVE_RESTORE_TITLE) && T_CRT != NULL && *T_CRT != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02003128 {
3129 OUT_STR(T_CRT);
3130 out_flush();
3131 }
3132
Bram Moolenaar27821262019-05-08 16:41:09 +02003133 if ((which & SAVE_RESTORE_ICON) && T_SRI != NULL && *T_SRI != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02003134 {
3135 OUT_STR(T_SRI);
3136 out_flush();
3137 }
3138}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139#endif
3140
3141/*
3142 * Make sure we have a valid set or terminal options.
3143 * Replace all entries that are NULL by empty_option
3144 */
3145 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003146ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003148 char_u *env_colors;
3149
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003150 check_options(); // make sure no options are NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151
3152 /*
3153 * MUST have "cm": cursor motion.
3154 */
3155 if (*T_CM == NUL)
Bram Moolenaarac78dd42022-01-02 19:25:26 +00003156 emsg(_(e_terminal_capability_cm_required));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157
3158 /*
3159 * if "cs" defined, use a scroll region, it's faster.
3160 */
3161 if (*T_CS != NUL)
3162 scroll_region = TRUE;
3163 else
3164 scroll_region = FALSE;
3165
3166 if (pairs)
3167 {
3168 /*
3169 * optional pairs
3170 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003171 // TP goes to normal mode for TI (invert) and TB (bold)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 if (*T_ME == NUL)
3173 T_ME = T_MR = T_MD = T_MB = empty_option;
3174 if (*T_SO == NUL || *T_SE == NUL)
3175 T_SO = T_SE = empty_option;
3176 if (*T_US == NUL || *T_UE == NUL)
3177 T_US = T_UE = empty_option;
3178 if (*T_CZH == NUL || *T_CZR == NUL)
3179 T_CZH = T_CZR = empty_option;
3180
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003181 // T_VE is needed even though T_VI is not defined
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 if (*T_VE == NUL)
3183 T_VI = empty_option;
3184
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003185 // if 'mr' or 'me' is not defined use 'so' and 'se'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 if (*T_ME == NUL)
3187 {
3188 T_ME = T_SE;
3189 T_MR = T_SO;
3190 T_MD = T_SO;
3191 }
3192
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003193 // if 'so' or 'se' is not defined use 'mr' and 'me'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 if (*T_SO == NUL)
3195 {
3196 T_SE = T_ME;
3197 if (*T_MR == NUL)
3198 T_SO = T_MD;
3199 else
3200 T_SO = T_MR;
3201 }
3202
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003203 // if 'ZH' or 'ZR' is not defined use 'mr' and 'me'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 if (*T_CZH == NUL)
3205 {
3206 T_CZR = T_ME;
3207 if (*T_MR == NUL)
3208 T_CZH = T_MD;
3209 else
3210 T_CZH = T_MR;
3211 }
3212
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003213 // "Sb" and "Sf" come in pairs
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 if (*T_CSB == NUL || *T_CSF == NUL)
3215 {
3216 T_CSB = empty_option;
3217 T_CSF = empty_option;
3218 }
3219
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003220 // "AB" and "AF" come in pairs
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 if (*T_CAB == NUL || *T_CAF == NUL)
3222 {
3223 T_CAB = empty_option;
3224 T_CAF = empty_option;
3225 }
3226
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003227 // if 'Sb' and 'AB' are not defined, reset "Co"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00003229 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003231 // Set 'weirdinvert' according to value of 't_xs'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 p_wiv = (*T_XS != NUL);
3233 }
3234 need_gather = TRUE;
3235
Bram Moolenaar759d8152020-04-26 16:52:49 +02003236 // Set t_colors to the value of $COLORS or t_Co. Ignore $COLORS in the
3237 // GUI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238 t_colors = atoi((char *)T_CCO);
Bram Moolenaar759d8152020-04-26 16:52:49 +02003239#ifdef FEAT_GUI
3240 if (!gui.in_use)
3241#endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003242 {
Bram Moolenaar759d8152020-04-26 16:52:49 +02003243 env_colors = mch_getenv((char_u *)"COLORS");
3244 if (env_colors != NULL && isdigit(*env_colors))
3245 {
3246 int colors = atoi((char *)env_colors);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003247
Bram Moolenaar759d8152020-04-26 16:52:49 +02003248 if (colors != t_colors)
3249 set_color_count(colors);
3250 }
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003251 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252}
3253
3254#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3255 || defined(PROTO)
3256/*
3257 * Represent the given long_u as individual bytes, with the most significant
3258 * byte first, and store them in dst.
3259 */
3260 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003261add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262{
3263 int i;
3264 int shift;
3265
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003266 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 {
3268 shift = 8 * (sizeof(long_u) - i);
3269 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3270 }
3271}
3272
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273/*
3274 * Interpret the next string of bytes in buf as a long integer, with the most
3275 * significant byte first. Note that it is assumed that buf has been through
3276 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3277 * Puts result in val, and returns the number of bytes read from buf
3278 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
3279 * were present.
3280 */
3281 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003282get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283{
3284 int len;
3285 char_u bytes[sizeof(long_u)];
3286 int i;
3287 int shift;
3288
3289 *val = 0;
3290 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3291 if (len != -1)
3292 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003293 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 {
3295 shift = 8 * (sizeof(long_u) - 1 - i);
3296 *val += (long_u)bytes[i] << shift;
3297 }
3298 }
3299 return len;
3300}
3301#endif
3302
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303/*
3304 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3305 * that buf has been through inchar(). Returns the actual number of bytes used
3306 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
3307 * available.
3308 */
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02003309 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003310get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311{
3312 int len = 0;
3313 int i;
3314 char_u c;
3315
3316 for (i = 0; i < num_bytes; i++)
3317 {
3318 if ((c = buf[len++]) == NUL)
3319 return -1;
3320 if (c == K_SPECIAL)
3321 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003322 if (buf[len] == NUL || buf[len + 1] == NUL) // cannot happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 return -1;
3324 if (buf[len++] == (int)KS_ZERO)
3325 c = NUL;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003326 // else it should be KS_SPECIAL; when followed by KE_FILLER c is
3327 // K_SPECIAL, or followed by KE_CSI and c must be CSI.
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003328 if (buf[len++] == (int)KE_CSI)
3329 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003331 else if (c == CSI && buf[len] == KS_EXTRA
3332 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003333 // CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3334 // the start of a special key, see add_to_input_buf_csi().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003335 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 bytes[i] = c;
3337 }
3338 return len;
3339}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340
3341/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003342 * Check if the new shell size is valid, correct it if it's too small or way
3343 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 */
3345 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003346check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003348 if (Rows < min_rows()) // need room for one window and command line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003350 limit_screen_size();
3351}
3352
3353/*
3354 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3355 */
3356 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003357limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003358{
3359 if (Columns < MIN_COLUMNS)
3360 Columns = MIN_COLUMNS;
3361 else if (Columns > 10000)
3362 Columns = 10000;
3363 if (Rows > 1000)
3364 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365}
3366
Bram Moolenaar86b68352004-12-27 21:59:20 +00003367/*
3368 * Invoked just before the screen structures are going to be (re)allocated.
3369 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003371win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372{
3373 static int old_Rows = 0;
3374 static int old_Columns = 0;
3375
3376 if (old_Rows != Rows || old_Columns != Columns)
3377 ui_new_shellsize();
3378 if (old_Rows != Rows)
3379 {
Bram Moolenaar0a1a6a12021-03-26 14:14:18 +01003380 // If 'window' uses the whole screen, keep it using that.
3381 // Don't change it when set with "-w size" on the command line.
3382 if (p_window == old_Rows - 1 || (old_Rows == 0 && p_window == 0))
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003383 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 old_Rows = Rows;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003385 shell_new_rows(); // update window sizes
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 }
3387 if (old_Columns != Columns)
3388 {
3389 old_Columns = Columns;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003390 shell_new_columns(); // update window sizes
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 }
3392}
3393
3394/*
3395 * Call this function when the Vim shell has been resized in any way.
3396 * Will obtain the current size and redraw (also when size didn't change).
3397 */
3398 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003399shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400{
3401 set_shellsize(0, 0, FALSE);
3402}
3403
3404/*
3405 * Check if the shell size changed. Handle a resize.
3406 * When the size didn't change, nothing happens.
3407 */
3408 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003409shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410{
3411 int old_Rows = Rows;
3412 int old_Columns = Columns;
3413
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003414 if (!exiting
3415#ifdef FEAT_GUI
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003416 // Do not get the size when executing a shell command during
3417 // startup.
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003418 && !gui.starting
3419#endif
3420 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003421 {
3422 (void)ui_get_shellsize();
3423 check_shellsize();
3424 if (old_Rows != Rows || old_Columns != Columns)
3425 shell_resized();
3426 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427}
3428
3429/*
3430 * Set size of the Vim shell.
3431 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3432 * window size (this is used for the :win command).
3433 * If 'mustset' is FALSE, we may try to get the real window size and if
3434 * it fails use 'width' and 'height'.
3435 */
3436 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003437set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438{
3439 static int busy = FALSE;
3440
3441 /*
3442 * Avoid recursiveness, can happen when setting the window size causes
3443 * another window-changed signal.
3444 */
3445 if (busy)
3446 return;
3447
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003448 if (width < 0 || height < 0) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 return;
3450
Bram Moolenaara971b822011-09-14 14:43:25 +02003451 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 {
Bram Moolenaar847a5d62019-07-12 15:37:13 +02003453 // postpone the resizing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 State = SETWSIZE;
3455 return;
3456 }
3457
Bram Moolenaar847a5d62019-07-12 15:37:13 +02003458 if (updating_screen)
3459 // resizing while in update_screen() may cause a crash
3460 return;
3461
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003462 // curwin->w_buffer can be NULL when we are closing a window and the
Bram Moolenaar2808da32020-12-30 14:08:35 +01003463 // buffer (or window) has already been closed and removing a scrollbar
3464 // causes a resize event. Don't resize then, it will happen after entering
3465 // another buffer.
3466 if (curwin->w_buffer == NULL || curwin->w_lines == NULL)
Bram Moolenaara971b822011-09-14 14:43:25 +02003467 return;
3468
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 ++busy;
3470
3471#ifdef AMIGA
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003472 out_flush(); // must do this before mch_get_shellsize() for
3473 // some obscure reason
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474#endif
3475
3476 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3477 {
3478 Rows = height;
3479 Columns = width;
3480 check_shellsize();
3481 ui_set_shellsize(mustset);
3482 }
3483 else
3484 check_shellsize();
3485
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003486 // The window layout used to be adjusted here, but it now happens in
3487 // screenalloc() (also invoked from screenclear()). That is because the
3488 // "busy" check above may skip this, but not screenalloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489
3490 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3491 screenclear();
3492 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003493 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494
3495 if (starting != NO_SCREEN)
3496 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 maketitle();
Bram Moolenaar651fca82021-11-29 20:39:38 +00003498
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 changed_line_abv_curs();
3500 invalidate_botline();
3501
3502 /*
3503 * We only redraw when it's needed:
3504 * - While at the more prompt or executing an external command, don't
3505 * redraw, but position the cursor.
3506 * - While editing the command line, only redraw that.
3507 * - in Ex mode, don't redraw anything.
3508 * - Otherwise, redraw right now, and position the cursor.
3509 * Always need to call update_screen() or screenalloc(), to make
3510 * sure Rows/Columns and the size of ScreenLines[] is correct!
3511 */
3512 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3513 || exmode_active)
3514 {
3515 screenalloc(FALSE);
3516 repeat_message();
3517 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518 else
3519 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003520 if (curwin->w_p_scb)
3521 do_check_scrollbind(TRUE);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003522 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003523 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003524 update_screen(NOT_VALID);
3525 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003526 }
3527 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003528 {
3529 update_topline();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003530 if (pum_visible())
3531 {
3532 redraw_later(NOT_VALID);
Bram Moolenaara5e66212017-09-29 22:42:33 +02003533 ins_compl_show_pum();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003534 }
Bram Moolenaara5e66212017-09-29 22:42:33 +02003535 update_screen(NOT_VALID);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003536 if (redrawing())
3537 setcursor();
3538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003540 cursor_on(); // redrawing may have switched it off
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 }
3542 out_flush();
3543 --busy;
3544}
3545
3546/*
3547 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3548 * commands and Ex mode).
3549 */
3550 void
Bram Moolenaarf4e16ae2020-05-17 16:10:11 +02003551settmode(tmode_T tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552{
3553#ifdef FEAT_GUI
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003554 // don't set the term where gvim was started to any mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 if (gui.in_use)
3556 return;
3557#endif
3558
3559 if (full_screen)
3560 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 /*
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02003562 * When returning after calling a shell cur_tmode is TMODE_UNKNOWN,
3563 * set the terminal to raw mode, even though we think it already is,
3564 * because the shell program may have reset the terminal mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 * When we think the terminal is normal, don't try to set it to
3566 * normal again, because that causes problems (logout!) on some
3567 * machines.
3568 */
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02003569 if (tmode != cur_tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 {
3571#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003572# ifdef FEAT_GUI
3573 if (!gui.in_use && !gui.starting)
3574# endif
3575 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003576 // May need to check for T_CRV response and termcodes, it
3577 // doesn't work in Cooked mode, an external program may get
3578 // them.
3579 if (tmode != TMODE_RAW && termrequest_any_pending())
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003580 (void)vpeekc_nomap();
3581 check_for_codes_from_term();
3582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 if (tmode != TMODE_RAW)
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003585 mch_setmouse(FALSE); // switch mouse off
Bram Moolenaar26e86442020-05-17 14:06:16 +02003586
3587 // Disable bracketed paste and modifyOtherKeys in cooked mode.
3588 // Avoid doing this too often, on some terminals the codes are not
3589 // handled properly.
3590 if (termcap_active && tmode != TMODE_SLEEP
3591 && cur_tmode != TMODE_SLEEP)
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003592 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003593#ifdef FEAT_JOB_CHANNEL
3594 ch_log_output = TRUE;
3595#endif
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003596 if (tmode != TMODE_RAW)
Bram Moolenaar645e3fe2020-05-16 15:05:04 +02003597 {
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003598 out_str(T_BD); // disable bracketed paste mode
Bram Moolenaar645e3fe2020-05-16 15:05:04 +02003599 out_str(T_CTE); // possibly disables modifyOtherKeys
3600 }
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003601 else
Bram Moolenaar645e3fe2020-05-16 15:05:04 +02003602 {
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003603 out_str(T_BE); // enable bracketed paste mode (should
3604 // be before mch_settmode().
Bram Moolenaar645e3fe2020-05-16 15:05:04 +02003605 out_str(T_CTI); // possibly enables modifyOtherKeys
3606 }
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003607 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 out_flush();
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003609 mch_settmode(tmode); // machine specific function
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 cur_tmode = tmode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 if (tmode == TMODE_RAW)
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003612 setmouse(); // may switch mouse on
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 out_flush();
3614 }
3615#ifdef FEAT_TERMRESPONSE
3616 may_req_termresponse();
3617#endif
3618 }
3619}
3620
3621 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003622starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623{
3624 if (full_screen && !termcap_active)
3625 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003626#ifdef FEAT_JOB_CHANNEL
3627 ch_log_output = TRUE;
3628#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003629 out_str(T_TI); // start termcap mode
3630 out_str(T_CTI); // start "raw" mode
3631 out_str(T_KS); // start "keypad transmit" mode
3632 out_str(T_BE); // enable bracketed paste mode
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01003633
Bram Moolenaar51b477f2021-03-03 15:24:28 +01003634#if defined(UNIX) || defined(VMS)
3635 // Enable xterm's focus reporting mode when 'esckeys' is set.
3636 if (focus_mode && p_ek && *T_FE != NUL)
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01003637 out_str(T_FE);
3638#endif
3639
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 out_flush();
3641 termcap_active = TRUE;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003642 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003644# ifdef FEAT_GUI
3645 if (!gui.in_use && !gui.starting)
3646# endif
3647 {
3648 may_req_termresponse();
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003649 // Immediately check for a response. If t_Co changes, we don't
3650 // want to redraw with wrong colors first.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003651 if (crv_status.tr_progress == STATUS_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003652 check_for_codes_from_term();
3653 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654#endif
3655 }
3656}
3657
3658 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003659stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660{
3661 screen_stop_highlight();
3662 reset_cterm_colors();
3663 if (termcap_active)
3664 {
3665#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003666# ifdef FEAT_GUI
3667 if (!gui.in_use && !gui.starting)
3668# endif
3669 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003670 // May need to discard T_CRV, T_U7 or T_RBG response.
3671 if (termrequest_any_pending())
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003672 {
3673# ifdef UNIX
Bram Moolenaarafd78262019-05-10 23:10:31 +02003674 // Give the terminal a chance to respond.
Bram Moolenaar0981c872020-08-23 14:28:37 +02003675 mch_delay(100L, 0);
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003676# endif
3677# ifdef TCIFLUSH
Bram Moolenaarafd78262019-05-10 23:10:31 +02003678 // Discard data received but not read.
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003679 if (exiting)
3680 tcflush(fileno(stdin), TCIFLUSH);
3681# endif
3682 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003683 // Check for termcodes first, otherwise an external program may
3684 // get them.
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003685 check_for_codes_from_term();
3686 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687#endif
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003688#ifdef FEAT_JOB_CHANNEL
3689 ch_log_output = TRUE;
3690#endif
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01003691
Bram Moolenaar51b477f2021-03-03 15:24:28 +01003692#if defined(UNIX) || defined(VMS)
3693 // Disable xterm's focus reporting mode if 'esckeys' is set.
3694 if (focus_mode && p_ek && *T_FD != NUL)
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01003695 out_str(T_FD);
3696#endif
3697
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003698 out_str(T_BD); // disable bracketed paste mode
3699 out_str(T_KE); // stop "keypad transmit" mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 out_flush();
3701 termcap_active = FALSE;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003702 cursor_on(); // just in case it is still off
3703 out_str(T_CTE); // stop "raw" mode
3704 out_str(T_TE); // stop termcap mode
3705 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 out_flush();
3707 }
3708}
3709
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003710#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711/*
3712 * Request version string (for xterm) when needed.
3713 * Only do this after switching to raw mode, otherwise the result will be
3714 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003715 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003716 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 * Only do this after termcap mode has been started, otherwise the codes for
3718 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003719 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3720 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003721 * On Unix only do it when both output and input are a tty (avoid writing
3722 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 * The result is caught in check_termcode().
3724 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003725 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003726may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727{
Bram Moolenaarafd78262019-05-10 23:10:31 +02003728 if (crv_status.tr_progress == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003729 && can_get_termresponse()
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003730 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 && *T_CRV != NUL)
3732 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003733#ifdef FEAT_JOB_CHANNEL
3734 ch_log_output = TRUE;
3735#endif
Bram Moolenaarb255b902018-04-24 21:40:10 +02003736 LOG_TR(("Sending CRV request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 out_str(T_CRV);
Bram Moolenaarafd78262019-05-10 23:10:31 +02003738 termrequest_sent(&crv_status);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003739 // check for the characters now, otherwise they might be eaten by
3740 // get_keystroke()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 out_flush();
3742 (void)vpeekc_nomap();
3743 }
3744}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003745
Bram Moolenaar9584b312013-03-13 19:29:28 +01003746/*
Bram Moolenaara45551a2020-06-09 15:57:37 +02003747 * Send sequences to the terminal and check with t_u7 how the cursor moves, to
3748 * find out properties of the terminal.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02003749 * Note that this goes out before T_CRV, so that the result can be used when
3750 * the termresponse arrives.
Bram Moolenaar9584b312013-03-13 19:29:28 +01003751 */
3752 void
Bram Moolenaara45551a2020-06-09 15:57:37 +02003753check_terminal_behavior(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003754{
Bram Moolenaara45551a2020-06-09 15:57:37 +02003755 int did_send = FALSE;
3756
3757 if (!can_get_termresponse() || starting != 0 || *T_U7 == NUL)
3758 return;
3759
Bram Moolenaarafd78262019-05-10 23:10:31 +02003760 if (u7_status.tr_progress == STATUS_GET
Bram Moolenaar9584b312013-03-13 19:29:28 +01003761 && !option_was_set((char_u *)"ambiwidth"))
3762 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003763 char_u buf[16];
Bram Moolenaar9584b312013-03-13 19:29:28 +01003764
Bram Moolenaara45551a2020-06-09 15:57:37 +02003765 // Ambiguous width check.
3766 // Check how the terminal treats ambiguous character width (UAX #11).
3767 // First, we move the cursor to (1, 0) and print a test ambiguous
3768 // character \u25bd (WHITE DOWN-POINTING TRIANGLE) and then query
3769 // the current cursor position. If the terminal treats \u25bd as
3770 // single width, the position is (1, 1), or if it is treated as double
3771 // width, that will be (1, 2). This function has the side effect that
3772 // changes cursor position, so it must be called immediately after
3773 // entering termcap mode.
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003774#ifdef FEAT_JOB_CHANNEL
3775 ch_log_output = TRUE;
3776#endif
Bram Moolenaara45551a2020-06-09 15:57:37 +02003777 LOG_TR(("Sending request for ambiwidth check"));
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003778 // Do this in the second row. In the first row the returned sequence
3779 // may be CSI 1;2R, which is the same as <S-F3>.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003780 term_windgoto(1, 0);
Bram Moolenaara45551a2020-06-09 15:57:37 +02003781 buf[mb_char2bytes(0x25bd, buf)] = NUL;
Bram Moolenaarafd78262019-05-10 23:10:31 +02003782 out_str(buf);
3783 out_str(T_U7);
3784 termrequest_sent(&u7_status);
3785 out_flush();
Bram Moolenaara45551a2020-06-09 15:57:37 +02003786 did_send = TRUE;
Bram Moolenaar976787d2017-06-04 15:45:50 +02003787
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003788 // This overwrites a few characters on the screen, a redraw is needed
3789 // after this. Clear them out for now.
Bram Moolenaar06029a82019-07-24 14:25:26 +02003790 screen_stop_highlight();
Bram Moolenaarafd78262019-05-10 23:10:31 +02003791 term_windgoto(1, 0);
3792 out_str((char_u *)" ");
Bram Moolenaar96916ac2020-07-08 23:09:28 +02003793 line_was_clobbered(1);
Bram Moolenaara45551a2020-06-09 15:57:37 +02003794 }
3795
Bram Moolenaard1f34e62022-01-07 19:24:20 +00003796 if (xcc_status.tr_progress == STATUS_GET && Rows > 2)
Bram Moolenaara45551a2020-06-09 15:57:37 +02003797 {
3798 // 2. Check compatibility with xterm.
3799 // We move the cursor to (2, 0), print a test sequence and then query
3800 // the current cursor position. If the terminal properly handles
3801 // unknown DCS string and CSI sequence with intermediate byte, the test
3802 // sequence is ignored and the cursor does not move. If the terminal
3803 // handles test sequence incorrectly, a garbage string is displayed and
3804 // the cursor does move.
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003805#ifdef FEAT_JOB_CHANNEL
3806 ch_log_output = TRUE;
3807#endif
Bram Moolenaara45551a2020-06-09 15:57:37 +02003808 LOG_TR(("Sending xterm compatibility test sequence."));
3809 // Do this in the third row. Second row is used by ambiguous
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01003810 // character width check.
Bram Moolenaara45551a2020-06-09 15:57:37 +02003811 term_windgoto(2, 0);
3812 // send the test DCS string.
3813 out_str((char_u *)"\033Pzz\033\\");
3814 // send the test CSI sequence with intermediate byte.
3815 out_str((char_u *)"\033[0%m");
3816 out_str(T_U7);
3817 termrequest_sent(&xcc_status);
3818 out_flush();
3819 did_send = TRUE;
3820
3821 // If the terminal handles test sequence incorrectly, garbage text is
3822 // displayed. Clear them out for now.
3823 screen_stop_highlight();
3824 term_windgoto(2, 0);
3825 out_str((char_u *)" ");
Bram Moolenaar96916ac2020-07-08 23:09:28 +02003826 line_was_clobbered(2);
Bram Moolenaara45551a2020-06-09 15:57:37 +02003827 }
3828
3829 if (did_send)
3830 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003831 term_windgoto(0, 0);
Bram Moolenaar976787d2017-06-04 15:45:50 +02003832
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003833 // Need to reset the known cursor position.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003834 screen_start();
Bram Moolenaar05684312017-12-09 15:11:24 +01003835
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003836 // check for the characters now, otherwise they might be eaten by
3837 // get_keystroke()
Bram Moolenaarafd78262019-05-10 23:10:31 +02003838 out_flush();
3839 (void)vpeekc_nomap();
Bram Moolenaar9584b312013-03-13 19:29:28 +01003840 }
3841}
Bram Moolenaar2951b772013-07-03 12:45:31 +02003842
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003843/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003844 * Similar to requesting the version string: Request the terminal background
3845 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003846 */
3847 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003848may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003849{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003850 if (can_get_termresponse() && starting == 0)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003851 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003852 int didit = FALSE;
3853
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003854# ifdef FEAT_TERMINAL
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003855 // Only request foreground if t_RF is set.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003856 if (rfg_status.tr_progress == STATUS_GET && *T_RFG != NUL)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003857 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003858#ifdef FEAT_JOB_CHANNEL
3859 ch_log_output = TRUE;
3860#endif
Bram Moolenaarb255b902018-04-24 21:40:10 +02003861 LOG_TR(("Sending FG request"));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003862 out_str(T_RFG);
Bram Moolenaarafd78262019-05-10 23:10:31 +02003863 termrequest_sent(&rfg_status);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003864 didit = TRUE;
3865 }
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003866# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003867
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003868 // Only request background if t_RB is set.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003869 if (rbg_status.tr_progress == STATUS_GET && *T_RBG != NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003870 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003871#ifdef FEAT_JOB_CHANNEL
3872 ch_log_output = TRUE;
3873#endif
Bram Moolenaarb255b902018-04-24 21:40:10 +02003874 LOG_TR(("Sending BG request"));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003875 out_str(T_RBG);
Bram Moolenaarafd78262019-05-10 23:10:31 +02003876 termrequest_sent(&rbg_status);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003877 didit = TRUE;
3878 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003879
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003880 if (didit)
3881 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003882 // check for the characters now, otherwise they might be eaten by
3883 // get_keystroke()
Bram Moolenaar833e0e32017-08-26 15:16:03 +02003884 out_flush();
3885 (void)vpeekc_nomap();
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003886 }
3887 }
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003888}
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003889
Bram Moolenaar2951b772013-07-03 12:45:31 +02003890# ifdef DEBUG_TERMRESPONSE
3891 static void
Bram Moolenaarb255b902018-04-24 21:40:10 +02003892log_tr(const char *fmt, ...)
Bram Moolenaar2951b772013-07-03 12:45:31 +02003893{
3894 static FILE *fd_tr = NULL;
3895 static proftime_T start;
3896 proftime_T now;
Bram Moolenaarb255b902018-04-24 21:40:10 +02003897 va_list ap;
Bram Moolenaar2951b772013-07-03 12:45:31 +02003898
3899 if (fd_tr == NULL)
3900 {
3901 fd_tr = fopen("termresponse.log", "w");
3902 profile_start(&start);
3903 }
3904 now = start;
3905 profile_end(&now);
Bram Moolenaarb255b902018-04-24 21:40:10 +02003906 fprintf(fd_tr, "%s: %s ", profile_msg(&now),
3907 must_redraw == NOT_VALID ? "NV"
3908 : must_redraw == CLEAR ? "CL" : " ");
3909 va_start(ap, fmt);
3910 vfprintf(fd_tr, fmt, ap);
3911 va_end(ap);
3912 fputc('\n', fd_tr);
3913 fflush(fd_tr);
Bram Moolenaar2951b772013-07-03 12:45:31 +02003914}
3915# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916#endif
3917
3918/*
3919 * Return TRUE when saving and restoring the screen.
3920 */
3921 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003922swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923{
3924 return (full_screen && *T_TI != NUL);
3925}
3926
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927/*
3928 * By outputting the 'cursor very visible' termcap code, for some windowed
3929 * terminals this makes the screen scrolled to the correct position.
3930 * Used when starting Vim or returning from a shell.
3931 */
3932 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003933scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003935 if (*T_VS != NUL && *T_CVS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003937#ifdef FEAT_JOB_CHANNEL
3938 ch_log_output = TRUE;
3939#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 out_str(T_VS);
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003941 out_str(T_CVS);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003942 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 }
3944}
3945
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003946// True if cursor is not visible
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947static int cursor_is_off = FALSE;
3948
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003949// True if cursor is not visible due to an ongoing cursor-less sleep
3950static int cursor_is_asleep = FALSE;
3951
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952/*
Bram Moolenaar2e310482018-08-21 13:09:10 +02003953 * Enable the cursor without checking if it's already enabled.
3954 */
3955 void
3956cursor_on_force(void)
3957{
3958 out_str(T_VE);
3959 cursor_is_off = FALSE;
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003960 cursor_is_asleep = FALSE;
Bram Moolenaar2e310482018-08-21 13:09:10 +02003961}
3962
3963/*
3964 * Enable the cursor if it's currently off.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 */
3966 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003967cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968{
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003969 if (cursor_is_off && !cursor_is_asleep)
Bram Moolenaar2e310482018-08-21 13:09:10 +02003970 cursor_on_force();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971}
3972
3973/*
3974 * Disable the cursor.
3975 */
3976 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003977cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003979 if (full_screen && !cursor_is_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003981 out_str(T_VI); // disable cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 cursor_is_off = TRUE;
3983 }
3984}
3985
Dominique Pelle748b3082022-01-08 12:41:16 +00003986#ifdef FEAT_GUI
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003987/*
3988 * Check whether the cursor is invisible due to an ongoing cursor-less sleep
3989 */
3990 int
3991cursor_is_sleeping(void)
3992{
3993 return cursor_is_asleep;
3994}
Dominique Pelle748b3082022-01-08 12:41:16 +00003995#endif
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003996
3997/*
3998 * Disable the cursor and mark it disabled by cursor-less sleep
3999 */
4000 void
4001cursor_sleep(void)
4002{
4003 cursor_is_asleep = TRUE;
4004 cursor_off();
4005}
4006
4007/*
4008 * Enable the cursor and mark it not disabled by cursor-less sleep
4009 */
4010 void
4011cursor_unsleep(void)
4012{
4013 cursor_is_asleep = FALSE;
4014 cursor_on();
4015}
4016
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004017#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004019 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004020 */
4021 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004022term_cursor_mode(int forced)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004023{
Bram Moolenaarc9770922017-08-12 20:11:53 +02004024 static int showing_mode = -1;
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004025 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004026
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004027 // Only do something when redrawing the screen and we can restore the
4028 // mode.
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004029 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004030 {
Bram Moolenaar37b9b812017-08-19 23:23:43 +02004031# ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004032 if (forced && initial_cursor_shape > 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004033 // Restore to initial values.
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004034 term_cursor_shape(initial_cursor_shape, initial_cursor_blink);
Bram Moolenaar37b9b812017-08-19 23:23:43 +02004035# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004036 return;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004037 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004038
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004039 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004040 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004041 if (forced || showing_mode != REPLACE)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004042 {
4043 if (*T_CSR != NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004044 p = T_CSR; // Replace mode cursor
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004045 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004046 p = T_CSI; // fall back to Insert mode cursor
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004047 if (*p != NUL)
4048 {
4049 out_str(p);
4050 showing_mode = REPLACE;
4051 }
4052 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004053 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004054 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004055 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004056 if ((forced || showing_mode != INSERT) && *T_CSI != NUL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004057 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004058 out_str(T_CSI); // Insert mode cursor
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004059 showing_mode = INSERT;
4060 }
4061 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004062 else if (forced || showing_mode != NORMAL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004063 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004064 out_str(T_CEI); // non-Insert mode cursor
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004065 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004066 }
4067}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004068
4069# if defined(FEAT_TERMINAL) || defined(PROTO)
4070 void
4071term_cursor_color(char_u *color)
4072{
4073 if (*T_CSC != NUL)
4074 {
Bram Moolenaarec6f7352019-10-24 17:49:27 +02004075 out_str(T_CSC); // set cursor color start
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004076 out_str_nf(color);
Bram Moolenaarec6f7352019-10-24 17:49:27 +02004077 out_str(T_CEC); // set cursor color end
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004078 out_flush();
4079 }
4080}
Bram Moolenaarfc8bec02017-08-19 19:57:34 +02004081# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004082
Bram Moolenaar4db25542017-08-28 22:43:05 +02004083 int
4084blink_state_is_inverted()
4085{
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02004086#ifdef FEAT_TERMRESPONSE
Bram Moolenaar66761db2019-06-05 22:07:51 +02004087 return rbm_status.tr_progress == STATUS_GOT
4088 && rcs_status.tr_progress == STATUS_GOT
Bram Moolenaar4db25542017-08-28 22:43:05 +02004089 && initial_cursor_blink != initial_cursor_shape_blink;
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02004090#else
4091 return FALSE;
4092#endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02004093}
4094
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004095/*
Bram Moolenaarce1c3272017-08-20 15:05:15 +02004096 * "shape": 1 = block, 2 = underline, 3 = vertical bar
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004097 */
4098 void
4099term_cursor_shape(int shape, int blink)
4100{
4101 if (*T_CSH != NUL)
4102 {
4103 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink));
4104 out_flush();
4105 }
Bram Moolenaar4db25542017-08-28 22:43:05 +02004106 else
Bram Moolenaarce1c3272017-08-20 15:05:15 +02004107 {
Bram Moolenaar4db25542017-08-28 22:43:05 +02004108 int do_blink = blink;
4109
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004110 // t_SH is empty: try setting just the blink state.
4111 // The blink flags are XORed together, if the initial blinking from
4112 // style and shape differs, we need to invert the flag here.
Bram Moolenaar4db25542017-08-28 22:43:05 +02004113 if (blink_state_is_inverted())
4114 do_blink = !blink;
4115
4116 if (do_blink && *T_VS != NUL)
4117 {
4118 out_str(T_VS);
4119 out_flush();
4120 }
4121 else if (!do_blink && *T_CVS != NUL)
4122 {
4123 out_str(T_CVS);
4124 out_flush();
4125 }
Bram Moolenaarce1c3272017-08-20 15:05:15 +02004126 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004127}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004128#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004129
4130/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 * Set scrolling region for window 'wp'.
4132 * The region starts 'off' lines from the start of the window.
4133 * Also set the vertical scroll region for a vertically split window. Always
4134 * the full width of the window, excluding the vertical separator.
4135 */
4136 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004137scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138{
4139 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
4140 W_WINROW(wp) + off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 if (*T_CSV != NUL && wp->w_width != Columns)
Bram Moolenaar53f81742017-09-22 14:35:51 +02004142 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1,
4143 wp->w_wincol));
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004144 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145}
4146
4147/*
4148 * Reset scrolling region to the whole screen.
4149 */
4150 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004151scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152{
4153 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 if (*T_CSV != NUL)
4155 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004156 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157}
4158
4159
4160/*
4161 * List of terminal codes that are currently recognized.
4162 */
4163
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00004164static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004166 char_u name[2]; // termcap name of entry
4167 char_u *code; // terminal code (in allocated memory)
4168 int len; // STRLEN(code)
4169 int modlen; // length of part before ";*~".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170} *termcodes = NULL;
4171
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004172static int tc_max_len = 0; // number of entries that termcodes[] can hold
4173static int tc_len = 0; // current number of entries in termcodes[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004175static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004176
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004178clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179{
4180 while (tc_len > 0)
4181 vim_free(termcodes[--tc_len].code);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004182 VIM_CLEAR(termcodes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 tc_max_len = 0;
4184
4185#ifdef HAVE_TGETENT
4186 BC = (char *)empty_option;
4187 UP = (char *)empty_option;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004188 PC = NUL; // set pad character to NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 ospeed = 0;
4190#endif
4191
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004192 need_gather = TRUE; // need to fill termleader[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193}
4194
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004195#define ATC_FROM_TERM 55
4196
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197/*
4198 * Add a new entry to the list of terminal codes.
4199 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004200 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
4201 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 */
4203 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004204add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205{
4206 struct termcode *new_tc;
4207 int i, j;
4208 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004209 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210
4211 if (string == NULL || *string == NUL)
4212 {
4213 del_termcode(name);
4214 return;
4215 }
4216
Bram Moolenaar4f974752019-02-17 17:44:42 +01004217#if defined(MSWIN) && !defined(FEAT_GUI)
Bram Moolenaar71ccd032020-06-12 22:59:11 +02004218 s = vim_strnsave(string, STRLEN(string) + 1);
Bram Moolenaar45500912014-07-09 20:51:07 +02004219#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004220# ifdef VIMDLL
4221 if (!gui.in_use)
Bram Moolenaar71ccd032020-06-12 22:59:11 +02004222 s = vim_strnsave(string, STRLEN(string) + 1);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004223 else
4224# endif
4225 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02004226#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 if (s == NULL)
4228 return;
4229
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004230 // Change leading <Esc>[ to CSI, change <Esc>O to <M-O>.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004231 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004233 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 s[0] = term_7to8bit(string);
4235 }
Bram Moolenaar45500912014-07-09 20:51:07 +02004236
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004237#if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
4238# ifdef VIMDLL
4239 if (!gui.in_use)
4240# endif
Bram Moolenaar45500912014-07-09 20:51:07 +02004241 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004242 if (s[0] == K_NUL)
4243 {
4244 STRMOVE(s + 1, s);
4245 s[1] = 3;
4246 }
Bram Moolenaar45500912014-07-09 20:51:07 +02004247 }
4248#endif
4249
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004250 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004252 need_gather = TRUE; // need to fill termleader[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253
4254 /*
4255 * need to make space for more entries
4256 */
4257 if (tc_len == tc_max_len)
4258 {
4259 tc_max_len += 20;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004260 new_tc = ALLOC_MULT(struct termcode, tc_max_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 if (new_tc == NULL)
4262 {
4263 tc_max_len -= 20;
Dominique Pelle28cf44f2021-05-29 22:34:19 +02004264 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 return;
4266 }
4267 for (i = 0; i < tc_len; ++i)
4268 new_tc[i] = termcodes[i];
4269 vim_free(termcodes);
4270 termcodes = new_tc;
4271 }
4272
4273 /*
4274 * Look for existing entry with the same name, it is replaced.
4275 * Look for an existing entry that is alphabetical higher, the new entry
4276 * is inserted in front of it.
4277 */
4278 for (i = 0; i < tc_len; ++i)
4279 {
4280 if (termcodes[i].name[0] < name[0])
4281 continue;
4282 if (termcodes[i].name[0] == name[0])
4283 {
4284 if (termcodes[i].name[1] < name[1])
4285 continue;
4286 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004287 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 */
4289 if (termcodes[i].name[1] == name[1])
4290 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004291 if (flags == ATC_FROM_TERM && (j = termcode_star(
4292 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004293 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004294 // Don't replace ESC[123;*X or ESC O*X with another when
4295 // invoked from got_code_from_term().
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004296 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004297 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004298 && s[len - 1]
4299 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004300 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004301 // They are equal but for the ";*": don't add it.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004302 vim_free(s);
4303 return;
4304 }
4305 }
4306 else
4307 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004308 // Replace old code.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004309 vim_free(termcodes[i].code);
4310 --tc_len;
4311 break;
4312 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 }
4314 }
4315 /*
4316 * Found alphabetical larger entry, move rest to insert new entry
4317 */
4318 for (j = tc_len; j > i; --j)
4319 termcodes[j] = termcodes[j - 1];
4320 break;
4321 }
4322
4323 termcodes[i].name[0] = name[0];
4324 termcodes[i].name[1] = name[1];
4325 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004326 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004327
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004328 // For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
4329 // accept modifiers.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004330 termcodes[i].modlen = 0;
4331 j = termcode_star(s, len);
4332 if (j > 0)
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01004333 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004334 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01004335 // For "CSI[@;X" the "@" is not included in "modlen".
4336 if (termcodes[i].code[termcodes[i].modlen - 1] == '@')
4337 --termcodes[i].modlen;
4338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 ++tc_len;
4340}
4341
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004342/*
Bram Moolenaara529ce02017-06-22 22:37:57 +02004343 * Check termcode "code[len]" for ending in ;*X or *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004344 * The "X" can be any character.
Bram Moolenaara529ce02017-06-22 22:37:57 +02004345 * Return 0 if not found, 2 for ;*X and 1 for *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004346 */
4347 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004348termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004349{
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01004350 // Shortest is <M-O>*X. With ; shortest is <CSI>@;*X
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004351 if (len >= 3 && code[len - 2] == '*')
4352 {
4353 if (len >= 5 && code[len - 3] == ';')
4354 return 2;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004355 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004356 return 1;
4357 }
4358 return 0;
4359}
4360
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004362find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363{
4364 int i;
4365
4366 for (i = 0; i < tc_len; ++i)
4367 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4368 return termcodes[i].code;
4369 return NULL;
4370}
4371
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004373get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374{
4375 if (i >= tc_len)
4376 return NULL;
4377 return &termcodes[i].name[0];
4378}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02004380/*
4381 * Returns the length of the terminal code at index 'idx'.
4382 */
4383 int
4384get_termcode_len(int idx)
4385{
4386 return termcodes[idx].len;
4387}
4388
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02004389 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004390del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391{
4392 int i;
4393
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004394 if (termcodes == NULL) // nothing there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 return;
4396
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004397 need_gather = TRUE; // need to fill termleader[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398
4399 for (i = 0; i < tc_len; ++i)
4400 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4401 {
4402 del_termcode_idx(i);
4403 return;
4404 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004405 // not found. Give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406}
4407
4408 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004409del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410{
4411 int i;
4412
4413 vim_free(termcodes[idx].code);
4414 --tc_len;
4415 for (i = idx; i < tc_len; ++i)
4416 termcodes[i] = termcodes[i + 1];
4417}
4418
4419#ifdef FEAT_TERMRESPONSE
4420/*
4421 * Called when detected that the terminal sends 8-bit codes.
4422 * Convert all 7-bit codes to their 8-bit equivalent.
4423 */
4424 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004425switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426{
4427 int i;
4428 int c;
4429
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004430 // Only need to do something when not already using 8-bit codes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 if (!term_is_8bit(T_NAME))
4432 {
4433 for (i = 0; i < tc_len; ++i)
4434 {
4435 c = term_7to8bit(termcodes[i].code);
4436 if (c != 0)
4437 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004438 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 termcodes[i].code[0] = c;
4440 }
4441 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004442 need_gather = TRUE; // need to fill termleader[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 }
4444 detected_8bit = TRUE;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004445 LOG_TR(("Switching to 8 bit"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446}
4447#endif
4448
4449#ifdef CHECK_DOUBLE_CLICK
4450static linenr_T orig_topline = 0;
4451# ifdef FEAT_DIFF
4452static int orig_topfill = 0;
4453# endif
4454#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02004455#if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456/*
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00004457 * Checking for double-clicks ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 * "orig_topline" is used to avoid detecting a double-click when the window
4459 * contents scrolled (e.g., when 'scrolloff' is non-zero).
4460 */
4461/*
4462 * Set orig_topline. Used when jumping to another window, so that a double
4463 * click still works.
4464 */
4465 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004466set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467{
4468 orig_topline = wp->w_topline;
4469# ifdef FEAT_DIFF
4470 orig_topfill = wp->w_topfill;
4471# endif
4472}
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02004473
4474/*
4475 * Returns TRUE if the top line and top fill of window 'wp' matches the saved
4476 * topline and topfill.
4477 */
4478 int
4479is_mouse_topline(win_T *wp)
4480{
4481 return orig_topline == wp->w_topline
4482#ifdef FEAT_DIFF
4483 && orig_topfill == wp->w_topfill
4484#endif
4485 ;
4486}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487#endif
4488
4489/*
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004490 * Put "string[new_slen]" in typebuf, or in "buf[bufsize]" if "buf" is not NULL.
4491 * Remove "slen" bytes.
4492 * Returns FAIL for error.
4493 */
Bram Moolenaar975a8802020-06-06 22:36:24 +02004494 int
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004495put_string_in_typebuf(
4496 int offset,
4497 int slen,
4498 char_u *string,
4499 int new_slen,
4500 char_u *buf,
4501 int bufsize,
4502 int *buflen)
4503{
4504 int extra = new_slen - slen;
4505
4506 string[new_slen] = NUL;
4507 if (buf == NULL)
4508 {
4509 if (extra < 0)
4510 // remove matched chars, taking care of noremap
4511 del_typebuf(-extra, offset);
4512 else if (extra > 0)
4513 // insert the extra space we need
4514 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
4515
4516 // Careful: del_typebuf() and ins_typebuf() may have reallocated
4517 // typebuf.tb_buf[]!
4518 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
4519 (size_t)new_slen);
4520 }
4521 else
4522 {
4523 if (extra < 0)
4524 // remove matched characters
4525 mch_memmove(buf + offset, buf + offset - extra,
4526 (size_t)(*buflen + offset + extra));
4527 else if (extra > 0)
4528 {
4529 // Insert the extra space we need. If there is insufficient
4530 // space return -1.
4531 if (*buflen + extra + new_slen >= bufsize)
4532 return FAIL;
4533 mch_memmove(buf + offset + extra, buf + offset,
4534 (size_t)(*buflen - offset));
4535 }
4536 mch_memmove(buf + offset, string, (size_t)new_slen);
4537 *buflen = *buflen + extra + new_slen;
4538 }
4539 return OK;
4540}
4541
4542/*
4543 * Decode a modifier number as xterm provides it into MOD_MASK bits.
4544 */
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01004545 int
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004546decode_modifiers(int n)
4547{
4548 int code = n - 1;
4549 int modifiers = 0;
4550
4551 if (code & 1)
4552 modifiers |= MOD_MASK_SHIFT;
4553 if (code & 2)
4554 modifiers |= MOD_MASK_ALT;
4555 if (code & 4)
4556 modifiers |= MOD_MASK_CTRL;
4557 if (code & 8)
4558 modifiers |= MOD_MASK_META;
4559 return modifiers;
4560}
4561
4562 static int
4563modifiers2keycode(int modifiers, int *key, char_u *string)
4564{
4565 int new_slen = 0;
4566
4567 if (modifiers != 0)
4568 {
4569 // Some keys have the modifier included. Need to handle that here to
Bram Moolenaar749bc952020-10-31 16:33:47 +01004570 // make mappings work. This may result in a special key, such as
4571 // K_S_TAB.
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004572 *key = simplify_key(*key, &modifiers);
4573 if (modifiers != 0)
4574 {
4575 string[new_slen++] = K_SPECIAL;
4576 string[new_slen++] = (int)KS_MODIFIER;
4577 string[new_slen++] = modifiers;
4578 }
4579 }
4580 return new_slen;
4581}
4582
Bram Moolenaar0ca8b5b2020-06-09 21:35:36 +02004583#ifdef FEAT_TERMRESPONSE
4584/*
4585 * Handle a cursor position report.
4586 */
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004587 static void
Bram Moolenaar0ca8b5b2020-06-09 21:35:36 +02004588handle_u7_response(int *arg, char_u *tp UNUSED, int csi_len UNUSED)
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004589{
4590 if (arg[0] == 2 && arg[1] >= 2)
4591 {
4592 char *aw = NULL;
4593
4594 LOG_TR(("Received U7 status: %s", tp));
4595 u7_status.tr_progress = STATUS_GOT;
4596 did_cursorhold = TRUE;
4597 if (arg[1] == 2)
4598 aw = "single";
4599 else if (arg[1] == 3)
4600 aw = "double";
4601 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4602 {
4603 // Setting the option causes a screen redraw. Do
4604 // that right away if possible, keeping any
4605 // messages.
Bram Moolenaar0ca8b5b2020-06-09 21:35:36 +02004606 set_option_value((char_u *)"ambw", 0L, (char_u *)aw, 0);
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004607# ifdef DEBUG_TERMRESPONSE
4608 {
4609 int r = redraw_asap(CLEAR);
4610
4611 log_tr("set 'ambiwidth', redraw_asap(): %d", r);
4612 }
4613# else
4614 redraw_asap(CLEAR);
4615# endif
4616# ifdef FEAT_EVAL
4617 set_vim_var_string(VV_TERMU7RESP, tp, csi_len);
4618# endif
4619 }
4620 }
4621 else if (arg[0] == 3)
4622 {
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004623 int value;
4624
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004625 LOG_TR(("Received compatibility test result: %s", tp));
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004626 xcc_status.tr_progress = STATUS_GOT;
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004627
4628 // Third row: xterm compatibility test.
4629 // If the cursor is on the first column then the terminal can handle
4630 // the request for cursor style and blinking.
4631 value = arg[1] == 1 ? TPR_YES : TPR_NO;
4632 term_props[TPR_CURSOR_STYLE].tpr_status = value;
4633 term_props[TPR_CURSOR_BLINK].tpr_status = value;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004634 }
4635}
4636
4637/*
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004638 * Handle a response to T_CRV: {lead}{first}{x};{vers};{y}c
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01004639 * Xterm and alike use '>' for {first}.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004640 * Rxvt sends "{lead}?1;2c".
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004641 */
4642 static void
4643handle_version_response(int first, int *arg, int argc, char_u *tp)
4644{
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004645 // The xterm version. It is set to zero when it can't be an actual xterm
4646 // version.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004647 int version = arg[1];
4648
4649 LOG_TR(("Received CRV response: %s", tp));
4650 crv_status.tr_progress = STATUS_GOT;
4651 did_cursorhold = TRUE;
4652
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004653 // Reset terminal properties that are set based on the termresponse.
4654 // Mainly useful for tests that send the termresponse multiple times.
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02004655 // For testing all props can be reset.
Bram Moolenaar142499d2020-06-13 16:39:31 +02004656 init_term_props(
4657#ifdef FEAT_EVAL
4658 reset_term_props_on_termresponse
4659#else
4660 FALSE
4661#endif
4662 );
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004663
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004664 // If this code starts with CSI, you can bet that the
4665 // terminal uses 8-bit codes.
4666 if (tp[0] == CSI)
4667 switch_to_8bit();
4668
4669 // Screen sends 40500.
4670 // rxvt sends its version number: "20703" is 2.7.3.
4671 // Ignore it for when the user has set 'term' to xterm,
4672 // even though it's an rxvt.
4673 if (version > 20000)
4674 version = 0;
4675
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004676 // Figure out more if the reeponse is CSI > 99 ; 99 ; 99 c
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004677 if (first == '>' && argc == 3)
4678 {
4679 int need_flush = FALSE;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004680
4681 // mintty 2.9.5 sends 77;20905;0c.
4682 // (77 is ASCII 'M' for mintty.)
4683 if (arg[0] == 77)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004684 {
4685 // mintty can do SGR mouse reporting
4686 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
4687 }
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004688
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004689 // If xterm version >= 141 try to get termcap codes. For other
4690 // terminals the request should be ignored.
Bram Moolenaar6f79e612021-12-21 09:12:23 +00004691 if (version >= 141 && p_xtermcodes)
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004692 {
4693 LOG_TR(("Enable checking for XT codes"));
4694 check_for_codes = TRUE;
4695 need_gather = TRUE;
4696 req_codes_from_term();
4697 }
4698
4699 // libvterm sends 0;100;0
4700 if (version == 100 && arg[0] == 0 && arg[2] == 0)
4701 {
4702 // If run from Vim $COLORS is set to the number of
4703 // colors the terminal supports. Otherwise assume
4704 // 256, libvterm supports even more.
4705 if (mch_getenv((char_u *)"COLORS") == NULL)
4706 may_adjust_color_count(256);
4707 // Libvterm can handle SGR mouse reporting.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004708 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004709 }
4710
4711 if (version == 95)
4712 {
4713 // Mac Terminal.app sends 1;95;0
4714 if (arg[0] == 1 && arg[2] == 0)
4715 {
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004716 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
4717 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004718 }
4719 // iTerm2 sends 0;95;0
4720 else if (arg[0] == 0 && arg[2] == 0)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004721 {
4722 // iTerm2 can do SGR mouse reporting
4723 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
4724 }
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004725 // old iTerm2 sends 0;95;
4726 else if (arg[0] == 0 && arg[2] == -1)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004727 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004728 }
4729
4730 // screen sends 83;40500;0 83 is 'S' in ASCII.
4731 if (arg[0] == 83)
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004732 {
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004733 // screen supports SGR mouse codes since 4.7.0
4734 if (arg[1] >= 40700)
4735 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
4736 else
4737 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM;
4738 }
4739
4740 // If no recognized terminal has set mouse behavior, assume xterm.
4741 if (term_props[TPR_MOUSE].tpr_status == TPR_UNKNOWN)
4742 {
4743 // Xterm version 277 supports SGR.
4744 // Xterm version >= 95 supports mouse dragging.
4745 if (version >= 277)
4746 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004747 else if (version >= 95)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004748 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM2;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004749 }
4750
4751 // Detect terminals that set $TERM to something like
4752 // "xterm-256color" but are not fully xterm compatible.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004753 //
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004754 // Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
Bram Moolenaar8dff4cb2020-06-14 14:34:16 +02004755 // Newer Gnome-terminal sends 65;6001;1.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004756 // xfce4-terminal sends 1;2802;0.
4757 // screen sends 83;40500;0
4758 // Assuming any version number over 2500 is not an
4759 // xterm (without the limit for rxvt and screen).
4760 if (arg[1] >= 2500)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004761 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004762
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004763 else if (version == 136 && arg[2] == 0)
4764 {
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004765 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004766
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004767 // PuTTY sends 0;136;0
4768 if (arg[0] == 0)
4769 {
4770 // supports sgr-like mouse reporting.
4771 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
4772 }
4773 // vandyke SecureCRT sends 1;136;0
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004774 }
4775
4776 // Konsole sends 0;115;0
4777 else if (version == 115 && arg[0] == 0 && arg[2] == 0)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004778 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004779
4780 // GNU screen sends 83;30600;0, 83;40500;0, etc.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004781 // 30600/40500 is a version number of GNU screen. DA2 support is added
4782 // on 3.6. DCS string has a special meaning to GNU screen, but xterm
4783 // compatibility checking does not detect GNU screen.
4784 if (arg[0] == 83 && arg[1] >= 30600)
4785 {
4786 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO;
4787 term_props[TPR_CURSOR_BLINK].tpr_status = TPR_NO;
4788 }
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004789
4790 // Xterm first responded to this request at patch level
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004791 // 95, so assume anything below 95 is not xterm and hopefully supports
4792 // the underline RGB color sequence.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004793 if (version < 95)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004794 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004795
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004796 // Getting the cursor style is only supported properly by xterm since
4797 // version 279 (otherwise it returns 0x18).
4798 if (version < 279)
4799 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO;
4800
4801 /*
4802 * Take action on the detected properties.
4803 */
4804
4805 // Unless the underline RGB color is expected to work, disable "t_8u".
4806 // It does not work for the real Xterm, it resets the background color.
Bram Moolenaar8dff4cb2020-06-14 14:34:16 +02004807 if (term_props[TPR_UNDERLINE_RGB].tpr_status != TPR_YES && *T_8U != NUL)
Bram Moolenaar8e20f752020-06-14 16:43:47 +02004808 set_string_option_direct((char_u *)"t_8u", -1, (char_u *)"",
4809 OPT_FREE, 0);
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004810
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004811 // Only set 'ttymouse' automatically if it was not set
4812 // by the user already.
4813 if (!option_was_set((char_u *)"ttym")
4814 && (term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_XTERM2
4815 || term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR))
4816 {
4817 set_option_value((char_u *)"ttym", 0L,
4818 term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR
4819 ? (char_u *)"sgr" : (char_u *)"xterm2", 0);
4820 }
4821
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004822 // Only request the cursor style if t_SH and t_RS are
4823 // set. Only supported properly by xterm since version
4824 // 279 (otherwise it returns 0x18).
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004825 // Only when getting the cursor style was detected to work.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004826 // Not for Terminal.app, it can't handle t_RS, it
4827 // echoes the characters to the screen.
4828 if (rcs_status.tr_progress == STATUS_GET
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004829 && term_props[TPR_CURSOR_STYLE].tpr_status == TPR_YES
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004830 && *T_CSH != NUL
4831 && *T_CRS != NUL)
4832 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02004833#ifdef FEAT_JOB_CHANNEL
4834 ch_log_output = TRUE;
4835#endif
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004836 LOG_TR(("Sending cursor style request"));
4837 out_str(T_CRS);
4838 termrequest_sent(&rcs_status);
4839 need_flush = TRUE;
4840 }
4841
4842 // Only request the cursor blink mode if t_RC set. Not
4843 // for Gnome terminal, it can't handle t_RC, it
4844 // echoes the characters to the screen.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004845 // Only when getting the cursor style was detected to work.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004846 if (rbm_status.tr_progress == STATUS_GET
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004847 && term_props[TPR_CURSOR_BLINK].tpr_status == TPR_YES
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004848 && *T_CRC != NUL)
4849 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02004850#ifdef FEAT_JOB_CHANNEL
4851 ch_log_output = TRUE;
4852#endif
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004853 LOG_TR(("Sending cursor blink mode request"));
4854 out_str(T_CRC);
4855 termrequest_sent(&rbm_status);
4856 need_flush = TRUE;
4857 }
4858
4859 if (need_flush)
4860 out_flush();
4861 }
4862}
4863
4864/*
4865 * Handle a sequence with key and modifier, one of:
4866 * {lead}27;{modifier};{key}~
4867 * {lead}{key};{modifier}u
4868 * Returns the difference in length.
4869 */
4870 static int
4871handle_key_with_modifier(
4872 int *arg,
4873 int trail,
4874 int csi_len,
4875 int offset,
4876 char_u *buf,
4877 int bufsize,
4878 int *buflen)
4879{
4880 int key;
4881 int modifiers;
4882 int new_slen;
4883 char_u string[MAX_KEY_CODE_LEN + 1];
4884
4885 seenModifyOtherKeys = TRUE;
4886 if (trail == 'u')
4887 key = arg[0];
4888 else
4889 key = arg[2];
4890
4891 modifiers = decode_modifiers(arg[1]);
4892
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02004893 // Some keys need adjustment when the Ctrl modifier is used.
4894 key = may_adjust_key_for_ctrl(modifiers, key);
4895
Bram Moolenaaref6746f2020-06-20 14:43:23 +02004896 // May remove the shift modifier if it's already included in the key.
4897 modifiers = may_remove_shift_modifier(modifiers, key);
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004898
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004899 // insert modifiers with KS_MODIFIER
4900 new_slen = modifiers2keycode(modifiers, &key, string);
4901
Bram Moolenaar749bc952020-10-31 16:33:47 +01004902 if (IS_SPECIAL(key))
4903 {
4904 string[new_slen++] = K_SPECIAL;
4905 string[new_slen++] = KEY2TERMCAP0(key);
4906 string[new_slen++] = KEY2TERMCAP1(key);
4907 }
4908 else if (has_mbyte)
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004909 new_slen += (*mb_char2bytes)(key, string + new_slen);
4910 else
4911 string[new_slen++] = key;
4912
4913 if (put_string_in_typebuf(offset, csi_len, string, new_slen,
4914 buf, bufsize, buflen) == FAIL)
4915 return -1;
4916 return new_slen - csi_len + offset;
4917}
4918
4919/*
4920 * Handle a CSI escape sequence.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004921 * - Xterm version string.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004922 *
4923 * - Cursor position report: {lead}{row};{col}R
4924 * The final byte must be 'R'. It is used for checking the
4925 * ambiguous-width character state.
4926 *
4927 * - window position reply: {lead}3;{x};{y}t
4928 *
4929 * - key with modifiers when modifyOtherKeys is enabled:
4930 * {lead}27;{modifier};{key}~
4931 * {lead}{key};{modifier}u
4932 * Return 0 for no match, -1 for partial match, > 0 for full match.
4933 */
4934 static int
4935handle_csi(
4936 char_u *tp,
4937 int len,
4938 char_u *argp,
4939 int offset,
4940 char_u *buf,
4941 int bufsize,
4942 int *buflen,
4943 char_u *key_name,
4944 int *slen)
4945{
4946 int first = -1; // optional char right after {lead}
4947 int trail; // char that ends CSI sequence
4948 int arg[3] = {-1, -1, -1}; // argument numbers
4949 int argc; // number of arguments
4950 char_u *ap = argp;
4951 int csi_len;
4952
4953 // Check for non-digit after CSI.
4954 if (!VIM_ISDIGIT(*ap))
4955 first = *ap++;
4956
4957 // Find up to three argument numbers.
4958 for (argc = 0; argc < 3; )
4959 {
4960 if (ap >= tp + len)
4961 return -1;
4962 if (*ap == ';')
4963 arg[argc++] = -1; // omitted number
4964 else if (VIM_ISDIGIT(*ap))
4965 {
4966 arg[argc] = 0;
4967 for (;;)
4968 {
4969 if (ap >= tp + len)
4970 return -1;
4971 if (!VIM_ISDIGIT(*ap))
4972 break;
4973 arg[argc] = arg[argc] * 10 + (*ap - '0');
4974 ++ap;
4975 }
4976 ++argc;
4977 }
4978 if (*ap == ';')
4979 ++ap;
4980 else
4981 break;
4982 }
4983
4984 // mrxvt has been reported to have "+" in the version. Assume
4985 // the escape sequence ends with a letter or one of "{|}~".
4986 while (ap < tp + len
4987 && !(*ap >= '{' && *ap <= '~')
4988 && !ASCII_ISALPHA(*ap))
4989 ++ap;
4990 if (ap >= tp + len)
4991 return -1;
4992 trail = *ap;
4993 csi_len = (int)(ap - tp) + 1;
4994
4995 // Cursor position report: Eat it when there are 2 arguments
4996 // and it ends in 'R'. Also when u7_status is not "sent", it
4997 // may be from a previous Vim that just exited. But not for
4998 // <S-F3>, it sends something similar, check for row and column
4999 // to make sense.
5000 if (first == -1 && argc == 2 && trail == 'R')
5001 {
5002 handle_u7_response(arg, tp, csi_len);
5003
5004 key_name[0] = (int)KS_EXTRA;
5005 key_name[1] = (int)KE_IGNORE;
5006 *slen = csi_len;
5007 }
5008
5009 // Version string: Eat it when there is at least one digit and
5010 // it ends in 'c'
5011 else if (*T_CRV != NUL && ap > argp + 1 && trail == 'c')
5012 {
5013 handle_version_response(first, arg, argc, tp);
5014
5015 *slen = csi_len;
5016# ifdef FEAT_EVAL
5017 set_vim_var_string(VV_TERMRESPONSE, tp, *slen);
5018# endif
5019 apply_autocmds(EVENT_TERMRESPONSE,
5020 NULL, NULL, FALSE, curbuf);
5021 key_name[0] = (int)KS_EXTRA;
5022 key_name[1] = (int)KE_IGNORE;
5023 }
5024
5025 // Check blinking cursor from xterm:
5026 // {lead}?12;1$y set
5027 // {lead}?12;2$y not set
5028 //
5029 // {lead} can be <Esc>[ or CSI
5030 else if (rbm_status.tr_progress == STATUS_SENT
5031 && first == '?'
5032 && ap == argp + 6
5033 && arg[0] == 12
5034 && ap[-1] == '$'
5035 && trail == 'y')
5036 {
5037 initial_cursor_blink = (arg[1] == '1');
5038 rbm_status.tr_progress = STATUS_GOT;
5039 LOG_TR(("Received cursor blinking mode response: %s", tp));
5040 key_name[0] = (int)KS_EXTRA;
5041 key_name[1] = (int)KE_IGNORE;
5042 *slen = csi_len;
5043# ifdef FEAT_EVAL
5044 set_vim_var_string(VV_TERMBLINKRESP, tp, *slen);
5045# endif
5046 }
5047
5048 // Check for a window position response from the terminal:
5049 // {lead}3;{x};{y}t
5050 else if (did_request_winpos && argc == 3 && arg[0] == 3
5051 && trail == 't')
5052 {
5053 winpos_x = arg[1];
5054 winpos_y = arg[2];
5055 // got finished code: consume it
5056 key_name[0] = (int)KS_EXTRA;
5057 key_name[1] = (int)KE_IGNORE;
5058 *slen = csi_len;
5059
5060 if (--did_request_winpos <= 0)
5061 winpos_status.tr_progress = STATUS_GOT;
5062 }
5063
5064 // Key with modifier:
5065 // {lead}27;{modifier};{key}~
5066 // {lead}{key};{modifier}u
5067 else if ((arg[0] == 27 && argc == 3 && trail == '~')
5068 || (argc == 2 && trail == 'u'))
5069 {
5070 return len + handle_key_with_modifier(arg, trail,
5071 csi_len, offset, buf, bufsize, buflen);
5072 }
5073
5074 // else: Unknown CSI sequence. We could drop it, but then the
5075 // user can't create a map for it.
5076 return 0;
5077}
5078
5079/*
5080 * Handle an OSC sequence, fore/background color response from the terminal:
5081 *
5082 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
5083 * or {lead}{code};rgb:{rr}/{gg}/{bb}{tail}
5084 *
5085 * {code} is 10 for foreground, 11 for background
5086 * {lead} can be <Esc>] or OSC
5087 * {tail} can be '\007', <Esc>\ or STERM.
5088 *
5089 * Consume any code that starts with "{lead}11;", it's also
5090 * possible that "rgba" is following.
5091 */
5092 static int
5093handle_osc(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen)
5094{
5095 int i, j;
5096
5097 j = 1 + (tp[0] == ESC);
5098 if (len >= j + 3 && (argp[0] != '1'
5099 || (argp[1] != '1' && argp[1] != '0')
5100 || argp[2] != ';'))
5101 i = 0; // no match
5102 else
5103 for (i = j; i < len; ++i)
5104 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
5105 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
5106 {
5107 int is_bg = argp[1] == '1';
5108 int is_4digit = i - j >= 21 && tp[j + 11] == '/'
5109 && tp[j + 16] == '/';
5110
5111 if (i - j >= 15 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
5112 && (is_4digit
5113 || (tp[j + 9] == '/' && tp[i + 12 == '/'])))
5114 {
5115 char_u *tp_r = tp + j + 7;
5116 char_u *tp_g = tp + j + (is_4digit ? 12 : 10);
5117 char_u *tp_b = tp + j + (is_4digit ? 17 : 13);
5118# ifdef FEAT_TERMINAL
5119 int rval, gval, bval;
5120
5121 rval = hexhex2nr(tp_r);
5122 gval = hexhex2nr(tp_b);
5123 bval = hexhex2nr(tp_g);
5124# endif
5125 if (is_bg)
5126 {
5127 char *new_bg_val = (3 * '6' < *tp_r + *tp_g +
5128 *tp_b) ? "light" : "dark";
5129
5130 LOG_TR(("Received RBG response: %s", tp));
5131 rbg_status.tr_progress = STATUS_GOT;
5132# ifdef FEAT_TERMINAL
5133 bg_r = rval;
5134 bg_g = gval;
5135 bg_b = bval;
5136# endif
5137 if (!option_was_set((char_u *)"bg")
5138 && STRCMP(p_bg, new_bg_val) != 0)
5139 {
5140 // value differs, apply it
5141 set_option_value((char_u *)"bg", 0L,
5142 (char_u *)new_bg_val, 0);
5143 reset_option_was_set((char_u *)"bg");
5144 redraw_asap(CLEAR);
5145 }
5146 }
5147# ifdef FEAT_TERMINAL
5148 else
5149 {
5150 LOG_TR(("Received RFG response: %s", tp));
5151 rfg_status.tr_progress = STATUS_GOT;
5152 fg_r = rval;
5153 fg_g = gval;
5154 fg_b = bval;
5155 }
5156# endif
5157 }
5158
5159 // got finished code: consume it
5160 key_name[0] = (int)KS_EXTRA;
5161 key_name[1] = (int)KE_IGNORE;
5162 *slen = i + 1 + (tp[i] == ESC);
5163# ifdef FEAT_EVAL
5164 set_vim_var_string(is_bg ? VV_TERMRBGRESP
5165 : VV_TERMRFGRESP, tp, *slen);
5166# endif
5167 break;
5168 }
5169 if (i == len)
5170 {
5171 LOG_TR(("not enough characters for RB"));
5172 return FAIL;
5173 }
5174 return OK;
5175}
5176
5177/*
5178 * Check for key code response from xterm:
5179 * {lead}{flag}+r<hex bytes><{tail}
5180 *
5181 * {lead} can be <Esc>P or DCS
5182 * {flag} can be '0' or '1'
5183 * {tail} can be Esc>\ or STERM
5184 *
5185 * Check for cursor shape response from xterm:
5186 * {lead}1$r<digit> q{tail}
5187 *
5188 * {lead} can be <Esc>P or DCS
5189 * {tail} can be <Esc>\ or STERM
5190 *
5191 * Consume any code that starts with "{lead}.+r" or "{lead}.$r".
5192 */
5193 static int
5194handle_dcs(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen)
5195{
5196 int i, j;
5197
5198 j = 1 + (tp[0] == ESC);
5199 if (len < j + 3)
5200 i = len; // need more chars
5201 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r')
5202 i = 0; // no match
5203 else if (argp[1] == '+')
5204 // key code response
5205 for (i = j; i < len; ++i)
5206 {
5207 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
5208 || tp[i] == STERM)
5209 {
5210 if (i - j >= 3)
5211 got_code_from_term(tp + j, i);
5212 key_name[0] = (int)KS_EXTRA;
5213 key_name[1] = (int)KE_IGNORE;
5214 *slen = i + 1 + (tp[i] == ESC);
5215 break;
5216 }
5217 }
5218 else
5219 {
5220 // Probably the cursor shape response. Make sure that "i"
5221 // is equal to "len" when there are not sufficient
5222 // characters.
5223 for (i = j + 3; i < len; ++i)
5224 {
5225 if (i - j == 3 && !isdigit(tp[i]))
5226 break;
5227 if (i - j == 4 && tp[i] != ' ')
5228 break;
5229 if (i - j == 5 && tp[i] != 'q')
5230 break;
5231 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM)
5232 break;
5233 if ((i - j == 6 && tp[i] == STERM)
5234 || (i - j == 7 && tp[i] == '\\'))
5235 {
5236 int number = argp[3] - '0';
5237
5238 // 0, 1 = block blink, 2 = block
5239 // 3 = underline blink, 4 = underline
5240 // 5 = vertical bar blink, 6 = vertical bar
5241 number = number == 0 ? 1 : number;
5242 initial_cursor_shape = (number + 1) / 2;
5243 // The blink flag is actually inverted, compared to
5244 // the value set with T_SH.
5245 initial_cursor_shape_blink =
5246 (number & 1) ? FALSE : TRUE;
5247 rcs_status.tr_progress = STATUS_GOT;
5248 LOG_TR(("Received cursor shape response: %s", tp));
5249
5250 key_name[0] = (int)KS_EXTRA;
5251 key_name[1] = (int)KE_IGNORE;
5252 *slen = i + 1;
5253# ifdef FEAT_EVAL
5254 set_vim_var_string(VV_TERMSTYLERESP, tp, *slen);
5255# endif
5256 break;
5257 }
5258 }
5259 }
5260
5261 if (i == len)
5262 {
5263 // These codes arrive many together, each code can be
5264 // truncated at any point.
5265 LOG_TR(("not enough characters for XT"));
5266 return FAIL;
5267 }
5268 return OK;
5269}
Bram Moolenaar0ca8b5b2020-06-09 21:35:36 +02005270#endif // FEAT_TERMRESPONSE
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005271
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005272/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 * Check if typebuf.tb_buf[] contains a terminal key code.
5274 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
Bram Moolenaar975a8802020-06-06 22:36:24 +02005275 * + "max_offset"].
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005277 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 * With a match, the match is removed, the replacement code is inserted in
5279 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
5280 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005281 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
5282 * "buflen" is then the length of the string in buf[] and is updated for
5283 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 */
5285 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005286check_termcode(
5287 int max_offset,
5288 char_u *buf,
5289 int bufsize,
5290 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291{
5292 char_u *tp;
5293 char_u *p;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005294 int slen = 0; // init for GCC
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005295 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005297 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 int offset;
5299 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005300 int modifiers;
Bram Moolenaar090209b2017-06-23 22:45:33 +02005301 char_u *modifiers_start = NULL;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005302 int key;
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005303 int new_slen; // Length of what will replace the termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 char_u string[MAX_KEY_CODE_LEN + 1];
5305 int i, j;
5306 int idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 int cpo_koffset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308
5309 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
5310
5311 /*
5312 * Speed up the checks for terminal codes by gathering all first bytes
5313 * used in termleader[]. Often this is just a single <Esc>.
5314 */
5315 if (need_gather)
5316 gather_termleader();
5317
5318 /*
5319 * Check at several positions in typebuf.tb_buf[], to catch something like
5320 * "x<Up>" that can be mapped. Stop at max_offset, because characters
5321 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01005322 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 * This is used often, KEEP IT FAST!
5324 */
5325 for (offset = 0; offset < max_offset; ++offset)
5326 {
5327 if (buf == NULL)
5328 {
5329 if (offset >= typebuf.tb_len)
5330 break;
5331 tp = typebuf.tb_buf + typebuf.tb_off + offset;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005332 len = typebuf.tb_len - offset; // length of the input
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 }
5334 else
5335 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005336 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 break;
5338 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005339 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 }
5341
5342 /*
5343 * Don't check characters after K_SPECIAL, those are already
5344 * translated terminal chars (avoid translating ~@^Hx).
5345 */
5346 if (*tp == K_SPECIAL)
5347 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005348 offset += 2; // there are always 2 extra characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 continue;
5350 }
5351
5352 /*
5353 * Skip this position if the character does not appear as the first
5354 * character in term_strings. This speeds up a lot, since most
5355 * termcodes start with the same character (ESC or CSI).
5356 */
5357 i = *tp;
5358 for (p = termleader; *p && *p != i; ++p)
5359 ;
5360 if (*p == NUL)
5361 continue;
5362
5363 /*
5364 * Skip this position if p_ek is not set and tp[0] is an ESC and we
5365 * are in Insert mode.
5366 */
5367 if (*tp == ESC && !p_ek && (State & INSERT))
5368 continue;
5369
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005370 key_name[0] = NUL; // no key name found yet
5371 key_name[1] = NUL; // no key name found yet
5372 modifiers = 0; // no modifiers yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373
5374#ifdef FEAT_GUI
5375 if (gui.in_use)
5376 {
5377 /*
5378 * GUI special key codes are all of the form [CSI xx].
5379 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005380 if (*tp == CSI) // Special key from GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 {
5382 if (len < 3)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005383 return -1; // Shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 slen = 3;
5385 key_name[0] = tp[1];
5386 key_name[1] = tp[2];
5387 }
5388 }
5389 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005390#endif // FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 {
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005392 int mouse_index_found = -1;
5393
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 for (idx = 0; idx < tc_len; ++idx)
5395 {
5396 /*
5397 * Ignore the entry if we are not at the start of
5398 * typebuf.tb_buf[]
5399 * and there are not enough characters to make a match.
5400 * But only when the 'K' flag is in 'cpoptions'.
5401 */
5402 slen = termcodes[idx].len;
Bram Moolenaara529ce02017-06-22 22:37:57 +02005403 modifiers_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 if (cpo_koffset && offset && len < slen)
5405 continue;
5406 if (STRNCMP(termcodes[idx].code, tp,
5407 (size_t)(slen > len ? len : slen)) == 0)
5408 {
Bram Moolenaarc14b57c2021-12-03 13:20:29 +00005409 int looks_like_mouse_start = FALSE;
5410
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005411 if (len < slen) // got a partial sequence
5412 return -1; // need to get more chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413
5414 /*
5415 * When found a keypad key, check if there is another key
5416 * that matches and use that one. This makes <Home> to be
5417 * found instead of <kHome> when they produce the same
5418 * key code.
5419 */
5420 if (termcodes[idx].name[0] == 'K'
5421 && VIM_ISDIGIT(termcodes[idx].name[1]))
5422 {
5423 for (j = idx + 1; j < tc_len; ++j)
5424 if (termcodes[j].len == slen &&
5425 STRNCMP(termcodes[idx].code,
5426 termcodes[j].code, slen) == 0)
5427 {
5428 idx = j;
5429 break;
5430 }
5431 }
5432
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005433 if (slen == 2 && len > 2
5434 && termcodes[idx].code[0] == ESC
Bram Moolenaarc14b57c2021-12-03 13:20:29 +00005435 && termcodes[idx].code[1] == '[')
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005436 {
Bram Moolenaarc14b57c2021-12-03 13:20:29 +00005437 // The mouse termcode "ESC [" is also the prefix of
5438 // "ESC [ I" (focus gained) and other keys. Check some
5439 // more bytes to find out.
5440 if (!isdigit(tp[2]))
5441 {
5442 // ESC [ without number following: Only use it when
5443 // there is no other match.
5444 looks_like_mouse_start = TRUE;
5445 }
5446 else if (termcodes[idx].name[0] == KS_DEC_MOUSE)
5447 {
5448 char_u *nr = tp + 2;
5449 int count = 0;
5450
5451 // If a digit is following it could be a key with
5452 // modifier, e.g., ESC [ 1;2P. Can be confused
5453 // with DEC_MOUSE, which requires four numbers
5454 // following. If not then it can't be a DEC_MOUSE
5455 // code.
5456 for (;;)
5457 {
5458 ++count;
5459 (void)getdigits(&nr);
5460 if (nr >= tp + len)
5461 return -1; // partial sequence
5462 if (*nr != ';')
5463 break;
5464 ++nr;
5465 if (nr >= tp + len)
5466 return -1; // partial sequence
5467 }
5468 if (count < 4)
5469 continue; // no match
5470 }
5471 }
5472 if (looks_like_mouse_start)
5473 {
5474 // Only use it when there is no other match.
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005475 if (mouse_index_found < 0)
5476 mouse_index_found = idx;
5477 }
5478 else
5479 {
5480 key_name[0] = termcodes[idx].name[0];
5481 key_name[1] = termcodes[idx].name[1];
5482 break;
5483 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005485
5486 /*
5487 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005488 * <Esc>[123;*X (modslen == slen - 3)
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005489 * <Esc>[@;*X (matches <Esc>[X and <Esc>[1;9X )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005490 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
5491 * When there is a modifier the * matches a number.
5492 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005493 */
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005494 if (termcodes[idx].modlen > 0 && mouse_index_found < 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005495 {
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005496 int at_code;
5497
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005498 modslen = termcodes[idx].modlen;
5499 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005500 continue;
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005501 at_code = termcodes[idx].code[modslen] == '@';
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005502 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005503 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005504 {
5505 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005506
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005507 if (len <= modslen) // got a partial sequence
5508 return -1; // need to get more chars
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005509
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005510 if (tp[modslen] == termcodes[idx].code[slen - 1])
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005511 // no modifiers
5512 slen = modslen + 1;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005513 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005514 // no match for "code;*X" with "code;"
5515 continue;
5516 else if (at_code && tp[modslen] != '1')
5517 // no match for "<Esc>[@" with "<Esc>[1"
5518 continue;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005519 else
5520 {
Bram Moolenaarbb7e1b42019-05-02 20:24:12 +02005521 // Skip over the digits, the final char must
5522 // follow. URXVT can use a negative value, thus
5523 // also accept '-'.
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005524 for (j = slen - 2; j < len && (isdigit(tp[j])
Bram Moolenaarbb7e1b42019-05-02 20:24:12 +02005525 || tp[j] == '-' || tp[j] == ';'); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005526 ;
5527 ++j;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005528 if (len < j) // got a partial sequence
5529 return -1; // need to get more chars
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005530 if (tp[j - 1] != termcodes[idx].code[slen - 1])
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005531 continue; // no match
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005532
Bram Moolenaara529ce02017-06-22 22:37:57 +02005533 modifiers_start = tp + slen - 2;
5534
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005535 // Match! Convert modifier bits.
5536 n = atoi((char *)modifiers_start);
5537 modifiers |= decode_modifiers(n);
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005538
5539 slen = j;
5540 }
5541 key_name[0] = termcodes[idx].name[0];
5542 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005543 break;
5544 }
5545 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 }
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005547 if (idx == tc_len && mouse_index_found >= 0)
5548 {
5549 key_name[0] = termcodes[mouse_index_found].name[0];
5550 key_name[1] = termcodes[mouse_index_found].name[1];
5551 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 }
5553
5554#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005555 if (key_name[0] == NUL
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005556 // Mouse codes of DEC and pterm start with <ESC>[. When
5557 // detecting the start of these mouse codes they might as well be
5558 // another key code or terminal response.
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005559# ifdef FEAT_MOUSE_DEC
5560 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01005561# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005562# ifdef FEAT_MOUSE_PTERM
5563 || key_name[0] == KS_PTERM_MOUSE
5564# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005565 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005567 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
5568
5569 /*
5570 * Check for responses from the terminal starting with {lead}:
5571 * "<Esc>[" or CSI followed by [0-9>?]
Bram Moolenaar9584b312013-03-13 19:29:28 +01005572 *
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005573 * - Xterm version string: {lead}>{x};{vers};{y}c
Bram Moolenaar9584b312013-03-13 19:29:28 +01005574 * Also eat other possible responses to t_RV, rxvt returns
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005575 * "{lead}?1;2c".
Bram Moolenaar9584b312013-03-13 19:29:28 +01005576 *
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005577 * - Cursor position report: {lead}{row};{col}R
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005578 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01005579 * ambiguous-width character state.
Bram Moolenaarba6ec182017-04-04 22:41:10 +02005580 *
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005581 * - window position reply: {lead}3;{x};{y}t
5582 *
5583 * - key with modifiers when modifyOtherKeys is enabled:
5584 * {lead}27;{modifier};{key}~
5585 * {lead}{key};{modifier}u
Bram Moolenaar9584b312013-03-13 19:29:28 +01005586 */
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005587 if (((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02005588 || (tp[0] == CSI && len >= 2))
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005589 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 {
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005591 int resp = handle_csi(tp, len, argp, offset, buf,
5592 bufsize, buflen, key_name, &slen);
5593 if (resp != 0)
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005594 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005595# ifdef DEBUG_TERMRESPONSE
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005596 if (resp == -1)
5597 LOG_TR(("Not enough characters for CSI sequence"));
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005598# endif
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005599 return resp;
Bram Moolenaar9584b312013-03-13 19:29:28 +01005600 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005601 }
5602
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005603 // Check for fore/background color response from the terminal,
5604 // starting} with <Esc>] or OSC
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005605 else if ((*T_RBG != NUL || *T_RFG != NUL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005606 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
5607 || tp[0] == OSC))
5608 {
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005609 if (handle_osc(tp, argp, len, key_name, &slen) == FAIL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005610 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 }
5612
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005613 // Check for key code response from xterm,
5614 // starting with <Esc>P or DCS
Bram Moolenaarafd78262019-05-10 23:10:31 +02005615 else if ((check_for_codes || rcs_status.tr_progress == STATUS_SENT)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005616 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 || tp[0] == DCS))
5618 {
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005619 if (handle_dcs(tp, argp, len, key_name, &slen) == FAIL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005620 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 }
5622 }
5623#endif
5624
5625 if (key_name[0] == NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005626 continue; // No match at this position, try next one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005628 // We only get here when we have a complete termcode match
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005630#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631 /*
5632 * Only in the GUI: Fetch the pointer coordinates of the scroll event
5633 * so that we know which window to scroll later.
5634 */
5635 if (gui.in_use
5636 && key_name[0] == (int)KS_EXTRA
5637 && (key_name[1] == (int)KE_X1MOUSE
5638 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar445f11d2021-06-08 20:13:31 +02005639 || key_name[1] == (int)KE_MOUSEMOVE_XY
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005640 || key_name[1] == (int)KE_MOUSELEFT
5641 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 || key_name[1] == (int)KE_MOUSEDOWN
5643 || key_name[1] == (int)KE_MOUSEUP))
5644 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005645 char_u bytes[6];
5646 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
5647
5648 if (num_bytes == -1) // not enough coordinates
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 return -1;
5650 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
5651 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
5652 slen += num_bytes;
Bram Moolenaar445f11d2021-06-08 20:13:31 +02005653 // equal to K_MOUSEMOVE
5654 if (key_name[1] == (int)KE_MOUSEMOVE_XY)
5655 key_name[1] = (int)KE_MOUSEMOVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656 }
5657 else
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005658#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 /*
5660 * If it is a mouse click, get the coordinates.
5661 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005662 if (key_name[0] == KS_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005663#ifdef FEAT_MOUSE_GPM
Bram Moolenaarbedf0912019-05-04 16:58:45 +02005664 || key_name[0] == KS_GPM_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005665#endif
5666#ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005667 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005668#endif
5669#ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005670 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005671#endif
5672#ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005673 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005674#endif
5675#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005676 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005677#endif
5678#ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005679 || key_name[0] == KS_URXVT_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005680#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005681 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01005682 || key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005684 if (check_termcode_mouse(tp, &slen, key_name, modifiers_start, idx,
5685 &modifiers) == -1)
5686 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688
5689#ifdef FEAT_GUI
5690 /*
5691 * If using the GUI, then we get menu and scrollbar events.
5692 *
5693 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5694 * four bytes which are to be taken as a pointer to the vimmenu_T
5695 * structure.
5696 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005697 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005698 * is one byte with the tab index.
5699 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5701 * by one byte representing the scrollbar number, and then four bytes
5702 * representing a long_u which is the new value of the scrollbar.
5703 *
5704 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5705 * KE_FILLER followed by four bytes representing a long_u which is the
5706 * new value of the scrollbar.
5707 */
5708# ifdef FEAT_MENU
5709 else if (key_name[0] == (int)KS_MENU)
5710 {
5711 long_u val;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005712 int num_bytes = get_long_from_buf(tp + slen, &val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714 if (num_bytes == -1)
5715 return -1;
5716 current_menu = (vimmenu_T *)val;
5717 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005718
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005719 // The menu may have been deleted right after it was used, check
5720 // for that.
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005721 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5722 {
5723 key_name[0] = KS_EXTRA;
5724 key_name[1] = (int)KE_IGNORE;
5725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726 }
5727# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005728# ifdef FEAT_GUI_TABLINE
5729 else if (key_name[0] == (int)KS_TABLINE)
5730 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005731 // Selecting tabline tab or using its menu.
5732 char_u bytes[6];
5733 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5734
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005735 if (num_bytes == -1)
5736 return -1;
5737 current_tab = (int)bytes[0];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005738 if (current_tab == 255) // -1 in a byte gives 255
Bram Moolenaar07354542007-09-15 12:07:46 +00005739 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005740 slen += num_bytes;
5741 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005742 else if (key_name[0] == (int)KS_TABMENU)
5743 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005744 // Selecting tabline tab or using its menu.
5745 char_u bytes[6];
5746 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5747
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005748 if (num_bytes == -1)
5749 return -1;
5750 current_tab = (int)bytes[0];
5751 current_tabmenu = (int)bytes[1];
5752 slen += num_bytes;
5753 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005754# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755# ifndef USE_ON_FLY_SCROLL
5756 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5757 {
5758 long_u val;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005759 char_u bytes[6];
5760 int num_bytes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005762 // Get the last scrollbar event in the queue of the same type
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 j = 0;
5764 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5765 && tp[j + 2] != NUL; ++i)
5766 {
5767 j += 3;
5768 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5769 if (num_bytes == -1)
5770 break;
5771 if (i == 0)
5772 current_scrollbar = (int)bytes[0];
5773 else if (current_scrollbar != (int)bytes[0])
5774 break;
5775 j += num_bytes;
5776 num_bytes = get_long_from_buf(tp + j, &val);
5777 if (num_bytes == -1)
5778 break;
5779 scrollbar_value = val;
5780 j += num_bytes;
5781 slen = j;
5782 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005783 if (i == 0) // not enough characters to make one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 return -1;
5785 }
5786 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5787 {
5788 long_u val;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005789 int num_bytes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005791 // Get the last horiz. scrollbar event in the queue
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 j = 0;
5793 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5794 && tp[j + 2] != NUL; ++i)
5795 {
5796 j += 3;
5797 num_bytes = get_long_from_buf(tp + j, &val);
5798 if (num_bytes == -1)
5799 break;
5800 scrollbar_value = val;
5801 j += num_bytes;
5802 slen = j;
5803 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005804 if (i == 0) // not enough characters to make one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 return -1;
5806 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005807# endif // !USE_ON_FLY_SCROLL
5808#endif // FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01005810#if (defined(UNIX) || defined(VMS))
5811 /*
5812 * Handle FocusIn/FocusOut event sequences reported by XTerm.
5813 * (CSI I/CSI O)
5814 */
5815 if (focus_mode
5816# ifdef FEAT_GUI
5817 && !gui.in_use
5818# endif
5819 && key_name[0] == KS_EXTRA
5820 )
5821 {
Bram Moolenaard44cc592021-01-14 21:57:58 +01005822 if (key_name[1] == KE_FOCUSGAINED)
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01005823 {
Bram Moolenaard44cc592021-01-14 21:57:58 +01005824 if (!focus_state)
5825 {
5826 ui_focus_change(TRUE);
5827 did_cursorhold = TRUE;
5828 focus_state = TRUE;
5829 }
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01005830 key_name[1] = (int)KE_IGNORE;
5831 }
Bram Moolenaard44cc592021-01-14 21:57:58 +01005832 else if (key_name[1] == KE_FOCUSLOST)
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01005833 {
Bram Moolenaard44cc592021-01-14 21:57:58 +01005834 if (focus_state)
5835 {
5836 ui_focus_change(FALSE);
5837 did_cursorhold = TRUE;
5838 focus_state = FALSE;
5839 }
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01005840 key_name[1] = (int)KE_IGNORE;
5841 }
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01005842 }
5843#endif
5844
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005845 /*
5846 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5847 */
5848 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5849
5850 /*
5851 * Add any modifier codes to our string.
5852 */
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005853 new_slen = modifiers2keycode(modifiers, &key, string);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005854
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005855 // Finally, add the special key code to our string
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005856 key_name[0] = KEY2TERMCAP0(key);
5857 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005859 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005860 // from ":set <M-b>=xx"
Bram Moolenaar6768a332009-01-22 17:33:49 +00005861 if (has_mbyte)
5862 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5863 else
Bram Moolenaar6768a332009-01-22 17:33:49 +00005864 string[new_slen++] = key_name[1];
5865 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005866 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5867 && key_name[1] == KE_IGNORE)
5868 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005869 // Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5870 // to indicate what happened.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005871 retval = KEYLEN_REMOVED;
5872 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 else
5874 {
5875 string[new_slen++] = K_SPECIAL;
5876 string[new_slen++] = key_name[0];
5877 string[new_slen++] = key_name[1];
5878 }
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005879 if (put_string_in_typebuf(offset, slen, string, new_slen,
5880 buf, bufsize, buflen) == FAIL)
5881 return -1;
5882 return retval == 0 ? (len + new_slen - slen + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 }
5884
Bram Moolenaar2951b772013-07-03 12:45:31 +02005885#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02005886 LOG_TR(("normal character"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02005887#endif
5888
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005889 return 0; // no match found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890}
5891
Bram Moolenaar9377df32017-10-15 13:22:01 +02005892#if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005893/*
5894 * Get the text foreground color, if known.
5895 */
5896 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005897term_get_fg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005898{
Bram Moolenaarafd78262019-05-10 23:10:31 +02005899 if (rfg_status.tr_progress == STATUS_GOT)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005900 {
5901 *r = fg_r;
5902 *g = fg_g;
5903 *b = fg_b;
5904 }
5905}
5906
5907/*
5908 * Get the text background color, if known.
5909 */
5910 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005911term_get_bg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005912{
Bram Moolenaarafd78262019-05-10 23:10:31 +02005913 if (rbg_status.tr_progress == STATUS_GOT)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005914 {
5915 *r = bg_r;
5916 *g = bg_g;
5917 *b = bg_b;
5918 }
5919}
5920#endif
5921
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922/*
5923 * Replace any terminal code strings in from[] with the equivalent internal
5924 * vim representation. This is used for the "from" and "to" part of a
5925 * mapping, and the "to" part of a menu command.
5926 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5927 * '<'.
5928 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5929 *
5930 * The replacement is done in result[] and finally copied into allocated
5931 * memory. If this all works well *bufp is set to the allocated memory and a
5932 * pointer to it is returned. If something fails *bufp is set to NULL and from
5933 * is returned.
5934 *
Bram Moolenaar459fd782019-10-13 16:43:39 +02005935 * CTRL-V characters are removed. When "flags" has REPTERM_FROM_PART, a
5936 * trailing CTRL-V is included, otherwise it is removed (for ":map xx ^V", maps
5937 * xx to nothing). When 'cpoptions' does not contain 'B', a backslash can be
5938 * used instead of a CTRL-V.
5939 *
5940 * Flags:
5941 * REPTERM_FROM_PART see above
5942 * REPTERM_DO_LT also translate <lt>
5943 * REPTERM_SPECIAL always accept <key> notation
5944 * REPTERM_NO_SIMPLIFY do not simplify <C-H> to 0x08 and set 8th bit for <A-x>
5945 *
5946 * "did_simplify" is set when some <C-H> or <A-x> code was simplified, unless
5947 * it is NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005949 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005950replace_termcodes(
5951 char_u *from,
5952 char_u **bufp,
Bram Moolenaar459fd782019-10-13 16:43:39 +02005953 int flags,
5954 int *did_simplify)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955{
5956 int i;
5957 int slen;
5958 int key;
5959 int dlen = 0;
5960 char_u *src;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005961 int do_backslash; // backslash is a special character
5962 int do_special; // recognize <> key codes
5963 int do_key_code; // recognize raw key codes
5964 char_u *result; // buffer for resulting string
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965
5966 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar459fd782019-10-13 16:43:39 +02005967 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL)
5968 || (flags & REPTERM_SPECIAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005969 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5970
5971 /*
5972 * Allocate space for the translation. Worst case a single character is
5973 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5974 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02005975 result = alloc(STRLEN(from) * 6 + 1);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005976 if (result == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 {
5978 *bufp = NULL;
5979 return from;
5980 }
5981
5982 src = from;
5983
5984 /*
5985 * Check for #n at start only: function key n
5986 */
Bram Moolenaar459fd782019-10-13 16:43:39 +02005987 if ((flags & REPTERM_FROM_PART) && src[0] == '#' && VIM_ISDIGIT(src[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988 {
5989 result[dlen++] = K_SPECIAL;
5990 result[dlen++] = 'k';
5991 if (src[1] == '0')
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005992 result[dlen++] = ';'; // #0 is F10 is "k;"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005994 result[dlen++] = src[1]; // #3 is F3 is "k3"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 src += 2;
5996 }
5997
5998 /*
5999 * Copy each byte from *from to result[dlen]
6000 */
6001 while (*src != NUL)
6002 {
6003 /*
6004 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02006005 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006006 */
Bram Moolenaar459fd782019-10-13 16:43:39 +02006007 if (do_special && ((flags & REPTERM_DO_LT)
6008 || STRNCMP(src, "<lt>", 4) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009 {
6010#ifdef FEAT_EVAL
6011 /*
6012 * Replace <SID> by K_SNR <script-nr> _.
6013 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
6014 */
6015 if (STRNICMP(src, "<SID>", 5) == 0)
6016 {
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02006017 if (current_sctx.sc_sid <= 0)
Bram Moolenaar40bcec12021-12-05 22:19:27 +00006018 emsg(_(e_using_sid_not_in_script_context));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 else
6020 {
6021 src += 5;
6022 result[dlen++] = K_SPECIAL;
6023 result[dlen++] = (int)KS_EXTRA;
6024 result[dlen++] = (int)KE_SNR;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02006025 sprintf((char *)result + dlen, "%ld",
6026 (long)current_sctx.sc_sid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 dlen += (int)STRLEN(result + dlen);
6028 result[dlen++] = '_';
6029 continue;
6030 }
6031 }
6032#endif
6033
Bram Moolenaarebe9d342020-05-30 21:52:54 +02006034 slen = trans_special(&src, result + dlen, FSK_KEYCODE
6035 | ((flags & REPTERM_NO_SIMPLIFY) ? 0 : FSK_SIMPLIFY),
6036 did_simplify);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037 if (slen)
6038 {
6039 dlen += slen;
6040 continue;
6041 }
6042 }
6043
6044 /*
6045 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
6046 * Note that this is also checked after replacing the <> form.
6047 * Single character codes are NOT replaced (e.g. ^H or DEL), because
6048 * it could be a character in the file.
6049 */
6050 if (do_key_code)
6051 {
6052 i = find_term_bykeys(src);
6053 if (i >= 0)
6054 {
6055 result[dlen++] = K_SPECIAL;
6056 result[dlen++] = termcodes[i].name[0];
6057 result[dlen++] = termcodes[i].name[1];
6058 src += termcodes[i].len;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006059 // If terminal code matched, continue after it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060 continue;
6061 }
6062 }
6063
6064#ifdef FEAT_EVAL
6065 if (do_special)
6066 {
6067 char_u *p, *s, len;
6068
6069 /*
6070 * Replace <Leader> by the value of "mapleader".
6071 * Replace <LocalLeader> by the value of "maplocalleader".
6072 * If "mapleader" or "maplocalleader" isn't set use a backslash.
6073 */
6074 if (STRNICMP(src, "<Leader>", 8) == 0)
6075 {
6076 len = 8;
6077 p = get_var_value((char_u *)"g:mapleader");
6078 }
6079 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
6080 {
6081 len = 13;
6082 p = get_var_value((char_u *)"g:maplocalleader");
6083 }
6084 else
6085 {
6086 len = 0;
6087 p = NULL;
6088 }
6089 if (len != 0)
6090 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006091 // Allow up to 8 * 6 characters for "mapleader".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
6093 s = (char_u *)"\\";
6094 else
6095 s = p;
6096 while (*s != NUL)
6097 result[dlen++] = *s++;
6098 src += len;
6099 continue;
6100 }
6101 }
6102#endif
6103
6104 /*
6105 * Remove CTRL-V and ignore the next character.
6106 * For "from" side the CTRL-V at the end is included, for the "to"
6107 * part it is removed.
6108 * If 'cpoptions' does not contain 'B', also accept a backslash.
6109 */
6110 key = *src;
6111 if (key == Ctrl_V || (do_backslash && key == '\\'))
6112 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006113 ++src; // skip CTRL-V or backslash
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114 if (*src == NUL)
6115 {
Bram Moolenaar459fd782019-10-13 16:43:39 +02006116 if (flags & REPTERM_FROM_PART)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117 result[dlen++] = key;
6118 break;
6119 }
6120 }
6121
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006122 // skip multibyte char correctly
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006123 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124 {
6125 /*
6126 * If the character is K_SPECIAL, replace it with K_SPECIAL
6127 * KS_SPECIAL KE_FILLER.
6128 * If compiled with the GUI replace CSI with K_CSI.
6129 */
6130 if (*src == K_SPECIAL)
6131 {
6132 result[dlen++] = K_SPECIAL;
6133 result[dlen++] = KS_SPECIAL;
6134 result[dlen++] = KE_FILLER;
6135 }
6136# ifdef FEAT_GUI
6137 else if (*src == CSI)
6138 {
6139 result[dlen++] = K_SPECIAL;
6140 result[dlen++] = KS_EXTRA;
6141 result[dlen++] = (int)KE_CSI;
6142 }
6143# endif
6144 else
6145 result[dlen++] = *src;
6146 ++src;
6147 }
6148 }
6149 result[dlen] = NUL;
6150
6151 /*
6152 * Copy the new string to allocated memory.
6153 * If this fails, just return from.
6154 */
6155 if ((*bufp = vim_strsave(result)) != NULL)
6156 from = *bufp;
6157 vim_free(result);
6158 return from;
6159}
6160
6161/*
6162 * Find a termcode with keys 'src' (must be NUL terminated).
6163 * Return the index in termcodes[], or -1 if not found.
6164 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02006165 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006166find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167{
6168 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006169 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170
6171 for (i = 0; i < tc_len; ++i)
6172 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01006173 if (slen == termcodes[i].len
6174 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 return i;
6176 }
6177 return -1;
6178}
6179
6180/*
6181 * Gather the first characters in the terminal key codes into a string.
6182 * Used to speed up check_termcode().
6183 */
6184 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006185gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186{
6187 int i;
6188 int len = 0;
6189
6190#ifdef FEAT_GUI
6191 if (gui.in_use)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006192 termleader[len++] = CSI; // the GUI codes are not in termcodes[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193#endif
6194#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02006195 if (check_for_codes || *T_CRS != NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006196 termleader[len++] = DCS; // the termcode response starts with DCS
6197 // in 8-bit mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198#endif
6199 termleader[len] = NUL;
6200
6201 for (i = 0; i < tc_len; ++i)
6202 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
6203 {
6204 termleader[len++] = termcodes[i].code[0];
6205 termleader[len] = NUL;
6206 }
6207
6208 need_gather = FALSE;
6209}
6210
6211/*
6212 * Show all termcodes (for ":set termcap")
6213 * This code looks a lot like showoptions(), but is different.
Bram Moolenaar15a24f02021-12-03 20:43:24 +00006214 * "flags" can have OPT_ONECOLUMN.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 */
6216 void
Bram Moolenaar15a24f02021-12-03 20:43:24 +00006217show_termcodes(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218{
6219 int col;
6220 int *items;
6221 int item_count;
6222 int run;
6223 int row, rows;
6224 int cols;
6225 int i;
6226 int len;
6227
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006228#define INC3 27 // try to make three columns
6229#define INC2 40 // try to make two columns
6230#define GAP 2 // spaces between columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006232 if (tc_len == 0) // no terminal codes (must be GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 return;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006234 items = ALLOC_MULT(int, tc_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006235 if (items == NULL)
6236 return;
6237
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006238 // Highlight title
Bram Moolenaar32526b32019-01-19 17:43:09 +01006239 msg_puts_title(_("\n--- Terminal keys ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006240
6241 /*
Bram Moolenaar15a24f02021-12-03 20:43:24 +00006242 * Do the loop three times:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006244 * 2. display the medium items (medium length strings)
6245 * 3. display the long items (remaining strings)
Bram Moolenaar15a24f02021-12-03 20:43:24 +00006246 * When "flags" has OPT_ONECOLUMN do everything in 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 */
Bram Moolenaar15a24f02021-12-03 20:43:24 +00006248 for (run = (flags & OPT_ONECOLUMN) ? 3 : 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 {
6250 /*
6251 * collect the items in items[]
6252 */
6253 item_count = 0;
6254 for (i = 0; i < tc_len; i++)
6255 {
6256 len = show_one_termcode(termcodes[i].name,
6257 termcodes[i].code, FALSE);
Bram Moolenaar15a24f02021-12-03 20:43:24 +00006258 if ((flags & OPT_ONECOLUMN) ||
6259 (len <= INC3 - GAP ? run == 1
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006260 : len <= INC2 - GAP ? run == 2
Bram Moolenaar15a24f02021-12-03 20:43:24 +00006261 : run == 3))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262 items[item_count++] = i;
6263 }
6264
6265 /*
6266 * display the items
6267 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006268 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006270 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271 if (cols == 0)
6272 cols = 1;
6273 rows = (item_count + cols - 1) / cols;
6274 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006275 else // run == 3
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 rows = item_count;
6277 for (row = 0; row < rows && !got_int; ++row)
6278 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006279 msg_putchar('\n'); // go to next line
6280 if (got_int) // 'q' typed in more
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281 break;
6282 col = 0;
6283 for (i = row; i < item_count; i += rows)
6284 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006285 msg_col = col; // make columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286 show_one_termcode(termcodes[items[i]].name,
6287 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006288 if (run == 2)
6289 col += INC2;
6290 else
6291 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 }
6293 out_flush();
6294 ui_breakcheck();
6295 }
6296 }
6297 vim_free(items);
6298}
6299
6300/*
6301 * Show one termcode entry.
6302 * Output goes into IObuff[]
6303 */
6304 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006305show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306{
6307 char_u *p;
6308 int len;
6309
6310 if (name[0] > '~')
6311 {
6312 IObuff[0] = ' ';
6313 IObuff[1] = ' ';
6314 IObuff[2] = ' ';
6315 IObuff[3] = ' ';
6316 }
6317 else
6318 {
6319 IObuff[0] = 't';
6320 IObuff[1] = '_';
6321 IObuff[2] = name[0];
6322 IObuff[3] = name[1];
6323 }
6324 IObuff[4] = ' ';
6325
6326 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
6327 if (p[1] != 't')
6328 STRCPY(IObuff + 5, p);
6329 else
6330 IObuff[5] = NUL;
6331 len = (int)STRLEN(IObuff);
6332 do
6333 IObuff[len++] = ' ';
6334 while (len < 17);
6335 IObuff[len] = NUL;
6336 if (code == NULL)
6337 len += 4;
6338 else
6339 len += vim_strsize(code);
6340
6341 if (printit)
6342 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006343 msg_puts((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344 if (code == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006345 msg_puts("NULL");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346 else
6347 msg_outtrans(code);
6348 }
6349 return len;
6350}
6351
6352#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
6353/*
6354 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
6355 * termcap codes from the terminal itself.
6356 * We get them one by one to avoid a very long response string.
6357 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02006358static int xt_index_in = 0;
6359static int xt_index_out = 0;
6360
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006362req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363{
6364 xt_index_out = 0;
6365 xt_index_in = 0;
6366 req_more_codes_from_term();
6367}
6368
6369 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006370req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371{
6372 char buf[11];
6373 int old_idx = xt_index_out;
6374
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006375 // Don't do anything when going to exit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376 if (exiting)
6377 return;
6378
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006379 // Send up to 10 more requests out than we received. Avoid sending too
6380 // many, there can be a buffer overflow somewhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
6382 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02006383 char *key_name = key_names[xt_index_out];
Bram Moolenaar2951b772013-07-03 12:45:31 +02006384
Bram Moolenaar86394aa2020-09-05 14:27:24 +02006385#ifdef FEAT_JOB_CHANNEL
6386 ch_log_output = TRUE;
6387#endif
Bram Moolenaarb255b902018-04-24 21:40:10 +02006388 LOG_TR(("Requesting XT %d: %s", xt_index_out, key_name));
6389 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 out_str_nf((char_u *)buf);
6391 ++xt_index_out;
6392 }
6393
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006394 // Send the codes out right away.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395 if (xt_index_out != old_idx)
6396 out_flush();
6397}
6398
6399/*
6400 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
6401 * A "0" instead of the "1" indicates a code that isn't supported.
6402 * Both <name> and <string> are encoded in hex.
6403 * "code" points to the "0" or "1".
6404 */
6405 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006406got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407{
6408#define XT_LEN 100
6409 char_u name[3];
6410 char_u str[XT_LEN];
6411 int i;
6412 int j = 0;
6413 int c;
6414
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006415 // A '1' means the code is supported, a '0' means it isn't.
6416 // When half the length is > XT_LEN we can't use it.
6417 // Our names are currently all 2 characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
6419 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006420 // Get the name from the response and find it in the table.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 name[0] = hexhex2nr(code + 3);
6422 name[1] = hexhex2nr(code + 5);
6423 name[2] = NUL;
6424 for (i = 0; key_names[i] != NULL; ++i)
6425 {
6426 if (STRCMP(key_names[i], name) == 0)
6427 {
6428 xt_index_in = i;
6429 break;
6430 }
6431 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02006432
Bram Moolenaarb255b902018-04-24 21:40:10 +02006433 LOG_TR(("Received XT %d: %s", xt_index_in, (char *)name));
6434
Bram Moolenaar071d4272004-06-13 20:20:40 +00006435 if (key_names[i] != NULL)
6436 {
6437 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
6438 str[j++] = c;
6439 str[j] = NUL;
6440 if (name[0] == 'C' && name[1] == 'o')
6441 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006442 // Color count is not a key code.
Bram Moolenaar6f79e612021-12-21 09:12:23 +00006443 may_adjust_color_count(atoi((char *)str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 }
6445 else
6446 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006447 // First delete any existing entry with the same code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448 i = find_term_bykeys(str);
6449 if (i >= 0)
6450 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006451 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452 }
6453 }
6454 }
6455
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006456 // May request more codes now that we received one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 ++xt_index_in;
6458 req_more_codes_from_term();
6459}
6460
6461/*
6462 * Check if there are any unanswered requests and deal with them.
6463 * This is called before starting an external program or getting direct
6464 * keyboard input. We don't want responses to be send to that program or
6465 * handled as typed text.
6466 */
6467 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006468check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469{
6470 int c;
6471
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006472 // If no codes requested or all are answered, no need to wait.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006473 if (xt_index_out == 0 || xt_index_out == xt_index_in)
6474 return;
6475
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006476 // Vgetc() will check for and handle any response.
6477 // Keep calling vpeekc() until we don't get any responses.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478 ++no_mapping;
6479 ++allow_keys;
6480 for (;;)
6481 {
6482 c = vpeekc();
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006483 if (c == NUL) // nothing available
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 break;
6485
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006486 // If a response is recognized it's replaced with K_IGNORE, must read
6487 // it from the input stream. If there is no K_IGNORE we can't do
6488 // anything, break here (there might be some responses further on, but
6489 // we don't want to throw away any typed chars).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490 if (c != K_SPECIAL && c != K_IGNORE)
6491 break;
6492 c = vgetc();
6493 if (c != K_IGNORE)
6494 {
6495 vungetc(c);
6496 break;
6497 }
6498 }
6499 --no_mapping;
6500 --allow_keys;
6501}
6502#endif
6503
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006504#if (defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505static char ksme_str[20];
6506static char ksmr_str[20];
6507static char ksmd_str[20];
6508
6509/*
6510 * For Win32 console: update termcap codes for existing console attributes.
6511 */
6512 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006513update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514{
6515 struct builtin_term *p;
6516
6517 p = find_builtin_term(DEFAULT_TERM);
Bram Moolenaar424bcae2022-01-31 14:59:41 +00006518 sprintf(ksme_str, "\033|%dm", attr);
6519 sprintf(ksmd_str, "\033|%dm", attr | 0x08); // FOREGROUND_INTENSITY
6520 sprintf(ksmr_str, "\033|%dm", ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521
6522 while (p->bt_string != NULL)
6523 {
6524 if (p->bt_entry == (int)KS_ME)
6525 p->bt_string = &ksme_str[0];
6526 else if (p->bt_entry == (int)KS_MR)
6527 p->bt_string = &ksmr_str[0];
6528 else if (p->bt_entry == (int)KS_MD)
6529 p->bt_string = &ksmd_str[0];
6530 ++p;
6531 }
6532}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006533
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006534# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006535# define KSSIZE 20
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006536struct ks_tbl_s
6537{
Bram Moolenaard4f73432018-09-21 12:24:12 +02006538 int code; // value of KS_
6539 char *vtp; // code in vtp mode
6540 char *vtp2; // code in vtp2 mode
6541 char buf[KSSIZE]; // save buffer in non-vtp mode
6542 char vbuf[KSSIZE]; // save buffer in vtp mode
6543 char v2buf[KSSIZE]; // save buffer in vtp2 mode
6544 char arr[KSSIZE]; // real buffer
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006545};
6546
6547static struct ks_tbl_s ks_tbl[] =
6548{
Bram Moolenaard4f73432018-09-21 12:24:12 +02006549 {(int)KS_ME, "\033|0m", "\033|0m"}, // normal
6550 {(int)KS_MR, "\033|7m", "\033|7m"}, // reverse
6551 {(int)KS_MD, "\033|1m", "\033|1m"}, // bold
6552 {(int)KS_SO, "\033|91m", "\033|91m"}, // standout: bright red text
6553 {(int)KS_SE, "\033|39m", "\033|39m"}, // standout end: default color
6554 {(int)KS_CZH, "\033|95m", "\033|95m"}, // italic: bright magenta text
6555 {(int)KS_CZR, "\033|0m", "\033|0m"}, // italic end
6556 {(int)KS_US, "\033|4m", "\033|4m"}, // underscore
6557 {(int)KS_UE, "\033|24m", "\033|24m"}, // underscore end
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006558# ifdef TERMINFO
Bram Moolenaard4f73432018-09-21 12:24:12 +02006559 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm"}, // set background color
6560 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm"}, // set foreground color
Bram Moolenaar6982f422019-02-16 16:48:01 +01006561 {(int)KS_CS, "\033|%p1%d;%p2%dR", "\033|%p1%d;%p2%dR"},
6562 {(int)KS_CSV, "\033|%p1%d;%p2%dV", "\033|%p1%d;%p2%dV"},
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006563# else
Bram Moolenaard4f73432018-09-21 12:24:12 +02006564 {(int)KS_CAB, "\033|%db", "\033|4%dm"}, // set background color
6565 {(int)KS_CAF, "\033|%df", "\033|3%dm"}, // set foreground color
Bram Moolenaar6982f422019-02-16 16:48:01 +01006566 {(int)KS_CS, "\033|%d;%dR", "\033|%d;%dR"},
6567 {(int)KS_CSV, "\033|%d;%dV", "\033|%d;%dV"},
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006568# endif
Bram Moolenaard4f73432018-09-21 12:24:12 +02006569 {(int)KS_CCO, "256", "256"}, // colors
6570 {(int)KS_NAME} // terminator
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006571};
6572
6573 static struct builtin_term *
6574find_first_tcap(
6575 char_u *name,
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006576 int code)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006577{
6578 struct builtin_term *p;
6579
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006580 for (p = find_builtin_term(name); p->bt_string != NULL; ++p)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006581 if (p->bt_entry == code)
6582 return p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006583 return NULL;
6584}
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006585# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006586
6587/*
6588 * For Win32 console: replace the sequence immediately after termguicolors.
6589 */
6590 void
6591swap_tcap(void)
6592{
6593# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006594 static int init_done = FALSE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006595 static int curr_mode;
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006596 struct ks_tbl_s *ks;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006597 struct builtin_term *bt;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006598 int mode;
6599 enum
6600 {
6601 CMODEINDEX,
6602 CMODE24,
6603 CMODE256
6604 };
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006605
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006606 // buffer initialization
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006607 if (!init_done)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006608 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006609 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006610 {
6611 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006612 if (bt != NULL)
6613 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006614 STRNCPY(ks->buf, bt->bt_string, KSSIZE);
6615 STRNCPY(ks->vbuf, ks->vtp, KSSIZE);
6616 STRNCPY(ks->v2buf, ks->vtp2, KSSIZE);
6617
6618 STRNCPY(ks->arr, bt->bt_string, KSSIZE);
6619 bt->bt_string = &ks->arr[0];
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006620 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006621 }
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006622 init_done = TRUE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006623 curr_mode = CMODEINDEX;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006624 }
6625
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006626 if (p_tgc)
6627 mode = CMODE24;
6628 else if (t_colors >= 256)
6629 mode = CMODE256;
6630 else
6631 mode = CMODEINDEX;
6632
6633 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006634 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006635 bt = find_first_tcap(DEFAULT_TERM, ks->code);
6636 if (bt != NULL)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006637 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006638 switch (curr_mode)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006639 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006640 case CMODEINDEX:
6641 STRNCPY(&ks->buf[0], bt->bt_string, KSSIZE);
6642 break;
6643 case CMODE24:
6644 STRNCPY(&ks->vbuf[0], bt->bt_string, KSSIZE);
6645 break;
6646 default:
6647 STRNCPY(&ks->v2buf[0], bt->bt_string, KSSIZE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006648 }
6649 }
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006650 }
6651
6652 if (mode != curr_mode)
6653 {
6654 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006655 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006656 bt = find_first_tcap(DEFAULT_TERM, ks->code);
6657 if (bt != NULL)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006658 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006659 switch (mode)
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006660 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006661 case CMODEINDEX:
6662 STRNCPY(bt->bt_string, &ks->buf[0], KSSIZE);
6663 break;
6664 case CMODE24:
6665 STRNCPY(bt->bt_string, &ks->vbuf[0], KSSIZE);
6666 break;
6667 default:
6668 STRNCPY(bt->bt_string, &ks->v2buf[0], KSSIZE);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006669 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006670 }
6671 }
6672
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006673 curr_mode = mode;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006674 }
6675# endif
6676}
6677
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678#endif
Bram Moolenaarab302212016-04-26 20:59:29 +02006679
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006680
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006681#if (defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))) || defined(FEAT_TERMINAL) \
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006682 || defined(PROTO)
6683static int cube_value[] = {
6684 0x00, 0x5F, 0x87, 0xAF, 0xD7, 0xFF
6685};
6686
6687static int grey_ramp[] = {
6688 0x08, 0x12, 0x1C, 0x26, 0x30, 0x3A, 0x44, 0x4E, 0x58, 0x62, 0x6C, 0x76,
6689 0x80, 0x8A, 0x94, 0x9E, 0xA8, 0xB2, 0xBC, 0xC6, 0xD0, 0xDA, 0xE4, 0xEE
6690};
6691
Bram Moolenaar9894e392018-05-05 14:29:06 +02006692static char_u ansi_table[16][4] = {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006693// R G B idx
6694 { 0, 0, 0, 1}, // black
6695 {224, 0, 0, 2}, // dark red
6696 { 0, 224, 0, 3}, // dark green
6697 {224, 224, 0, 4}, // dark yellow / brown
6698 { 0, 0, 224, 5}, // dark blue
6699 {224, 0, 224, 6}, // dark magenta
6700 { 0, 224, 224, 7}, // dark cyan
6701 {224, 224, 224, 8}, // light grey
6702
6703 {128, 128, 128, 9}, // dark grey
6704 {255, 64, 64, 10}, // light red
6705 { 64, 255, 64, 11}, // light green
6706 {255, 255, 64, 12}, // yellow
6707 { 64, 64, 255, 13}, // light blue
6708 {255, 64, 255, 14}, // light magenta
6709 { 64, 255, 255, 15}, // light cyan
6710 {255, 255, 255, 16}, // white
6711};
6712
Bram Moolenaare5886cc2020-05-21 20:10:04 +02006713#define ANSI_INDEX_NONE 0
6714
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006715 void
Bram Moolenaar9894e392018-05-05 14:29:06 +02006716cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx)
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006717{
6718 int idx;
6719
6720 if (nr < 16)
6721 {
6722 *r = ansi_table[nr][0];
6723 *g = ansi_table[nr][1];
6724 *b = ansi_table[nr][2];
6725 *ansi_idx = ansi_table[nr][3];
6726 }
6727 else if (nr < 232)
6728 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006729 // 216 color cube
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006730 idx = nr - 16;
6731 *r = cube_value[idx / 36 % 6];
6732 *g = cube_value[idx / 6 % 6];
6733 *b = cube_value[idx % 6];
Bram Moolenaare5886cc2020-05-21 20:10:04 +02006734 *ansi_idx = ANSI_INDEX_NONE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006735 }
6736 else if (nr < 256)
6737 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006738 // 24 grey scale ramp
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006739 idx = nr - 232;
6740 *r = grey_ramp[idx];
6741 *g = grey_ramp[idx];
6742 *b = grey_ramp[idx];
Bram Moolenaare5886cc2020-05-21 20:10:04 +02006743 *ansi_idx = ANSI_INDEX_NONE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006744 }
6745 else
6746 {
6747 *r = 0;
6748 *g = 0;
6749 *b = 0;
Bram Moolenaare5886cc2020-05-21 20:10:04 +02006750 *ansi_idx = ANSI_INDEX_NONE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006751 }
6752}
6753#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01006754
Bram Moolenaarf4140482020-02-15 23:06:45 +01006755/*
6756 * Replace K_BS by <BS> and K_DEL by <DEL>
6757 */
6758 void
6759term_replace_bs_del_keycode(char_u *ta_buf, int ta_len, int len)
6760{
6761 int i;
6762 int c;
6763
6764 for (i = ta_len; i < ta_len + len; ++i)
6765 {
6766 if (ta_buf[i] == CSI && len - i > 2)
6767 {
6768 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
6769 if (c == K_DEL || c == K_KDEL || c == K_BS)
6770 {
6771 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
6772 (size_t)(len - i - 2));
6773 if (c == K_DEL || c == K_KDEL)
6774 ta_buf[i] = DEL;
6775 else
6776 ta_buf[i] = Ctrl_H;
6777 len -= 2;
6778 }
6779 }
6780 else if (ta_buf[i] == '\r')
6781 ta_buf[i] = '\n';
6782 if (has_mbyte)
6783 i += (*mb_ptr2len_len)(ta_buf + i, ta_len + len - i) - 1;
6784 }
6785}